blob: e9e6053c64cb479d68d3841b62bf1b9e6fc0d983 [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
Furquan Shaikhe07532f2021-04-10 14:26:15 -070048config HAVE_GPIO_SNAPSHOT_VERIFY_SUPPORT
49 bool
50 default n
51 help
52 Select this option if platform provides support for GPIO
53 config snapshot and verify callbacks: `gpio_snapshot()`
54 and `gpio_verify_snapshot()`
55
56config CHECK_GPIO_CONFIG_CHANGES
57 bool "Check GPIO config changes across calls to FSP-S"
58 depends on HAVE_GPIO_SNAPSHOT_VERIFY_SUPPORT
59 help
60 Select this option to identify if any GPIOs are re-configured
61 by FSP-S differently than the mainboard configuration. This
62 requires platform support to snapshot and verify that config
63 matches snapshot.
64
Arthur Heymans71bd7e42019-10-20 14:20:53 +020065endif # PLATFORM_USES_FSP2_0