summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--chip/npcx/cec.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/chip/npcx/cec.c b/chip/npcx/cec.c
index a11fe42645..f625c1d699 100644
--- a/chip/npcx/cec.c
+++ b/chip/npcx/cec.c
@@ -1160,6 +1160,9 @@ static void cec_init(void)
/* If RO doesn't set it, RW needs to set it explicitly. */
gpio_set_level(CEC_GPIO_PULL_UP, 1);
+ /* Ensure the CEC bus is not pulled low by default on startup. */
+ gpio_set_level(CEC_GPIO_OUT, 1);
+
CPRINTS("CEC initialized");
}
DECLARE_HOOK(HOOK_INIT, cec_init, HOOK_PRIO_LAST);