summaryrefslogtreecommitdiffstats
path: root/src/mainboard/protectli/vault_ehl/bootblock.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mainboard/protectli/vault_ehl/bootblock.c')
-rw-r--r--src/mainboard/protectli/vault_ehl/bootblock.c20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/mainboard/protectli/vault_ehl/bootblock.c b/src/mainboard/protectli/vault_ehl/bootblock.c
new file mode 100644
index 000000000000..11bd669f0b65
--- /dev/null
+++ b/src/mainboard/protectli/vault_ehl/bootblock.c
@@ -0,0 +1,20 @@
+
+/* SPDX-License-Identifier: GPL-2.0-only */
+
+#include <bootblock_common.h>
+#include <superio/ite/common/ite.h>
+#include <superio/ite/it8613e/it8613e.h>
+
+#define GPIO_DEV PNP_DEV(0x2e, IT8613E_GPIO)
+#define UART_DEV PNP_DEV(0x2e, IT8613E_SP1)
+
+void bootblock_mainboard_early_init(void)
+{
+ ite_reg_write(GPIO_DEV, 0x29, 0xc1);
+ ite_reg_write(GPIO_DEV, 0x2c, 0x41); /* disable k8 power seq */
+ ite_enable_serial(UART_DEV, CONFIG_TTYS0_BASE);
+}
+
+void bootblock_mainboard_init(void)
+{
+}