mach-tl-wr802n.c 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. /*
  2. * TP-LINK TL-WR802N v1, v2
  3. *
  4. * Copyright (C) 2015 Rick Pannen <pannen@gmail.com <mailto:pannen@gmail.com>>
  5. * Copyright (C) 2016 Thomas Roberts <tom.p.roberts@gmail.com <mailto:tom.p.roberts@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_WR802N_GPIO_LED_SYSTEM 13
  23. #define TL_WR802N_GPIO_BTN_RESET 12
  24. #define TL_WR802N_KEYS_POLL_INTERVAL 20 /* msecs */
  25. #define TL_WR802N_KEYS_DEBOUNCE_INTERVAL (3 * TL_WR802N_KEYS_POLL_INTERVAL)
  26. static const char *tl_wr802n_part_probes[] = {
  27. "tp-link",
  28. NULL,
  29. };
  30. static struct flash_platform_data tl_wr802n_flash_data = {
  31. .part_probes = tl_wr802n_part_probes,
  32. };
  33. static struct gpio_led tl_wr802n_v1_leds_gpio[] __initdata = {
  34. {
  35. .name = "tp-link:blue:system",
  36. .gpio = TL_WR802N_GPIO_LED_SYSTEM,
  37. .active_low = 1,
  38. },
  39. };
  40. static struct gpio_led tl_wr802n_v2_leds_gpio[] __initdata = {
  41. {
  42. .name = "tl-wr802n-v2:green:system",
  43. .gpio = TL_WR802N_GPIO_LED_SYSTEM,
  44. .active_low = 1,
  45. },
  46. };
  47. static struct gpio_keys_button tl_wr802n_gpio_keys[] __initdata = {
  48. {
  49. .desc = "reset",
  50. .type = EV_KEY,
  51. .code = KEY_RESTART,
  52. .debounce_interval = TL_WR802N_KEYS_DEBOUNCE_INTERVAL,
  53. .gpio = TL_WR802N_GPIO_BTN_RESET,
  54. .active_low = 1,
  55. }
  56. };
  57. static void __init tl_ap143_setup(void)
  58. {
  59. u8 *mac = (u8 *) KSEG1ADDR(0x1f01fc00);
  60. u8 *ee = (u8 *) KSEG1ADDR(0x1fff1000);
  61. u8 tmpmac[ETH_ALEN];
  62. ath79_register_m25p80(&tl_wr802n_flash_data);
  63. ath79_setup_ar933x_phy4_switch(false, false);
  64. ath79_register_mdio(0, 0x0);
  65. /* LAN */
  66. ath79_switch_data.phy4_mii_en = 1;
  67. ath79_eth0_data.phy_if_mode = PHY_INTERFACE_MODE_MII;
  68. ath79_eth0_data.duplex = DUPLEX_FULL;
  69. ath79_eth0_data.speed = SPEED_100;
  70. ath79_eth0_data.phy_mask = BIT(4);
  71. ath79_init_mac(ath79_eth0_data.mac_addr, mac, 1);
  72. ath79_register_eth(0);
  73. ath79_init_mac(tmpmac, mac, 0);
  74. ath79_register_wmac(ee, tmpmac);
  75. ath79_register_gpio_keys_polled(1, TL_WR802N_KEYS_POLL_INTERVAL,
  76. ARRAY_SIZE(tl_wr802n_gpio_keys),
  77. tl_wr802n_gpio_keys);
  78. }
  79. static void __init tl_wr802n_v1_setup(void)
  80. {
  81. tl_ap143_setup();
  82. ath79_register_leds_gpio(-1, ARRAY_SIZE(tl_wr802n_v1_leds_gpio),
  83. tl_wr802n_v1_leds_gpio);
  84. }
  85. static void __init tl_wr802n_v2_setup(void)
  86. {
  87. tl_ap143_setup();
  88. ath79_register_leds_gpio(-1, ARRAY_SIZE(tl_wr802n_v2_leds_gpio),
  89. tl_wr802n_v2_leds_gpio);
  90. }
  91. MIPS_MACHINE(ATH79_MACH_TL_WR802N_V1, "TL-WR802N-v1", "TP-LINK TL-WR802N v1",
  92. tl_wr802n_v1_setup);
  93. MIPS_MACHINE(ATH79_MACH_TL_WR802N_V2, "TL-WR802N-v2", "TP-LINK TL-WR802N v2",
  94. tl_wr802n_v2_setup);