mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2025-12-30 18:41:11 +00:00
This is cleaner than having x86_power explicitly know about everything else in the system that cares about power transitions. Signed-off-by: Randall Spangler <rspangler@chromium.org> BUG=none TEST=boot and shutdown system; still works. Mouse powered to system is off in S5. Change-Id: Ib673ca2d9edd5473334e7604e98b99b02b768419
33 lines
936 B
C
33 lines
936 B
C
/* Copyright (c) 2012 The Chromium OS Authors. All rights reserved.
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
|
|
/* USB charging control module for Chrome EC */
|
|
|
|
#ifndef __CROS_EC_USB_CHARGE_H
|
|
#define __CROS_EC_USB_CHARGE_H
|
|
|
|
#include "board.h"
|
|
|
|
enum usb_charge_mode {
|
|
/* Disable USB port. */
|
|
USB_CHARGE_MODE_DISABLED,
|
|
/* Set USB port to be dedicated charging port, auto selecting charging
|
|
* schemes. */
|
|
USB_CHARGE_MODE_CHARGE_AUTO,
|
|
/* Set USB port to be dedicated charging port following USB Battery
|
|
* Charging Specification 1.2. */
|
|
USB_CHARGE_MODE_CHARGE_BC12,
|
|
/* Set USB port to be standard downstream port, with current limit set
|
|
* to 500mA or 1500mA. */
|
|
USB_CHARGE_MODE_DOWNSTREAM_500MA,
|
|
USB_CHARGE_MODE_DOWNSTREAM_1500MA,
|
|
|
|
USB_CHARGE_MODE_COUNT
|
|
};
|
|
|
|
int usb_charge_set_mode(int usb_port_id, enum usb_charge_mode);
|
|
|
|
#endif /* __CROS_EC_USB_CHARGE_H */
|