xref: /openbmc/u-boot/arch/mips/mach-ath79/Kconfig (revision 0a6767ef)
1menu "QCA/Atheros 7xxx/9xxx platforms"
2	depends on ARCH_ATH79
3
4config SYS_SOC
5	default "ath79"
6
7config SOC_AR933X
8	bool
9	select SUPPORTS_BIG_ENDIAN
10	select SUPPORTS_CPU_MIPS32_R1
11	select SUPPORTS_CPU_MIPS32_R2
12	select MIPS_TUNE_24KC
13	help
14	  This supports QCA/Atheros ar933x family SOCs.
15
16config SOC_QCA953X
17	bool
18	select SUPPORTS_BIG_ENDIAN
19	select SUPPORTS_CPU_MIPS32_R1
20	select SUPPORTS_CPU_MIPS32_R2
21	select MIPS_TUNE_24KC
22	help
23	  This supports QCA/Atheros qca953x family SOCs.
24
25choice
26	prompt "Board select"
27
28config TARGET_AP121
29	bool "AP121 Reference Board"
30	select SOC_AR933X
31
32config TARGET_AP143
33	bool "AP143 Reference Board"
34	select SOC_QCA953X
35
36endchoice
37
38source "board/qca/ap121/Kconfig"
39source "board/qca/ap143/Kconfig"
40
41endmenu
42