blob: e9e6053c64cb479d68d3841b62bf1b9e6fc0d983 (
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
if PLATFORM_USES_FSP2_0
config DISPLAY_FSP_CALLS_AND_STATUS
bool "Display the FSP calls and status"
default n
help
Display the FSP call entry point and parameters prior to calling FSP
and display the status upon return from FSP.
config DISPLAY_FSP_HEADER
bool "Display the FSP header"
default n
help
Display the FSP header information when the FSP file is found.
config DISPLAY_HOBS
bool "Display the hand-off-blocks"
default n
help
Display the FSP HOBs which are provided for coreboot.
config DISPLAY_UPD_DATA
bool "Display UPD data"
default n
help
Display the user specified product data prior to memory
initialization.
config VERIFY_HOBS
bool "Verify the FSP hand-off-blocks"
default n
help
Verify that the HOBs required by coreboot are returned by FSP and
that the resource HOBs are in the correct order and position.
config DISPLAY_FSP_VERSION_INFO
bool "Display Firmware Ingredient Version Information"
help
Select this option to display Firmware version information.
config DISPLAY_FSP_VERSION_INFO_2
bool
default n
help
Select this option to display Firmware version information
using new header 'FirmwareVersionInfo.h'.
config HAVE_GPIO_SNAPSHOT_VERIFY_SUPPORT
bool
default n
help
Select this option if platform provides support for GPIO
config snapshot and verify callbacks: `gpio_snapshot()`
and `gpio_verify_snapshot()`
config CHECK_GPIO_CONFIG_CHANGES
bool "Check GPIO config changes across calls to FSP-S"
depends on HAVE_GPIO_SNAPSHOT_VERIFY_SUPPORT
help
Select this option to identify if any GPIOs are re-configured
by FSP-S differently than the mainboard configuration. This
requires platform support to snapshot and verify that config
matches snapshot.
endif # PLATFORM_USES_FSP2_0
|