summaryrefslogtreecommitdiff
path: root/driver/tcpm/stub.c
diff options
context:
space:
mode:
authorAlec Berg <alecaberg@chromium.org>2015-10-20 15:37:11 -0700
committerchrome-bot <chrome-bot@chromium.org>2015-10-22 17:40:31 -0700
commit7e81bebb48274055ace613796b9d1ede45c8c9d7 (patch)
tree2a02ef3b96049225f30369e82b2f2b9f007eda20 /driver/tcpm/stub.c
parent0f4e6d217d930c6f3b849f232b1260aed099f260 (diff)
downloadchrome-ec-7e81bebb48274055ace613796b9d1ede45c8c9d7.tar.gz
tcpc: re-initialize tcpc if it reboots while tcpm is running
On TCPC startup, set an alert to notify TCPM that we have been reset. When TCPM gets this notification, it should re-send initial TCPC parameters. If we were in a stable contract as a sink, make sure we don't reset connection. If not, then reset PD protocol state machine to the default state. This fixes a bug where if the TCPC reboots while the TCPM is still running, then the TCPC would not get re-initialized and therefore no PD communication would not work. This also fixes it such that if we are in a stable contract as a sink and the TCPC reboots, then we don't lose power. BUG=chrome-os-partner:46676 BRANCH=none TEST=tested on glados. reboot PD MCU with and without a charger plugged in and verify that PD communication works after the reboot. verify that with a charger, we don't lose power. also tested with a hoho plugged in during reboot. Change-Id: I84fec4577b0daf5891bd8461d3f3d925014a5ecf Signed-off-by: Alec Berg <alecaberg@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/307187 Reviewed-by: Shawn N <shawnn@chromium.org>
Diffstat (limited to 'driver/tcpm/stub.c')
-rw-r--r--driver/tcpm/stub.c13
1 files changed, 12 insertions, 1 deletions
diff --git a/driver/tcpm/stub.c b/driver/tcpm/stub.c
index 35f0329484..08c5f37a35 100644
--- a/driver/tcpm/stub.c
+++ b/driver/tcpm/stub.c
@@ -43,10 +43,21 @@ static int init_alert_mask(int port)
return rv;
}
+static int init_power_status_mask(int port)
+{
+ return tcpm_set_power_status_mask(port, 0);
+}
+
int tcpm_init(int port)
{
+ int rv;
+
tcpc_init(port);
- return init_alert_mask(port);
+ rv = init_alert_mask(port);
+ if (rv)
+ return rv;
+
+ return init_power_status_mask(port);
}
int tcpm_get_cc(int port, int *cc1, int *cc2)