1
0

mach-wpj344.c 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176
  1. /*
  2. * Compex WPJ344 board support
  3. *
  4. * Copyright (c) 2011 Qualcomm Atheros
  5. * Copyright (c) 2011-2012 Gabor Juhos <juhosg@openwrt.org>
  6. *
  7. * Permission to use, copy, modify, and/or distribute this software for any
  8. * purpose with or without fee is hereby granted, provided that the above
  9. * copyright notice and this permission notice appear in all copies.
  10. *
  11. * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
  12. * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
  13. * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
  14. * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
  15. * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
  16. * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
  17. * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  18. *
  19. */
  20. #include <linux/phy.h>
  21. #include <linux/platform_device.h>
  22. #include <linux/ath9k_platform.h>
  23. #include <linux/ar8216_platform.h>
  24. #include <asm/mach-ath79/ar71xx_regs.h>
  25. #include "common.h"
  26. #include "pci.h"
  27. #include "dev-ap9x-pci.h"
  28. #include "dev-gpio-buttons.h"
  29. #include "dev-eth.h"
  30. #include "dev-usb.h"
  31. #include "dev-leds-gpio.h"
  32. #include "dev-m25p80.h"
  33. #include "dev-spi.h"
  34. #include "dev-wmac.h"
  35. #include "machtypes.h"
  36. #define WPJ344_GPIO_LED_SIG1 15
  37. #define WPJ344_GPIO_LED_SIG2 20
  38. #define WPJ344_GPIO_LED_SIG3 21
  39. #define WPJ344_GPIO_LED_SIG4 22
  40. #define WPJ344_GPIO_LED_STATUS 14
  41. #define WPJ344_GPIO_BTN_RESET 12
  42. #define WPJ344_KEYS_POLL_INTERVAL 20 /* msecs */
  43. #define WPJ344_KEYS_DEBOUNCE_INTERVAL (3 * WPJ344_KEYS_POLL_INTERVAL)
  44. #define WPJ344_MAC0_OFFSET 0
  45. #define WPJ344_MAC1_OFFSET 6
  46. #define WPJ344_WMAC_CALDATA_OFFSET 0x1000
  47. #define WPJ344_PCIE_CALDATA_OFFSET 0x5000
  48. static struct gpio_led wpj344_leds_gpio[] __initdata = {
  49. {
  50. .name = "wpj344:green:status",
  51. .gpio = WPJ344_GPIO_LED_STATUS,
  52. .active_low = 1,
  53. },
  54. {
  55. .name = "wpj344:red:sig1",
  56. .gpio = WPJ344_GPIO_LED_SIG1,
  57. .active_low = 1,
  58. },
  59. {
  60. .name = "wpj344:yellow:sig2",
  61. .gpio = WPJ344_GPIO_LED_SIG2,
  62. .active_low = 1,
  63. },
  64. {
  65. .name = "wpj344:green:sig3",
  66. .gpio = WPJ344_GPIO_LED_SIG3,
  67. .active_low = 1,
  68. },
  69. {
  70. .name = "wpj344:green:sig4",
  71. .gpio = WPJ344_GPIO_LED_SIG4,
  72. .active_low = 1,
  73. }
  74. };
  75. static struct gpio_keys_button wpj344_gpio_keys[] __initdata = {
  76. {
  77. .desc = "reset",
  78. .type = EV_KEY,
  79. .code = KEY_RESTART,
  80. .debounce_interval = WPJ344_KEYS_DEBOUNCE_INTERVAL,
  81. .gpio = WPJ344_GPIO_BTN_RESET,
  82. .active_low = 1,
  83. },
  84. };
  85. static struct ar8327_pad_cfg wpj344_ar8327_pad0_cfg = {
  86. .mode = AR8327_PAD_MAC_RGMII,
  87. .txclk_delay_en = true,
  88. .rxclk_delay_en = true,
  89. .txclk_delay_sel = AR8327_CLK_DELAY_SEL1,
  90. .rxclk_delay_sel = AR8327_CLK_DELAY_SEL2,
  91. .mac06_exchange_dis = true,
  92. };
  93. static struct ar8327_led_cfg wpj344_ar8327_led_cfg = {
  94. .led_ctrl0 = 0x00000000,
  95. .led_ctrl1 = 0xc737c737,
  96. .led_ctrl2 = 0x00000000,
  97. .led_ctrl3 = 0x00c30c00,
  98. .open_drain = true,
  99. };
  100. static struct ar8327_platform_data wpj344_ar8327_data = {
  101. .pad0_cfg = &wpj344_ar8327_pad0_cfg,
  102. .port0_cfg = {
  103. .force_link = 1,
  104. .speed = AR8327_PORT_SPEED_1000,
  105. .duplex = 1,
  106. .txpause = 1,
  107. .rxpause = 1,
  108. },
  109. .led_cfg = &wpj344_ar8327_led_cfg,
  110. };
  111. static struct mdio_board_info wpj344_mdio0_info[] = {
  112. {
  113. .bus_id = "ag71xx-mdio.0",
  114. .phy_addr = 0,
  115. .platform_data = &wpj344_ar8327_data,
  116. },
  117. };
  118. static void __init wpj344_setup(void)
  119. {
  120. u8 *art = (u8 *) KSEG1ADDR(0x1fff0000);
  121. ath79_register_m25p80(NULL);
  122. ath79_register_leds_gpio(-1, ARRAY_SIZE(wpj344_leds_gpio),
  123. wpj344_leds_gpio);
  124. ath79_register_gpio_keys_polled(-1, WPJ344_KEYS_POLL_INTERVAL,
  125. ARRAY_SIZE(wpj344_gpio_keys),
  126. wpj344_gpio_keys);
  127. ath79_register_usb();
  128. ath79_register_wmac(art + WPJ344_WMAC_CALDATA_OFFSET, NULL);
  129. ath79_register_pci();
  130. mdiobus_register_board_info(wpj344_mdio0_info,
  131. ARRAY_SIZE(wpj344_mdio0_info));
  132. ath79_register_mdio(1, 0x0);
  133. ath79_register_mdio(0, 0x0);
  134. ath79_init_mac(ath79_eth0_data.mac_addr, art + WPJ344_MAC0_OFFSET, 0);
  135. ath79_init_mac(ath79_eth1_data.mac_addr, art + WPJ344_MAC1_OFFSET, 0);
  136. ath79_setup_ar934x_eth_cfg(AR934X_ETH_CFG_RGMII_GMAC0 |
  137. AR934X_ETH_CFG_SW_ONLY_MODE);
  138. /* GMAC0 is connected to an AR8327 switch */
  139. ath79_eth0_data.phy_if_mode = PHY_INTERFACE_MODE_RGMII;
  140. ath79_eth0_data.phy_mask = BIT(0);
  141. ath79_eth0_data.mii_bus_dev = &ath79_mdio0_device.dev;
  142. ath79_eth0_pll_data.pll_1000 = 0x06000000;
  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_WPJ344, "WPJ344", "Compex WPJ344", wpj344_setup);