summaryrefslogtreecommitdiff
path: root/include/usb_charge.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/usb_charge.h')
-rw-r--r--include/usb_charge.h15
1 files changed, 12 insertions, 3 deletions
diff --git a/include/usb_charge.h b/include/usb_charge.h
index e7de9a0b3f..a974f7511e 100644
--- a/include/usb_charge.h
+++ b/include/usb_charge.h
@@ -30,14 +30,23 @@ enum usb_charge_mode {
USB_CHARGE_MODE_COUNT
};
+enum usb_suspend_charge {
+ /* Enable charging in suspend */
+ USB_ALLOW_SUSPEND_CHARGE,
+ /* Disable charging in suspend */
+ USB_DISALLOW_SUSPEND_CHARGE
+};
+
/**
* Set USB charge mode for the port.
*
- * @param usb_port_id Port to set.
- * @param mode New mode for port.
+ * @param usb_port_id Port to set.
+ * @param mode New mode for port.
+ * @param inhibit_charge Inhibit charging during system suspend.
* @return EC_SUCCESS, or non-zero if error.
*/
-int usb_charge_set_mode(int usb_port_id, enum usb_charge_mode mode);
+int usb_charge_set_mode(int usb_port_id, enum usb_charge_mode mode,
+ enum usb_suspend_charge inhibit_charge);
#ifdef HAS_TASK_USB_CHG_P0
#define USB_CHG_EVENT_BC12 TASK_EVENT_CUSTOM(1)