aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/siemens/chili/romstage.c
diff options
context:
space:
mode:
authorNico Huber <nico.huber@secunet.com>2019-07-10 16:42:55 +0200
committerNico Huber <nico.h@gmx.de>2020-10-19 13:24:41 +0000
commite4ab31bc7f45ac78fad24be0e2d6b89c3c232264 (patch)
tree8df7282723e3bc047d7b61f0942fc76b82263fcb /src/mainboard/siemens/chili/romstage.c
parentfa2db84a470eb15099e126f5cd7dca6c25796150 (diff)
mb/siemens/chili: Add Chili variant
This Chili mainboard is used in an all-in-one PC. For more information see https://www.secunet.com/fileadmin/user_upload/_temp_/importexport/Print/Factsheets/englisch/SINA_Workstation_H_Client_V_Factsheet_EN_Web.pdf Change-Id: Ic7a5dccbb0d5b7bceb154fb050cf991254475f7b Signed-off-by: Nico Huber <nico.huber@secunet.com> Signed-off-by: Felix Singer <felix.singer@secunet.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/39995 Reviewed-by: Nico Huber <nico.h@gmx.de> Reviewed-by: Thomas Heijligen <src@posteo.de> Reviewed-by: Angel Pons <th3fanbus@gmail.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/mainboard/siemens/chili/romstage.c')
-rw-r--r--src/mainboard/siemens/chili/romstage.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/mainboard/siemens/chili/romstage.c b/src/mainboard/siemens/chili/romstage.c
index 9c941c27fd..c1ec7e4982 100644
--- a/src/mainboard/siemens/chili/romstage.c
+++ b/src/mainboard/siemens/chili/romstage.c
@@ -38,5 +38,11 @@ void mainboard_memory_init_params(FSPM_UPD *memupd)
memupd->FspmTestConfig.VtdDisable = !vtd;
get_option(&memupd->FspmConfig.HyperThreading, "hyper_threading");
+ variant_romstage_params(memupd);
+
mainboard_init();
}
+
+__weak void variant_romstage_params(FSPM_UPD *const mupd)
+{
+}