mach-som9331.c 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. /*
  2. * OpenEmbed SOM9331 board support
  3. *
  4. * Copyright (C) 2011 dongyuqi <729650915@qq.com>
  5. * Copyright (C) 2011-2012 Gabor Juhos <juhosg@openwrt.org>
  6. *
  7. * 5/27/2016 - Modified by Allan Nick Pedrana <nik9993@gmail.com>
  8. *
  9. * This program is free software; you can redistribute it and/or modify it
  10. * under the terms of the GNU General Public License version 2 as published
  11. * by the Free Software Foundation.
  12. */
  13. #include <linux/gpio.h>
  14. #include <asm/mach-ath79/ath79.h>
  15. #include <asm/mach-ath79/ar71xx_regs.h>
  16. #include "common.h"
  17. #include "dev-eth.h"
  18. #include "dev-gpio-buttons.h"
  19. #include "dev-leds-gpio.h"
  20. #include "dev-m25p80.h"
  21. #include "dev-usb.h"
  22. #include "dev-wmac.h"
  23. #include "machtypes.h"
  24. #define SOM9331_GPIO_LED_WLAN 27
  25. #define SOM9331_GPIO_LED_SYSTEM 0
  26. #define SOM9331_GPIO_LED_2 13
  27. #define SOM9331_GPIO_LED_3 14
  28. #define SOM9331_GPIO_LED_5 16
  29. #define SOM9331_GPIO_LED_WAN SOM9331_GPIO_LED_2
  30. #define SOM9331_GPIO_LED_LAN1 SOM9331_GPIO_LED_3
  31. #define SOM9331_GPIO_LED_LAN2 SOM9331_GPIO_LED_5
  32. #define SOM9331_GPIO_BTN_RESET 11
  33. #define SOM9331_KEYS_POLL_INTERVAL 20 /* msecs */
  34. #define SOM9331_KEYS_DEBOUNCE_INTERVAL (3 * SOM9331_KEYS_POLL_INTERVAL)
  35. static const char *som9331_part_probes[] = {
  36. "tp-link",
  37. NULL,
  38. };
  39. static struct flash_platform_data som9331_flash_data = {
  40. .part_probes = som9331_part_probes,
  41. };
  42. static struct gpio_led som9331_leds_gpio[] __initdata = {
  43. {
  44. .name = "som9331:red:wlan",
  45. .gpio = SOM9331_GPIO_LED_WLAN,
  46. .active_low = 1,
  47. },
  48. {
  49. .name = "som9331:orange:wan",
  50. .gpio = SOM9331_GPIO_LED_WAN,
  51. .active_low = 0,
  52. },
  53. {
  54. .name = "som9331:orange:lan1",
  55. .gpio = SOM9331_GPIO_LED_LAN1,
  56. .active_low = 0,
  57. },
  58. {
  59. .name = "som9331:orange:lan2",
  60. .gpio = SOM9331_GPIO_LED_LAN2,
  61. .active_low = 0,
  62. },
  63. {
  64. .name = "som9331:blue:system",
  65. .gpio = SOM9331_GPIO_LED_SYSTEM,
  66. .active_low = 0,
  67. },
  68. };
  69. static struct gpio_keys_button som9331_gpio_keys[] __initdata = {
  70. {
  71. .desc = "reset",
  72. .type = EV_KEY,
  73. .code = KEY_RESTART,
  74. .debounce_interval = SOM9331_KEYS_DEBOUNCE_INTERVAL,
  75. .gpio = SOM9331_GPIO_BTN_RESET,
  76. .active_low = 0,
  77. }
  78. };
  79. static void __init som9331_setup(void)
  80. {
  81. u8 *mac = (u8 *) KSEG1ADDR(0x1f01fc00);
  82. u8 *ee = (u8 *) KSEG1ADDR(0x1fff1000);
  83. ath79_setup_ar933x_phy4_switch(true, true);
  84. ath79_gpio_function_disable(AR933X_GPIO_FUNC_ETH_SWITCH_LED0_EN |
  85. AR933X_GPIO_FUNC_ETH_SWITCH_LED1_EN |
  86. AR933X_GPIO_FUNC_ETH_SWITCH_LED2_EN |
  87. AR933X_GPIO_FUNC_ETH_SWITCH_LED3_EN |
  88. AR933X_GPIO_FUNC_ETH_SWITCH_LED4_EN);
  89. ath79_register_m25p80(&som9331_flash_data);
  90. ath79_register_leds_gpio(-1, ARRAY_SIZE(som9331_leds_gpio),
  91. som9331_leds_gpio);
  92. ath79_register_gpio_keys_polled(-1, SOM9331_KEYS_POLL_INTERVAL,
  93. ARRAY_SIZE(som9331_gpio_keys),
  94. som9331_gpio_keys);
  95. ath79_register_usb();
  96. ath79_init_mac(ath79_eth0_data.mac_addr, mac, 0);
  97. ath79_init_mac(ath79_eth1_data.mac_addr, mac, -1);
  98. ath79_register_mdio(0, 0x0);
  99. /* LAN ports */
  100. ath79_register_eth(1);
  101. /* WAN port */
  102. ath79_register_eth(0);
  103. ath79_register_wmac(ee, mac);
  104. }
  105. MIPS_MACHINE(ATH79_MACH_SOM9331, "SOM9331", "OpenEmbed SOM9331", som9331_setup);