blob: 2bdf643d85937c404e81d3c5ff430c9553b91637 [file] [log] [blame]
Thomas Gleixner9c92ab62019-05-29 07:17:56 -07001/* SPDX-License-Identifier: GPL-2.0-only */
MyungJoo Hamde55d872012-04-20 14:16:22 +09002/*
Chanwoo Choi6ab6094f2017-04-03 19:45:48 +09003 * External Connector (extcon) framework
Chanwoo Choi176aa362017-09-21 12:11:24 +09004 * - linux/include/linux/extcon.h for extcon consumer device driver.
MyungJoo Hamde55d872012-04-20 14:16:22 +09005 *
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +09006 * Copyright (C) 2015 Samsung Electronics
7 * Author: Chanwoo Choi <cw00.choi@samsung.com>
8 *
MyungJoo Hamde55d872012-04-20 14:16:22 +09009 * Copyright (C) 2012 Samsung Electronics
10 * Author: Donggeun Kim <dg77.kim@samsung.com>
11 * Author: MyungJoo Ham <myungjoo.ham@samsung.com>
12 *
13 * based on switch class driver
14 * Copyright (C) 2008 Google, Inc.
15 * Author: Mike Lockwood <lockwood@android.com>
Chanwoo Choi6ab6094f2017-04-03 19:45:48 +090016 */
MyungJoo Hamde55d872012-04-20 14:16:22 +090017
18#ifndef __LINUX_EXTCON_H__
19#define __LINUX_EXTCON_H__
20
Chanwoo Choid8517182012-11-08 18:39:41 +090021#include <linux/device.h>
MyungJoo Ham806d9dd2012-04-20 14:16:25 +090022
Chanwoo Choi73b6ecd2015-06-12 11:10:06 +090023/*
Chanwoo Choi55e4e2f2016-07-11 16:34:52 +090024 * Define the type of supported external connectors
25 */
26#define EXTCON_TYPE_USB BIT(0) /* USB connector */
27#define EXTCON_TYPE_CHG BIT(1) /* Charger connector */
28#define EXTCON_TYPE_JACK BIT(2) /* Jack connector */
29#define EXTCON_TYPE_DISP BIT(3) /* Display connector */
30#define EXTCON_TYPE_MISC BIT(4) /* Miscellaneous connector */
31
32/*
Chanwoo Choi73b6ecd2015-06-12 11:10:06 +090033 * Define the unique id of supported external connectors
34 */
Chanwoo Choi11eecf92015-10-03 14:15:13 +090035#define EXTCON_NONE 0
MyungJoo Ham806d9dd2012-04-20 14:16:25 +090036
Chanwoo Choi11eecf92015-10-03 14:15:13 +090037/* USB external connector */
38#define EXTCON_USB 1
39#define EXTCON_USB_HOST 2
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +090040
Baolin Wangdb622862016-12-21 14:10:47 +080041/*
42 * Charging external connector
43 *
44 * When one SDP charger connector was reported, we should also report
45 * the USB connector, which means EXTCON_CHG_USB_SDP should always
46 * appear together with EXTCON_USB. The same as ACA charger connector,
47 * EXTCON_CHG_USB_ACA would normally appear with EXTCON_USB_HOST.
Baolin Wang62a37442017-01-03 13:50:54 +080048 *
49 * The EXTCON_CHG_USB_SLOW connector can provide at least 500mA of
50 * current at 5V. The EXTCON_CHG_USB_FAST connector can provide at
51 * least 1A of current at 5V.
Baolin Wangdb622862016-12-21 14:10:47 +080052 */
Chanwoo Choi11eecf92015-10-03 14:15:13 +090053#define EXTCON_CHG_USB_SDP 5 /* Standard Downstream Port */
54#define EXTCON_CHG_USB_DCP 6 /* Dedicated Charging Port */
55#define EXTCON_CHG_USB_CDP 7 /* Charging Downstream Port */
56#define EXTCON_CHG_USB_ACA 8 /* Accessory Charger Adapter */
57#define EXTCON_CHG_USB_FAST 9
58#define EXTCON_CHG_USB_SLOW 10
Chanwoo Choi7fe95fb2016-08-05 18:15:46 +090059#define EXTCON_CHG_WPT 11 /* Wireless Power Transfer */
Chanwoo Choi3c5f0e02017-01-02 13:03:03 +090060#define EXTCON_CHG_USB_PD 12 /* USB Power Delivery */
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +090061
Chanwoo Choi11eecf92015-10-03 14:15:13 +090062/* Jack external connector */
63#define EXTCON_JACK_MICROPHONE 20
64#define EXTCON_JACK_HEADPHONE 21
65#define EXTCON_JACK_LINE_IN 22
66#define EXTCON_JACK_LINE_OUT 23
67#define EXTCON_JACK_VIDEO_IN 24
68#define EXTCON_JACK_VIDEO_OUT 25
69#define EXTCON_JACK_SPDIF_IN 26 /* Sony Philips Digital InterFace */
70#define EXTCON_JACK_SPDIF_OUT 27
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +090071
Chanwoo Choi11eecf92015-10-03 14:15:13 +090072/* Display external connector */
73#define EXTCON_DISP_HDMI 40 /* High-Definition Multimedia Interface */
74#define EXTCON_DISP_MHL 41 /* Mobile High-Definition Link */
75#define EXTCON_DISP_DVI 42 /* Digital Visual Interface */
76#define EXTCON_DISP_VGA 43 /* Video Graphics Array */
Chris Zhong21641882016-07-22 01:13:02 +090077#define EXTCON_DISP_DP 44 /* Display Port */
Chanwoo Choi9c0595d2016-08-05 17:49:23 +090078#define EXTCON_DISP_HMD 45 /* Head-Mounted Display */
Chanwoo Choi11eecf92015-10-03 14:15:13 +090079
80/* Miscellaneous external connector */
81#define EXTCON_DOCK 60
82#define EXTCON_JIG 61
83#define EXTCON_MECHANICAL 62
84
85#define EXTCON_NUM 63
MyungJoo Ham806d9dd2012-04-20 14:16:25 +090086
Chanwoo Choi792e7e9e2016-07-11 19:30:43 +090087/*
Chanwoo Choi6ab6094f2017-04-03 19:45:48 +090088 * Define the properties of supported external connectors.
Chanwoo Choi792e7e9e2016-07-11 19:30:43 +090089 *
90 * When adding the new extcon property, they *must* have
91 * the type/value/default information. Also, you *have to*
92 * modify the EXTCON_PROP_[type]_START/END definitions
93 * which mean the range of the supported properties
94 * for each extcon type.
95 *
96 * The naming style of property
97 * : EXTCON_PROP_[type]_[property name]
98 *
99 * EXTCON_PROP_USB_[property name] : USB property
100 * EXTCON_PROP_CHG_[property name] : Charger property
101 * EXTCON_PROP_JACK_[property name] : Jack property
102 * EXTCON_PROP_DISP_[property name] : Display property
103 */
104
105/*
106 * Properties of EXTCON_TYPE_USB.
107 *
108 * - EXTCON_PROP_USB_VBUS
109 * @type: integer (intval)
110 * @value: 0 (low) or 1 (high)
111 * @default: 0 (low)
Chris Zhong21641882016-07-22 01:13:02 +0900112 * - EXTCON_PROP_USB_TYPEC_POLARITY
113 * @type: integer (intval)
114 * @value: 0 (normal) or 1 (flip)
115 * @default: 0 (normal)
Guenter Roeck8457a1b2016-08-15 06:15:35 -0700116 * - EXTCON_PROP_USB_SS (SuperSpeed)
117 * @type: integer (intval)
118 * @value: 0 (USB/USB2) or 1 (USB3)
119 * @default: 0 (USB/USB2)
120 *
Chanwoo Choi792e7e9e2016-07-11 19:30:43 +0900121 */
122#define EXTCON_PROP_USB_VBUS 0
Chris Zhong21641882016-07-22 01:13:02 +0900123#define EXTCON_PROP_USB_TYPEC_POLARITY 1
Guenter Roeck8457a1b2016-08-15 06:15:35 -0700124#define EXTCON_PROP_USB_SS 2
Chanwoo Choi792e7e9e2016-07-11 19:30:43 +0900125
126#define EXTCON_PROP_USB_MIN 0
Guenter Roeck8457a1b2016-08-15 06:15:35 -0700127#define EXTCON_PROP_USB_MAX 2
Chanwoo Choi792e7e9e2016-07-11 19:30:43 +0900128#define EXTCON_PROP_USB_CNT (EXTCON_PROP_USB_MAX - EXTCON_PROP_USB_MIN + 1)
129
130/* Properties of EXTCON_TYPE_CHG. */
131#define EXTCON_PROP_CHG_MIN 50
132#define EXTCON_PROP_CHG_MAX 50
133#define EXTCON_PROP_CHG_CNT (EXTCON_PROP_CHG_MAX - EXTCON_PROP_CHG_MIN + 1)
134
135/* Properties of EXTCON_TYPE_JACK. */
136#define EXTCON_PROP_JACK_MIN 100
137#define EXTCON_PROP_JACK_MAX 100
138#define EXTCON_PROP_JACK_CNT (EXTCON_PROP_JACK_MAX - EXTCON_PROP_JACK_MIN + 1)
139
Chris Zhongc7914e82016-09-09 19:15:44 -0700140/*
141 * Properties of EXTCON_TYPE_DISP.
142 *
143 * - EXTCON_PROP_DISP_HPD (Hot Plug Detect)
144 * @type: integer (intval)
145 * @value: 0 (no hpd) or 1 (hpd)
146 * @default: 0 (no hpd)
147 *
148 */
149#define EXTCON_PROP_DISP_HPD 150
150
Chanwoo Choi792e7e9e2016-07-11 19:30:43 +0900151/* Properties of EXTCON_TYPE_DISP. */
152#define EXTCON_PROP_DISP_MIN 150
Chris Zhongc7914e82016-09-09 19:15:44 -0700153#define EXTCON_PROP_DISP_MAX 151
Chanwoo Choi792e7e9e2016-07-11 19:30:43 +0900154#define EXTCON_PROP_DISP_CNT (EXTCON_PROP_DISP_MAX - EXTCON_PROP_DISP_MIN + 1)
155
156/*
157 * Define the type of property's value.
158 *
159 * Define the property's value as union type. Because each property
160 * would need the different data type to store it.
161 */
162union extcon_property_value {
163 int intval; /* type : integer (intval) */
164};
165
Chanwoo Choie6cf0462016-12-26 20:37:38 +0900166struct extcon_dev;
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900167
MyungJoo Hamde55d872012-04-20 14:16:22 +0900168#if IS_ENABLED(CONFIG_EXTCON)
Donggeun Kim74c5d092012-04-20 14:16:24 +0900169/*
Chanwoo Choi176aa362017-09-21 12:11:24 +0900170 * Following APIs get the connected state of each external connector.
Chanwoo Choi6ab6094f2017-04-03 19:45:48 +0900171 * The 'id' argument indicates the defined external connector.
172 */
173extern int extcon_get_state(struct extcon_dev *edev, unsigned int id);
Chanwoo Choi6ab6094f2017-04-03 19:45:48 +0900174
175/*
Chanwoo Choi176aa362017-09-21 12:11:24 +0900176 * Following APIs get the property of each external connector.
Chanwoo Choi6ab6094f2017-04-03 19:45:48 +0900177 * The 'id' argument indicates the defined external connector
178 * and the 'prop' indicates the extcon property.
179 *
Chanwoo Choi176aa362017-09-21 12:11:24 +0900180 * And extcon_get_property_capability() get the capability of the property
181 * for each external connector. They are used to get the capability of the
Chanwoo Choi6ab6094f2017-04-03 19:45:48 +0900182 * property of each external connector based on the id and property.
Chanwoo Choi792e7e9e2016-07-11 19:30:43 +0900183 */
184extern int extcon_get_property(struct extcon_dev *edev, unsigned int id,
185 unsigned int prop,
186 union extcon_property_value *prop_val);
Chanwoo Choi7f2a0a12016-07-25 21:15:19 +0900187extern int extcon_get_property_capability(struct extcon_dev *edev,
188 unsigned int id, unsigned int prop);
Chanwoo Choi7f2a0a12016-07-25 21:15:19 +0900189
190/*
Chanwoo Choi6ab6094f2017-04-03 19:45:48 +0900191 * Following APIs register the notifier block in order to detect
192 * the change of both state and property value for each external connector.
193 *
Chanwoo Choi815429b32017-03-29 19:30:17 +0900194 * extcon_register_notifier(*edev, id, *nb) : Register a notifier block
195 * for specific external connector of the extcon.
196 * extcon_register_notifier_all(*edev, *nb) : Register a notifier block
197 * for all supported external connectors of the extcon.
Donggeun Kim74c5d092012-04-20 14:16:24 +0900198 */
Chanwoo Choi73b6ecd2015-06-12 11:10:06 +0900199extern int extcon_register_notifier(struct extcon_dev *edev, unsigned int id,
Chanwoo Choiab8a8fb2017-07-14 01:00:55 +0900200 struct notifier_block *nb);
Chanwoo Choi73b6ecd2015-06-12 11:10:06 +0900201extern int extcon_unregister_notifier(struct extcon_dev *edev, unsigned int id,
Chanwoo Choiab8a8fb2017-07-14 01:00:55 +0900202 struct notifier_block *nb);
Chanwoo Choi58f38652016-06-27 20:03:39 +0900203extern int devm_extcon_register_notifier(struct device *dev,
204 struct extcon_dev *edev, unsigned int id,
205 struct notifier_block *nb);
206extern void devm_extcon_unregister_notifier(struct device *dev,
207 struct extcon_dev *edev, unsigned int id,
208 struct notifier_block *nb);
Chanwoo Choi1ad94ff2014-03-18 19:55:46 +0900209
Chanwoo Choi815429b32017-03-29 19:30:17 +0900210extern int extcon_register_notifier_all(struct extcon_dev *edev,
211 struct notifier_block *nb);
212extern int extcon_unregister_notifier_all(struct extcon_dev *edev,
213 struct notifier_block *nb);
214extern int devm_extcon_register_notifier_all(struct device *dev,
215 struct extcon_dev *edev,
216 struct notifier_block *nb);
217extern void devm_extcon_unregister_notifier_all(struct device *dev,
218 struct extcon_dev *edev,
219 struct notifier_block *nb);
220
Chanwoo Choi1ad94ff2014-03-18 19:55:46 +0900221/*
Chanwoo Choi6ab6094f2017-04-03 19:45:48 +0900222 * Following APIs get the extcon_dev from devicetree or by through extcon name.
Chanwoo Choi1ad94ff2014-03-18 19:55:46 +0900223 */
Chanwoo Choi6ab6094f2017-04-03 19:45:48 +0900224extern struct extcon_dev *extcon_get_extcon_dev(const char *extcon_name);
Andrzej Hajda370ed7a2018-02-27 13:22:07 +0100225extern struct extcon_dev *extcon_find_edev_by_node(struct device_node *node);
Chanwoo Choib9ec23c2015-04-24 14:48:52 +0900226extern struct extcon_dev *extcon_get_edev_by_phandle(struct device *dev,
227 int index);
Chanwoo Choi707d7552015-04-15 13:57:51 +0900228
Chanwoo Choi6ab6094f2017-04-03 19:45:48 +0900229/* Following API get the name of extcon device. */
Chanwoo Choi707d7552015-04-15 13:57:51 +0900230extern const char *extcon_get_edev_name(struct extcon_dev *edev);
231
MyungJoo Hamde55d872012-04-20 14:16:22 +0900232#else /* CONFIG_EXTCON */
Chanwoo Choi575c2b862016-07-22 13:03:17 +0900233static inline int extcon_get_state(struct extcon_dev *edev, unsigned int id)
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900234{
235 return 0;
236}
237
Chanwoo Choi792e7e9e2016-07-11 19:30:43 +0900238static inline int extcon_get_property(struct extcon_dev *edev, unsigned int id,
Chanwoo Choiab8a8fb2017-07-14 01:00:55 +0900239 unsigned int prop,
240 union extcon_property_value *prop_val)
Chanwoo Choi792e7e9e2016-07-11 19:30:43 +0900241{
242 return 0;
243}
Kishon Vijay Abraham Icb9850d2016-09-15 15:46:11 +0530244
Chanwoo Choi7f2a0a12016-07-25 21:15:19 +0900245static inline int extcon_get_property_capability(struct extcon_dev *edev,
Chanwoo Choiab8a8fb2017-07-14 01:00:55 +0900246 unsigned int id, unsigned int prop)
Chanwoo Choi7f2a0a12016-07-25 21:15:19 +0900247{
248 return 0;
249}
250
Donggeun Kim74c5d092012-04-20 14:16:24 +0900251static inline int extcon_register_notifier(struct extcon_dev *edev,
Chanwoo Choiab8a8fb2017-07-14 01:00:55 +0900252 unsigned int id, struct notifier_block *nb)
Donggeun Kim74c5d092012-04-20 14:16:24 +0900253{
254 return 0;
255}
256
257static inline int extcon_unregister_notifier(struct extcon_dev *edev,
Chanwoo Choiab8a8fb2017-07-14 01:00:55 +0900258 unsigned int id, struct notifier_block *nb)
Donggeun Kim74c5d092012-04-20 14:16:24 +0900259{
260 return 0;
261}
262
Chanwoo Choi58f38652016-06-27 20:03:39 +0900263static inline int devm_extcon_register_notifier(struct device *dev,
264 struct extcon_dev *edev, unsigned int id,
265 struct notifier_block *nb)
266{
267 return -ENOSYS;
268}
269
270static inline void devm_extcon_unregister_notifier(struct device *dev,
271 struct extcon_dev *edev, unsigned int id,
272 struct notifier_block *nb) { }
273
Chanwoo Choi6ab6094f2017-04-03 19:45:48 +0900274static inline struct extcon_dev *extcon_get_extcon_dev(const char *extcon_name)
275{
Chanwoo Choiab8a8fb2017-07-14 01:00:55 +0900276 return ERR_PTR(-ENODEV);
Chanwoo Choi6ab6094f2017-04-03 19:45:48 +0900277}
278
Andrzej Hajda370ed7a2018-02-27 13:22:07 +0100279static inline struct extcon_dev *extcon_find_edev_by_node(struct device_node *node)
280{
281 return ERR_PTR(-ENODEV);
282}
283
Chanwoo Choi1ad94ff2014-03-18 19:55:46 +0900284static inline struct extcon_dev *extcon_get_edev_by_phandle(struct device *dev,
Chanwoo Choiab8a8fb2017-07-14 01:00:55 +0900285 int index)
Chanwoo Choi1ad94ff2014-03-18 19:55:46 +0900286{
287 return ERR_PTR(-ENODEV);
288}
MyungJoo Hamde55d872012-04-20 14:16:22 +0900289#endif /* CONFIG_EXTCON */
Chanwoo Choi830ae442016-05-31 17:32:30 +0900290
291/*
292 * Following structure and API are deprecated. EXTCON remains the function
293 * definition to prevent the build break.
294 */
295struct extcon_specific_cable_nb {
296 struct notifier_block *user_nb;
297 int cable_index;
298 struct extcon_dev *edev;
299 unsigned long previous_value;
300};
301
302static inline int extcon_register_interest(struct extcon_specific_cable_nb *obj,
Chanwoo Choiab8a8fb2017-07-14 01:00:55 +0900303 const char *extcon_name, const char *cable_name,
304 struct notifier_block *nb)
Chanwoo Choi830ae442016-05-31 17:32:30 +0900305{
306 return -EINVAL;
307}
308
Chanwoo Choiab8a8fb2017-07-14 01:00:55 +0900309static inline int extcon_unregister_interest(struct extcon_specific_cable_nb *obj)
Chanwoo Choi830ae442016-05-31 17:32:30 +0900310{
311 return -EINVAL;
312}
MyungJoo Hamde55d872012-04-20 14:16:22 +0900313#endif /* __LINUX_EXTCON_H__ */