mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2025-09-13 01:41:29 +02:00
Although the two qemu-x86 targets (i440fx and q35) share a lot in common, they still have something that cannot easily handled in one single device tree). Split to create two dedicated device tree files and make the i440fx be the default build target. Signed-off-by: Bin Meng <bmeng.cn@gmail.com> Acked-by: Simon Glass <sjg@chromium.org>
44 lines
996 B
Plaintext
44 lines
996 B
Plaintext
if TARGET_COREBOOT
|
|
|
|
config SYS_BOARD
|
|
default "coreboot"
|
|
|
|
config SYS_VENDOR
|
|
default "coreboot"
|
|
|
|
config SYS_SOC
|
|
default "coreboot"
|
|
|
|
config SYS_TEXT_BASE
|
|
default 0x01110000
|
|
|
|
comment "coreboot-specific options"
|
|
|
|
config SYS_CONFIG_NAME
|
|
string "Board configuration file"
|
|
default "qemu-x86"
|
|
help
|
|
This option selects the board configuration file in include/configs/
|
|
directory to be used to build U-Boot for coreboot.
|
|
|
|
config DEFAULT_DEVICE_TREE
|
|
string "Board Device Tree Source (dts) file"
|
|
default "qemu-x86_i440fx"
|
|
help
|
|
This option selects the board Device Tree Source (dts) file in
|
|
arch/x86/dts/ directory to be used to build U-Boot for coreboot.
|
|
|
|
config SYS_CAR_ADDR
|
|
hex "Board specific Cache-As-RAM (CAR) address"
|
|
default 0x01920000
|
|
help
|
|
This option specifies the board specific Cache-As-RAM (CAR) address.
|
|
|
|
config SYS_CAR_SIZE
|
|
hex "Board specific Cache-As-RAM (CAR) size"
|
|
default 0x4000
|
|
help
|
|
This option specifies the board specific Cache-As-RAM (CAR) size.
|
|
|
|
endif
|