aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/ar71xx/files/arch/mips/ath79/mach-wnr2000-v3.c
diff options
context:
space:
mode:
authorJohn Crispin <blogic@openwrt.org>2015-01-30 08:06:40 +0000
committerJohn Crispin <blogic@openwrt.org>2015-01-30 08:06:40 +0000
commit93eb47fb3d13c7d85ca193cfbe2ebc50e0af0ec1 (patch)
tree9c2af604ff670904c96e507cc6db4c7d84866c8b /target/linux/ar71xx/files/arch/mips/ath79/mach-wnr2000-v3.c
parentf223ab856d64ad86fe82d371dc4b5702ed386af4 (diff)
downloadmaster-187ad058-93eb47fb3d13c7d85ca193cfbe2ebc50e0af0ec1.tar.gz
master-187ad058-93eb47fb3d13c7d85ca193cfbe2ebc50e0af0ec1.tar.bz2
master-187ad058-93eb47fb3d13c7d85ca193cfbe2ebc50e0af0ec1.zip
ar71xx: add Netgear WNR1000v2/WNR1000v2-VC support (#18633)
The board is already supported by OpenWrt. WNR1000v2/WNR1000v2-VC are pretty much the same as WNR2000v3/WNR612v2, therefore the same initialization code and flash layout is used. Signed-off-by: Ștefan Rusu <saltwaterc@gmail.com> Tested-by: Douglas Fraser <1dsfraser@gmail.com> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@44221 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/ar71xx/files/arch/mips/ath79/mach-wnr2000-v3.c')
-rw-r--r--target/linux/ar71xx/files/arch/mips/ath79/mach-wnr2000-v3.c27
1 files changed, 26 insertions, 1 deletions
diff --git a/target/linux/ar71xx/files/arch/mips/ath79/mach-wnr2000-v3.c b/target/linux/ar71xx/files/arch/mips/ath79/mach-wnr2000-v3.c
index 6acd991eb6..2e14782200 100644
--- a/target/linux/ar71xx/files/arch/mips/ath79/mach-wnr2000-v3.c
+++ b/target/linux/ar71xx/files/arch/mips/ath79/mach-wnr2000-v3.c
@@ -1,5 +1,5 @@
/*
- * NETGEAR WNR2000v3 board support
+ * NETGEAR WNR2000v3/WNR612v2/WNR1000v2 board support
*
* Copytight (C) 2013 Mathieu Olivari <mathieu.olivari@gmail.com>
* Copyright (C) 2008-2009 Gabor Juhos <juhosg@openwrt.org>
@@ -31,6 +31,9 @@
#define WNR612V2_GPIO_LED_PWR_GREEN 11
+#define WNR1000V2_GPIO_LED_PWR_AMBER 1
+#define WNR1000V2_GPIO_LED_PWR_GREEN 11
+
#define WNR2000V3_KEYS_POLL_INTERVAL 20 /* msecs */
#define WNR2000V3_KEYS_DEBOUNCE_INTERVAL (3 * WNR2000V3_KEYS_POLL_INTERVAL)
@@ -58,6 +61,18 @@ static struct gpio_led wnr612v2_leds_gpio[] __initdata = {
}
};
+static struct gpio_led wnr1000v2_leds_gpio[] __initdata = {
+ {
+ .name = "netgear:green:power",
+ .gpio = WNR1000V2_GPIO_LED_PWR_GREEN,
+ .active_low = 1,
+ }, {
+ .name = "netgear:amber:power",
+ .gpio = WNR1000V2_GPIO_LED_PWR_AMBER,
+ .active_low = 1,
+ }
+};
+
static struct gpio_keys_button wnr2000v3_gpio_keys[] __initdata = {
{
.desc = "wps",
@@ -113,3 +128,13 @@ static void __init wnr612v2_setup(void)
}
MIPS_MACHINE(ATH79_MACH_WNR612_V2, "WNR612V2", "NETGEAR WNR612 V2", wnr612v2_setup);
+
+static void __init wnr1000v2_setup(void)
+{
+ wnr_common_setup();
+
+ ath79_register_leds_gpio(-1, ARRAY_SIZE(wnr1000v2_leds_gpio),
+ wnr1000v2_leds_gpio);
+}
+
+MIPS_MACHINE(ATH79_MACH_WNR1000_V2, "WNR1000V2", "NETGEAR WNR1000 V2", wnr1000v2_setup);