aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/ar71xx/files/arch/mips/ath79/mach-tl-wr2543n.c
diff options
context:
space:
mode:
authorJohn Crispin <blogic@openwrt.org>2012-08-22 09:10:24 +0000
committerJohn Crispin <blogic@openwrt.org>2012-08-22 09:10:24 +0000
commit38daca0070bcff0305a9b956f2c1af1d5227f3a1 (patch)
tree57735a7b18edd838a619fc256572326f7748c415 /target/linux/ar71xx/files/arch/mips/ath79/mach-tl-wr2543n.c
parent4ef25a5e5bac5454236c942dde250745f5b9081d (diff)
downloadmaster-187ad058-38daca0070bcff0305a9b956f2c1af1d5227f3a1.tar.gz
master-187ad058-38daca0070bcff0305a9b956f2c1af1d5227f3a1.tar.bz2
master-187ad058-38daca0070bcff0305a9b956f2c1af1d5227f3a1.zip
add led defintion for the WR2543 5GHz WLAN LED
Signed-off-by: Andy Leiserson <andy@leiserson.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@33215 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/ar71xx/files/arch/mips/ath79/mach-tl-wr2543n.c')
-rw-r--r--target/linux/ar71xx/files/arch/mips/ath79/mach-tl-wr2543n.c21
1 files changed, 20 insertions, 1 deletions
diff --git a/target/linux/ar71xx/files/arch/mips/ath79/mach-tl-wr2543n.c b/target/linux/ar71xx/files/arch/mips/ath79/mach-tl-wr2543n.c
index c650e5a610..d48d8fdd07 100644
--- a/target/linux/ar71xx/files/arch/mips/ath79/mach-tl-wr2543n.c
+++ b/target/linux/ar71xx/files/arch/mips/ath79/mach-tl-wr2543n.c
@@ -24,6 +24,10 @@
#define TL_WR2543N_GPIO_LED_WPS 0
#define TL_WR2543N_GPIO_LED_USB 8
+// The WLAN LEDs use GPIOs on the discrete AR9380 wmac
+#define TL_WR2543N_GPIO_WMAC_LED_WLAN2G 0
+#define TL_WR2543N_GPIO_WMAC_LED_WLAN5G 1
+
#define TL_WR2543N_GPIO_BTN_RESET 11
#define TL_WR2543N_GPIO_BTN_WPS 12
@@ -54,6 +58,14 @@ static struct gpio_led tl_wr2543n_leds_gpio[] __initdata = {
}
};
+static struct gpio_led tl_wr2543n_wmac_leds_gpio[] = {
+ {
+ .name = "tp-link:green:wlan5g",
+ .gpio = TL_WR2543N_GPIO_WMAC_LED_WLAN5G,
+ .active_low = 1,
+ },
+};
+
static struct gpio_keys_button tl_wr2543n_gpio_keys[] __initdata = {
{
.desc = "reset",
@@ -113,7 +125,14 @@ static void __init tl_wr2543n_setup(void)
tl_wr2543n_gpio_keys);
ath79_register_usb();
- ap9x_pci_setup_wmac_led_pin(0, 0);
+ // The ath9k driver uses this pin for its default led device, which is
+ // named ath9k-phy0, and reflects activity on either the 2 GHz or 5 GHz
+ // bands. This pin is connected to the WR2543's 2GHz WLAN LED.
+ ap9x_pci_setup_wmac_led_pin(0, TL_WR2543N_GPIO_WMAC_LED_WLAN2G);
+ // We also have the driver set up an led device for the WR2543's
+ // separate 5 GHz WLAN LED in case the user wants it.
+ ap9x_pci_setup_wmac_leds(0, tl_wr2543n_wmac_leds_gpio,
+ ARRAY_SIZE(tl_wr2543n_wmac_leds_gpio));
ap91_pci_init(eeprom, mac);
ath79_init_mac(ath79_eth0_data.mac_addr, mac, -1);