summaryrefslogtreecommitdiffstats
path: root/src/mainboard/clevo/kbl-u/variants/n13xwu/gpio_early.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mainboard/clevo/kbl-u/variants/n13xwu/gpio_early.c')
-rw-r--r--src/mainboard/clevo/kbl-u/variants/n13xwu/gpio_early.c17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/mainboard/clevo/kbl-u/variants/n13xwu/gpio_early.c b/src/mainboard/clevo/kbl-u/variants/n13xwu/gpio_early.c
new file mode 100644
index 000000000000..00246a42e589
--- /dev/null
+++ b/src/mainboard/clevo/kbl-u/variants/n13xwu/gpio_early.c
@@ -0,0 +1,17 @@
+/* SPDX-License-Identifier: GPL-2.0-only */
+
+#include <mainboard/gpio.h>
+#include <soc/gpio.h>
+
+static const struct pad_config early_gpio_table[] = {
+ // UART2_RXD
+ _PAD_CFG_STRUCT(GPP_C20, 0x44000702, 0x0),
+
+ // UART2_TXD
+ _PAD_CFG_STRUCT(GPP_C21, 0x44000700, 0x0)
+};
+
+void mainboard_configure_gpios(void)
+{
+ gpio_configure_pads(early_gpio_table, ARRAY_SIZE(early_gpio_table));
+}