summaryrefslogtreecommitdiff
path: root/board/samus_pd/board.c
diff options
context:
space:
mode:
authorAlec Berg <alecaberg@chromium.org>2015-02-01 15:48:48 -0800
committerChromeOS Commit Bot <chromeos-commit-bot@chromium.org>2015-02-03 08:21:36 +0000
commitfd9dd63e5c9cb76692501280dcb09a31f3154b12 (patch)
treec64234a6d43b0d6c47b641eb8eb0c551dff49ef6 /board/samus_pd/board.c
parent0cfc6a087f103dfa1a03d5e6671844ddd4ac8c14 (diff)
downloadchrome-ec-stabilize-6752.B.tar.gz
samus: automatically recover from charge circuit failuresstabilize-6752.B
Occasionally the charge circuit on samus gets wedged and will not charge. This change detects when the charge circuit has failed and automatically recovers from it. It uses the BQ PROCHOT warning to detect the failure by setting PROCHOT to trigger when the BQ thinks input current is higher than the input current limit. When the failure is detected, the EC disables charging and tells PD MCU to disable CHARGE_EN, then a couple seconds later, it re-enables charging. This CL also adds more communication between EC and PD for the EC to be able to set the charge state for the PD. Valid charge states are: No charging allowed, 5V charging only, and max charging. The EC uses this as such: - When the EC gets AC present interrupt, it sets off a deferred function to change charge state to max charging after some delay to give time for the charge circuit to settle down. - When the EC gets AC disconnect interrupt, it disables charging briefly, enables learn mode, and then sets 5V charging allowed. This allows for the same starting conditions in the charge circuit for every AC attach. - When the EC detects a wedged charge circuit, it disables charging and waits a few seconds before re-enabling 5V only charging. Additionally, this change moves the charging cutoff in S3/S5/G3 when the battery is full to the EC. With the added control for the EC to set the PD charging state, it is more convenient for the EC to manage cutting off charging when battery is full. BUG=chrome-os-partner:36081 BRANCH=samus TEST=test the basics: - connect/disconnect zinger a bunch of times - connect and disconnect two zingers in different order - connect two zingers and charge override between the two test the automatic charge wedge recover: - wedge the charge circuit by setting charger voltage under battery voltage: "charger voltage 7000" - wait a few seconds for the system to recover and check it is charging with "battery" command test full battery charge cutoff: - added console command to change battery soc in board/samus/extpower.c: static int cmd_battfake(int argc, char **argv) { char *e; battery_soc = strtoi(argv[1], &e, 10); batt_soc_change(); return EC_SUCCESS; } DECLARE_CONSOLE_COMMAND(battfake, cmd_battfake, "", "", NULL); - in S0, tested "battfake 100" does not disable charging. - in G3, tested "battfake 100" disables charging and "battfake 99" re-enables charging. - set "battfake 100" and tested transitioning to S0 enables charging and transitioning to S5 disables charging. - attached two chargers and used charge override to select active port. then toggled "battfake 100" to "battfake 99" back and forth and verified charge override port is still the same. test third-party 12V charger: - plug in a bunch of times and make sure we stay at 5V for 500ms and then transition to 12V test with no battery: - tested five different units with no battery and just zinger. 3/5 boot, while the other 2 don't. But, the 2 that don't boot without battery also can't boot w/o battery when this CL is reverted, so I don't think this change is causing the problem, I think there is an electrical limitation. test with EVT zinger: - EVT zingers (P2 - C2) negotiate very quickly after connection, which can cause INA problems w/o this CL. Tested an EVT zinger with samus and did a bunch of connections and disconnections and verified that we always wait at 5V for 500ms and that we don't wedge the INA circuit on connect. test backwards compatibility: - test new PD with old EC and make sure we can charge with zinger. (note that if the charge circuit wedges, we won't be able to unwedge it). - test old PD with new EC and make sure we can charge with zinger. Change-Id: I7703b7a2ab1209d7f559b265b03517e79c74b16a Signed-off-by: Alec Berg <alecaberg@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/245253 Reviewed-by: Duncan Laurie <dlaurie@chromium.org>
Diffstat (limited to 'board/samus_pd/board.c')
-rw-r--r--board/samus_pd/board.c167
1 files changed, 87 insertions, 80 deletions
diff --git a/board/samus_pd/board.c b/board/samus_pd/board.c
index d89527dfc2..3fd3f0e219 100644
--- a/board/samus_pd/board.c
+++ b/board/samus_pd/board.c
@@ -37,11 +37,9 @@ static enum power_state ps;
/* Battery state of charge */
static int batt_soc;
-static int fake_state_of_charge = -1; /* use real soc by default */
-/* Last charge port override when charging turned off due to full battery */
-static int chg_override_port = OVERRIDE_OFF;
-static int chg_is_cutoff;
+/* Default to 5V charging allowed for dead battery case */
+enum pd_charge_state charge_state = PD_CHARGE_5V;
/* PD MCU status and host event status for host command */
static struct ec_response_pd_status pd_status;
@@ -266,31 +264,6 @@ void usb1_evt(enum gpio_signal signal)
wake_usb_charger_task(1);
}
-/* When battery is full, cutoff charging by disabling AC input current */
-static void check_charging_cutoff(void)
-{
- int port;
-
- /* Only check if charging needs to be turned off when not in S0 */
- if (ps == POWER_S0)
- return;
-
- port = charge_manager_get_active_charge_port();
-
- /*
- * If battery is full disable charging, if battery is not full, restore
- * charge port.
- */
- if (!chg_is_cutoff && port != CHARGE_PORT_NONE && batt_soc == 100) {
- charge_manager_set_override(OVERRIDE_DONT_CHARGE);
- chg_is_cutoff = 1;
- } else if (chg_is_cutoff && batt_soc < 100) {
- charge_manager_set_override(chg_override_port);
- chg_is_cutoff = 0;
- }
-}
-DECLARE_HOOK(HOOK_CHIPSET_SUSPEND, check_charging_cutoff, HOOK_PRIO_DEFAULT);
-
static void chipset_s5_to_s3(void)
{
ps = POWER_S3;
@@ -301,9 +274,6 @@ static void chipset_s3_to_s0(void)
{
/* Disable deep sleep and restore charge override port */
disable_sleep(SLEEP_MASK_AP_RUN);
- charge_manager_set_override(chg_override_port);
- chg_is_cutoff = 0;
-
ps = POWER_S0;
hook_notify(HOOK_CHIPSET_RESUME);
}
@@ -318,8 +288,6 @@ static void chipset_s0_to_s3(void)
{
/* Enable deep sleep and store charge override port */
enable_sleep(SLEEP_MASK_AP_RUN);
- chg_override_port = charge_manager_get_override();
-
ps = POWER_S3;
hook_notify(HOOK_CHIPSET_SUSPEND);
}
@@ -438,6 +406,9 @@ static void board_init(void)
gpio_enable_interrupt(GPIO_PCH_SLP_S3_L);
gpio_enable_interrupt(GPIO_PCH_SLP_S5_L);
+ /* Initialize active charge port to none */
+ pd_status.active_charge_port = CHARGE_PORT_NONE;
+
/*
* Do not enable PD communication in RO as a security measure.
* We don't want to allow communication to outside world until
@@ -596,7 +567,6 @@ void board_flip_usb_mux(int port)
void board_update_battery_soc(int soc)
{
batt_soc = soc;
- check_charging_cutoff();
}
int board_get_battery_soc(void)
@@ -643,26 +613,42 @@ int board_set_active_charge_port(int charge_port)
return EC_ERROR_INVAL;
}
- pd_status.active_charge_port = charge_port;
- gpio_set_level(GPIO_USB_C0_CHARGE_EN_L, !(charge_port == 0));
- gpio_set_level(GPIO_USB_C1_CHARGE_EN_L, !(charge_port == 1));
+ CPRINTS("New chg p%d", charge_port);
/*
- * If new charge port when charge is cutoff, then user must have
- * plugged in a new dedicated charger. This resets the charge
- * override port and clears the charge cutoff flag.
+ * If charging and the active charge port is changed, then disable
+ * charging to guarantee charge circuit starts up cleanly.
*/
- if (chg_is_cutoff && is_real_port) {
- chg_override_port = OVERRIDE_OFF;
- chg_is_cutoff = 0;
+ if (pd_status.active_charge_port != CHARGE_PORT_NONE &&
+ (charge_port == CHARGE_PORT_NONE ||
+ charge_port != pd_status.active_charge_port)) {
+ gpio_set_level(GPIO_USB_C0_CHARGE_EN_L, 1);
+ gpio_set_level(GPIO_USB_C1_CHARGE_EN_L, 1);
+ charge_state = PD_CHARGE_NONE;
+ pd_status.active_charge_port = charge_port;
+ CPRINTS("Chg: None\n");
+ return EC_SUCCESS;
+ }
+
+ /* Save active charge port and enable charging if allowed */
+ pd_status.active_charge_port = charge_port;
+ if (charge_state != PD_CHARGE_NONE) {
+ gpio_set_level(GPIO_USB_C0_CHARGE_EN_L, !(charge_port == 0));
+ gpio_set_level(GPIO_USB_C1_CHARGE_EN_L, !(charge_port == 1));
}
- check_charging_cutoff();
- CPRINTS("New chg p%d", charge_port);
return EC_SUCCESS;
}
/**
+ * Return if max voltage charging is allowed.
+ */
+int pd_is_max_request_allowed(void)
+{
+ return charge_state == PD_CHARGE_MAX;
+}
+
+/**
* Set the charge limit based upon desired maximum.
*
* @param charge_ma Desired charge limit (mA).
@@ -732,36 +718,6 @@ DECLARE_CONSOLE_COMMAND(pdevent, command_pd_host_event,
"Send PD host event",
NULL);
-static int command_battfake(int argc, char **argv)
-{
- char *e;
- int v;
-
- if (argc == 2) {
- v = strtoi(argv[1], &e, 0);
- if (*e || v < -1 || v > 100)
- return EC_ERROR_PARAM1;
-
- fake_state_of_charge = v;
- }
-
- if (fake_state_of_charge < 0) {
- ccprintf("Using real batt level\n");
- } else {
- ccprintf("Using fake batt level %d%%\n",
- fake_state_of_charge);
- }
-
- /* Send EC int to get batt info from EC */
- pd_send_ec_int();
-
- return EC_SUCCESS;
-}
-DECLARE_CONSOLE_COMMAND(battfake, command_battfake,
- "percent (-1 = use real level)",
- "Set fake battery level",
- NULL);
-
/****************************************************************************/
/* Host commands */
static int ec_status_host_cmd(struct host_cmd_handler_args *args)
@@ -769,9 +725,60 @@ static int ec_status_host_cmd(struct host_cmd_handler_args *args)
const struct ec_params_pd_status *p = args->params;
struct ec_response_pd_status *r = args->response;
- /* if not using fake soc, then update battery soc */
- board_update_battery_soc(fake_state_of_charge < 0 ?
- p->batt_soc : fake_state_of_charge);
+ /* update battery soc */
+ board_update_battery_soc(p->batt_soc);
+
+ if (args->version == 1) {
+ if (p->charge_state != charge_state) {
+ switch (p->charge_state) {
+ case PD_CHARGE_NONE:
+ /*
+ * No current allowed in, set new power request
+ * so that PD negotiates down to vSafe5V.
+ */
+ charge_state = p->charge_state;
+ gpio_set_level(GPIO_USB_C0_CHARGE_EN_L, 1);
+ gpio_set_level(GPIO_USB_C1_CHARGE_EN_L, 1);
+ pd_set_new_power_request(
+ pd_status.active_charge_port);
+ CPRINTS("Chg: None");
+ break;
+ case PD_CHARGE_5V:
+ /* Allow current on the active charge port */
+ charge_state = p->charge_state;
+ gpio_set_level(GPIO_USB_C0_CHARGE_EN_L,
+ !(pd_status.active_charge_port == 0));
+ gpio_set_level(GPIO_USB_C1_CHARGE_EN_L,
+ !(pd_status.active_charge_port == 1));
+ CPRINTS("Chg: 5V");
+ break;
+ case PD_CHARGE_MAX:
+ /*
+ * Allow negotiation above vSafe5V. Should only
+ * ever get this command when 5V charging is
+ * already allowed.
+ */
+ if (charge_state == PD_CHARGE_5V) {
+ charge_state = p->charge_state;
+ pd_set_new_power_request(
+ pd_status.active_charge_port);
+ CPRINTS("Chg: Max");
+ }
+ break;
+ default:
+ break;
+ }
+ }
+ } else {
+ /*
+ * If the EC is using this command version, then it won't ever
+ * set charging allowed, so we should just assume charging at
+ * the max is allowed.
+ */
+ charge_state = PD_CHARGE_MAX;
+ pd_set_new_power_request(pd_status.active_charge_port);
+ CPRINTS("Chg: Max");
+ }
*r = pd_status;
@@ -783,7 +790,7 @@ static int ec_status_host_cmd(struct host_cmd_handler_args *args)
return EC_RES_SUCCESS;
}
DECLARE_HOST_COMMAND(EC_CMD_PD_EXCHANGE_STATUS, ec_status_host_cmd,
- EC_VER_MASK(0));
+ EC_VER_MASK(0) | EC_VER_MASK(1));
static int host_event_status_host_cmd(struct host_cmd_handler_args *args)
{