summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruce <Bruce.Wan@quantatw.com>2016-11-10 17:18:03 +0800
committerchrome-bot <chrome-bot@chromium.org>2016-11-16 19:04:44 -0800
commit41dea76433c46ba0ecc797be968368410e7dc84b (patch)
treecdd98f123833a87ea84fb3f7f7ca5b0a23159cae
parent35ad88f61824bf7873cac05b1b23fa38ff7869e5 (diff)
downloadchrome-ec-41dea76433c46ba0ecc797be968368410e7dc84b.tar.gz
Snappy: clear hpd bit in board level tcpc init
PD alternate mode is covered in tcpc interface. So tcpci_tcpm_init() doesn't reset HPD. If keeping HDMI/DP type-C cable connected, doing sysjump sets HPD signal to high while it's already high(this high comes from previous state), then OS doesn't output to HDMI/DP monitor. BUG=None BRANCH=none TEST=make buildall Change-Id: I9b23cee82716d9073c98b6b53a0e54d587baf0ea Signed-off-by: Bruce.Wan <Bruce.Wan@quantatw.com> Reviewed-on: https://chromium-review.googlesource.com/409732 Commit-Ready: Devin Lu <Devin.Lu@quantatw.com> Tested-by: Devin Lu <Devin.Lu@quantatw.com> Reviewed-by: Aaron Durbin <adurbin@chromium.org>
-rw-r--r--board/snappy/board.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/board/snappy/board.c b/board/snappy/board.c
index 8065cf8bab..6551ad4a22 100644
--- a/board/snappy/board.c
+++ b/board/snappy/board.c
@@ -301,6 +301,8 @@ void board_print_tcpc_fw_version(int port)
void board_tcpc_init(void)
{
+ int port;
+
/* Only reset TCPC if not sysjump */
if (!system_jumped_to_this_image())
board_reset_pd_mcu();
@@ -310,6 +312,16 @@ void board_tcpc_init(void)
/* Enable TCPC1 interrupt */
gpio_enable_interrupt(GPIO_USB_C1_PD_INT_ODL);
+
+ /*
+ * Initialize HPD to low; after sysjump SOC needs to see
+ * HPD pulse to enable video path
+ */
+ for (port = 0; port < CONFIG_USB_PD_PORT_COUNT; port++) {
+ const struct usb_mux *mux = &usb_muxes[port];
+
+ mux->hpd_update(port, 0, 0);
+ }
}
DECLARE_HOOK(HOOK_INIT, board_tcpc_init, HOOK_PRIO_INIT_I2C+1);