xref: /openbmc/u-boot/board/coreboot/coreboot/Kconfig (revision c7ba7bdc)
1if TARGET_COREBOOT
2
3config SYS_BOARD
4	default "coreboot"
5
6config SYS_VENDOR
7	default "coreboot"
8
9config SYS_SOC
10	default "coreboot"
11
12config SYS_TEXT_BASE
13	default 0x01110000
14
15comment "coreboot-specific options"
16
17config 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
24config 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
31config 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
37config 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
43endif
44