From 9ba7399ee9ecb3b1484c1f4c5920923b00900f9e Mon Sep 17 00:00:00 2001 From: Jeremy Soller Date: Tue, 30 Jun 2020 15:28:06 -0600 Subject: [PATCH] oryp6: allow memory clocks higher than 2933 MHz Change-Id: I6ea0e402f5ec0c89fa97cdd50615209551ad839f --- src/mainboard/system76/oryp6/romstage.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/mainboard/system76/oryp6/romstage.c b/src/mainboard/system76/oryp6/romstage.c index a800bcf8f4..296999c1b8 100644 --- a/src/mainboard/system76/oryp6/romstage.c +++ b/src/mainboard/system76/oryp6/romstage.c @@ -80,6 +80,8 @@ static const struct cnl_mb_cfg memcfg = { void mainboard_memory_init_params(FSPM_UPD *memupd) { + // Allow memory clocks higher than 2933 MHz + memupd->FspmConfig.SaOcSupport = 1; // Set primary display to internal graphics memupd->FspmConfig.PrimaryDisplay = 0; cannonlake_memcfg_init(&memupd->FspmConfig, &memcfg);