diff options
author | Scott Collyer <scollyer@google.com> | 2018-05-04 11:47:23 -0700 |
---|---|---|
committer | chrome-bot <chrome-bot@chromium.org> | 2018-07-20 15:10:15 -0700 |
commit | b6bb2782ddd3f26c6ec2cc781758c76fb434a282 (patch) | |
tree | db066a8931cb31f68319e92e125a580a2ac958d0 /baseboard | |
parent | 8a6674329235c0446aa1ce8b7ac36371c40308fe (diff) | |
download | chrome-ec-b6bb2782ddd3f26c6ec2cc781758c76fb434a282.tar.gz |
octopus: Enable auto toggle/low power mode for standalone tcpcs
With the changes made to tcpci for alert handling and low power mode
entry, the anx7447 can operate with auto toggle and low power config
options.
BUG=b:77544959
BRANCH=none
TEST=Verfied that low power mode is entered when nothing is attached
and that when an adapter is attached it connects and when removed
returns to low power mode.
Change-Id: I8101d31a5271102c34ecc2ef326c36619825c7d4
Signed-off-by: Scott Collyer <scollyer@google.com>
Reviewed-on: https://chromium-review.googlesource.com/1044870
Commit-Ready: Scott Collyer <scollyer@chromium.org>
Tested-by: Scott Collyer <scollyer@chromium.org>
Reviewed-by: Furquan Shaikh <furquan@chromium.org>
Reviewed-by: Venkateswarlu Vinjamuri <venkateswarlu.v.vinjamuri@intel.corp-partner.google.com>
Reviewed-by: Jett Rink <jettrink@chromium.org>
Diffstat (limited to 'baseboard')
-rw-r--r-- | baseboard/octopus/baseboard.h | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/baseboard/octopus/baseboard.h b/baseboard/octopus/baseboard.h index ecb21a097e..2248b01a12 100644 --- a/baseboard/octopus/baseboard.h +++ b/baseboard/octopus/baseboard.h @@ -141,12 +141,8 @@ * VARIANT_OCTOPUS_USBC_ITE_EC_TCPCS (requires) */ #if defined(VARIANT_OCTOPUS_USBC_STANDALONE_TCPCS) - /* - * TODO(b/77544959): This mode doe not work with ANX7447 currently and - * floods the EC console with low power mode messages. - */ - #undef CONFIG_USB_PD_TCPC_LOW_POWER - #undef CONFIG_USB_PD_DUAL_ROLE_AUTO_TOGGLE + #define CONFIG_USB_PD_TCPC_LOW_POWER + #define CONFIG_USB_PD_DUAL_ROLE_AUTO_TOGGLE #define CONFIG_USB_PD_TCPM_ANX7447 /* C0 TCPC: ANX7447QN */ #define CONFIG_USB_PD_TCPM_ANX7447_OCM_ERASE_COMMAND #define CONFIG_USB_PD_TCPM_PS8751 /* C1 TCPC: PS8751 */ |