mach-mr16.c 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. /*
  2. * Cisco Meraki MR16 board support
  3. *
  4. * Copyright (C) 2015 Chris Blake <chrisrblake93@gmail.com>
  5. *
  6. * Based on Atheros AP96 board support configuration
  7. *
  8. * Copyright (C) 2009 Marco Porsch
  9. * Copyright (C) 2009-2012 Gabor Juhos <juhosg@openwrt.org>
  10. * Copyright (C) 2010 Atheros Communications
  11. *
  12. * This program is free software; you can redistribute it and/or modify it
  13. * under the terms of the GNU General Public License version 2 as published
  14. * by the Free Software Foundation.
  15. */
  16. #include <linux/platform_device.h>
  17. #include <linux/delay.h>
  18. #include <asm/mach-ath79/ath79.h>
  19. #include "dev-ap9x-pci.h"
  20. #include "dev-eth.h"
  21. #include "dev-gpio-buttons.h"
  22. #include "dev-leds-gpio.h"
  23. #include "dev-m25p80.h"
  24. #include "machtypes.h"
  25. #define MR16_GPIO_LED_W4_GREEN 3
  26. #define MR16_GPIO_LED_W3_GREEN 2
  27. #define MR16_GPIO_LED_W2_GREEN 1
  28. #define MR16_GPIO_LED_W1_GREEN 0
  29. #define MR16_GPIO_LED_WAN 4
  30. #define MR16_GPIO_LED_POWER_ORANGE 5
  31. #define MR16_GPIO_LED_POWER_GREEN 6
  32. #define MR16_GPIO_BTN_RESET 7
  33. #define MR16_KEYS_POLL_INTERVAL 20 /* msecs */
  34. #define MR16_KEYS_DEBOUNCE_INTERVAL (3 * MR16_KEYS_POLL_INTERVAL)
  35. #define MR16_WAN_PHYMASK BIT(0)
  36. #define MR16_CALDATA0_OFFSET 0x21000
  37. #define MR16_CALDATA1_OFFSET 0x25000
  38. static struct gpio_led MR16_leds_gpio[] __initdata = {
  39. {
  40. .name = "mr16:green:wan",
  41. .gpio = MR16_GPIO_LED_WAN,
  42. .active_low = 1,
  43. }, {
  44. .name = "mr16:orange:power",
  45. .gpio = MR16_GPIO_LED_POWER_ORANGE,
  46. .active_low = 1,
  47. }, {
  48. .name = "mr16:green:power",
  49. .gpio = MR16_GPIO_LED_POWER_GREEN,
  50. .active_low = 1,
  51. }, {
  52. .name = "mr16:green:wifi4",
  53. .gpio = MR16_GPIO_LED_W4_GREEN,
  54. .active_low = 1,
  55. }, {
  56. .name = "mr16:green:wifi3",
  57. .gpio = MR16_GPIO_LED_W3_GREEN,
  58. .active_low = 1,
  59. }, {
  60. .name = "mr16:green:wifi2",
  61. .gpio = MR16_GPIO_LED_W2_GREEN,
  62. .active_low = 1,
  63. }, {
  64. .name = "mr16:green:wifi1",
  65. .gpio = MR16_GPIO_LED_W1_GREEN,
  66. .active_low = 1,
  67. }
  68. };
  69. static struct gpio_keys_button MR16_gpio_keys[] __initdata = {
  70. {
  71. .desc = "reset",
  72. .type = EV_KEY,
  73. .code = KEY_RESTART,
  74. .debounce_interval = MR16_KEYS_DEBOUNCE_INTERVAL,
  75. .gpio = MR16_GPIO_BTN_RESET,
  76. .active_low = 1,
  77. }
  78. };
  79. static void __init MR16_setup(void)
  80. {
  81. u8 *mac = (u8 *) KSEG1ADDR(0xbffd0000);
  82. u8 wlan0_mac[ETH_ALEN];
  83. u8 wlan1_mac[ETH_ALEN];
  84. ath79_register_mdio(0,0x0);
  85. ath79_init_mac(ath79_eth0_data.mac_addr, mac, 0);
  86. ath79_eth0_data.phy_if_mode = PHY_INTERFACE_MODE_RGMII;
  87. ath79_eth0_data.phy_mask = MR16_WAN_PHYMASK;
  88. ath79_register_eth(0);
  89. ath79_register_m25p80(NULL);
  90. ath79_register_leds_gpio(-1, ARRAY_SIZE(MR16_leds_gpio),
  91. MR16_leds_gpio);
  92. ath79_register_gpio_keys_polled(-1, MR16_KEYS_POLL_INTERVAL,
  93. ARRAY_SIZE(MR16_gpio_keys),
  94. MR16_gpio_keys);
  95. ath79_init_mac(wlan0_mac, mac, 1);
  96. ath79_init_mac(wlan1_mac, mac, 2);
  97. ap94_pci_init(mac + MR16_CALDATA0_OFFSET, wlan0_mac,
  98. mac + MR16_CALDATA1_OFFSET, wlan1_mac);
  99. }
  100. MIPS_MACHINE(ATH79_MACH_MR16, "MR16", "Meraki MR16", MR16_setup);