mach-om5pacv2.c 5.9 KB

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