mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2026-01-03 21:49:32 +00:00
Previously we supported using a single pi3usb9281 chip, or using two chips on the same i2c bus behind a mux. Now that we need to support a third configuration of multiple chips on different busses, it makes sense to be able to configure the configuration freely at the board level. BUG=chrome-os-partner:40920 TEST=Manual on samus_pd. Plug USB charger, verify detection is correct on both charge ports. BRANCH=None Change-Id: I120dcb1c3ceb6f013b92407effcd8cb66e7ffcce Signed-off-by: Shawn Nematbakhsh <shawnn@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/276511 Reviewed-by: Alec Berg <alecaberg@chromium.org>
54 lines
1.4 KiB
C
54 lines
1.4 KiB
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 "common.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,
|
|
/* Enable USB port (for dumb ports). */
|
|
USB_CHARGE_MODE_ENABLED,
|
|
|
|
USB_CHARGE_MODE_COUNT
|
|
};
|
|
|
|
/**
|
|
* Set USB charge mode for the port.
|
|
*
|
|
* @param usb_port_id Port to set.
|
|
* @param mode New mode for port.
|
|
* @return EC_SUCCESS, or non-zero if error.
|
|
*/
|
|
int usb_charge_set_mode(int usb_port_id, enum usb_charge_mode mode);
|
|
|
|
/**
|
|
* Return a bitmask of which USB ports are enabled.
|
|
*
|
|
* If bit (1 << i) is set, port <i> is enabled. If it is clear, port <i> is
|
|
* in USB_CHARGE_MODE_DISABLED.
|
|
*/
|
|
int usb_charge_ports_enabled(void);
|
|
|
|
/**
|
|
* Returns true if the passed port is a power source.
|
|
*
|
|
* @param port Port number.
|
|
* @return True if port is sourcing vbus.
|
|
*/
|
|
int usb_charger_port_is_sourcing_vbus(int port);
|
|
|
|
#endif /* __CROS_EC_USB_CHARGE_H */
|