aboutsummaryrefslogtreecommitdiffstats
path: root/arch/mips/ath79/Kconfig
diff options
context:
space:
mode:
Diffstat (limited to 'arch/mips/ath79/Kconfig')
-rw-r--r--arch/mips/ath79/Kconfig48
1 files changed, 48 insertions, 0 deletions
diff --git a/arch/mips/ath79/Kconfig b/arch/mips/ath79/Kconfig
new file mode 100644
index 000000000..736741664
--- /dev/null
+++ b/arch/mips/ath79/Kconfig
@@ -0,0 +1,48 @@
1# SPDX-License-Identifier: GPL-2.0
2if ATH79
3
4config SOC_AR71XX
5 select HAVE_PCI
6 def_bool n
7
8config SOC_AR724X
9 select HAVE_PCI
10 select PCI_AR724X if PCI
11 def_bool n
12
13config SOC_AR913X
14 def_bool n
15
16config SOC_AR933X
17 def_bool n
18
19config SOC_AR934X
20 select HAVE_PCI
21 select PCI_AR724X if PCI
22 def_bool n
23
24config SOC_QCA955X
25 select HAVE_PCI
26 select PCI_AR724X if PCI
27 def_bool n
28
29config PCI_AR724X
30 def_bool n
31
32config ATH79_DEV_GPIO_BUTTONS
33 def_bool n
34
35config ATH79_DEV_LEDS_GPIO
36 def_bool n
37
38config ATH79_DEV_SPI
39 def_bool n
40
41config ATH79_DEV_USB
42 def_bool n
43
44config ATH79_DEV_WMAC
45 depends on (SOC_AR913X || SOC_AR933X || SOC_AR934X || SOC_QCA955X)
46 def_bool n
47
48endif