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.
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>
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.
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>
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>
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
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
45 #define WR512_3GN_BUTTONS_POLL_INTERVAL 20
47 #ifdef CONFIG_MTD_PARTITIONS
49 static struct mtd_partition wr512_3gn_partitions
[] = {
54 .mask_flags
= MTD_WRITEABLE
,
59 .mask_flags
= MTD_WRITEABLE
,
64 .mask_flags
= MTD_WRITEABLE
,
80 #endif /* CONFIG_MTD_PARTITIONS */
82 static struct physmap_flash_data wr512_3gn_flash_data
= {
83 #ifdef CONFIG_MTD_PARTITIONS
84 .nr_parts
= ARRAY_SIZE(wr512_3gn_partitions
),
85 .parts
= wr512_3gn_partitions
,
89 static struct gpio_led wr512_3gn_leds_gpio
[] __initdata
= {
91 .name
= "wr512:green:3g",
92 .gpio
= WR512_3GN_GPIO_LED_3G
,
95 .name
= "wr512:green:gateway",
96 .gpio
= WR512_3GN_GPIO_LED_GATEWAY
,
99 .name
= "wr512:green:ap",
100 .gpio
= WR512_3GN_GPIO_LED_AP
,
103 .name
= "wr512:green:wps",
104 .gpio
= WR512_3GN_GPIO_LED_WPS
,
107 .name
= "wr512:green:station",
108 .gpio
= WR512_3GN_GPIO_LED_STATION
,
113 static struct gpio_button wr512_3gn_gpio_buttons
[] __initdata
= {
119 .gpio
= WR512_3GN_GPIO_BUTTON_RESET
,
126 .gpio
= WR512_3GN_GPIO_BUTTON_CONNECT
,
131 #define WR512_3GN_GPIO_MODE \
132 ((RT305X_GPIO_MODE_GPIO << RT305X_GPIO_MODE_UART0_SHIFT) | \
133 RT305X_GPIO_MODE_MDIO)
135 static void __init
wr512_3gn_init(void)
137 rt305x_gpio_init(WR512_3GN_GPIO_MODE
);
139 rt305x_register_flash(0, &wr512_3gn_flash_data
);
140 rt305x_esw_data
.vlan_config
= RT305X_ESW_VLAN_CONFIG_LLLLW
;
141 rt305x_register_ethernet();
142 ramips_register_gpio_leds(-1, ARRAY_SIZE(wr512_3gn_leds_gpio
),
143 wr512_3gn_leds_gpio
);
144 ramips_register_gpio_buttons(-1, WR512_3GN_BUTTONS_POLL_INTERVAL
,
145 ARRAY_SIZE(wr512_3gn_gpio_buttons
),
146 wr512_3gn_gpio_buttons
);
147 rt305x_register_wifi();
148 rt305x_register_wdt();
149 rt305x_register_usb();
152 MIPS_MACHINE(RAMIPS_MACH_WR512_3GN
, "WR512-3GN", "WR512-3GN-like router",