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 12comment "coreboot-specific options" 13 14config SYS_CONFIG_NAME 15 string "Board configuration file" 16 default "chromebook_link" 17 help 18 This option selects the board configuration file in include/configs/ 19 directory to be used to build U-Boot for coreboot. 20 21config DEFAULT_DEVICE_TREE 22 string "Board Device Tree Source (dts) file" 23 default "chromebook_link" 24 help 25 This option selects the board Device Tree Source (dts) file in 26 arch/x86/dts/ directory to be used to build U-Boot for coreboot. 27 28config SYS_CAR_ADDR 29 hex "Board specific Cache-As-RAM (CAR) address" 30 default 0x19200000 31 help 32 This option specifies the board specific Cache-As-RAM (CAR) address. 33 34config SYS_CAR_SIZE 35 hex "Board specific Cache-As-RAM (CAR) size" 36 default 0x4000 37 help 38 This option specifies the board specific Cache-As-RAM (CAR) size. 39 40endif 41