mach-tl-wr902ac-v1.c 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  1. /*
  2. * TP-Link TL-WR902AC v1 board support
  3. *
  4. * Copyright (C) 2017 Piotr Dymacz <pepe2k@gmail.com>
  5. *
  6. * This program is free software; you can redistribute it and/or modify it
  7. * under the terms of the GNU General Public License version 2 as published
  8. * by the Free Software Foundation.
  9. */
  10. #include <linux/gpio.h>
  11. #include <linux/platform_device.h>
  12. #include <asm/mach-ath79/ath79.h>
  13. #include <asm/mach-ath79/ar71xx_regs.h>
  14. #include "common.h"
  15. #include "dev-ap9x-pci.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-usb.h"
  21. #include "dev-wmac.h"
  22. #include "machtypes.h"
  23. #define TL_WR902AC_V1_GPIO_LED_INTERNET 12
  24. #define TL_WR902AC_V1_GPIO_LED_LAN 15
  25. #define TL_WR902AC_V1_GPIO_LED_POWER 13
  26. #define TL_WR902AC_V1_GPIO_LED_USB 4
  27. #define TL_WR902AC_V1_GPIO_LED_WLAN2G 11
  28. #define TL_WR902AC_V1_GPIO_LED_WPS 0
  29. #define TL_WR902AC_V1_GPIO_BTN_RESET 3
  30. #define TL_WR902AC_V1_GPIO_BTN_SW1 17
  31. #define TL_WR902AC_V1_GPIO_BTN_SW2 14
  32. #define TL_WR902AC_V1_GPIO_BTN_WPS 2
  33. #define TL_WR902AC_V1_GPIO_USB_POWER 1
  34. #define TL_WR902AC_V1_KEYS_POLL_INTERVAL 20 /* msecs */
  35. #define TL_WR902AC_V1_KEYS_DEBOUNCE_INTERVAL \
  36. (3 * TL_WR902AC_V1_KEYS_POLL_INTERVAL)
  37. static struct gpio_led tl_wr902ac_v1_leds_gpio[] __initdata = {
  38. {
  39. .name = "tl-wr902ac-v1:green:internet",
  40. .gpio = TL_WR902AC_V1_GPIO_LED_INTERNET,
  41. .active_low = 1,
  42. }, {
  43. .name = "tl-wr902ac-v1:green:lan",
  44. .gpio = TL_WR902AC_V1_GPIO_LED_LAN,
  45. .active_low = 0,
  46. }, {
  47. .name = "tl-wr902ac-v1:green:power",
  48. .gpio = TL_WR902AC_V1_GPIO_LED_POWER,
  49. .active_low = 0,
  50. }, {
  51. .name = "tl-wr902ac-v1:green:usb",
  52. .gpio = TL_WR902AC_V1_GPIO_LED_USB,
  53. .active_low = 0,
  54. }, {
  55. .name = "tl-wr902ac-v1:green:wlan2g",
  56. .gpio = TL_WR902AC_V1_GPIO_LED_WLAN2G,
  57. .active_low = 1,
  58. }, {
  59. .name = "tl-wr902ac-v1:green:wps",
  60. .gpio = TL_WR902AC_V1_GPIO_LED_WPS,
  61. .active_low = 1,
  62. }
  63. };
  64. static struct gpio_keys_button tl_wr902ac_v1_gpio_keys[] __initdata = {
  65. {
  66. .desc = "reset",
  67. .type = EV_KEY,
  68. .code = KEY_RESTART,
  69. .debounce_interval = TL_WR902AC_V1_KEYS_DEBOUNCE_INTERVAL,
  70. .gpio = TL_WR902AC_V1_GPIO_BTN_RESET,
  71. .active_low = 1,
  72. }, {
  73. .desc = "sw1",
  74. .type = EV_KEY,
  75. .code = BTN_0,
  76. .debounce_interval = TL_WR902AC_V1_KEYS_DEBOUNCE_INTERVAL,
  77. .gpio = TL_WR902AC_V1_GPIO_BTN_SW1,
  78. .active_low = 1,
  79. }, {
  80. .desc = "sw2",
  81. .type = EV_KEY,
  82. .code = BTN_1,
  83. .debounce_interval = TL_WR902AC_V1_KEYS_DEBOUNCE_INTERVAL,
  84. .gpio = TL_WR902AC_V1_GPIO_BTN_SW2,
  85. .active_low = 1,
  86. }, {
  87. .desc = "wps",
  88. .type = EV_KEY,
  89. .code = KEY_WPS_BUTTON,
  90. .debounce_interval = TL_WR902AC_V1_KEYS_DEBOUNCE_INTERVAL,
  91. .gpio = TL_WR902AC_V1_GPIO_BTN_WPS,
  92. .active_low = 1,
  93. }
  94. };
  95. static void __init tl_wr902ac_v1_setup(void)
  96. {
  97. u8 *art = (u8 *) KSEG1ADDR(0x1f7f0000);
  98. u8 *mac = (u8 *) KSEG1ADDR(0x1f750008);
  99. ath79_register_m25p80(NULL);
  100. ath79_setup_ar933x_phy4_switch(false, false);
  101. ath79_register_mdio(0, 0x0);
  102. /* LAN */
  103. ath79_switch_data.phy4_mii_en = 1;
  104. ath79_eth0_data.duplex = DUPLEX_FULL;
  105. ath79_eth0_data.phy_if_mode = PHY_INTERFACE_MODE_MII;
  106. ath79_eth0_data.phy_mask = BIT(4);
  107. ath79_eth0_data.speed = SPEED_100;
  108. ath79_init_mac(ath79_eth0_data.mac_addr, mac, 1);
  109. ath79_register_eth(0);
  110. ath79_register_leds_gpio(-1, ARRAY_SIZE(tl_wr902ac_v1_leds_gpio),
  111. tl_wr902ac_v1_leds_gpio);
  112. ath79_register_gpio_keys_polled(-1, TL_WR902AC_V1_KEYS_POLL_INTERVAL,
  113. ARRAY_SIZE(tl_wr902ac_v1_gpio_keys),
  114. tl_wr902ac_v1_gpio_keys);
  115. gpio_request_one(TL_WR902AC_V1_GPIO_USB_POWER,
  116. GPIOF_OUT_INIT_HIGH | GPIOF_EXPORT_DIR_FIXED,
  117. "USB power");
  118. ath79_register_usb();
  119. ath79_register_wmac(art + 0x1000, mac);
  120. ap91_pci_init(art + 0x5000, NULL);
  121. }
  122. MIPS_MACHINE(ATH79_MACH_TL_WR902AC_V1, "TL-WR902AC-V1", "TP-LINK TL-WR902AC v1",
  123. tl_wr902ac_v1_setup);