xref: /linux/arch/mips/ath79/Kconfig (revision 60063497a95e716c9a689af3be2687d261f115b4)
1if ATH79
2
3menu "Atheros AR71XX/AR724X/AR913X machine selection"
4
5config ATH79_MACH_AP81
6	bool "Atheros AP81 reference board"
7	select SOC_AR913X
8	select ATH79_DEV_AR913X_WMAC
9	select ATH79_DEV_GPIO_BUTTONS
10	select ATH79_DEV_LEDS_GPIO
11	select ATH79_DEV_SPI
12	help
13	  Say 'Y' here if you want your kernel to support the
14	  Atheros AP81 reference board.
15
16config ATH79_MACH_PB44
17	bool "Atheros PB44 reference board"
18	select SOC_AR71XX
19	select ATH79_DEV_GPIO_BUTTONS
20	select ATH79_DEV_LEDS_GPIO
21	select ATH79_DEV_SPI
22	help
23	  Say 'Y' here if you want your kernel to support the
24	  Atheros PB44 reference board.
25
26endmenu
27
28config SOC_AR71XX
29	select USB_ARCH_HAS_EHCI
30	select USB_ARCH_HAS_OHCI
31	def_bool n
32
33config SOC_AR724X
34	select USB_ARCH_HAS_EHCI
35	select USB_ARCH_HAS_OHCI
36	def_bool n
37
38config SOC_AR913X
39	select USB_ARCH_HAS_EHCI
40	def_bool n
41
42config ATH79_DEV_AR913X_WMAC
43	depends on SOC_AR913X
44	def_bool n
45
46config ATH79_DEV_GPIO_BUTTONS
47	def_bool n
48
49config ATH79_DEV_LEDS_GPIO
50	def_bool n
51
52config ATH79_DEV_SPI
53	def_bool n
54
55endif
56