Skip to content

Commit

Permalink
lantiq: Fix ath9k LED for TDW8970.
Browse files Browse the repository at this point in the history
Backport of r47911, r47912, r47969 to CC.

All other required patches have already been backported in r48822.

Signed-off-by: Vittorio Gambaletta <openwrt@vittgam.net>

git-svn-id: svn://svn.openwrt.org/openwrt/branches/chaos_calmer@49229 3c298f89-4303-0410-b956-a3cf2f4a3e73
  • Loading branch information
John Crispin committed Apr 26, 2016
1 parent 78ee7e5 commit 420cb24
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 1 deletion.
3 changes: 3 additions & 0 deletions target/linux/lantiq/base-files/etc/uci-defaults/01_leds
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,9 @@ BTHOMEHUBV3A)
ucidef_set_led_wlan "wifi" "wifi" "soc:blue:wireless" "phy0tpt"
ucidef_set_led_netdev "internet" "internet" "soc:blue:broadband" "pppoa-wan"
;;
TDW8970)
ucidef_set_led_wlan "wifi" "wifi" "ath9k-phy0" "phy0tpt"
;;
VGV7510KW22)
ucidef_set_led_default "power" "power" "power" "1"
ucidef_set_led_default "power2" "power2" "power2" "0"
Expand Down
2 changes: 2 additions & 0 deletions target/linux/lantiq/dts/TDW8970.dts
Original file line number Diff line number Diff line change
Expand Up @@ -202,6 +202,8 @@
ath,mac-offset = <0xf100>;
ath,mac-increment;
ath,led-pin = <0>;
ath,disable-5ghz;
ath,led-active-high;
};

gpio-keys-polled {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,13 +51,14 @@ Signed-off-by: John Crispin <blogic@openwrt.org>
obj-$(CONFIG_XRX200_PHY_FW) += xrx200_phy_fw.o
--- /dev/null
+++ b/arch/mips/lantiq/xway/ath_eep.c
@@ -0,0 +1,282 @@
@@ -0,0 +1,298 @@
+/*
+ * Copyright (C) 2011 Luca Olivetti <luca@ventoso.org>
+ * Copyright (C) 2011 John Crispin <blogic@openwrt.org>
+ * Copyright (C) 2011 Andrej Vlašić <andrej.vlasic0@gmail.com>
+ * Copyright (C) 2013 Álvaro Fernández Rojas <noltari@gmail.com>
+ * Copyright (C) 2013 Daniel Gimpelevich <daniel@gimpelevich.san-francisco.ca.us>
+ * Copyright (C) 2015 Vittorio Gambaletta <openwrt@vittgam.net>
+ *
+ * This program is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License version 2 as published
Expand Down Expand Up @@ -192,6 +193,21 @@ Signed-off-by: John Crispin <blogic@openwrt.org>
+ dev_info(&pdev->dev, "using led pin %d.\n", led_pin);
+ }
+
+ if (of_property_read_bool(np, "ath,led-active-high")) {
+ ath9k_pdata.led_active_high = true;
+ dev_info(&pdev->dev, "inverted LED polarity\n");
+ }
+
+ if (of_property_read_bool(np, "ath,disable-2ghz")) {
+ ath9k_pdata.disable_2ghz = true;
+ dev_info(&pdev->dev, "disabled 2.4 GHz band\n");
+ }
+
+ if (of_property_read_bool(np, "ath,disable-5ghz")) {
+ ath9k_pdata.disable_5ghz = true;
+ dev_info(&pdev->dev, "disabled 5 GHz band\n");
+ }
+
+ dev_info(&pdev->dev, "loaded ath9k eeprom\n");
+
+ return 0;
Expand Down

0 comments on commit 420cb24

Please sign in to comment.