blob: 3436c06e56d09841e2f3a44602659ce553395e11 [file] [log] [blame]
Arthur Heymans71bd7e42019-10-20 14:20:53 +02001if PLATFORM_USES_FSP2_0
2
3config DISPLAY_FSP_CALLS_AND_STATUS
4 bool "Display the FSP calls and status"
5 default n
6 help
7 Display the FSP call entry point and parameters prior to calling FSP
8 and display the status upon return from FSP.
9
10config DISPLAY_FSP_HEADER
11 bool "Display the FSP header"
12 default n
13 help
14 Display the FSP header information when the FSP file is found.
15
16config DISPLAY_HOBS
17 bool "Display the hand-off-blocks"
18 default n
19 help
20 Display the FSP HOBs which are provided for coreboot.
21
22config DISPLAY_UPD_DATA
23 bool "Display UPD data"
24 default n
25 help
26 Display the user specified product data prior to memory
27 initialization.
28
29config VERIFY_HOBS
30 bool "Verify the FSP hand-off-blocks"
31 default n
32 help
33 Verify that the HOBs required by coreboot are returned by FSP and
34 that the resource HOBs are in the correct order and position.
35
36config DISPLAY_FSP_VERSION_INFO
37 bool "Display Firmware Ingredient Version Information"
38 help
39 Select this option to display Firmware version information.
40
Ronak Kanabarc7762462020-10-01 19:22:51 +053041config DISPLAY_FSP_VERSION_INFO_2
42 bool
43 default n
44 help
45 Select this option to display Firmware version information
46 using new header 'FirmwareVersionInfo.h'.
47
Ray Han Lim, Ng65b72192022-01-21 14:33:11 +080048config ENABLE_FSP_ERROR_INFO
49 bool "Enable FSP Error Information"
50 default n
51 depends on PLATFORM_USES_FSP2_1
52 help
53 Select this option to enable FSP Error information. FSP detects certain errors
54 and notifies coreboot of a fatal error occurring during the execution of the FSP.
55 Although it's defined in FSP v2.1 but has only been verified on Intel Xeon-SP
56 Sapphire Rapids.
57
Furquan Shaikhe07532f2021-04-10 14:26:15 -070058config HAVE_GPIO_SNAPSHOT_VERIFY_SUPPORT
59 bool
60 default n
61 help
62 Select this option if platform provides support for GPIO
63 config snapshot and verify callbacks: `gpio_snapshot()`
64 and `gpio_verify_snapshot()`
65
66config CHECK_GPIO_CONFIG_CHANGES
67 bool "Check GPIO config changes across calls to FSP-S"
68 depends on HAVE_GPIO_SNAPSHOT_VERIFY_SUPPORT
69 help
70 Select this option to identify if any GPIOs are re-configured
71 by FSP-S differently than the mainboard configuration. This
72 requires platform support to snapshot and verify that config
73 matches snapshot.
74
Arthur Heymans71bd7e42019-10-20 14:20:53 +020075endif # PLATFORM_USES_FSP2_0