Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 44dd8a98 authored by Baolin Wang's avatar Baolin Wang Committed by Felipe Balbi
Browse files

include: uapi: usb: Introduce USB charger type and state definition



Introducing USB charger type and state definition can help
to support USB charging which will be added in USB phy core.

Signed-off-by: default avatarBaolin Wang <baolin.wang@linaro.org>
Signed-off-by: default avatarFelipe Balbi <felipe.balbi@linux.intel.com>
parent cdff9f8e
Loading
Loading
Loading
Loading
+31 −0
Original line number Diff line number Diff line
/*
 * This file defines the USB charger type and state that are needed for
 * USB device APIs.
 */

#ifndef _UAPI__LINUX_USB_CHARGER_H
#define _UAPI__LINUX_USB_CHARGER_H

/*
 * USB charger type:
 * SDP (Standard Downstream Port)
 * DCP (Dedicated Charging Port)
 * CDP (Charging Downstream Port)
 * ACA (Accessory Charger Adapters)
 */
enum usb_charger_type {
	UNKNOWN_TYPE,
	SDP_TYPE,
	DCP_TYPE,
	CDP_TYPE,
	ACA_TYPE,
};

/* USB charger state */
enum usb_charger_state {
	USB_CHARGER_DEFAULT,
	USB_CHARGER_PRESENT,
	USB_CHARGER_ABSENT,
};

#endif /* _UAPI__LINUX_USB_CHARGER_H */