summaryrefslogtreecommitdiff
path: root/include/usb_pd_tcpm.h
diff options
context:
space:
mode:
authorDenis Brockus <dbrockus@google.com>2020-07-06 13:00:28 -0600
committerCommit Bot <commit-bot@chromium.org>2020-07-08 00:29:26 +0000
commit6a1717f93421baa603179fba5037055699c4fbb0 (patch)
tree667f179aa07ca350af3cba551c09a66ccb321911 /include/usb_pd_tcpm.h
parentf967d8e3cc5266a69bd6e0587318b14ffe8213fb (diff)
downloadchrome-ec-6a1717f93421baa603179fba5037055699c4fbb0.tar.gz
Revert "TCPMv2: make sure Vbus is not sourced in AttachWait.SRC"
Commit sha 57b95363c05bdab7b7e57d553a9514128393247d Reverting a CL that was a temporary fix while a real solution was found. This will now be implemented with the following CLs https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/2282691 https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/2282699 https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/2283697 BUG=none BRANCH=none TEST=make buildall Signed-off-by: Denis Brockus <dbrockus@google.com> Change-Id: I76b92388f5ee5bae4bdb945a82f18eb3df3ab1fd Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/2284728 Tested-by: Denis Brockus <dbrockus@chromium.org> Auto-Submit: Denis Brockus <dbrockus@chromium.org> Reviewed-by: Edward Hill <ecgh@chromium.org> Commit-Queue: Edward Hill <ecgh@chromium.org>
Diffstat (limited to 'include/usb_pd_tcpm.h')
-rw-r--r--include/usb_pd_tcpm.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/include/usb_pd_tcpm.h b/include/usb_pd_tcpm.h
index 33db5d0bd9..910a44d792 100644
--- a/include/usb_pd_tcpm.h
+++ b/include/usb_pd_tcpm.h
@@ -436,15 +436,12 @@ struct tcpm_drv {
* Bit 3 --> Set to 1 if TCPC is using TCPCI Revision 2.0
* Bit 4 --> Set to 1 if TCPC is using TCPCI Revision 2.0 but does not support
* the vSafe0V bit in the EXTENDED_STATUS_REGISTER
- * Bit 5 --> Set to 1 if TCPC some times sets Vbus sourcing enabled on
- * auto-toggle and we need to be able to shut it back off.
*/
#define TCPC_FLAGS_ALERT_ACTIVE_HIGH BIT(0)
#define TCPC_FLAGS_ALERT_OD BIT(1)
#define TCPC_FLAGS_RESET_ACTIVE_HIGH BIT(2)
#define TCPC_FLAGS_TCPCI_REV2_0 BIT(3)
#define TCPC_FLAGS_TCPCI_REV2_0_NO_VSAFE0V BIT(4)
-#define TCPC_FLAGS_TCPCI_BAD_VBUS_SOURCING BIT(5)
struct tcpc_config_t {
enum ec_bus_type bus_type; /* enum ec_bus_type */