mach-om5pacv2.c 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216
  1. /*
  2. * OpenMesh OM5P-ACv2 support
  3. *
  4. * Copyright (C) 2013 Marek Lindner <marek@open-mesh.com>
  5. * Copyright (C) 2014-2016 Sven Eckelmann <sven@open-mesh.com>
  6. * Copyright (C) 2015 Open-Mesh - Jim Collar <jim.collar@eqware.net>
  7. *
  8. * This program is free software; you can redistribute it and/or modify it
  9. * under the terms of the GNU General Public License version 2 as published
  10. * by the Free Software Foundation.
  11. */
  12. #include <linux/gpio.h>
  13. #include <linux/mdio-gpio.h>
  14. #include <linux/mtd/mtd.h>
  15. #include <linux/mtd/partitions.h>
  16. #include <linux/platform_device.h>
  17. #include <linux/i2c.h>
  18. #include <linux/i2c-algo-bit.h>
  19. #include <linux/i2c-gpio.h>
  20. #include <linux/platform_data/phy-at803x.h>
  21. #include <asm/mach-ath79/ar71xx_regs.h>
  22. #include <asm/mach-ath79/ath79.h>
  23. #include "common.h"
  24. #include "dev-ap9x-pci.h"
  25. #include "dev-eth.h"
  26. #include "dev-gpio-buttons.h"
  27. #include "dev-leds-gpio.h"
  28. #include "dev-m25p80.h"
  29. #include "dev-wmac.h"
  30. #include "machtypes.h"
  31. #include "pci.h"
  32. #define OM5PACV2_GPIO_LED_POWER 14
  33. #define OM5PACV2_GPIO_LED_GREEN 13
  34. #define OM5PACV2_GPIO_LED_RED 23
  35. #define OM5PACV2_GPIO_LED_YELLOW 15
  36. #define OM5PACV2_GPIO_BTN_RESET 1
  37. #define OM5PACV2_GPIO_I2C_SCL 18
  38. #define OM5PACV2_GPIO_I2C_SDA 19
  39. #define OM5PACV2_GPIO_PA_DCDC 2
  40. #define OM5PACV2_GPIO_PA_HIGH 16
  41. #define OM5PACV2_KEYS_POLL_INTERVAL 20 /* msecs */
  42. #define OM5PACV2_KEYS_DEBOUNCE_INTERVAL (3 * OM5PACV2_KEYS_POLL_INTERVAL)
  43. #define OM5PACV2_WMAC_CALDATA_OFFSET 0x1000
  44. static struct gpio_led om5pacv2_leds_gpio[] __initdata = {
  45. {
  46. .name = "om5pac:blue:power",
  47. .gpio = OM5PACV2_GPIO_LED_POWER,
  48. .active_low = 1,
  49. }, {
  50. .name = "om5pac:red:wifi",
  51. .gpio = OM5PACV2_GPIO_LED_RED,
  52. .active_low = 1,
  53. }, {
  54. .name = "om5pac:yellow:wifi",
  55. .gpio = OM5PACV2_GPIO_LED_YELLOW,
  56. .active_low = 1,
  57. }, {
  58. .name = "om5pac:green:wifi",
  59. .gpio = OM5PACV2_GPIO_LED_GREEN,
  60. .active_low = 1,
  61. }
  62. };
  63. static struct gpio_keys_button om5pacv2_gpio_keys[] __initdata = {
  64. {
  65. .desc = "reset",
  66. .type = EV_KEY,
  67. .code = KEY_RESTART,
  68. .debounce_interval = OM5PACV2_KEYS_DEBOUNCE_INTERVAL,
  69. .gpio = OM5PACV2_GPIO_BTN_RESET,
  70. .active_low = 1,
  71. }
  72. };
  73. static struct i2c_gpio_platform_data om5pacv2_i2c_device_platdata = {
  74. .sda_pin = OM5PACV2_GPIO_I2C_SDA,
  75. .scl_pin = OM5PACV2_GPIO_I2C_SCL,
  76. .udelay = 10,
  77. .sda_is_open_drain = 1,
  78. .scl_is_open_drain = 1,
  79. };
  80. static struct platform_device om5pacv2_i2c_device = {
  81. .name = "i2c-gpio",
  82. .id = 0,
  83. .dev = {
  84. .platform_data = &om5pacv2_i2c_device_platdata,
  85. },
  86. };
  87. static struct i2c_board_info om5pacv2_i2c_devs[] __initdata = {
  88. {
  89. I2C_BOARD_INFO("tmp423", 0x4e),
  90. },
  91. };
  92. static struct flash_platform_data om5pacv2_flash_data = {
  93. .type = "mx25l12805d",
  94. };
  95. static struct at803x_platform_data om5pacv2_an_at803x_data = {
  96. .disable_smarteee = 1,
  97. .enable_rgmii_rx_delay = 1,
  98. .enable_rgmii_tx_delay = 1,
  99. };
  100. static struct at803x_platform_data om5pacv2_an_at8031_data = {
  101. .disable_smarteee = 1,
  102. .enable_rgmii_rx_delay = 1,
  103. .enable_rgmii_tx_delay = 1,
  104. };
  105. static struct mdio_board_info om5pacv2_an_mdio0_info[] = {
  106. {
  107. .bus_id = "ag71xx-mdio.0",
  108. .phy_addr = 4,
  109. .platform_data = &om5pacv2_an_at803x_data,
  110. },
  111. {
  112. .bus_id = "ag71xx-mdio.1",
  113. .phy_addr = 1,
  114. .platform_data = &om5pacv2_an_at8031_data,
  115. },
  116. };
  117. static void __init om5p_acv2_setup_qca955x_eth_cfg(u32 mask,
  118. unsigned int rxd,
  119. unsigned int rxdv,
  120. unsigned int txd,
  121. unsigned int txe)
  122. {
  123. void __iomem *base;
  124. u32 t;
  125. base = ioremap(QCA955X_GMAC_BASE, QCA955X_GMAC_SIZE);
  126. t = mask;
  127. t |= rxd << QCA955X_ETH_CFG_RXD_DELAY_SHIFT;
  128. t |= rxdv << QCA955X_ETH_CFG_RDV_DELAY_SHIFT;
  129. t |= txd << QCA955X_ETH_CFG_TXD_DELAY_SHIFT;
  130. t |= txe << QCA955X_ETH_CFG_TXE_DELAY_SHIFT;
  131. __raw_writel(t, base + QCA955X_GMAC_REG_ETH_CFG);
  132. iounmap(base);
  133. }
  134. static void __init om5p_acv2_setup(void)
  135. {
  136. u8 *art = (u8 *)KSEG1ADDR(0x1fff0000);
  137. u8 mac[6];
  138. /* power amplifier high power, 4.2V at RFFM4203/4503 instead of 3.3 */
  139. ath79_gpio_function_enable(QCA955X_GPIO_FUNC_JTAG_DISABLE);
  140. ath79_gpio_output_select(OM5PACV2_GPIO_PA_DCDC, QCA955X_GPIO_OUT_GPIO);
  141. ath79_gpio_output_select(OM5PACV2_GPIO_PA_HIGH, QCA955X_GPIO_OUT_GPIO);
  142. gpio_request_one(OM5PACV2_GPIO_PA_DCDC, GPIOF_OUT_INIT_HIGH,
  143. "PA DC/DC");
  144. gpio_request_one(OM5PACV2_GPIO_PA_HIGH, GPIOF_OUT_INIT_HIGH, "PA HIGH");
  145. /* temperature sensor */
  146. platform_device_register(&om5pacv2_i2c_device);
  147. i2c_register_board_info(0, om5pacv2_i2c_devs,
  148. ARRAY_SIZE(om5pacv2_i2c_devs));
  149. ath79_register_m25p80(&om5pacv2_flash_data);
  150. ath79_register_leds_gpio(-1, ARRAY_SIZE(om5pacv2_leds_gpio),
  151. om5pacv2_leds_gpio);
  152. ath79_register_gpio_keys_polled(-1, OM5PACV2_KEYS_POLL_INTERVAL,
  153. ARRAY_SIZE(om5pacv2_gpio_keys),
  154. om5pacv2_gpio_keys);
  155. ath79_init_mac(mac, art, 0x02);
  156. ath79_register_wmac(art + OM5PACV2_WMAC_CALDATA_OFFSET, mac);
  157. om5p_acv2_setup_qca955x_eth_cfg(QCA955X_ETH_CFG_RGMII_EN, 2, 2, 0, 0);
  158. ath79_register_mdio(0, 0x0);
  159. ath79_register_mdio(1, 0x0);
  160. mdiobus_register_board_info(om5pacv2_an_mdio0_info,
  161. ARRAY_SIZE(om5pacv2_an_mdio0_info));
  162. ath79_init_mac(ath79_eth0_data.mac_addr, art, 0x00);
  163. ath79_init_mac(ath79_eth1_data.mac_addr, art, 0x01);
  164. /* GMAC0 is connected to the PHY4 */
  165. ath79_eth0_data.phy_if_mode = PHY_INTERFACE_MODE_RGMII;
  166. ath79_eth0_data.mii_bus_dev = &ath79_mdio0_device.dev;
  167. ath79_eth0_data.phy_mask = BIT(4);
  168. ath79_eth0_pll_data.pll_1000 = 0x82000101;
  169. ath79_eth0_pll_data.pll_100 = 0x80000101;
  170. ath79_eth0_pll_data.pll_10 = 0x80001313;
  171. ath79_register_eth(0);
  172. /* GMAC1 is connected to MDIO1 in SGMII mode */
  173. ath79_eth1_data.phy_if_mode = PHY_INTERFACE_MODE_SGMII;
  174. ath79_eth1_data.mii_bus_dev = &ath79_mdio1_device.dev;
  175. ath79_eth1_data.phy_mask = BIT(1);
  176. ath79_eth1_pll_data.pll_1000 = 0x03000101;
  177. ath79_eth1_pll_data.pll_100 = 0x80000101;
  178. ath79_eth1_pll_data.pll_10 = 0x80001313;
  179. ath79_eth1_data.speed = SPEED_1000;
  180. ath79_eth1_data.duplex = DUPLEX_FULL;
  181. ath79_register_eth(1);
  182. ath79_register_pci();
  183. }
  184. MIPS_MACHINE(ATH79_MACH_OM5P_ACv2, "OM5P-ACv2", "OpenMesh OM5P ACv2", om5p_acv2_setup);