0007-ar71xx-add-kernel-support-for-the-TL-WDR3500-board.patch 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246
  1. From: juhosg <juhosg@3c298f89-4303-0410-b956-a3cf2f4a3e73>
  2. Date: Fri, 1 Feb 2013 15:50:29 +0000
  3. Subject: ar71xx: add kernel support for the TL-WDR3500 board
  4. WDR3500 is similar to WDR3600 except it doesn't have gigabit ethernet,
  5. and has only 1 USB port.
  6. Pending issues:
  7. * Leds are not working at all (except power and wlan_5g)
  8. * LAN switch ethernet ports are reversed with respect to case label.
  9. [Label] -> soft device
  10. [LAN1] -> eth0.4
  11. [LAN2] -> eth0.3
  12. [LAN3] -> eth0.2
  13. [LAN4] -> eth0.1
  14. Based on http://patchwork.openwrt.org/patch/3208/
  15. Thanks-to: Paul Fertser <fercerpav@gmail.com>
  16. Signed-off-by: Gui Iribarren <gui@altermundi.net>
  17. Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
  18. git-svn-id: svn://svn.openwrt.org/openwrt/trunk@35423 3c298f89-4303-0410-b956-a3cf2f4a3e73
  19. Conflicts:
  20. target/linux/ar71xx/config-3.7
  21. diff --git a/target/linux/ar71xx/config-3.3 b/target/linux/ar71xx/config-3.3
  22. index 446f202..dfc5bf2 100644
  23. --- a/target/linux/ar71xx/config-3.3
  24. +++ b/target/linux/ar71xx/config-3.3
  25. @@ -60,6 +60,7 @@ CONFIG_ATH79_MACH_TL_MR3020=y
  26. CONFIG_ATH79_MACH_TL_MR3X20=y
  27. CONFIG_ATH79_MACH_TL_WA901ND=y
  28. CONFIG_ATH79_MACH_TL_WA901ND_V2=y
  29. +CONFIG_ATH79_MACH_TL_WDR3500=y
  30. CONFIG_ATH79_MACH_TL_WDR4300=y
  31. CONFIG_ATH79_MACH_TL_WR1041N_V2=y
  32. CONFIG_ATH79_MACH_TL_WR1043ND=y
  33. diff --git a/target/linux/ar71xx/files/arch/mips/ath79/mach-tl-wdr3500.c b/target/linux/ar71xx/files/arch/mips/ath79/mach-tl-wdr3500.c
  34. new file mode 100644
  35. index 0000000..05fe83d
  36. --- /dev/null
  37. +++ b/target/linux/ar71xx/files/arch/mips/ath79/mach-tl-wdr3500.c
  38. @@ -0,0 +1,153 @@
  39. +/*
  40. + * TP-LINK TL-WDR3500 board support
  41. + *
  42. + * Copyright (C) 2012 Gabor Juhos <juhosg@openwrt.org>
  43. + * Copyright (C) 2013 Gui Iribarren <gui@altermundi.net>
  44. + *
  45. + * This program is free software; you can redistribute it and/or modify it
  46. + * under the terms of the GNU General Public License version 2 as published
  47. + * by the Free Software Foundation.
  48. + */
  49. +
  50. +#include <linux/pci.h>
  51. +#include <linux/phy.h>
  52. +#include <linux/gpio.h>
  53. +#include <linux/platform_device.h>
  54. +#include <linux/ath9k_platform.h>
  55. +#include <linux/ar8216_platform.h>
  56. +
  57. +#include <asm/mach-ath79/ar71xx_regs.h>
  58. +
  59. +#include "common.h"
  60. +#include "dev-ap9x-pci.h"
  61. +#include "dev-eth.h"
  62. +#include "dev-gpio-buttons.h"
  63. +#include "dev-leds-gpio.h"
  64. +#include "dev-m25p80.h"
  65. +#include "dev-spi.h"
  66. +#include "dev-usb.h"
  67. +#include "dev-wmac.h"
  68. +#include "machtypes.h"
  69. +
  70. +#define WDR3500_GPIO_LED_USB1 11
  71. +#define WDR3500_GPIO_LED_WLAN2G 13
  72. +#define WDR3500_GPIO_LED_SYSTEM 14
  73. +#define WDR3500_GPIO_LED_QSS 15
  74. +
  75. +#define WDR3500_GPIO_BTN_WPS 16
  76. +#define WDR3500_GPIO_BTN_RFKILL 17
  77. +
  78. +#define WDR3500_GPIO_USB1_POWER 22
  79. +
  80. +#define WDR3500_KEYS_POLL_INTERVAL 20 /* msecs */
  81. +#define WDR3500_KEYS_DEBOUNCE_INTERVAL (3 * WDR3500_KEYS_POLL_INTERVAL)
  82. +
  83. +#define WDR3500_MAC0_OFFSET 0
  84. +#define WDR3500_MAC1_OFFSET 6
  85. +#define WDR3500_WMAC_CALDATA_OFFSET 0x1000
  86. +#define WDR3500_PCIE_CALDATA_OFFSET 0x5000
  87. +
  88. +static const char *wdr3500_part_probes[] = {
  89. + "tp-link",
  90. + NULL,
  91. +};
  92. +
  93. +static struct flash_platform_data wdr3500_flash_data = {
  94. + .part_probes = wdr3500_part_probes,
  95. +};
  96. +
  97. +static struct gpio_led wdr3500_leds_gpio[] __initdata = {
  98. + {
  99. + .name = "tp-link:green:qss",
  100. + .gpio = WDR3500_GPIO_LED_QSS,
  101. + .active_low = 1,
  102. + },
  103. + {
  104. + .name = "tp-link:green:system",
  105. + .gpio = WDR3500_GPIO_LED_SYSTEM,
  106. + .active_low = 1,
  107. + },
  108. + {
  109. + .name = "tp-link:green:usb1",
  110. + .gpio = WDR3500_GPIO_LED_USB1,
  111. + .active_low = 1,
  112. + },
  113. + {
  114. + .name = "tp-link:green:wlan2g",
  115. + .gpio = WDR3500_GPIO_LED_WLAN2G,
  116. + .active_low = 1,
  117. + },
  118. +};
  119. +
  120. +static struct gpio_keys_button wdr3500_gpio_keys[] __initdata = {
  121. + {
  122. + .desc = "QSS button",
  123. + .type = EV_KEY,
  124. + .code = KEY_WPS_BUTTON,
  125. + .debounce_interval = WDR3500_KEYS_DEBOUNCE_INTERVAL,
  126. + .gpio = WDR3500_GPIO_BTN_WPS,
  127. + .active_low = 1,
  128. + },
  129. + {
  130. + .desc = "RFKILL switch",
  131. + .type = EV_SW,
  132. + .code = KEY_RFKILL,
  133. + .debounce_interval = WDR3500_KEYS_DEBOUNCE_INTERVAL,
  134. + .gpio = WDR3500_GPIO_BTN_RFKILL,
  135. + },
  136. +};
  137. +
  138. +
  139. +static void __init wdr3500_setup(void)
  140. +{
  141. + u8 *mac = (u8 *) KSEG1ADDR(0x1f01fc00);
  142. + u8 *art = (u8 *) KSEG1ADDR(0x1fff0000);
  143. + u8 tmpmac[ETH_ALEN];
  144. +
  145. + ath79_register_m25p80(&wdr3500_flash_data);
  146. + ath79_register_leds_gpio(-1, ARRAY_SIZE(wdr3500_leds_gpio),
  147. + wdr3500_leds_gpio);
  148. + ath79_register_gpio_keys_polled(-1, WDR3500_KEYS_POLL_INTERVAL,
  149. + ARRAY_SIZE(wdr3500_gpio_keys),
  150. + wdr3500_gpio_keys);
  151. +
  152. + ath79_init_mac(tmpmac, mac, 0);
  153. + ath79_register_wmac(art + WDR3500_WMAC_CALDATA_OFFSET, tmpmac);
  154. +
  155. + ath79_init_mac(tmpmac, mac, 1);
  156. + ap9x_pci_setup_wmac_led_pin(0, 0);
  157. + ap91_pci_init(art + WDR3500_PCIE_CALDATA_OFFSET, tmpmac);
  158. +
  159. + ath79_setup_ar934x_eth_cfg(AR934X_ETH_CFG_SW_ONLY_MODE);
  160. +
  161. + ath79_register_mdio(1, 0x0);
  162. +
  163. + /* LAN */
  164. + ath79_init_mac(ath79_eth1_data.mac_addr, mac, -1);
  165. +
  166. + /* GMAC1 is connected to the internal switch */
  167. + ath79_eth1_data.phy_if_mode = PHY_INTERFACE_MODE_GMII;
  168. +
  169. + ath79_register_eth(1);
  170. +
  171. + /* WAN */
  172. + ath79_init_mac(ath79_eth0_data.mac_addr, mac, 2);
  173. +
  174. + /* GMAC0 is connected to the PHY4 of the internal switch */
  175. + ath79_switch_data.phy4_mii_en = 1;
  176. + ath79_switch_data.phy_poll_mask = BIT(4);
  177. + ath79_eth0_data.phy_if_mode = PHY_INTERFACE_MODE_MII;
  178. + ath79_eth0_data.phy_mask = BIT(4);
  179. + ath79_eth0_data.mii_bus_dev = &ath79_mdio1_device.dev;
  180. +
  181. + ath79_register_eth(0);
  182. +
  183. + gpio_request_one(WDR3500_GPIO_USB1_POWER,
  184. + GPIOF_OUT_INIT_HIGH | GPIOF_EXPORT_DIR_FIXED,
  185. + "USB1 power");
  186. + ath79_register_usb();
  187. +}
  188. +
  189. +MIPS_MACHINE(ATH79_MACH_TL_WDR3500, "TL-WDR3500",
  190. + "TP-LINK TL-WDR3500",
  191. + wdr3500_setup);
  192. diff --git a/target/linux/ar71xx/patches-3.3/613-MIPS-ath79-add-TL-WDR3500-support.patch b/target/linux/ar71xx/patches-3.3/613-MIPS-ath79-add-TL-WDR3500-support.patch
  193. new file mode 100644
  194. index 0000000..0a2c3bd
  195. --- /dev/null
  196. +++ b/target/linux/ar71xx/patches-3.3/613-MIPS-ath79-add-TL-WDR3500-support.patch
  197. @@ -0,0 +1,40 @@
  198. +--- a/arch/mips/ath79/machtypes.h
  199. ++++ b/arch/mips/ath79/machtypes.h
  200. +@@ -84,6 +84,7 @@ enum ath79_mach_type {
  201. + ATH79_MACH_TL_WA7510N_V1, /* TP-LINK TL-WA7510N v1*/
  202. + ATH79_MACH_TL_WA901ND, /* TP-LINK TL-WA901ND */
  203. + ATH79_MACH_TL_WA901ND_V2, /* TP-LINK TL-WA901ND v2 */
  204. ++ ATH79_MACH_TL_WDR3500, /* TP-LINK TL-WDR3500 */
  205. + ATH79_MACH_TL_WDR4300, /* TP-LINK TL-WDR4300 */
  206. + ATH79_MACH_TL_WR1041N_V2, /* TP-LINK TL-WR1041N v2 */
  207. + ATH79_MACH_TL_WR1043ND, /* TP-LINK TL-WR1043ND */
  208. +--- a/arch/mips/ath79/Kconfig
  209. ++++ b/arch/mips/ath79/Kconfig
  210. +@@ -514,6 +514,17 @@ config ATH79_MACH_TL_WA901ND_V2
  211. + select ATH79_DEV_M25P80
  212. + select ATH79_DEV_WMAC
  213. +
  214. ++config ATH79_MACH_TL_WDR3500
  215. ++ bool "TP-LINK TL-WDR3500 board support"
  216. ++ select SOC_AR934X
  217. ++ select ATH79_DEV_AP9X_PCI if PCI
  218. ++ select ATH79_DEV_ETH
  219. ++ select ATH79_DEV_GPIO_BUTTONS
  220. ++ select ATH79_DEV_LEDS_GPIO
  221. ++ select ATH79_DEV_M25P80
  222. ++ select ATH79_DEV_USB
  223. ++ select ATH79_DEV_WMAC
  224. ++
  225. + config ATH79_MACH_TL_WDR4300
  226. + bool "TP-LINK TL-WDR3600/4300/4310 board support"
  227. + select SOC_AR934X
  228. +--- a/arch/mips/ath79/Makefile
  229. ++++ b/arch/mips/ath79/Makefile
  230. +@@ -81,6 +81,7 @@ obj-$(CONFIG_ATH79_MACH_TL_MR3020) += ma
  231. + obj-$(CONFIG_ATH79_MACH_TL_MR3X20) += mach-tl-mr3x20.o
  232. + obj-$(CONFIG_ATH79_MACH_TL_WA901ND) += mach-tl-wa901nd.o
  233. + obj-$(CONFIG_ATH79_MACH_TL_WA901ND_V2) += mach-tl-wa901nd-v2.o
  234. ++obj-$(CONFIG_ATH79_MACH_TL_WDR3500) += mach-tl-wdr3500.o
  235. + obj-$(CONFIG_ATH79_MACH_TL_WDR4300) += mach-tl-wdr4300.o
  236. + obj-$(CONFIG_ATH79_MACH_TL_WR741ND) += mach-tl-wr741nd.o
  237. + obj-$(CONFIG_ATH79_MACH_TL_WR741ND_V4) += mach-tl-wr741nd-v4.o