ar71xx: fix TP-LINK TL-WR941ND v6 support
This commit is contained in:
parent
91b3c1d371
commit
6da1677d92
@ -0,0 +1,38 @@
|
|||||||
|
From: Miaoqing Pan <miaoqing@codeaurora.org>
|
||||||
|
Date: Tue, 1 Sep 2015 12:21:27 +0800
|
||||||
|
Subject: mac80211: ath9k: enable hw manual peak calibration for QCA9561
|
||||||
|
|
||||||
|
This patch fix https://lists.openwrt.org/pipermail/openwrt-devel/
|
||||||
|
2015-August/034979.html. As the peak detect calibration is set
|
||||||
|
incorrectly.
|
||||||
|
|
||||||
|
Signed-off-by: Miaoqing Pan <miaoqing@codeaurora.org>
|
||||||
|
|
||||||
|
diff --git a/package/kernel/mac80211/patches/546-ath9k_enable_hw_manual_peak_calibration.patch b/package/kernel/mac80211/patches/546-ath9k_enable_hw_manual_peak_calibration.patch
|
||||||
|
new file mode 100644
|
||||||
|
index 0000000..8606493
|
||||||
|
--- /dev/null
|
||||||
|
+++ b/package/kernel/mac80211/patches/546-ath9k_enable_hw_manual_peak_calibration.patch
|
||||||
|
@@ -0,0 +1,22 @@
|
||||||
|
+--- a/drivers/net/wireless/ath/ath9k/ar9003_calib.c
|
||||||
|
++++ b/drivers/net/wireless/ath/ath9k/ar9003_calib.c
|
||||||
|
+@@ -1249,7 +1249,8 @@ static void ar9003_hw_manual_peak_cal(struct ath_hw *ah, u8 chain, bool is_2g)
|
||||||
|
+ REG_RMW_FIELD(ah, AR_PHY_65NM_RXRF_AGC(chain),
|
||||||
|
+ AR_PHY_65NM_RXRF_AGC_AGC2G_CALDAC_OVR, 0x0);
|
||||||
|
+
|
||||||
|
+- if (AR_SREV_9003_PCOEM(ah) || AR_SREV_9550(ah) || AR_SREV_9531(ah)) {
|
||||||
|
++ if (AR_SREV_9003_PCOEM(ah) || AR_SREV_9550(ah) || AR_SREV_9531(ah) ||
|
||||||
|
++ AR_SREV_9561(ah)) {
|
||||||
|
+ if (is_2g)
|
||||||
|
+ REG_RMW_FIELD(ah, AR_PHY_65NM_RXRF_AGC(chain),
|
||||||
|
+ AR_PHY_65NM_RXRF_AGC_AGC2G_DBDAC_OVR,
|
||||||
|
+@@ -1640,7 +1641,8 @@ static bool ar9003_hw_init_cal_soc(struct ath_hw *ah,
|
||||||
|
+
|
||||||
|
+ skip_tx_iqcal:
|
||||||
|
+ if (run_agc_cal || !(ah->ah_flags & AH_FASTCC)) {
|
||||||
|
+- if (AR_SREV_9330_11(ah) || AR_SREV_9531(ah) || AR_SREV_9550(ah)) {
|
||||||
|
++ if (AR_SREV_9330_11(ah) || AR_SREV_9531(ah) || AR_SREV_9550(ah) ||
|
||||||
|
++ AR_SREV_9561(ah)) {
|
||||||
|
+ for (i = 0; i < AR9300_MAX_CHAINS; i++) {
|
||||||
|
+ if (!(ah->rxchainmask & (1 << i)))
|
||||||
|
+ continue;
|
@ -0,0 +1,35 @@
|
|||||||
|
From: Matthias Schiffer <mschiffer@universe-factory.net>
|
||||||
|
Date: Tue, 1 Sep 2015 19:59:16 +0200
|
||||||
|
Subject: mac80211: ath9k: add correct MAC/BB name for ar9561
|
||||||
|
|
||||||
|
diff --git a/package/kernel/mac80211/patches/547-ath9k_add-correct-MAC-BB-name-for-ar9561.patch b/package/kernel/mac80211/patches/547-ath9k_add-correct-MAC-BB-name-for-ar9561.patch
|
||||||
|
new file mode 100644
|
||||||
|
index 0000000..a2a2c78
|
||||||
|
--- /dev/null
|
||||||
|
+++ b/package/kernel/mac80211/patches/547-ath9k_add-correct-MAC-BB-name-for-ar9561.patch
|
||||||
|
@@ -0,0 +1,25 @@
|
||||||
|
+From 1165dd900cc8de3addbc8bef7e6196b07799d25e Mon Sep 17 00:00:00 2001
|
||||||
|
+From: Miaoqing Pan <miaoqing@qca.qualcomm.com>
|
||||||
|
+Date: Wed, 12 Aug 2015 14:20:46 +0800
|
||||||
|
+Subject: ath9k: add correct MAC/BB name for ar9561
|
||||||
|
+
|
||||||
|
+MAC/BB name is"????" if the MAC/BB is unknown.
|
||||||
|
+
|
||||||
|
+Signed-off-by: Miaoqing Pan <miaoqing@qca.qualcomm.com>
|
||||||
|
+Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
|
||||||
|
+
|
||||||
|
+diff --git a/drivers/net/wireless/ath/ath9k/hw.c b/drivers/net/wireless/ath/ath9k/hw.c
|
||||||
|
+index a31a680..1dd0339 100644
|
||||||
|
+--- a/drivers/net/wireless/ath/ath9k/hw.c
|
||||||
|
++++ b/drivers/net/wireless/ath/ath9k/hw.c
|
||||||
|
+@@ -3186,6 +3186,7 @@ static struct {
|
||||||
|
+ { AR_SREV_VERSION_9550, "9550" },
|
||||||
|
+ { AR_SREV_VERSION_9565, "9565" },
|
||||||
|
+ { AR_SREV_VERSION_9531, "9531" },
|
||||||
|
++ { AR_SREV_VERSION_9561, "9561" },
|
||||||
|
+ };
|
||||||
|
+
|
||||||
|
+ /* For devices with external radios */
|
||||||
|
+--
|
||||||
|
+cgit v0.10.2
|
||||||
|
+
|
@ -0,0 +1,366 @@
|
|||||||
|
From: Matthias Schiffer <mschiffer@universe-factory.net>
|
||||||
|
Date: Tue, 1 Sep 2015 20:59:22 +0200
|
||||||
|
Subject: ar71xx: fix TP-LINK TL-WR941ND v6 support
|
||||||
|
|
||||||
|
The images currently generated for the TL-WR941ND v6 try to treat it like
|
||||||
|
a TL-WDR3500, which doesn't make any sense and causes the kernel to panic
|
||||||
|
in early boot. I don't think this has ever worked (the TL-WR941ND v6 has
|
||||||
|
a different SoC, uses another MDIO bus, has only one WMAC and no USB...).
|
||||||
|
|
||||||
|
Fix this by adding proper support for the device.
|
||||||
|
|
||||||
|
diff --git a/target/linux/ar71xx/base-files/etc/diag.sh b/target/linux/ar71xx/base-files/etc/diag.sh
|
||||||
|
index ece7098..87e7eef 100644
|
||||||
|
--- a/target/linux/ar71xx/base-files/etc/diag.sh
|
||||||
|
+++ b/target/linux/ar71xx/base-files/etc/diag.sh
|
||||||
|
@@ -273,7 +273,8 @@ get_status_led() {
|
||||||
|
tl-wdr4300 | \
|
||||||
|
tl-wr703n | \
|
||||||
|
tl-wr710n | \
|
||||||
|
- tl-wr720n-v3)
|
||||||
|
+ tl-wr720n-v3 | \
|
||||||
|
+ tl-wr941nd-v6)
|
||||||
|
status_led="tp-link:blue:system"
|
||||||
|
;;
|
||||||
|
tl-wr841n-v9)
|
||||||
|
diff --git a/target/linux/ar71xx/base-files/etc/uci-defaults/01_leds b/target/linux/ar71xx/base-files/etc/uci-defaults/01_leds
|
||||||
|
index d628f1a..1aacf5a 100644
|
||||||
|
--- a/target/linux/ar71xx/base-files/etc/uci-defaults/01_leds
|
||||||
|
+++ b/target/linux/ar71xx/base-files/etc/uci-defaults/01_leds
|
||||||
|
@@ -452,6 +452,15 @@ tl-wr941nd-v5)
|
||||||
|
ucidef_set_led_wlan "wlan" "WLAN" "tp-link:green:wlan" "phy0tpt"
|
||||||
|
;;
|
||||||
|
|
||||||
|
+tl-wr941nd-v6)
|
||||||
|
+ ucidef_set_led_netdev "wan" "WAN" "tp-link:blue:wan" "eth0"
|
||||||
|
+ ucidef_set_led_switch "lan1" "LAN1" "tp-link:blue:lan1" "switch0" "0x10"
|
||||||
|
+ ucidef_set_led_switch "lan2" "LAN2" "tp-link:blue:lan2" "switch0" "0x08"
|
||||||
|
+ ucidef_set_led_switch "lan3" "LAN3" "tp-link:blue:lan3" "switch0" "0x04"
|
||||||
|
+ ucidef_set_led_switch "lan4" "LAN4" "tp-link:blue:lan4" "switch0" "0x02"
|
||||||
|
+ ucidef_set_led_wlan "wlan" "WLAN" "tp-link:blue:wlan" "phy0tpt"
|
||||||
|
+ ;;
|
||||||
|
+
|
||||||
|
tl-wa830re-v2)
|
||||||
|
ucidef_set_led_netdev "lan" "LAN" "tp-link:green:lan" "eth0"
|
||||||
|
ucidef_set_led_wlan "wlan" "WLAN" "tp-link:green:wlan" "phy0tpt"
|
||||||
|
diff --git a/target/linux/ar71xx/base-files/etc/uci-defaults/02_network b/target/linux/ar71xx/base-files/etc/uci-defaults/02_network
|
||||||
|
index 7e26886..3e52942 100644
|
||||||
|
--- a/target/linux/ar71xx/base-files/etc/uci-defaults/02_network
|
||||||
|
+++ b/target/linux/ar71xx/base-files/etc/uci-defaults/02_network
|
||||||
|
@@ -225,6 +225,7 @@ tl-mr3420-v2 |\
|
||||||
|
tl-wr841n-v8 |\
|
||||||
|
tl-wr842n-v2 |\
|
||||||
|
tl-wr941nd-v5 |\
|
||||||
|
+tl-wr941nd-v6 |\
|
||||||
|
wnr2000-v3 |\
|
||||||
|
wnr2000-v4 |\
|
||||||
|
wnr2200 |\
|
||||||
|
diff --git a/target/linux/ar71xx/base-files/lib/ar71xx.sh b/target/linux/ar71xx/base-files/lib/ar71xx.sh
|
||||||
|
index e1d03ea..7551697 100755
|
||||||
|
--- a/target/linux/ar71xx/base-files/lib/ar71xx.sh
|
||||||
|
+++ b/target/linux/ar71xx/base-files/lib/ar71xx.sh
|
||||||
|
@@ -784,6 +784,9 @@ ar71xx_board_detect() {
|
||||||
|
*"TL-WR941N/ND v5")
|
||||||
|
name="tl-wr941nd-v5"
|
||||||
|
;;
|
||||||
|
+ *"TL-WR941N/ND v6")
|
||||||
|
+ name="tl-wr941nd-v6"
|
||||||
|
+ ;;
|
||||||
|
*"TL-WR703N v1")
|
||||||
|
name="tl-wr703n"
|
||||||
|
;;
|
||||||
|
diff --git a/target/linux/ar71xx/base-files/lib/preinit/05_set_preinit_iface_ar71xx b/target/linux/ar71xx/base-files/lib/preinit/05_set_preinit_iface_ar71xx
|
||||||
|
index f11ea8c..fd337e1 100644
|
||||||
|
--- a/target/linux/ar71xx/base-files/lib/preinit/05_set_preinit_iface_ar71xx
|
||||||
|
+++ b/target/linux/ar71xx/base-files/lib/preinit/05_set_preinit_iface_ar71xx
|
||||||
|
@@ -35,6 +35,7 @@ set_preinit_iface() {
|
||||||
|
tl-wr720n-v3 |\
|
||||||
|
tl-wr841n-v8 |\
|
||||||
|
tl-wr842n-v2 |\
|
||||||
|
+ tl-wr941nd-v6 |\
|
||||||
|
wnr2000-v3 |\
|
||||||
|
wnr2200 |\
|
||||||
|
wnr612-v2 |\
|
||||||
|
diff --git a/target/linux/ar71xx/base-files/lib/upgrade/platform.sh b/target/linux/ar71xx/base-files/lib/upgrade/platform.sh
|
||||||
|
index e5376ef..88b02ee 100755
|
||||||
|
--- a/target/linux/ar71xx/base-files/lib/upgrade/platform.sh
|
||||||
|
+++ b/target/linux/ar71xx/base-files/lib/upgrade/platform.sh
|
||||||
|
@@ -351,6 +351,7 @@ platform_check_image() {
|
||||||
|
tl-wr842n-v2 | \
|
||||||
|
tl-wr941nd | \
|
||||||
|
tl-wr941nd-v5 | \
|
||||||
|
+ tl-wr941nd-v6 | \
|
||||||
|
tl-wr1041n-v2 | \
|
||||||
|
tl-wr1043nd | \
|
||||||
|
tl-wr1043nd-v2 | \
|
||||||
|
diff --git a/target/linux/ar71xx/config-3.18 b/target/linux/ar71xx/config-3.18
|
||||||
|
index d661aa7..bf618a4 100644
|
||||||
|
--- a/target/linux/ar71xx/config-3.18
|
||||||
|
+++ b/target/linux/ar71xx/config-3.18
|
||||||
|
@@ -130,6 +130,7 @@ CONFIG_ATH79_MACH_TL_WR841N_V1=y
|
||||||
|
CONFIG_ATH79_MACH_TL_WR841N_V8=y
|
||||||
|
CONFIG_ATH79_MACH_TL_WR841N_V9=y
|
||||||
|
CONFIG_ATH79_MACH_TL_WR941ND=y
|
||||||
|
+CONFIG_ATH79_MACH_TL_WR941ND_V6=y
|
||||||
|
CONFIG_ATH79_MACH_TUBE2H=y
|
||||||
|
CONFIG_ATH79_MACH_UBNT=y
|
||||||
|
CONFIG_ATH79_MACH_UBNT_XM=y
|
||||||
|
diff --git a/target/linux/ar71xx/files/arch/mips/ath79/mach-tl-wr941nd-v6.c b/target/linux/ar71xx/files/arch/mips/ath79/mach-tl-wr941nd-v6.c
|
||||||
|
new file mode 100644
|
||||||
|
index 0000000..55b4c00
|
||||||
|
--- /dev/null
|
||||||
|
+++ b/target/linux/ar71xx/files/arch/mips/ath79/mach-tl-wr941nd-v6.c
|
||||||
|
@@ -0,0 +1,151 @@
|
||||||
|
+/*
|
||||||
|
+ * TP-LINK TL-WR941N/ND v6 board support
|
||||||
|
+ *
|
||||||
|
+ * Copyright (C) 2015 Matthias Schiffer <mschiffer@universe-factory.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
|
||||||
|
+ * by the Free Software Foundation.
|
||||||
|
+ */
|
||||||
|
+
|
||||||
|
+#include <linux/gpio.h>
|
||||||
|
+#include <linux/platform_device.h>
|
||||||
|
+
|
||||||
|
+#include <asm/mach-ath79/ath79.h>
|
||||||
|
+#include <asm/mach-ath79/ar71xx_regs.h>
|
||||||
|
+
|
||||||
|
+#include "common.h"
|
||||||
|
+#include "dev-eth.h"
|
||||||
|
+#include "dev-gpio-buttons.h"
|
||||||
|
+#include "dev-leds-gpio.h"
|
||||||
|
+#include "dev-m25p80.h"
|
||||||
|
+#include "dev-wmac.h"
|
||||||
|
+#include "machtypes.h"
|
||||||
|
+
|
||||||
|
+
|
||||||
|
+#define TL_WR941ND_V6_GPIO_LED_QSS 3
|
||||||
|
+#define TL_WR941ND_V6_GPIO_LED_WAN 14
|
||||||
|
+#define TL_WR941ND_V6_GPIO_LED_WAN_RED 15
|
||||||
|
+#define TL_WR941ND_V6_GPIO_LED_LAN1 7
|
||||||
|
+#define TL_WR941ND_V6_GPIO_LED_LAN2 6
|
||||||
|
+#define TL_WR941ND_V6_GPIO_LED_LAN3 5
|
||||||
|
+#define TL_WR941ND_V6_GPIO_LED_LAN4 4
|
||||||
|
+#define TL_WR941ND_V6_GPIO_LED_WLAN 8
|
||||||
|
+#define TL_WR941ND_V6_GPIO_LED_SYSTEM 18
|
||||||
|
+
|
||||||
|
+#define TL_WR941ND_V6_GPIO_BTN_RESET 1
|
||||||
|
+#define TL_WR941ND_V6_GPIO_BTN_RFKILL 2
|
||||||
|
+
|
||||||
|
+#define TL_WR941ND_V6_KEYS_POLL_INTERVAL 20
|
||||||
|
+#define TL_WR941ND_V6_KEYS_DEBOUNCE_INTERVAL (3 * TL_WR941ND_V6_KEYS_POLL_INTERVAL)
|
||||||
|
+
|
||||||
|
+
|
||||||
|
+static struct gpio_led tl_wr941nd_v6_leds_gpio[] __initdata = {
|
||||||
|
+ {
|
||||||
|
+ .name = "tp-link:blue:qss",
|
||||||
|
+ .gpio = TL_WR941ND_V6_GPIO_LED_QSS,
|
||||||
|
+ .active_low = 1,
|
||||||
|
+ },
|
||||||
|
+ {
|
||||||
|
+ .name = "tp-link:blue:wan",
|
||||||
|
+ .gpio = TL_WR941ND_V6_GPIO_LED_WAN,
|
||||||
|
+ .active_low = 1,
|
||||||
|
+ },
|
||||||
|
+ {
|
||||||
|
+ .name = "tp-link:red:wan",
|
||||||
|
+ .gpio = TL_WR941ND_V6_GPIO_LED_WAN_RED,
|
||||||
|
+ .active_low = 0,
|
||||||
|
+ },
|
||||||
|
+ {
|
||||||
|
+ .name = "tp-link:blue:lan1",
|
||||||
|
+ .gpio = TL_WR941ND_V6_GPIO_LED_LAN1,
|
||||||
|
+ .active_low = 1,
|
||||||
|
+ },
|
||||||
|
+ {
|
||||||
|
+ .name = "tp-link:blue:lan2",
|
||||||
|
+ .gpio = TL_WR941ND_V6_GPIO_LED_LAN2,
|
||||||
|
+ .active_low = 1,
|
||||||
|
+ },
|
||||||
|
+ {
|
||||||
|
+ .name = "tp-link:blue:lan3",
|
||||||
|
+ .gpio = TL_WR941ND_V6_GPIO_LED_LAN3,
|
||||||
|
+ .active_low = 1,
|
||||||
|
+ },
|
||||||
|
+ {
|
||||||
|
+ .name = "tp-link:blue:lan4",
|
||||||
|
+ .gpio = TL_WR941ND_V6_GPIO_LED_LAN4,
|
||||||
|
+ .active_low = 1,
|
||||||
|
+ },
|
||||||
|
+ {
|
||||||
|
+ .name = "tp-link:blue:wlan",
|
||||||
|
+ .gpio = TL_WR941ND_V6_GPIO_LED_WLAN,
|
||||||
|
+ .active_low = 1,
|
||||||
|
+ },
|
||||||
|
+ {
|
||||||
|
+ .name = "tp-link:blue:system",
|
||||||
|
+ .gpio = TL_WR941ND_V6_GPIO_LED_SYSTEM,
|
||||||
|
+ .active_low = 1,
|
||||||
|
+ },
|
||||||
|
+};
|
||||||
|
+
|
||||||
|
+static struct gpio_keys_button tl_wr941nd_v6_gpio_keys[] __initdata = {
|
||||||
|
+ {
|
||||||
|
+ .desc = "Reset button",
|
||||||
|
+ .type = EV_KEY,
|
||||||
|
+ .code = KEY_RESTART,
|
||||||
|
+ .debounce_interval = TL_WR941ND_V6_KEYS_DEBOUNCE_INTERVAL,
|
||||||
|
+ .gpio = TL_WR941ND_V6_GPIO_BTN_RESET,
|
||||||
|
+ .active_low = 1,
|
||||||
|
+ }, {
|
||||||
|
+ .desc = "RFKILL button",
|
||||||
|
+ .type = EV_KEY,
|
||||||
|
+ .code = KEY_RFKILL,
|
||||||
|
+ .debounce_interval = TL_WR941ND_V6_KEYS_DEBOUNCE_INTERVAL,
|
||||||
|
+ .gpio = TL_WR941ND_V6_GPIO_BTN_RFKILL,
|
||||||
|
+ .active_low = 1,
|
||||||
|
+ }
|
||||||
|
+};
|
||||||
|
+
|
||||||
|
+
|
||||||
|
+static const char *tl_wr941n_v6_part_probes[] = {
|
||||||
|
+ "tp-link",
|
||||||
|
+ NULL,
|
||||||
|
+};
|
||||||
|
+
|
||||||
|
+static struct flash_platform_data tl_wr941n_v6_flash_data = {
|
||||||
|
+ .part_probes = tl_wr941n_v6_part_probes,
|
||||||
|
+};
|
||||||
|
+
|
||||||
|
+
|
||||||
|
+static void __init tl_wr941nd_v6_setup(void)
|
||||||
|
+{
|
||||||
|
+ u8 *mac = (u8 *) KSEG1ADDR(0x1f01fc00);
|
||||||
|
+ u8 *ee = (u8 *) KSEG1ADDR(0x1fff1000);
|
||||||
|
+
|
||||||
|
+ ath79_register_m25p80(&tl_wr941n_v6_flash_data);
|
||||||
|
+
|
||||||
|
+ ath79_register_leds_gpio(-1, ARRAY_SIZE(tl_wr941nd_v6_leds_gpio),
|
||||||
|
+ tl_wr941nd_v6_leds_gpio);
|
||||||
|
+
|
||||||
|
+ ath79_register_gpio_keys_polled(-1, TL_WR941ND_V6_KEYS_POLL_INTERVAL,
|
||||||
|
+ ARRAY_SIZE(tl_wr941nd_v6_gpio_keys),
|
||||||
|
+ tl_wr941nd_v6_gpio_keys);
|
||||||
|
+
|
||||||
|
+ ath79_register_mdio(0, 0x0);
|
||||||
|
+
|
||||||
|
+ ath79_init_mac(ath79_eth0_data.mac_addr, mac, 1);
|
||||||
|
+ ath79_init_mac(ath79_eth1_data.mac_addr, mac, -1);
|
||||||
|
+
|
||||||
|
+ ath79_switch_data.phy4_mii_en = 1;
|
||||||
|
+ ath79_switch_data.phy_poll_mask = BIT(0);
|
||||||
|
+ ath79_eth0_data.phy_mask = BIT(0);
|
||||||
|
+
|
||||||
|
+ ath79_register_eth(0);
|
||||||
|
+ ath79_register_eth(1);
|
||||||
|
+
|
||||||
|
+ ath79_register_wmac(ee, mac);
|
||||||
|
+
|
||||||
|
+}
|
||||||
|
+
|
||||||
|
+MIPS_MACHINE(ATH79_MACH_TL_WR941ND_V6, "TL-WR941ND-v6", "TP-LINK TL-WR941N/ND v6",
|
||||||
|
+ tl_wr941nd_v6_setup);
|
||||||
|
diff --git a/target/linux/ar71xx/image/Makefile b/target/linux/ar71xx/image/Makefile
|
||||||
|
index 0600f98..9a6a794 100644
|
||||||
|
--- a/target/linux/ar71xx/image/Makefile
|
||||||
|
+++ b/target/linux/ar71xx/image/Makefile
|
||||||
|
@@ -576,7 +576,7 @@ endef
|
||||||
|
|
||||||
|
define Device/tl-wr941nd-v6
|
||||||
|
$(Device/tplink-4mlzma)
|
||||||
|
- BOARDNAME := TL-WDR3500
|
||||||
|
+ BOARDNAME := TL-WR941ND-v6
|
||||||
|
DEVICE_PROFILE := TLWR941
|
||||||
|
TPLINK_HWID := 0x09410006
|
||||||
|
endef
|
||||||
|
diff --git a/target/linux/ar71xx/patches-3.18/610-MIPS-ath79-openwrt-machines.patch b/target/linux/ar71xx/patches-3.18/610-MIPS-ath79-openwrt-machines.patch
|
||||||
|
index 941cb49..d1246a9 100644
|
||||||
|
--- a/target/linux/ar71xx/patches-3.18/610-MIPS-ath79-openwrt-machines.patch
|
||||||
|
+++ b/target/linux/ar71xx/patches-3.18/610-MIPS-ath79-openwrt-machines.patch
|
||||||
|
@@ -1,6 +1,6 @@
|
||||||
|
--- a/arch/mips/ath79/machtypes.h
|
||||||
|
+++ b/arch/mips/ath79/machtypes.h
|
||||||
|
-@@ -16,22 +16,195 @@
|
||||||
|
+@@ -16,22 +16,196 @@
|
||||||
|
|
||||||
|
enum ath79_mach_type {
|
||||||
|
ATH79_MACH_GENERIC = 0,
|
||||||
|
@@ -147,6 +147,7 @@
|
||||||
|
+ ATH79_MACH_TL_WR842N_V2, /* TP-LINK TL-WR842N/ND v2 */
|
||||||
|
+ ATH79_MACH_TL_WR941ND, /* TP-LINK TL-WR941ND */
|
||||||
|
+ ATH79_MACH_TL_WR941ND_V5, /* TP-LINK TL-WR941ND v5 */
|
||||||
|
++ ATH79_MACH_TL_WR941ND_V6, /* TP-LINK TL-WR941ND v6 */
|
||||||
|
+ ATH79_MACH_TUBE2H, /* Alfa Network Tube2H */
|
||||||
|
+ ATH79_MACH_UBNT_AIRGW, /* Ubiquiti AirGateway */
|
||||||
|
ATH79_MACH_UBNT_AIRROUTER, /* Ubiquiti AirRouter */
|
||||||
|
@@ -269,7 +270,7 @@
|
||||||
|
config ATH79_MACH_AP121
|
||||||
|
bool "Atheros AP121 reference board"
|
||||||
|
select SOC_AR933X
|
||||||
|
-@@ -11,62 +75,1030 @@ config ATH79_MACH_AP121
|
||||||
|
+@@ -11,62 +75,1039 @@ config ATH79_MACH_AP121
|
||||||
|
select ATH79_DEV_M25P80
|
||||||
|
select ATH79_DEV_USB
|
||||||
|
select ATH79_DEV_WMAC
|
||||||
|
@@ -1233,6 +1234,15 @@
|
||||||
|
+ select ATH79_DEV_M25P80
|
||||||
|
+ select ATH79_DEV_WMAC
|
||||||
|
+
|
||||||
|
++config ATH79_MACH_TL_WR941ND_V6
|
||||||
|
++ bool "TP-LINK TL-WR941ND v6 support"
|
||||||
|
++ select SOC_QCA956X
|
||||||
|
++ select ATH79_DEV_ETH
|
||||||
|
++ select ATH79_DEV_GPIO_BUTTONS
|
||||||
|
++ select ATH79_DEV_LEDS_GPIO
|
||||||
|
++ select ATH79_DEV_M25P80
|
||||||
|
++ select ATH79_DEV_WMAC
|
||||||
|
++
|
||||||
|
+config ATH79_MACH_TL_WR1041N_V2
|
||||||
|
+ bool "TP-LINK TL-WR1041N v2 support"
|
||||||
|
+ select SOC_AR934X
|
||||||
|
@@ -1328,7 +1338,7 @@
|
||||||
|
|
||||||
|
config ATH79_MACH_UBNT_XM
|
||||||
|
bool "Ubiquiti Networks XM/UniFi boards"
|
||||||
|
-@@ -83,6 +1115,97 @@ config ATH79_MACH_UBNT_XM
|
||||||
|
+@@ -83,6 +1124,97 @@ config ATH79_MACH_UBNT_XM
|
||||||
|
Say 'Y' here if you want your kernel to support the
|
||||||
|
Ubiquiti Networks XM (rev 1.0) board.
|
||||||
|
|
||||||
|
@@ -1426,7 +1436,7 @@
|
||||||
|
endmenu
|
||||||
|
|
||||||
|
config SOC_AR71XX
|
||||||
|
-@@ -124,7 +1247,10 @@ config ATH79_DEV_DSA
|
||||||
|
+@@ -124,7 +1256,10 @@ config ATH79_DEV_DSA
|
||||||
|
config ATH79_DEV_ETH
|
||||||
|
def_bool n
|
||||||
|
|
||||||
|
@@ -1438,7 +1448,7 @@
|
||||||
|
def_bool n
|
||||||
|
|
||||||
|
config ATH79_DEV_GPIO_BUTTONS
|
||||||
|
-@@ -154,6 +1280,11 @@ config ATH79_PCI_ATH9K_FIXUP
|
||||||
|
+@@ -154,6 +1289,11 @@ config ATH79_PCI_ATH9K_FIXUP
|
||||||
|
def_bool n
|
||||||
|
|
||||||
|
config ATH79_ROUTERBOOT
|
||||||
|
@@ -1452,7 +1462,7 @@
|
||||||
|
endif
|
||||||
|
--- a/arch/mips/ath79/Makefile
|
||||||
|
+++ b/arch/mips/ath79/Makefile
|
||||||
|
-@@ -38,9 +38,124 @@ obj-$(CONFIG_ATH79_ROUTERBOOT) += route
|
||||||
|
+@@ -38,9 +38,125 @@ obj-$(CONFIG_ATH79_ROUTERBOOT) += route
|
||||||
|
#
|
||||||
|
# Machines
|
||||||
|
#
|
||||||
|
@@ -1543,6 +1553,7 @@
|
||||||
|
+obj-$(CONFIG_ATH79_MACH_TL_WR841N_V8) += mach-tl-wr841n-v8.o
|
||||||
|
+obj-$(CONFIG_ATH79_MACH_TL_WR841N_V9) += mach-tl-wr841n-v9.o
|
||||||
|
+obj-$(CONFIG_ATH79_MACH_TL_WR941ND) += mach-tl-wr941nd.o
|
||||||
|
++obj-$(CONFIG_ATH79_MACH_TL_WR941ND_V6) += mach-tl-wr941nd-v6.o
|
||||||
|
+obj-$(CONFIG_ATH79_MACH_TL_WR1041N_V2) += mach-tl-wr1041n-v2.o
|
||||||
|
+obj-$(CONFIG_ATH79_MACH_TL_WR1043ND) += mach-tl-wr1043nd.o
|
||||||
|
+obj-$(CONFIG_ATH79_MACH_TL_WR1043ND_V2) += mach-tl-wr1043nd-v2.o
|
@ -66,13 +66,13 @@ $(eval $(call GluonModel,TLWR941,tl-wr941nd-v2,tp-link-tl-wr941n-nd-v2))
|
|||||||
$(eval $(call GluonModel,TLWR941,tl-wr941nd-v3,tp-link-tl-wr941n-nd-v3))
|
$(eval $(call GluonModel,TLWR941,tl-wr941nd-v3,tp-link-tl-wr941n-nd-v3))
|
||||||
$(eval $(call GluonModel,TLWR941,tl-wr941nd-v4,tp-link-tl-wr941n-nd-v4))
|
$(eval $(call GluonModel,TLWR941,tl-wr941nd-v4,tp-link-tl-wr941n-nd-v4))
|
||||||
$(eval $(call GluonModel,TLWR941,tl-wr941nd-v5,tp-link-tl-wr941n-nd-v5))
|
$(eval $(call GluonModel,TLWR941,tl-wr941nd-v5,tp-link-tl-wr941n-nd-v5))
|
||||||
ifeq ($(BROKEN),1)
|
$(eval $(call GluonModel,TLWR941,tl-wr941nd-v6,tp-link-tl-wr941n-nd-v6))
|
||||||
$(eval $(call GluonModel,TLWR941,tl-wr941nd-v6,tp-link-tl-wr941n-nd-v6)) # BROKEN: untested
|
|
||||||
|
|
||||||
|
ifeq ($(BROKEN),1)
|
||||||
$(eval $(call GluonModel,TLWR941,tl-wr941nd-v4,tp-link-tl-wr940n-nd-v1)) # BROKEN: untested
|
$(eval $(call GluonModel,TLWR941,tl-wr941nd-v4,tp-link-tl-wr940n-nd-v1)) # BROKEN: untested
|
||||||
$(eval $(call GluonModel,TLWR941,tl-wr941nd-v5,tp-link-tl-wr940n-nd-v2)) # BROKEN: untested
|
$(eval $(call GluonModel,TLWR941,tl-wr941nd-v5,tp-link-tl-wr940n-nd-v2)) # BROKEN: untested
|
||||||
$(eval $(call GluonModel,TLWR941,tl-wr941nd-v6,tp-link-tl-wr940n-nd-v3)) # BROKEN: untested
|
|
||||||
endif
|
endif
|
||||||
|
$(eval $(call GluonModel,TLWR941,tl-wr941nd-v6,tp-link-tl-wr940n-nd-v3))
|
||||||
|
|
||||||
# TL-WR1043N/ND v1, v2
|
# TL-WR1043N/ND v1, v2
|
||||||
$(eval $(call GluonProfile,TLWR1043))
|
$(eval $(call GluonProfile,TLWR1043))
|
||||||
|
Loading…
Reference in New Issue
Block a user