mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-05 20:54:31 +00:00
39494822e3
This patch adds Microchip MPFS Icicle board support. For now, NS16550 serial driver is only enabled. The Microchip MPFS Icicle defconfig by default builds U-Boot for M-Mode with SMP support. Signed-off-by: Padmarao Begari <padmarao.begari@microchip.com> Reviewed-by: Bin Meng <bmeng.cn@gmail.com> Reviewed-by: Lukas Auer <lukas.auer@aisec.fraunhofer.de>
26 lines
430 B
Text
26 lines
430 B
Text
if TARGET_MICROCHIP_ICICLE
|
|
|
|
config SYS_BOARD
|
|
default "mpfs_icicle"
|
|
|
|
config SYS_VENDOR
|
|
default "microchip"
|
|
|
|
config SYS_CPU
|
|
default "generic"
|
|
|
|
config SYS_CONFIG_NAME
|
|
default "microchip_mpfs_icicle"
|
|
|
|
config SYS_TEXT_BASE
|
|
default 0x80000000 if !RISCV_SMODE
|
|
default 0x80200000 if RISCV_SMODE
|
|
|
|
config BOARD_SPECIFIC_OPTIONS # dummy
|
|
def_bool y
|
|
select GENERIC_RISCV
|
|
select BOARD_EARLY_INIT_F
|
|
imply SMP
|
|
imply SYS_NS16550
|
|
|
|
endif
|