1
0

mach-om5pacv2.c 6.1 KB

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