blob: ad5e4546f82c0e5bc7bf369df006cac9a4b1be7b [file] [log] [blame]
MyungJoo Hamde55d872012-04-20 14:16:22 +09001/*
Chanwoo Choib9ec23c2015-04-24 14:48:52 +09002 * drivers/extcon/extcon.c - External Connector (extcon) framework.
MyungJoo Hamde55d872012-04-20 14:16:22 +09003 *
4 * External connector (extcon) class driver
5 *
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +09006 * Copyright (C) 2015 Samsung Electronics
7 * Author: Chanwoo Choi <cw00.choi@samsung.com>
8 *
MyungJoo Hamde55d872012-04-20 14:16:22 +09009 * Copyright (C) 2012 Samsung Electronics
10 * Author: Donggeun Kim <dg77.kim@samsung.com>
11 * Author: MyungJoo Ham <myungjoo.ham@samsung.com>
12 *
13 * based on android/drivers/switch/switch_class.c
14 * Copyright (C) 2008 Google, Inc.
15 * Author: Mike Lockwood <lockwood@android.com>
16 *
17 * This software is licensed under the terms of the GNU General Public
18 * License version 2, as published by the Free Software Foundation, and
19 * may be copied, distributed, and modified under those terms.
20 *
21 * This program is distributed in the hope that it will be useful,
22 * but WITHOUT ANY WARRANTY; without even the implied warranty of
23 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
24 * GNU General Public License for more details.
Chanwoo Choib9ec23c2015-04-24 14:48:52 +090025 */
MyungJoo Hamde55d872012-04-20 14:16:22 +090026
27#include <linux/module.h>
28#include <linux/types.h>
29#include <linux/init.h>
30#include <linux/device.h>
31#include <linux/fs.h>
32#include <linux/err.h>
33#include <linux/extcon.h>
Tomasz Figaf841afb2014-10-16 15:11:44 +020034#include <linux/of.h>
MyungJoo Hamde55d872012-04-20 14:16:22 +090035#include <linux/slab.h>
Mark Brown9baf3222012-08-16 20:03:21 +010036#include <linux/sysfs.h>
MyungJoo Hamde55d872012-04-20 14:16:22 +090037
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +090038#define SUPPORTED_CABLE_MAX 32
39#define CABLE_NAME_MAX 30
40
41static const char *extcon_name[] = {
Chanwoo Choi11eecf92015-10-03 14:15:13 +090042 [EXTCON_NONE] = "NONE",
Chanwoo Choi73b6ecd2015-06-12 11:10:06 +090043
Chanwoo Choi8e9bc362015-05-19 19:58:49 +090044 /* USB external connector */
Chanwoo Choi11eecf92015-10-03 14:15:13 +090045 [EXTCON_USB] = "USB",
46 [EXTCON_USB_HOST] = "USB-HOST",
Chanwoo Choi8e9bc362015-05-19 19:58:49 +090047
Chanwoo Choi11eecf92015-10-03 14:15:13 +090048 /* Charging external connector */
49 [EXTCON_CHG_USB_SDP] = "SDP",
50 [EXTCON_CHG_USB_DCP] = "DCP",
51 [EXTCON_CHG_USB_CDP] = "CDP",
52 [EXTCON_CHG_USB_ACA] = "ACA",
53 [EXTCON_CHG_USB_FAST] = "FAST-CHARGER",
54 [EXTCON_CHG_USB_SLOW] = "SLOW-CHARGER",
Chanwoo Choi8e9bc362015-05-19 19:58:49 +090055
Chanwoo Choi11eecf92015-10-03 14:15:13 +090056 /* Jack external connector */
57 [EXTCON_JACK_MICROPHONE] = "MICROPHONE",
58 [EXTCON_JACK_HEADPHONE] = "HEADPHONE",
59 [EXTCON_JACK_LINE_IN] = "LINE-IN",
60 [EXTCON_JACK_LINE_OUT] = "LINE-OUT",
61 [EXTCON_JACK_VIDEO_IN] = "VIDEO-IN",
62 [EXTCON_JACK_VIDEO_OUT] = "VIDEO-OUT",
63 [EXTCON_JACK_SPDIF_IN] = "SPDIF-IN",
64 [EXTCON_JACK_SPDIF_OUT] = "SPDIF-OUT",
Chanwoo Choi8e9bc362015-05-19 19:58:49 +090065
Chanwoo Choi11eecf92015-10-03 14:15:13 +090066 /* Display external connector */
67 [EXTCON_DISP_HDMI] = "HDMI",
68 [EXTCON_DISP_MHL] = "MHL",
69 [EXTCON_DISP_DVI] = "DVI",
70 [EXTCON_DISP_VGA] = "VGA",
Chanwoo Choi8e9bc362015-05-19 19:58:49 +090071
Chanwoo Choi11eecf92015-10-03 14:15:13 +090072 /* Miscellaneous external connector */
73 [EXTCON_DOCK] = "DOCK",
74 [EXTCON_JIG] = "JIG",
75 [EXTCON_MECHANICAL] = "MECHANICAL",
Chanwoo Choi8e9bc362015-05-19 19:58:49 +090076
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +090077 NULL,
MyungJoo Ham806d9dd2012-04-20 14:16:25 +090078};
79
Chanwoo Choi20f7b532016-06-27 19:17:06 +090080/**
81 * struct extcon_cable - An internal data for each cable of extcon device.
82 * @edev: The extcon device
83 * @cable_index: Index of this cable in the edev
84 * @attr_g: Attribute group for the cable
85 * @attr_name: "name" sysfs entry
86 * @attr_state: "state" sysfs entry
87 * @attrs: Array pointing to attr_name and attr_state for attr_g
88 */
89struct extcon_cable {
90 struct extcon_dev *edev;
91 int cable_index;
92
93 struct attribute_group attr_g;
94 struct device_attribute attr_name;
95 struct device_attribute attr_state;
96
97 struct attribute *attrs[3]; /* to be fed to attr_g.attrs */
98};
99
Mark Brownbe3a07f2012-06-05 16:14:38 +0100100static struct class *extcon_class;
MyungJoo Ham449a2bf2012-04-23 20:19:57 +0900101#if defined(CONFIG_ANDROID)
MyungJoo Hamde55d872012-04-20 14:16:22 +0900102static struct class_compat *switch_class;
MyungJoo Ham449a2bf2012-04-23 20:19:57 +0900103#endif /* CONFIG_ANDROID */
MyungJoo Hamde55d872012-04-20 14:16:22 +0900104
Donggeun Kim74c5d092012-04-20 14:16:24 +0900105static LIST_HEAD(extcon_dev_list);
106static DEFINE_MUTEX(extcon_dev_list_lock);
107
MyungJoo Hambde68e62012-04-20 14:16:26 +0900108/**
109 * check_mutually_exclusive - Check if new_state violates mutually_exclusive
Chanwoo Choia75e1c72013-08-31 13:16:49 +0900110 * condition.
MyungJoo Hambde68e62012-04-20 14:16:26 +0900111 * @edev: the extcon device
112 * @new_state: new cable attach status for @edev
113 *
114 * Returns 0 if nothing violates. Returns the index + 1 for the first
115 * violated condition.
116 */
117static int check_mutually_exclusive(struct extcon_dev *edev, u32 new_state)
118{
119 int i = 0;
120
121 if (!edev->mutually_exclusive)
122 return 0;
123
124 for (i = 0; edev->mutually_exclusive[i]; i++) {
anish kumar28c0ada2012-08-30 00:35:10 +0530125 int weight;
MyungJoo Hambde68e62012-04-20 14:16:26 +0900126 u32 correspondants = new_state & edev->mutually_exclusive[i];
MyungJoo Hambde68e62012-04-20 14:16:26 +0900127
anish kumar28c0ada2012-08-30 00:35:10 +0530128 /* calculate the total number of bits set */
129 weight = hweight32(correspondants);
130 if (weight > 1)
131 return i + 1;
MyungJoo Hambde68e62012-04-20 14:16:26 +0900132 }
133
134 return 0;
135}
136
Chanwoo Choi73b6ecd2015-06-12 11:10:06 +0900137static int find_cable_index_by_id(struct extcon_dev *edev, const unsigned int id)
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +0900138{
139 int i;
140
141 /* Find the the index of extcon cable in edev->supported_cable */
142 for (i = 0; i < edev->max_supported; i++) {
143 if (edev->supported_cable[i] == id)
144 return i;
145 }
146
147 return -EINVAL;
148}
149
Chanwoo Choi046050f2015-05-19 20:01:12 +0900150static bool is_extcon_changed(u32 prev, u32 new, int idx, bool *attached)
151{
152 if (((prev >> idx) & 0x1) != ((new >> idx) & 0x1)) {
Hans de Goedef4513b02015-08-24 00:35:36 +0200153 *attached = ((new >> idx) & 0x1) ? true : false;
Chanwoo Choi046050f2015-05-19 20:01:12 +0900154 return true;
155 }
156
157 return false;
158}
159
MyungJoo Hamde55d872012-04-20 14:16:22 +0900160static ssize_t state_show(struct device *dev, struct device_attribute *attr,
161 char *buf)
162{
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900163 int i, count = 0;
Jingoo Hancb8bb3a2013-09-09 14:33:32 +0900164 struct extcon_dev *edev = dev_get_drvdata(dev);
MyungJoo Hamde55d872012-04-20 14:16:22 +0900165
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900166 if (edev->max_supported == 0)
167 return sprintf(buf, "%u\n", edev->state);
168
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +0900169 for (i = 0; i < edev->max_supported; i++) {
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900170 count += sprintf(buf + count, "%s=%d\n",
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +0900171 extcon_name[edev->supported_cable[i]],
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900172 !!(edev->state & (1 << i)));
173 }
174
175 return count;
176}
Chanwoo Choi5d5321e2016-07-18 15:39:28 +0900177static DEVICE_ATTR_RO(state);
MyungJoo Hamde55d872012-04-20 14:16:22 +0900178
179static ssize_t name_show(struct device *dev, struct device_attribute *attr,
180 char *buf)
181{
Jingoo Hancb8bb3a2013-09-09 14:33:32 +0900182 struct extcon_dev *edev = dev_get_drvdata(dev);
MyungJoo Hamde55d872012-04-20 14:16:22 +0900183
Chanwoo Choi71c3ffa2015-04-15 15:02:01 +0900184 return sprintf(buf, "%s\n", edev->name);
MyungJoo Hamde55d872012-04-20 14:16:22 +0900185}
Greg Kroah-Hartmanaf01da02013-07-24 15:05:10 -0700186static DEVICE_ATTR_RO(name);
MyungJoo Hamde55d872012-04-20 14:16:22 +0900187
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900188static ssize_t cable_name_show(struct device *dev,
189 struct device_attribute *attr, char *buf)
190{
191 struct extcon_cable *cable = container_of(attr, struct extcon_cable,
192 attr_name);
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +0900193 int i = cable->cable_index;
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900194
195 return sprintf(buf, "%s\n",
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +0900196 extcon_name[cable->edev->supported_cable[i]]);
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900197}
198
199static ssize_t cable_state_show(struct device *dev,
200 struct device_attribute *attr, char *buf)
201{
202 struct extcon_cable *cable = container_of(attr, struct extcon_cable,
203 attr_state);
204
Roger Quadrosbe052cc2015-07-07 16:06:15 +0300205 int i = cable->cable_index;
206
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900207 return sprintf(buf, "%d\n",
208 extcon_get_cable_state_(cable->edev,
Roger Quadrosbe052cc2015-07-07 16:06:15 +0300209 cable->edev->supported_cable[i]));
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900210}
211
MyungJoo Hamde55d872012-04-20 14:16:22 +0900212/**
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900213 * extcon_update_state() - Update the cable attach states of the extcon device
Chanwoo Choia75e1c72013-08-31 13:16:49 +0900214 * only for the masked bits.
MyungJoo Hamde55d872012-04-20 14:16:22 +0900215 * @edev: the extcon device
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900216 * @mask: the bit mask to designate updated bits.
MyungJoo Hamde55d872012-04-20 14:16:22 +0900217 * @state: new cable attach status for @edev
218 *
219 * Changing the state sends uevent with environment variable containing
220 * the name of extcon device (envp[0]) and the state output (envp[1]).
221 * Tizen uses this format for extcon device to get events from ports.
222 * Android uses this format as well.
Donggeun Kim74c5d092012-04-20 14:16:24 +0900223 *
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900224 * Note that the notifier provides which bits are changed in the state
225 * variable with the val parameter (second) to the callback.
MyungJoo Hamde55d872012-04-20 14:16:22 +0900226 */
MyungJoo Hambde68e62012-04-20 14:16:26 +0900227int extcon_update_state(struct extcon_dev *edev, u32 mask, u32 state)
MyungJoo Hamde55d872012-04-20 14:16:22 +0900228{
229 char name_buf[120];
230 char state_buf[120];
231 char *prop_buf;
232 char *envp[3];
233 int env_offset = 0;
234 int length;
Chanwoo Choi046050f2015-05-19 20:01:12 +0900235 int index;
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900236 unsigned long flags;
Chanwoo Choi046050f2015-05-19 20:01:12 +0900237 bool attached;
MyungJoo Hamde55d872012-04-20 14:16:22 +0900238
Chanwoo Choi7eae43a2015-06-21 23:48:36 +0900239 if (!edev)
240 return -EINVAL;
241
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900242 spin_lock_irqsave(&edev->lock, flags);
MyungJoo Hamde55d872012-04-20 14:16:22 +0900243
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900244 if (edev->state != ((edev->state & ~mask) | (state & mask))) {
Roger Quadrosf7a89812015-07-06 17:46:58 +0300245 u32 old_state;
246
MyungJoo Hambde68e62012-04-20 14:16:26 +0900247 if (check_mutually_exclusive(edev, (edev->state & ~mask) |
248 (state & mask))) {
249 spin_unlock_irqrestore(&edev->lock, flags);
250 return -EPERM;
251 }
252
Roger Quadrosf7a89812015-07-06 17:46:58 +0300253 old_state = edev->state;
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900254 edev->state &= ~mask;
255 edev->state |= state & mask;
256
Roger Quadrosf7a89812015-07-06 17:46:58 +0300257 for (index = 0; index < edev->max_supported; index++) {
258 if (is_extcon_changed(old_state, edev->state, index,
259 &attached))
260 raw_notifier_call_chain(&edev->nh[index],
261 attached, edev);
262 }
263
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900264 /* This could be in interrupt handler */
265 prop_buf = (char *)get_zeroed_page(GFP_ATOMIC);
MyungJoo Hamde55d872012-04-20 14:16:22 +0900266 if (prop_buf) {
Chanwoo Choidae61652013-09-27 09:19:40 +0900267 length = name_show(&edev->dev, NULL, prop_buf);
MyungJoo Hamde55d872012-04-20 14:16:22 +0900268 if (length > 0) {
269 if (prop_buf[length - 1] == '\n')
270 prop_buf[length - 1] = 0;
271 snprintf(name_buf, sizeof(name_buf),
272 "NAME=%s", prop_buf);
273 envp[env_offset++] = name_buf;
274 }
Chanwoo Choidae61652013-09-27 09:19:40 +0900275 length = state_show(&edev->dev, NULL, prop_buf);
MyungJoo Hamde55d872012-04-20 14:16:22 +0900276 if (length > 0) {
277 if (prop_buf[length - 1] == '\n')
278 prop_buf[length - 1] = 0;
279 snprintf(state_buf, sizeof(state_buf),
280 "STATE=%s", prop_buf);
281 envp[env_offset++] = state_buf;
282 }
283 envp[env_offset] = NULL;
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900284 /* Unlock early before uevent */
285 spin_unlock_irqrestore(&edev->lock, flags);
286
Chanwoo Choidae61652013-09-27 09:19:40 +0900287 kobject_uevent_env(&edev->dev.kobj, KOBJ_CHANGE, envp);
MyungJoo Hamde55d872012-04-20 14:16:22 +0900288 free_page((unsigned long)prop_buf);
289 } else {
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900290 /* Unlock early before uevent */
291 spin_unlock_irqrestore(&edev->lock, flags);
292
Chanwoo Choidae61652013-09-27 09:19:40 +0900293 dev_err(&edev->dev, "out of memory in extcon_set_state\n");
294 kobject_uevent(&edev->dev.kobj, KOBJ_CHANGE);
MyungJoo Hamde55d872012-04-20 14:16:22 +0900295 }
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900296 } else {
297 /* No changes */
298 spin_unlock_irqrestore(&edev->lock, flags);
MyungJoo Hamde55d872012-04-20 14:16:22 +0900299 }
MyungJoo Hambde68e62012-04-20 14:16:26 +0900300
301 return 0;
MyungJoo Hamde55d872012-04-20 14:16:22 +0900302}
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900303EXPORT_SYMBOL_GPL(extcon_update_state);
304
305/**
306 * extcon_set_state() - Set the cable attach states of the extcon device.
307 * @edev: the extcon device
308 * @state: new cable attach status for @edev
309 *
310 * Note that notifier provides which bits are changed in the state
311 * variable with the val parameter (second) to the callback.
312 */
MyungJoo Hambde68e62012-04-20 14:16:26 +0900313int extcon_set_state(struct extcon_dev *edev, u32 state)
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900314{
Chanwoo Choi7eae43a2015-06-21 23:48:36 +0900315 if (!edev)
316 return -EINVAL;
317
MyungJoo Hambde68e62012-04-20 14:16:26 +0900318 return extcon_update_state(edev, 0xffffffff, state);
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900319}
MyungJoo Hamde55d872012-04-20 14:16:22 +0900320EXPORT_SYMBOL_GPL(extcon_set_state);
321
Donggeun Kim74c5d092012-04-20 14:16:24 +0900322/**
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900323 * extcon_get_cable_state_() - Get the status of a specific cable.
324 * @edev: the extcon device that has the cable.
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +0900325 * @id: the unique id of each external connector in extcon enumeration.
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900326 */
Chanwoo Choi73b6ecd2015-06-12 11:10:06 +0900327int extcon_get_cable_state_(struct extcon_dev *edev, const unsigned int id)
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900328{
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +0900329 int index;
330
Chanwoo Choi7eae43a2015-06-21 23:48:36 +0900331 if (!edev)
332 return -EINVAL;
333
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +0900334 index = find_cable_index_by_id(edev, id);
335 if (index < 0)
336 return index;
337
338 if (edev->max_supported && edev->max_supported <= index)
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900339 return -EINVAL;
340
341 return !!(edev->state & (1 << index));
342}
343EXPORT_SYMBOL_GPL(extcon_get_cable_state_);
344
345/**
Axel Lin909f9ec2012-10-04 09:53:45 +0900346 * extcon_set_cable_state_() - Set the status of a specific cable.
Chanwoo Choia75e1c72013-08-31 13:16:49 +0900347 * @edev: the extcon device that has the cable.
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +0900348 * @id: the unique id of each external connector
349 * in extcon enumeration.
350 * @state: the new cable status. The default semantics is
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900351 * true: attached / false: detached.
352 */
Chanwoo Choi73b6ecd2015-06-12 11:10:06 +0900353int extcon_set_cable_state_(struct extcon_dev *edev, unsigned int id,
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +0900354 bool cable_state)
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900355{
356 u32 state;
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +0900357 int index;
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900358
Chanwoo Choi7eae43a2015-06-21 23:48:36 +0900359 if (!edev)
360 return -EINVAL;
361
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +0900362 index = find_cable_index_by_id(edev, id);
363 if (index < 0)
364 return index;
365
366 if (edev->max_supported && edev->max_supported <= index)
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900367 return -EINVAL;
368
369 state = cable_state ? (1 << index) : 0;
MyungJoo Hambde68e62012-04-20 14:16:26 +0900370 return extcon_update_state(edev, 1 << index, state);
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900371}
372EXPORT_SYMBOL_GPL(extcon_set_cable_state_);
373
374/**
Donggeun Kim74c5d092012-04-20 14:16:24 +0900375 * extcon_get_extcon_dev() - Get the extcon device instance from the name
376 * @extcon_name: The extcon name provided with extcon_dev_register()
377 */
378struct extcon_dev *extcon_get_extcon_dev(const char *extcon_name)
379{
380 struct extcon_dev *sd;
381
Chanwoo Choi7eae43a2015-06-21 23:48:36 +0900382 if (!extcon_name)
383 return ERR_PTR(-EINVAL);
384
Donggeun Kim74c5d092012-04-20 14:16:24 +0900385 mutex_lock(&extcon_dev_list_lock);
386 list_for_each_entry(sd, &extcon_dev_list, entry) {
387 if (!strcmp(sd->name, extcon_name))
388 goto out;
389 }
390 sd = NULL;
391out:
392 mutex_unlock(&extcon_dev_list_lock);
393 return sd;
394}
395EXPORT_SYMBOL_GPL(extcon_get_extcon_dev);
396
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900397/**
Peter Meerwaldc338bb02012-08-23 09:11:54 +0900398 * extcon_register_notifier() - Register a notifiee to get notified by
Chanwoo Choia75e1c72013-08-31 13:16:49 +0900399 * any attach status changes from the extcon.
Chanwoo Choi046050f2015-05-19 20:01:12 +0900400 * @edev: the extcon device that has the external connecotr.
401 * @id: the unique id of each external connector in extcon enumeration.
Donggeun Kim74c5d092012-04-20 14:16:24 +0900402 * @nb: a notifier block to be registered.
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900403 *
404 * Note that the second parameter given to the callback of nb (val) is
405 * "old_state", not the current state. The current state can be retrieved
406 * by looking at the third pameter (edev pointer)'s state value.
Donggeun Kim74c5d092012-04-20 14:16:24 +0900407 */
Chanwoo Choi73b6ecd2015-06-12 11:10:06 +0900408int extcon_register_notifier(struct extcon_dev *edev, unsigned int id,
Chanwoo Choi046050f2015-05-19 20:01:12 +0900409 struct notifier_block *nb)
Donggeun Kim74c5d092012-04-20 14:16:24 +0900410{
Hans de Goede66bee352015-03-21 17:26:24 +0100411 unsigned long flags;
Chanwoo Choi046050f2015-05-19 20:01:12 +0900412 int ret, idx;
413
Chanwoo Choi830ae442016-05-31 17:32:30 +0900414 if (!nb)
Chanwoo Choi7eae43a2015-06-21 23:48:36 +0900415 return -EINVAL;
416
Chanwoo Choi830ae442016-05-31 17:32:30 +0900417 if (edev) {
418 idx = find_cable_index_by_id(edev, id);
Stephen Boyda05f44c2016-06-23 19:34:30 +0900419 if (idx < 0)
420 return idx;
Hans de Goede66bee352015-03-21 17:26:24 +0100421
Chanwoo Choi830ae442016-05-31 17:32:30 +0900422 spin_lock_irqsave(&edev->lock, flags);
423 ret = raw_notifier_chain_register(&edev->nh[idx], nb);
424 spin_unlock_irqrestore(&edev->lock, flags);
425 } else {
426 struct extcon_dev *extd;
427
428 mutex_lock(&extcon_dev_list_lock);
429 list_for_each_entry(extd, &extcon_dev_list, entry) {
430 idx = find_cable_index_by_id(extd, id);
431 if (idx >= 0)
432 break;
433 }
434 mutex_unlock(&extcon_dev_list_lock);
435
436 if (idx >= 0) {
437 edev = extd;
438 return extcon_register_notifier(extd, id, nb);
439 } else {
440 ret = -ENODEV;
441 }
442 }
Hans de Goede66bee352015-03-21 17:26:24 +0100443
444 return ret;
Donggeun Kim74c5d092012-04-20 14:16:24 +0900445}
446EXPORT_SYMBOL_GPL(extcon_register_notifier);
447
448/**
Peter Meerwaldc338bb02012-08-23 09:11:54 +0900449 * extcon_unregister_notifier() - Unregister a notifiee from the extcon device.
Chanwoo Choi046050f2015-05-19 20:01:12 +0900450 * @edev: the extcon device that has the external connecotr.
451 * @id: the unique id of each external connector in extcon enumeration.
452 * @nb: a notifier block to be registered.
Donggeun Kim74c5d092012-04-20 14:16:24 +0900453 */
Chanwoo Choi73b6ecd2015-06-12 11:10:06 +0900454int extcon_unregister_notifier(struct extcon_dev *edev, unsigned int id,
Chanwoo Choi046050f2015-05-19 20:01:12 +0900455 struct notifier_block *nb)
Donggeun Kim74c5d092012-04-20 14:16:24 +0900456{
Hans de Goede66bee352015-03-21 17:26:24 +0100457 unsigned long flags;
Chanwoo Choi046050f2015-05-19 20:01:12 +0900458 int ret, idx;
459
Chanwoo Choi7eae43a2015-06-21 23:48:36 +0900460 if (!edev || !nb)
461 return -EINVAL;
462
Chanwoo Choi046050f2015-05-19 20:01:12 +0900463 idx = find_cable_index_by_id(edev, id);
Stephen Boyda05f44c2016-06-23 19:34:30 +0900464 if (idx < 0)
465 return idx;
Hans de Goede66bee352015-03-21 17:26:24 +0100466
467 spin_lock_irqsave(&edev->lock, flags);
Chanwoo Choi046050f2015-05-19 20:01:12 +0900468 ret = raw_notifier_chain_unregister(&edev->nh[idx], nb);
Hans de Goede66bee352015-03-21 17:26:24 +0100469 spin_unlock_irqrestore(&edev->lock, flags);
470
471 return ret;
Donggeun Kim74c5d092012-04-20 14:16:24 +0900472}
473EXPORT_SYMBOL_GPL(extcon_unregister_notifier);
474
Greg Kroah-Hartmanaf01da02013-07-24 15:05:10 -0700475static struct attribute *extcon_attrs[] = {
476 &dev_attr_state.attr,
477 &dev_attr_name.attr,
478 NULL,
MyungJoo Hamde55d872012-04-20 14:16:22 +0900479};
Greg Kroah-Hartmanaf01da02013-07-24 15:05:10 -0700480ATTRIBUTE_GROUPS(extcon);
MyungJoo Hamde55d872012-04-20 14:16:22 +0900481
482static int create_extcon_class(void)
483{
484 if (!extcon_class) {
485 extcon_class = class_create(THIS_MODULE, "extcon");
486 if (IS_ERR(extcon_class))
487 return PTR_ERR(extcon_class);
Greg Kroah-Hartmanaf01da02013-07-24 15:05:10 -0700488 extcon_class->dev_groups = extcon_groups;
MyungJoo Hamde55d872012-04-20 14:16:22 +0900489
MyungJoo Ham449a2bf2012-04-23 20:19:57 +0900490#if defined(CONFIG_ANDROID)
MyungJoo Hamde55d872012-04-20 14:16:22 +0900491 switch_class = class_compat_register("switch");
492 if (WARN(!switch_class, "cannot allocate"))
493 return -ENOMEM;
MyungJoo Ham449a2bf2012-04-23 20:19:57 +0900494#endif /* CONFIG_ANDROID */
MyungJoo Hamde55d872012-04-20 14:16:22 +0900495 }
496
497 return 0;
498}
499
MyungJoo Hamde55d872012-04-20 14:16:22 +0900500static void extcon_dev_release(struct device *dev)
501{
MyungJoo Hamde55d872012-04-20 14:16:22 +0900502}
503
MyungJoo Hambde68e62012-04-20 14:16:26 +0900504static const char *muex_name = "mutually_exclusive";
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900505static void dummy_sysfs_dev_release(struct device *dev)
506{
507}
508
Chanwoo Choia9af6522014-04-24 19:46:49 +0900509/*
510 * extcon_dev_allocate() - Allocate the memory of extcon device.
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +0900511 * @supported_cable: Array of supported extcon ending with EXTCON_NONE.
Chanwoo Choia9af6522014-04-24 19:46:49 +0900512 * If supported_cable is NULL, cable name related APIs
513 * are disabled.
514 *
515 * This function allocates the memory for extcon device without allocating
516 * memory in each extcon provider driver and initialize default setting for
517 * extcon device.
518 *
519 * Return the pointer of extcon device if success or ERR_PTR(err) if fail
520 */
Chanwoo Choi73b6ecd2015-06-12 11:10:06 +0900521struct extcon_dev *extcon_dev_allocate(const unsigned int *supported_cable)
Chanwoo Choia9af6522014-04-24 19:46:49 +0900522{
523 struct extcon_dev *edev;
524
Chanwoo Choi7eae43a2015-06-21 23:48:36 +0900525 if (!supported_cable)
526 return ERR_PTR(-EINVAL);
527
Chanwoo Choia9af6522014-04-24 19:46:49 +0900528 edev = kzalloc(sizeof(*edev), GFP_KERNEL);
529 if (!edev)
530 return ERR_PTR(-ENOMEM);
531
532 edev->max_supported = 0;
533 edev->supported_cable = supported_cable;
534
535 return edev;
536}
537
538/*
539 * extcon_dev_free() - Free the memory of extcon device.
540 * @edev: the extcon device to free
541 */
542void extcon_dev_free(struct extcon_dev *edev)
543{
544 kfree(edev);
545}
546EXPORT_SYMBOL_GPL(extcon_dev_free);
547
MyungJoo Hamde55d872012-04-20 14:16:22 +0900548/**
549 * extcon_dev_register() - Register a new extcon device
550 * @edev : the new extcon device (should be allocated before calling)
MyungJoo Hamde55d872012-04-20 14:16:22 +0900551 *
552 * Among the members of edev struct, please set the "user initializing data"
553 * in any case and set the "optional callbacks" if required. However, please
554 * do not set the values of "internal data", which are initialized by
555 * this function.
556 */
Chanwoo Choi42d7d752013-09-27 09:20:26 +0900557int extcon_dev_register(struct extcon_dev *edev)
MyungJoo Hamde55d872012-04-20 14:16:22 +0900558{
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900559 int ret, index = 0;
Chanwoo Choi71c3ffa2015-04-15 15:02:01 +0900560 static atomic_t edev_no = ATOMIC_INIT(-1);
MyungJoo Hamde55d872012-04-20 14:16:22 +0900561
562 if (!extcon_class) {
563 ret = create_extcon_class();
564 if (ret < 0)
565 return ret;
566 }
567
Chanwoo Choi7eae43a2015-06-21 23:48:36 +0900568 if (!edev || !edev->supported_cable)
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +0900569 return -EINVAL;
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900570
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +0900571 for (; edev->supported_cable[index] != EXTCON_NONE; index++);
572
573 edev->max_supported = index;
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900574 if (index > SUPPORTED_CABLE_MAX) {
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +0900575 dev_err(&edev->dev,
576 "exceed the maximum number of supported cables\n");
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900577 return -EINVAL;
578 }
579
Chanwoo Choidae61652013-09-27 09:19:40 +0900580 edev->dev.class = extcon_class;
581 edev->dev.release = extcon_dev_release;
MyungJoo Hamde55d872012-04-20 14:16:22 +0900582
Chanwoo Choi71c3ffa2015-04-15 15:02:01 +0900583 edev->name = dev_name(edev->dev.parent);
Chanwoo Choi42d7d752013-09-27 09:20:26 +0900584 if (IS_ERR_OR_NULL(edev->name)) {
585 dev_err(&edev->dev,
586 "extcon device name is null\n");
587 return -EINVAL;
588 }
Chanwoo Choi71c3ffa2015-04-15 15:02:01 +0900589 dev_set_name(&edev->dev, "extcon%lu",
590 (unsigned long)atomic_inc_return(&edev_no));
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900591
592 if (edev->max_supported) {
593 char buf[10];
594 char *str;
595 struct extcon_cable *cable;
596
597 edev->cables = kzalloc(sizeof(struct extcon_cable) *
598 edev->max_supported, GFP_KERNEL);
599 if (!edev->cables) {
600 ret = -ENOMEM;
601 goto err_sysfs_alloc;
602 }
603 for (index = 0; index < edev->max_supported; index++) {
604 cable = &edev->cables[index];
605
606 snprintf(buf, 10, "cable.%d", index);
607 str = kzalloc(sizeof(char) * (strlen(buf) + 1),
608 GFP_KERNEL);
609 if (!str) {
610 for (index--; index >= 0; index--) {
611 cable = &edev->cables[index];
612 kfree(cable->attr_g.name);
613 }
614 ret = -ENOMEM;
615
616 goto err_alloc_cables;
617 }
618 strcpy(str, buf);
619
620 cable->edev = edev;
621 cable->cable_index = index;
622 cable->attrs[0] = &cable->attr_name.attr;
623 cable->attrs[1] = &cable->attr_state.attr;
624 cable->attrs[2] = NULL;
625 cable->attr_g.name = str;
626 cable->attr_g.attrs = cable->attrs;
627
Mark Brown9baf3222012-08-16 20:03:21 +0100628 sysfs_attr_init(&cable->attr_name.attr);
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900629 cable->attr_name.attr.name = "name";
630 cable->attr_name.attr.mode = 0444;
631 cable->attr_name.show = cable_name_show;
632
Mark Brown9baf3222012-08-16 20:03:21 +0100633 sysfs_attr_init(&cable->attr_state.attr);
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900634 cable->attr_state.attr.name = "state";
Chanwoo Choiea9dd9d2013-05-22 19:31:59 +0900635 cable->attr_state.attr.mode = 0444;
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900636 cable->attr_state.show = cable_state_show;
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900637 }
638 }
639
MyungJoo Hambde68e62012-04-20 14:16:26 +0900640 if (edev->max_supported && edev->mutually_exclusive) {
641 char buf[80];
642 char *name;
643
644 /* Count the size of mutually_exclusive array */
645 for (index = 0; edev->mutually_exclusive[index]; index++)
646 ;
647
648 edev->attrs_muex = kzalloc(sizeof(struct attribute *) *
649 (index + 1), GFP_KERNEL);
650 if (!edev->attrs_muex) {
651 ret = -ENOMEM;
652 goto err_muex;
653 }
654
655 edev->d_attrs_muex = kzalloc(sizeof(struct device_attribute) *
656 index, GFP_KERNEL);
657 if (!edev->d_attrs_muex) {
658 ret = -ENOMEM;
659 kfree(edev->attrs_muex);
660 goto err_muex;
661 }
662
663 for (index = 0; edev->mutually_exclusive[index]; index++) {
664 sprintf(buf, "0x%x", edev->mutually_exclusive[index]);
665 name = kzalloc(sizeof(char) * (strlen(buf) + 1),
666 GFP_KERNEL);
667 if (!name) {
668 for (index--; index >= 0; index--) {
669 kfree(edev->d_attrs_muex[index].attr.
670 name);
671 }
672 kfree(edev->d_attrs_muex);
673 kfree(edev->attrs_muex);
674 ret = -ENOMEM;
675 goto err_muex;
676 }
677 strcpy(name, buf);
Mark Brown9baf3222012-08-16 20:03:21 +0100678 sysfs_attr_init(&edev->d_attrs_muex[index].attr);
MyungJoo Hambde68e62012-04-20 14:16:26 +0900679 edev->d_attrs_muex[index].attr.name = name;
680 edev->d_attrs_muex[index].attr.mode = 0000;
681 edev->attrs_muex[index] = &edev->d_attrs_muex[index]
682 .attr;
683 }
684 edev->attr_g_muex.name = muex_name;
685 edev->attr_g_muex.attrs = edev->attrs_muex;
686
687 }
688
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900689 if (edev->max_supported) {
690 edev->extcon_dev_type.groups =
691 kzalloc(sizeof(struct attribute_group *) *
MyungJoo Hambde68e62012-04-20 14:16:26 +0900692 (edev->max_supported + 2), GFP_KERNEL);
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900693 if (!edev->extcon_dev_type.groups) {
694 ret = -ENOMEM;
695 goto err_alloc_groups;
696 }
697
Chanwoo Choidae61652013-09-27 09:19:40 +0900698 edev->extcon_dev_type.name = dev_name(&edev->dev);
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900699 edev->extcon_dev_type.release = dummy_sysfs_dev_release;
700
701 for (index = 0; index < edev->max_supported; index++)
702 edev->extcon_dev_type.groups[index] =
703 &edev->cables[index].attr_g;
MyungJoo Hambde68e62012-04-20 14:16:26 +0900704 if (edev->mutually_exclusive)
705 edev->extcon_dev_type.groups[index] =
706 &edev->attr_g_muex;
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900707
Chanwoo Choidae61652013-09-27 09:19:40 +0900708 edev->dev.type = &edev->extcon_dev_type;
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900709 }
710
Chanwoo Choidae61652013-09-27 09:19:40 +0900711 ret = device_register(&edev->dev);
MyungJoo Hamde55d872012-04-20 14:16:22 +0900712 if (ret) {
Chanwoo Choidae61652013-09-27 09:19:40 +0900713 put_device(&edev->dev);
MyungJoo Hamde55d872012-04-20 14:16:22 +0900714 goto err_dev;
715 }
MyungJoo Ham449a2bf2012-04-23 20:19:57 +0900716#if defined(CONFIG_ANDROID)
MyungJoo Hamde55d872012-04-20 14:16:22 +0900717 if (switch_class)
Chanwoo Choidae61652013-09-27 09:19:40 +0900718 ret = class_compat_create_link(switch_class, &edev->dev, NULL);
MyungJoo Ham449a2bf2012-04-23 20:19:57 +0900719#endif /* CONFIG_ANDROID */
MyungJoo Hamde55d872012-04-20 14:16:22 +0900720
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900721 spin_lock_init(&edev->lock);
722
Chanwoo Choi046050f2015-05-19 20:01:12 +0900723 edev->nh = devm_kzalloc(&edev->dev,
724 sizeof(*edev->nh) * edev->max_supported, GFP_KERNEL);
725 if (!edev->nh) {
726 ret = -ENOMEM;
727 goto err_dev;
728 }
729
730 for (index = 0; index < edev->max_supported; index++)
731 RAW_INIT_NOTIFIER_HEAD(&edev->nh[index]);
Donggeun Kim74c5d092012-04-20 14:16:24 +0900732
Chanwoo Choidae61652013-09-27 09:19:40 +0900733 dev_set_drvdata(&edev->dev, edev);
MyungJoo Hamde55d872012-04-20 14:16:22 +0900734 edev->state = 0;
Donggeun Kim74c5d092012-04-20 14:16:24 +0900735
736 mutex_lock(&extcon_dev_list_lock);
737 list_add(&edev->entry, &extcon_dev_list);
738 mutex_unlock(&extcon_dev_list_lock);
739
MyungJoo Hamde55d872012-04-20 14:16:22 +0900740 return 0;
741
742err_dev:
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900743 if (edev->max_supported)
744 kfree(edev->extcon_dev_type.groups);
745err_alloc_groups:
MyungJoo Hambde68e62012-04-20 14:16:26 +0900746 if (edev->max_supported && edev->mutually_exclusive) {
747 for (index = 0; edev->mutually_exclusive[index]; index++)
748 kfree(edev->d_attrs_muex[index].attr.name);
749 kfree(edev->d_attrs_muex);
750 kfree(edev->attrs_muex);
751 }
752err_muex:
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900753 for (index = 0; index < edev->max_supported; index++)
754 kfree(edev->cables[index].attr_g.name);
755err_alloc_cables:
756 if (edev->max_supported)
757 kfree(edev->cables);
758err_sysfs_alloc:
MyungJoo Hamde55d872012-04-20 14:16:22 +0900759 return ret;
760}
761EXPORT_SYMBOL_GPL(extcon_dev_register);
762
763/**
764 * extcon_dev_unregister() - Unregister the extcon device.
Peter Meerwaldc338bb02012-08-23 09:11:54 +0900765 * @edev: the extcon device instance to be unregistered.
MyungJoo Hamde55d872012-04-20 14:16:22 +0900766 *
767 * Note that this does not call kfree(edev) because edev was not allocated
768 * by this class.
769 */
770void extcon_dev_unregister(struct extcon_dev *edev)
771{
anish kumar57e7cd32012-10-22 09:43:33 +0900772 int index;
773
Chanwoo Choi7eae43a2015-06-21 23:48:36 +0900774 if (!edev)
775 return;
776
anish kumar57e7cd32012-10-22 09:43:33 +0900777 mutex_lock(&extcon_dev_list_lock);
778 list_del(&edev->entry);
779 mutex_unlock(&extcon_dev_list_lock);
780
Chanwoo Choidae61652013-09-27 09:19:40 +0900781 if (IS_ERR_OR_NULL(get_device(&edev->dev))) {
782 dev_err(&edev->dev, "Failed to unregister extcon_dev (%s)\n",
783 dev_name(&edev->dev));
anish kumar57e7cd32012-10-22 09:43:33 +0900784 return;
785 }
786
Wang, Xiaoming7585ca02013-11-01 18:48:14 -0400787 device_unregister(&edev->dev);
788
anish kumar57e7cd32012-10-22 09:43:33 +0900789 if (edev->mutually_exclusive && edev->max_supported) {
790 for (index = 0; edev->mutually_exclusive[index];
791 index++)
792 kfree(edev->d_attrs_muex[index].attr.name);
793 kfree(edev->d_attrs_muex);
794 kfree(edev->attrs_muex);
795 }
796
797 for (index = 0; index < edev->max_supported; index++)
798 kfree(edev->cables[index].attr_g.name);
799
800 if (edev->max_supported) {
801 kfree(edev->extcon_dev_type.groups);
802 kfree(edev->cables);
803 }
804
805#if defined(CONFIG_ANDROID)
806 if (switch_class)
Chanwoo Choidae61652013-09-27 09:19:40 +0900807 class_compat_remove_link(switch_class, &edev->dev, NULL);
anish kumar57e7cd32012-10-22 09:43:33 +0900808#endif
Chanwoo Choidae61652013-09-27 09:19:40 +0900809 put_device(&edev->dev);
MyungJoo Hamde55d872012-04-20 14:16:22 +0900810}
811EXPORT_SYMBOL_GPL(extcon_dev_unregister);
812
Chanwoo Choi1ad94ff2014-03-18 19:55:46 +0900813#ifdef CONFIG_OF
814/*
815 * extcon_get_edev_by_phandle - Get the extcon device from devicetree
816 * @dev - instance to the given device
817 * @index - index into list of extcon_dev
818 *
819 * return the instance of extcon device
820 */
821struct extcon_dev *extcon_get_edev_by_phandle(struct device *dev, int index)
822{
823 struct device_node *node;
824 struct extcon_dev *edev;
825
Chanwoo Choi7eae43a2015-06-21 23:48:36 +0900826 if (!dev)
827 return ERR_PTR(-EINVAL);
828
Chanwoo Choi1ad94ff2014-03-18 19:55:46 +0900829 if (!dev->of_node) {
Stephen Boyde8752b72016-07-05 11:57:05 -0700830 dev_dbg(dev, "device does not have a device node entry\n");
Chanwoo Choi1ad94ff2014-03-18 19:55:46 +0900831 return ERR_PTR(-EINVAL);
832 }
833
834 node = of_parse_phandle(dev->of_node, "extcon", index);
835 if (!node) {
Stephen Boyde8752b72016-07-05 11:57:05 -0700836 dev_dbg(dev, "failed to get phandle in %s node\n",
Chanwoo Choi1ad94ff2014-03-18 19:55:46 +0900837 dev->of_node->full_name);
838 return ERR_PTR(-ENODEV);
839 }
840
Tomasz Figaf841afb2014-10-16 15:11:44 +0200841 mutex_lock(&extcon_dev_list_lock);
842 list_for_each_entry(edev, &extcon_dev_list, entry) {
843 if (edev->dev.parent && edev->dev.parent->of_node == node) {
844 mutex_unlock(&extcon_dev_list_lock);
Peter Chen5d5c4c12016-07-01 18:41:55 +0900845 of_node_put(node);
Tomasz Figaf841afb2014-10-16 15:11:44 +0200846 return edev;
847 }
Chanwoo Choi1ad94ff2014-03-18 19:55:46 +0900848 }
Tomasz Figaf841afb2014-10-16 15:11:44 +0200849 mutex_unlock(&extcon_dev_list_lock);
Peter Chen5d5c4c12016-07-01 18:41:55 +0900850 of_node_put(node);
Chanwoo Choi1ad94ff2014-03-18 19:55:46 +0900851
Tomasz Figaf841afb2014-10-16 15:11:44 +0200852 return ERR_PTR(-EPROBE_DEFER);
Chanwoo Choi1ad94ff2014-03-18 19:55:46 +0900853}
854#else
855struct extcon_dev *extcon_get_edev_by_phandle(struct device *dev, int index)
856{
857 return ERR_PTR(-ENOSYS);
858}
859#endif /* CONFIG_OF */
860EXPORT_SYMBOL_GPL(extcon_get_edev_by_phandle);
861
Chanwoo Choi707d7552015-04-15 13:57:51 +0900862/**
863 * extcon_get_edev_name() - Get the name of the extcon device.
864 * @edev: the extcon device
865 */
866const char *extcon_get_edev_name(struct extcon_dev *edev)
867{
868 return !edev ? NULL : edev->name;
869}
870
MyungJoo Hamde55d872012-04-20 14:16:22 +0900871static int __init extcon_class_init(void)
872{
873 return create_extcon_class();
874}
875module_init(extcon_class_init);
876
877static void __exit extcon_class_exit(void)
878{
Peter Huewe0dc77b62012-09-24 15:32:31 +0900879#if defined(CONFIG_ANDROID)
880 class_compat_unregister(switch_class);
881#endif
MyungJoo Hamde55d872012-04-20 14:16:22 +0900882 class_destroy(extcon_class);
883}
884module_exit(extcon_class_exit);
885
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +0900886MODULE_AUTHOR("Chanwoo Choi <cw00.choi@samsung.com>");
MyungJoo Hamde55d872012-04-20 14:16:22 +0900887MODULE_AUTHOR("Mike Lockwood <lockwood@android.com>");
888MODULE_AUTHOR("Donggeun Kim <dg77.kim@samsung.com>");
889MODULE_AUTHOR("MyungJoo Ham <myungjoo.ham@samsung.com>");
890MODULE_DESCRIPTION("External connector (extcon) class driver");
891MODULE_LICENSE("GPL");