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 15config BOARD_SPECIFIC_OPTIONS # dummy 16 def_bool y 17 imply SPI_FLASH_ATMEL 18 imply SPI_FLASH_EON 19 imply SPI_FLASH_GIGADEVICE 20 imply SPI_FLASH_MACRONIX 21 imply SPI_FLASH_SPANSION 22 imply SPI_FLASH_STMICRO 23 imply SPI_FLASH_SST 24 imply SPI_FLASH_WINBOND 25 26comment "coreboot-specific options" 27 28config SYS_CONFIG_NAME 29 string "Board configuration file" 30 default "qemu-x86" 31 help 32 This option selects the board configuration file in include/configs/ 33 directory to be used to build U-Boot for coreboot. 34 35config DEFAULT_DEVICE_TREE 36 string "Board Device Tree Source (dts) file" 37 default "qemu-x86_i440fx" 38 help 39 This option selects the board Device Tree Source (dts) file in 40 arch/x86/dts/ directory to be used to build U-Boot for coreboot. 41 42config SYS_CAR_ADDR 43 hex "Board specific Cache-As-RAM (CAR) address" 44 default 0x01920000 45 help 46 This option specifies the board specific Cache-As-RAM (CAR) address. 47 48config SYS_CAR_SIZE 49 hex "Board specific Cache-As-RAM (CAR) size" 50 default 0x4000 51 help 52 This option specifies the board specific Cache-As-RAM (CAR) size. 53 54endif 55