aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/google/glados/romstage.c
diff options
context:
space:
mode:
authorMatt DeVillier <matt.devillier@gmail.com>2018-07-08 19:22:05 -0500
committerMartin Roth <martinroth@google.com>2018-07-24 12:04:37 +0000
commit19e7060d7f485ae8f5860f11c7aa26235aaace06 (patch)
treed5772bcc9ded712e3747dd91d96831f8efc1c6b4 /src/mainboard/google/glados/romstage.c
parent57dd0733699e5994ac3481cb4913ae5cea8ac857 (diff)
google/caroline: Add as a variant of glados
Add google/caroline (Samsung Chromebook Pro) as a variant of glados Skylake reference board: - add caroline-specific DPTF, EC config, GPIO config, Kconfig, NHLT config, PEI data, VBT, SPD data, and devicetree - add caroline-specific memory-init param to romstage - adjust mainboard EC SCI events for boards with tablet function Adapted from Chromium branch firmware-glados-7820.B, commit b0c3efe54d877246d07f2467b2dff51cc30348fa [soc/intel/skylake: Enable VMX] Test: build/boot google/caroline, verify correct functionality Change-Id: I611a4e76581ba2e5b42e1bc48b0a5b8c70f3598e Signed-off-by: Matt DeVillier <matt.devillier@gmail.com> Reviewed-on: https://review.coreboot.org/27419 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Martin Roth <martinroth@google.com>
Diffstat (limited to 'src/mainboard/google/glados/romstage.c')
-rw-r--r--src/mainboard/google/glados/romstage.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mainboard/google/glados/romstage.c b/src/mainboard/google/glados/romstage.c
index 4f93f61114..5eeb583379 100644
--- a/src/mainboard/google/glados/romstage.c
+++ b/src/mainboard/google/glados/romstage.c
@@ -71,4 +71,6 @@ void mainboard_memory_init_params(struct romstage_params *params,
sizeof(params->pei_data->RcompTarget));
memory_params->MemorySpdDataLen = SPD_LEN;
memory_params->DqPinsInterleaved = FALSE;
+ if (IS_ENABLED(CONFIG_BOARD_GOOGLE_CAROLINE))
+ memory_params->DdrFreqLimit = 1600;
}