summaryrefslogtreecommitdiff
path: root/board/ezkinil
diff options
context:
space:
mode:
Diffstat (limited to 'board/ezkinil')
-rw-r--r--board/ezkinil/board.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/board/ezkinil/board.c b/board/ezkinil/board.c
index 558f26b216..ad141694d3 100644
--- a/board/ezkinil/board.c
+++ b/board/ezkinil/board.c
@@ -462,10 +462,10 @@ void hdmi_hpd_interrupt_v2(enum ioex_signal signal)
static void board_chipset_resume(void)
{
ioex_set_level(IOEX_USB_A1_RETIMER_EN, 1);
+ ioex_set_level(IOEX_HDMI_DATA_EN_DB, 1);
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,
@@ -477,13 +477,13 @@ DECLARE_HOOK(HOOK_CHIPSET_RESUME, board_chipset_resume, HOOK_PRIO_DEFAULT);
static void board_chipset_suspend(void)
{
ioex_set_level(IOEX_USB_A1_RETIMER_EN, 0);
+ ioex_set_level(IOEX_HDMI_DATA_EN_DB, 0);
if (ec_config_has_hdmi_retimer_pi3hdx1204()) {
pi3hdx1204_enable(I2C_PORT_TCPC1,
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);