mach-mr600.c 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177
  1. /*
  2. * OpenMesh OM2P board support
  3. *
  4. * Copyright (C) 2012 Marek Lindner <marek@open-mesh.com>
  5. *
  6. * Permission to use, copy, modify, and/or distribute this software for any
  7. * purpose with or without fee is hereby granted, provided that the above
  8. * copyright notice and this permission notice appear in all copies.
  9. *
  10. * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
  11. * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
  12. * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
  13. * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
  14. * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
  15. * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
  16. * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  17. *
  18. */
  19. #include <linux/pci.h>
  20. #include <linux/phy.h>
  21. #include <linux/platform_device.h>
  22. #include <linux/ath9k_platform.h>
  23. #include <asm/mach-ath79/ar71xx_regs.h>
  24. #include "common.h"
  25. #include "dev-ap9x-pci.h"
  26. #include "dev-eth.h"
  27. #include "dev-gpio-buttons.h"
  28. #include "dev-leds-gpio.h"
  29. #include "dev-m25p80.h"
  30. #include "dev-spi.h"
  31. #include "dev-wmac.h"
  32. #include "machtypes.h"
  33. #define MR600_GPIO_LED_WLAN58 12
  34. #define MR600_GPIO_LED_WPS 13
  35. #define MR600_GPIO_LED_POWER 14
  36. #define MR600V2_GPIO_LED_WLAN58_RED 12
  37. #define MR600V2_GPIO_LED_WPS 13
  38. #define MR600V2_GPIO_LED_POWER 14
  39. #define MR600V2_GPIO_LED_WLAN24_GREEN 18
  40. #define MR600V2_GPIO_LED_WLAN24_YELLOW 19
  41. #define MR600V2_GPIO_LED_WLAN24_RED 20
  42. #define MR600V2_GPIO_LED_WLAN58_GREEN 21
  43. #define MR600V2_GPIO_LED_WLAN58_YELLOW 22
  44. #define MR600_GPIO_BTN_RESET 17
  45. #define MR600_KEYS_POLL_INTERVAL 20 /* msecs */
  46. #define MR600_KEYS_DEBOUNCE_INTERVAL (3 * MR600_KEYS_POLL_INTERVAL)
  47. #define MR600_MAC_OFFSET 0
  48. #define MR600_WMAC_CALDATA_OFFSET 0x1000
  49. #define MR600_PCIE_CALDATA_OFFSET 0x5000
  50. static struct gpio_led mr600_leds_gpio[] __initdata = {
  51. {
  52. .name = "mr600:orange:power",
  53. .gpio = MR600_GPIO_LED_POWER,
  54. .active_low = 1,
  55. },
  56. {
  57. .name = "mr600:blue:wps",
  58. .gpio = MR600_GPIO_LED_WPS,
  59. .active_low = 1,
  60. },
  61. {
  62. .name = "mr600:green:wlan58",
  63. .gpio = MR600_GPIO_LED_WLAN58,
  64. .active_low = 1,
  65. },
  66. };
  67. static struct gpio_led mr600v2_leds_gpio[] __initdata = {
  68. {
  69. .name = "mr600:blue:power",
  70. .gpio = MR600V2_GPIO_LED_POWER,
  71. .active_low = 1,
  72. },
  73. {
  74. .name = "mr600:blue:wps",
  75. .gpio = MR600V2_GPIO_LED_WPS,
  76. .active_low = 1,
  77. },
  78. {
  79. .name = "mr600:red:wlan24",
  80. .gpio = MR600V2_GPIO_LED_WLAN24_RED,
  81. .active_low = 1,
  82. },
  83. {
  84. .name = "mr600:yellow:wlan24",
  85. .gpio = MR600V2_GPIO_LED_WLAN24_YELLOW,
  86. .active_low = 1,
  87. },
  88. {
  89. .name = "mr600:green:wlan24",
  90. .gpio = MR600V2_GPIO_LED_WLAN24_GREEN,
  91. .active_low = 1,
  92. },
  93. {
  94. .name = "mr600:red:wlan58",
  95. .gpio = MR600V2_GPIO_LED_WLAN58_RED,
  96. .active_low = 1,
  97. },
  98. {
  99. .name = "mr600:yellow:wlan58",
  100. .gpio = MR600V2_GPIO_LED_WLAN58_YELLOW,
  101. .active_low = 1,
  102. },
  103. {
  104. .name = "mr600:green:wlan58",
  105. .gpio = MR600V2_GPIO_LED_WLAN58_GREEN,
  106. .active_low = 1,
  107. },
  108. };
  109. static struct gpio_keys_button mr600_gpio_keys[] __initdata = {
  110. {
  111. .desc = "Reset button",
  112. .type = EV_KEY,
  113. .code = KEY_RESTART,
  114. .debounce_interval = MR600_KEYS_DEBOUNCE_INTERVAL,
  115. .gpio = MR600_GPIO_BTN_RESET,
  116. .active_low = 1,
  117. },
  118. };
  119. static void __init mr600_base_setup(unsigned num_leds, struct gpio_led *leds)
  120. {
  121. u8 *art = (u8 *)KSEG1ADDR(0x1fff0000);
  122. u8 mac[6];
  123. ath79_register_m25p80(NULL);
  124. ath79_register_leds_gpio(-1, num_leds, leds);
  125. ath79_register_gpio_keys_polled(-1, MR600_KEYS_POLL_INTERVAL,
  126. ARRAY_SIZE(mr600_gpio_keys),
  127. mr600_gpio_keys);
  128. ath79_init_mac(mac, art + MR600_MAC_OFFSET, 1);
  129. ath79_register_wmac(art + MR600_WMAC_CALDATA_OFFSET, mac);
  130. ath79_init_mac(mac, art + MR600_MAC_OFFSET, 8);
  131. ap91_pci_init(art + MR600_PCIE_CALDATA_OFFSET, mac);
  132. ath79_setup_ar934x_eth_cfg(AR934X_ETH_CFG_RGMII_GMAC0 |
  133. AR934X_ETH_CFG_SW_ONLY_MODE);
  134. ath79_register_mdio(0, 0x0);
  135. ath79_init_mac(ath79_eth0_data.mac_addr, art + MR600_MAC_OFFSET, 0);
  136. /* GMAC0 is connected to an external 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 = 0x06000000;
  141. ath79_register_eth(0);
  142. }
  143. static void __init mr600_setup(void)
  144. {
  145. mr600_base_setup(ARRAY_SIZE(mr600_leds_gpio), mr600_leds_gpio);
  146. ap9x_pci_setup_wmac_led_pin(0, 0);
  147. }
  148. MIPS_MACHINE(ATH79_MACH_MR600, "MR600", "OpenMesh MR600", mr600_setup);
  149. static void __init mr600v2_setup(void)
  150. {
  151. mr600_base_setup(ARRAY_SIZE(mr600v2_leds_gpio), mr600v2_leds_gpio);
  152. }
  153. MIPS_MACHINE(ATH79_MACH_MR600V2, "MR600v2", "OpenMesh MR600v2", mr600v2_setup);