blob: e223a8c77946d3b46d39b9ce0311a4d7b0e53fbd [file] [log] [blame]
MyungJoo Hamde55d872012-04-20 14:16:22 +09001/*
Chanwoo Choib9ec23c2015-04-24 14:48:52 +09002 * drivers/extcon/extcon.c - External Connector (extcon) framework.
MyungJoo Hamde55d872012-04-20 14:16:22 +09003 *
4 * External connector (extcon) class driver
5 *
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 android/drivers/switch/switch_class.c
14 * Copyright (C) 2008 Google, Inc.
15 * Author: Mike Lockwood <lockwood@android.com>
16 *
17 * This software is licensed under the terms of the GNU General Public
18 * License version 2, as published by the Free Software Foundation, and
19 * may be copied, distributed, and modified under those terms.
20 *
21 * This program is distributed in the hope that it will be useful,
22 * but WITHOUT ANY WARRANTY; without even the implied warranty of
23 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
24 * GNU General Public License for more details.
Chanwoo Choib9ec23c2015-04-24 14:48:52 +090025 */
MyungJoo Hamde55d872012-04-20 14:16:22 +090026
27#include <linux/module.h>
28#include <linux/types.h>
29#include <linux/init.h>
30#include <linux/device.h>
31#include <linux/fs.h>
32#include <linux/err.h>
33#include <linux/extcon.h>
Tomasz Figaf841afb2014-10-16 15:11:44 +020034#include <linux/of.h>
MyungJoo Hamde55d872012-04-20 14:16:22 +090035#include <linux/slab.h>
Mark Brown9baf3222012-08-16 20:03:21 +010036#include <linux/sysfs.h>
MyungJoo Hamde55d872012-04-20 14:16:22 +090037
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +090038#define SUPPORTED_CABLE_MAX 32
39#define CABLE_NAME_MAX 30
40
Chanwoo Choi55e4e2f2016-07-11 16:34:52 +090041struct __extcon_info {
42 unsigned int type;
43 unsigned int id;
44 const char *name;
45
46} extcon_info[] = {
47 [EXTCON_NONE] = {
48 .type = EXTCON_TYPE_MISC,
49 .id = EXTCON_NONE,
50 .name = "NONE",
51 },
Chanwoo Choi73b6ecd2015-06-12 11:10:06 +090052
Chanwoo Choi8e9bc362015-05-19 19:58:49 +090053 /* USB external connector */
Chanwoo Choi55e4e2f2016-07-11 16:34:52 +090054 [EXTCON_USB] = {
55 .type = EXTCON_TYPE_USB,
56 .id = EXTCON_USB,
57 .name = "USB",
58 },
59 [EXTCON_USB_HOST] = {
60 .type = EXTCON_TYPE_USB,
61 .id = EXTCON_USB_HOST,
62 .name = "USB_HOST",
63 },
Chanwoo Choi8e9bc362015-05-19 19:58:49 +090064
Chanwoo Choi11eecf92015-10-03 14:15:13 +090065 /* Charging external connector */
Chanwoo Choi55e4e2f2016-07-11 16:34:52 +090066 [EXTCON_CHG_USB_SDP] = {
67 .type = EXTCON_TYPE_CHG | EXTCON_TYPE_USB,
68 .id = EXTCON_CHG_USB_SDP,
69 .name = "SDP",
70 },
71 [EXTCON_CHG_USB_DCP] = {
72 .type = EXTCON_TYPE_CHG | EXTCON_TYPE_USB,
73 .id = EXTCON_CHG_USB_DCP,
74 .name = "DCP",
75 },
76 [EXTCON_CHG_USB_CDP] = {
77 .type = EXTCON_TYPE_CHG | EXTCON_TYPE_USB,
78 .id = EXTCON_CHG_USB_CDP,
79 .name = "CDP",
80 },
81 [EXTCON_CHG_USB_ACA] = {
82 .type = EXTCON_TYPE_CHG | EXTCON_TYPE_USB,
83 .id = EXTCON_CHG_USB_ACA,
84 .name = "ACA",
85 },
86 [EXTCON_CHG_USB_FAST] = {
87 .type = EXTCON_TYPE_CHG | EXTCON_TYPE_USB,
88 .id = EXTCON_CHG_USB_FAST,
89 .name = "FAST-CHARGER",
90 },
91 [EXTCON_CHG_USB_SLOW] = {
92 .type = EXTCON_TYPE_CHG | EXTCON_TYPE_USB,
93 .id = EXTCON_CHG_USB_SLOW,
94 .name = "SLOW-CHARGER",
95 },
Chanwoo Choi7fe95fb2016-08-05 18:15:46 +090096 [EXTCON_CHG_WPT] = {
97 .type = EXTCON_TYPE_CHG,
98 .id = EXTCON_CHG_WPT,
99 .name = "WPT",
100 },
Chanwoo Choi8e9bc362015-05-19 19:58:49 +0900101
Chanwoo Choi11eecf92015-10-03 14:15:13 +0900102 /* Jack external connector */
Chanwoo Choi55e4e2f2016-07-11 16:34:52 +0900103 [EXTCON_JACK_MICROPHONE] = {
104 .type = EXTCON_TYPE_JACK,
105 .id = EXTCON_JACK_MICROPHONE,
106 .name = "MICROPHONE",
107 },
108 [EXTCON_JACK_HEADPHONE] = {
109 .type = EXTCON_TYPE_JACK,
110 .id = EXTCON_JACK_HEADPHONE,
111 .name = "HEADPHONE",
112 },
113 [EXTCON_JACK_LINE_IN] = {
114 .type = EXTCON_TYPE_JACK,
115 .id = EXTCON_JACK_LINE_IN,
116 .name = "LINE-IN",
117 },
118 [EXTCON_JACK_LINE_OUT] = {
119 .type = EXTCON_TYPE_JACK,
120 .id = EXTCON_JACK_LINE_OUT,
121 .name = "LINE-OUT",
122 },
123 [EXTCON_JACK_VIDEO_IN] = {
124 .type = EXTCON_TYPE_JACK,
125 .id = EXTCON_JACK_VIDEO_IN,
126 .name = "VIDEO-IN",
127 },
128 [EXTCON_JACK_VIDEO_OUT] = {
129 .type = EXTCON_TYPE_JACK,
130 .id = EXTCON_JACK_VIDEO_OUT,
131 .name = "VIDEO-OUT",
132 },
133 [EXTCON_JACK_SPDIF_IN] = {
134 .type = EXTCON_TYPE_JACK,
135 .id = EXTCON_JACK_SPDIF_IN,
136 .name = "SPDIF-IN",
137 },
138 [EXTCON_JACK_SPDIF_OUT] = {
139 .type = EXTCON_TYPE_JACK,
140 .id = EXTCON_JACK_SPDIF_OUT,
141 .name = "SPDIF-OUT",
142 },
Chanwoo Choi8e9bc362015-05-19 19:58:49 +0900143
Chanwoo Choi11eecf92015-10-03 14:15:13 +0900144 /* Display external connector */
Chanwoo Choi55e4e2f2016-07-11 16:34:52 +0900145 [EXTCON_DISP_HDMI] = {
146 .type = EXTCON_TYPE_DISP,
147 .id = EXTCON_DISP_HDMI,
148 .name = "HDMI",
149 },
150 [EXTCON_DISP_MHL] = {
151 .type = EXTCON_TYPE_DISP,
152 .id = EXTCON_DISP_MHL,
153 .name = "MHL",
154 },
155 [EXTCON_DISP_DVI] = {
156 .type = EXTCON_TYPE_DISP,
157 .id = EXTCON_DISP_DVI,
158 .name = "DVI",
159 },
160 [EXTCON_DISP_VGA] = {
161 .type = EXTCON_TYPE_DISP,
162 .id = EXTCON_DISP_VGA,
163 .name = "VGA",
164 },
Chris Zhong21641882016-07-22 01:13:02 +0900165 [EXTCON_DISP_DP] = {
166 .type = EXTCON_TYPE_DISP | EXTCON_TYPE_USB,
167 .id = EXTCON_DISP_DP,
168 .name = "DP",
169 },
Chanwoo Choi9c0595d2016-08-05 17:49:23 +0900170 [EXTCON_DISP_HMD] = {
171 .type = EXTCON_TYPE_DISP | EXTCON_TYPE_USB,
172 .id = EXTCON_DISP_HMD,
173 .name = "HMD",
174 },
Chanwoo Choi8e9bc362015-05-19 19:58:49 +0900175
Chanwoo Choi11eecf92015-10-03 14:15:13 +0900176 /* Miscellaneous external connector */
Chanwoo Choi55e4e2f2016-07-11 16:34:52 +0900177 [EXTCON_DOCK] = {
178 .type = EXTCON_TYPE_MISC,
179 .id = EXTCON_DOCK,
180 .name = "DOCK",
181 },
182 [EXTCON_JIG] = {
183 .type = EXTCON_TYPE_MISC,
184 .id = EXTCON_JIG,
185 .name = "JIG",
186 },
187 [EXTCON_MECHANICAL] = {
188 .type = EXTCON_TYPE_MISC,
189 .id = EXTCON_MECHANICAL,
190 .name = "MECHANICAL",
191 },
Chanwoo Choi8e9bc362015-05-19 19:58:49 +0900192
Chanwoo Choi55e4e2f2016-07-11 16:34:52 +0900193 { /* sentinel */ }
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900194};
195
Chanwoo Choi20f7b532016-06-27 19:17:06 +0900196/**
197 * struct extcon_cable - An internal data for each cable of extcon device.
198 * @edev: The extcon device
199 * @cable_index: Index of this cable in the edev
200 * @attr_g: Attribute group for the cable
201 * @attr_name: "name" sysfs entry
202 * @attr_state: "state" sysfs entry
203 * @attrs: Array pointing to attr_name and attr_state for attr_g
204 */
205struct extcon_cable {
206 struct extcon_dev *edev;
207 int cable_index;
208
209 struct attribute_group attr_g;
210 struct device_attribute attr_name;
211 struct device_attribute attr_state;
212
213 struct attribute *attrs[3]; /* to be fed to attr_g.attrs */
Chanwoo Choi792e7e9e2016-07-11 19:30:43 +0900214
215 union extcon_property_value usb_propval[EXTCON_PROP_USB_CNT];
216 union extcon_property_value chg_propval[EXTCON_PROP_CHG_CNT];
217 union extcon_property_value jack_propval[EXTCON_PROP_JACK_CNT];
218 union extcon_property_value disp_propval[EXTCON_PROP_DISP_CNT];
Chanwoo Choi7f2a0a12016-07-25 21:15:19 +0900219
220 unsigned long usb_bits[BITS_TO_LONGS(EXTCON_PROP_USB_CNT)];
221 unsigned long chg_bits[BITS_TO_LONGS(EXTCON_PROP_CHG_CNT)];
222 unsigned long jack_bits[BITS_TO_LONGS(EXTCON_PROP_JACK_CNT)];
223 unsigned long disp_bits[BITS_TO_LONGS(EXTCON_PROP_DISP_CNT)];
Chanwoo Choi20f7b532016-06-27 19:17:06 +0900224};
225
Mark Brownbe3a07f2012-06-05 16:14:38 +0100226static struct class *extcon_class;
MyungJoo Ham449a2bf2012-04-23 20:19:57 +0900227#if defined(CONFIG_ANDROID)
MyungJoo Hamde55d872012-04-20 14:16:22 +0900228static struct class_compat *switch_class;
MyungJoo Ham449a2bf2012-04-23 20:19:57 +0900229#endif /* CONFIG_ANDROID */
MyungJoo Hamde55d872012-04-20 14:16:22 +0900230
Donggeun Kim74c5d092012-04-20 14:16:24 +0900231static LIST_HEAD(extcon_dev_list);
232static DEFINE_MUTEX(extcon_dev_list_lock);
233
MyungJoo Hambde68e62012-04-20 14:16:26 +0900234/**
235 * check_mutually_exclusive - Check if new_state violates mutually_exclusive
Chanwoo Choia75e1c72013-08-31 13:16:49 +0900236 * condition.
MyungJoo Hambde68e62012-04-20 14:16:26 +0900237 * @edev: the extcon device
238 * @new_state: new cable attach status for @edev
239 *
240 * Returns 0 if nothing violates. Returns the index + 1 for the first
241 * violated condition.
242 */
243static int check_mutually_exclusive(struct extcon_dev *edev, u32 new_state)
244{
245 int i = 0;
246
247 if (!edev->mutually_exclusive)
248 return 0;
249
250 for (i = 0; edev->mutually_exclusive[i]; i++) {
anish kumar28c0ada2012-08-30 00:35:10 +0530251 int weight;
MyungJoo Hambde68e62012-04-20 14:16:26 +0900252 u32 correspondants = new_state & edev->mutually_exclusive[i];
MyungJoo Hambde68e62012-04-20 14:16:26 +0900253
anish kumar28c0ada2012-08-30 00:35:10 +0530254 /* calculate the total number of bits set */
255 weight = hweight32(correspondants);
256 if (weight > 1)
257 return i + 1;
MyungJoo Hambde68e62012-04-20 14:16:26 +0900258 }
259
260 return 0;
261}
262
Chanwoo Choi73b6ecd2015-06-12 11:10:06 +0900263static int find_cable_index_by_id(struct extcon_dev *edev, const unsigned int id)
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +0900264{
265 int i;
266
267 /* Find the the index of extcon cable in edev->supported_cable */
268 for (i = 0; i < edev->max_supported; i++) {
269 if (edev->supported_cable[i] == id)
270 return i;
271 }
272
273 return -EINVAL;
274}
275
Chanwoo Choi792e7e9e2016-07-11 19:30:43 +0900276static int get_extcon_type(unsigned int prop)
277{
278 switch (prop) {
279 case EXTCON_PROP_USB_MIN ... EXTCON_PROP_USB_MAX:
280 return EXTCON_TYPE_USB;
281 case EXTCON_PROP_CHG_MIN ... EXTCON_PROP_CHG_MAX:
282 return EXTCON_TYPE_CHG;
283 case EXTCON_PROP_JACK_MIN ... EXTCON_PROP_JACK_MAX:
284 return EXTCON_TYPE_JACK;
285 case EXTCON_PROP_DISP_MIN ... EXTCON_PROP_DISP_MAX:
286 return EXTCON_TYPE_DISP;
287 default:
288 return -EINVAL;
289 }
290}
291
292static bool is_extcon_attached(struct extcon_dev *edev, unsigned int index)
293{
294 return !!(edev->state & BIT(index));
295}
296
Chanwoo Choiab11af042016-07-22 13:16:34 +0900297static bool is_extcon_changed(struct extcon_dev *edev, int index,
298 bool new_state)
Chanwoo Choi046050f2015-05-19 20:01:12 +0900299{
Chanwoo Choiab11af042016-07-22 13:16:34 +0900300 int state = !!(edev->state & BIT(index));
301 return (state != new_state);
Chanwoo Choi046050f2015-05-19 20:01:12 +0900302}
303
Chanwoo Choi792e7e9e2016-07-11 19:30:43 +0900304static bool is_extcon_property_supported(unsigned int id, unsigned int prop)
305{
306 int type;
307
308 /* Check whether the property is supported or not. */
309 type = get_extcon_type(prop);
310 if (type < 0)
311 return false;
312
313 /* Check whether a specific extcon id supports the property or not. */
314 return !!(extcon_info[id].type & type);
315}
316
Chanwoo Choi7f2a0a12016-07-25 21:15:19 +0900317static int is_extcon_property_capability(struct extcon_dev *edev,
318 unsigned int id, int index,unsigned int prop)
319{
320 struct extcon_cable *cable;
321 int type, ret;
322
323 /* Check whether the property is supported or not. */
324 type = get_extcon_type(prop);
325 if (type < 0)
326 return type;
327
328 cable = &edev->cables[index];
329
330 switch (type) {
331 case EXTCON_TYPE_USB:
332 ret = test_bit(prop - EXTCON_PROP_USB_MIN, cable->usb_bits);
333 break;
334 case EXTCON_TYPE_CHG:
335 ret = test_bit(prop - EXTCON_PROP_CHG_MIN, cable->chg_bits);
336 break;
337 case EXTCON_TYPE_JACK:
338 ret = test_bit(prop - EXTCON_PROP_JACK_MIN, cable->jack_bits);
339 break;
340 case EXTCON_TYPE_DISP:
341 ret = test_bit(prop - EXTCON_PROP_DISP_MIN, cable->disp_bits);
342 break;
343 default:
344 ret = -EINVAL;
345 }
346
347 return ret;
348}
349
Chanwoo Choi792e7e9e2016-07-11 19:30:43 +0900350static void init_property(struct extcon_dev *edev, unsigned int id, int index)
351{
352 unsigned int type = extcon_info[id].type;
353 struct extcon_cable *cable = &edev->cables[index];
354
355 if (EXTCON_TYPE_USB & type)
356 memset(cable->usb_propval, 0, sizeof(cable->usb_propval));
357 if (EXTCON_TYPE_CHG & type)
358 memset(cable->chg_propval, 0, sizeof(cable->chg_propval));
359 if (EXTCON_TYPE_JACK & type)
360 memset(cable->jack_propval, 0, sizeof(cable->jack_propval));
361 if (EXTCON_TYPE_DISP & type)
362 memset(cable->disp_propval, 0, sizeof(cable->disp_propval));
363}
364
MyungJoo Hamde55d872012-04-20 14:16:22 +0900365static ssize_t state_show(struct device *dev, struct device_attribute *attr,
366 char *buf)
367{
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900368 int i, count = 0;
Jingoo Hancb8bb3a2013-09-09 14:33:32 +0900369 struct extcon_dev *edev = dev_get_drvdata(dev);
MyungJoo Hamde55d872012-04-20 14:16:22 +0900370
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900371 if (edev->max_supported == 0)
372 return sprintf(buf, "%u\n", edev->state);
373
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +0900374 for (i = 0; i < edev->max_supported; i++) {
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900375 count += sprintf(buf + count, "%s=%d\n",
Chanwoo Choi55e4e2f2016-07-11 16:34:52 +0900376 extcon_info[edev->supported_cable[i]].name,
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900377 !!(edev->state & (1 << i)));
378 }
379
380 return count;
381}
Chanwoo Choi5d5321e2016-07-18 15:39:28 +0900382static DEVICE_ATTR_RO(state);
MyungJoo Hamde55d872012-04-20 14:16:22 +0900383
384static ssize_t name_show(struct device *dev, struct device_attribute *attr,
385 char *buf)
386{
Jingoo Hancb8bb3a2013-09-09 14:33:32 +0900387 struct extcon_dev *edev = dev_get_drvdata(dev);
MyungJoo Hamde55d872012-04-20 14:16:22 +0900388
Chanwoo Choi71c3ffa2015-04-15 15:02:01 +0900389 return sprintf(buf, "%s\n", edev->name);
MyungJoo Hamde55d872012-04-20 14:16:22 +0900390}
Greg Kroah-Hartmanaf01da02013-07-24 15:05:10 -0700391static DEVICE_ATTR_RO(name);
MyungJoo Hamde55d872012-04-20 14:16:22 +0900392
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900393static ssize_t cable_name_show(struct device *dev,
394 struct device_attribute *attr, char *buf)
395{
396 struct extcon_cable *cable = container_of(attr, struct extcon_cable,
397 attr_name);
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +0900398 int i = cable->cable_index;
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900399
400 return sprintf(buf, "%s\n",
Chanwoo Choi55e4e2f2016-07-11 16:34:52 +0900401 extcon_info[cable->edev->supported_cable[i]].name);
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900402}
403
404static ssize_t cable_state_show(struct device *dev,
405 struct device_attribute *attr, char *buf)
406{
407 struct extcon_cable *cable = container_of(attr, struct extcon_cable,
408 attr_state);
409
Roger Quadrosbe052cc2015-07-07 16:06:15 +0300410 int i = cable->cable_index;
411
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900412 return sprintf(buf, "%d\n",
Chanwoo Choi575c2b862016-07-22 13:03:17 +0900413 extcon_get_state(cable->edev, cable->edev->supported_cable[i]));
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900414}
415
MyungJoo Hamde55d872012-04-20 14:16:22 +0900416/**
Chanwoo Choiab11af042016-07-22 13:16:34 +0900417 * extcon_sync() - Synchronize the states for both the attached/detached
418 * @edev: the extcon device that has the cable.
MyungJoo Hamde55d872012-04-20 14:16:22 +0900419 *
Chanwoo Choiab11af042016-07-22 13:16:34 +0900420 * This function send a notification to synchronize the all states of a
421 * specific external connector
MyungJoo Hamde55d872012-04-20 14:16:22 +0900422 */
Chanwoo Choiab11af042016-07-22 13:16:34 +0900423int extcon_sync(struct extcon_dev *edev, unsigned int id)
MyungJoo Hamde55d872012-04-20 14:16:22 +0900424{
425 char name_buf[120];
426 char state_buf[120];
427 char *prop_buf;
428 char *envp[3];
429 int env_offset = 0;
430 int length;
Chanwoo Choi046050f2015-05-19 20:01:12 +0900431 int index;
Chanwoo Choiab11af042016-07-22 13:16:34 +0900432 int state;
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900433 unsigned long flags;
MyungJoo Hamde55d872012-04-20 14:16:22 +0900434
Chanwoo Choi7eae43a2015-06-21 23:48:36 +0900435 if (!edev)
436 return -EINVAL;
437
Chanwoo Choiab11af042016-07-22 13:16:34 +0900438 index = find_cable_index_by_id(edev, id);
439 if (index < 0)
440 return index;
441
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900442 spin_lock_irqsave(&edev->lock, flags);
Chanwoo Choiab11af042016-07-22 13:16:34 +0900443 state = !!(edev->state & BIT(index));
Chanwoo Choi214fb6b2018-06-14 11:16:29 +0900444 spin_unlock_irqrestore(&edev->lock, flags);
Chanwoo Choiab11af042016-07-22 13:16:34 +0900445 raw_notifier_call_chain(&edev->nh[index], state, edev);
Roger Quadrosf7a89812015-07-06 17:46:58 +0300446
Chanwoo Choi214fb6b2018-06-14 11:16:29 +0900447 spin_lock_irqsave(&edev->lock, flags);
Chanwoo Choiab11af042016-07-22 13:16:34 +0900448 /* This could be in interrupt handler */
449 prop_buf = (char *)get_zeroed_page(GFP_ATOMIC);
450 if (!prop_buf) {
451 /* Unlock early before uevent */
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900452 spin_unlock_irqrestore(&edev->lock, flags);
Chanwoo Choiab11af042016-07-22 13:16:34 +0900453
454 dev_err(&edev->dev, "out of memory in extcon_set_state\n");
455 kobject_uevent(&edev->dev.kobj, KOBJ_CHANGE);
456
Pan Bian86820a102016-12-03 16:56:49 +0800457 return -ENOMEM;
MyungJoo Hamde55d872012-04-20 14:16:22 +0900458 }
MyungJoo Hambde68e62012-04-20 14:16:26 +0900459
Chanwoo Choiab11af042016-07-22 13:16:34 +0900460 length = name_show(&edev->dev, NULL, prop_buf);
461 if (length > 0) {
462 if (prop_buf[length - 1] == '\n')
463 prop_buf[length - 1] = 0;
464 snprintf(name_buf, sizeof(name_buf), "NAME=%s", prop_buf);
465 envp[env_offset++] = name_buf;
466 }
467
468 length = state_show(&edev->dev, NULL, prop_buf);
469 if (length > 0) {
470 if (prop_buf[length - 1] == '\n')
471 prop_buf[length - 1] = 0;
472 snprintf(state_buf, sizeof(state_buf), "STATE=%s", prop_buf);
473 envp[env_offset++] = state_buf;
474 }
475 envp[env_offset] = NULL;
476
477 /* Unlock early before uevent */
478 spin_unlock_irqrestore(&edev->lock, flags);
479 kobject_uevent_env(&edev->dev.kobj, KOBJ_CHANGE, envp);
480 free_page((unsigned long)prop_buf);
481
MyungJoo Hambde68e62012-04-20 14:16:26 +0900482 return 0;
MyungJoo Hamde55d872012-04-20 14:16:22 +0900483}
Chanwoo Choiab11af042016-07-22 13:16:34 +0900484EXPORT_SYMBOL_GPL(extcon_sync);
MyungJoo Hamde55d872012-04-20 14:16:22 +0900485
Liangliang Lu7e9fffa2018-06-26 12:45:14 +0800486int extcon_blocking_sync(struct extcon_dev *edev, unsigned int id, u8 val)
Mayank Rana1e466ab2017-07-06 16:42:06 -0700487{
488 int index;
489
490 if (!edev)
491 return -EINVAL;
492
493 index = find_cable_index_by_id(edev, id);
494 if (index < 0)
495 return index;
496
497 return blocking_notifier_call_chain(&edev->bnh[index], val, edev);
498}
499EXPORT_SYMBOL(extcon_blocking_sync);
500
Donggeun Kim74c5d092012-04-20 14:16:24 +0900501/**
Chanwoo Choi575c2b862016-07-22 13:03:17 +0900502 * extcon_get_state() - Get the state of a external connector.
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900503 * @edev: the extcon device that has the cable.
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +0900504 * @id: the unique id of each external connector in extcon enumeration.
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900505 */
Chanwoo Choi575c2b862016-07-22 13:03:17 +0900506int extcon_get_state(struct extcon_dev *edev, const unsigned int id)
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900507{
Chanwoo Choi575c2b862016-07-22 13:03:17 +0900508 int index, state;
509 unsigned long flags;
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +0900510
Chanwoo Choi7eae43a2015-06-21 23:48:36 +0900511 if (!edev)
512 return -EINVAL;
513
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +0900514 index = find_cable_index_by_id(edev, id);
515 if (index < 0)
516 return index;
517
Chanwoo Choi575c2b862016-07-22 13:03:17 +0900518 spin_lock_irqsave(&edev->lock, flags);
519 state = is_extcon_attached(edev, index);
520 spin_unlock_irqrestore(&edev->lock, flags);
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900521
Chanwoo Choi575c2b862016-07-22 13:03:17 +0900522 return state;
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900523}
Chanwoo Choi575c2b862016-07-22 13:03:17 +0900524EXPORT_SYMBOL_GPL(extcon_get_state);
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900525
526/**
Chanwoo Choi575c2b862016-07-22 13:03:17 +0900527 * extcon_set_state() - Set the state of a external connector.
Chanwoo Choiab11af042016-07-22 13:16:34 +0900528 * without a notification.
Chanwoo Choia75e1c72013-08-31 13:16:49 +0900529 * @edev: the extcon device that has the cable.
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +0900530 * @id: the unique id of each external connector
531 * in extcon enumeration.
532 * @state: the new cable status. The default semantics is
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900533 * true: attached / false: detached.
Chanwoo Choiab11af042016-07-22 13:16:34 +0900534 *
535 * This function only set the state of a external connector without
536 * a notification. To synchronize the data of a external connector,
537 * use extcon_set_state_sync() and extcon_sync().
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900538 */
Chanwoo Choi575c2b862016-07-22 13:03:17 +0900539int extcon_set_state(struct extcon_dev *edev, unsigned int id,
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +0900540 bool cable_state)
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900541{
Chanwoo Choiab11af042016-07-22 13:16:34 +0900542 unsigned long flags;
543 int index, ret = 0;
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900544
Chanwoo Choi7eae43a2015-06-21 23:48:36 +0900545 if (!edev)
546 return -EINVAL;
547
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +0900548 index = find_cable_index_by_id(edev, id);
549 if (index < 0)
550 return index;
551
Chanwoo Choiab11af042016-07-22 13:16:34 +0900552 spin_lock_irqsave(&edev->lock, flags);
553
554 /* Check whether the external connector's state is changed. */
555 if (!is_extcon_changed(edev, index, cable_state))
556 goto out;
557
558 if (check_mutually_exclusive(edev,
559 (edev->state & ~BIT(index)) | (cable_state & BIT(index)))) {
560 ret = -EPERM;
561 goto out;
562 }
563
Chanwoo Choi792e7e9e2016-07-11 19:30:43 +0900564 /*
565 * Initialize the value of extcon property before setting
566 * the detached state for an external connector.
567 */
568 if (!cable_state)
569 init_property(edev, id, index);
570
Chanwoo Choiab11af042016-07-22 13:16:34 +0900571 /* Update the state for a external connector. */
572 if (cable_state)
573 edev->state |= BIT(index);
574 else
575 edev->state &= ~(BIT(index));
576out:
577 spin_unlock_irqrestore(&edev->lock, flags);
578
579 return ret;
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900580}
Chanwoo Choi575c2b862016-07-22 13:03:17 +0900581EXPORT_SYMBOL_GPL(extcon_set_state);
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900582
583/**
Chanwoo Choiab11af042016-07-22 13:16:34 +0900584 * extcon_set_state_sync() - Set the state of a external connector
585 * with a notification.
586 * @edev: the extcon device that has the cable.
587 * @id: the unique id of each external connector
588 * in extcon enumeration.
589 * @state: the new cable status. The default semantics is
590 * true: attached / false: detached.
591 *
592 * This function set the state of external connector and synchronize the data
593 * by usning a notification.
594 */
595int extcon_set_state_sync(struct extcon_dev *edev, unsigned int id,
596 bool cable_state)
597{
598 int ret, index;
599 unsigned long flags;
600
601 index = find_cable_index_by_id(edev, id);
602 if (index < 0)
603 return index;
604
605 /* Check whether the external connector's state is changed. */
606 spin_lock_irqsave(&edev->lock, flags);
607 ret = is_extcon_changed(edev, index, cable_state);
608 spin_unlock_irqrestore(&edev->lock, flags);
609 if (!ret)
610 return 0;
611
612 ret = extcon_set_state(edev, id, cable_state);
613 if (ret < 0)
614 return ret;
615
616 return extcon_sync(edev, id);
617}
618EXPORT_SYMBOL_GPL(extcon_set_state_sync);
619
620/**
Chanwoo Choi792e7e9e2016-07-11 19:30:43 +0900621 * extcon_get_property() - Get the property value of a specific cable.
622 * @edev: the extcon device that has the cable.
623 * @id: the unique id of each external connector
624 * in extcon enumeration.
625 * @prop: the property id among enum extcon_property.
626 * @prop_val: the pointer which store the value of property.
627 *
628 * When getting the property value of external connector, the external connector
629 * should be attached. If detached state, function just return 0 without
630 * property value. Also, the each property should be included in the list of
631 * supported properties according to the type of external connectors.
632 *
633 * Returns 0 if success or error number if fail
634 */
635int extcon_get_property(struct extcon_dev *edev, unsigned int id,
636 unsigned int prop,
637 union extcon_property_value *prop_val)
638{
639 struct extcon_cable *cable;
640 unsigned long flags;
641 int index, ret = 0;
642
643 *prop_val = (union extcon_property_value)(0);
644
645 if (!edev)
646 return -EINVAL;
647
648 /* Check whether the property is supported or not */
649 if (!is_extcon_property_supported(id, prop))
650 return -EINVAL;
651
652 /* Find the cable index of external connector by using id */
653 index = find_cable_index_by_id(edev, id);
654 if (index < 0)
655 return index;
656
657 spin_lock_irqsave(&edev->lock, flags);
658
Chanwoo Choi7f2a0a12016-07-25 21:15:19 +0900659 /* Check whether the property is available or not. */
660 if (!is_extcon_property_capability(edev, id, index, prop)) {
661 spin_unlock_irqrestore(&edev->lock, flags);
662 return -EPERM;
663 }
664
Chanwoo Choi792e7e9e2016-07-11 19:30:43 +0900665 /*
666 * Check whether the external connector is attached.
667 * If external connector is detached, the user can not
668 * get the property value.
669 */
670 if (!is_extcon_attached(edev, index)) {
671 spin_unlock_irqrestore(&edev->lock, flags);
672 return 0;
673 }
674
675 cable = &edev->cables[index];
676
677 /* Get the property value according to extcon type */
678 switch (prop) {
679 case EXTCON_PROP_USB_MIN ... EXTCON_PROP_USB_MAX:
680 *prop_val = cable->usb_propval[prop - EXTCON_PROP_USB_MIN];
681 break;
682 case EXTCON_PROP_CHG_MIN ... EXTCON_PROP_CHG_MAX:
683 *prop_val = cable->chg_propval[prop - EXTCON_PROP_CHG_MIN];
684 break;
685 case EXTCON_PROP_JACK_MIN ... EXTCON_PROP_JACK_MAX:
686 *prop_val = cable->jack_propval[prop - EXTCON_PROP_JACK_MIN];
687 break;
688 case EXTCON_PROP_DISP_MIN ... EXTCON_PROP_DISP_MAX:
689 *prop_val = cable->disp_propval[prop - EXTCON_PROP_DISP_MIN];
690 break;
691 default:
692 ret = -EINVAL;
693 break;
694 }
695
696 spin_unlock_irqrestore(&edev->lock, flags);
697
698 return ret;
699}
700EXPORT_SYMBOL_GPL(extcon_get_property);
701
702/**
703 * extcon_set_property() - Set the property value of a specific cable.
704 * @edev: the extcon device that has the cable.
705 * @id: the unique id of each external connector
706 * in extcon enumeration.
707 * @prop: the property id among enum extcon_property.
708 * @prop_val: the pointer including the new value of property.
709 *
710 * The each property should be included in the list of supported properties
711 * according to the type of external connectors.
712 *
713 * Returns 0 if success or error number if fail
714 */
715int extcon_set_property(struct extcon_dev *edev, unsigned int id,
716 unsigned int prop,
717 union extcon_property_value prop_val)
718{
719 struct extcon_cable *cable;
720 unsigned long flags;
721 int index, ret = 0;
722
723 if (!edev)
724 return -EINVAL;
725
726 /* Check whether the property is supported or not */
727 if (!is_extcon_property_supported(id, prop))
728 return -EINVAL;
729
730 /* Find the cable index of external connector by using id */
731 index = find_cable_index_by_id(edev, id);
732 if (index < 0)
733 return index;
734
735 spin_lock_irqsave(&edev->lock, flags);
736
Chanwoo Choi7f2a0a12016-07-25 21:15:19 +0900737 /* Check whether the property is available or not. */
738 if (!is_extcon_property_capability(edev, id, index, prop)) {
739 spin_unlock_irqrestore(&edev->lock, flags);
740 return -EPERM;
741 }
742
Chanwoo Choi792e7e9e2016-07-11 19:30:43 +0900743 cable = &edev->cables[index];
744
745 /* Set the property value according to extcon type */
746 switch (prop) {
747 case EXTCON_PROP_USB_MIN ... EXTCON_PROP_USB_MAX:
748 cable->usb_propval[prop - EXTCON_PROP_USB_MIN] = prop_val;
749 break;
750 case EXTCON_PROP_CHG_MIN ... EXTCON_PROP_CHG_MAX:
751 cable->chg_propval[prop - EXTCON_PROP_CHG_MIN] = prop_val;
752 break;
753 case EXTCON_PROP_JACK_MIN ... EXTCON_PROP_JACK_MAX:
754 cable->jack_propval[prop - EXTCON_PROP_JACK_MIN] = prop_val;
755 break;
756 case EXTCON_PROP_DISP_MIN ... EXTCON_PROP_DISP_MAX:
757 cable->disp_propval[prop - EXTCON_PROP_DISP_MIN] = prop_val;
758 break;
759 default:
760 ret = -EINVAL;
761 break;
762 }
763
764 spin_unlock_irqrestore(&edev->lock, flags);
765
766 return ret;
767}
768EXPORT_SYMBOL_GPL(extcon_set_property);
769
770/**
Chanwoo Choiab11af042016-07-22 13:16:34 +0900771 * extcon_set_property_sync() - Set the property value of a specific cable
772 with a notification.
773 * @prop_val: the pointer including the new value of property.
774 *
775 * When setting the property value of external connector, the external connector
776 * should be attached. The each property should be included in the list of
777 * supported properties according to the type of external connectors.
778 *
779 * Returns 0 if success or error number if fail
780 */
781int extcon_set_property_sync(struct extcon_dev *edev, unsigned int id,
782 unsigned int prop,
783 union extcon_property_value prop_val)
784{
785 int ret;
786
787 ret = extcon_set_property(edev, id, prop, prop_val);
788 if (ret < 0)
789 return ret;
790
791 return extcon_sync(edev, id);
792}
793EXPORT_SYMBOL_GPL(extcon_set_property_sync);
794
795/**
Chanwoo Choi7f2a0a12016-07-25 21:15:19 +0900796 * extcon_get_property_capability() - Get the capability of property
797 * of an external connector.
798 * @edev: the extcon device that has the cable.
799 * @id: the unique id of each external connector
800 * in extcon enumeration.
801 * @prop: the property id among enum extcon_property.
802 *
803 * Returns 1 if the property is available or 0 if not available.
804 */
805int extcon_get_property_capability(struct extcon_dev *edev, unsigned int id,
806 unsigned int prop)
807{
808 int index;
809
810 if (!edev)
811 return -EINVAL;
812
813 /* Check whether the property is supported or not */
814 if (!is_extcon_property_supported(id, prop))
815 return -EINVAL;
816
817 /* Find the cable index of external connector by using id */
818 index = find_cable_index_by_id(edev, id);
819 if (index < 0)
820 return index;
821
822 return is_extcon_property_capability(edev, id, index, prop);
823}
824EXPORT_SYMBOL_GPL(extcon_get_property_capability);
825
826/**
827 * extcon_set_property_capability() - Set the capability of a property
828 * of an external connector.
829 * @edev: the extcon device that has the cable.
830 * @id: the unique id of each external connector
831 * in extcon enumeration.
832 * @prop: the property id among enum extcon_property.
833 *
834 * This function set the capability of a property for an external connector
835 * to mark the bit in capability bitmap which mean the available state of
836 * a property.
837 *
838 * Returns 0 if success or error number if fail
839 */
840int extcon_set_property_capability(struct extcon_dev *edev, unsigned int id,
841 unsigned int prop)
842{
843 struct extcon_cable *cable;
844 int index, type, ret = 0;
845
846 if (!edev)
847 return -EINVAL;
848
849 /* Check whether the property is supported or not. */
850 if (!is_extcon_property_supported(id, prop))
851 return -EINVAL;
852
853 /* Find the cable index of external connector by using id. */
854 index = find_cable_index_by_id(edev, id);
855 if (index < 0)
856 return index;
857
858 type = get_extcon_type(prop);
859 if (type < 0)
860 return type;
861
862 cable = &edev->cables[index];
863
864 switch (type) {
865 case EXTCON_TYPE_USB:
866 __set_bit(prop - EXTCON_PROP_USB_MIN, cable->usb_bits);
867 break;
868 case EXTCON_TYPE_CHG:
869 __set_bit(prop - EXTCON_PROP_CHG_MIN, cable->chg_bits);
870 break;
871 case EXTCON_TYPE_JACK:
872 __set_bit(prop - EXTCON_PROP_JACK_MIN, cable->jack_bits);
873 break;
874 case EXTCON_TYPE_DISP:
875 __set_bit(prop - EXTCON_PROP_DISP_MIN, cable->disp_bits);
876 break;
877 default:
878 ret = -EINVAL;
879 }
880
881 return ret;
882}
883EXPORT_SYMBOL_GPL(extcon_set_property_capability);
884
885/**
Donggeun Kim74c5d092012-04-20 14:16:24 +0900886 * extcon_get_extcon_dev() - Get the extcon device instance from the name
887 * @extcon_name: The extcon name provided with extcon_dev_register()
888 */
889struct extcon_dev *extcon_get_extcon_dev(const char *extcon_name)
890{
891 struct extcon_dev *sd;
892
Chanwoo Choi7eae43a2015-06-21 23:48:36 +0900893 if (!extcon_name)
894 return ERR_PTR(-EINVAL);
895
Donggeun Kim74c5d092012-04-20 14:16:24 +0900896 mutex_lock(&extcon_dev_list_lock);
897 list_for_each_entry(sd, &extcon_dev_list, entry) {
898 if (!strcmp(sd->name, extcon_name))
899 goto out;
900 }
901 sd = NULL;
902out:
903 mutex_unlock(&extcon_dev_list_lock);
904 return sd;
905}
906EXPORT_SYMBOL_GPL(extcon_get_extcon_dev);
907
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900908/**
Peter Meerwaldc338bb02012-08-23 09:11:54 +0900909 * extcon_register_notifier() - Register a notifiee to get notified by
Chanwoo Choia75e1c72013-08-31 13:16:49 +0900910 * any attach status changes from the extcon.
Chanwoo Choi046050f2015-05-19 20:01:12 +0900911 * @edev: the extcon device that has the external connecotr.
912 * @id: the unique id of each external connector in extcon enumeration.
Donggeun Kim74c5d092012-04-20 14:16:24 +0900913 * @nb: a notifier block to be registered.
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900914 *
915 * Note that the second parameter given to the callback of nb (val) is
916 * "old_state", not the current state. The current state can be retrieved
917 * by looking at the third pameter (edev pointer)'s state value.
Donggeun Kim74c5d092012-04-20 14:16:24 +0900918 */
Chanwoo Choi73b6ecd2015-06-12 11:10:06 +0900919int extcon_register_notifier(struct extcon_dev *edev, unsigned int id,
Chanwoo Choi046050f2015-05-19 20:01:12 +0900920 struct notifier_block *nb)
Donggeun Kim74c5d092012-04-20 14:16:24 +0900921{
Hans de Goede66bee352015-03-21 17:26:24 +0100922 unsigned long flags;
Maninder Singh2c8116a2016-08-01 14:51:30 +0530923 int ret, idx = -EINVAL;
Chanwoo Choi046050f2015-05-19 20:01:12 +0900924
Chanwoo Choic4a77532016-12-19 21:02:33 +0900925 if (!edev || !nb)
Chanwoo Choi7eae43a2015-06-21 23:48:36 +0900926 return -EINVAL;
927
Chanwoo Choic4a77532016-12-19 21:02:33 +0900928 idx = find_cable_index_by_id(edev, id);
929 if (idx < 0)
930 return idx;
Hans de Goede66bee352015-03-21 17:26:24 +0100931
Chanwoo Choic4a77532016-12-19 21:02:33 +0900932 spin_lock_irqsave(&edev->lock, flags);
933 ret = raw_notifier_chain_register(&edev->nh[idx], nb);
934 spin_unlock_irqrestore(&edev->lock, flags);
Hans de Goede66bee352015-03-21 17:26:24 +0100935
936 return ret;
Donggeun Kim74c5d092012-04-20 14:16:24 +0900937}
938EXPORT_SYMBOL_GPL(extcon_register_notifier);
939
Mayank Rana1e466ab2017-07-06 16:42:06 -0700940int extcon_register_blocking_notifier(struct extcon_dev *edev, unsigned int id,
941 struct notifier_block *nb)
942{
943 int idx = -EINVAL;
944
945 if (!edev || !nb)
946 return -EINVAL;
947
948 idx = find_cable_index_by_id(edev, id);
949 if (idx < 0)
950 return idx;
951
952 return blocking_notifier_chain_register(&edev->bnh[idx], nb);
953}
954EXPORT_SYMBOL(extcon_register_blocking_notifier);
955
956int extcon_unregister_blocking_notifier(struct extcon_dev *edev,
957 unsigned int id, struct notifier_block *nb)
958{
959 int idx;
960
961 if (!edev || !nb)
962 return -EINVAL;
963
964 idx = find_cable_index_by_id(edev, id);
965 if (idx < 0)
966 return idx;
967
968 return blocking_notifier_chain_unregister(&edev->bnh[idx], nb);
969}
970EXPORT_SYMBOL(extcon_unregister_blocking_notifier);
971
Donggeun Kim74c5d092012-04-20 14:16:24 +0900972/**
Peter Meerwaldc338bb02012-08-23 09:11:54 +0900973 * extcon_unregister_notifier() - Unregister a notifiee from the extcon device.
Chanwoo Choi046050f2015-05-19 20:01:12 +0900974 * @edev: the extcon device that has the external connecotr.
975 * @id: the unique id of each external connector in extcon enumeration.
976 * @nb: a notifier block to be registered.
Donggeun Kim74c5d092012-04-20 14:16:24 +0900977 */
Chanwoo Choi73b6ecd2015-06-12 11:10:06 +0900978int extcon_unregister_notifier(struct extcon_dev *edev, unsigned int id,
Chanwoo Choi046050f2015-05-19 20:01:12 +0900979 struct notifier_block *nb)
Donggeun Kim74c5d092012-04-20 14:16:24 +0900980{
Hans de Goede66bee352015-03-21 17:26:24 +0100981 unsigned long flags;
Chanwoo Choi046050f2015-05-19 20:01:12 +0900982 int ret, idx;
983
Chanwoo Choi7eae43a2015-06-21 23:48:36 +0900984 if (!edev || !nb)
985 return -EINVAL;
986
Chanwoo Choi046050f2015-05-19 20:01:12 +0900987 idx = find_cable_index_by_id(edev, id);
Stephen Boyda05f44c2016-06-23 19:34:30 +0900988 if (idx < 0)
989 return idx;
Hans de Goede66bee352015-03-21 17:26:24 +0100990
991 spin_lock_irqsave(&edev->lock, flags);
Chanwoo Choi046050f2015-05-19 20:01:12 +0900992 ret = raw_notifier_chain_unregister(&edev->nh[idx], nb);
Hans de Goede66bee352015-03-21 17:26:24 +0100993 spin_unlock_irqrestore(&edev->lock, flags);
994
995 return ret;
Donggeun Kim74c5d092012-04-20 14:16:24 +0900996}
997EXPORT_SYMBOL_GPL(extcon_unregister_notifier);
998
Greg Kroah-Hartmanaf01da02013-07-24 15:05:10 -0700999static struct attribute *extcon_attrs[] = {
1000 &dev_attr_state.attr,
1001 &dev_attr_name.attr,
1002 NULL,
MyungJoo Hamde55d872012-04-20 14:16:22 +09001003};
Greg Kroah-Hartmanaf01da02013-07-24 15:05:10 -07001004ATTRIBUTE_GROUPS(extcon);
MyungJoo Hamde55d872012-04-20 14:16:22 +09001005
1006static int create_extcon_class(void)
1007{
1008 if (!extcon_class) {
1009 extcon_class = class_create(THIS_MODULE, "extcon");
1010 if (IS_ERR(extcon_class))
1011 return PTR_ERR(extcon_class);
Greg Kroah-Hartmanaf01da02013-07-24 15:05:10 -07001012 extcon_class->dev_groups = extcon_groups;
MyungJoo Hamde55d872012-04-20 14:16:22 +09001013
MyungJoo Ham449a2bf2012-04-23 20:19:57 +09001014#if defined(CONFIG_ANDROID)
MyungJoo Hamde55d872012-04-20 14:16:22 +09001015 switch_class = class_compat_register("switch");
1016 if (WARN(!switch_class, "cannot allocate"))
1017 return -ENOMEM;
MyungJoo Ham449a2bf2012-04-23 20:19:57 +09001018#endif /* CONFIG_ANDROID */
MyungJoo Hamde55d872012-04-20 14:16:22 +09001019 }
1020
1021 return 0;
1022}
1023
MyungJoo Hamde55d872012-04-20 14:16:22 +09001024static void extcon_dev_release(struct device *dev)
1025{
MyungJoo Hamde55d872012-04-20 14:16:22 +09001026}
1027
MyungJoo Hambde68e62012-04-20 14:16:26 +09001028static const char *muex_name = "mutually_exclusive";
MyungJoo Ham806d9dd2012-04-20 14:16:25 +09001029static void dummy_sysfs_dev_release(struct device *dev)
1030{
1031}
1032
Chanwoo Choia9af6522014-04-24 19:46:49 +09001033/*
1034 * extcon_dev_allocate() - Allocate the memory of extcon device.
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +09001035 * @supported_cable: Array of supported extcon ending with EXTCON_NONE.
Chanwoo Choia9af6522014-04-24 19:46:49 +09001036 * If supported_cable is NULL, cable name related APIs
1037 * are disabled.
1038 *
1039 * This function allocates the memory for extcon device without allocating
1040 * memory in each extcon provider driver and initialize default setting for
1041 * extcon device.
1042 *
1043 * Return the pointer of extcon device if success or ERR_PTR(err) if fail
1044 */
Chanwoo Choi73b6ecd2015-06-12 11:10:06 +09001045struct extcon_dev *extcon_dev_allocate(const unsigned int *supported_cable)
Chanwoo Choia9af6522014-04-24 19:46:49 +09001046{
1047 struct extcon_dev *edev;
1048
Chanwoo Choi7eae43a2015-06-21 23:48:36 +09001049 if (!supported_cable)
1050 return ERR_PTR(-EINVAL);
1051
Chanwoo Choia9af6522014-04-24 19:46:49 +09001052 edev = kzalloc(sizeof(*edev), GFP_KERNEL);
1053 if (!edev)
1054 return ERR_PTR(-ENOMEM);
1055
1056 edev->max_supported = 0;
1057 edev->supported_cable = supported_cable;
1058
1059 return edev;
1060}
1061
1062/*
1063 * extcon_dev_free() - Free the memory of extcon device.
1064 * @edev: the extcon device to free
1065 */
1066void extcon_dev_free(struct extcon_dev *edev)
1067{
1068 kfree(edev);
1069}
1070EXPORT_SYMBOL_GPL(extcon_dev_free);
1071
MyungJoo Hamde55d872012-04-20 14:16:22 +09001072/**
1073 * extcon_dev_register() - Register a new extcon device
1074 * @edev : the new extcon device (should be allocated before calling)
MyungJoo Hamde55d872012-04-20 14:16:22 +09001075 *
1076 * Among the members of edev struct, please set the "user initializing data"
1077 * in any case and set the "optional callbacks" if required. However, please
1078 * do not set the values of "internal data", which are initialized by
1079 * this function.
1080 */
Chanwoo Choi42d7d752013-09-27 09:20:26 +09001081int extcon_dev_register(struct extcon_dev *edev)
MyungJoo Hamde55d872012-04-20 14:16:22 +09001082{
MyungJoo Ham806d9dd2012-04-20 14:16:25 +09001083 int ret, index = 0;
Chanwoo Choi71c3ffa2015-04-15 15:02:01 +09001084 static atomic_t edev_no = ATOMIC_INIT(-1);
MyungJoo Hamde55d872012-04-20 14:16:22 +09001085
1086 if (!extcon_class) {
1087 ret = create_extcon_class();
1088 if (ret < 0)
1089 return ret;
1090 }
1091
Chanwoo Choi7eae43a2015-06-21 23:48:36 +09001092 if (!edev || !edev->supported_cable)
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +09001093 return -EINVAL;
MyungJoo Ham806d9dd2012-04-20 14:16:25 +09001094
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +09001095 for (; edev->supported_cable[index] != EXTCON_NONE; index++);
1096
1097 edev->max_supported = index;
MyungJoo Ham806d9dd2012-04-20 14:16:25 +09001098 if (index > SUPPORTED_CABLE_MAX) {
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +09001099 dev_err(&edev->dev,
1100 "exceed the maximum number of supported cables\n");
MyungJoo Ham806d9dd2012-04-20 14:16:25 +09001101 return -EINVAL;
1102 }
1103
Chanwoo Choidae61652013-09-27 09:19:40 +09001104 edev->dev.class = extcon_class;
1105 edev->dev.release = extcon_dev_release;
MyungJoo Hamde55d872012-04-20 14:16:22 +09001106
Chanwoo Choi71c3ffa2015-04-15 15:02:01 +09001107 edev->name = dev_name(edev->dev.parent);
Chanwoo Choi42d7d752013-09-27 09:20:26 +09001108 if (IS_ERR_OR_NULL(edev->name)) {
1109 dev_err(&edev->dev,
1110 "extcon device name is null\n");
1111 return -EINVAL;
1112 }
Chanwoo Choi71c3ffa2015-04-15 15:02:01 +09001113 dev_set_name(&edev->dev, "extcon%lu",
1114 (unsigned long)atomic_inc_return(&edev_no));
MyungJoo Ham806d9dd2012-04-20 14:16:25 +09001115
1116 if (edev->max_supported) {
1117 char buf[10];
1118 char *str;
1119 struct extcon_cable *cable;
1120
1121 edev->cables = kzalloc(sizeof(struct extcon_cable) *
1122 edev->max_supported, GFP_KERNEL);
1123 if (!edev->cables) {
1124 ret = -ENOMEM;
1125 goto err_sysfs_alloc;
1126 }
1127 for (index = 0; index < edev->max_supported; index++) {
1128 cable = &edev->cables[index];
1129
1130 snprintf(buf, 10, "cable.%d", index);
1131 str = kzalloc(sizeof(char) * (strlen(buf) + 1),
1132 GFP_KERNEL);
1133 if (!str) {
1134 for (index--; index >= 0; index--) {
1135 cable = &edev->cables[index];
1136 kfree(cable->attr_g.name);
1137 }
1138 ret = -ENOMEM;
1139
1140 goto err_alloc_cables;
1141 }
1142 strcpy(str, buf);
1143
1144 cable->edev = edev;
1145 cable->cable_index = index;
1146 cable->attrs[0] = &cable->attr_name.attr;
1147 cable->attrs[1] = &cable->attr_state.attr;
1148 cable->attrs[2] = NULL;
1149 cable->attr_g.name = str;
1150 cable->attr_g.attrs = cable->attrs;
1151
Mark Brown9baf3222012-08-16 20:03:21 +01001152 sysfs_attr_init(&cable->attr_name.attr);
MyungJoo Ham806d9dd2012-04-20 14:16:25 +09001153 cable->attr_name.attr.name = "name";
1154 cable->attr_name.attr.mode = 0444;
1155 cable->attr_name.show = cable_name_show;
1156
Mark Brown9baf3222012-08-16 20:03:21 +01001157 sysfs_attr_init(&cable->attr_state.attr);
MyungJoo Ham806d9dd2012-04-20 14:16:25 +09001158 cable->attr_state.attr.name = "state";
Chanwoo Choiea9dd9d2013-05-22 19:31:59 +09001159 cable->attr_state.attr.mode = 0444;
MyungJoo Ham806d9dd2012-04-20 14:16:25 +09001160 cable->attr_state.show = cable_state_show;
MyungJoo Ham806d9dd2012-04-20 14:16:25 +09001161 }
1162 }
1163
MyungJoo Hambde68e62012-04-20 14:16:26 +09001164 if (edev->max_supported && edev->mutually_exclusive) {
1165 char buf[80];
1166 char *name;
1167
1168 /* Count the size of mutually_exclusive array */
1169 for (index = 0; edev->mutually_exclusive[index]; index++)
1170 ;
1171
1172 edev->attrs_muex = kzalloc(sizeof(struct attribute *) *
1173 (index + 1), GFP_KERNEL);
1174 if (!edev->attrs_muex) {
1175 ret = -ENOMEM;
1176 goto err_muex;
1177 }
1178
1179 edev->d_attrs_muex = kzalloc(sizeof(struct device_attribute) *
1180 index, GFP_KERNEL);
1181 if (!edev->d_attrs_muex) {
1182 ret = -ENOMEM;
1183 kfree(edev->attrs_muex);
1184 goto err_muex;
1185 }
1186
1187 for (index = 0; edev->mutually_exclusive[index]; index++) {
1188 sprintf(buf, "0x%x", edev->mutually_exclusive[index]);
1189 name = kzalloc(sizeof(char) * (strlen(buf) + 1),
1190 GFP_KERNEL);
1191 if (!name) {
1192 for (index--; index >= 0; index--) {
1193 kfree(edev->d_attrs_muex[index].attr.
1194 name);
1195 }
1196 kfree(edev->d_attrs_muex);
1197 kfree(edev->attrs_muex);
1198 ret = -ENOMEM;
1199 goto err_muex;
1200 }
1201 strcpy(name, buf);
Mark Brown9baf3222012-08-16 20:03:21 +01001202 sysfs_attr_init(&edev->d_attrs_muex[index].attr);
MyungJoo Hambde68e62012-04-20 14:16:26 +09001203 edev->d_attrs_muex[index].attr.name = name;
1204 edev->d_attrs_muex[index].attr.mode = 0000;
1205 edev->attrs_muex[index] = &edev->d_attrs_muex[index]
1206 .attr;
1207 }
1208 edev->attr_g_muex.name = muex_name;
1209 edev->attr_g_muex.attrs = edev->attrs_muex;
1210
1211 }
1212
MyungJoo Ham806d9dd2012-04-20 14:16:25 +09001213 if (edev->max_supported) {
1214 edev->extcon_dev_type.groups =
1215 kzalloc(sizeof(struct attribute_group *) *
MyungJoo Hambde68e62012-04-20 14:16:26 +09001216 (edev->max_supported + 2), GFP_KERNEL);
MyungJoo Ham806d9dd2012-04-20 14:16:25 +09001217 if (!edev->extcon_dev_type.groups) {
1218 ret = -ENOMEM;
1219 goto err_alloc_groups;
1220 }
1221
Chanwoo Choidae61652013-09-27 09:19:40 +09001222 edev->extcon_dev_type.name = dev_name(&edev->dev);
MyungJoo Ham806d9dd2012-04-20 14:16:25 +09001223 edev->extcon_dev_type.release = dummy_sysfs_dev_release;
1224
1225 for (index = 0; index < edev->max_supported; index++)
1226 edev->extcon_dev_type.groups[index] =
1227 &edev->cables[index].attr_g;
MyungJoo Hambde68e62012-04-20 14:16:26 +09001228 if (edev->mutually_exclusive)
1229 edev->extcon_dev_type.groups[index] =
1230 &edev->attr_g_muex;
MyungJoo Ham806d9dd2012-04-20 14:16:25 +09001231
Chanwoo Choidae61652013-09-27 09:19:40 +09001232 edev->dev.type = &edev->extcon_dev_type;
MyungJoo Ham806d9dd2012-04-20 14:16:25 +09001233 }
1234
Chanwoo Choidae61652013-09-27 09:19:40 +09001235 ret = device_register(&edev->dev);
MyungJoo Hamde55d872012-04-20 14:16:22 +09001236 if (ret) {
Chanwoo Choidae61652013-09-27 09:19:40 +09001237 put_device(&edev->dev);
MyungJoo Hamde55d872012-04-20 14:16:22 +09001238 goto err_dev;
1239 }
MyungJoo Ham449a2bf2012-04-23 20:19:57 +09001240#if defined(CONFIG_ANDROID)
MyungJoo Hamde55d872012-04-20 14:16:22 +09001241 if (switch_class)
Chanwoo Choidae61652013-09-27 09:19:40 +09001242 ret = class_compat_create_link(switch_class, &edev->dev, NULL);
MyungJoo Ham449a2bf2012-04-23 20:19:57 +09001243#endif /* CONFIG_ANDROID */
MyungJoo Hamde55d872012-04-20 14:16:22 +09001244
MyungJoo Ham806d9dd2012-04-20 14:16:25 +09001245 spin_lock_init(&edev->lock);
1246
Chanwoo Choi046050f2015-05-19 20:01:12 +09001247 edev->nh = devm_kzalloc(&edev->dev,
1248 sizeof(*edev->nh) * edev->max_supported, GFP_KERNEL);
1249 if (!edev->nh) {
1250 ret = -ENOMEM;
1251 goto err_dev;
1252 }
1253
Mayank Rana1e466ab2017-07-06 16:42:06 -07001254 edev->bnh = devm_kzalloc(&edev->dev,
1255 sizeof(*edev->bnh) * edev->max_supported, GFP_KERNEL);
1256 if (!edev->bnh) {
1257 ret = -ENOMEM;
1258 goto err_dev;
1259 }
1260
Chanwoo Choi046050f2015-05-19 20:01:12 +09001261 for (index = 0; index < edev->max_supported; index++)
1262 RAW_INIT_NOTIFIER_HEAD(&edev->nh[index]);
Donggeun Kim74c5d092012-04-20 14:16:24 +09001263
Chanwoo Choidae61652013-09-27 09:19:40 +09001264 dev_set_drvdata(&edev->dev, edev);
MyungJoo Hamde55d872012-04-20 14:16:22 +09001265 edev->state = 0;
Donggeun Kim74c5d092012-04-20 14:16:24 +09001266
1267 mutex_lock(&extcon_dev_list_lock);
1268 list_add(&edev->entry, &extcon_dev_list);
1269 mutex_unlock(&extcon_dev_list_lock);
1270
MyungJoo Hamde55d872012-04-20 14:16:22 +09001271 return 0;
1272
1273err_dev:
MyungJoo Ham806d9dd2012-04-20 14:16:25 +09001274 if (edev->max_supported)
1275 kfree(edev->extcon_dev_type.groups);
1276err_alloc_groups:
MyungJoo Hambde68e62012-04-20 14:16:26 +09001277 if (edev->max_supported && edev->mutually_exclusive) {
1278 for (index = 0; edev->mutually_exclusive[index]; index++)
1279 kfree(edev->d_attrs_muex[index].attr.name);
1280 kfree(edev->d_attrs_muex);
1281 kfree(edev->attrs_muex);
1282 }
1283err_muex:
MyungJoo Ham806d9dd2012-04-20 14:16:25 +09001284 for (index = 0; index < edev->max_supported; index++)
1285 kfree(edev->cables[index].attr_g.name);
1286err_alloc_cables:
1287 if (edev->max_supported)
1288 kfree(edev->cables);
1289err_sysfs_alloc:
MyungJoo Hamde55d872012-04-20 14:16:22 +09001290 return ret;
1291}
1292EXPORT_SYMBOL_GPL(extcon_dev_register);
1293
1294/**
1295 * extcon_dev_unregister() - Unregister the extcon device.
Peter Meerwaldc338bb02012-08-23 09:11:54 +09001296 * @edev: the extcon device instance to be unregistered.
MyungJoo Hamde55d872012-04-20 14:16:22 +09001297 *
1298 * Note that this does not call kfree(edev) because edev was not allocated
1299 * by this class.
1300 */
1301void extcon_dev_unregister(struct extcon_dev *edev)
1302{
anish kumar57e7cd32012-10-22 09:43:33 +09001303 int index;
1304
Chanwoo Choi7eae43a2015-06-21 23:48:36 +09001305 if (!edev)
1306 return;
1307
anish kumar57e7cd32012-10-22 09:43:33 +09001308 mutex_lock(&extcon_dev_list_lock);
1309 list_del(&edev->entry);
1310 mutex_unlock(&extcon_dev_list_lock);
1311
Chanwoo Choidae61652013-09-27 09:19:40 +09001312 if (IS_ERR_OR_NULL(get_device(&edev->dev))) {
1313 dev_err(&edev->dev, "Failed to unregister extcon_dev (%s)\n",
1314 dev_name(&edev->dev));
anish kumar57e7cd32012-10-22 09:43:33 +09001315 return;
1316 }
1317
Wang, Xiaoming7585ca02013-11-01 18:48:14 -04001318 device_unregister(&edev->dev);
1319
anish kumar57e7cd32012-10-22 09:43:33 +09001320 if (edev->mutually_exclusive && edev->max_supported) {
1321 for (index = 0; edev->mutually_exclusive[index];
1322 index++)
1323 kfree(edev->d_attrs_muex[index].attr.name);
1324 kfree(edev->d_attrs_muex);
1325 kfree(edev->attrs_muex);
1326 }
1327
1328 for (index = 0; index < edev->max_supported; index++)
1329 kfree(edev->cables[index].attr_g.name);
1330
1331 if (edev->max_supported) {
1332 kfree(edev->extcon_dev_type.groups);
1333 kfree(edev->cables);
1334 }
1335
1336#if defined(CONFIG_ANDROID)
1337 if (switch_class)
Chanwoo Choidae61652013-09-27 09:19:40 +09001338 class_compat_remove_link(switch_class, &edev->dev, NULL);
anish kumar57e7cd32012-10-22 09:43:33 +09001339#endif
Chanwoo Choidae61652013-09-27 09:19:40 +09001340 put_device(&edev->dev);
MyungJoo Hamde55d872012-04-20 14:16:22 +09001341}
1342EXPORT_SYMBOL_GPL(extcon_dev_unregister);
1343
Chanwoo Choi1ad94ff2014-03-18 19:55:46 +09001344#ifdef CONFIG_OF
1345/*
1346 * extcon_get_edev_by_phandle - Get the extcon device from devicetree
1347 * @dev - instance to the given device
1348 * @index - index into list of extcon_dev
1349 *
1350 * return the instance of extcon device
1351 */
1352struct extcon_dev *extcon_get_edev_by_phandle(struct device *dev, int index)
1353{
1354 struct device_node *node;
1355 struct extcon_dev *edev;
1356
Chanwoo Choi7eae43a2015-06-21 23:48:36 +09001357 if (!dev)
1358 return ERR_PTR(-EINVAL);
1359
Chanwoo Choi1ad94ff2014-03-18 19:55:46 +09001360 if (!dev->of_node) {
Stephen Boyde8752b72016-07-05 11:57:05 -07001361 dev_dbg(dev, "device does not have a device node entry\n");
Chanwoo Choi1ad94ff2014-03-18 19:55:46 +09001362 return ERR_PTR(-EINVAL);
1363 }
1364
1365 node = of_parse_phandle(dev->of_node, "extcon", index);
1366 if (!node) {
Stephen Boyde8752b72016-07-05 11:57:05 -07001367 dev_dbg(dev, "failed to get phandle in %s node\n",
Chanwoo Choi1ad94ff2014-03-18 19:55:46 +09001368 dev->of_node->full_name);
1369 return ERR_PTR(-ENODEV);
1370 }
1371
Tomasz Figaf841afb2014-10-16 15:11:44 +02001372 mutex_lock(&extcon_dev_list_lock);
1373 list_for_each_entry(edev, &extcon_dev_list, entry) {
1374 if (edev->dev.parent && edev->dev.parent->of_node == node) {
1375 mutex_unlock(&extcon_dev_list_lock);
Peter Chen5d5c4c12016-07-01 18:41:55 +09001376 of_node_put(node);
Tomasz Figaf841afb2014-10-16 15:11:44 +02001377 return edev;
1378 }
Chanwoo Choi1ad94ff2014-03-18 19:55:46 +09001379 }
Tomasz Figaf841afb2014-10-16 15:11:44 +02001380 mutex_unlock(&extcon_dev_list_lock);
Peter Chen5d5c4c12016-07-01 18:41:55 +09001381 of_node_put(node);
Chanwoo Choi1ad94ff2014-03-18 19:55:46 +09001382
Tomasz Figaf841afb2014-10-16 15:11:44 +02001383 return ERR_PTR(-EPROBE_DEFER);
Chanwoo Choi1ad94ff2014-03-18 19:55:46 +09001384}
1385#else
1386struct extcon_dev *extcon_get_edev_by_phandle(struct device *dev, int index)
1387{
1388 return ERR_PTR(-ENOSYS);
1389}
1390#endif /* CONFIG_OF */
1391EXPORT_SYMBOL_GPL(extcon_get_edev_by_phandle);
1392
Chanwoo Choi707d7552015-04-15 13:57:51 +09001393/**
1394 * extcon_get_edev_name() - Get the name of the extcon device.
1395 * @edev: the extcon device
1396 */
1397const char *extcon_get_edev_name(struct extcon_dev *edev)
1398{
1399 return !edev ? NULL : edev->name;
1400}
1401
MyungJoo Hamde55d872012-04-20 14:16:22 +09001402static int __init extcon_class_init(void)
1403{
1404 return create_extcon_class();
1405}
1406module_init(extcon_class_init);
1407
1408static void __exit extcon_class_exit(void)
1409{
Peter Huewe0dc77b62012-09-24 15:32:31 +09001410#if defined(CONFIG_ANDROID)
1411 class_compat_unregister(switch_class);
1412#endif
MyungJoo Hamde55d872012-04-20 14:16:22 +09001413 class_destroy(extcon_class);
1414}
1415module_exit(extcon_class_exit);
1416
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +09001417MODULE_AUTHOR("Chanwoo Choi <cw00.choi@samsung.com>");
MyungJoo Hamde55d872012-04-20 14:16:22 +09001418MODULE_AUTHOR("Mike Lockwood <lockwood@android.com>");
1419MODULE_AUTHOR("Donggeun Kim <dg77.kim@samsung.com>");
1420MODULE_AUTHOR("MyungJoo Ham <myungjoo.ham@samsung.com>");
1421MODULE_DESCRIPTION("External connector (extcon) class driver");
1422MODULE_LICENSE("GPL");