summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--board/ezkinil/board.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/board/ezkinil/board.c b/board/ezkinil/board.c
index 2ccf333b65..558f26b216 100644
--- a/board/ezkinil/board.c
+++ b/board/ezkinil/board.c
@@ -465,6 +465,7 @@ static void board_chipset_resume(void)
if (ec_config_has_hdmi_retimer_pi3hdx1204()) {
ioex_set_level(IOEX_HDMI_POWER_EN_DB, 1);
+ ioex_set_level(IOEX_HDMI_DATA_EN_DB, 1);
msleep(PI3HDX1204_POWER_ON_DELAY_MS);
pi3hdx1204_enable(I2C_PORT_TCPC1,
PI3HDX1204_I2C_ADDR_FLAGS,
@@ -482,6 +483,7 @@ static void board_chipset_suspend(void)
PI3HDX1204_I2C_ADDR_FLAGS,
0);
ioex_set_level(IOEX_HDMI_POWER_EN_DB, 0);
+ ioex_set_level(IOEX_HDMI_DATA_EN_DB, 0);
}
}
DECLARE_HOOK(HOOK_CHIPSET_SUSPEND, board_chipset_suspend, HOOK_PRIO_DEFAULT);