diff options
author | Vagiz Trakhanov <rakkin@autistici.org> | 2017-10-02 10:02:35 +0000 |
---|---|---|
committer | Nico Huber <nico.h@gmx.de> | 2017-10-19 15:06:13 +0000 |
commit | 771be480a67281022d92eed9f82367cf2d8efbdf (patch) | |
tree | 848d589176cfc1ec8bda25d45496847d0fc22520 /src/northbridge/intel/sandybridge/Kconfig | |
parent | 15cb5be5b0558343de551575feba19ec85deb851 (diff) |
nb/sandybridge: Add a kconfig option to ignore XMP max DIMMs
XMP profiles can have a restriction on max supported DIMMs per channel,
but many configurations work with more DIMMs.
This is relevant on mainboards with 2 DIMM slots per channel (usually 4
in total). Populating both slots with DIMMs that support XMP profiles only
with 1 DIMM per channel turns off said XMP profiles.
TEST=On a system with two DIMM slots per channel populate both slots on
one channel and ensure that DIMMs run with XMP profiles enabled.
Change-Id: I1f22d981afcef0ee73785823b0a943cf3d3564e3
Signed-off-by: Vagiz Trakhanov <rakkin@autistici.org>
Reviewed-on: https://review.coreboot.org/21841
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Nico Huber <nico.h@gmx.de>
Diffstat (limited to 'src/northbridge/intel/sandybridge/Kconfig')
-rw-r--r-- | src/northbridge/intel/sandybridge/Kconfig | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/northbridge/intel/sandybridge/Kconfig b/src/northbridge/intel/sandybridge/Kconfig index 1a47f0db7e..043e8dee79 100644 --- a/src/northbridge/intel/sandybridge/Kconfig +++ b/src/northbridge/intel/sandybridge/Kconfig @@ -54,6 +54,15 @@ config NATIVE_RAMINIT_IGNORE_MAX_MEM_FUSES Disabled by default as it might causes system instability. Handle with care! +config NATIVE_RAMINIT_IGNORE_XMP_MAX_DIMMS + bool "Ignore XMP profile max DIMMs per channel" + default n + depends on USE_NATIVE_RAMINIT + help + Ignore the max DIMMs per channel restriciton defined in XMP profiles. + Disabled by default as it might cause system instability. + Handle with care! + config CBFS_SIZE hex default 0x100000 |