2 * NETGEAR WNR2000 board support
4 * Copyright (C) 2008-2009 Gabor Juhos <juhosg@openwrt.org>
5 * Copyright (C) 2008 Imre Kaloz <kaloz@openwrt.org>
6 * Copyright (C) 2008-2009 Andy Boyett <agb@openwrt.org>
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License version 2 as published
10 * by the Free Software Foundation.
13 #include <linux/mtd/mtd.h>
14 #include <linux/mtd/partitions.h>
16 #include <asm/mach-ar71xx/ar71xx.h>
20 #include "dev-m25p80.h"
21 #include "dev-ar913x-wmac.h"
22 #include "dev-gpio-buttons.h"
23 #include "dev-leds-gpio.h"
25 #define WNR2000_GPIO_LED_PWR_GREEN 14
26 #define WNR2000_GPIO_LED_PWR_AMBER 7
27 #define WNR2000_GPIO_LED_WPS 4
28 #define WNR2000_GPIO_LED_WLAN 6
29 #define WNR2000_GPIO_BTN_RESET 21
30 #define WNR2000_GPIO_BTN_WPS 8
32 #define WNR2000_BUTTONS_POLL_INTERVAL 20
34 #ifdef CONFIG_MTD_PARTITIONS
35 static struct mtd_partition wnr2000_partitions
[] = {
40 .mask_flags
= MTD_WRITEABLE
,
50 .name
= "user-config",
58 .name
= "language_table",
62 .name
= "rootfs_checksum",
69 .mask_flags
= MTD_WRITEABLE
,
72 #endif /* CONFIG_MTD_PARTITIONS */
74 static struct flash_platform_data wnr2000_flash_data
= {
75 #ifdef CONFIG_MTD_PARTITIONS
76 .parts
= wnr2000_partitions
,
77 .nr_parts
= ARRAY_SIZE(wnr2000_partitions
),
81 static struct gpio_led wnr2000_leds_gpio
[] __initdata
= {
83 .name
= "wnr2000:green:power",
84 .gpio
= WNR2000_GPIO_LED_PWR_GREEN
,
87 .name
= "wnr2000:amber:power",
88 .gpio
= WNR2000_GPIO_LED_PWR_AMBER
,
91 .name
= "wnr2000:green:wps",
92 .gpio
= WNR2000_GPIO_LED_WPS
,
95 .name
= "wnr2000:blue:wlan",
96 .gpio
= WNR2000_GPIO_LED_WLAN
,
101 static struct gpio_button wnr2000_gpio_buttons
[] __initdata
= {
107 .gpio
= WNR2000_GPIO_BTN_RESET
,
113 .gpio
= WNR2000_GPIO_BTN_WPS
,
117 static void __init
wnr2000_setup(void)
119 u8
*mac
= (u8
*) KSEG1ADDR(0x1fff1000);
121 ar71xx_set_mac_base(mac
);
122 ar71xx_add_device_mdio(0x0);
124 ar71xx_eth0_data
.phy_if_mode
= PHY_INTERFACE_MODE_RMII
;
125 ar71xx_eth0_data
.phy_mask
= 0xf;
126 ar71xx_eth0_data
.speed
= SPEED_100
;
127 ar71xx_eth0_data
.duplex
= DUPLEX_FULL
;
128 ar71xx_eth0_data
.has_ar8216
= 1;
130 ar71xx_eth1_data
.phy_if_mode
= PHY_INTERFACE_MODE_RMII
;
131 ar71xx_eth1_data
.phy_mask
= 0x10;
133 ar71xx_add_device_eth(0);
134 ar71xx_add_device_eth(1);
136 ar71xx_add_device_m25p80(&wnr2000_flash_data
);
138 ar71xx_add_device_leds_gpio(-1, ARRAY_SIZE(wnr2000_leds_gpio
),
141 ar71xx_add_device_gpio_buttons(-1, WNR2000_BUTTONS_POLL_INTERVAL
,
142 ARRAY_SIZE(wnr2000_gpio_buttons
),
143 wnr2000_gpio_buttons
);
146 ar913x_add_device_wmac();
149 MIPS_MACHINE(AR71XX_MACH_WNR2000
, "NETGEAR WNR2000", wnr2000_setup
);