mach-tl-wa801nd-v3.c 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. /*
  2. * TP-LINK TL-WA801ND v3 adapted from TP-LINK TL-WR841N/ND v9
  3. *
  4. * Copyright (C) 2014 Matthias Schiffer <mschiffer@universe-factory.net>
  5. * Copyright (C) 2016 Tiziano Bacocco <tizbac2@gmail.com>
  6. *
  7. * This program is free software; you can redistribute it and/or modify it
  8. * under the terms of the GNU General Public License version 2 as published
  9. * by the Free Software Foundation.
  10. */
  11. #include <linux/gpio.h>
  12. #include <linux/platform_device.h>
  13. #include <asm/mach-ath79/ath79.h>
  14. #include <asm/mach-ath79/ar71xx_regs.h>
  15. #include "common.h"
  16. #include "dev-eth.h"
  17. #include "dev-gpio-buttons.h"
  18. #include "dev-leds-gpio.h"
  19. #include "dev-m25p80.h"
  20. #include "dev-wmac.h"
  21. #include "machtypes.h"
  22. #define TL_WA801NDV3_GPIO_LED_WLAN 12
  23. #define TL_WA801NDV3_GPIO_LED_SYSTEM 13
  24. #define TL_WA801NDV3_GPIO_LED_SECURITY_RED 11
  25. #define TL_WA801NDV3_GPIO_LED_SECURITY_GREEN 15
  26. #define TL_WA801NDV3_GPIO_LED_LAN 3
  27. #define TL_WA801NDV3_GPIO_BTN_RESET 2
  28. #define TL_WA801NDV3_GPIO_BTN_WIFI 1
  29. #define TL_WA801NDV3_KEYS_POLL_INTERVAL 20 /* msecs */
  30. #define TL_WA801NDV3_KEYS_DEBOUNCE_INTERVAL (3 * TL_WA801NDV3_KEYS_POLL_INTERVAL)
  31. static const char *tl_wa801n_v3_part_probes[] = {
  32. "tp-link",
  33. NULL,
  34. };
  35. static struct flash_platform_data tl_wa801n_v3_flash_data = {
  36. .part_probes = tl_wa801n_v3_part_probes,
  37. };
  38. static struct gpio_led tl_wa801n_v3_leds_gpio[] __initdata = {
  39. {
  40. .name = "tp-link:green:system",
  41. .gpio = TL_WA801NDV3_GPIO_LED_SYSTEM,
  42. .active_low = 1,
  43. }, {
  44. .name = "tp-link:green:lan",
  45. .gpio = TL_WA801NDV3_GPIO_LED_LAN,
  46. .active_low = 1,
  47. }, {
  48. .name = "tp-link:green:wlan",
  49. .gpio = TL_WA801NDV3_GPIO_LED_WLAN,
  50. .active_low = 1,
  51. }, {
  52. .name = "tp-link:red:security",
  53. .gpio = TL_WA801NDV3_GPIO_LED_SECURITY_RED,
  54. .active_low = 0,
  55. }, {
  56. .name = "tp-link:green:security",
  57. .gpio = TL_WA801NDV3_GPIO_LED_SECURITY_GREEN,
  58. .active_low = 0,
  59. }
  60. };
  61. static struct gpio_keys_button tl_wa801n_v3_gpio_keys[] __initdata = {
  62. {
  63. .desc = "Reset button",
  64. .type = EV_KEY,
  65. .code = KEY_RESTART,
  66. .debounce_interval = TL_WA801NDV3_KEYS_DEBOUNCE_INTERVAL,
  67. .gpio = TL_WA801NDV3_GPIO_BTN_RESET,
  68. .active_low = 1,
  69. }, {
  70. .desc = "WIFI button",
  71. .type = EV_KEY,
  72. .code = KEY_RFKILL,
  73. .debounce_interval = TL_WA801NDV3_KEYS_DEBOUNCE_INTERVAL,
  74. .gpio = TL_WA801NDV3_GPIO_BTN_WIFI,
  75. .active_low = 1,
  76. }
  77. };
  78. static void __init tl_ap143_setup(void)
  79. {
  80. u8 *mac = (u8 *) KSEG1ADDR(0x1f01fc00);
  81. u8 *ee = (u8 *) KSEG1ADDR(0x1fff1000);
  82. u8 tmpmac[ETH_ALEN];
  83. ath79_register_m25p80(&tl_wa801n_v3_flash_data);
  84. ath79_setup_ar933x_phy4_switch(false, false);
  85. ath79_register_mdio(0, 0x0);
  86. /* LAN */
  87. ath79_eth1_data.phy_if_mode = PHY_INTERFACE_MODE_GMII;
  88. ath79_eth1_data.duplex = DUPLEX_FULL;
  89. ath79_switch_data.phy_poll_mask |= BIT(4);
  90. ath79_init_mac(ath79_eth1_data.mac_addr, mac, 0);
  91. ath79_register_eth(1);
  92. /* WAN */
  93. ath79_switch_data.phy4_mii_en = 1;
  94. ath79_eth0_data.phy_if_mode = PHY_INTERFACE_MODE_MII;
  95. ath79_eth0_data.duplex = DUPLEX_FULL;
  96. ath79_eth0_data.speed = SPEED_100;
  97. ath79_eth0_data.phy_mask = BIT(4);
  98. ath79_init_mac(ath79_eth0_data.mac_addr, mac, 1);
  99. ath79_register_eth(0);
  100. ath79_init_mac(tmpmac, mac, 0);
  101. ath79_register_wmac(ee, tmpmac);
  102. }
  103. static void __init tl_wa801n_v3_setup(void)
  104. {
  105. tl_ap143_setup();
  106. ath79_register_leds_gpio(-1, ARRAY_SIZE(tl_wa801n_v3_leds_gpio),
  107. tl_wa801n_v3_leds_gpio);
  108. ath79_register_gpio_keys_polled(1, TL_WA801NDV3_KEYS_POLL_INTERVAL,
  109. ARRAY_SIZE(tl_wa801n_v3_gpio_keys),
  110. tl_wa801n_v3_gpio_keys);
  111. }
  112. MIPS_MACHINE(ATH79_MACH_TL_WA801ND_V3, "TL-WA801ND-v3", "TP-LINK TL-WA801ND v3",
  113. tl_wa801n_v3_setup);