ramips: rt305x: remove CONFIG_MTD_PARTITION ifdefery from machine files
[lede.git] / target / linux / ramips / files / arch / mips / ralink / rt305x / mach-wr512-3gn.c
1 /*
2  *  Unbranded router from DX board support
3  *  Also known as *WR512*-3GN by local vendors
4  *  e.g. WS-WR512N1, Sin Hon SH-WR512NU, and etc
5  *  (http://www.dealextreme.com/p/portable-wireless-n-3g-router-cdma2000-evdo-td-scdma-hspa-wcdma-45639)
6  *  This router is also known to be rebranded and sold by a number of local
7  *  vendors in several countries.
8  *
9  *  Copyright (C) 2011 Andrew Andrianov <necromant@necromant.ath.cx>
10  *  Based on MOFI3500-3N code by
11  *  Copyright (C) 2011 Layne Edwards <ledwards76@gmail.com>
12  *
13  *
14  *  This program is free software; you can redistribute it and/or modify it
15  *  under the terms of the GNU General Public License version 2 as published
16  *  by the Free Software Foundation.
17  */
18
19 #include <linux/init.h>
20 #include <linux/platform_device.h>
21 #include <linux/mtd/mtd.h>
22 #include <linux/mtd/partitions.h>
23 #include <linux/mtd/physmap.h>
24
25 #include <asm/mach-ralink/machine.h>
26 #include <asm/mach-ralink/dev-gpio-buttons.h>
27 #include <asm/mach-ralink/dev-gpio-leds.h>
28 #include <asm/mach-ralink/rt305x.h>
29 #include <asm/mach-ralink/rt305x_regs.h>
30
31 #include "devices.h"
32
33
34 #define WR512_3GN_GPIO_LED_3G           9
35 #define WR512_3GN_GPIO_LED_GATEWAY      11
36 #define WR512_3GN_GPIO_LED_AP           12
37 #define WR512_3GN_GPIO_LED_STATION      13
38 #define WR512_3GN_GPIO_LED_WPS          14
39
40 #define WR512_3GN_GPIO_BUTTON_RESET     10
41 #define WR512_3GN_GPIO_BUTTON_CONNECT   7
42 #define WR512_3GN_GPIO_BUTTON_WPS       0
43 #define WR512_3GN_GPIO_BUTTON_WPS2      8
44
45 #define WR512_3GN_BUTTONS_POLL_INTERVAL 20
46
47 static struct mtd_partition wr512_3gn_partitions[] = {
48         {
49                 .name   = "u-boot",
50                 .offset = 0,
51                 .size   = 0x030000,
52                 .mask_flags = MTD_WRITEABLE,
53         }, {
54                 .name   = "devdata",
55                 .offset = 0x030000,
56                 .size   = 0x010000,
57                 .mask_flags = MTD_WRITEABLE,
58         }, {
59                 .name   = "devconf",
60                 .offset = 0x040000,
61                 .size   = 0x010000,
62                 .mask_flags = MTD_WRITEABLE,
63         }, {
64                 .name   = "kernel",
65                 .offset = 0x050000,
66                 .size   = 0x0d0000,
67         }, {
68                 .name   = "rootfs",
69                 .offset = 0x120000,
70                 .size   = 0x2e0000,
71         }, {
72                 .name   = "firmware",
73                 .offset = 0x050000,
74                 .size   = 0x3b0000,
75         }
76 };
77
78 static struct physmap_flash_data wr512_3gn_flash_data = {
79         .nr_parts       = ARRAY_SIZE(wr512_3gn_partitions),
80         .parts          = wr512_3gn_partitions,
81 };
82
83 static struct gpio_led wr512_3gn_leds_gpio[] __initdata = {
84         {
85                 .name           = "wr512:green:3g",
86                 .gpio           = WR512_3GN_GPIO_LED_3G,
87                 .active_low     = 1,
88         }, {
89                 .name           = "wr512:green:gateway",
90                 .gpio           = WR512_3GN_GPIO_LED_GATEWAY,
91                 .active_low     = 1,
92         }, {
93                 .name           = "wr512:green:ap",
94                 .gpio           = WR512_3GN_GPIO_LED_AP,
95                 .active_low     = 1,
96         }, {
97                 .name           = "wr512:green:wps",
98                 .gpio           = WR512_3GN_GPIO_LED_WPS,
99                 .active_low     = 1,
100         }, {
101                 .name           = "wr512:green:station",
102                 .gpio           = WR512_3GN_GPIO_LED_STATION,
103                 .active_low     = 1,
104         }
105 };
106
107 static struct gpio_button wr512_3gn_gpio_buttons[] __initdata = {
108         {
109                 .desc           = "reset_wps",
110                 .type           = EV_KEY,
111                 .code           = KEY_RESTART,
112                 .threshold      = 3,
113                 .gpio           = WR512_3GN_GPIO_BUTTON_RESET,
114                 .active_low     = 1,
115         }, {
116                 .desc           = "mode",
117                 .type           = EV_KEY,
118                 .code           = KEY_M,
119                 .threshold      = 3,
120                 .gpio           = WR512_3GN_GPIO_BUTTON_CONNECT,
121                 .active_low     = 1,
122         }
123 };
124
125 #define WR512_3GN_GPIO_MODE \
126         ((RT305X_GPIO_MODE_GPIO << RT305X_GPIO_MODE_UART0_SHIFT) | \
127          RT305X_GPIO_MODE_MDIO)
128
129 static void __init wr512_3gn_init(void)
130 {
131         rt305x_gpio_init(WR512_3GN_GPIO_MODE);
132
133         rt305x_register_flash(0, &wr512_3gn_flash_data);
134         rt305x_esw_data.vlan_config = RT305X_ESW_VLAN_CONFIG_LLLLW;
135         rt305x_register_ethernet();
136         ramips_register_gpio_leds(-1, ARRAY_SIZE(wr512_3gn_leds_gpio),
137                                   wr512_3gn_leds_gpio);
138         ramips_register_gpio_buttons(-1, WR512_3GN_BUTTONS_POLL_INTERVAL,
139                                      ARRAY_SIZE(wr512_3gn_gpio_buttons),
140                                      wr512_3gn_gpio_buttons);
141         rt305x_register_wifi();
142         rt305x_register_wdt();
143         rt305x_register_usb();
144 }
145
146 MIPS_MACHINE(RAMIPS_MACH_WR512_3GN, "WR512-3GN", "WR512-3GN-like router",
147               wr512_3gn_init);