mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-12-04 10:30:32 +00:00
2e07c249a6
This commit introduces a Kconfig symbol for each ARM CPU: CPU_ARM720T, CPU_ARM920T, CPU_ARM926EJS, CPU_ARM946ES, CPU_ARM1136, CPU_ARM1176, CPU_V7, CPU_PXA, CPU_SA1100. Also, it adds the CPU feature Kconfig symbol HAS_VBAR which is selected for CPU_ARM1176 and CPU_V7. For each target, the corresponding CPU is selected and the definition of SYS_CPU in the corresponding Kconfig file is removed. Also, it removes redundant "string" type in some Kconfig files. Signed-off-by: Georges Savoundararadj <savoundg@gmail.com> Acked-by: Albert ARIBAUD <albert.u.boot@aribaud.net> Cc: Masahiro Yamada <yamada.m@jp.panasonic.com>
78 lines
1.5 KiB
Text
78 lines
1.5 KiB
Text
if ARCH_DAVINCI
|
|
|
|
choice
|
|
prompt "DaVinci board select"
|
|
|
|
config TARGET_ENBW_CMC
|
|
bool "EnBW CMC board"
|
|
|
|
config TARGET_IPAM390
|
|
bool "IPAM390 board"
|
|
select SUPPORT_SPL
|
|
|
|
config TARGET_DA830EVM
|
|
bool "DA830 EVM board"
|
|
|
|
config TARGET_DA850EVM
|
|
bool "DA850 EVM board"
|
|
select SUPPORT_SPL
|
|
|
|
config TARGET_CAM_ENC_4XX
|
|
bool "CAM ENC 4xx board"
|
|
select SUPPORT_SPL
|
|
|
|
config TARGET_HAWKBOARD
|
|
bool "Hawkboard"
|
|
select SUPPORT_SPL
|
|
|
|
config TARGET_DAVINCI_DM355EVM
|
|
bool "DM355 EVM board"
|
|
|
|
config TARGET_DAVINCI_DM355LEOPARD
|
|
bool "DM355 Leopard board"
|
|
|
|
config TARGET_DAVINCI_DM365EVM
|
|
bool "DM365 EVM board"
|
|
|
|
config TARGET_DAVINCI_DM6467EVM
|
|
bool "DM6467 EVM board"
|
|
|
|
config TARGET_DAVINCI_DVEVM
|
|
bool "DVEVM board"
|
|
|
|
config TARGET_EA20
|
|
bool "EA20 board"
|
|
|
|
config TARGET_DAVINCI_SCHMOOGIE
|
|
bool "Schmoogie board"
|
|
|
|
config TARGET_DAVINCI_SFFSDR
|
|
bool "SFFSDR board"
|
|
|
|
config TARGET_DAVINCI_SONATA
|
|
bool "Sonata board"
|
|
|
|
config TARGET_CALIMAIN
|
|
bool "Calimain board"
|
|
|
|
endchoice
|
|
|
|
config SYS_SOC
|
|
default "davinci"
|
|
|
|
source "board/enbw/enbw_cmc/Kconfig"
|
|
source "board/ait/cam_enc_4xx/Kconfig"
|
|
source "board/Barix/ipam390/Kconfig"
|
|
source "board/davinci/da8xxevm/Kconfig"
|
|
source "board/davinci/dm355evm/Kconfig"
|
|
source "board/davinci/dm355leopard/Kconfig"
|
|
source "board/davinci/dm365evm/Kconfig"
|
|
source "board/davinci/dm6467evm/Kconfig"
|
|
source "board/davinci/dvevm/Kconfig"
|
|
source "board/davinci/ea20/Kconfig"
|
|
source "board/davinci/schmoogie/Kconfig"
|
|
source "board/davinci/sffsdr/Kconfig"
|
|
source "board/davinci/sonata/Kconfig"
|
|
source "board/omicron/calimain/Kconfig"
|
|
|
|
endif
|