mach-dr344.c 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  1. /*
  2. * Wallys DR344 board support
  3. *
  4. * Copyright (c) 2011 Qualcomm Atheros
  5. * Copyright (c) 2011-2012 Gabor Juhos <juhosg@openwrt.org>
  6. * Copyright (c) 2015 Philippe Duchein <wireless-dev@duchein.net>
  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. */
  21. #include <linux/gpio.h>
  22. #include <linux/phy.h>
  23. #include <linux/platform_device.h>
  24. #include <linux/ath9k_platform.h>
  25. #include <linux/platform_data/phy-at803x.h>
  26. #include <asm/mach-ath79/ar71xx_regs.h>
  27. #include "common.h"
  28. #include "pci.h"
  29. #include "dev-ap9x-pci.h"
  30. #include "dev-gpio-buttons.h"
  31. #include "dev-eth.h"
  32. #include "dev-usb.h"
  33. #include "dev-leds-gpio.h"
  34. #include "dev-m25p80.h"
  35. #include "dev-spi.h"
  36. #include "dev-wmac.h"
  37. #include "machtypes.h"
  38. #define DR344_GPIO_LED_SIG1 12
  39. #define DR344_GPIO_LED_SIG2 13
  40. #define DR344_GPIO_LED_SIG3 14
  41. #define DR344_GPIO_LED_SIG4 15
  42. #define DR344_GPIO_LED_STATUS 11
  43. #define DR344_GPIO_LED_LAN 17
  44. #define DR344_GPIO_EXTERNAL_LNA0 18
  45. #define DR344_GPIO_EXTERNAL_LNA1 19
  46. #define DR344_GPIO_BTN_RESET 16
  47. #define DR344_KEYS_POLL_INTERVAL 20 /* msecs */
  48. #define DR344_KEYS_DEBOUNCE_INTERVAL (3 * DR344_KEYS_POLL_INTERVAL)
  49. #define DR344_MAC0_OFFSET 0
  50. #define DR344_MAC1_OFFSET 8
  51. #define DR344_WMAC_CALDATA_OFFSET 0x1000
  52. #define DR344_PCIE_CALDATA_OFFSET 0x5000
  53. static struct gpio_led dr344_leds_gpio[] __initdata = {
  54. {
  55. .name = "dr344:green:lan",
  56. .gpio = DR344_GPIO_LED_LAN,
  57. .active_low = 1,
  58. },
  59. {
  60. .name = "dr344:green:status",
  61. .gpio = DR344_GPIO_LED_STATUS,
  62. .active_low = 1,
  63. },
  64. {
  65. .name = "dr344:green:sig1",
  66. .gpio = DR344_GPIO_LED_SIG1,
  67. .active_low = 1,
  68. },
  69. {
  70. .name = "dr344:green:sig2",
  71. .gpio = DR344_GPIO_LED_SIG2,
  72. .active_low = 1,
  73. },
  74. {
  75. .name = "dr344:green:sig3",
  76. .gpio = DR344_GPIO_LED_SIG3,
  77. .active_low = 1,
  78. },
  79. {
  80. .name = "dr344:green:sig4",
  81. .gpio = DR344_GPIO_LED_SIG4,
  82. .active_low = 1,
  83. }
  84. };
  85. static struct gpio_keys_button dr344_gpio_keys[] __initdata = {
  86. {
  87. .desc = "reset",
  88. .type = EV_KEY,
  89. .code = KEY_RESTART,
  90. .debounce_interval = DR344_KEYS_DEBOUNCE_INTERVAL,
  91. .gpio = DR344_GPIO_BTN_RESET,
  92. .active_low = 1,
  93. },
  94. };
  95. static struct at803x_platform_data dr344_at803x_data = {
  96. .disable_smarteee = 1,
  97. .enable_rgmii_rx_delay = 1,
  98. .enable_rgmii_tx_delay = 1,
  99. };
  100. static struct mdio_board_info dr344_mdio0_info[] = {
  101. {
  102. .bus_id = "ag71xx-mdio.0",
  103. .phy_addr = 0,
  104. .platform_data = &dr344_at803x_data,
  105. },
  106. };
  107. static void __init dr344_setup(void)
  108. {
  109. u8 *art = (u8 *) KSEG1ADDR(0x1fff0000);
  110. u8 *mac = (u8 *) KSEG1ADDR(0x1f03f810);
  111. ath79_register_m25p80(NULL);
  112. ath79_gpio_direction_select(DR344_GPIO_LED_STATUS, true);
  113. gpio_set_value(DR344_GPIO_LED_STATUS, 1);
  114. ath79_gpio_output_select(DR344_GPIO_LED_STATUS, 0);
  115. ath79_gpio_direction_select(DR344_GPIO_LED_LAN, true);
  116. gpio_set_value(DR344_GPIO_LED_LAN, 1);
  117. ath79_gpio_output_select(DR344_GPIO_LED_LAN, 0);
  118. ath79_register_leds_gpio(-1, ARRAY_SIZE(dr344_leds_gpio),
  119. dr344_leds_gpio);
  120. ath79_register_gpio_keys_polled(-1, DR344_KEYS_POLL_INTERVAL,
  121. ARRAY_SIZE(dr344_gpio_keys),
  122. dr344_gpio_keys);
  123. ath79_register_usb();
  124. ath79_wmac_set_ext_lna_gpio(0, DR344_GPIO_EXTERNAL_LNA0);
  125. ath79_wmac_set_ext_lna_gpio(1, DR344_GPIO_EXTERNAL_LNA1);
  126. ath79_register_wmac(art + DR344_WMAC_CALDATA_OFFSET, NULL);
  127. ath79_register_pci();
  128. mdiobus_register_board_info(dr344_mdio0_info,
  129. ARRAY_SIZE(dr344_mdio0_info));
  130. ath79_register_mdio(1, 0x0);
  131. ath79_register_mdio(0, 0x0);
  132. ath79_init_mac(ath79_eth0_data.mac_addr, mac + DR344_MAC0_OFFSET, 0);
  133. ath79_init_mac(ath79_eth1_data.mac_addr, mac + DR344_MAC1_OFFSET, 0);
  134. ath79_setup_ar934x_eth_cfg(AR934X_ETH_CFG_RGMII_GMAC0 |
  135. AR934X_ETH_CFG_SW_ONLY_MODE);
  136. /* GMAC0 is connected to an AR8035 Gbps PHY */
  137. ath79_eth0_data.phy_if_mode = PHY_INTERFACE_MODE_RGMII;
  138. ath79_eth0_data.phy_mask = BIT(0);
  139. ath79_eth0_data.mii_bus_dev = &ath79_mdio0_device.dev;
  140. ath79_eth0_pll_data.pll_1000 = 0x02000000;
  141. ath79_eth0_pll_data.pll_100 = 0x0101;
  142. ath79_eth0_pll_data.pll_10 = 0x1313;
  143. /* GMAC1 is connected to the internal switch */
  144. ath79_eth1_data.phy_if_mode = PHY_INTERFACE_MODE_GMII;
  145. ath79_eth1_data.speed = SPEED_1000;
  146. ath79_eth1_data.duplex = DUPLEX_FULL;
  147. ath79_register_eth(0);
  148. ath79_register_eth(1);
  149. }
  150. MIPS_MACHINE(ATH79_MACH_DR344, "DR344", "Wallys DR344", dr344_setup);