aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/include/linux/extcon.h
diff options
context:
space:
mode:
authorGuenter Roeck <groeck@chromium.org>2016-08-15 06:15:35 -0700
committerKishon Vijay Abraham I <kishon@ti.com>2016-09-10 16:48:58 +0530
commit8df0cfe6c6c4a9355989baa8de9f166b2bc51f76 (patch)
treea56afc033cfae5bb5e8aba631d7e26c299f0afb0 /include/linux/extcon.h
parentextcon: Add new EXTCON_CHG_WPT for Wireless Power Transfer device (diff)
downloadwireguard-linux-8df0cfe6c6c4a9355989baa8de9f166b2bc51f76.tar.xz
wireguard-linux-8df0cfe6c6c4a9355989baa8de9f166b2bc51f76.zip
extcon: Introduce EXTCON_PROP_USB_SS property for SuperSpeed mode
EXTCON_PROP_USB_SS (SuperSpeed)[1] is necessary to distinguish between USB/USB2 and USB3 connections on USB Type-C cables. [1] https://en.wikipedia.org/wiki/USB#Overview Cc: Chris Zhong <zyw@rock-chips.com> Signed-off-by: Guenter Roeck <groeck@chromium.org> Signed-off-by: Chanwoo Choi <cw00.choi@samsung.com>
Diffstat (limited to 'include/linux/extcon.h')
-rw-r--r--include/linux/extcon.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/include/linux/extcon.h b/include/linux/extcon.h
index 461abee969b7..b34d1ae9011f 100644
--- a/include/linux/extcon.h
+++ b/include/linux/extcon.h
@@ -109,12 +109,18 @@
* @type: integer (intval)
* @value: 0 (normal) or 1 (flip)
* @default: 0 (normal)
+ * - EXTCON_PROP_USB_SS (SuperSpeed)
+ * @type: integer (intval)
+ * @value: 0 (USB/USB2) or 1 (USB3)
+ * @default: 0 (USB/USB2)
+ *
*/
#define EXTCON_PROP_USB_VBUS 0
#define EXTCON_PROP_USB_TYPEC_POLARITY 1
+#define EXTCON_PROP_USB_SS 2
#define EXTCON_PROP_USB_MIN 0
-#define EXTCON_PROP_USB_MAX 1
+#define EXTCON_PROP_USB_MAX 2
#define EXTCON_PROP_USB_CNT (EXTCON_PROP_USB_MAX - EXTCON_PROP_USB_MIN + 1)
/* Properties of EXTCON_TYPE_CHG. */