diff options
author | Jeremy Soller <jackpot51@gmail.com> | 2022-09-26 10:35:27 -0600 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2023-07-31 14:03:25 +0000 |
commit | fe49f36ca8e084048d8914d8a8eabcf12cc51c9d (patch) | |
tree | 594812ba853108c8257f82ac5d1dcd9a7143fe42 | |
parent | 58a498e25753fa3ea6e101fedd9be6723b5bf101 (diff) |
mb/system76/addw1: Disable SaOcSupport
Typically we set SaOcSupport to allow overclocking RAM, but addw2 saw a
high rate of errors when using the provided 3200 MHz DIMMs. Disable OC
so modules run at the standard 2933 MHz.
Change-Id: I469b9c73d2e6bfa0b3c9175bcc87584aeaa95f75
Signed-off-by: Jeremy Soller <jeremy@system76.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/67837
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
-rw-r--r-- | src/mainboard/system76/addw1/romstage.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/mainboard/system76/addw1/romstage.c b/src/mainboard/system76/addw1/romstage.c index b2b6e47ed4..02634ba2ad 100644 --- a/src/mainboard/system76/addw1/romstage.c +++ b/src/mainboard/system76/addw1/romstage.c @@ -20,8 +20,5 @@ static const struct cnl_mb_cfg memcfg = { void mainboard_memory_init_params(FSPM_UPD *memupd) { - // Allow higher memory speeds - memupd->FspmConfig.SaOcSupport = 1; - cannonlake_memcfg_init(&memupd->FspmConfig, &memcfg); } |