aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/siemens/mc_bdx1/romstage.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mainboard/siemens/mc_bdx1/romstage.c')
-rw-r--r--src/mainboard/siemens/mc_bdx1/romstage.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/mainboard/siemens/mc_bdx1/romstage.c b/src/mainboard/siemens/mc_bdx1/romstage.c
index cf52c01f04..eec8f04d3d 100644
--- a/src/mainboard/siemens/mc_bdx1/romstage.c
+++ b/src/mainboard/siemens/mc_bdx1/romstage.c
@@ -3,6 +3,7 @@
*
* Copyright (C) 2013 Google Inc.
* Copyright (C) 2015 Intel Corp.
+ * Copyright (C) 2017 Siemens AG
*
* 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
@@ -17,6 +18,8 @@
#include <stddef.h>
#include <soc/romstage.h>
#include <drivers/intel/fsp1_0/fsp_util.h>
+#include <soc/gpio.h>
+#include "gpio.h"
/**
* /brief mainboard call for setup that needs to be done before fsp init
@@ -24,7 +27,7 @@
*/
void early_mainboard_romstage_entry(void)
{
-
+ init_gpios(mc_bdx1_gpio_config);
}
/**