Aamir Bohra has uploaded this change for review.

View Change

mb/google/hatch: [TEST- ONLY] Enable RMT log capture in FSP

**** DO NOT MERGE ****

Change-Id: I0a0865b2baa6d3606a38b9f07b1d32f13e4e7178
Signed-off-by: Aamir Bohra <aamir.bohra@intel.com>
---
M src/mainboard/google/hatch/romstage.c
1 file changed, 6 insertions(+), 3 deletions(-)

git pull ssh://review.coreboot.org:29418/coreboot refs/changes/64/30664/1
diff --git a/src/mainboard/google/hatch/romstage.c b/src/mainboard/google/hatch/romstage.c
index 401f41f..4a47d12 100644
--- a/src/mainboard/google/hatch/romstage.c
+++ b/src/mainboard/google/hatch/romstage.c
@@ -19,11 +19,14 @@

void mainboard_memory_init_params(FSPM_UPD *memupd)
{
+ FSP_M_CONFIG *mem_cfg = &memupd->FspmConfig;
+ mem_cfg->RMT = 1;
+ memupd->FspmTestConfig.BdatEnable = 1;
+ mem_cfg->MrcFastBoot = 0;
+
const struct spd_info spd = {
.spd_by_index = true,
.spd_spec.spd_index = variant_memory_sku(),
};
-
- cannonlake_memcfg_init(&memupd->FspmConfig,
- variant_memory_params(), &spd);
+ cannonlake_memcfg_init(mem_cfg, variant_memory_params(), &spd);
}

To view, visit change 30664. To unsubscribe, or for help writing mail filters, visit settings.

Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: I0a0865b2baa6d3606a38b9f07b1d32f13e4e7178
Gerrit-Change-Number: 30664
Gerrit-PatchSet: 1
Gerrit-Owner: Aamir Bohra <aamir.bohra@intel.com>
Gerrit-MessageType: newchange