aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/libretrend/lt1000/ramstage.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mainboard/libretrend/lt1000/ramstage.c')
-rw-r--r--src/mainboard/libretrend/lt1000/ramstage.c15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/mainboard/libretrend/lt1000/ramstage.c b/src/mainboard/libretrend/lt1000/ramstage.c
new file mode 100644
index 0000000000..e9eb80afa2
--- /dev/null
+++ b/src/mainboard/libretrend/lt1000/ramstage.c
@@ -0,0 +1,15 @@
+/* SPDX-License-Identifier: GPL-2.0-or-later */
+/* This file is part of the coreboot project. */
+
+#include <soc/ramstage.h>
+
+#include "gpio.h"
+
+void mainboard_silicon_init_params(FSP_SIL_UPD *params)
+{
+ /*
+ * Configure pads prior to SiliconInit() in case there are any
+ * dependencies during hardware initialization.
+ */
+ gpio_configure_pads(gpio_table, ARRAY_SIZE(gpio_table));
+}