summaryrefslogtreecommitdiff
path: root/board/plankton
diff options
context:
space:
mode:
authorAlec Berg <alecaberg@chromium.org>2014-12-07 04:25:39 -0800
committerchrome-internal-fetch <chrome-internal-fetch@google.com>2014-12-11 21:13:48 +0000
commit34fe8658abe4e6b63b3d1b5e727ba8c792110431 (patch)
tree0966fb21ba58a2616a239e35e3485b7599672583 /board/plankton
parenta94a5561dc2a959e3cc586f0c5ca63f9de0a810a (diff)
downloadchrome-ec-34fe8658abe4e6b63b3d1b5e727ba8c792110431.tar.gz
pd: refactor pd policy layer request voltage functions
Remove common code across all PD policy layers to select the requested voltage and build a Request Data Object (RDO). BUG=none BRANCH=samus TEST=Load onto samus and connect zinger. Make sure we request the right voltage (first 5V, then after initial contract is made, 20V). Make sure input current limit is set appropriately by checking limit on EC console using charger command. Change-Id: Ic6bda5e23b2d7b7d710ffdf085e7fbc1b0c3add9 Signed-off-by: Alec Berg <alecaberg@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/233673 Reviewed-by: Vincent Palatin <vpalatin@chromium.org> Commit-Queue: Shawn Nematbakhsh <shawnn@chromium.org> Tested-by: Shawn Nematbakhsh <shawnn@chromium.org>
Diffstat (limited to 'board/plankton')
-rw-r--r--board/plankton/usb_pd_config.h6
-rw-r--r--board/plankton/usb_pd_policy.c53
2 files changed, 6 insertions, 53 deletions
diff --git a/board/plankton/usb_pd_config.h b/board/plankton/usb_pd_config.h
index 08f6e00452..d3eb0429b7 100644
--- a/board/plankton/usb_pd_config.h
+++ b/board/plankton/usb_pd_config.h
@@ -179,4 +179,10 @@ static inline int pd_snk_is_vbus_provided(int port)
/* delay necessary for the voltage transition on the power supply */
#define PD_POWER_SUPPLY_TRANSITION_DELAY 50000 /* us */
+/* Define typical operating power and max power */
+#define PD_OPERATING_POWER_MW 5000
+#define PD_MAX_POWER_MW 60000
+#define PD_MAX_CURRENT_MA 3000
+#define PD_MAX_VOLTAGE_MV 20000
+
#endif /* __USB_PD_CONFIG_H */
diff --git a/board/plankton/usb_pd_policy.c b/board/plankton/usb_pd_policy.c
index 08d2dd4df3..286e69229c 100644
--- a/board/plankton/usb_pd_policy.c
+++ b/board/plankton/usb_pd_policy.c
@@ -21,11 +21,6 @@
/* Acceptable margin between requested VBUS and measured value */
#define MARGIN_MV 400 /* mV */
-/* Define typical operating power and max power */
-#define OPERATING_POWER_MW 5000
-#define MAX_POWER_MW 60000
-#define MAX_CURRENT_MA 3000
-
#define PDO_FIXED_FLAGS (PDO_FIXED_DATA_SWAP | PDO_FIXED_EXTERNAL)
/* Source PDOs */
@@ -50,9 +45,6 @@ const uint32_t pd_snk_pdo[] = {
};
const int pd_snk_pdo_cnt = ARRAY_SIZE(pd_snk_pdo);
-/* Desired voltage requested as a sink (in millivolts) */
-static unsigned select_mv = 5000;
-
void board_set_source_cap(enum board_src_cap cap)
{
pd_src_pdo_idx = cap;
@@ -64,46 +56,6 @@ int pd_get_source_pdo(const uint32_t **src_pdo)
return pd_src_pdo_cnts[pd_src_pdo_idx];
}
-int pd_choose_voltage(int cnt, uint32_t *src_caps, uint32_t *rdo,
- uint32_t *curr_limit, uint32_t *supply_voltage)
-{
- int i;
- int ma;
- int set_mv = select_mv;
- int max;
- uint32_t flags;
-
- /* Default to 5V */
- if (set_mv <= 0)
- set_mv = 5000;
-
- /* Get the selected voltage */
- for (i = cnt; i >= 0; i--) {
- int mv = ((src_caps[i] >> 10) & 0x3FF) * 50;
- int type = src_caps[i] & PDO_TYPE_MASK;
- if ((mv == set_mv) && (type == PDO_TYPE_FIXED))
- break;
- }
- if (i < 0)
- return -EC_ERROR_UNKNOWN;
-
- /* build rdo for desired power */
- ma = 10 * (src_caps[i] & 0x3FF);
- max = MIN(ma, MAX_CURRENT_MA);
- flags = (max * set_mv) < (1000 * OPERATING_POWER_MW) ?
- RDO_CAP_MISMATCH : 0;
- *rdo = RDO_FIXED(i + 1, max, max, 0);
- CPRINTF("Request [%d] %dV %dmA", i, set_mv/1000, max);
- /* Mismatch bit set if less power offered than the operating power */
- if (flags & RDO_CAP_MISMATCH)
- CPRINTF(" Mismatch");
- CPRINTF("\n");
-
- *curr_limit = max;
- *supply_voltage = set_mv;
- return EC_SUCCESS;
-}
-
void pd_set_input_current_limit(int port, uint32_t max_ma,
uint32_t supply_voltage)
{
@@ -111,11 +63,6 @@ void pd_set_input_current_limit(int port, uint32_t max_ma,
return;
}
-void pd_set_max_voltage(unsigned mv)
-{
- select_mv = mv;
-}
-
int pd_check_requested_voltage(uint32_t rdo)
{
int max_ma = rdo & 0x3FF;