]> git.ipfire.org Git - people/ms/u-boot.git/blob - board/coreboot/coreboot/Kconfig
x86: qemu: Create separate i440fx and q35 device trees
[people/ms/u-boot.git] / board / coreboot / coreboot / Kconfig
1 if TARGET_COREBOOT
2
3 config SYS_BOARD
4 default "coreboot"
5
6 config SYS_VENDOR
7 default "coreboot"
8
9 config SYS_SOC
10 default "coreboot"
11
12 config SYS_TEXT_BASE
13 default 0x01110000
14
15 comment "coreboot-specific options"
16
17 config SYS_CONFIG_NAME
18 string "Board configuration file"
19 default "qemu-x86"
20 help
21 This option selects the board configuration file in include/configs/
22 directory to be used to build U-Boot for coreboot.
23
24 config DEFAULT_DEVICE_TREE
25 string "Board Device Tree Source (dts) file"
26 default "qemu-x86_i440fx"
27 help
28 This option selects the board Device Tree Source (dts) file in
29 arch/x86/dts/ directory to be used to build U-Boot for coreboot.
30
31 config SYS_CAR_ADDR
32 hex "Board specific Cache-As-RAM (CAR) address"
33 default 0x01920000
34 help
35 This option specifies the board specific Cache-As-RAM (CAR) address.
36
37 config SYS_CAR_SIZE
38 hex "Board specific Cache-As-RAM (CAR) size"
39 default 0x4000
40 help
41 This option specifies the board specific Cache-As-RAM (CAR) size.
42
43 endif