summaryrefslogtreecommitdiff
path: root/src/mainboard/purism/librem13v2/pei_data.h
diff options
context:
space:
mode:
authorMatt DeVillier <matt.devillier@gmail.com>2017-06-22 15:54:07 -0400
committerMartin Roth <martinroth@google.com>2017-10-23 16:56:37 +0000
commitfb1cd09596cfbbaa3b4ec7ec45b6ec8d8fa52411 (patch)
treee1bac936617080050542518c8dc312917100b893 /src/mainboard/purism/librem13v2/pei_data.h
parent9b6384c1a585f1d34b99025281aa9dfd4ed19735 (diff)
downloadcoreboot-fb1cd09596cfbbaa3b4ec7ec45b6ec8d8fa52411.tar.xz
purism/librem13v2: migrate from FSP 1.1 to 2.0
Migrate the Librem13v2 from using FSP 1.1 to the public/GitHub FSP 2.0 Skylake/Kabylake release: - select FSP 2.0 in Kconfig - adjust romstage/ramstage functions as required - refactor pei_data functions - remove VR_RING domain from devicetree (unsupported in FSP 2.0) - add SataSpeedLimit parameter to work around power-related issue when operating at SATA 6.0Gbps speed TEST: build/boot Librem13v2, observe successful boot, lack of SATA-related errors in dmesg. Change-Id: Iedcc18d7279409ccd36deb0001567b0aa5197adf Signed-off-by: Youness Alaoui <youness.alaoui@puri.sm> Signed-off-by: Matt DeVillier <matt.devillier@gmail.com> Reviewed-on: https://review.coreboot.org/22046 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Youness Alaoui <snifikino@gmail.com> Reviewed-by: Martin Roth <martinroth@google.com>
Diffstat (limited to 'src/mainboard/purism/librem13v2/pei_data.h')
-rw-r--r--src/mainboard/purism/librem13v2/pei_data.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/src/mainboard/purism/librem13v2/pei_data.h b/src/mainboard/purism/librem13v2/pei_data.h
new file mode 100644
index 0000000000..320d9803d1
--- /dev/null
+++ b/src/mainboard/purism/librem13v2/pei_data.h
@@ -0,0 +1,24 @@
+/*
+ * This file is part of the coreboot project.
+ *
+ * Copyright (C) 2017 Purism SPC.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; version 2 of the License.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ */
+
+#ifndef _MAINBOARD_PEI_DATA_H_
+#define _MAINBOARD_PEI_DATA_H_
+
+void mainboard_fill_dq_map_data(void *dq_map_ptr);
+void mainboard_fill_dqs_map_data(void *dqs_map_ptr);
+void mainboard_fill_rcomp_res_data(void *rcomp_ptr);
+void mainboard_fill_rcomp_strength_data(void *rcomp_strength_ptr);
+
+#endif