blob: 5ffedeb4313daaaad2f080834204bcbd6a83e214 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
## SPDX-License-Identifier: GPL-2.0-only
config CPU_INTEL_FIRMWARE_INTERFACE_TABLE
def_bool n
help
This option selects building a Firmware Interface Table (FIT).
config CPU_INTEL_NUM_FIT_ENTRIES
int
default 16 if INTEL_TXT || INTEL_CBNT_SUPPORT
default 4
depends on CPU_INTEL_FIRMWARE_INTERFACE_TABLE
help
This option selects the number of empty entries in the FIT table.
config HAVE_PBP_BIN
bool "Add Intel platform boot policy file"
default n
depends on SOC_INTEL_COMMON_IBL_BASE
help
The platform boot policy file. Platform boot policy (type 4) entry
in the FIT is required for server executing CBnT and/or PFR without
a PCH.
config PBP_BIN_PATH
string "Path and filename of the platform boot policy file"
default "site-local/mainboard/\$(MAINBOARDDIR)/pbp.bin"
depends on HAVE_PBP_BIN
|