summaryrefslogtreecommitdiff
path: root/board/morphius
diff options
context:
space:
mode:
Diffstat (limited to 'board/morphius')
-rw-r--r--board/morphius/board.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/board/morphius/board.c b/board/morphius/board.c
index 7bd18b4954..b3ae7f4ddd 100644
--- a/board/morphius/board.c
+++ b/board/morphius/board.c
@@ -573,13 +573,13 @@ static void board_chipset_resume(void)
{
/* Normal charge current */
sb_smart_charge_mode(SB_SMART_CHARGE_DISABLE);
+ ioex_set_level(IOEX_HDMI_DATA_EN_DB, 1);
if (ec_config_has_hdmi_retimer_pi3hdx1204()) {
if (board_ver >= 3) {
ioex_set_level(IOEX_HDMI_POWER_EN_DB, 1);
msleep(PI3HDX1204_POWER_ON_DELAY_MS);
}
- ioex_set_level(IOEX_HDMI_DATA_EN_DB, 1);
pi3hdx1204_enable(I2C_PORT_TCPC1,
PI3HDX1204_I2C_ADDR_FLAGS,
1);
@@ -598,8 +598,9 @@ static void board_chipset_suspend(void)
0);
if (board_ver >= 3)
ioex_set_level(IOEX_HDMI_POWER_EN_DB, 0);
- ioex_set_level(IOEX_HDMI_DATA_EN_DB, 0);
}
+
+ ioex_set_level(IOEX_HDMI_DATA_EN_DB, 0);
}
DECLARE_HOOK(HOOK_CHIPSET_SUSPEND, board_chipset_suspend, HOOK_PRIO_DEFAULT);