mach-tl-wr810n.c 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. /*
  2. * TP-LINK TL-WR810N board support
  3. *
  4. * Copyright (c) 2012 Qualcomm Atheros
  5. * Copyright (c) 2012 Gabor Juhos <juhosg@openwrt.org>
  6. * Copyright (c) 2016 Jens Steinhauser <jens.steinhauser@gmail.com>
  7. *
  8. * Permission to use, copy, modify, and/or distribute this software for any
  9. * purpose with or without fee is hereby granted, provided that the above
  10. * copyright notice and this permission notice appear in all copies.
  11. *
  12. * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
  13. * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
  14. * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
  15. * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
  16. * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
  17. * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
  18. * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  19. */
  20. #include <linux/gpio.h>
  21. #include <linux/platform_device.h>
  22. #include <linux/ar8216_platform.h>
  23. #include <asm/mach-ath79/ar71xx_regs.h>
  24. #include "common.h"
  25. #include "dev-gpio-buttons.h"
  26. #include "dev-eth.h"
  27. #include "dev-leds-gpio.h"
  28. #include "dev-m25p80.h"
  29. #include "dev-usb.h"
  30. #include "dev-wmac.h"
  31. #include "machtypes.h"
  32. #define TL_WR810N_GPIO_SWITCH_B1 0
  33. #define TL_WR810N_GPIO_SWITCH_B0 1
  34. #define TL_WR810N_GPIO_USB_POWER 11
  35. #define TL_WR810N_GPIO_BTN_RESET 12
  36. #define TL_WR810N_GPIO_LED_SYSTEM 13
  37. #define TL_WR810N_KEYS_POLL_INTERVAL 20 /* msecs */
  38. #define TL_WR810N_KEYS_DEBOUNCE_INTERVAL (3 * TL_WR810N_KEYS_POLL_INTERVAL)
  39. #define TL_WR810N_WMAC_CALDATA_OFFSET 0x1000
  40. static const char *tl_wr810n_part_probes[] = {
  41. "tp-link",
  42. NULL,
  43. };
  44. static struct flash_platform_data tl_wr810n_flash_data = {
  45. .part_probes = tl_wr810n_part_probes,
  46. };
  47. static struct gpio_led tl_wr810n_leds_gpio[] __initdata = {
  48. {
  49. .name = "tp-link:blue:system",
  50. .gpio = TL_WR810N_GPIO_LED_SYSTEM,
  51. .active_low = 1,
  52. },
  53. };
  54. static struct gpio_keys_button tl_wr810n_gpio_keys[] __initdata = {
  55. {
  56. .desc = "reset",
  57. .type = EV_KEY,
  58. .code = KEY_RESTART,
  59. .debounce_interval = TL_WR810N_KEYS_DEBOUNCE_INTERVAL,
  60. .gpio = TL_WR810N_GPIO_BTN_RESET,
  61. .active_low = 1,
  62. },
  63. {
  64. .desc = "switch_b0",
  65. .type = EV_SW,
  66. .code = BTN_0,
  67. .debounce_interval = TL_WR810N_KEYS_DEBOUNCE_INTERVAL,
  68. .gpio = TL_WR810N_GPIO_SWITCH_B0,
  69. .active_low = 0,
  70. },
  71. {
  72. .desc = "switch_b1",
  73. .type = EV_SW,
  74. .code = BTN_1,
  75. .debounce_interval = TL_WR810N_KEYS_DEBOUNCE_INTERVAL,
  76. .gpio = TL_WR810N_GPIO_SWITCH_B1,
  77. .active_low = 0,
  78. },
  79. };
  80. static void __init tl_wr810n_setup(void)
  81. {
  82. u8 *mac = (u8 *) KSEG1ADDR(0x1f01fc00);
  83. u8 *art = (u8 *) KSEG1ADDR(0x1fff0000);
  84. ath79_setup_ar933x_phy4_switch(false, false);
  85. ath79_register_m25p80(&tl_wr810n_flash_data);
  86. ath79_register_leds_gpio(-1,
  87. ARRAY_SIZE(tl_wr810n_leds_gpio),
  88. tl_wr810n_leds_gpio);
  89. ath79_register_gpio_keys_polled(-1,
  90. TL_WR810N_KEYS_POLL_INTERVAL,
  91. ARRAY_SIZE(tl_wr810n_gpio_keys),
  92. tl_wr810n_gpio_keys);
  93. ath79_register_mdio(0, 0x0);
  94. /* WAN */
  95. ath79_eth0_data.duplex = DUPLEX_FULL;
  96. ath79_eth0_data.phy_if_mode = PHY_INTERFACE_MODE_MII;
  97. ath79_eth0_data.speed = SPEED_100;
  98. ath79_eth0_data.phy_mask = BIT(4);
  99. ath79_init_mac(ath79_eth0_data.mac_addr, mac, 1);
  100. ath79_register_eth(0);
  101. /* LAN */
  102. ath79_switch_data.phy4_mii_en = 1;
  103. ath79_eth1_data.duplex = DUPLEX_FULL;
  104. ath79_eth1_data.phy_if_mode = PHY_INTERFACE_MODE_GMII;
  105. ath79_eth1_data.speed = SPEED_1000;
  106. ath79_switch_data.phy_poll_mask |= BIT(4);
  107. ath79_init_mac(ath79_eth1_data.mac_addr, mac, -1);
  108. ath79_register_eth(1);
  109. ath79_register_wmac(art + TL_WR810N_WMAC_CALDATA_OFFSET, mac);
  110. gpio_request_one(TL_WR810N_GPIO_USB_POWER,
  111. GPIOF_OUT_INIT_HIGH | GPIOF_EXPORT_DIR_FIXED,
  112. "USB power");
  113. ath79_register_usb();
  114. }
  115. MIPS_MACHINE(ATH79_MACH_TL_WR810N, "TL-WR810N", "TP-LINK TL-WR810N",
  116. tl_wr810n_setup);