vc/intel/fsp/fsp2_0/adl: Update FSP header file version to 1432
[coreboot.git] / src / lib / Kconfig
blobd6e7e51d5c25e1cb03e7c0660f5f1c241dc71454
1 config MISSING_BOARD_RESET
2         bool
3         help
4           Selected by boards that don't provide a do_board_reset()
5           implementation. This activates a stub that logs the missing
6           board reset and halts execution.
8 config NO_EDID_FILL_FB
9         bool
10         default y if !MAINBOARD_DO_NATIVE_VGA_INIT
11         help
12           Don't include default fill_lb_framebuffer() implementation. Select
13           this if your drivers uses MAINBOARD_DO_NATIVE_VGA_INIT but provides
14           its own fill_lb_framebuffer() implementation.
16 config RAMSTAGE_ADA
17         bool
18         help
19           Selected by features that use Ada code in ramstage.
21 config RAMSTAGE_LIBHWBASE
22         bool
23         select RAMSTAGE_ADA
24         help
25           Selected by features that require `libhwbase` in ramstage.
27 config FLATTENED_DEVICE_TREE
28         bool
29         help
30           Selected by features that require to parse and manipulate a flattened
31           devicetree in ramstage.
33 config HAVE_SPD_IN_CBFS
34         bool
35         help
36           If enabled, add support for adding spd.hex files in cbfs as spd.bin
37           and locating it runtime to load SPD.
39 config DIMM_MAX
40         int
41         default 4
42         help
43           Total number of memory DIMM slots available on motherboard.
44           It is multiplication of number of channel to number of DIMMs per
45           channel
47 config DIMM_SPD_SIZE
48         int
49         default 256
50         help
51           Total SPD size that will be used for DIMM.
52           Ex: DDR3 256, DDR4 512.
54 config SPD_READ_BY_WORD
55         bool
57 if RAMSTAGE_LIBHWBASE
59 config HWBASE_DYNAMIC_MMIO
60         def_bool y
62 config HWBASE_DEFAULT_MMCONF
63         hex
64         default MMCONF_BASE_ADDRESS
66 config HWBASE_DIRECT_PCIDEV
67         def_bool y
69 endif
71 config NO_FMAP_CACHE
72         bool
73         help
74           If your platform really doesn't want to use an FMAP cache (e.g. due to
75           space constraints), you can select this to disable warnings and save
76           a bit more code.
78 config ESPI_DEBUG
79         bool
80         help
81           This option enables eSPI library helper functions for displaying debug
82           information.