mach-all0315n.c 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. /*
  2. * Allnet ALL0315N support
  3. *
  4. * Copyright (C) 2012 Daniel Golle <dgolle@allnet.de>
  5. *
  6. *
  7. * This program is free software; you can redistribute it and/or modify it
  8. * under the terms of the GNU General Public License version 2 as published
  9. * by the Free Software Foundation.
  10. */
  11. #include <asm/mach-ath79/ath79.h>
  12. #include <asm/mach-ath79/ar71xx_regs.h>
  13. #include "common.h"
  14. #include "dev-eth.h"
  15. #include "dev-ap9x-pci.h"
  16. #include "dev-gpio-buttons.h"
  17. #include "dev-m25p80.h"
  18. #include "dev-leds-gpio.h"
  19. #include "machtypes.h"
  20. #include "pci.h"
  21. #define ALL0315N_GPIO_BTN_RESET 0
  22. #define ALL0315N_GPIO_LED_RSSIHIGH 14
  23. #define ALL0315N_GPIO_LED_RSSIMEDIUM 15
  24. #define ALL0315N_GPIO_LED_RSSILOW 16
  25. #define ALL0315N_KEYS_POLL_INTERVAL 20 /* msecs */
  26. #define ALL0315N_KEYS_DEBOUNCE_INTERVAL (3 * ALL0315N_KEYS_POLL_INTERVAL)
  27. static struct gpio_led all0315n_leds_gpio[] __initdata = {
  28. {
  29. .name = "all0315n:green:rssihigh",
  30. .gpio = ALL0315N_GPIO_LED_RSSIHIGH,
  31. .active_low = 1,
  32. }, {
  33. .name = "all0315n:yellow:rssimedium",
  34. .gpio = ALL0315N_GPIO_LED_RSSIMEDIUM,
  35. .active_low = 1,
  36. }, {
  37. .name = "all0315n:red:rssilow",
  38. .gpio = ALL0315N_GPIO_LED_RSSILOW,
  39. .active_low = 1,
  40. }
  41. };
  42. static struct gpio_keys_button all0315n_gpio_keys[] __initdata = {
  43. {
  44. .desc = "reset",
  45. .type = EV_KEY,
  46. .code = KEY_RESTART,
  47. .debounce_interval = ALL0315N_KEYS_DEBOUNCE_INTERVAL,
  48. .gpio = ALL0315N_GPIO_BTN_RESET,
  49. .active_low = 1,
  50. }
  51. };
  52. static void __init all0315n_setup(void)
  53. {
  54. u8 *mac = (u8 *) KSEG1ADDR(0x1ffc0000);
  55. u8 *ee = (u8 *) KSEG1ADDR(0x1ffc1000);
  56. ath79_register_m25p80(NULL);
  57. ath79_init_mac(ath79_eth0_data.mac_addr, mac, 0);
  58. ath79_eth0_data.phy_if_mode = PHY_INTERFACE_MODE_RGMII;
  59. ath79_eth0_data.phy_mask = BIT(0);
  60. ath79_register_mdio(0, 0x0);
  61. ath79_register_eth(0);
  62. ath79_register_leds_gpio(-1, ARRAY_SIZE(all0315n_leds_gpio),
  63. all0315n_leds_gpio);
  64. ath79_register_gpio_keys_polled(-1, ALL0315N_KEYS_POLL_INTERVAL,
  65. ARRAY_SIZE(all0315n_gpio_keys),
  66. all0315n_gpio_keys);
  67. ap9x_pci_setup_wmac_led_pin(0, 1);
  68. ap91_pci_init(ee, NULL);
  69. }
  70. MIPS_MACHINE(ATH79_MACH_ALL0315N, "ALL0315N", "Allnet ALL0315N",
  71. all0315n_setup);