blob: 90c23cba1bedcc3d7ae19c17b129578c3a18f1e0 [file] [log] [blame]
Simon Glassffe40372019-05-07 21:41:16 -06001if TARGET_CHROMEBOOK_SAMUS || TARGET_CHROMEBOOK_SAMUS_TPL
Simon Glass374e78e2016-03-16 07:44:43 -06002
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
Simon Glassffe40372019-05-07 21:41:16 -060013 default "chromebook_samus" if TARGET_CHROMEBOOK_SAMUS
14 default "chromebook_samus" if TARGET_CHROMEBOOK_SAMUS_TPL
Simon Glass374e78e2016-03-16 07:44:43 -060015
16config SYS_TEXT_BASE
17 default 0xffe00000
18
19config BOARD_SPECIFIC_OPTIONS # dummy
20 def_bool y
21 select X86_RESET_VECTOR
22 select INTEL_BROADWELL
23 select HAVE_INTEL_ME
24 select BOARD_ROMSIZE_KB_8192
Bin Meng1df7f0b2017-07-30 06:23:26 -070025 select SPI_FLASH_WINBOND
Simon Glass374e78e2016-03-16 07:44:43 -060026
27config PCIE_ECAM_BASE
28 default 0xf0000000
29
30config EARLY_POST_CROS_EC
31 bool "Enable early post to Chrome OS EC"
32 default y
33
34config SYS_CAR_ADDR
35 hex
36 default 0xff7c0000
37
38config SYS_CAR_SIZE
39 hex
40 default 0x40000
41
42endif
Simon Glassffe40372019-05-07 21:41:16 -060043
44if TARGET_CHROMEBOOK_SAMUS_TPL
45
46config BOARD_SPECIFIC_OPTIONS_TPL # dummy
47 def_bool y
48 select SPL
49 select TPL
50
51endif