From 8c4eeafcfe6ce68e2594bc8bc029195083bb37b8 Mon Sep 17 00:00:00 2001 From: Jeremy Soller Date: Fri, 13 May 2022 13:01:42 -0600 Subject: [PATCH] mb/system76/addw1: Disable SaOcSupport to eliminate hangs with 3200MT/s memory Change-Id: I586e8cf97a52b2fa8386ce3742a4f4ae9465bbcf --- src/mainboard/system76/addw1/romstage.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mainboard/system76/addw1/romstage.c b/src/mainboard/system76/addw1/romstage.c index 9c1d25acb6b..4a878db7e4b 100644 --- a/src/mainboard/system76/addw1/romstage.c +++ b/src/mainboard/system76/addw1/romstage.c @@ -34,8 +34,8 @@ void mainboard_memory_init_params(FSPM_UPD *memupd) // Set primary display to internal graphics memupd->FspmConfig.PrimaryDisplay = 0; - // Allow higher memory speeds - memupd->FspmConfig.SaOcSupport = 1; + // Disable higher memory speeds + memupd->FspmConfig.SaOcSupport = 0; cannonlake_memcfg_init(&memupd->FspmConfig, &memcfg); }