summaryrefslogtreecommitdiffstats
path: root/src/soc/intel/common/block/memory/Kconfig
blob: 5bfdda073df943559c6ddc414cda32f794f4f835 (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
## SPDX-License-Identifier: GPL-2.0-only

config SOC_INTEL_COMMON_BLOCK_MEMINIT
	bool
	help
	  Intel common block support for performing initialization
	  of FSPM UPDs.

if SOC_INTEL_COMMON_BLOCK_MEMINIT

config DIMMS_PER_CHANNEL
	int
	default 0
	help
	  Maximum number of DIMMs per channel if the memory controller
	  supports DIMM modules for any memory technology.

config DATA_BUS_WIDTH
	int
	default 0
	help
	  Data bus width of the platform.

config MRC_CHANNEL_WIDTH
	int
	default 0
	help
	  Width of the memory channel from the perspective of MRC. This
	  determines the UPD organization. SoC using this common block
	  support is expected to set MRC_CHANNEL_WIDTH as per the FSP
	  MRC expectation.

config SPD_CACHE_ENABLE
	bool
	default n
	help
	  Enable to cache the spd data to the RW_SPD_CACHE region. If
	  this option is enabled, please make sure the RW_SPD_CACHE
	  region is added to the flash layout.

endif