blob: 09ac5e70c2f38706909d27a8369d357178d989bd [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>
Tomasz Figaf841afb2014-10-16 15:11:44 +020033#include <linux/of.h>
MyungJoo Hamde55d872012-04-20 14:16:22 +090034#include <linux/slab.h>
Mark Brown9baf3222012-08-16 20:03:21 +010035#include <linux/sysfs.h>
MyungJoo Hamde55d872012-04-20 14:16:22 +090036
Chanwoo Choie6cf0462016-12-26 20:37:38 +090037#include "extcon.h"
38
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +090039#define SUPPORTED_CABLE_MAX 32
40#define CABLE_NAME_MAX 30
41
Chanwoo Choi55e4e2f2016-07-11 16:34:52 +090042struct __extcon_info {
43 unsigned int type;
44 unsigned int id;
45 const char *name;
46
47} extcon_info[] = {
48 [EXTCON_NONE] = {
49 .type = EXTCON_TYPE_MISC,
50 .id = EXTCON_NONE,
51 .name = "NONE",
52 },
Chanwoo Choi73b6ecd2015-06-12 11:10:06 +090053
Chanwoo Choi8e9bc362015-05-19 19:58:49 +090054 /* USB external connector */
Chanwoo Choi55e4e2f2016-07-11 16:34:52 +090055 [EXTCON_USB] = {
56 .type = EXTCON_TYPE_USB,
57 .id = EXTCON_USB,
58 .name = "USB",
59 },
60 [EXTCON_USB_HOST] = {
61 .type = EXTCON_TYPE_USB,
62 .id = EXTCON_USB_HOST,
Chanwoo Choi86d6cda2017-01-07 05:17:36 +090063 .name = "USB-HOST",
Chanwoo Choi55e4e2f2016-07-11 16:34:52 +090064 },
Chanwoo Choi8e9bc362015-05-19 19:58:49 +090065
Chanwoo Choi11eecf92015-10-03 14:15:13 +090066 /* Charging external connector */
Chanwoo Choi55e4e2f2016-07-11 16:34:52 +090067 [EXTCON_CHG_USB_SDP] = {
68 .type = EXTCON_TYPE_CHG | EXTCON_TYPE_USB,
69 .id = EXTCON_CHG_USB_SDP,
70 .name = "SDP",
71 },
72 [EXTCON_CHG_USB_DCP] = {
73 .type = EXTCON_TYPE_CHG | EXTCON_TYPE_USB,
74 .id = EXTCON_CHG_USB_DCP,
75 .name = "DCP",
76 },
77 [EXTCON_CHG_USB_CDP] = {
78 .type = EXTCON_TYPE_CHG | EXTCON_TYPE_USB,
79 .id = EXTCON_CHG_USB_CDP,
80 .name = "CDP",
81 },
82 [EXTCON_CHG_USB_ACA] = {
83 .type = EXTCON_TYPE_CHG | EXTCON_TYPE_USB,
84 .id = EXTCON_CHG_USB_ACA,
85 .name = "ACA",
86 },
87 [EXTCON_CHG_USB_FAST] = {
88 .type = EXTCON_TYPE_CHG | EXTCON_TYPE_USB,
89 .id = EXTCON_CHG_USB_FAST,
90 .name = "FAST-CHARGER",
91 },
92 [EXTCON_CHG_USB_SLOW] = {
93 .type = EXTCON_TYPE_CHG | EXTCON_TYPE_USB,
94 .id = EXTCON_CHG_USB_SLOW,
95 .name = "SLOW-CHARGER",
96 },
Chanwoo Choi7fe95fb2016-08-05 18:15:46 +090097 [EXTCON_CHG_WPT] = {
98 .type = EXTCON_TYPE_CHG,
99 .id = EXTCON_CHG_WPT,
100 .name = "WPT",
101 },
Chanwoo Choi3c5f0e02017-01-02 13:03:03 +0900102 [EXTCON_CHG_USB_PD] = {
103 .type = EXTCON_TYPE_CHG | EXTCON_TYPE_USB,
104 .id = EXTCON_CHG_USB_PD,
105 .name = "PD",
106 },
Chanwoo Choi8e9bc362015-05-19 19:58:49 +0900107
Chanwoo Choi11eecf92015-10-03 14:15:13 +0900108 /* Jack external connector */
Chanwoo Choi55e4e2f2016-07-11 16:34:52 +0900109 [EXTCON_JACK_MICROPHONE] = {
110 .type = EXTCON_TYPE_JACK,
111 .id = EXTCON_JACK_MICROPHONE,
112 .name = "MICROPHONE",
113 },
114 [EXTCON_JACK_HEADPHONE] = {
115 .type = EXTCON_TYPE_JACK,
116 .id = EXTCON_JACK_HEADPHONE,
117 .name = "HEADPHONE",
118 },
119 [EXTCON_JACK_LINE_IN] = {
120 .type = EXTCON_TYPE_JACK,
121 .id = EXTCON_JACK_LINE_IN,
122 .name = "LINE-IN",
123 },
124 [EXTCON_JACK_LINE_OUT] = {
125 .type = EXTCON_TYPE_JACK,
126 .id = EXTCON_JACK_LINE_OUT,
127 .name = "LINE-OUT",
128 },
129 [EXTCON_JACK_VIDEO_IN] = {
130 .type = EXTCON_TYPE_JACK,
131 .id = EXTCON_JACK_VIDEO_IN,
132 .name = "VIDEO-IN",
133 },
134 [EXTCON_JACK_VIDEO_OUT] = {
135 .type = EXTCON_TYPE_JACK,
136 .id = EXTCON_JACK_VIDEO_OUT,
137 .name = "VIDEO-OUT",
138 },
139 [EXTCON_JACK_SPDIF_IN] = {
140 .type = EXTCON_TYPE_JACK,
141 .id = EXTCON_JACK_SPDIF_IN,
142 .name = "SPDIF-IN",
143 },
144 [EXTCON_JACK_SPDIF_OUT] = {
145 .type = EXTCON_TYPE_JACK,
146 .id = EXTCON_JACK_SPDIF_OUT,
147 .name = "SPDIF-OUT",
148 },
Chanwoo Choi8e9bc362015-05-19 19:58:49 +0900149
Chanwoo Choi11eecf92015-10-03 14:15:13 +0900150 /* Display external connector */
Chanwoo Choi55e4e2f2016-07-11 16:34:52 +0900151 [EXTCON_DISP_HDMI] = {
152 .type = EXTCON_TYPE_DISP,
153 .id = EXTCON_DISP_HDMI,
154 .name = "HDMI",
155 },
156 [EXTCON_DISP_MHL] = {
157 .type = EXTCON_TYPE_DISP,
158 .id = EXTCON_DISP_MHL,
159 .name = "MHL",
160 },
161 [EXTCON_DISP_DVI] = {
162 .type = EXTCON_TYPE_DISP,
163 .id = EXTCON_DISP_DVI,
164 .name = "DVI",
165 },
166 [EXTCON_DISP_VGA] = {
167 .type = EXTCON_TYPE_DISP,
168 .id = EXTCON_DISP_VGA,
169 .name = "VGA",
170 },
Chris Zhong21641882016-07-22 01:13:02 +0900171 [EXTCON_DISP_DP] = {
172 .type = EXTCON_TYPE_DISP | EXTCON_TYPE_USB,
173 .id = EXTCON_DISP_DP,
174 .name = "DP",
175 },
Chanwoo Choi9c0595d2016-08-05 17:49:23 +0900176 [EXTCON_DISP_HMD] = {
177 .type = EXTCON_TYPE_DISP | EXTCON_TYPE_USB,
178 .id = EXTCON_DISP_HMD,
179 .name = "HMD",
180 },
Chanwoo Choi8e9bc362015-05-19 19:58:49 +0900181
Chanwoo Choi11eecf92015-10-03 14:15:13 +0900182 /* Miscellaneous external connector */
Chanwoo Choi55e4e2f2016-07-11 16:34:52 +0900183 [EXTCON_DOCK] = {
184 .type = EXTCON_TYPE_MISC,
185 .id = EXTCON_DOCK,
186 .name = "DOCK",
187 },
188 [EXTCON_JIG] = {
189 .type = EXTCON_TYPE_MISC,
190 .id = EXTCON_JIG,
191 .name = "JIG",
192 },
193 [EXTCON_MECHANICAL] = {
194 .type = EXTCON_TYPE_MISC,
195 .id = EXTCON_MECHANICAL,
196 .name = "MECHANICAL",
197 },
Chanwoo Choi8e9bc362015-05-19 19:58:49 +0900198
Chanwoo Choi55e4e2f2016-07-11 16:34:52 +0900199 { /* sentinel */ }
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900200};
201
Chanwoo Choi20f7b532016-06-27 19:17:06 +0900202/**
203 * struct extcon_cable - An internal data for each cable of extcon device.
204 * @edev: The extcon device
205 * @cable_index: Index of this cable in the edev
206 * @attr_g: Attribute group for the cable
207 * @attr_name: "name" sysfs entry
208 * @attr_state: "state" sysfs entry
209 * @attrs: Array pointing to attr_name and attr_state for attr_g
210 */
211struct extcon_cable {
212 struct extcon_dev *edev;
213 int cable_index;
214
215 struct attribute_group attr_g;
216 struct device_attribute attr_name;
217 struct device_attribute attr_state;
218
219 struct attribute *attrs[3]; /* to be fed to attr_g.attrs */
Chanwoo Choi792e7e9e2016-07-11 19:30:43 +0900220
221 union extcon_property_value usb_propval[EXTCON_PROP_USB_CNT];
222 union extcon_property_value chg_propval[EXTCON_PROP_CHG_CNT];
223 union extcon_property_value jack_propval[EXTCON_PROP_JACK_CNT];
224 union extcon_property_value disp_propval[EXTCON_PROP_DISP_CNT];
Chanwoo Choi7f2a0a12016-07-25 21:15:19 +0900225
226 unsigned long usb_bits[BITS_TO_LONGS(EXTCON_PROP_USB_CNT)];
227 unsigned long chg_bits[BITS_TO_LONGS(EXTCON_PROP_CHG_CNT)];
228 unsigned long jack_bits[BITS_TO_LONGS(EXTCON_PROP_JACK_CNT)];
229 unsigned long disp_bits[BITS_TO_LONGS(EXTCON_PROP_DISP_CNT)];
Chanwoo Choi20f7b532016-06-27 19:17:06 +0900230};
231
Mark Brownbe3a07f2012-06-05 16:14:38 +0100232static struct class *extcon_class;
MyungJoo Ham449a2bf2012-04-23 20:19:57 +0900233#if defined(CONFIG_ANDROID)
MyungJoo Hamde55d872012-04-20 14:16:22 +0900234static struct class_compat *switch_class;
MyungJoo Ham449a2bf2012-04-23 20:19:57 +0900235#endif /* CONFIG_ANDROID */
MyungJoo Hamde55d872012-04-20 14:16:22 +0900236
Donggeun Kim74c5d092012-04-20 14:16:24 +0900237static LIST_HEAD(extcon_dev_list);
238static DEFINE_MUTEX(extcon_dev_list_lock);
239
MyungJoo Hambde68e62012-04-20 14:16:26 +0900240/**
241 * check_mutually_exclusive - Check if new_state violates mutually_exclusive
Chanwoo Choia75e1c72013-08-31 13:16:49 +0900242 * condition.
MyungJoo Hambde68e62012-04-20 14:16:26 +0900243 * @edev: the extcon device
244 * @new_state: new cable attach status for @edev
245 *
246 * Returns 0 if nothing violates. Returns the index + 1 for the first
247 * violated condition.
248 */
249static int check_mutually_exclusive(struct extcon_dev *edev, u32 new_state)
250{
251 int i = 0;
252
253 if (!edev->mutually_exclusive)
254 return 0;
255
256 for (i = 0; edev->mutually_exclusive[i]; i++) {
anish kumar28c0ada2012-08-30 00:35:10 +0530257 int weight;
MyungJoo Hambde68e62012-04-20 14:16:26 +0900258 u32 correspondants = new_state & edev->mutually_exclusive[i];
MyungJoo Hambde68e62012-04-20 14:16:26 +0900259
anish kumar28c0ada2012-08-30 00:35:10 +0530260 /* calculate the total number of bits set */
261 weight = hweight32(correspondants);
262 if (weight > 1)
263 return i + 1;
MyungJoo Hambde68e62012-04-20 14:16:26 +0900264 }
265
266 return 0;
267}
268
Chanwoo Choi73b6ecd2015-06-12 11:10:06 +0900269static int find_cable_index_by_id(struct extcon_dev *edev, const unsigned int id)
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +0900270{
271 int i;
272
273 /* Find the the index of extcon cable in edev->supported_cable */
274 for (i = 0; i < edev->max_supported; i++) {
275 if (edev->supported_cable[i] == id)
276 return i;
277 }
278
279 return -EINVAL;
280}
281
Chanwoo Choi792e7e9e2016-07-11 19:30:43 +0900282static int get_extcon_type(unsigned int prop)
283{
284 switch (prop) {
285 case EXTCON_PROP_USB_MIN ... EXTCON_PROP_USB_MAX:
286 return EXTCON_TYPE_USB;
287 case EXTCON_PROP_CHG_MIN ... EXTCON_PROP_CHG_MAX:
288 return EXTCON_TYPE_CHG;
289 case EXTCON_PROP_JACK_MIN ... EXTCON_PROP_JACK_MAX:
290 return EXTCON_TYPE_JACK;
291 case EXTCON_PROP_DISP_MIN ... EXTCON_PROP_DISP_MAX:
292 return EXTCON_TYPE_DISP;
293 default:
294 return -EINVAL;
295 }
296}
297
298static bool is_extcon_attached(struct extcon_dev *edev, unsigned int index)
299{
300 return !!(edev->state & BIT(index));
301}
302
Chanwoo Choiab11af042016-07-22 13:16:34 +0900303static bool is_extcon_changed(struct extcon_dev *edev, int index,
304 bool new_state)
Chanwoo Choi046050f2015-05-19 20:01:12 +0900305{
Chanwoo Choiab11af042016-07-22 13:16:34 +0900306 int state = !!(edev->state & BIT(index));
307 return (state != new_state);
Chanwoo Choi046050f2015-05-19 20:01:12 +0900308}
309
Chanwoo Choi792e7e9e2016-07-11 19:30:43 +0900310static bool is_extcon_property_supported(unsigned int id, unsigned int prop)
311{
312 int type;
313
314 /* Check whether the property is supported or not. */
315 type = get_extcon_type(prop);
316 if (type < 0)
317 return false;
318
319 /* Check whether a specific extcon id supports the property or not. */
320 return !!(extcon_info[id].type & type);
321}
322
Chanwoo Choi7f2a0a12016-07-25 21:15:19 +0900323static int is_extcon_property_capability(struct extcon_dev *edev,
324 unsigned int id, int index,unsigned int prop)
325{
326 struct extcon_cable *cable;
327 int type, ret;
328
329 /* Check whether the property is supported or not. */
330 type = get_extcon_type(prop);
331 if (type < 0)
332 return type;
333
334 cable = &edev->cables[index];
335
336 switch (type) {
337 case EXTCON_TYPE_USB:
338 ret = test_bit(prop - EXTCON_PROP_USB_MIN, cable->usb_bits);
339 break;
340 case EXTCON_TYPE_CHG:
341 ret = test_bit(prop - EXTCON_PROP_CHG_MIN, cable->chg_bits);
342 break;
343 case EXTCON_TYPE_JACK:
344 ret = test_bit(prop - EXTCON_PROP_JACK_MIN, cable->jack_bits);
345 break;
346 case EXTCON_TYPE_DISP:
347 ret = test_bit(prop - EXTCON_PROP_DISP_MIN, cable->disp_bits);
348 break;
349 default:
350 ret = -EINVAL;
351 }
352
353 return ret;
354}
355
Chanwoo Choi792e7e9e2016-07-11 19:30:43 +0900356static void init_property(struct extcon_dev *edev, unsigned int id, int index)
357{
358 unsigned int type = extcon_info[id].type;
359 struct extcon_cable *cable = &edev->cables[index];
360
361 if (EXTCON_TYPE_USB & type)
362 memset(cable->usb_propval, 0, sizeof(cable->usb_propval));
363 if (EXTCON_TYPE_CHG & type)
364 memset(cable->chg_propval, 0, sizeof(cable->chg_propval));
365 if (EXTCON_TYPE_JACK & type)
366 memset(cable->jack_propval, 0, sizeof(cable->jack_propval));
367 if (EXTCON_TYPE_DISP & type)
368 memset(cable->disp_propval, 0, sizeof(cable->disp_propval));
369}
370
MyungJoo Hamde55d872012-04-20 14:16:22 +0900371static ssize_t state_show(struct device *dev, struct device_attribute *attr,
372 char *buf)
373{
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900374 int i, count = 0;
Jingoo Hancb8bb3a2013-09-09 14:33:32 +0900375 struct extcon_dev *edev = dev_get_drvdata(dev);
MyungJoo Hamde55d872012-04-20 14:16:22 +0900376
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900377 if (edev->max_supported == 0)
378 return sprintf(buf, "%u\n", edev->state);
379
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +0900380 for (i = 0; i < edev->max_supported; i++) {
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900381 count += sprintf(buf + count, "%s=%d\n",
Chanwoo Choi55e4e2f2016-07-11 16:34:52 +0900382 extcon_info[edev->supported_cable[i]].name,
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900383 !!(edev->state & (1 << i)));
384 }
385
386 return count;
387}
Chanwoo Choi5d5321e2016-07-18 15:39:28 +0900388static DEVICE_ATTR_RO(state);
MyungJoo Hamde55d872012-04-20 14:16:22 +0900389
390static ssize_t name_show(struct device *dev, struct device_attribute *attr,
391 char *buf)
392{
Jingoo Hancb8bb3a2013-09-09 14:33:32 +0900393 struct extcon_dev *edev = dev_get_drvdata(dev);
MyungJoo Hamde55d872012-04-20 14:16:22 +0900394
Chanwoo Choi71c3ffa2015-04-15 15:02:01 +0900395 return sprintf(buf, "%s\n", edev->name);
MyungJoo Hamde55d872012-04-20 14:16:22 +0900396}
Greg Kroah-Hartmanaf01da02013-07-24 15:05:10 -0700397static DEVICE_ATTR_RO(name);
MyungJoo Hamde55d872012-04-20 14:16:22 +0900398
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900399static ssize_t cable_name_show(struct device *dev,
400 struct device_attribute *attr, char *buf)
401{
402 struct extcon_cable *cable = container_of(attr, struct extcon_cable,
403 attr_name);
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +0900404 int i = cable->cable_index;
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900405
406 return sprintf(buf, "%s\n",
Chanwoo Choi55e4e2f2016-07-11 16:34:52 +0900407 extcon_info[cable->edev->supported_cable[i]].name);
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900408}
409
410static ssize_t cable_state_show(struct device *dev,
411 struct device_attribute *attr, char *buf)
412{
413 struct extcon_cable *cable = container_of(attr, struct extcon_cable,
414 attr_state);
415
Roger Quadrosbe052cc2015-07-07 16:06:15 +0300416 int i = cable->cable_index;
417
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900418 return sprintf(buf, "%d\n",
Chanwoo Choi575c2b862016-07-22 13:03:17 +0900419 extcon_get_state(cable->edev, cable->edev->supported_cable[i]));
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900420}
421
MyungJoo Hamde55d872012-04-20 14:16:22 +0900422/**
Chanwoo Choiab11af042016-07-22 13:16:34 +0900423 * extcon_sync() - Synchronize the states for both the attached/detached
424 * @edev: the extcon device that has the cable.
MyungJoo Hamde55d872012-04-20 14:16:22 +0900425 *
Chanwoo Choiab11af042016-07-22 13:16:34 +0900426 * This function send a notification to synchronize the all states of a
427 * specific external connector
MyungJoo Hamde55d872012-04-20 14:16:22 +0900428 */
Chanwoo Choiab11af042016-07-22 13:16:34 +0900429int extcon_sync(struct extcon_dev *edev, unsigned int id)
MyungJoo Hamde55d872012-04-20 14:16:22 +0900430{
431 char name_buf[120];
432 char state_buf[120];
433 char *prop_buf;
434 char *envp[3];
435 int env_offset = 0;
436 int length;
Chanwoo Choi046050f2015-05-19 20:01:12 +0900437 int index;
Chanwoo Choiab11af042016-07-22 13:16:34 +0900438 int state;
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900439 unsigned long flags;
MyungJoo Hamde55d872012-04-20 14:16:22 +0900440
Chanwoo Choi7eae43a2015-06-21 23:48:36 +0900441 if (!edev)
442 return -EINVAL;
443
Chanwoo Choiab11af042016-07-22 13:16:34 +0900444 index = find_cable_index_by_id(edev, id);
445 if (index < 0)
446 return index;
447
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900448 spin_lock_irqsave(&edev->lock, flags);
MyungJoo Hamde55d872012-04-20 14:16:22 +0900449
Chanwoo Choiab11af042016-07-22 13:16:34 +0900450 state = !!(edev->state & BIT(index));
451 raw_notifier_call_chain(&edev->nh[index], state, edev);
Roger Quadrosf7a89812015-07-06 17:46:58 +0300452
Chanwoo Choiab11af042016-07-22 13:16:34 +0900453 /* This could be in interrupt handler */
454 prop_buf = (char *)get_zeroed_page(GFP_ATOMIC);
455 if (!prop_buf) {
456 /* Unlock early before uevent */
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900457 spin_unlock_irqrestore(&edev->lock, flags);
Chanwoo Choiab11af042016-07-22 13:16:34 +0900458
459 dev_err(&edev->dev, "out of memory in extcon_set_state\n");
460 kobject_uevent(&edev->dev.kobj, KOBJ_CHANGE);
461
Pan Biane7d9dd52016-12-03 16:56:49 +0800462 return -ENOMEM;
MyungJoo Hamde55d872012-04-20 14:16:22 +0900463 }
MyungJoo Hambde68e62012-04-20 14:16:26 +0900464
Chanwoo Choiab11af042016-07-22 13:16:34 +0900465 length = name_show(&edev->dev, NULL, prop_buf);
466 if (length > 0) {
467 if (prop_buf[length - 1] == '\n')
468 prop_buf[length - 1] = 0;
469 snprintf(name_buf, sizeof(name_buf), "NAME=%s", prop_buf);
470 envp[env_offset++] = name_buf;
471 }
472
473 length = state_show(&edev->dev, NULL, prop_buf);
474 if (length > 0) {
475 if (prop_buf[length - 1] == '\n')
476 prop_buf[length - 1] = 0;
477 snprintf(state_buf, sizeof(state_buf), "STATE=%s", prop_buf);
478 envp[env_offset++] = state_buf;
479 }
480 envp[env_offset] = NULL;
481
482 /* Unlock early before uevent */
483 spin_unlock_irqrestore(&edev->lock, flags);
484 kobject_uevent_env(&edev->dev.kobj, KOBJ_CHANGE, envp);
485 free_page((unsigned long)prop_buf);
486
MyungJoo Hambde68e62012-04-20 14:16:26 +0900487 return 0;
MyungJoo Hamde55d872012-04-20 14:16:22 +0900488}
Chanwoo Choiab11af042016-07-22 13:16:34 +0900489EXPORT_SYMBOL_GPL(extcon_sync);
MyungJoo Hamde55d872012-04-20 14:16:22 +0900490
Donggeun Kim74c5d092012-04-20 14:16:24 +0900491/**
Chanwoo Choi575c2b862016-07-22 13:03:17 +0900492 * extcon_get_state() - Get the state of a external connector.
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900493 * @edev: the extcon device that has the cable.
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +0900494 * @id: the unique id of each external connector in extcon enumeration.
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900495 */
Chanwoo Choi575c2b862016-07-22 13:03:17 +0900496int extcon_get_state(struct extcon_dev *edev, const unsigned int id)
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900497{
Chanwoo Choi575c2b862016-07-22 13:03:17 +0900498 int index, state;
499 unsigned long flags;
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +0900500
Chanwoo Choi7eae43a2015-06-21 23:48:36 +0900501 if (!edev)
502 return -EINVAL;
503
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +0900504 index = find_cable_index_by_id(edev, id);
505 if (index < 0)
506 return index;
507
Chanwoo Choi575c2b862016-07-22 13:03:17 +0900508 spin_lock_irqsave(&edev->lock, flags);
509 state = is_extcon_attached(edev, index);
510 spin_unlock_irqrestore(&edev->lock, flags);
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900511
Chanwoo Choi575c2b862016-07-22 13:03:17 +0900512 return state;
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900513}
Chanwoo Choi575c2b862016-07-22 13:03:17 +0900514EXPORT_SYMBOL_GPL(extcon_get_state);
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900515
516/**
Chanwoo Choi575c2b862016-07-22 13:03:17 +0900517 * extcon_set_state() - Set the state of a external connector.
Chanwoo Choiab11af042016-07-22 13:16:34 +0900518 * without a notification.
Chanwoo Choia75e1c72013-08-31 13:16:49 +0900519 * @edev: the extcon device that has the cable.
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +0900520 * @id: the unique id of each external connector
521 * in extcon enumeration.
522 * @state: the new cable status. The default semantics is
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900523 * true: attached / false: detached.
Chanwoo Choiab11af042016-07-22 13:16:34 +0900524 *
525 * This function only set the state of a external connector without
526 * a notification. To synchronize the data of a external connector,
527 * use extcon_set_state_sync() and extcon_sync().
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900528 */
Chanwoo Choi575c2b862016-07-22 13:03:17 +0900529int extcon_set_state(struct extcon_dev *edev, unsigned int id,
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +0900530 bool cable_state)
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900531{
Chanwoo Choiab11af042016-07-22 13:16:34 +0900532 unsigned long flags;
533 int index, ret = 0;
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900534
Chanwoo Choi7eae43a2015-06-21 23:48:36 +0900535 if (!edev)
536 return -EINVAL;
537
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +0900538 index = find_cable_index_by_id(edev, id);
539 if (index < 0)
540 return index;
541
Chanwoo Choiab11af042016-07-22 13:16:34 +0900542 spin_lock_irqsave(&edev->lock, flags);
543
544 /* Check whether the external connector's state is changed. */
545 if (!is_extcon_changed(edev, index, cable_state))
546 goto out;
547
548 if (check_mutually_exclusive(edev,
549 (edev->state & ~BIT(index)) | (cable_state & BIT(index)))) {
550 ret = -EPERM;
551 goto out;
552 }
553
Chanwoo Choi792e7e9e2016-07-11 19:30:43 +0900554 /*
555 * Initialize the value of extcon property before setting
556 * the detached state for an external connector.
557 */
558 if (!cable_state)
559 init_property(edev, id, index);
560
Chanwoo Choiab11af042016-07-22 13:16:34 +0900561 /* Update the state for a external connector. */
562 if (cable_state)
563 edev->state |= BIT(index);
564 else
565 edev->state &= ~(BIT(index));
566out:
567 spin_unlock_irqrestore(&edev->lock, flags);
568
569 return ret;
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900570}
Chanwoo Choi575c2b862016-07-22 13:03:17 +0900571EXPORT_SYMBOL_GPL(extcon_set_state);
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900572
573/**
Chanwoo Choiab11af042016-07-22 13:16:34 +0900574 * extcon_set_state_sync() - Set the state of a external connector
575 * with a notification.
576 * @edev: the extcon device that has the cable.
577 * @id: the unique id of each external connector
578 * in extcon enumeration.
579 * @state: the new cable status. The default semantics is
580 * true: attached / false: detached.
581 *
582 * This function set the state of external connector and synchronize the data
583 * by usning a notification.
584 */
585int extcon_set_state_sync(struct extcon_dev *edev, unsigned int id,
586 bool cable_state)
587{
588 int ret, index;
589 unsigned long flags;
590
591 index = find_cable_index_by_id(edev, id);
592 if (index < 0)
593 return index;
594
595 /* Check whether the external connector's state is changed. */
596 spin_lock_irqsave(&edev->lock, flags);
597 ret = is_extcon_changed(edev, index, cable_state);
598 spin_unlock_irqrestore(&edev->lock, flags);
599 if (!ret)
600 return 0;
601
602 ret = extcon_set_state(edev, id, cable_state);
603 if (ret < 0)
604 return ret;
605
606 return extcon_sync(edev, id);
607}
608EXPORT_SYMBOL_GPL(extcon_set_state_sync);
609
610/**
Chanwoo Choi792e7e9e2016-07-11 19:30:43 +0900611 * extcon_get_property() - Get the property value of a specific cable.
612 * @edev: the extcon device that has the cable.
613 * @id: the unique id of each external connector
614 * in extcon enumeration.
615 * @prop: the property id among enum extcon_property.
616 * @prop_val: the pointer which store the value of property.
617 *
618 * When getting the property value of external connector, the external connector
619 * should be attached. If detached state, function just return 0 without
620 * property value. Also, the each property should be included in the list of
621 * supported properties according to the type of external connectors.
622 *
623 * Returns 0 if success or error number if fail
624 */
625int extcon_get_property(struct extcon_dev *edev, unsigned int id,
626 unsigned int prop,
627 union extcon_property_value *prop_val)
628{
629 struct extcon_cable *cable;
630 unsigned long flags;
631 int index, ret = 0;
632
633 *prop_val = (union extcon_property_value)(0);
634
635 if (!edev)
636 return -EINVAL;
637
638 /* Check whether the property is supported or not */
639 if (!is_extcon_property_supported(id, prop))
640 return -EINVAL;
641
642 /* Find the cable index of external connector by using id */
643 index = find_cable_index_by_id(edev, id);
644 if (index < 0)
645 return index;
646
647 spin_lock_irqsave(&edev->lock, flags);
648
Chanwoo Choi7f2a0a12016-07-25 21:15:19 +0900649 /* Check whether the property is available or not. */
650 if (!is_extcon_property_capability(edev, id, index, prop)) {
651 spin_unlock_irqrestore(&edev->lock, flags);
652 return -EPERM;
653 }
654
Chanwoo Choi792e7e9e2016-07-11 19:30:43 +0900655 /*
656 * Check whether the external connector is attached.
657 * If external connector is detached, the user can not
658 * get the property value.
659 */
660 if (!is_extcon_attached(edev, index)) {
661 spin_unlock_irqrestore(&edev->lock, flags);
662 return 0;
663 }
664
665 cable = &edev->cables[index];
666
667 /* Get the property value according to extcon type */
668 switch (prop) {
669 case EXTCON_PROP_USB_MIN ... EXTCON_PROP_USB_MAX:
670 *prop_val = cable->usb_propval[prop - EXTCON_PROP_USB_MIN];
671 break;
672 case EXTCON_PROP_CHG_MIN ... EXTCON_PROP_CHG_MAX:
673 *prop_val = cable->chg_propval[prop - EXTCON_PROP_CHG_MIN];
674 break;
675 case EXTCON_PROP_JACK_MIN ... EXTCON_PROP_JACK_MAX:
676 *prop_val = cable->jack_propval[prop - EXTCON_PROP_JACK_MIN];
677 break;
678 case EXTCON_PROP_DISP_MIN ... EXTCON_PROP_DISP_MAX:
679 *prop_val = cable->disp_propval[prop - EXTCON_PROP_DISP_MIN];
680 break;
681 default:
682 ret = -EINVAL;
683 break;
684 }
685
686 spin_unlock_irqrestore(&edev->lock, flags);
687
688 return ret;
689}
690EXPORT_SYMBOL_GPL(extcon_get_property);
691
692/**
693 * extcon_set_property() - Set the property value of a specific cable.
694 * @edev: the extcon device that has the cable.
695 * @id: the unique id of each external connector
696 * in extcon enumeration.
697 * @prop: the property id among enum extcon_property.
698 * @prop_val: the pointer including the new value of property.
699 *
700 * The each property should be included in the list of supported properties
701 * according to the type of external connectors.
702 *
703 * Returns 0 if success or error number if fail
704 */
705int extcon_set_property(struct extcon_dev *edev, unsigned int id,
706 unsigned int prop,
707 union extcon_property_value prop_val)
708{
709 struct extcon_cable *cable;
710 unsigned long flags;
711 int index, ret = 0;
712
713 if (!edev)
714 return -EINVAL;
715
716 /* Check whether the property is supported or not */
717 if (!is_extcon_property_supported(id, prop))
718 return -EINVAL;
719
720 /* Find the cable index of external connector by using id */
721 index = find_cable_index_by_id(edev, id);
722 if (index < 0)
723 return index;
724
725 spin_lock_irqsave(&edev->lock, flags);
726
Chanwoo Choi7f2a0a12016-07-25 21:15:19 +0900727 /* Check whether the property is available or not. */
728 if (!is_extcon_property_capability(edev, id, index, prop)) {
729 spin_unlock_irqrestore(&edev->lock, flags);
730 return -EPERM;
731 }
732
Chanwoo Choi792e7e9e2016-07-11 19:30:43 +0900733 cable = &edev->cables[index];
734
735 /* Set the property value according to extcon type */
736 switch (prop) {
737 case EXTCON_PROP_USB_MIN ... EXTCON_PROP_USB_MAX:
738 cable->usb_propval[prop - EXTCON_PROP_USB_MIN] = prop_val;
739 break;
740 case EXTCON_PROP_CHG_MIN ... EXTCON_PROP_CHG_MAX:
741 cable->chg_propval[prop - EXTCON_PROP_CHG_MIN] = prop_val;
742 break;
743 case EXTCON_PROP_JACK_MIN ... EXTCON_PROP_JACK_MAX:
744 cable->jack_propval[prop - EXTCON_PROP_JACK_MIN] = prop_val;
745 break;
746 case EXTCON_PROP_DISP_MIN ... EXTCON_PROP_DISP_MAX:
747 cable->disp_propval[prop - EXTCON_PROP_DISP_MIN] = prop_val;
748 break;
749 default:
750 ret = -EINVAL;
751 break;
752 }
753
754 spin_unlock_irqrestore(&edev->lock, flags);
755
756 return ret;
757}
758EXPORT_SYMBOL_GPL(extcon_set_property);
759
760/**
Chanwoo Choiab11af042016-07-22 13:16:34 +0900761 * extcon_set_property_sync() - Set the property value of a specific cable
762 with a notification.
763 * @prop_val: the pointer including the new value of property.
764 *
765 * When setting the property value of external connector, the external connector
766 * should be attached. The each property should be included in the list of
767 * supported properties according to the type of external connectors.
768 *
769 * Returns 0 if success or error number if fail
770 */
771int extcon_set_property_sync(struct extcon_dev *edev, unsigned int id,
772 unsigned int prop,
773 union extcon_property_value prop_val)
774{
775 int ret;
776
777 ret = extcon_set_property(edev, id, prop, prop_val);
778 if (ret < 0)
779 return ret;
780
781 return extcon_sync(edev, id);
782}
783EXPORT_SYMBOL_GPL(extcon_set_property_sync);
784
785/**
Chanwoo Choi7f2a0a12016-07-25 21:15:19 +0900786 * extcon_get_property_capability() - Get the capability of property
787 * of an external connector.
788 * @edev: the extcon device that has the cable.
789 * @id: the unique id of each external connector
790 * in extcon enumeration.
791 * @prop: the property id among enum extcon_property.
792 *
793 * Returns 1 if the property is available or 0 if not available.
794 */
795int extcon_get_property_capability(struct extcon_dev *edev, unsigned int id,
796 unsigned int prop)
797{
798 int index;
799
800 if (!edev)
801 return -EINVAL;
802
803 /* Check whether the property is supported or not */
804 if (!is_extcon_property_supported(id, prop))
805 return -EINVAL;
806
807 /* Find the cable index of external connector by using id */
808 index = find_cable_index_by_id(edev, id);
809 if (index < 0)
810 return index;
811
812 return is_extcon_property_capability(edev, id, index, prop);
813}
814EXPORT_SYMBOL_GPL(extcon_get_property_capability);
815
816/**
817 * extcon_set_property_capability() - Set the capability of a property
818 * of an external connector.
819 * @edev: the extcon device that has the cable.
820 * @id: the unique id of each external connector
821 * in extcon enumeration.
822 * @prop: the property id among enum extcon_property.
823 *
824 * This function set the capability of a property for an external connector
825 * to mark the bit in capability bitmap which mean the available state of
826 * a property.
827 *
828 * Returns 0 if success or error number if fail
829 */
830int extcon_set_property_capability(struct extcon_dev *edev, unsigned int id,
831 unsigned int prop)
832{
833 struct extcon_cable *cable;
834 int index, type, ret = 0;
835
836 if (!edev)
837 return -EINVAL;
838
839 /* Check whether the property is supported or not. */
840 if (!is_extcon_property_supported(id, prop))
841 return -EINVAL;
842
843 /* Find the cable index of external connector by using id. */
844 index = find_cable_index_by_id(edev, id);
845 if (index < 0)
846 return index;
847
848 type = get_extcon_type(prop);
849 if (type < 0)
850 return type;
851
852 cable = &edev->cables[index];
853
854 switch (type) {
855 case EXTCON_TYPE_USB:
856 __set_bit(prop - EXTCON_PROP_USB_MIN, cable->usb_bits);
857 break;
858 case EXTCON_TYPE_CHG:
859 __set_bit(prop - EXTCON_PROP_CHG_MIN, cable->chg_bits);
860 break;
861 case EXTCON_TYPE_JACK:
862 __set_bit(prop - EXTCON_PROP_JACK_MIN, cable->jack_bits);
863 break;
864 case EXTCON_TYPE_DISP:
865 __set_bit(prop - EXTCON_PROP_DISP_MIN, cable->disp_bits);
866 break;
867 default:
868 ret = -EINVAL;
869 }
870
871 return ret;
872}
873EXPORT_SYMBOL_GPL(extcon_set_property_capability);
874
875/**
Donggeun Kim74c5d092012-04-20 14:16:24 +0900876 * extcon_get_extcon_dev() - Get the extcon device instance from the name
877 * @extcon_name: The extcon name provided with extcon_dev_register()
878 */
879struct extcon_dev *extcon_get_extcon_dev(const char *extcon_name)
880{
881 struct extcon_dev *sd;
882
Chanwoo Choi7eae43a2015-06-21 23:48:36 +0900883 if (!extcon_name)
884 return ERR_PTR(-EINVAL);
885
Donggeun Kim74c5d092012-04-20 14:16:24 +0900886 mutex_lock(&extcon_dev_list_lock);
887 list_for_each_entry(sd, &extcon_dev_list, entry) {
888 if (!strcmp(sd->name, extcon_name))
889 goto out;
890 }
891 sd = NULL;
892out:
893 mutex_unlock(&extcon_dev_list_lock);
894 return sd;
895}
896EXPORT_SYMBOL_GPL(extcon_get_extcon_dev);
897
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900898/**
Peter Meerwaldc338bb02012-08-23 09:11:54 +0900899 * extcon_register_notifier() - Register a notifiee to get notified by
Chanwoo Choia75e1c72013-08-31 13:16:49 +0900900 * any attach status changes from the extcon.
Chanwoo Choi046050f2015-05-19 20:01:12 +0900901 * @edev: the extcon device that has the external connecotr.
902 * @id: the unique id of each external connector in extcon enumeration.
Donggeun Kim74c5d092012-04-20 14:16:24 +0900903 * @nb: a notifier block to be registered.
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900904 *
905 * Note that the second parameter given to the callback of nb (val) is
906 * "old_state", not the current state. The current state can be retrieved
907 * by looking at the third pameter (edev pointer)'s state value.
Donggeun Kim74c5d092012-04-20 14:16:24 +0900908 */
Chanwoo Choi73b6ecd2015-06-12 11:10:06 +0900909int extcon_register_notifier(struct extcon_dev *edev, unsigned int id,
Chanwoo Choi046050f2015-05-19 20:01:12 +0900910 struct notifier_block *nb)
Donggeun Kim74c5d092012-04-20 14:16:24 +0900911{
Hans de Goede66bee352015-03-21 17:26:24 +0100912 unsigned long flags;
Maninder Singh2c8116a2016-08-01 14:51:30 +0530913 int ret, idx = -EINVAL;
Chanwoo Choi046050f2015-05-19 20:01:12 +0900914
Chanwoo Choi01b4c9a2016-12-19 21:02:33 +0900915 if (!edev || !nb)
Chanwoo Choi7eae43a2015-06-21 23:48:36 +0900916 return -EINVAL;
917
Chanwoo Choi01b4c9a2016-12-19 21:02:33 +0900918 idx = find_cable_index_by_id(edev, id);
919 if (idx < 0)
920 return idx;
Hans de Goede66bee352015-03-21 17:26:24 +0100921
Chanwoo Choi01b4c9a2016-12-19 21:02:33 +0900922 spin_lock_irqsave(&edev->lock, flags);
923 ret = raw_notifier_chain_register(&edev->nh[idx], nb);
924 spin_unlock_irqrestore(&edev->lock, flags);
Hans de Goede66bee352015-03-21 17:26:24 +0100925
926 return ret;
Donggeun Kim74c5d092012-04-20 14:16:24 +0900927}
928EXPORT_SYMBOL_GPL(extcon_register_notifier);
929
930/**
Peter Meerwaldc338bb02012-08-23 09:11:54 +0900931 * extcon_unregister_notifier() - Unregister a notifiee from the extcon device.
Chanwoo Choi046050f2015-05-19 20:01:12 +0900932 * @edev: the extcon device that has the external connecotr.
933 * @id: the unique id of each external connector in extcon enumeration.
934 * @nb: a notifier block to be registered.
Donggeun Kim74c5d092012-04-20 14:16:24 +0900935 */
Chanwoo Choi73b6ecd2015-06-12 11:10:06 +0900936int extcon_unregister_notifier(struct extcon_dev *edev, unsigned int id,
Chanwoo Choi046050f2015-05-19 20:01:12 +0900937 struct notifier_block *nb)
Donggeun Kim74c5d092012-04-20 14:16:24 +0900938{
Hans de Goede66bee352015-03-21 17:26:24 +0100939 unsigned long flags;
Chanwoo Choi046050f2015-05-19 20:01:12 +0900940 int ret, idx;
941
Chanwoo Choi7eae43a2015-06-21 23:48:36 +0900942 if (!edev || !nb)
943 return -EINVAL;
944
Chanwoo Choi046050f2015-05-19 20:01:12 +0900945 idx = find_cable_index_by_id(edev, id);
Stephen Boyda05f44c2016-06-23 19:34:30 +0900946 if (idx < 0)
947 return idx;
Hans de Goede66bee352015-03-21 17:26:24 +0100948
949 spin_lock_irqsave(&edev->lock, flags);
Chanwoo Choi046050f2015-05-19 20:01:12 +0900950 ret = raw_notifier_chain_unregister(&edev->nh[idx], nb);
Hans de Goede66bee352015-03-21 17:26:24 +0100951 spin_unlock_irqrestore(&edev->lock, flags);
952
953 return ret;
Donggeun Kim74c5d092012-04-20 14:16:24 +0900954}
955EXPORT_SYMBOL_GPL(extcon_unregister_notifier);
956
Greg Kroah-Hartmanaf01da02013-07-24 15:05:10 -0700957static struct attribute *extcon_attrs[] = {
958 &dev_attr_state.attr,
959 &dev_attr_name.attr,
960 NULL,
MyungJoo Hamde55d872012-04-20 14:16:22 +0900961};
Greg Kroah-Hartmanaf01da02013-07-24 15:05:10 -0700962ATTRIBUTE_GROUPS(extcon);
MyungJoo Hamde55d872012-04-20 14:16:22 +0900963
964static int create_extcon_class(void)
965{
966 if (!extcon_class) {
967 extcon_class = class_create(THIS_MODULE, "extcon");
968 if (IS_ERR(extcon_class))
969 return PTR_ERR(extcon_class);
Greg Kroah-Hartmanaf01da02013-07-24 15:05:10 -0700970 extcon_class->dev_groups = extcon_groups;
MyungJoo Hamde55d872012-04-20 14:16:22 +0900971
MyungJoo Ham449a2bf2012-04-23 20:19:57 +0900972#if defined(CONFIG_ANDROID)
MyungJoo Hamde55d872012-04-20 14:16:22 +0900973 switch_class = class_compat_register("switch");
974 if (WARN(!switch_class, "cannot allocate"))
975 return -ENOMEM;
MyungJoo Ham449a2bf2012-04-23 20:19:57 +0900976#endif /* CONFIG_ANDROID */
MyungJoo Hamde55d872012-04-20 14:16:22 +0900977 }
978
979 return 0;
980}
981
MyungJoo Hamde55d872012-04-20 14:16:22 +0900982static void extcon_dev_release(struct device *dev)
983{
MyungJoo Hamde55d872012-04-20 14:16:22 +0900984}
985
MyungJoo Hambde68e62012-04-20 14:16:26 +0900986static const char *muex_name = "mutually_exclusive";
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900987static void dummy_sysfs_dev_release(struct device *dev)
988{
989}
990
Chanwoo Choia9af6522014-04-24 19:46:49 +0900991/*
992 * extcon_dev_allocate() - Allocate the memory of extcon device.
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +0900993 * @supported_cable: Array of supported extcon ending with EXTCON_NONE.
Chanwoo Choia9af6522014-04-24 19:46:49 +0900994 * If supported_cable is NULL, cable name related APIs
995 * are disabled.
996 *
997 * This function allocates the memory for extcon device without allocating
998 * memory in each extcon provider driver and initialize default setting for
999 * extcon device.
1000 *
1001 * Return the pointer of extcon device if success or ERR_PTR(err) if fail
1002 */
Chanwoo Choi73b6ecd2015-06-12 11:10:06 +09001003struct extcon_dev *extcon_dev_allocate(const unsigned int *supported_cable)
Chanwoo Choia9af6522014-04-24 19:46:49 +09001004{
1005 struct extcon_dev *edev;
1006
Chanwoo Choi7eae43a2015-06-21 23:48:36 +09001007 if (!supported_cable)
1008 return ERR_PTR(-EINVAL);
1009
Chanwoo Choia9af6522014-04-24 19:46:49 +09001010 edev = kzalloc(sizeof(*edev), GFP_KERNEL);
1011 if (!edev)
1012 return ERR_PTR(-ENOMEM);
1013
1014 edev->max_supported = 0;
1015 edev->supported_cable = supported_cable;
1016
1017 return edev;
1018}
1019
1020/*
1021 * extcon_dev_free() - Free the memory of extcon device.
1022 * @edev: the extcon device to free
1023 */
1024void extcon_dev_free(struct extcon_dev *edev)
1025{
1026 kfree(edev);
1027}
1028EXPORT_SYMBOL_GPL(extcon_dev_free);
1029
MyungJoo Hamde55d872012-04-20 14:16:22 +09001030/**
1031 * extcon_dev_register() - Register a new extcon device
1032 * @edev : the new extcon device (should be allocated before calling)
MyungJoo Hamde55d872012-04-20 14:16:22 +09001033 *
1034 * Among the members of edev struct, please set the "user initializing data"
1035 * in any case and set the "optional callbacks" if required. However, please
1036 * do not set the values of "internal data", which are initialized by
1037 * this function.
1038 */
Chanwoo Choi42d7d752013-09-27 09:20:26 +09001039int extcon_dev_register(struct extcon_dev *edev)
MyungJoo Hamde55d872012-04-20 14:16:22 +09001040{
MyungJoo Ham806d9dd2012-04-20 14:16:25 +09001041 int ret, index = 0;
Chanwoo Choi71c3ffa2015-04-15 15:02:01 +09001042 static atomic_t edev_no = ATOMIC_INIT(-1);
MyungJoo Hamde55d872012-04-20 14:16:22 +09001043
1044 if (!extcon_class) {
1045 ret = create_extcon_class();
1046 if (ret < 0)
1047 return ret;
1048 }
1049
Chanwoo Choi7eae43a2015-06-21 23:48:36 +09001050 if (!edev || !edev->supported_cable)
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +09001051 return -EINVAL;
MyungJoo Ham806d9dd2012-04-20 14:16:25 +09001052
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +09001053 for (; edev->supported_cable[index] != EXTCON_NONE; index++);
1054
1055 edev->max_supported = index;
MyungJoo Ham806d9dd2012-04-20 14:16:25 +09001056 if (index > SUPPORTED_CABLE_MAX) {
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +09001057 dev_err(&edev->dev,
1058 "exceed the maximum number of supported cables\n");
MyungJoo Ham806d9dd2012-04-20 14:16:25 +09001059 return -EINVAL;
1060 }
1061
Chanwoo Choidae61652013-09-27 09:19:40 +09001062 edev->dev.class = extcon_class;
1063 edev->dev.release = extcon_dev_release;
MyungJoo Hamde55d872012-04-20 14:16:22 +09001064
Chanwoo Choi71c3ffa2015-04-15 15:02:01 +09001065 edev->name = dev_name(edev->dev.parent);
Chanwoo Choi42d7d752013-09-27 09:20:26 +09001066 if (IS_ERR_OR_NULL(edev->name)) {
1067 dev_err(&edev->dev,
1068 "extcon device name is null\n");
1069 return -EINVAL;
1070 }
Chanwoo Choi71c3ffa2015-04-15 15:02:01 +09001071 dev_set_name(&edev->dev, "extcon%lu",
1072 (unsigned long)atomic_inc_return(&edev_no));
MyungJoo Ham806d9dd2012-04-20 14:16:25 +09001073
1074 if (edev->max_supported) {
1075 char buf[10];
1076 char *str;
1077 struct extcon_cable *cable;
1078
1079 edev->cables = kzalloc(sizeof(struct extcon_cable) *
1080 edev->max_supported, GFP_KERNEL);
1081 if (!edev->cables) {
1082 ret = -ENOMEM;
1083 goto err_sysfs_alloc;
1084 }
1085 for (index = 0; index < edev->max_supported; index++) {
1086 cable = &edev->cables[index];
1087
1088 snprintf(buf, 10, "cable.%d", index);
1089 str = kzalloc(sizeof(char) * (strlen(buf) + 1),
1090 GFP_KERNEL);
1091 if (!str) {
1092 for (index--; index >= 0; index--) {
1093 cable = &edev->cables[index];
1094 kfree(cable->attr_g.name);
1095 }
1096 ret = -ENOMEM;
1097
1098 goto err_alloc_cables;
1099 }
1100 strcpy(str, buf);
1101
1102 cable->edev = edev;
1103 cable->cable_index = index;
1104 cable->attrs[0] = &cable->attr_name.attr;
1105 cable->attrs[1] = &cable->attr_state.attr;
1106 cable->attrs[2] = NULL;
1107 cable->attr_g.name = str;
1108 cable->attr_g.attrs = cable->attrs;
1109
Mark Brown9baf3222012-08-16 20:03:21 +01001110 sysfs_attr_init(&cable->attr_name.attr);
MyungJoo Ham806d9dd2012-04-20 14:16:25 +09001111 cable->attr_name.attr.name = "name";
1112 cable->attr_name.attr.mode = 0444;
1113 cable->attr_name.show = cable_name_show;
1114
Mark Brown9baf3222012-08-16 20:03:21 +01001115 sysfs_attr_init(&cable->attr_state.attr);
MyungJoo Ham806d9dd2012-04-20 14:16:25 +09001116 cable->attr_state.attr.name = "state";
Chanwoo Choiea9dd9d2013-05-22 19:31:59 +09001117 cable->attr_state.attr.mode = 0444;
MyungJoo Ham806d9dd2012-04-20 14:16:25 +09001118 cable->attr_state.show = cable_state_show;
MyungJoo Ham806d9dd2012-04-20 14:16:25 +09001119 }
1120 }
1121
MyungJoo Hambde68e62012-04-20 14:16:26 +09001122 if (edev->max_supported && edev->mutually_exclusive) {
1123 char buf[80];
1124 char *name;
1125
1126 /* Count the size of mutually_exclusive array */
1127 for (index = 0; edev->mutually_exclusive[index]; index++)
1128 ;
1129
1130 edev->attrs_muex = kzalloc(sizeof(struct attribute *) *
1131 (index + 1), GFP_KERNEL);
1132 if (!edev->attrs_muex) {
1133 ret = -ENOMEM;
1134 goto err_muex;
1135 }
1136
1137 edev->d_attrs_muex = kzalloc(sizeof(struct device_attribute) *
1138 index, GFP_KERNEL);
1139 if (!edev->d_attrs_muex) {
1140 ret = -ENOMEM;
1141 kfree(edev->attrs_muex);
1142 goto err_muex;
1143 }
1144
1145 for (index = 0; edev->mutually_exclusive[index]; index++) {
1146 sprintf(buf, "0x%x", edev->mutually_exclusive[index]);
1147 name = kzalloc(sizeof(char) * (strlen(buf) + 1),
1148 GFP_KERNEL);
1149 if (!name) {
1150 for (index--; index >= 0; index--) {
1151 kfree(edev->d_attrs_muex[index].attr.
1152 name);
1153 }
1154 kfree(edev->d_attrs_muex);
1155 kfree(edev->attrs_muex);
1156 ret = -ENOMEM;
1157 goto err_muex;
1158 }
1159 strcpy(name, buf);
Mark Brown9baf3222012-08-16 20:03:21 +01001160 sysfs_attr_init(&edev->d_attrs_muex[index].attr);
MyungJoo Hambde68e62012-04-20 14:16:26 +09001161 edev->d_attrs_muex[index].attr.name = name;
1162 edev->d_attrs_muex[index].attr.mode = 0000;
1163 edev->attrs_muex[index] = &edev->d_attrs_muex[index]
1164 .attr;
1165 }
1166 edev->attr_g_muex.name = muex_name;
1167 edev->attr_g_muex.attrs = edev->attrs_muex;
1168
1169 }
1170
MyungJoo Ham806d9dd2012-04-20 14:16:25 +09001171 if (edev->max_supported) {
1172 edev->extcon_dev_type.groups =
1173 kzalloc(sizeof(struct attribute_group *) *
MyungJoo Hambde68e62012-04-20 14:16:26 +09001174 (edev->max_supported + 2), GFP_KERNEL);
MyungJoo Ham806d9dd2012-04-20 14:16:25 +09001175 if (!edev->extcon_dev_type.groups) {
1176 ret = -ENOMEM;
1177 goto err_alloc_groups;
1178 }
1179
Chanwoo Choidae61652013-09-27 09:19:40 +09001180 edev->extcon_dev_type.name = dev_name(&edev->dev);
MyungJoo Ham806d9dd2012-04-20 14:16:25 +09001181 edev->extcon_dev_type.release = dummy_sysfs_dev_release;
1182
1183 for (index = 0; index < edev->max_supported; index++)
1184 edev->extcon_dev_type.groups[index] =
1185 &edev->cables[index].attr_g;
MyungJoo Hambde68e62012-04-20 14:16:26 +09001186 if (edev->mutually_exclusive)
1187 edev->extcon_dev_type.groups[index] =
1188 &edev->attr_g_muex;
MyungJoo Ham806d9dd2012-04-20 14:16:25 +09001189
Chanwoo Choidae61652013-09-27 09:19:40 +09001190 edev->dev.type = &edev->extcon_dev_type;
MyungJoo Ham806d9dd2012-04-20 14:16:25 +09001191 }
1192
Chanwoo Choidae61652013-09-27 09:19:40 +09001193 ret = device_register(&edev->dev);
MyungJoo Hamde55d872012-04-20 14:16:22 +09001194 if (ret) {
Chanwoo Choidae61652013-09-27 09:19:40 +09001195 put_device(&edev->dev);
MyungJoo Hamde55d872012-04-20 14:16:22 +09001196 goto err_dev;
1197 }
MyungJoo Ham449a2bf2012-04-23 20:19:57 +09001198#if defined(CONFIG_ANDROID)
MyungJoo Hamde55d872012-04-20 14:16:22 +09001199 if (switch_class)
Chanwoo Choidae61652013-09-27 09:19:40 +09001200 ret = class_compat_create_link(switch_class, &edev->dev, NULL);
MyungJoo Ham449a2bf2012-04-23 20:19:57 +09001201#endif /* CONFIG_ANDROID */
MyungJoo Hamde55d872012-04-20 14:16:22 +09001202
MyungJoo Ham806d9dd2012-04-20 14:16:25 +09001203 spin_lock_init(&edev->lock);
1204
Chanwoo Choi046050f2015-05-19 20:01:12 +09001205 edev->nh = devm_kzalloc(&edev->dev,
1206 sizeof(*edev->nh) * edev->max_supported, GFP_KERNEL);
1207 if (!edev->nh) {
1208 ret = -ENOMEM;
1209 goto err_dev;
1210 }
1211
1212 for (index = 0; index < edev->max_supported; index++)
1213 RAW_INIT_NOTIFIER_HEAD(&edev->nh[index]);
Donggeun Kim74c5d092012-04-20 14:16:24 +09001214
Chanwoo Choidae61652013-09-27 09:19:40 +09001215 dev_set_drvdata(&edev->dev, edev);
MyungJoo Hamde55d872012-04-20 14:16:22 +09001216 edev->state = 0;
Donggeun Kim74c5d092012-04-20 14:16:24 +09001217
1218 mutex_lock(&extcon_dev_list_lock);
1219 list_add(&edev->entry, &extcon_dev_list);
1220 mutex_unlock(&extcon_dev_list_lock);
1221
MyungJoo Hamde55d872012-04-20 14:16:22 +09001222 return 0;
1223
1224err_dev:
MyungJoo Ham806d9dd2012-04-20 14:16:25 +09001225 if (edev->max_supported)
1226 kfree(edev->extcon_dev_type.groups);
1227err_alloc_groups:
MyungJoo Hambde68e62012-04-20 14:16:26 +09001228 if (edev->max_supported && edev->mutually_exclusive) {
1229 for (index = 0; edev->mutually_exclusive[index]; index++)
1230 kfree(edev->d_attrs_muex[index].attr.name);
1231 kfree(edev->d_attrs_muex);
1232 kfree(edev->attrs_muex);
1233 }
1234err_muex:
MyungJoo Ham806d9dd2012-04-20 14:16:25 +09001235 for (index = 0; index < edev->max_supported; index++)
1236 kfree(edev->cables[index].attr_g.name);
1237err_alloc_cables:
1238 if (edev->max_supported)
1239 kfree(edev->cables);
1240err_sysfs_alloc:
MyungJoo Hamde55d872012-04-20 14:16:22 +09001241 return ret;
1242}
1243EXPORT_SYMBOL_GPL(extcon_dev_register);
1244
1245/**
1246 * extcon_dev_unregister() - Unregister the extcon device.
Peter Meerwaldc338bb02012-08-23 09:11:54 +09001247 * @edev: the extcon device instance to be unregistered.
MyungJoo Hamde55d872012-04-20 14:16:22 +09001248 *
1249 * Note that this does not call kfree(edev) because edev was not allocated
1250 * by this class.
1251 */
1252void extcon_dev_unregister(struct extcon_dev *edev)
1253{
anish kumar57e7cd32012-10-22 09:43:33 +09001254 int index;
1255
Chanwoo Choi7eae43a2015-06-21 23:48:36 +09001256 if (!edev)
1257 return;
1258
anish kumar57e7cd32012-10-22 09:43:33 +09001259 mutex_lock(&extcon_dev_list_lock);
1260 list_del(&edev->entry);
1261 mutex_unlock(&extcon_dev_list_lock);
1262
Chanwoo Choidae61652013-09-27 09:19:40 +09001263 if (IS_ERR_OR_NULL(get_device(&edev->dev))) {
1264 dev_err(&edev->dev, "Failed to unregister extcon_dev (%s)\n",
1265 dev_name(&edev->dev));
anish kumar57e7cd32012-10-22 09:43:33 +09001266 return;
1267 }
1268
Wang, Xiaoming7585ca02013-11-01 18:48:14 -04001269 device_unregister(&edev->dev);
1270
anish kumar57e7cd32012-10-22 09:43:33 +09001271 if (edev->mutually_exclusive && edev->max_supported) {
1272 for (index = 0; edev->mutually_exclusive[index];
1273 index++)
1274 kfree(edev->d_attrs_muex[index].attr.name);
1275 kfree(edev->d_attrs_muex);
1276 kfree(edev->attrs_muex);
1277 }
1278
1279 for (index = 0; index < edev->max_supported; index++)
1280 kfree(edev->cables[index].attr_g.name);
1281
1282 if (edev->max_supported) {
1283 kfree(edev->extcon_dev_type.groups);
1284 kfree(edev->cables);
1285 }
1286
1287#if defined(CONFIG_ANDROID)
1288 if (switch_class)
Chanwoo Choidae61652013-09-27 09:19:40 +09001289 class_compat_remove_link(switch_class, &edev->dev, NULL);
anish kumar57e7cd32012-10-22 09:43:33 +09001290#endif
Chanwoo Choidae61652013-09-27 09:19:40 +09001291 put_device(&edev->dev);
MyungJoo Hamde55d872012-04-20 14:16:22 +09001292}
1293EXPORT_SYMBOL_GPL(extcon_dev_unregister);
1294
Chanwoo Choi1ad94ff2014-03-18 19:55:46 +09001295#ifdef CONFIG_OF
1296/*
1297 * extcon_get_edev_by_phandle - Get the extcon device from devicetree
1298 * @dev - instance to the given device
1299 * @index - index into list of extcon_dev
1300 *
1301 * return the instance of extcon device
1302 */
1303struct extcon_dev *extcon_get_edev_by_phandle(struct device *dev, int index)
1304{
1305 struct device_node *node;
1306 struct extcon_dev *edev;
1307
Chanwoo Choi7eae43a2015-06-21 23:48:36 +09001308 if (!dev)
1309 return ERR_PTR(-EINVAL);
1310
Chanwoo Choi1ad94ff2014-03-18 19:55:46 +09001311 if (!dev->of_node) {
Stephen Boyde8752b72016-07-05 11:57:05 -07001312 dev_dbg(dev, "device does not have a device node entry\n");
Chanwoo Choi1ad94ff2014-03-18 19:55:46 +09001313 return ERR_PTR(-EINVAL);
1314 }
1315
1316 node = of_parse_phandle(dev->of_node, "extcon", index);
1317 if (!node) {
Stephen Boyde8752b72016-07-05 11:57:05 -07001318 dev_dbg(dev, "failed to get phandle in %s node\n",
Chanwoo Choi1ad94ff2014-03-18 19:55:46 +09001319 dev->of_node->full_name);
1320 return ERR_PTR(-ENODEV);
1321 }
1322
Tomasz Figaf841afb2014-10-16 15:11:44 +02001323 mutex_lock(&extcon_dev_list_lock);
1324 list_for_each_entry(edev, &extcon_dev_list, entry) {
1325 if (edev->dev.parent && edev->dev.parent->of_node == node) {
1326 mutex_unlock(&extcon_dev_list_lock);
Peter Chen5d5c4c12016-07-01 18:41:55 +09001327 of_node_put(node);
Tomasz Figaf841afb2014-10-16 15:11:44 +02001328 return edev;
1329 }
Chanwoo Choi1ad94ff2014-03-18 19:55:46 +09001330 }
Tomasz Figaf841afb2014-10-16 15:11:44 +02001331 mutex_unlock(&extcon_dev_list_lock);
Peter Chen5d5c4c12016-07-01 18:41:55 +09001332 of_node_put(node);
Chanwoo Choi1ad94ff2014-03-18 19:55:46 +09001333
Tomasz Figaf841afb2014-10-16 15:11:44 +02001334 return ERR_PTR(-EPROBE_DEFER);
Chanwoo Choi1ad94ff2014-03-18 19:55:46 +09001335}
1336#else
1337struct extcon_dev *extcon_get_edev_by_phandle(struct device *dev, int index)
1338{
1339 return ERR_PTR(-ENOSYS);
1340}
1341#endif /* CONFIG_OF */
1342EXPORT_SYMBOL_GPL(extcon_get_edev_by_phandle);
1343
Chanwoo Choi707d7552015-04-15 13:57:51 +09001344/**
1345 * extcon_get_edev_name() - Get the name of the extcon device.
1346 * @edev: the extcon device
1347 */
1348const char *extcon_get_edev_name(struct extcon_dev *edev)
1349{
1350 return !edev ? NULL : edev->name;
1351}
1352
MyungJoo Hamde55d872012-04-20 14:16:22 +09001353static int __init extcon_class_init(void)
1354{
1355 return create_extcon_class();
1356}
1357module_init(extcon_class_init);
1358
1359static void __exit extcon_class_exit(void)
1360{
Peter Huewe0dc77b62012-09-24 15:32:31 +09001361#if defined(CONFIG_ANDROID)
1362 class_compat_unregister(switch_class);
1363#endif
MyungJoo Hamde55d872012-04-20 14:16:22 +09001364 class_destroy(extcon_class);
1365}
1366module_exit(extcon_class_exit);
1367
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +09001368MODULE_AUTHOR("Chanwoo Choi <cw00.choi@samsung.com>");
MyungJoo Hamde55d872012-04-20 14:16:22 +09001369MODULE_AUTHOR("Mike Lockwood <lockwood@android.com>");
1370MODULE_AUTHOR("Donggeun Kim <dg77.kim@samsung.com>");
1371MODULE_AUTHOR("MyungJoo Ham <myungjoo.ham@samsung.com>");
1372MODULE_DESCRIPTION("External connector (extcon) class driver");
1373MODULE_LICENSE("GPL");