blob: a09e704fd0fa19440bbf0792201dc8a54ac3bd89 [file] [log] [blame]
Thomas Gleixner9c92ab62019-05-29 07:17:56 -07001// SPDX-License-Identifier: GPL-2.0-only
MyungJoo Hamde55d872012-04-20 14:16:22 +09002/*
Chanwoo Choi6ab6094f2017-04-03 19:45:48 +09003 * drivers/extcon/extcon.c - External Connector (extcon) framework.
MyungJoo Hamde55d872012-04-20 14:16:22 +09004 *
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +09005 * Copyright (C) 2015 Samsung Electronics
6 * Author: Chanwoo Choi <cw00.choi@samsung.com>
7 *
MyungJoo Hamde55d872012-04-20 14:16:22 +09008 * Copyright (C) 2012 Samsung Electronics
9 * Author: Donggeun Kim <dg77.kim@samsung.com>
10 * Author: MyungJoo Ham <myungjoo.ham@samsung.com>
11 *
12 * based on android/drivers/switch/switch_class.c
13 * Copyright (C) 2008 Google, Inc.
14 * Author: Mike Lockwood <lockwood@android.com>
Chanwoo Choib9ec23c2015-04-24 14:48:52 +090015 */
MyungJoo Hamde55d872012-04-20 14:16:22 +090016
17#include <linux/module.h>
18#include <linux/types.h>
19#include <linux/init.h>
20#include <linux/device.h>
21#include <linux/fs.h>
22#include <linux/err.h>
Tomasz Figaf841afb12014-10-16 15:11:44 +020023#include <linux/of.h>
MyungJoo Hamde55d872012-04-20 14:16:22 +090024#include <linux/slab.h>
Mark Brown9baf3222012-08-16 20:03:21 +010025#include <linux/sysfs.h>
MyungJoo Hamde55d872012-04-20 14:16:22 +090026
Chanwoo Choie6cf0462016-12-26 20:37:38 +090027#include "extcon.h"
28
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +090029#define SUPPORTED_CABLE_MAX 32
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +090030
Colin Ian King51832402017-09-09 17:51:00 +010031static const struct __extcon_info {
Chanwoo Choi55e4e2f2016-07-11 16:34:52 +090032 unsigned int type;
33 unsigned int id;
34 const char *name;
35
36} extcon_info[] = {
37 [EXTCON_NONE] = {
38 .type = EXTCON_TYPE_MISC,
39 .id = EXTCON_NONE,
40 .name = "NONE",
41 },
Chanwoo Choi73b6ecd2015-06-12 11:10:06 +090042
Chanwoo Choi8e9bc362015-05-19 19:58:49 +090043 /* USB external connector */
Chanwoo Choi55e4e2f2016-07-11 16:34:52 +090044 [EXTCON_USB] = {
45 .type = EXTCON_TYPE_USB,
46 .id = EXTCON_USB,
47 .name = "USB",
48 },
49 [EXTCON_USB_HOST] = {
50 .type = EXTCON_TYPE_USB,
51 .id = EXTCON_USB_HOST,
Chanwoo Choi86d6cda2017-01-07 05:17:36 +090052 .name = "USB-HOST",
Chanwoo Choi55e4e2f2016-07-11 16:34:52 +090053 },
Chanwoo Choi8e9bc362015-05-19 19:58:49 +090054
Chanwoo Choi11eecf92015-10-03 14:15:13 +090055 /* Charging external connector */
Chanwoo Choi55e4e2f2016-07-11 16:34:52 +090056 [EXTCON_CHG_USB_SDP] = {
57 .type = EXTCON_TYPE_CHG | EXTCON_TYPE_USB,
58 .id = EXTCON_CHG_USB_SDP,
59 .name = "SDP",
60 },
61 [EXTCON_CHG_USB_DCP] = {
62 .type = EXTCON_TYPE_CHG | EXTCON_TYPE_USB,
63 .id = EXTCON_CHG_USB_DCP,
64 .name = "DCP",
65 },
66 [EXTCON_CHG_USB_CDP] = {
67 .type = EXTCON_TYPE_CHG | EXTCON_TYPE_USB,
68 .id = EXTCON_CHG_USB_CDP,
69 .name = "CDP",
70 },
71 [EXTCON_CHG_USB_ACA] = {
72 .type = EXTCON_TYPE_CHG | EXTCON_TYPE_USB,
73 .id = EXTCON_CHG_USB_ACA,
74 .name = "ACA",
75 },
76 [EXTCON_CHG_USB_FAST] = {
77 .type = EXTCON_TYPE_CHG | EXTCON_TYPE_USB,
78 .id = EXTCON_CHG_USB_FAST,
79 .name = "FAST-CHARGER",
80 },
81 [EXTCON_CHG_USB_SLOW] = {
82 .type = EXTCON_TYPE_CHG | EXTCON_TYPE_USB,
83 .id = EXTCON_CHG_USB_SLOW,
84 .name = "SLOW-CHARGER",
85 },
Chanwoo Choi7fe95fb2016-08-05 18:15:46 +090086 [EXTCON_CHG_WPT] = {
87 .type = EXTCON_TYPE_CHG,
88 .id = EXTCON_CHG_WPT,
89 .name = "WPT",
90 },
Chanwoo Choi3c5f0e02017-01-02 13:03:03 +090091 [EXTCON_CHG_USB_PD] = {
92 .type = EXTCON_TYPE_CHG | EXTCON_TYPE_USB,
93 .id = EXTCON_CHG_USB_PD,
94 .name = "PD",
95 },
Chanwoo Choi8e9bc362015-05-19 19:58:49 +090096
Chanwoo Choi11eecf92015-10-03 14:15:13 +090097 /* Jack external connector */
Chanwoo Choi55e4e2f2016-07-11 16:34:52 +090098 [EXTCON_JACK_MICROPHONE] = {
99 .type = EXTCON_TYPE_JACK,
100 .id = EXTCON_JACK_MICROPHONE,
101 .name = "MICROPHONE",
102 },
103 [EXTCON_JACK_HEADPHONE] = {
104 .type = EXTCON_TYPE_JACK,
105 .id = EXTCON_JACK_HEADPHONE,
106 .name = "HEADPHONE",
107 },
108 [EXTCON_JACK_LINE_IN] = {
109 .type = EXTCON_TYPE_JACK,
110 .id = EXTCON_JACK_LINE_IN,
111 .name = "LINE-IN",
112 },
113 [EXTCON_JACK_LINE_OUT] = {
114 .type = EXTCON_TYPE_JACK,
115 .id = EXTCON_JACK_LINE_OUT,
116 .name = "LINE-OUT",
117 },
118 [EXTCON_JACK_VIDEO_IN] = {
119 .type = EXTCON_TYPE_JACK,
120 .id = EXTCON_JACK_VIDEO_IN,
121 .name = "VIDEO-IN",
122 },
123 [EXTCON_JACK_VIDEO_OUT] = {
124 .type = EXTCON_TYPE_JACK,
125 .id = EXTCON_JACK_VIDEO_OUT,
126 .name = "VIDEO-OUT",
127 },
128 [EXTCON_JACK_SPDIF_IN] = {
129 .type = EXTCON_TYPE_JACK,
130 .id = EXTCON_JACK_SPDIF_IN,
131 .name = "SPDIF-IN",
132 },
133 [EXTCON_JACK_SPDIF_OUT] = {
134 .type = EXTCON_TYPE_JACK,
135 .id = EXTCON_JACK_SPDIF_OUT,
136 .name = "SPDIF-OUT",
137 },
Chanwoo Choi8e9bc362015-05-19 19:58:49 +0900138
Chanwoo Choi11eecf92015-10-03 14:15:13 +0900139 /* Display external connector */
Chanwoo Choi55e4e2f2016-07-11 16:34:52 +0900140 [EXTCON_DISP_HDMI] = {
141 .type = EXTCON_TYPE_DISP,
142 .id = EXTCON_DISP_HDMI,
143 .name = "HDMI",
144 },
145 [EXTCON_DISP_MHL] = {
146 .type = EXTCON_TYPE_DISP,
147 .id = EXTCON_DISP_MHL,
148 .name = "MHL",
149 },
150 [EXTCON_DISP_DVI] = {
151 .type = EXTCON_TYPE_DISP,
152 .id = EXTCON_DISP_DVI,
153 .name = "DVI",
154 },
155 [EXTCON_DISP_VGA] = {
156 .type = EXTCON_TYPE_DISP,
157 .id = EXTCON_DISP_VGA,
158 .name = "VGA",
159 },
Chris Zhong21641882016-07-22 01:13:02 +0900160 [EXTCON_DISP_DP] = {
161 .type = EXTCON_TYPE_DISP | EXTCON_TYPE_USB,
162 .id = EXTCON_DISP_DP,
163 .name = "DP",
164 },
Chanwoo Choi9c0595d2016-08-05 17:49:23 +0900165 [EXTCON_DISP_HMD] = {
166 .type = EXTCON_TYPE_DISP | EXTCON_TYPE_USB,
167 .id = EXTCON_DISP_HMD,
168 .name = "HMD",
169 },
Chanwoo Choi8e9bc362015-05-19 19:58:49 +0900170
Chanwoo Choi11eecf92015-10-03 14:15:13 +0900171 /* Miscellaneous external connector */
Chanwoo Choi55e4e2f2016-07-11 16:34:52 +0900172 [EXTCON_DOCK] = {
173 .type = EXTCON_TYPE_MISC,
174 .id = EXTCON_DOCK,
175 .name = "DOCK",
176 },
177 [EXTCON_JIG] = {
178 .type = EXTCON_TYPE_MISC,
179 .id = EXTCON_JIG,
180 .name = "JIG",
181 },
182 [EXTCON_MECHANICAL] = {
183 .type = EXTCON_TYPE_MISC,
184 .id = EXTCON_MECHANICAL,
185 .name = "MECHANICAL",
186 },
Chanwoo Choi8e9bc362015-05-19 19:58:49 +0900187
Chanwoo Choi55e4e2f2016-07-11 16:34:52 +0900188 { /* sentinel */ }
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900189};
190
Chanwoo Choi20f7b532016-06-27 19:17:06 +0900191/**
Chanwoo Choi6ab6094f2017-04-03 19:45:48 +0900192 * struct extcon_cable - An internal data for an external connector.
193 * @edev: the extcon device
194 * @cable_index: the index of this cable in the edev
195 * @attr_g: the attribute group for the cable
Chanwoo Choi20f7b532016-06-27 19:17:06 +0900196 * @attr_name: "name" sysfs entry
197 * @attr_state: "state" sysfs entry
Chanwoo Choi6ab6094f2017-04-03 19:45:48 +0900198 * @attrs: the array pointing to attr_name and attr_state for attr_g
Chanwoo Choi20f7b532016-06-27 19:17:06 +0900199 */
200struct extcon_cable {
201 struct extcon_dev *edev;
202 int cable_index;
203
204 struct attribute_group attr_g;
205 struct device_attribute attr_name;
206 struct device_attribute attr_state;
207
208 struct attribute *attrs[3]; /* to be fed to attr_g.attrs */
Chanwoo Choi792e7e9e2016-07-11 19:30:43 +0900209
210 union extcon_property_value usb_propval[EXTCON_PROP_USB_CNT];
211 union extcon_property_value chg_propval[EXTCON_PROP_CHG_CNT];
212 union extcon_property_value jack_propval[EXTCON_PROP_JACK_CNT];
213 union extcon_property_value disp_propval[EXTCON_PROP_DISP_CNT];
Chanwoo Choi7f2a0a12016-07-25 21:15:19 +0900214
215 unsigned long usb_bits[BITS_TO_LONGS(EXTCON_PROP_USB_CNT)];
216 unsigned long chg_bits[BITS_TO_LONGS(EXTCON_PROP_CHG_CNT)];
217 unsigned long jack_bits[BITS_TO_LONGS(EXTCON_PROP_JACK_CNT)];
218 unsigned long disp_bits[BITS_TO_LONGS(EXTCON_PROP_DISP_CNT)];
Chanwoo Choi20f7b532016-06-27 19:17:06 +0900219};
220
Mark Brownbe3a07f2012-06-05 16:14:38 +0100221static struct class *extcon_class;
MyungJoo Hamde55d872012-04-20 14:16:22 +0900222
Donggeun Kim74c5d092012-04-20 14:16:24 +0900223static LIST_HEAD(extcon_dev_list);
224static DEFINE_MUTEX(extcon_dev_list_lock);
225
MyungJoo Hambde68e62012-04-20 14:16:26 +0900226static int check_mutually_exclusive(struct extcon_dev *edev, u32 new_state)
227{
228 int i = 0;
229
230 if (!edev->mutually_exclusive)
231 return 0;
232
233 for (i = 0; edev->mutually_exclusive[i]; i++) {
anish kumar28c0ada2012-08-30 00:35:10 +0530234 int weight;
MyungJoo Hambde68e62012-04-20 14:16:26 +0900235 u32 correspondants = new_state & edev->mutually_exclusive[i];
MyungJoo Hambde68e62012-04-20 14:16:26 +0900236
anish kumar28c0ada2012-08-30 00:35:10 +0530237 /* calculate the total number of bits set */
238 weight = hweight32(correspondants);
239 if (weight > 1)
240 return i + 1;
MyungJoo Hambde68e62012-04-20 14:16:26 +0900241 }
242
243 return 0;
244}
245
Chanwoo Choi73b6ecd2015-06-12 11:10:06 +0900246static int find_cable_index_by_id(struct extcon_dev *edev, const unsigned int id)
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +0900247{
248 int i;
249
250 /* Find the the index of extcon cable in edev->supported_cable */
251 for (i = 0; i < edev->max_supported; i++) {
252 if (edev->supported_cable[i] == id)
253 return i;
254 }
255
256 return -EINVAL;
257}
258
Chanwoo Choi792e7e9e2016-07-11 19:30:43 +0900259static int get_extcon_type(unsigned int prop)
260{
261 switch (prop) {
262 case EXTCON_PROP_USB_MIN ... EXTCON_PROP_USB_MAX:
263 return EXTCON_TYPE_USB;
264 case EXTCON_PROP_CHG_MIN ... EXTCON_PROP_CHG_MAX:
265 return EXTCON_TYPE_CHG;
266 case EXTCON_PROP_JACK_MIN ... EXTCON_PROP_JACK_MAX:
267 return EXTCON_TYPE_JACK;
268 case EXTCON_PROP_DISP_MIN ... EXTCON_PROP_DISP_MAX:
269 return EXTCON_TYPE_DISP;
270 default:
271 return -EINVAL;
272 }
273}
274
275static bool is_extcon_attached(struct extcon_dev *edev, unsigned int index)
276{
277 return !!(edev->state & BIT(index));
278}
279
Chanwoo Choiab11af042016-07-22 13:16:34 +0900280static bool is_extcon_changed(struct extcon_dev *edev, int index,
281 bool new_state)
Chanwoo Choi046050f2015-05-19 20:01:12 +0900282{
Chanwoo Choiab11af042016-07-22 13:16:34 +0900283 int state = !!(edev->state & BIT(index));
284 return (state != new_state);
Chanwoo Choi046050f2015-05-19 20:01:12 +0900285}
286
Chanwoo Choi792e7e9e2016-07-11 19:30:43 +0900287static bool is_extcon_property_supported(unsigned int id, unsigned int prop)
288{
289 int type;
290
291 /* Check whether the property is supported or not. */
292 type = get_extcon_type(prop);
293 if (type < 0)
294 return false;
295
296 /* Check whether a specific extcon id supports the property or not. */
297 return !!(extcon_info[id].type & type);
298}
299
Chanwoo Choi7f2a0a12016-07-25 21:15:19 +0900300static int is_extcon_property_capability(struct extcon_dev *edev,
301 unsigned int id, int index,unsigned int prop)
302{
303 struct extcon_cable *cable;
304 int type, ret;
305
306 /* Check whether the property is supported or not. */
307 type = get_extcon_type(prop);
308 if (type < 0)
309 return type;
310
311 cable = &edev->cables[index];
312
313 switch (type) {
314 case EXTCON_TYPE_USB:
315 ret = test_bit(prop - EXTCON_PROP_USB_MIN, cable->usb_bits);
316 break;
317 case EXTCON_TYPE_CHG:
318 ret = test_bit(prop - EXTCON_PROP_CHG_MIN, cable->chg_bits);
319 break;
320 case EXTCON_TYPE_JACK:
321 ret = test_bit(prop - EXTCON_PROP_JACK_MIN, cable->jack_bits);
322 break;
323 case EXTCON_TYPE_DISP:
324 ret = test_bit(prop - EXTCON_PROP_DISP_MIN, cable->disp_bits);
325 break;
326 default:
327 ret = -EINVAL;
328 }
329
330 return ret;
331}
332
Chanwoo Choi792e7e9e2016-07-11 19:30:43 +0900333static void init_property(struct extcon_dev *edev, unsigned int id, int index)
334{
335 unsigned int type = extcon_info[id].type;
336 struct extcon_cable *cable = &edev->cables[index];
337
338 if (EXTCON_TYPE_USB & type)
339 memset(cable->usb_propval, 0, sizeof(cable->usb_propval));
340 if (EXTCON_TYPE_CHG & type)
341 memset(cable->chg_propval, 0, sizeof(cable->chg_propval));
342 if (EXTCON_TYPE_JACK & type)
343 memset(cable->jack_propval, 0, sizeof(cable->jack_propval));
344 if (EXTCON_TYPE_DISP & type)
345 memset(cable->disp_propval, 0, sizeof(cable->disp_propval));
346}
347
MyungJoo Hamde55d872012-04-20 14:16:22 +0900348static ssize_t state_show(struct device *dev, struct device_attribute *attr,
349 char *buf)
350{
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900351 int i, count = 0;
Jingoo Hancb8bb3a2013-09-09 14:33:32 +0900352 struct extcon_dev *edev = dev_get_drvdata(dev);
MyungJoo Hamde55d872012-04-20 14:16:22 +0900353
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900354 if (edev->max_supported == 0)
355 return sprintf(buf, "%u\n", edev->state);
356
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +0900357 for (i = 0; i < edev->max_supported; i++) {
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900358 count += sprintf(buf + count, "%s=%d\n",
Chanwoo Choi55e4e2f2016-07-11 16:34:52 +0900359 extcon_info[edev->supported_cable[i]].name,
Chanwoo Choi70641a02017-03-29 19:18:36 +0900360 !!(edev->state & BIT(i)));
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900361 }
362
363 return count;
364}
Chanwoo Choi5d5321e2016-07-18 15:39:28 +0900365static DEVICE_ATTR_RO(state);
MyungJoo Hamde55d872012-04-20 14:16:22 +0900366
367static ssize_t name_show(struct device *dev, struct device_attribute *attr,
368 char *buf)
369{
Jingoo Hancb8bb3a2013-09-09 14:33:32 +0900370 struct extcon_dev *edev = dev_get_drvdata(dev);
MyungJoo Hamde55d872012-04-20 14:16:22 +0900371
Chanwoo Choi71c3ffa2015-04-15 15:02:01 +0900372 return sprintf(buf, "%s\n", edev->name);
MyungJoo Hamde55d872012-04-20 14:16:22 +0900373}
Greg Kroah-Hartmanaf01da02013-07-24 15:05:10 -0700374static DEVICE_ATTR_RO(name);
MyungJoo Hamde55d872012-04-20 14:16:22 +0900375
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900376static ssize_t cable_name_show(struct device *dev,
377 struct device_attribute *attr, char *buf)
378{
379 struct extcon_cable *cable = container_of(attr, struct extcon_cable,
380 attr_name);
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +0900381 int i = cable->cable_index;
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900382
383 return sprintf(buf, "%s\n",
Chanwoo Choi55e4e2f2016-07-11 16:34:52 +0900384 extcon_info[cable->edev->supported_cable[i]].name);
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900385}
386
387static ssize_t cable_state_show(struct device *dev,
388 struct device_attribute *attr, char *buf)
389{
390 struct extcon_cable *cable = container_of(attr, struct extcon_cable,
391 attr_state);
392
Roger Quadrosbe052cc2015-07-07 16:06:15 +0300393 int i = cable->cable_index;
394
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900395 return sprintf(buf, "%d\n",
Chanwoo Choi575c2b862016-07-22 13:03:17 +0900396 extcon_get_state(cable->edev, cable->edev->supported_cable[i]));
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900397}
398
MyungJoo Hamde55d872012-04-20 14:16:22 +0900399/**
Chanwoo Choi6ab6094f2017-04-03 19:45:48 +0900400 * extcon_sync() - Synchronize the state for an external connector.
401 * @edev: the extcon device
MyungJoo Hamde55d872012-04-20 14:16:22 +0900402 *
Chanwoo Choi6ab6094f2017-04-03 19:45:48 +0900403 * Note that this function send a notification in order to synchronize
404 * the state and property of an external connector.
405 *
406 * Returns 0 if success or error number if fail.
MyungJoo Hamde55d872012-04-20 14:16:22 +0900407 */
Chanwoo Choiab11af042016-07-22 13:16:34 +0900408int extcon_sync(struct extcon_dev *edev, unsigned int id)
MyungJoo Hamde55d872012-04-20 14:16:22 +0900409{
410 char name_buf[120];
411 char state_buf[120];
412 char *prop_buf;
413 char *envp[3];
414 int env_offset = 0;
415 int length;
Chanwoo Choi046050f2015-05-19 20:01:12 +0900416 int index;
Chanwoo Choiab11af042016-07-22 13:16:34 +0900417 int state;
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900418 unsigned long flags;
MyungJoo Hamde55d872012-04-20 14:16:22 +0900419
Chanwoo Choi7eae43a2015-06-21 23:48:36 +0900420 if (!edev)
421 return -EINVAL;
422
Chanwoo Choiab11af042016-07-22 13:16:34 +0900423 index = find_cable_index_by_id(edev, id);
424 if (index < 0)
425 return index;
426
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900427 spin_lock_irqsave(&edev->lock, flags);
Chanwoo Choiab11af042016-07-22 13:16:34 +0900428 state = !!(edev->state & BIT(index));
Chanwoo Choi8a9dbb72018-06-14 11:16:29 +0900429 spin_unlock_irqrestore(&edev->lock, flags);
Chanwoo Choi815429b32017-03-29 19:30:17 +0900430
431 /*
432 * Call functions in a raw notifier chain for the specific one
433 * external connector.
434 */
Chanwoo Choiab11af042016-07-22 13:16:34 +0900435 raw_notifier_call_chain(&edev->nh[index], state, edev);
Roger Quadrosf7a89812015-07-06 17:46:58 +0300436
Chanwoo Choi815429b32017-03-29 19:30:17 +0900437 /*
438 * Call functions in a raw notifier chain for the all supported
439 * external connectors.
440 */
441 raw_notifier_call_chain(&edev->nh_all, state, edev);
442
Chanwoo Choi8a9dbb72018-06-14 11:16:29 +0900443 spin_lock_irqsave(&edev->lock, flags);
Chanwoo Choiab11af042016-07-22 13:16:34 +0900444 /* This could be in interrupt handler */
445 prop_buf = (char *)get_zeroed_page(GFP_ATOMIC);
446 if (!prop_buf) {
447 /* Unlock early before uevent */
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900448 spin_unlock_irqrestore(&edev->lock, flags);
Chanwoo Choiab11af042016-07-22 13:16:34 +0900449
450 dev_err(&edev->dev, "out of memory in extcon_set_state\n");
451 kobject_uevent(&edev->dev.kobj, KOBJ_CHANGE);
452
Pan Biane7d9dd52016-12-03 16:56:49 +0800453 return -ENOMEM;
MyungJoo Hamde55d872012-04-20 14:16:22 +0900454 }
MyungJoo Hambde68e62012-04-20 14:16:26 +0900455
Chanwoo Choiab11af042016-07-22 13:16:34 +0900456 length = name_show(&edev->dev, NULL, prop_buf);
457 if (length > 0) {
458 if (prop_buf[length - 1] == '\n')
459 prop_buf[length - 1] = 0;
460 snprintf(name_buf, sizeof(name_buf), "NAME=%s", prop_buf);
461 envp[env_offset++] = name_buf;
462 }
463
464 length = state_show(&edev->dev, NULL, prop_buf);
465 if (length > 0) {
466 if (prop_buf[length - 1] == '\n')
467 prop_buf[length - 1] = 0;
468 snprintf(state_buf, sizeof(state_buf), "STATE=%s", prop_buf);
469 envp[env_offset++] = state_buf;
470 }
471 envp[env_offset] = NULL;
472
473 /* Unlock early before uevent */
474 spin_unlock_irqrestore(&edev->lock, flags);
475 kobject_uevent_env(&edev->dev.kobj, KOBJ_CHANGE, envp);
476 free_page((unsigned long)prop_buf);
477
MyungJoo Hambde68e62012-04-20 14:16:26 +0900478 return 0;
MyungJoo Hamde55d872012-04-20 14:16:22 +0900479}
Chanwoo Choiab11af042016-07-22 13:16:34 +0900480EXPORT_SYMBOL_GPL(extcon_sync);
MyungJoo Hamde55d872012-04-20 14:16:22 +0900481
Donggeun Kim74c5d092012-04-20 14:16:24 +0900482/**
Chanwoo Choi6ab6094f2017-04-03 19:45:48 +0900483 * extcon_get_state() - Get the state of an external connector.
484 * @edev: the extcon device
485 * @id: the unique id indicating an external connector
486 *
487 * Returns 0 if success or error number if fail.
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900488 */
Chanwoo Choi575c2b862016-07-22 13:03:17 +0900489int extcon_get_state(struct extcon_dev *edev, const unsigned int id)
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900490{
Chanwoo Choi575c2b862016-07-22 13:03:17 +0900491 int index, state;
492 unsigned long flags;
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +0900493
Chanwoo Choi7eae43a2015-06-21 23:48:36 +0900494 if (!edev)
495 return -EINVAL;
496
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +0900497 index = find_cable_index_by_id(edev, id);
498 if (index < 0)
499 return index;
500
Chanwoo Choi575c2b862016-07-22 13:03:17 +0900501 spin_lock_irqsave(&edev->lock, flags);
502 state = is_extcon_attached(edev, index);
503 spin_unlock_irqrestore(&edev->lock, flags);
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900504
Chanwoo Choi575c2b862016-07-22 13:03:17 +0900505 return state;
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900506}
Chanwoo Choi575c2b862016-07-22 13:03:17 +0900507EXPORT_SYMBOL_GPL(extcon_get_state);
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900508
509/**
Chanwoo Choi6ab6094f2017-04-03 19:45:48 +0900510 * extcon_set_state() - Set the state of an external connector.
511 * @edev: the extcon device
512 * @id: the unique id indicating an external connector
513 * @state: the new state of an external connector.
514 * the default semantics is true: attached / false: detached.
Chanwoo Choiab11af042016-07-22 13:16:34 +0900515 *
Chanwoo Choi6ab6094f2017-04-03 19:45:48 +0900516 * Note that this function set the state of an external connector without
517 * a notification. To synchronize the state of an external connector,
518 * have to use extcon_set_state_sync() and extcon_sync().
519 *
520 * Returns 0 if success or error number if fail.
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900521 */
Chanwoo Choi6ab6094f2017-04-03 19:45:48 +0900522int extcon_set_state(struct extcon_dev *edev, unsigned int id, bool state)
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900523{
Chanwoo Choiab11af042016-07-22 13:16:34 +0900524 unsigned long flags;
525 int index, ret = 0;
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900526
Chanwoo Choi7eae43a2015-06-21 23:48:36 +0900527 if (!edev)
528 return -EINVAL;
529
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +0900530 index = find_cable_index_by_id(edev, id);
531 if (index < 0)
532 return index;
533
Chanwoo Choiab11af042016-07-22 13:16:34 +0900534 spin_lock_irqsave(&edev->lock, flags);
535
536 /* Check whether the external connector's state is changed. */
Chanwoo Choi6ab6094f2017-04-03 19:45:48 +0900537 if (!is_extcon_changed(edev, index, state))
Chanwoo Choiab11af042016-07-22 13:16:34 +0900538 goto out;
539
540 if (check_mutually_exclusive(edev,
Chanwoo Choi6ab6094f2017-04-03 19:45:48 +0900541 (edev->state & ~BIT(index)) | (state & BIT(index)))) {
Chanwoo Choiab11af042016-07-22 13:16:34 +0900542 ret = -EPERM;
543 goto out;
544 }
545
Chanwoo Choi792e7e9e2016-07-11 19:30:43 +0900546 /*
547 * Initialize the value of extcon property before setting
548 * the detached state for an external connector.
549 */
Chanwoo Choi6ab6094f2017-04-03 19:45:48 +0900550 if (!state)
Chanwoo Choi792e7e9e2016-07-11 19:30:43 +0900551 init_property(edev, id, index);
552
Chanwoo Choi6ab6094f2017-04-03 19:45:48 +0900553 /* Update the state for an external connector. */
554 if (state)
Chanwoo Choiab11af042016-07-22 13:16:34 +0900555 edev->state |= BIT(index);
556 else
557 edev->state &= ~(BIT(index));
558out:
559 spin_unlock_irqrestore(&edev->lock, flags);
560
561 return ret;
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900562}
Chanwoo Choi575c2b862016-07-22 13:03:17 +0900563EXPORT_SYMBOL_GPL(extcon_set_state);
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900564
565/**
Chanwoo Choi6ab6094f2017-04-03 19:45:48 +0900566 * extcon_set_state_sync() - Set the state of an external connector with sync.
567 * @edev: the extcon device
568 * @id: the unique id indicating an external connector
569 * @state: the new state of external connector.
570 * the default semantics is true: attached / false: detached.
Chanwoo Choiab11af042016-07-22 13:16:34 +0900571 *
Chanwoo Choi6ab6094f2017-04-03 19:45:48 +0900572 * Note that this function set the state of external connector
573 * and synchronize the state by sending a notification.
574 *
575 * Returns 0 if success or error number if fail.
Chanwoo Choiab11af042016-07-22 13:16:34 +0900576 */
Chanwoo Choi6ab6094f2017-04-03 19:45:48 +0900577int extcon_set_state_sync(struct extcon_dev *edev, unsigned int id, bool state)
Chanwoo Choiab11af042016-07-22 13:16:34 +0900578{
Alexander Stein2da3db72021-11-23 15:53:01 +0100579 int ret;
Chanwoo Choiab11af042016-07-22 13:16:34 +0900580
Chanwoo Choi6ab6094f2017-04-03 19:45:48 +0900581 ret = extcon_set_state(edev, id, state);
Chanwoo Choiab11af042016-07-22 13:16:34 +0900582 if (ret < 0)
583 return ret;
584
585 return extcon_sync(edev, id);
586}
587EXPORT_SYMBOL_GPL(extcon_set_state_sync);
588
589/**
Chanwoo Choi6ab6094f2017-04-03 19:45:48 +0900590 * extcon_get_property() - Get the property value of an external connector.
591 * @edev: the extcon device
592 * @id: the unique id indicating an external connector
593 * @prop: the property id indicating an extcon property
594 * @prop_val: the pointer which store the value of extcon property
Chanwoo Choi792e7e9e2016-07-11 19:30:43 +0900595 *
Chanwoo Choi6ab6094f2017-04-03 19:45:48 +0900596 * Note that when getting the property value of external connector,
597 * the external connector should be attached. If detached state, function
598 * return 0 without property value. Also, the each property should be
599 * included in the list of supported properties according to extcon type.
Chanwoo Choi792e7e9e2016-07-11 19:30:43 +0900600 *
Chanwoo Choi6ab6094f2017-04-03 19:45:48 +0900601 * Returns 0 if success or error number if fail.
Chanwoo Choi792e7e9e2016-07-11 19:30:43 +0900602 */
603int extcon_get_property(struct extcon_dev *edev, unsigned int id,
604 unsigned int prop,
605 union extcon_property_value *prop_val)
606{
607 struct extcon_cable *cable;
608 unsigned long flags;
609 int index, ret = 0;
610
Andy Shevchenkocff74992018-08-27 18:35:51 +0300611 *prop_val = (union extcon_property_value){0};
Chanwoo Choi792e7e9e2016-07-11 19:30:43 +0900612
613 if (!edev)
614 return -EINVAL;
615
616 /* Check whether the property is supported or not */
617 if (!is_extcon_property_supported(id, prop))
618 return -EINVAL;
619
620 /* Find the cable index of external connector by using id */
621 index = find_cable_index_by_id(edev, id);
622 if (index < 0)
623 return index;
624
625 spin_lock_irqsave(&edev->lock, flags);
626
Chanwoo Choi7f2a0a12016-07-25 21:15:19 +0900627 /* Check whether the property is available or not. */
628 if (!is_extcon_property_capability(edev, id, index, prop)) {
629 spin_unlock_irqrestore(&edev->lock, flags);
630 return -EPERM;
631 }
632
Chanwoo Choi792e7e9e2016-07-11 19:30:43 +0900633 /*
634 * Check whether the external connector is attached.
635 * If external connector is detached, the user can not
636 * get the property value.
637 */
638 if (!is_extcon_attached(edev, index)) {
639 spin_unlock_irqrestore(&edev->lock, flags);
640 return 0;
641 }
642
643 cable = &edev->cables[index];
644
645 /* Get the property value according to extcon type */
646 switch (prop) {
647 case EXTCON_PROP_USB_MIN ... EXTCON_PROP_USB_MAX:
648 *prop_val = cable->usb_propval[prop - EXTCON_PROP_USB_MIN];
649 break;
650 case EXTCON_PROP_CHG_MIN ... EXTCON_PROP_CHG_MAX:
651 *prop_val = cable->chg_propval[prop - EXTCON_PROP_CHG_MIN];
652 break;
653 case EXTCON_PROP_JACK_MIN ... EXTCON_PROP_JACK_MAX:
654 *prop_val = cable->jack_propval[prop - EXTCON_PROP_JACK_MIN];
655 break;
656 case EXTCON_PROP_DISP_MIN ... EXTCON_PROP_DISP_MAX:
657 *prop_val = cable->disp_propval[prop - EXTCON_PROP_DISP_MIN];
658 break;
659 default:
660 ret = -EINVAL;
661 break;
662 }
663
664 spin_unlock_irqrestore(&edev->lock, flags);
665
666 return ret;
667}
668EXPORT_SYMBOL_GPL(extcon_get_property);
669
670/**
Chanwoo Choi6ab6094f2017-04-03 19:45:48 +0900671 * extcon_set_property() - Set the property value of an external connector.
672 * @edev: the extcon device
673 * @id: the unique id indicating an external connector
674 * @prop: the property id indicating an extcon property
675 * @prop_val: the pointer including the new value of extcon property
Chanwoo Choi792e7e9e2016-07-11 19:30:43 +0900676 *
Chanwoo Choi6ab6094f2017-04-03 19:45:48 +0900677 * Note that each property should be included in the list of supported
678 * properties according to the extcon type.
Chanwoo Choi792e7e9e2016-07-11 19:30:43 +0900679 *
Chanwoo Choi6ab6094f2017-04-03 19:45:48 +0900680 * Returns 0 if success or error number if fail.
Chanwoo Choi792e7e9e2016-07-11 19:30:43 +0900681 */
682int extcon_set_property(struct extcon_dev *edev, unsigned int id,
683 unsigned int prop,
684 union extcon_property_value prop_val)
685{
686 struct extcon_cable *cable;
687 unsigned long flags;
688 int index, ret = 0;
689
690 if (!edev)
691 return -EINVAL;
692
693 /* Check whether the property is supported or not */
694 if (!is_extcon_property_supported(id, prop))
695 return -EINVAL;
696
697 /* Find the cable index of external connector by using id */
698 index = find_cable_index_by_id(edev, id);
699 if (index < 0)
700 return index;
701
702 spin_lock_irqsave(&edev->lock, flags);
703
Chanwoo Choi7f2a0a12016-07-25 21:15:19 +0900704 /* Check whether the property is available or not. */
705 if (!is_extcon_property_capability(edev, id, index, prop)) {
706 spin_unlock_irqrestore(&edev->lock, flags);
707 return -EPERM;
708 }
709
Chanwoo Choi792e7e9e2016-07-11 19:30:43 +0900710 cable = &edev->cables[index];
711
712 /* Set the property value according to extcon type */
713 switch (prop) {
714 case EXTCON_PROP_USB_MIN ... EXTCON_PROP_USB_MAX:
715 cable->usb_propval[prop - EXTCON_PROP_USB_MIN] = prop_val;
716 break;
717 case EXTCON_PROP_CHG_MIN ... EXTCON_PROP_CHG_MAX:
718 cable->chg_propval[prop - EXTCON_PROP_CHG_MIN] = prop_val;
719 break;
720 case EXTCON_PROP_JACK_MIN ... EXTCON_PROP_JACK_MAX:
721 cable->jack_propval[prop - EXTCON_PROP_JACK_MIN] = prop_val;
722 break;
723 case EXTCON_PROP_DISP_MIN ... EXTCON_PROP_DISP_MAX:
724 cable->disp_propval[prop - EXTCON_PROP_DISP_MIN] = prop_val;
725 break;
726 default:
727 ret = -EINVAL;
728 break;
729 }
730
731 spin_unlock_irqrestore(&edev->lock, flags);
732
733 return ret;
734}
735EXPORT_SYMBOL_GPL(extcon_set_property);
736
737/**
Chanwoo Choi6ab6094f2017-04-03 19:45:48 +0900738 * extcon_set_property_sync() - Set property of an external connector with sync.
739 * @prop_val: the pointer including the new value of extcon property
Chanwoo Choiab11af042016-07-22 13:16:34 +0900740 *
Chanwoo Choi6ab6094f2017-04-03 19:45:48 +0900741 * Note that when setting the property value of external connector,
742 * the external connector should be attached. The each property should
743 * be included in the list of supported properties according to extcon type.
Chanwoo Choiab11af042016-07-22 13:16:34 +0900744 *
Chanwoo Choi6ab6094f2017-04-03 19:45:48 +0900745 * Returns 0 if success or error number if fail.
Chanwoo Choiab11af042016-07-22 13:16:34 +0900746 */
747int extcon_set_property_sync(struct extcon_dev *edev, unsigned int id,
748 unsigned int prop,
749 union extcon_property_value prop_val)
750{
751 int ret;
752
753 ret = extcon_set_property(edev, id, prop, prop_val);
754 if (ret < 0)
755 return ret;
756
757 return extcon_sync(edev, id);
758}
759EXPORT_SYMBOL_GPL(extcon_set_property_sync);
760
761/**
Chanwoo Choi6ab6094f2017-04-03 19:45:48 +0900762 * extcon_get_property_capability() - Get the capability of the property
763 * for an external connector.
764 * @edev: the extcon device
765 * @id: the unique id indicating an external connector
766 * @prop: the property id indicating an extcon property
Chanwoo Choi7f2a0a12016-07-25 21:15:19 +0900767 *
768 * Returns 1 if the property is available or 0 if not available.
769 */
770int extcon_get_property_capability(struct extcon_dev *edev, unsigned int id,
771 unsigned int prop)
772{
773 int index;
774
775 if (!edev)
776 return -EINVAL;
777
778 /* Check whether the property is supported or not */
779 if (!is_extcon_property_supported(id, prop))
780 return -EINVAL;
781
782 /* Find the cable index of external connector by using id */
783 index = find_cable_index_by_id(edev, id);
784 if (index < 0)
785 return index;
786
787 return is_extcon_property_capability(edev, id, index, prop);
788}
789EXPORT_SYMBOL_GPL(extcon_get_property_capability);
790
791/**
Chanwoo Choi6ab6094f2017-04-03 19:45:48 +0900792 * extcon_set_property_capability() - Set the capability of the property
793 * for an external connector.
794 * @edev: the extcon device
795 * @id: the unique id indicating an external connector
796 * @prop: the property id indicating an extcon property
Chanwoo Choi7f2a0a12016-07-25 21:15:19 +0900797 *
Chanwoo Choi6ab6094f2017-04-03 19:45:48 +0900798 * Note that this function set the capability of the property
799 * for an external connector in order to mark the bit in capability
800 * bitmap which mean the available state of the property.
Chanwoo Choi7f2a0a12016-07-25 21:15:19 +0900801 *
Chanwoo Choi6ab6094f2017-04-03 19:45:48 +0900802 * Returns 0 if success or error number if fail.
Chanwoo Choi7f2a0a12016-07-25 21:15:19 +0900803 */
804int extcon_set_property_capability(struct extcon_dev *edev, unsigned int id,
805 unsigned int prop)
806{
807 struct extcon_cable *cable;
808 int index, type, ret = 0;
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 type = get_extcon_type(prop);
823 if (type < 0)
824 return type;
825
826 cable = &edev->cables[index];
827
828 switch (type) {
829 case EXTCON_TYPE_USB:
830 __set_bit(prop - EXTCON_PROP_USB_MIN, cable->usb_bits);
831 break;
832 case EXTCON_TYPE_CHG:
833 __set_bit(prop - EXTCON_PROP_CHG_MIN, cable->chg_bits);
834 break;
835 case EXTCON_TYPE_JACK:
836 __set_bit(prop - EXTCON_PROP_JACK_MIN, cable->jack_bits);
837 break;
838 case EXTCON_TYPE_DISP:
839 __set_bit(prop - EXTCON_PROP_DISP_MIN, cable->disp_bits);
840 break;
841 default:
842 ret = -EINVAL;
843 }
844
845 return ret;
846}
847EXPORT_SYMBOL_GPL(extcon_set_property_capability);
848
849/**
Chanwoo Choi6ab6094f2017-04-03 19:45:48 +0900850 * extcon_get_extcon_dev() - Get the extcon device instance from the name.
851 * @extcon_name: the extcon name provided with extcon_dev_register()
852 *
853 * Return the pointer of extcon device if success or ERR_PTR(err) if fail.
Donggeun Kim74c5d092012-04-20 14:16:24 +0900854 */
855struct extcon_dev *extcon_get_extcon_dev(const char *extcon_name)
856{
857 struct extcon_dev *sd;
858
Chanwoo Choi7eae43a2015-06-21 23:48:36 +0900859 if (!extcon_name)
860 return ERR_PTR(-EINVAL);
861
Donggeun Kim74c5d092012-04-20 14:16:24 +0900862 mutex_lock(&extcon_dev_list_lock);
863 list_for_each_entry(sd, &extcon_dev_list, entry) {
864 if (!strcmp(sd->name, extcon_name))
865 goto out;
866 }
867 sd = NULL;
868out:
869 mutex_unlock(&extcon_dev_list_lock);
870 return sd;
871}
872EXPORT_SYMBOL_GPL(extcon_get_extcon_dev);
873
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900874/**
Chanwoo Choi6ab6094f2017-04-03 19:45:48 +0900875 * extcon_register_notifier() - Register a notifier block to get notified by
876 * any state changes from the extcon.
877 * @edev: the extcon device
878 * @id: the unique id indicating an external connector
879 * @nb: a notifier block to be registered
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900880 *
881 * Note that the second parameter given to the callback of nb (val) is
Chanwoo Choi6ab6094f2017-04-03 19:45:48 +0900882 * the current state of an external connector and the third pameter
883 * is the pointer of extcon device.
884 *
885 * Returns 0 if success or error number if fail.
Donggeun Kim74c5d092012-04-20 14:16:24 +0900886 */
Chanwoo Choi73b6ecd2015-06-12 11:10:06 +0900887int extcon_register_notifier(struct extcon_dev *edev, unsigned int id,
Chanwoo Choi046050f2015-05-19 20:01:12 +0900888 struct notifier_block *nb)
Donggeun Kim74c5d092012-04-20 14:16:24 +0900889{
Hans de Goede66bee352015-03-21 17:26:24 +0100890 unsigned long flags;
Colin Ian King1fa80f12020-04-16 00:08:21 +0100891 int ret, idx;
Chanwoo Choi046050f2015-05-19 20:01:12 +0900892
Chanwoo Choi01b4c9a2016-12-19 21:02:33 +0900893 if (!edev || !nb)
Chanwoo Choi7eae43a2015-06-21 23:48:36 +0900894 return -EINVAL;
895
Chanwoo Choi01b4c9a2016-12-19 21:02:33 +0900896 idx = find_cable_index_by_id(edev, id);
897 if (idx < 0)
898 return idx;
Hans de Goede66bee352015-03-21 17:26:24 +0100899
Chanwoo Choi01b4c9a2016-12-19 21:02:33 +0900900 spin_lock_irqsave(&edev->lock, flags);
901 ret = raw_notifier_chain_register(&edev->nh[idx], nb);
902 spin_unlock_irqrestore(&edev->lock, flags);
Hans de Goede66bee352015-03-21 17:26:24 +0100903
904 return ret;
Donggeun Kim74c5d092012-04-20 14:16:24 +0900905}
906EXPORT_SYMBOL_GPL(extcon_register_notifier);
907
908/**
Chanwoo Choi6ab6094f2017-04-03 19:45:48 +0900909 * extcon_unregister_notifier() - Unregister a notifier block from the extcon.
910 * @edev: the extcon device
911 * @id: the unique id indicating an external connector
912 * @nb: a notifier block to be registered
913 *
914 * Returns 0 if success or error number if fail.
Donggeun Kim74c5d092012-04-20 14:16:24 +0900915 */
Chanwoo Choi73b6ecd2015-06-12 11:10:06 +0900916int extcon_unregister_notifier(struct extcon_dev *edev, unsigned int id,
Chanwoo Choi046050f2015-05-19 20:01:12 +0900917 struct notifier_block *nb)
Donggeun Kim74c5d092012-04-20 14:16:24 +0900918{
Hans de Goede66bee352015-03-21 17:26:24 +0100919 unsigned long flags;
Chanwoo Choi046050f2015-05-19 20:01:12 +0900920 int ret, idx;
921
Chanwoo Choi7eae43a2015-06-21 23:48:36 +0900922 if (!edev || !nb)
923 return -EINVAL;
924
Chanwoo Choi046050f2015-05-19 20:01:12 +0900925 idx = find_cable_index_by_id(edev, id);
Stephen Boyda05f44c2016-06-23 19:34:30 +0900926 if (idx < 0)
927 return idx;
Hans de Goede66bee352015-03-21 17:26:24 +0100928
929 spin_lock_irqsave(&edev->lock, flags);
Chanwoo Choi046050f2015-05-19 20:01:12 +0900930 ret = raw_notifier_chain_unregister(&edev->nh[idx], nb);
Hans de Goede66bee352015-03-21 17:26:24 +0100931 spin_unlock_irqrestore(&edev->lock, flags);
932
933 return ret;
Donggeun Kim74c5d092012-04-20 14:16:24 +0900934}
935EXPORT_SYMBOL_GPL(extcon_unregister_notifier);
936
Chanwoo Choi815429b32017-03-29 19:30:17 +0900937/**
Chanwoo Choi6ab6094f2017-04-03 19:45:48 +0900938 * extcon_register_notifier_all() - Register a notifier block for all connectors.
939 * @edev: the extcon device
940 * @nb: a notifier block to be registered
Chanwoo Choi815429b32017-03-29 19:30:17 +0900941 *
Chanwoo Choi6ab6094f2017-04-03 19:45:48 +0900942 * Note that this function registers a notifier block in order to receive
943 * the state change of all supported external connectors from extcon device.
Markus Elfring826a47e2017-04-23 22:15:20 +0200944 * And the second parameter given to the callback of nb (val) is
Chanwoo Choi6ab6094f2017-04-03 19:45:48 +0900945 * the current state and the third pameter is the pointer of extcon device.
Chanwoo Choi815429b32017-03-29 19:30:17 +0900946 *
Chanwoo Choi6ab6094f2017-04-03 19:45:48 +0900947 * Returns 0 if success or error number if fail.
Chanwoo Choi815429b32017-03-29 19:30:17 +0900948 */
949int extcon_register_notifier_all(struct extcon_dev *edev,
950 struct notifier_block *nb)
951{
952 unsigned long flags;
953 int ret;
954
955 if (!edev || !nb)
956 return -EINVAL;
957
958 spin_lock_irqsave(&edev->lock, flags);
959 ret = raw_notifier_chain_register(&edev->nh_all, nb);
960 spin_unlock_irqrestore(&edev->lock, flags);
961
962 return ret;
963}
964EXPORT_SYMBOL_GPL(extcon_register_notifier_all);
965
966/**
967 * extcon_unregister_notifier_all() - Unregister a notifier block from extcon.
Chanwoo Choi6ab6094f2017-04-03 19:45:48 +0900968 * @edev: the extcon device
969 * @nb: a notifier block to be registered
Chanwoo Choi815429b32017-03-29 19:30:17 +0900970 *
Chanwoo Choi6ab6094f2017-04-03 19:45:48 +0900971 * Returns 0 if success or error number if fail.
Chanwoo Choi815429b32017-03-29 19:30:17 +0900972 */
973int extcon_unregister_notifier_all(struct extcon_dev *edev,
974 struct notifier_block *nb)
975{
976 unsigned long flags;
977 int ret;
978
979 if (!edev || !nb)
980 return -EINVAL;
981
982 spin_lock_irqsave(&edev->lock, flags);
983 ret = raw_notifier_chain_unregister(&edev->nh_all, nb);
984 spin_unlock_irqrestore(&edev->lock, flags);
985
986 return ret;
987}
988EXPORT_SYMBOL_GPL(extcon_unregister_notifier_all);
989
Greg Kroah-Hartmanaf01da02013-07-24 15:05:10 -0700990static struct attribute *extcon_attrs[] = {
991 &dev_attr_state.attr,
992 &dev_attr_name.attr,
993 NULL,
MyungJoo Hamde55d872012-04-20 14:16:22 +0900994};
Greg Kroah-Hartmanaf01da02013-07-24 15:05:10 -0700995ATTRIBUTE_GROUPS(extcon);
MyungJoo Hamde55d872012-04-20 14:16:22 +0900996
997static int create_extcon_class(void)
998{
999 if (!extcon_class) {
1000 extcon_class = class_create(THIS_MODULE, "extcon");
1001 if (IS_ERR(extcon_class))
1002 return PTR_ERR(extcon_class);
Greg Kroah-Hartmanaf01da02013-07-24 15:05:10 -07001003 extcon_class->dev_groups = extcon_groups;
MyungJoo Hamde55d872012-04-20 14:16:22 +09001004 }
1005
1006 return 0;
1007}
1008
MyungJoo Hamde55d872012-04-20 14:16:22 +09001009static void extcon_dev_release(struct device *dev)
1010{
MyungJoo Hamde55d872012-04-20 14:16:22 +09001011}
1012
MyungJoo Hambde68e62012-04-20 14:16:26 +09001013static const char *muex_name = "mutually_exclusive";
MyungJoo Ham806d9dd2012-04-20 14:16:25 +09001014static void dummy_sysfs_dev_release(struct device *dev)
1015{
1016}
1017
Chanwoo Choia9af6522014-04-24 19:46:49 +09001018/*
1019 * extcon_dev_allocate() - Allocate the memory of extcon device.
Chanwoo Choi6ab6094f2017-04-03 19:45:48 +09001020 * @supported_cable: the array of the supported external connectors
1021 * ending with EXTCON_NONE.
Chanwoo Choia9af6522014-04-24 19:46:49 +09001022 *
Chanwoo Choi6ab6094f2017-04-03 19:45:48 +09001023 * Note that this function allocates the memory for extcon device
1024 * and initialize default setting for the extcon device.
Chanwoo Choia9af6522014-04-24 19:46:49 +09001025 *
Chanwoo Choi6ab6094f2017-04-03 19:45:48 +09001026 * Returns the pointer memory of allocated extcon_dev if success
1027 * or ERR_PTR(err) if fail.
Chanwoo Choia9af6522014-04-24 19:46:49 +09001028 */
Chanwoo Choi73b6ecd2015-06-12 11:10:06 +09001029struct extcon_dev *extcon_dev_allocate(const unsigned int *supported_cable)
Chanwoo Choia9af6522014-04-24 19:46:49 +09001030{
1031 struct extcon_dev *edev;
1032
Chanwoo Choi7eae43a2015-06-21 23:48:36 +09001033 if (!supported_cable)
1034 return ERR_PTR(-EINVAL);
1035
Chanwoo Choia9af6522014-04-24 19:46:49 +09001036 edev = kzalloc(sizeof(*edev), GFP_KERNEL);
1037 if (!edev)
1038 return ERR_PTR(-ENOMEM);
1039
1040 edev->max_supported = 0;
1041 edev->supported_cable = supported_cable;
1042
1043 return edev;
1044}
1045
1046/*
1047 * extcon_dev_free() - Free the memory of extcon device.
Chanwoo Choi6ab6094f2017-04-03 19:45:48 +09001048 * @edev: the extcon device
Chanwoo Choia9af6522014-04-24 19:46:49 +09001049 */
1050void extcon_dev_free(struct extcon_dev *edev)
1051{
1052 kfree(edev);
1053}
1054EXPORT_SYMBOL_GPL(extcon_dev_free);
1055
MyungJoo Hamde55d872012-04-20 14:16:22 +09001056/**
Chanwoo Choi6ab6094f2017-04-03 19:45:48 +09001057 * extcon_dev_register() - Register an new extcon device
1058 * @edev: the extcon device to be registered
MyungJoo Hamde55d872012-04-20 14:16:22 +09001059 *
1060 * Among the members of edev struct, please set the "user initializing data"
MyungJoo Hamde55d872012-04-20 14:16:22 +09001061 * do not set the values of "internal data", which are initialized by
1062 * this function.
Chanwoo Choi6ab6094f2017-04-03 19:45:48 +09001063 *
1064 * Note that before calling this funciton, have to allocate the memory
1065 * of an extcon device by using the extcon_dev_allocate(). And the extcon
1066 * dev should include the supported_cable information.
1067 *
1068 * Returns 0 if success or error number if fail.
MyungJoo Hamde55d872012-04-20 14:16:22 +09001069 */
Chanwoo Choi42d7d752013-09-27 09:20:26 +09001070int extcon_dev_register(struct extcon_dev *edev)
MyungJoo Hamde55d872012-04-20 14:16:22 +09001071{
MyungJoo Ham806d9dd2012-04-20 14:16:25 +09001072 int ret, index = 0;
Chanwoo Choi71c3ffa2015-04-15 15:02:01 +09001073 static atomic_t edev_no = ATOMIC_INIT(-1);
MyungJoo Hamde55d872012-04-20 14:16:22 +09001074
1075 if (!extcon_class) {
1076 ret = create_extcon_class();
1077 if (ret < 0)
1078 return ret;
1079 }
1080
Chanwoo Choi7eae43a2015-06-21 23:48:36 +09001081 if (!edev || !edev->supported_cable)
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +09001082 return -EINVAL;
MyungJoo Ham806d9dd2012-04-20 14:16:25 +09001083
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +09001084 for (; edev->supported_cable[index] != EXTCON_NONE; index++);
1085
1086 edev->max_supported = index;
MyungJoo Ham806d9dd2012-04-20 14:16:25 +09001087 if (index > SUPPORTED_CABLE_MAX) {
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +09001088 dev_err(&edev->dev,
1089 "exceed the maximum number of supported cables\n");
MyungJoo Ham806d9dd2012-04-20 14:16:25 +09001090 return -EINVAL;
1091 }
1092
Chanwoo Choidae61652013-09-27 09:19:40 +09001093 edev->dev.class = extcon_class;
1094 edev->dev.release = extcon_dev_release;
MyungJoo Hamde55d872012-04-20 14:16:22 +09001095
Chanwoo Choi71c3ffa2015-04-15 15:02:01 +09001096 edev->name = dev_name(edev->dev.parent);
Chanwoo Choi42d7d752013-09-27 09:20:26 +09001097 if (IS_ERR_OR_NULL(edev->name)) {
1098 dev_err(&edev->dev,
1099 "extcon device name is null\n");
1100 return -EINVAL;
1101 }
Chanwoo Choi71c3ffa2015-04-15 15:02:01 +09001102 dev_set_name(&edev->dev, "extcon%lu",
1103 (unsigned long)atomic_inc_return(&edev_no));
MyungJoo Ham806d9dd2012-04-20 14:16:25 +09001104
1105 if (edev->max_supported) {
MyungJoo Ham806d9dd2012-04-20 14:16:25 +09001106 char *str;
1107 struct extcon_cable *cable;
1108
Kees Cook6396bb22018-06-12 14:03:40 -07001109 edev->cables = kcalloc(edev->max_supported,
1110 sizeof(struct extcon_cable),
1111 GFP_KERNEL);
MyungJoo Ham806d9dd2012-04-20 14:16:25 +09001112 if (!edev->cables) {
1113 ret = -ENOMEM;
1114 goto err_sysfs_alloc;
1115 }
1116 for (index = 0; index < edev->max_supported; index++) {
1117 cable = &edev->cables[index];
1118
Andy Shevchenko69f75a42018-08-27 18:35:52 +03001119 str = kasprintf(GFP_KERNEL, "cable.%d", index);
MyungJoo Ham806d9dd2012-04-20 14:16:25 +09001120 if (!str) {
1121 for (index--; index >= 0; index--) {
1122 cable = &edev->cables[index];
1123 kfree(cable->attr_g.name);
1124 }
1125 ret = -ENOMEM;
1126
1127 goto err_alloc_cables;
1128 }
MyungJoo Ham806d9dd2012-04-20 14:16:25 +09001129
1130 cable->edev = edev;
1131 cable->cable_index = index;
1132 cable->attrs[0] = &cable->attr_name.attr;
1133 cable->attrs[1] = &cable->attr_state.attr;
1134 cable->attrs[2] = NULL;
1135 cable->attr_g.name = str;
1136 cable->attr_g.attrs = cable->attrs;
1137
Mark Brown9baf3222012-08-16 20:03:21 +01001138 sysfs_attr_init(&cable->attr_name.attr);
MyungJoo Ham806d9dd2012-04-20 14:16:25 +09001139 cable->attr_name.attr.name = "name";
1140 cable->attr_name.attr.mode = 0444;
1141 cable->attr_name.show = cable_name_show;
1142
Mark Brown9baf3222012-08-16 20:03:21 +01001143 sysfs_attr_init(&cable->attr_state.attr);
MyungJoo Ham806d9dd2012-04-20 14:16:25 +09001144 cable->attr_state.attr.name = "state";
Chanwoo Choiea9dd9d2013-05-22 19:31:59 +09001145 cable->attr_state.attr.mode = 0444;
MyungJoo Ham806d9dd2012-04-20 14:16:25 +09001146 cable->attr_state.show = cable_state_show;
MyungJoo Ham806d9dd2012-04-20 14:16:25 +09001147 }
1148 }
1149
MyungJoo Hambde68e62012-04-20 14:16:26 +09001150 if (edev->max_supported && edev->mutually_exclusive) {
MyungJoo Hambde68e62012-04-20 14:16:26 +09001151 char *name;
1152
1153 /* Count the size of mutually_exclusive array */
1154 for (index = 0; edev->mutually_exclusive[index]; index++)
1155 ;
1156
Kees Cook6396bb22018-06-12 14:03:40 -07001157 edev->attrs_muex = kcalloc(index + 1,
1158 sizeof(struct attribute *),
1159 GFP_KERNEL);
MyungJoo Hambde68e62012-04-20 14:16:26 +09001160 if (!edev->attrs_muex) {
1161 ret = -ENOMEM;
1162 goto err_muex;
1163 }
1164
Kees Cook6396bb22018-06-12 14:03:40 -07001165 edev->d_attrs_muex = kcalloc(index,
1166 sizeof(struct device_attribute),
1167 GFP_KERNEL);
MyungJoo Hambde68e62012-04-20 14:16:26 +09001168 if (!edev->d_attrs_muex) {
1169 ret = -ENOMEM;
1170 kfree(edev->attrs_muex);
1171 goto err_muex;
1172 }
1173
1174 for (index = 0; edev->mutually_exclusive[index]; index++) {
Andy Shevchenko69f75a42018-08-27 18:35:52 +03001175 name = kasprintf(GFP_KERNEL, "0x%x",
1176 edev->mutually_exclusive[index]);
MyungJoo Hambde68e62012-04-20 14:16:26 +09001177 if (!name) {
1178 for (index--; index >= 0; index--) {
1179 kfree(edev->d_attrs_muex[index].attr.
1180 name);
1181 }
1182 kfree(edev->d_attrs_muex);
1183 kfree(edev->attrs_muex);
1184 ret = -ENOMEM;
1185 goto err_muex;
1186 }
Mark Brown9baf3222012-08-16 20:03:21 +01001187 sysfs_attr_init(&edev->d_attrs_muex[index].attr);
MyungJoo Hambde68e62012-04-20 14:16:26 +09001188 edev->d_attrs_muex[index].attr.name = name;
1189 edev->d_attrs_muex[index].attr.mode = 0000;
1190 edev->attrs_muex[index] = &edev->d_attrs_muex[index]
1191 .attr;
1192 }
1193 edev->attr_g_muex.name = muex_name;
1194 edev->attr_g_muex.attrs = edev->attrs_muex;
1195
1196 }
1197
MyungJoo Ham806d9dd2012-04-20 14:16:25 +09001198 if (edev->max_supported) {
1199 edev->extcon_dev_type.groups =
Kees Cook6396bb22018-06-12 14:03:40 -07001200 kcalloc(edev->max_supported + 2,
1201 sizeof(struct attribute_group *),
1202 GFP_KERNEL);
MyungJoo Ham806d9dd2012-04-20 14:16:25 +09001203 if (!edev->extcon_dev_type.groups) {
1204 ret = -ENOMEM;
1205 goto err_alloc_groups;
1206 }
1207
Chanwoo Choidae61652013-09-27 09:19:40 +09001208 edev->extcon_dev_type.name = dev_name(&edev->dev);
MyungJoo Ham806d9dd2012-04-20 14:16:25 +09001209 edev->extcon_dev_type.release = dummy_sysfs_dev_release;
1210
1211 for (index = 0; index < edev->max_supported; index++)
1212 edev->extcon_dev_type.groups[index] =
1213 &edev->cables[index].attr_g;
MyungJoo Hambde68e62012-04-20 14:16:26 +09001214 if (edev->mutually_exclusive)
1215 edev->extcon_dev_type.groups[index] =
1216 &edev->attr_g_muex;
MyungJoo Ham806d9dd2012-04-20 14:16:25 +09001217
Chanwoo Choidae61652013-09-27 09:19:40 +09001218 edev->dev.type = &edev->extcon_dev_type;
MyungJoo Ham806d9dd2012-04-20 14:16:25 +09001219 }
1220
Chanwoo Choidae61652013-09-27 09:19:40 +09001221 ret = device_register(&edev->dev);
MyungJoo Hamde55d872012-04-20 14:16:22 +09001222 if (ret) {
Chanwoo Choidae61652013-09-27 09:19:40 +09001223 put_device(&edev->dev);
MyungJoo Hamde55d872012-04-20 14:16:22 +09001224 goto err_dev;
1225 }
MyungJoo Hamde55d872012-04-20 14:16:22 +09001226
MyungJoo Ham806d9dd2012-04-20 14:16:25 +09001227 spin_lock_init(&edev->lock);
Markus Elfring3f5071a2017-04-23 20:54:11 +02001228 edev->nh = devm_kcalloc(&edev->dev, edev->max_supported,
1229 sizeof(*edev->nh), GFP_KERNEL);
Chanwoo Choi046050f2015-05-19 20:01:12 +09001230 if (!edev->nh) {
1231 ret = -ENOMEM;
Dinghao Liud3bdd1c2021-01-19 16:10:55 +08001232 device_unregister(&edev->dev);
Chanwoo Choi046050f2015-05-19 20:01:12 +09001233 goto err_dev;
1234 }
1235
1236 for (index = 0; index < edev->max_supported; index++)
1237 RAW_INIT_NOTIFIER_HEAD(&edev->nh[index]);
Donggeun Kim74c5d092012-04-20 14:16:24 +09001238
Chanwoo Choi815429b32017-03-29 19:30:17 +09001239 RAW_INIT_NOTIFIER_HEAD(&edev->nh_all);
1240
Chanwoo Choidae61652013-09-27 09:19:40 +09001241 dev_set_drvdata(&edev->dev, edev);
MyungJoo Hamde55d872012-04-20 14:16:22 +09001242 edev->state = 0;
Donggeun Kim74c5d092012-04-20 14:16:24 +09001243
1244 mutex_lock(&extcon_dev_list_lock);
1245 list_add(&edev->entry, &extcon_dev_list);
1246 mutex_unlock(&extcon_dev_list_lock);
1247
MyungJoo Hamde55d872012-04-20 14:16:22 +09001248 return 0;
1249
1250err_dev:
MyungJoo Ham806d9dd2012-04-20 14:16:25 +09001251 if (edev->max_supported)
1252 kfree(edev->extcon_dev_type.groups);
1253err_alloc_groups:
MyungJoo Hambde68e62012-04-20 14:16:26 +09001254 if (edev->max_supported && edev->mutually_exclusive) {
1255 for (index = 0; edev->mutually_exclusive[index]; index++)
1256 kfree(edev->d_attrs_muex[index].attr.name);
1257 kfree(edev->d_attrs_muex);
1258 kfree(edev->attrs_muex);
1259 }
1260err_muex:
MyungJoo Ham806d9dd2012-04-20 14:16:25 +09001261 for (index = 0; index < edev->max_supported; index++)
1262 kfree(edev->cables[index].attr_g.name);
1263err_alloc_cables:
1264 if (edev->max_supported)
1265 kfree(edev->cables);
1266err_sysfs_alloc:
MyungJoo Hamde55d872012-04-20 14:16:22 +09001267 return ret;
1268}
1269EXPORT_SYMBOL_GPL(extcon_dev_register);
1270
1271/**
1272 * extcon_dev_unregister() - Unregister the extcon device.
Chanwoo Choi6ab6094f2017-04-03 19:45:48 +09001273 * @edev: the extcon device to be unregistered.
MyungJoo Hamde55d872012-04-20 14:16:22 +09001274 *
1275 * Note that this does not call kfree(edev) because edev was not allocated
1276 * by this class.
1277 */
1278void extcon_dev_unregister(struct extcon_dev *edev)
1279{
anish kumar57e7cd32012-10-22 09:43:33 +09001280 int index;
1281
Chanwoo Choi7eae43a2015-06-21 23:48:36 +09001282 if (!edev)
1283 return;
1284
anish kumar57e7cd32012-10-22 09:43:33 +09001285 mutex_lock(&extcon_dev_list_lock);
1286 list_del(&edev->entry);
1287 mutex_unlock(&extcon_dev_list_lock);
1288
Chanwoo Choidae61652013-09-27 09:19:40 +09001289 if (IS_ERR_OR_NULL(get_device(&edev->dev))) {
1290 dev_err(&edev->dev, "Failed to unregister extcon_dev (%s)\n",
1291 dev_name(&edev->dev));
anish kumar57e7cd32012-10-22 09:43:33 +09001292 return;
1293 }
1294
Wang, Xiaoming7585ca02013-11-01 18:48:14 -04001295 device_unregister(&edev->dev);
1296
anish kumar57e7cd32012-10-22 09:43:33 +09001297 if (edev->mutually_exclusive && edev->max_supported) {
1298 for (index = 0; edev->mutually_exclusive[index];
1299 index++)
1300 kfree(edev->d_attrs_muex[index].attr.name);
1301 kfree(edev->d_attrs_muex);
1302 kfree(edev->attrs_muex);
1303 }
1304
1305 for (index = 0; index < edev->max_supported; index++)
1306 kfree(edev->cables[index].attr_g.name);
1307
1308 if (edev->max_supported) {
1309 kfree(edev->extcon_dev_type.groups);
1310 kfree(edev->cables);
1311 }
1312
Chanwoo Choidae61652013-09-27 09:19:40 +09001313 put_device(&edev->dev);
MyungJoo Hamde55d872012-04-20 14:16:22 +09001314}
1315EXPORT_SYMBOL_GPL(extcon_dev_unregister);
1316
Chanwoo Choi1ad94ff2014-03-18 19:55:46 +09001317#ifdef CONFIG_OF
Andrzej Hajda370ed7a2018-02-27 13:22:07 +01001318
1319/*
1320 * extcon_find_edev_by_node - Find the extcon device from devicetree.
1321 * @node : OF node identifying edev
1322 *
1323 * Return the pointer of extcon device if success or ERR_PTR(err) if fail.
1324 */
1325struct extcon_dev *extcon_find_edev_by_node(struct device_node *node)
1326{
1327 struct extcon_dev *edev;
1328
1329 mutex_lock(&extcon_dev_list_lock);
1330 list_for_each_entry(edev, &extcon_dev_list, entry)
1331 if (edev->dev.parent && edev->dev.parent->of_node == node)
1332 goto out;
1333 edev = ERR_PTR(-EPROBE_DEFER);
1334out:
1335 mutex_unlock(&extcon_dev_list_lock);
1336
1337 return edev;
1338}
1339
Chanwoo Choi1ad94ff2014-03-18 19:55:46 +09001340/*
Chanwoo Choi6ab6094f2017-04-03 19:45:48 +09001341 * extcon_get_edev_by_phandle - Get the extcon device from devicetree.
1342 * @dev : the instance to the given device
1343 * @index : the index into list of extcon_dev
Chanwoo Choi1ad94ff2014-03-18 19:55:46 +09001344 *
Chanwoo Choi6ab6094f2017-04-03 19:45:48 +09001345 * Return the pointer of extcon device if success or ERR_PTR(err) if fail.
Chanwoo Choi1ad94ff2014-03-18 19:55:46 +09001346 */
1347struct extcon_dev *extcon_get_edev_by_phandle(struct device *dev, int index)
1348{
1349 struct device_node *node;
1350 struct extcon_dev *edev;
1351
Chanwoo Choi7eae43a2015-06-21 23:48:36 +09001352 if (!dev)
1353 return ERR_PTR(-EINVAL);
1354
Chanwoo Choi1ad94ff2014-03-18 19:55:46 +09001355 if (!dev->of_node) {
Stephen Boyde8752b72016-07-05 11:57:05 -07001356 dev_dbg(dev, "device does not have a device node entry\n");
Chanwoo Choi1ad94ff2014-03-18 19:55:46 +09001357 return ERR_PTR(-EINVAL);
1358 }
1359
1360 node = of_parse_phandle(dev->of_node, "extcon", index);
1361 if (!node) {
Rob Herring5c270362017-07-18 16:43:00 -05001362 dev_dbg(dev, "failed to get phandle in %pOF node\n",
1363 dev->of_node);
Chanwoo Choi1ad94ff2014-03-18 19:55:46 +09001364 return ERR_PTR(-ENODEV);
1365 }
1366
Andrzej Hajda370ed7a2018-02-27 13:22:07 +01001367 edev = extcon_find_edev_by_node(node);
Peter Chen5d5c4c12016-07-01 18:41:55 +09001368 of_node_put(node);
Chanwoo Choi1ad94ff2014-03-18 19:55:46 +09001369
Andrzej Hajda370ed7a2018-02-27 13:22:07 +01001370 return edev;
Chanwoo Choi1ad94ff2014-03-18 19:55:46 +09001371}
Andrzej Hajda370ed7a2018-02-27 13:22:07 +01001372
Chanwoo Choi1ad94ff2014-03-18 19:55:46 +09001373#else
Andrzej Hajda370ed7a2018-02-27 13:22:07 +01001374
1375struct extcon_dev *extcon_find_edev_by_node(struct device_node *node)
1376{
1377 return ERR_PTR(-ENOSYS);
1378}
1379
Chanwoo Choi1ad94ff2014-03-18 19:55:46 +09001380struct extcon_dev *extcon_get_edev_by_phandle(struct device *dev, int index)
1381{
1382 return ERR_PTR(-ENOSYS);
1383}
Andrzej Hajda370ed7a2018-02-27 13:22:07 +01001384
Chanwoo Choi1ad94ff2014-03-18 19:55:46 +09001385#endif /* CONFIG_OF */
Andrzej Hajda370ed7a2018-02-27 13:22:07 +01001386
1387EXPORT_SYMBOL_GPL(extcon_find_edev_by_node);
Chanwoo Choi1ad94ff2014-03-18 19:55:46 +09001388EXPORT_SYMBOL_GPL(extcon_get_edev_by_phandle);
1389
Chanwoo Choi707d7552015-04-15 13:57:51 +09001390/**
1391 * extcon_get_edev_name() - Get the name of the extcon device.
1392 * @edev: the extcon device
1393 */
1394const char *extcon_get_edev_name(struct extcon_dev *edev)
1395{
1396 return !edev ? NULL : edev->name;
1397}
Mayank Rana995bb102020-03-16 13:14:32 -07001398EXPORT_SYMBOL_GPL(extcon_get_edev_name);
Chanwoo Choi707d7552015-04-15 13:57:51 +09001399
MyungJoo Hamde55d872012-04-20 14:16:22 +09001400static int __init extcon_class_init(void)
1401{
1402 return create_extcon_class();
1403}
1404module_init(extcon_class_init);
1405
1406static void __exit extcon_class_exit(void)
1407{
MyungJoo Hamde55d872012-04-20 14:16:22 +09001408 class_destroy(extcon_class);
1409}
1410module_exit(extcon_class_exit);
1411
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +09001412MODULE_AUTHOR("Chanwoo Choi <cw00.choi@samsung.com>");
MyungJoo Hamde55d872012-04-20 14:16:22 +09001413MODULE_AUTHOR("MyungJoo Ham <myungjoo.ham@samsung.com>");
Chanwoo Choi6ab6094f2017-04-03 19:45:48 +09001414MODULE_DESCRIPTION("External Connector (extcon) framework");
1415MODULE_LICENSE("GPL v2");