blob: afbfe53deb4d1825f3388996056cf71a2d1b110f [file] [log] [blame]
Simon Glass374e78e2016-03-16 07:44:43 -06001if TARGET_CHROMEBOOK_SAMUS
2
3config SYS_BOARD
4 default "chromebook_samus"
5
6config SYS_VENDOR
7 default "google"
8
9config SYS_SOC
10 default "broadwell"
11
12config SYS_CONFIG_NAME
13 default "chromebook_samus"
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 INTEL_BROADWELL
22 select HAVE_INTEL_ME
23 select BOARD_ROMSIZE_KB_8192
Bin Meng1df7f0b2017-07-30 06:23:26 -070024 select SPI_FLASH_WINBOND
Simon Glass374e78e2016-03-16 07:44:43 -060025
26config PCIE_ECAM_BASE
27 default 0xf0000000
28
29config EARLY_POST_CROS_EC
30 bool "Enable early post to Chrome OS EC"
31 default y
32
33config SYS_CAR_ADDR
34 hex
35 default 0xff7c0000
36
37config SYS_CAR_SIZE
38 hex
39 default 0x40000
40
41endif