summaryrefslogtreecommitdiff
path: root/baseboard/trogdor
diff options
context:
space:
mode:
authorDiana Z <dzigterman@chromium.org>2020-12-16 23:29:04 -0700
committerCommit Bot <commit-bot@chromium.org>2020-12-24 01:11:02 +0000
commitfca75f573ff913a5be050c7a13e7dcda6be68da2 (patch)
treedc192d0343545550a4f88df2d91f813d58d27d1a /baseboard/trogdor
parentc9cc5600573a6a28bd0a66d43916e969bd403bbd (diff)
downloadchrome-ec-fca75f573ff913a5be050c7a13e7dcda6be68da2.tar.gz
TCPMv2: Update source-out configs
Now that the DPM will be handling source-out decisions for TCPMv2, remove references to its old configuration options from TCPMv2 boards in order to avoid any confusion as to what code is running now. Also remove the charge manager notifications of sink attach/detach since the policy is being centralized into the DPM. Note that the previous configuration options only ever allocated one 3.0 A port, and so the default number of 3.0 A ports has been set to 1. BRANCH=None BUG=b:168862110,b:141690755 TEST=make -j buildall Signed-off-by: Diana Z <dzigterman@chromium.org> Change-Id: Ie452e3da32b04226503539daa67b6b9f4a58aa58 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/2597431 Reviewed-by: Keith Short <keithshort@chromium.org>
Diffstat (limited to 'baseboard/trogdor')
-rw-r--r--baseboard/trogdor/baseboard.h1
-rw-r--r--baseboard/trogdor/usb_pd_policy.c8
2 files changed, 0 insertions, 9 deletions
diff --git a/baseboard/trogdor/baseboard.h b/baseboard/trogdor/baseboard.h
index ff7bb66453..185d84f281 100644
--- a/baseboard/trogdor/baseboard.h
+++ b/baseboard/trogdor/baseboard.h
@@ -114,7 +114,6 @@
#define CONFIG_USB_PD_DUAL_ROLE_AUTO_TOGGLE
#define CONFIG_USB_PD_TCPC_LOW_POWER
#define CONFIG_USB_PD_LOGGING
-#define CONFIG_USB_PD_MAX_SINGLE_SOURCE_CURRENT TYPEC_RP_3A0
#define CONFIG_USB_PD_TCPM_MUX
#define CONFIG_USB_PD_TCPM_TCPCI
#define CONFIG_CMD_TCPC_DUMP
diff --git a/baseboard/trogdor/usb_pd_policy.c b/baseboard/trogdor/usb_pd_policy.c
index ef5c470611..fa11b88a38 100644
--- a/baseboard/trogdor/usb_pd_policy.c
+++ b/baseboard/trogdor/usb_pd_policy.c
@@ -50,11 +50,6 @@ void pd_power_supply_reset(int port)
if (prev_en)
pd_set_vbus_discharge(port, 1);
-#ifdef CONFIG_USB_PD_MAX_SINGLE_SOURCE_CURRENT
- /* Give back the current quota we are no longer using */
- charge_manager_source_port(port, 0);
-#endif /* defined(CONFIG_USB_PD_MAX_SINGLE_SOURCE_CURRENT) */
-
/* notify host of power info change */
pd_send_host_event(PD_EVENT_POWER_CHANGE);
}
@@ -70,9 +65,6 @@ int pd_set_power_supply_ready(int port)
vbus_en[port] = 1;
board_vbus_update_source_current(port);
- /* Ensure we advertise the proper available current quota */
- charge_manager_source_port(port, 1);
-
/* notify host of power info change */
pd_send_host_event(PD_EVENT_POWER_CHANGE);