blob: 7bbdcd2c7e9cdb547f296b22790641ed4650e6b8 [file] [log] [blame]
Michał Żygowski83565de2019-03-27 11:35:48 +01001if BOARD_PROTECTLI_FW2B || BOARD_PROTECTLI_FW4B
2
3config BOARD_SPECIFIC_OPTIONS
4 def_bool y
5 select BOARD_ROMSIZE_KB_8192
6 select CACHE_MRC_SETTINGS
7 select DISABLE_HPET
8 select HAVE_ACPI_RESUME
9 select HAVE_ACPI_TABLES
10 select PCIEXP_L1_SUB_STATE
11 select SEABIOS_ADD_SERCON_PORT_FILE if PAYLOAD_SEABIOS
12 select SOC_INTEL_BRASWELL
13 select SPI_FLASH_MACRONIX
14 select SUPERIO_ITE_IT8613E
15
16config MAINBOARD_DIR
17 string
Patrick Georgi3588d7b2020-06-17 17:47:40 +020018 default "protectli/vault_bsw"
Michał Żygowski83565de2019-03-27 11:35:48 +010019
20config VARIANT_DIR
21 string
22 default "fw2b" if BOARD_PROTECTLI_FW2B
23 default "fw4b" if BOARD_PROTECTLI_FW4B
24
25config OVERRIDE_DEVICETREE
26 string
Patrick Georgib8fba862020-06-17 21:06:53 +020027 default "variants/\$(CONFIG_VARIANT_DIR)/overridetree.cb"
Michał Żygowski83565de2019-03-27 11:35:48 +010028
29config MAINBOARD_PART_NUMBER
30 string
31 default "FW2B" if BOARD_PROTECTLI_FW2B
32 default "FW4B" if BOARD_PROTECTLI_FW4B
33
34config MAINBOARD_VENDOR
35 string
36 default "Protectli"
37
38config DIMM_MAX
39 int
40 default 1
41
42config DIMM_SPD_SIZE
43 int
44 default 256
45
46config MAX_CPUS
47 int
48 default 2 if BOARD_PROTECTLI_FW2B
49 default 4 if BOARD_PROTECTLI_FW4B
50
51config CBFS_SIZE
52 hex
53 default 0x500000
54
55config PXE_ROM_ID
56 string
57 default "8086,1539" if BOARD_PROTECTLI_FW2B
58 default "8086,157b" if BOARD_PROTECTLI_FW4B
59
60if !RUN_FSP_GOP
61config VGA_BIOS_FILE
62 string
63 default "3rdparty/blobs/mainboard/protectli/vault_bsw/vgabios.bin"
64 help
65 The C0 version of the video bios gets computed from this name
66 so that they can both be added. Only the correct one for the
67 system will be run.
68
69config VGA_BIOS_ID
70 string
71 default "8086,22b0"
72 help
73 The VGA_BIOS_ID for the C0 version of the video bios is hardcoded
74 in soc/intel/braswell/Makefile.inc as 8086,22b1
75
76endif #RUN_FSP_GOP
77
78endif # BOARD_PROTECTLI_FW2B