2157ca7a7cb8fd3c7273d6d92f249f80818bd8c8
[15.05/openwrt.git] / target / linux / ramips / files / arch / mips / ralink / rt305x / mach-fonera20n.c
1 /*
2  *  La Fonera20N board support
3  *
4  *  Copyright (C) 2009 John Crispin <blogic@openwrt.org>
5  *  Copyright (C) 2010 Gabor Juhos <juhosg@openwrt.org>
6  *
7  *  This program is free software; you can redistribute it and/or modify it
8  *  under the terms of the GNU General Public License version 2 as published
9  *  by the Free Software Foundation.
10  */
11
12 #include <linux/init.h>
13 #include <linux/platform_device.h>
14 #include <linux/mtd/mtd.h>
15 #include <linux/mtd/partitions.h>
16 #include <linux/mtd/physmap.h>
17
18 #include <asm/mach-ralink/machine.h>
19 #include <asm/mach-ralink/dev-gpio-buttons.h>
20 #include <asm/mach-ralink/dev-gpio-leds.h>
21 #include <asm/mach-ralink/rt305x.h>
22 #include <asm/mach-ralink/rt305x_regs.h>
23
24 #include "devices.h"
25
26 #define FONERA20N_GPIO_BUTTON_RESET     12
27 #define FONERA20N_GPIO_SWITCH           13
28 #define FONERA20N_GPIO_LED_WIFI         7
29 #define FONERA20N_GPIO_LED_POWER        9
30 #define FONERA20N_GPIO_LED_USB          14
31
32 #define FONERA20N_BUTTONS_POLL_INTERVAL 20
33
34 static struct mtd_partition fonera20n_partitions[] = {
35         {
36                 .name   = "u-boot",
37                 .offset = 0,
38                 .size   = 0x030000,
39                 .mask_flags = MTD_WRITEABLE,
40         }, {
41                 .name   = "u-boot-env",
42                 .offset = 0x030000,
43                 .size   = 0x010000,
44                 .mask_flags = MTD_WRITEABLE,
45         }, {
46                 .name   = "factory",
47                 .offset = 0x040000,
48                 .size   = 0x010000,
49                 .mask_flags = MTD_WRITEABLE,
50         }, {
51                 .name   = "kernel",
52                 .offset = 0x050000,
53                 .size   = 0x0a0000,
54         }, {
55                 .name   = "rootfs",
56                 .offset = 0x150000,
57                 .size   = 0x6b0000,
58         }, {
59                 .name   = "firmware",
60                 .offset = 0x050000,
61                 .size   = 0x7b0000,
62         }
63 };
64
65 static struct physmap_flash_data fonera20n_flash_data = {
66         .nr_parts       = ARRAY_SIZE(fonera20n_partitions),
67         .parts          = fonera20n_partitions,
68 };
69
70 static struct gpio_led fonera20n_leds_gpio[] __initdata = {
71         {
72                 .name           = "fonera20n:orange:wifi",
73                 .gpio           = FONERA20N_GPIO_LED_WIFI,
74                 .active_low     = 1,
75         }, {
76                 .name           = "fonera20n:green:power",
77                 .gpio           = FONERA20N_GPIO_LED_POWER,
78                 .active_low     = 1,
79         }, {
80                 .name           = "fonera20n:orange:usb",
81                 .gpio           = FONERA20N_GPIO_LED_USB,
82                 .active_low     = 1,
83         }
84 };
85
86 static struct gpio_button fonera20n_gpio_buttons[] __initdata = {
87         {
88                 .desc           = "reset",
89                 .type           = EV_KEY,
90                 .code           = KEY_RESTART,
91                 .threshold      = 3,
92                 .gpio           = FONERA20N_GPIO_BUTTON_RESET,
93                 .active_low     = 1,
94         }, {
95                 .desc           = "switch",
96                 .type           = EV_KEY,
97                 .code           = BTN_1,
98                 .threshold      = 3,
99                 .gpio           = FONERA20N_GPIO_SWITCH,
100                 .active_low     = 1,
101         }
102 };
103
104 static void __init fonera20n_init(void)
105 {
106         rt305x_gpio_init(RT305X_GPIO_MODE_GPIO << RT305X_GPIO_MODE_UART0_SHIFT);
107
108         rt305x_register_flash(0, &fonera20n_flash_data);
109
110         ramips_register_gpio_leds(-1, ARRAY_SIZE(fonera20n_leds_gpio),
111                                   fonera20n_leds_gpio);
112
113         ramips_register_gpio_buttons(-1, FONERA20N_BUTTONS_POLL_INTERVAL,
114                                      ARRAY_SIZE(fonera20n_gpio_buttons),
115                                      fonera20n_gpio_buttons);
116
117         rt305x_esw_data.vlan_config = RT305X_ESW_VLAN_CONFIG_LLLLW;
118         rt305x_register_ethernet();
119         rt305x_register_wifi();
120         rt305x_register_wdt();
121         rt305x_register_usb();
122 }
123
124 MIPS_MACHINE(RAMIPS_MACH_FONERA20N, "FONERA20N", "La Fonera 2.0N",
125              fonera20n_init);