mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-16 09:48:16 +00:00
e08539b791
Add support for the Atheros AR934x WiSoCs. This patchs adds complete system init, including PLL and DRAM init, both of which happen from full C environment, since the AR934x has proper SRAM. Signed-off-by: Marek Vasut <marex@denx.de> Cc: Daniel Schwierzeck <daniel.schwierzeck@gmail.com> Cc: Wills Wang <wills.wang@live.com>
50 lines
935 B
Text
50 lines
935 B
Text
menu "QCA/Atheros 7xxx/9xxx platforms"
|
|
depends on ARCH_ATH79
|
|
|
|
config SYS_SOC
|
|
default "ath79"
|
|
|
|
config SOC_AR933X
|
|
bool
|
|
select SUPPORTS_BIG_ENDIAN
|
|
select SUPPORTS_CPU_MIPS32_R1
|
|
select SUPPORTS_CPU_MIPS32_R2
|
|
select MIPS_TUNE_24KC
|
|
help
|
|
This supports QCA/Atheros ar933x family SOCs.
|
|
|
|
config SOC_AR934X
|
|
bool
|
|
select SUPPORTS_BIG_ENDIAN
|
|
select SUPPORTS_CPU_MIPS32_R1
|
|
select SUPPORTS_CPU_MIPS32_R2
|
|
select MIPS_TUNE_74KC
|
|
help
|
|
This supports QCA/Atheros ar934x family SOCs.
|
|
|
|
config SOC_QCA953X
|
|
bool
|
|
select SUPPORTS_BIG_ENDIAN
|
|
select SUPPORTS_CPU_MIPS32_R1
|
|
select SUPPORTS_CPU_MIPS32_R2
|
|
select MIPS_TUNE_24KC
|
|
help
|
|
This supports QCA/Atheros qca953x family SOCs.
|
|
|
|
choice
|
|
prompt "Board select"
|
|
|
|
config TARGET_AP121
|
|
bool "AP121 Reference Board"
|
|
select SOC_AR933X
|
|
|
|
config TARGET_AP143
|
|
bool "AP143 Reference Board"
|
|
select SOC_QCA953X
|
|
|
|
endchoice
|
|
|
|
source "board/qca/ap121/Kconfig"
|
|
source "board/qca/ap143/Kconfig"
|
|
|
|
endmenu
|