mach-e2100l.c 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. /*
  2. * Linksys E2100L board support
  3. *
  4. * Copyright (C) 2009-2012 Gabor Juhos <juhosg@openwrt.org>
  5. *
  6. * This program is free software; you can redistribute it and/or modify it
  7. * under the terms of the GNU General Public License version 2 as published
  8. * by the Free Software Foundation.
  9. */
  10. #include <asm/mach-ath79/ath79.h>
  11. #include "dev-eth.h"
  12. #include "dev-gpio-buttons.h"
  13. #include "dev-leds-gpio.h"
  14. #include "dev-m25p80.h"
  15. #include "dev-usb.h"
  16. #include "dev-wmac.h"
  17. #include "nvram.h"
  18. #include "machtypes.h"
  19. #define E2100L_GPIO_LED_POWER 14
  20. #define E2100L_GPIO_LED_WPS_AMBER 9
  21. #define E2100L_GPIO_LED_WPS_BLUE 8
  22. #define E2100L_GPIO_LED_WLAN 6
  23. #define E2100L_GPIO_BTN_WPS 7
  24. #define E2100L_GPIO_BTN_RESET 21
  25. #define E2100L_KEYS_POLL_INTERVAL 20 /* msecs */
  26. #define E2100L_KEYS_DEBOUNCE_INTERVAL (3 * E2100L_KEYS_POLL_INTERVAL)
  27. #define E2100L_NVRAM_ADDR 0x1f7e0000
  28. #define E2100L_NVRAM_SIZE 0x10000
  29. static const char *e2100l_part_probes[] = {
  30. "cybertan",
  31. NULL,
  32. };
  33. static struct flash_platform_data e2100l_flash_data = {
  34. .part_probes = e2100l_part_probes,
  35. };
  36. static struct gpio_led e2100l_leds_gpio[] __initdata = {
  37. {
  38. .name = "e2100l:blue:power",
  39. .gpio = E2100L_GPIO_LED_POWER,
  40. .active_low = 1,
  41. .default_trigger = "default-on",
  42. }, {
  43. .name = "e2100l:amber:wps",
  44. .gpio = E2100L_GPIO_LED_WPS_AMBER,
  45. .active_low = 1,
  46. }, {
  47. .name = "e2100l:blue:wps",
  48. .gpio = E2100L_GPIO_LED_WPS_BLUE,
  49. .active_low = 1,
  50. }, {
  51. .name = "e2100l:blue:wlan",
  52. .gpio = E2100L_GPIO_LED_WLAN,
  53. .active_low = 1,
  54. }
  55. };
  56. static struct gpio_keys_button e2100l_gpio_keys[] __initdata = {
  57. {
  58. .desc = "reset",
  59. .type = EV_KEY,
  60. .code = KEY_RESTART,
  61. .debounce_interval = E2100L_KEYS_DEBOUNCE_INTERVAL,
  62. .gpio = E2100L_GPIO_BTN_RESET,
  63. .active_low = 1,
  64. }, {
  65. .desc = "wps",
  66. .type = EV_KEY,
  67. .code = KEY_WPS_BUTTON,
  68. .debounce_interval = E2100L_KEYS_DEBOUNCE_INTERVAL,
  69. .gpio = E2100L_GPIO_BTN_WPS,
  70. .active_low = 1,
  71. }
  72. };
  73. static void __init e2100l_setup(void)
  74. {
  75. const char *nvram = (char *) KSEG1ADDR(E2100L_NVRAM_ADDR);
  76. u8 *eeprom = (u8 *) KSEG1ADDR(0x1fff1000);
  77. u8 mac[6];
  78. if (ath79_nvram_parse_mac_addr(nvram, E2100L_NVRAM_SIZE,
  79. "lan_hwaddr=", mac) == 0) {
  80. ath79_init_mac(ath79_eth0_data.mac_addr, mac, 0);
  81. ath79_init_mac(ath79_eth1_data.mac_addr, mac, 1);
  82. }
  83. ath79_register_mdio(0, 0x0);
  84. ath79_eth0_data.phy_if_mode = PHY_INTERFACE_MODE_RMII;
  85. ath79_eth0_data.phy_mask = 0x01;
  86. ath79_eth1_data.phy_if_mode = PHY_INTERFACE_MODE_RMII;
  87. ath79_eth1_data.phy_mask = 0x10;
  88. ath79_register_eth(0);
  89. ath79_register_eth(1);
  90. ath79_register_m25p80(&e2100l_flash_data);
  91. ath79_register_usb();
  92. if (ath79_nvram_parse_mac_addr(nvram, E2100L_NVRAM_SIZE,
  93. "wl0_hwaddr=", mac) == 0)
  94. ath79_register_wmac(eeprom, mac);
  95. else
  96. ath79_register_wmac(eeprom, NULL);
  97. ath79_register_leds_gpio(-1, ARRAY_SIZE(e2100l_leds_gpio),
  98. e2100l_leds_gpio);
  99. ath79_register_gpio_keys_polled(-1, E2100L_KEYS_POLL_INTERVAL,
  100. ARRAY_SIZE(e2100l_gpio_keys),
  101. e2100l_gpio_keys);
  102. }
  103. MIPS_MACHINE(ATH79_MACH_E2100L, "E2100L", "Linksys E2100L",
  104. e2100l_setup);