mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2026-01-04 14:01:54 +00:00
"Auto" mode is observed to cause problems and thus is removed. This leaves only three modes: - Standard downstream port. USB 2.0 mode. 500mA. - Charging downstream port. BC1.2. 1500mA. - Dedicated charging port. BC1.2. 1500mA. BUG=chrome-os-partner:11550 TEST=Check all modes work as expected. Check no discharge between the first two modes. BRANCH=link CQ-DEPEND=31639 Change-Id: I41102a8bc3ac34ff9a1bf4e47c89cdb93a2c4eb5 Signed-off-by: Vic Yang <victoryang@chromium.org> Reviewed-on: https://gerrit.chromium.org/gerrit/31616
29 lines
763 B
C
29 lines
763 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 Standard Downstream Port, USB 2.0 mode. */
|
|
USB_CHARGE_MODE_SDP2,
|
|
/* Set USB port to Charging Downstream Port, BC 1.2. */
|
|
USB_CHARGE_MODE_CDP,
|
|
/* Set USB port to Dedicated Charging Port, BC 1.2. */
|
|
USB_CHARGE_MODE_DCP_SHORT,
|
|
|
|
USB_CHARGE_MODE_COUNT
|
|
};
|
|
|
|
int usb_charge_set_mode(int usb_port_id, enum usb_charge_mode);
|
|
|
|
#endif /* __CROS_EC_USB_CHARGE_H */
|