summaryrefslogtreecommitdiff
path: root/src/mainboard/clevo/kbl-u/include
diff options
context:
space:
mode:
authorFelix Singer <felixsinger@posteo.net>2021-01-06 03:54:47 +0000
committerMichael Niewöhner <foss@mniewoehner.de>2021-04-19 10:11:09 +0000
commit7dc57159fe819acb9280522528fb68f3e9befacc (patch)
tree788fbb3bdc345098940edecfb89277bd6b4908e8 /src/mainboard/clevo/kbl-u/include
parent8434d92c305b2c04a61e42cbb2882a829cfb4f67 (diff)
mb/clevo/kbl-u: Move memory init config to variant level
Memory init config is board specific. Thus, move it to variant level and hook up variant romstage.c. Change-Id: Id78788815ad9c4ed64f0172fb746ff6e50d608ef Signed-off-by: Felix Singer <felixsinger@posteo.net> Reviewed-on: https://review.coreboot.org/c/coreboot/+/49132 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Michael Niewöhner <foss@mniewoehner.de>
Diffstat (limited to 'src/mainboard/clevo/kbl-u/include')
-rw-r--r--src/mainboard/clevo/kbl-u/include/variant/romstage.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/mainboard/clevo/kbl-u/include/variant/romstage.h b/src/mainboard/clevo/kbl-u/include/variant/romstage.h
new file mode 100644
index 0000000000..cfcc6ab08d
--- /dev/null
+++ b/src/mainboard/clevo/kbl-u/include/variant/romstage.h
@@ -0,0 +1,8 @@
+/* SPDX-License-Identifier: GPL-2.0-only */
+
+#ifndef VARIANT_ROMSTAGE_H
+#define VARIANT_ROMSTAGE_H
+
+void variant_configure_fspm(FSPM_UPD *memupd);
+
+#endif