Kconfig 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. if ATH79
  2. menu "Atheros AR71XX/AR724X/AR913X machine selection"
  3. config ATH79_MACH_AP121
  4. bool "Atheros AP121 reference board"
  5. select SOC_AR933X
  6. select ATH79_DEV_GPIO_BUTTONS
  7. select ATH79_DEV_LEDS_GPIO
  8. select ATH79_DEV_SPI
  9. select ATH79_DEV_USB
  10. help
  11. Say 'Y' here if you want your kernel to support the
  12. Atheros AP121 reference board.
  13. config ATH79_MACH_AP81
  14. bool "Atheros AP81 reference board"
  15. select SOC_AR913X
  16. select ATH79_DEV_AR913X_WMAC
  17. select ATH79_DEV_GPIO_BUTTONS
  18. select ATH79_DEV_LEDS_GPIO
  19. select ATH79_DEV_SPI
  20. select ATH79_DEV_USB
  21. help
  22. Say 'Y' here if you want your kernel to support the
  23. Atheros AP81 reference board.
  24. config ATH79_MACH_PB44
  25. bool "Atheros PB44 reference board"
  26. select SOC_AR71XX
  27. select ATH79_DEV_GPIO_BUTTONS
  28. select ATH79_DEV_LEDS_GPIO
  29. select ATH79_DEV_SPI
  30. select ATH79_DEV_USB
  31. help
  32. Say 'Y' here if you want your kernel to support the
  33. Atheros PB44 reference board.
  34. config ATH79_MACH_UBNT_XM
  35. bool "Ubiquiti Networks XM (rev 1.0) board"
  36. select SOC_AR724X
  37. select ATH79_DEV_GPIO_BUTTONS
  38. select ATH79_DEV_LEDS_GPIO
  39. select ATH79_DEV_SPI
  40. help
  41. Say 'Y' here if you want your kernel to support the
  42. Ubiquiti Networks XM (rev 1.0) board.
  43. endmenu
  44. config SOC_AR71XX
  45. select USB_ARCH_HAS_EHCI
  46. select USB_ARCH_HAS_OHCI
  47. def_bool n
  48. config SOC_AR724X
  49. select USB_ARCH_HAS_EHCI
  50. select USB_ARCH_HAS_OHCI
  51. select HW_HAS_PCI
  52. def_bool n
  53. config SOC_AR913X
  54. select USB_ARCH_HAS_EHCI
  55. def_bool n
  56. config SOC_AR933X
  57. select USB_ARCH_HAS_EHCI
  58. def_bool n
  59. config ATH79_DEV_AR913X_WMAC
  60. depends on SOC_AR913X
  61. def_bool n
  62. config ATH79_DEV_GPIO_BUTTONS
  63. def_bool n
  64. config ATH79_DEV_LEDS_GPIO
  65. def_bool n
  66. config ATH79_DEV_SPI
  67. def_bool n
  68. config ATH79_DEV_USB
  69. def_bool n
  70. endif