blob: 5d576bf042e1f4bba815a18065fb7c4c68c50db2 [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
Michał Żygowski83565de2019-03-27 11:35:48 +010052 default 0x500000
53
54config PXE_ROM_ID
55 string
56 default "8086,1539" if BOARD_PROTECTLI_FW2B
57 default "8086,157b" if BOARD_PROTECTLI_FW4B
58
59if !RUN_FSP_GOP
60config VGA_BIOS_FILE
61 string
62 default "3rdparty/blobs/mainboard/protectli/vault_bsw/vgabios.bin"
63 help
64 The C0 version of the video bios gets computed from this name
65 so that they can both be added. Only the correct one for the
66 system will be run.
67
68config VGA_BIOS_ID
69 string
70 default "8086,22b0"
71 help
72 The VGA_BIOS_ID for the C0 version of the video bios is hardcoded
73 in soc/intel/braswell/Makefile.inc as 8086,22b1
74
75endif #RUN_FSP_GOP
76
77endif # BOARD_PROTECTLI_FW2B