mach-bsb.c 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. /*
  2. * Smart Electronics Black Swift board support
  3. *
  4. * Copyright (C) 2014 Dmitriy Zherebkov dzh@black-swift.com
  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 <asm/mach-ath79/ar71xx_regs.h>
  12. #include "common.h"
  13. #include "dev-eth.h"
  14. #include "dev-gpio-buttons.h"
  15. #include "dev-leds-gpio.h"
  16. #include "dev-m25p80.h"
  17. #include "dev-spi.h"
  18. #include "dev-usb.h"
  19. #include "dev-wmac.h"
  20. #include "machtypes.h"
  21. #define BSB_GPIO_LED_SYS 27
  22. #define BSB_GPIO_BTN_RESET 11
  23. #define BSB_KEYS_POLL_INTERVAL 20 /* msecs */
  24. #define BSB_KEYS_DEBOUNCE_INTERVAL (3 * BSB_KEYS_POLL_INTERVAL)
  25. #define BSB_MAC_OFFSET 0x0000
  26. #define BSB_CALDATA_OFFSET 0x1000
  27. static struct gpio_led bsb_leds_gpio[] __initdata = {
  28. {
  29. .name = "bsb:red:sys",
  30. .gpio = BSB_GPIO_LED_SYS,
  31. .active_low = 1,
  32. }
  33. };
  34. static struct gpio_keys_button bsb_gpio_keys[] __initdata = {
  35. {
  36. .desc = "reset button",
  37. .type = EV_KEY,
  38. .code = KEY_RESTART,
  39. .debounce_interval = BSB_KEYS_DEBOUNCE_INTERVAL,
  40. .gpio = BSB_GPIO_BTN_RESET,
  41. .active_low = 1,
  42. },
  43. };
  44. static void __init bsb_setup(void)
  45. {
  46. u8 *art = (u8 *) KSEG1ADDR(0x1fff0000);
  47. /* disable PHY_SWAP and PHY_ADDR_SWAP bits */
  48. ath79_setup_ar933x_phy4_switch(false,false);
  49. ath79_register_leds_gpio(-1, ARRAY_SIZE(bsb_leds_gpio),
  50. bsb_leds_gpio);
  51. ath79_register_gpio_keys_polled(-1, BSB_KEYS_POLL_INTERVAL,
  52. ARRAY_SIZE(bsb_gpio_keys),
  53. bsb_gpio_keys);
  54. ath79_register_usb();
  55. ath79_register_m25p80(NULL);
  56. ath79_init_mac(ath79_eth0_data.mac_addr, art + BSB_MAC_OFFSET, 1);
  57. ath79_init_mac(ath79_eth1_data.mac_addr, art + BSB_MAC_OFFSET, 2);
  58. ath79_register_mdio(0, 0x0);
  59. ath79_register_eth(0);
  60. ath79_register_eth(1);
  61. ath79_register_wmac(art + BSB_CALDATA_OFFSET,
  62. art + BSB_MAC_OFFSET);
  63. }
  64. MIPS_MACHINE(ATH79_MACH_BSB, "BSB", "Smart Electronics Black Swift board",
  65. bsb_setup);