1if TARGET_CHROMEBOOK_CORAL 2 3config SYS_BOARD 4 default "chromebook_coral" 5 6config SYS_VENDOR 7 default "google" 8 9config SYS_SOC 10 default "apollolake" 11 12config SYS_CONFIG_NAME 13 default "chromebook_coral" 14 15config SYS_TEXT_BASE 16 default 0xffe00000 17 18config BOARD_SPECIFIC_OPTIONS # dummy 19 def_bool y 20 select X86_RESET_VECTOR 21 select USE_EARLY_BOARD_INIT 22 select INTEL_APOLLOLAKE 23 select BOARD_ROMSIZE_KB_16384 24 25config PCIE_ECAM_BASE 26 default 0xe0000000 27 28config EARLY_POST_CROS_EC 29 bool "Enable early post to Chrome OS EC" 30 help 31 Allow post codes to be sent to the Chroem OS EC early during boot, 32 to enable monitoring of the boot and debugging when things go wrong. 33 With this option enabled, the EC console can be used to watch post 34 codes the first part of boot. 35 36config SYS_CAR_ADDR 37 hex 38 default 0xfef00000 39 40config SYS_CAR_SIZE 41 hex 42 default 0xc0000 43 44endif 45