mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-07 13:44:29 +00:00
25c7de2255
Add support for the Creator CI20 platform based on the JZ4780 SoC. Cc: Daniel Schwierzeck <daniel.schwierzeck@gmail.com> Signed-off-by: Paul Burton <paul.burton@imgtec.com> Signed-off-by: Marek Vasut <marek.vasut@gmail.com> Signed-off-by: Ezequiel Garcia <ezequiel@collabora.com> Reviewed-by: Marek Vasut <marex@denx.de>
26 lines
427 B
Text
26 lines
427 B
Text
menu "Ingenic JZ47xx platforms"
|
|
depends on ARCH_JZ47XX
|
|
|
|
config SYS_SOC
|
|
default "jz47xx"
|
|
|
|
config SOC_JZ4780
|
|
bool
|
|
select SUPPORTS_LITTLE_ENDIAN
|
|
select SUPPORTS_CPU_MIPS32_R1
|
|
select SUPPORTS_CPU_MIPS32_R2
|
|
help
|
|
Support for Ingenic JZ4780 family SoCs.
|
|
|
|
choice
|
|
prompt "Board select"
|
|
|
|
config TARGET_JZ4780_CI20
|
|
bool "Creator CI20 Reference Board"
|
|
select SOC_JZ4780
|
|
|
|
endchoice
|
|
|
|
source "board/imgtec/ci20/Kconfig"
|
|
|
|
endmenu
|