2 * Netgear WNDR3700 board support
4 * Copyright (C) 2009 Marco Porsch
5 * Copyright (C) 2009-2010 Gabor Juhos <juhosg@openwrt.org>
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.
12 #include <linux/platform_device.h>
13 #include <linux/mtd/mtd.h>
14 #include <linux/mtd/partitions.h>
15 #include <linux/delay.h>
16 #include <linux/rtl8366s.h>
18 #include <asm/mach-ar71xx/ar71xx.h>
22 #include "dev-m25p80.h"
23 #include "dev-ap94-pci.h"
24 #include "dev-gpio-buttons.h"
25 #include "dev-leds-gpio.h"
28 #define WNDR3700_GPIO_LED_WPS_ORANGE 0
29 #define WNDR3700_GPIO_LED_POWER_ORANGE 1
30 #define WNDR3700_GPIO_LED_POWER_GREEN 2
31 #define WNDR3700_GPIO_LED_WPS_GREEN 4
32 #define WNDR3700_GPIO_LED_WAN_GREEN 6
34 #define WNDR3700_GPIO_BTN_WPS 3
35 #define WNDR3700_GPIO_BTN_RESET 8
36 #define WNDR3700_GPIO_BTN_WIFI 11
38 #define WNDR3700_GPIO_RTL8366_SDA 5
39 #define WNDR3700_GPIO_RTL8366_SCK 7
41 #define WNDR3700_BUTTONS_POLL_INTERVAL 20
43 #define WNDR3700_ETH0_MAC_OFFSET 0
44 #define WNDR3700_ETH1_MAC_OFFSET 0x6
46 #define WNDR3700_WMAC0_MAC_OFFSET 0
47 #define WNDR3700_WMAC1_MAC_OFFSET 0xc
48 #define WNDR3700_CALDATA0_OFFSET 0x1000
49 #define WNDR3700_CALDATA1_OFFSET 0x5000
51 #ifdef CONFIG_MTD_PARTITIONS
52 static struct mtd_partition wndr3700_partitions
[] = {
57 .mask_flags
= MTD_WRITEABLE
,
62 .mask_flags
= MTD_WRITEABLE
,
71 .mask_flags
= MTD_WRITEABLE
,
76 .mask_flags
= MTD_WRITEABLE
,
81 .mask_flags
= MTD_WRITEABLE
,
83 .name
= "traffic_meter",
86 .mask_flags
= MTD_WRITEABLE
,
91 .mask_flags
= MTD_WRITEABLE
,
96 .mask_flags
= MTD_WRITEABLE
,
100 static struct mtd_partition wndr3700v2_partitions
[] = {
105 .mask_flags
= MTD_WRITEABLE
,
110 .mask_flags
= MTD_WRITEABLE
,
119 .mask_flags
= MTD_WRITEABLE
,
121 .name
= "config_bak",
124 .mask_flags
= MTD_WRITEABLE
,
129 .mask_flags
= MTD_WRITEABLE
,
131 .name
= "traffic_meter",
134 .mask_flags
= MTD_WRITEABLE
,
139 .mask_flags
= MTD_WRITEABLE
,
144 .mask_flags
= MTD_WRITEABLE
,
147 #define wndr3700_num_partitions ARRAY_SIZE(wndr3700_partitions)
148 #define wndr3700v2_num_partitions ARRAY_SIZE(wndr3700v2_partitions)
150 #define wndr3700_partitions NULL
151 #define wndr3700_num_partitions 0
152 #define wndr3700v2_partitions NULL
153 #define wndr3700v2_num_partitions 0
154 #endif /* CONFIG_MTD_PARTITIONS */
156 static struct flash_platform_data wndr3700_flash_data
;
158 static struct gpio_led wndr3700_leds_gpio
[] __initdata
= {
160 .name
= "wndr3700:green:power",
161 .gpio
= WNDR3700_GPIO_LED_POWER_GREEN
,
164 .name
= "wndr3700:orange:power",
165 .gpio
= WNDR3700_GPIO_LED_POWER_ORANGE
,
168 .name
= "wndr3700:green:wps",
169 .gpio
= WNDR3700_GPIO_LED_WPS_GREEN
,
172 .name
= "wndr3700:orange:wps",
173 .gpio
= WNDR3700_GPIO_LED_WPS_ORANGE
,
176 .name
= "wndr3700:green:wan",
177 .gpio
= WNDR3700_GPIO_LED_WAN_GREEN
,
182 static struct gpio_button wndr3700_gpio_buttons
[] __initdata
= {
188 .gpio
= WNDR3700_GPIO_BTN_RESET
,
193 .code
= KEY_WPS_BUTTON
,
195 .gpio
= WNDR3700_GPIO_BTN_WPS
,
202 .gpio
= WNDR3700_GPIO_BTN_WIFI
,
207 static struct rtl8366s_platform_data wndr3700_rtl8366s_data
= {
208 .gpio_sda
= WNDR3700_GPIO_RTL8366_SDA
,
209 .gpio_sck
= WNDR3700_GPIO_RTL8366_SCK
,
212 static struct platform_device wndr3700_rtl8366s_device
= {
213 .name
= RTL8366S_DRIVER_NAME
,
216 .platform_data
= &wndr3700_rtl8366s_data
,
220 static void __init
wndr3700_common_setup(void)
222 u8
*art
= (u8
*) KSEG1ADDR(0x1fff0000);
224 ar71xx_init_mac(ar71xx_eth0_data
.mac_addr
,
225 art
+ WNDR3700_ETH0_MAC_OFFSET
, 0);
226 ar71xx_eth0_pll_data
.pll_1000
= 0x11110000;
227 ar71xx_eth0_data
.mii_bus_dev
= &wndr3700_rtl8366s_device
.dev
;
228 ar71xx_eth0_data
.phy_if_mode
= PHY_INTERFACE_MODE_RGMII
;
229 ar71xx_eth0_data
.speed
= SPEED_1000
;
230 ar71xx_eth0_data
.duplex
= DUPLEX_FULL
;
232 ar71xx_init_mac(ar71xx_eth1_data
.mac_addr
,
233 art
+ WNDR3700_ETH1_MAC_OFFSET
, 0);
234 ar71xx_eth1_pll_data
.pll_1000
= 0x11110000;
235 ar71xx_eth1_data
.mii_bus_dev
= &wndr3700_rtl8366s_device
.dev
;
236 ar71xx_eth1_data
.phy_if_mode
= PHY_INTERFACE_MODE_RGMII
;
237 ar71xx_eth1_data
.phy_mask
= 0x10;
239 ar71xx_add_device_eth(0);
240 ar71xx_add_device_eth(1);
242 ar71xx_add_device_usb();
244 ar71xx_add_device_m25p80(&wndr3700_flash_data
);
246 ar71xx_add_device_leds_gpio(-1, ARRAY_SIZE(wndr3700_leds_gpio
),
249 ar71xx_add_device_gpio_buttons(-1, WNDR3700_BUTTONS_POLL_INTERVAL
,
250 ARRAY_SIZE(wndr3700_gpio_buttons
),
251 wndr3700_gpio_buttons
);
253 platform_device_register(&wndr3700_rtl8366s_device
);
254 platform_device_register_simple("wndr3700-led-usb", -1, NULL
, 0);
256 ap94_pci_setup_wmac_led_pin(0, 5);
257 ap94_pci_setup_wmac_led_pin(1, 5);
259 /* 2.4 GHz uses the first fixed antenna group (1, 0, 1, 0) */
260 ap94_pci_setup_wmac_gpio(0, (0xf << 6), (0xa << 6));
262 /* 5 GHz uses the second fixed antenna group (0, 1, 1, 0) */
263 ap94_pci_setup_wmac_gpio(1, (0xf << 6), (0x6 << 6));
265 ap94_pci_init(art
+ WNDR3700_CALDATA0_OFFSET
,
266 art
+ WNDR3700_WMAC0_MAC_OFFSET
,
267 art
+ WNDR3700_CALDATA1_OFFSET
,
268 art
+ WNDR3700_WMAC1_MAC_OFFSET
);
271 static void __init
wndr3700_setup(void)
273 wndr3700_flash_data
.parts
= wndr3700_partitions
,
274 wndr3700_flash_data
.nr_parts
= wndr3700_num_partitions
,
275 wndr3700_common_setup();
278 MIPS_MACHINE(AR71XX_MACH_WNDR3700
, "WNDR3700", "NETGEAR WNDR3700",
281 static void __init
wndr3700v2_setup(void)
283 wndr3700_flash_data
.parts
= wndr3700v2_partitions
,
284 wndr3700_flash_data
.nr_parts
= wndr3700v2_num_partitions
,
285 wndr3700_common_setup();
288 MIPS_MACHINE(AR71XX_MACH_WNDR3700V2
, "WNDR3700v2", "NETGEAR WNDR3700v2",