blob: 21a123cadf78278947e551aaaa1772a60728969a [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 Figaf841afb12014-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
Mark Brownbe3a07f2012-06-05 16:14:38 +010080static struct class *extcon_class;
MyungJoo Ham449a2bf2012-04-23 20:19:57 +090081#if defined(CONFIG_ANDROID)
MyungJoo Hamde55d872012-04-20 14:16:22 +090082static struct class_compat *switch_class;
MyungJoo Ham449a2bf2012-04-23 20:19:57 +090083#endif /* CONFIG_ANDROID */
MyungJoo Hamde55d872012-04-20 14:16:22 +090084
Donggeun Kim74c5d092012-04-20 14:16:24 +090085static LIST_HEAD(extcon_dev_list);
86static DEFINE_MUTEX(extcon_dev_list_lock);
87
MyungJoo Hambde68e62012-04-20 14:16:26 +090088/**
89 * check_mutually_exclusive - Check if new_state violates mutually_exclusive
Chanwoo Choia75e1c72013-08-31 13:16:49 +090090 * condition.
MyungJoo Hambde68e62012-04-20 14:16:26 +090091 * @edev: the extcon device
92 * @new_state: new cable attach status for @edev
93 *
94 * Returns 0 if nothing violates. Returns the index + 1 for the first
95 * violated condition.
96 */
97static int check_mutually_exclusive(struct extcon_dev *edev, u32 new_state)
98{
99 int i = 0;
100
101 if (!edev->mutually_exclusive)
102 return 0;
103
104 for (i = 0; edev->mutually_exclusive[i]; i++) {
anish kumar28c0ada2012-08-30 00:35:10 +0530105 int weight;
MyungJoo Hambde68e62012-04-20 14:16:26 +0900106 u32 correspondants = new_state & edev->mutually_exclusive[i];
MyungJoo Hambde68e62012-04-20 14:16:26 +0900107
anish kumar28c0ada2012-08-30 00:35:10 +0530108 /* calculate the total number of bits set */
109 weight = hweight32(correspondants);
110 if (weight > 1)
111 return i + 1;
MyungJoo Hambde68e62012-04-20 14:16:26 +0900112 }
113
114 return 0;
115}
116
Chanwoo Choi73b6ecd2015-06-12 11:10:06 +0900117static int find_cable_index_by_id(struct extcon_dev *edev, const unsigned int id)
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +0900118{
119 int i;
120
121 /* Find the the index of extcon cable in edev->supported_cable */
122 for (i = 0; i < edev->max_supported; i++) {
123 if (edev->supported_cable[i] == id)
124 return i;
125 }
126
127 return -EINVAL;
128}
129
Roger Quadrosbe052cc2015-07-07 16:06:15 +0300130static int find_cable_id_by_name(struct extcon_dev *edev, const char *name)
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +0900131{
Dan Carpentera598af72015-08-04 10:47:23 +0300132 int id = -EINVAL;
Chanwoo Choi73b6ecd2015-06-12 11:10:06 +0900133 int i = 0;
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +0900134
Roger Quadrosbe052cc2015-07-07 16:06:15 +0300135 /* Find the id of extcon cable */
Chanwoo Choi73b6ecd2015-06-12 11:10:06 +0900136 while (extcon_name[i]) {
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +0900137 if (!strncmp(extcon_name[i], name, CABLE_NAME_MAX)) {
138 id = i;
139 break;
140 }
Roger Quadrosbe052cc2015-07-07 16:06:15 +0300141 i++;
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +0900142 }
143
Roger Quadrosbe052cc2015-07-07 16:06:15 +0300144 return id;
145}
146
147static int find_cable_index_by_name(struct extcon_dev *edev, const char *name)
148{
Dan Carpentera598af72015-08-04 10:47:23 +0300149 int id;
Roger Quadrosbe052cc2015-07-07 16:06:15 +0300150
151 if (edev->max_supported == 0)
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +0900152 return -EINVAL;
153
Roger Quadrosbe052cc2015-07-07 16:06:15 +0300154 /* Find the the number of extcon cable */
155 id = find_cable_id_by_name(edev, name);
156 if (id < 0)
157 return id;
158
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +0900159 return find_cable_index_by_id(edev, id);
160}
161
Chanwoo Choi046050f2015-05-19 20:01:12 +0900162static bool is_extcon_changed(u32 prev, u32 new, int idx, bool *attached)
163{
164 if (((prev >> idx) & 0x1) != ((new >> idx) & 0x1)) {
Hans de Goedef4513b02015-08-24 00:35:36 +0200165 *attached = ((new >> idx) & 0x1) ? true : false;
Chanwoo Choi046050f2015-05-19 20:01:12 +0900166 return true;
167 }
168
169 return false;
170}
171
MyungJoo Hamde55d872012-04-20 14:16:22 +0900172static ssize_t state_show(struct device *dev, struct device_attribute *attr,
173 char *buf)
174{
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900175 int i, count = 0;
Jingoo Hancb8bb3a2013-09-09 14:33:32 +0900176 struct extcon_dev *edev = dev_get_drvdata(dev);
MyungJoo Hamde55d872012-04-20 14:16:22 +0900177
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900178 if (edev->max_supported == 0)
179 return sprintf(buf, "%u\n", edev->state);
180
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +0900181 for (i = 0; i < edev->max_supported; i++) {
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900182 count += sprintf(buf + count, "%s=%d\n",
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +0900183 extcon_name[edev->supported_cable[i]],
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900184 !!(edev->state & (1 << i)));
185 }
186
187 return count;
188}
189
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900190static ssize_t state_store(struct device *dev, struct device_attribute *attr,
191 const char *buf, size_t count)
192{
193 u32 state;
194 ssize_t ret = 0;
Jingoo Hancb8bb3a2013-09-09 14:33:32 +0900195 struct extcon_dev *edev = dev_get_drvdata(dev);
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900196
197 ret = sscanf(buf, "0x%x", &state);
198 if (ret == 0)
199 ret = -EINVAL;
200 else
MyungJoo Hambde68e62012-04-20 14:16:26 +0900201 ret = extcon_set_state(edev, state);
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900202
203 if (ret < 0)
204 return ret;
205
206 return count;
MyungJoo Hamde55d872012-04-20 14:16:22 +0900207}
Greg Kroah-Hartmanaf01da02013-07-24 15:05:10 -0700208static DEVICE_ATTR_RW(state);
MyungJoo Hamde55d872012-04-20 14:16:22 +0900209
210static ssize_t name_show(struct device *dev, struct device_attribute *attr,
211 char *buf)
212{
Jingoo Hancb8bb3a2013-09-09 14:33:32 +0900213 struct extcon_dev *edev = dev_get_drvdata(dev);
MyungJoo Hamde55d872012-04-20 14:16:22 +0900214
Chanwoo Choi71c3ffa2015-04-15 15:02:01 +0900215 return sprintf(buf, "%s\n", edev->name);
MyungJoo Hamde55d872012-04-20 14:16:22 +0900216}
Greg Kroah-Hartmanaf01da02013-07-24 15:05:10 -0700217static DEVICE_ATTR_RO(name);
MyungJoo Hamde55d872012-04-20 14:16:22 +0900218
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900219static ssize_t cable_name_show(struct device *dev,
220 struct device_attribute *attr, char *buf)
221{
222 struct extcon_cable *cable = container_of(attr, struct extcon_cable,
223 attr_name);
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +0900224 int i = cable->cable_index;
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900225
226 return sprintf(buf, "%s\n",
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +0900227 extcon_name[cable->edev->supported_cable[i]]);
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900228}
229
230static ssize_t cable_state_show(struct device *dev,
231 struct device_attribute *attr, char *buf)
232{
233 struct extcon_cable *cable = container_of(attr, struct extcon_cable,
234 attr_state);
235
Roger Quadrosbe052cc2015-07-07 16:06:15 +0300236 int i = cable->cable_index;
237
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900238 return sprintf(buf, "%d\n",
239 extcon_get_cable_state_(cable->edev,
Roger Quadrosbe052cc2015-07-07 16:06:15 +0300240 cable->edev->supported_cable[i]));
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900241}
242
MyungJoo Hamde55d872012-04-20 14:16:22 +0900243/**
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900244 * extcon_update_state() - Update the cable attach states of the extcon device
Chanwoo Choia75e1c72013-08-31 13:16:49 +0900245 * only for the masked bits.
MyungJoo Hamde55d872012-04-20 14:16:22 +0900246 * @edev: the extcon device
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900247 * @mask: the bit mask to designate updated bits.
MyungJoo Hamde55d872012-04-20 14:16:22 +0900248 * @state: new cable attach status for @edev
249 *
250 * Changing the state sends uevent with environment variable containing
251 * the name of extcon device (envp[0]) and the state output (envp[1]).
252 * Tizen uses this format for extcon device to get events from ports.
253 * Android uses this format as well.
Donggeun Kim74c5d092012-04-20 14:16:24 +0900254 *
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900255 * Note that the notifier provides which bits are changed in the state
256 * variable with the val parameter (second) to the callback.
MyungJoo Hamde55d872012-04-20 14:16:22 +0900257 */
MyungJoo Hambde68e62012-04-20 14:16:26 +0900258int extcon_update_state(struct extcon_dev *edev, u32 mask, u32 state)
MyungJoo Hamde55d872012-04-20 14:16:22 +0900259{
260 char name_buf[120];
261 char state_buf[120];
262 char *prop_buf;
263 char *envp[3];
264 int env_offset = 0;
265 int length;
Chanwoo Choi046050f2015-05-19 20:01:12 +0900266 int index;
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900267 unsigned long flags;
Chanwoo Choi046050f2015-05-19 20:01:12 +0900268 bool attached;
MyungJoo Hamde55d872012-04-20 14:16:22 +0900269
Chanwoo Choi7eae43a2015-06-21 23:48:36 +0900270 if (!edev)
271 return -EINVAL;
272
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900273 spin_lock_irqsave(&edev->lock, flags);
MyungJoo Hamde55d872012-04-20 14:16:22 +0900274
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900275 if (edev->state != ((edev->state & ~mask) | (state & mask))) {
Roger Quadrosf7a89812015-07-06 17:46:58 +0300276 u32 old_state;
277
MyungJoo Hambde68e62012-04-20 14:16:26 +0900278 if (check_mutually_exclusive(edev, (edev->state & ~mask) |
279 (state & mask))) {
280 spin_unlock_irqrestore(&edev->lock, flags);
281 return -EPERM;
282 }
283
Roger Quadrosf7a89812015-07-06 17:46:58 +0300284 old_state = edev->state;
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900285 edev->state &= ~mask;
286 edev->state |= state & mask;
287
Roger Quadrosf7a89812015-07-06 17:46:58 +0300288 for (index = 0; index < edev->max_supported; index++) {
289 if (is_extcon_changed(old_state, edev->state, index,
290 &attached))
291 raw_notifier_call_chain(&edev->nh[index],
292 attached, edev);
293 }
294
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900295 /* This could be in interrupt handler */
296 prop_buf = (char *)get_zeroed_page(GFP_ATOMIC);
MyungJoo Hamde55d872012-04-20 14:16:22 +0900297 if (prop_buf) {
Chanwoo Choidae61652013-09-27 09:19:40 +0900298 length = name_show(&edev->dev, NULL, prop_buf);
MyungJoo Hamde55d872012-04-20 14:16:22 +0900299 if (length > 0) {
300 if (prop_buf[length - 1] == '\n')
301 prop_buf[length - 1] = 0;
302 snprintf(name_buf, sizeof(name_buf),
303 "NAME=%s", prop_buf);
304 envp[env_offset++] = name_buf;
305 }
Chanwoo Choidae61652013-09-27 09:19:40 +0900306 length = state_show(&edev->dev, NULL, prop_buf);
MyungJoo Hamde55d872012-04-20 14:16:22 +0900307 if (length > 0) {
308 if (prop_buf[length - 1] == '\n')
309 prop_buf[length - 1] = 0;
310 snprintf(state_buf, sizeof(state_buf),
311 "STATE=%s", prop_buf);
312 envp[env_offset++] = state_buf;
313 }
314 envp[env_offset] = NULL;
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900315 /* Unlock early before uevent */
316 spin_unlock_irqrestore(&edev->lock, flags);
317
Chanwoo Choidae61652013-09-27 09:19:40 +0900318 kobject_uevent_env(&edev->dev.kobj, KOBJ_CHANGE, envp);
MyungJoo Hamde55d872012-04-20 14:16:22 +0900319 free_page((unsigned long)prop_buf);
320 } else {
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900321 /* Unlock early before uevent */
322 spin_unlock_irqrestore(&edev->lock, flags);
323
Chanwoo Choidae61652013-09-27 09:19:40 +0900324 dev_err(&edev->dev, "out of memory in extcon_set_state\n");
325 kobject_uevent(&edev->dev.kobj, KOBJ_CHANGE);
MyungJoo Hamde55d872012-04-20 14:16:22 +0900326 }
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900327 } else {
328 /* No changes */
329 spin_unlock_irqrestore(&edev->lock, flags);
MyungJoo Hamde55d872012-04-20 14:16:22 +0900330 }
MyungJoo Hambde68e62012-04-20 14:16:26 +0900331
332 return 0;
MyungJoo Hamde55d872012-04-20 14:16:22 +0900333}
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900334EXPORT_SYMBOL_GPL(extcon_update_state);
335
336/**
337 * extcon_set_state() - Set the cable attach states of the extcon device.
338 * @edev: the extcon device
339 * @state: new cable attach status for @edev
340 *
341 * Note that notifier provides which bits are changed in the state
342 * variable with the val parameter (second) to the callback.
343 */
MyungJoo Hambde68e62012-04-20 14:16:26 +0900344int extcon_set_state(struct extcon_dev *edev, u32 state)
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900345{
Chanwoo Choi7eae43a2015-06-21 23:48:36 +0900346 if (!edev)
347 return -EINVAL;
348
MyungJoo Hambde68e62012-04-20 14:16:26 +0900349 return extcon_update_state(edev, 0xffffffff, state);
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900350}
MyungJoo Hamde55d872012-04-20 14:16:22 +0900351EXPORT_SYMBOL_GPL(extcon_set_state);
352
Donggeun Kim74c5d092012-04-20 14:16:24 +0900353/**
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900354 * extcon_get_cable_state_() - Get the status of a specific cable.
355 * @edev: the extcon device that has the cable.
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +0900356 * @id: the unique id of each external connector in extcon enumeration.
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900357 */
Chanwoo Choi73b6ecd2015-06-12 11:10:06 +0900358int extcon_get_cable_state_(struct extcon_dev *edev, const unsigned int id)
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900359{
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +0900360 int index;
361
Chanwoo Choi7eae43a2015-06-21 23:48:36 +0900362 if (!edev)
363 return -EINVAL;
364
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +0900365 index = find_cable_index_by_id(edev, id);
366 if (index < 0)
367 return index;
368
369 if (edev->max_supported && edev->max_supported <= index)
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900370 return -EINVAL;
371
372 return !!(edev->state & (1 << index));
373}
374EXPORT_SYMBOL_GPL(extcon_get_cable_state_);
375
376/**
377 * extcon_get_cable_state() - Get the status of a specific cable.
378 * @edev: the extcon device that has the cable.
379 * @cable_name: cable name.
380 *
381 * Note that this is slower than extcon_get_cable_state_.
382 */
383int extcon_get_cable_state(struct extcon_dev *edev, const char *cable_name)
384{
Dan Carpentera598af72015-08-04 10:47:23 +0300385 int id;
Roger Quadrosbe052cc2015-07-07 16:06:15 +0300386
387 id = find_cable_id_by_name(edev, cable_name);
388 if (id < 0)
389 return id;
390
391 return extcon_get_cable_state_(edev, id);
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900392}
393EXPORT_SYMBOL_GPL(extcon_get_cable_state);
394
395/**
Axel Lin909f9ec2012-10-04 09:53:45 +0900396 * extcon_set_cable_state_() - Set the status of a specific cable.
Chanwoo Choia75e1c72013-08-31 13:16:49 +0900397 * @edev: the extcon device that has the cable.
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +0900398 * @id: the unique id of each external connector
399 * in extcon enumeration.
400 * @state: the new cable status. The default semantics is
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900401 * true: attached / false: detached.
402 */
Chanwoo Choi73b6ecd2015-06-12 11:10:06 +0900403int extcon_set_cable_state_(struct extcon_dev *edev, unsigned int id,
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +0900404 bool cable_state)
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900405{
406 u32 state;
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +0900407 int index;
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900408
Chanwoo Choi7eae43a2015-06-21 23:48:36 +0900409 if (!edev)
410 return -EINVAL;
411
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +0900412 index = find_cable_index_by_id(edev, id);
413 if (index < 0)
414 return index;
415
416 if (edev->max_supported && edev->max_supported <= index)
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900417 return -EINVAL;
418
419 state = cable_state ? (1 << index) : 0;
MyungJoo Hambde68e62012-04-20 14:16:26 +0900420 return extcon_update_state(edev, 1 << index, state);
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900421}
422EXPORT_SYMBOL_GPL(extcon_set_cable_state_);
423
424/**
Axel Lin909f9ec2012-10-04 09:53:45 +0900425 * extcon_set_cable_state() - Set the status of a specific cable.
Chanwoo Choia75e1c72013-08-31 13:16:49 +0900426 * @edev: the extcon device that has the cable.
427 * @cable_name: cable name.
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900428 * @cable_state: the new cable status. The default semantics is
429 * true: attached / false: detached.
430 *
431 * Note that this is slower than extcon_set_cable_state_.
432 */
433int extcon_set_cable_state(struct extcon_dev *edev,
434 const char *cable_name, bool cable_state)
435{
Dan Carpentera598af72015-08-04 10:47:23 +0300436 int id;
Roger Quadrosbe052cc2015-07-07 16:06:15 +0300437
438 id = find_cable_id_by_name(edev, cable_name);
439 if (id < 0)
440 return id;
441
442 return extcon_set_cable_state_(edev, id, cable_state);
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900443}
444EXPORT_SYMBOL_GPL(extcon_set_cable_state);
445
446/**
Donggeun Kim74c5d092012-04-20 14:16:24 +0900447 * extcon_get_extcon_dev() - Get the extcon device instance from the name
448 * @extcon_name: The extcon name provided with extcon_dev_register()
449 */
450struct extcon_dev *extcon_get_extcon_dev(const char *extcon_name)
451{
452 struct extcon_dev *sd;
453
Chanwoo Choi7eae43a2015-06-21 23:48:36 +0900454 if (!extcon_name)
455 return ERR_PTR(-EINVAL);
456
Donggeun Kim74c5d092012-04-20 14:16:24 +0900457 mutex_lock(&extcon_dev_list_lock);
458 list_for_each_entry(sd, &extcon_dev_list, entry) {
459 if (!strcmp(sd->name, extcon_name))
460 goto out;
461 }
462 sd = NULL;
463out:
464 mutex_unlock(&extcon_dev_list_lock);
465 return sd;
466}
467EXPORT_SYMBOL_GPL(extcon_get_extcon_dev);
468
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900469/**
470 * extcon_register_interest() - Register a notifier for a state change of a
Chanwoo Choia75e1c72013-08-31 13:16:49 +0900471 * specific cable, not an entier set of cables of a
472 * extcon device.
473 * @obj: an empty extcon_specific_cable_nb object to be returned.
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900474 * @extcon_name: the name of extcon device.
Jenny TC4f2de3b2012-10-18 21:00:32 +0900475 * if NULL, extcon_register_interest will register
476 * every cable with the target cable_name given.
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900477 * @cable_name: the target cable name.
Chanwoo Choia75e1c72013-08-31 13:16:49 +0900478 * @nb: the notifier block to get notified.
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900479 *
480 * Provide an empty extcon_specific_cable_nb. extcon_register_interest() sets
481 * the struct for you.
482 *
483 * extcon_register_interest is a helper function for those who want to get
484 * notification for a single specific cable's status change. If a user wants
485 * to get notification for any changes of all cables of a extcon device,
486 * he/she should use the general extcon_register_notifier().
487 *
488 * Note that the second parameter given to the callback of nb (val) is
489 * "old_state", not the current state. The current state can be retrieved
490 * by looking at the third pameter (edev pointer)'s state value.
491 */
492int extcon_register_interest(struct extcon_specific_cable_nb *obj,
493 const char *extcon_name, const char *cable_name,
494 struct notifier_block *nb)
495{
Hans de Goede66bee352015-03-21 17:26:24 +0100496 unsigned long flags;
497 int ret;
498
Jenny TC4f2de3b2012-10-18 21:00:32 +0900499 if (!obj || !cable_name || !nb)
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900500 return -EINVAL;
501
Jenny TC4f2de3b2012-10-18 21:00:32 +0900502 if (extcon_name) {
503 obj->edev = extcon_get_extcon_dev(extcon_name);
504 if (!obj->edev)
505 return -ENODEV;
506
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +0900507 obj->cable_index = find_cable_index_by_name(obj->edev,
508 cable_name);
Jenny TC4f2de3b2012-10-18 21:00:32 +0900509 if (obj->cable_index < 0)
Sachin Kamatc0c078c2012-11-20 16:30:31 +0900510 return obj->cable_index;
Jenny TC4f2de3b2012-10-18 21:00:32 +0900511
512 obj->user_nb = nb;
513
Hans de Goede66bee352015-03-21 17:26:24 +0100514 spin_lock_irqsave(&obj->edev->lock, flags);
Chanwoo Choi046050f2015-05-19 20:01:12 +0900515 ret = raw_notifier_chain_register(
516 &obj->edev->nh[obj->cable_index],
517 obj->user_nb);
Hans de Goede66bee352015-03-21 17:26:24 +0100518 spin_unlock_irqrestore(&obj->edev->lock, flags);
Jenny TC4f2de3b2012-10-18 21:00:32 +0900519 } else {
520 struct class_dev_iter iter;
521 struct extcon_dev *extd;
522 struct device *dev;
523
524 if (!extcon_class)
525 return -ENODEV;
526 class_dev_iter_init(&iter, extcon_class, NULL, NULL);
527 while ((dev = class_dev_iter_next(&iter))) {
Jingoo Hancb8bb3a2013-09-09 14:33:32 +0900528 extd = dev_get_drvdata(dev);
Jenny TC4f2de3b2012-10-18 21:00:32 +0900529
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +0900530 if (find_cable_index_by_name(extd, cable_name) < 0)
Jenny TC4f2de3b2012-10-18 21:00:32 +0900531 continue;
532
533 class_dev_iter_exit(&iter);
534 return extcon_register_interest(obj, extd->name,
535 cable_name, nb);
536 }
537
Chanwoo Choib9ec23c2015-04-24 14:48:52 +0900538 ret = -ENODEV;
Jenny TC4f2de3b2012-10-18 21:00:32 +0900539 }
Chanwoo Choib9ec23c2015-04-24 14:48:52 +0900540
541 return ret;
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900542}
Kishon Vijay Abraham I9c8a0132013-06-04 01:13:38 +0900543EXPORT_SYMBOL_GPL(extcon_register_interest);
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900544
545/**
546 * extcon_unregister_interest() - Unregister the notifier registered by
Chanwoo Choia75e1c72013-08-31 13:16:49 +0900547 * extcon_register_interest().
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900548 * @obj: the extcon_specific_cable_nb object returned by
549 * extcon_register_interest().
550 */
551int extcon_unregister_interest(struct extcon_specific_cable_nb *obj)
552{
Hans de Goede66bee352015-03-21 17:26:24 +0100553 unsigned long flags;
554 int ret;
555
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900556 if (!obj)
557 return -EINVAL;
558
Hans de Goede66bee352015-03-21 17:26:24 +0100559 spin_lock_irqsave(&obj->edev->lock, flags);
Chanwoo Choi046050f2015-05-19 20:01:12 +0900560 ret = raw_notifier_chain_unregister(
561 &obj->edev->nh[obj->cable_index], obj->user_nb);
Hans de Goede66bee352015-03-21 17:26:24 +0100562 spin_unlock_irqrestore(&obj->edev->lock, flags);
563
564 return ret;
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900565}
Kishon Vijay Abraham I9c8a0132013-06-04 01:13:38 +0900566EXPORT_SYMBOL_GPL(extcon_unregister_interest);
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900567
Donggeun Kim74c5d092012-04-20 14:16:24 +0900568/**
Peter Meerwaldc338bb02012-08-23 09:11:54 +0900569 * extcon_register_notifier() - Register a notifiee to get notified by
Chanwoo Choia75e1c72013-08-31 13:16:49 +0900570 * any attach status changes from the extcon.
Chanwoo Choi046050f2015-05-19 20:01:12 +0900571 * @edev: the extcon device that has the external connecotr.
572 * @id: the unique id of each external connector in extcon enumeration.
Donggeun Kim74c5d092012-04-20 14:16:24 +0900573 * @nb: a notifier block to be registered.
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900574 *
575 * Note that the second parameter given to the callback of nb (val) is
576 * "old_state", not the current state. The current state can be retrieved
577 * by looking at the third pameter (edev pointer)'s state value.
Donggeun Kim74c5d092012-04-20 14:16:24 +0900578 */
Chanwoo Choi73b6ecd2015-06-12 11:10:06 +0900579int extcon_register_notifier(struct extcon_dev *edev, unsigned int id,
Chanwoo Choi046050f2015-05-19 20:01:12 +0900580 struct notifier_block *nb)
Donggeun Kim74c5d092012-04-20 14:16:24 +0900581{
Hans de Goede66bee352015-03-21 17:26:24 +0100582 unsigned long flags;
Chanwoo Choi046050f2015-05-19 20:01:12 +0900583 int ret, idx;
584
Chanwoo Choi7eae43a2015-06-21 23:48:36 +0900585 if (!edev || !nb)
586 return -EINVAL;
587
Chanwoo Choi046050f2015-05-19 20:01:12 +0900588 idx = find_cable_index_by_id(edev, id);
Hans de Goede66bee352015-03-21 17:26:24 +0100589
590 spin_lock_irqsave(&edev->lock, flags);
Chanwoo Choi046050f2015-05-19 20:01:12 +0900591 ret = raw_notifier_chain_register(&edev->nh[idx], nb);
Hans de Goede66bee352015-03-21 17:26:24 +0100592 spin_unlock_irqrestore(&edev->lock, flags);
593
594 return ret;
Donggeun Kim74c5d092012-04-20 14:16:24 +0900595}
596EXPORT_SYMBOL_GPL(extcon_register_notifier);
597
598/**
Peter Meerwaldc338bb02012-08-23 09:11:54 +0900599 * extcon_unregister_notifier() - Unregister a notifiee from the extcon device.
Chanwoo Choi046050f2015-05-19 20:01:12 +0900600 * @edev: the extcon device that has the external connecotr.
601 * @id: the unique id of each external connector in extcon enumeration.
602 * @nb: a notifier block to be registered.
Donggeun Kim74c5d092012-04-20 14:16:24 +0900603 */
Chanwoo Choi73b6ecd2015-06-12 11:10:06 +0900604int extcon_unregister_notifier(struct extcon_dev *edev, unsigned int id,
Chanwoo Choi046050f2015-05-19 20:01:12 +0900605 struct notifier_block *nb)
Donggeun Kim74c5d092012-04-20 14:16:24 +0900606{
Hans de Goede66bee352015-03-21 17:26:24 +0100607 unsigned long flags;
Chanwoo Choi046050f2015-05-19 20:01:12 +0900608 int ret, idx;
609
Chanwoo Choi7eae43a2015-06-21 23:48:36 +0900610 if (!edev || !nb)
611 return -EINVAL;
612
Chanwoo Choi046050f2015-05-19 20:01:12 +0900613 idx = find_cable_index_by_id(edev, id);
Hans de Goede66bee352015-03-21 17:26:24 +0100614
615 spin_lock_irqsave(&edev->lock, flags);
Chanwoo Choi046050f2015-05-19 20:01:12 +0900616 ret = raw_notifier_chain_unregister(&edev->nh[idx], nb);
Hans de Goede66bee352015-03-21 17:26:24 +0100617 spin_unlock_irqrestore(&edev->lock, flags);
618
619 return ret;
Donggeun Kim74c5d092012-04-20 14:16:24 +0900620}
621EXPORT_SYMBOL_GPL(extcon_unregister_notifier);
622
Greg Kroah-Hartmanaf01da02013-07-24 15:05:10 -0700623static struct attribute *extcon_attrs[] = {
624 &dev_attr_state.attr,
625 &dev_attr_name.attr,
626 NULL,
MyungJoo Hamde55d872012-04-20 14:16:22 +0900627};
Greg Kroah-Hartmanaf01da02013-07-24 15:05:10 -0700628ATTRIBUTE_GROUPS(extcon);
MyungJoo Hamde55d872012-04-20 14:16:22 +0900629
630static int create_extcon_class(void)
631{
632 if (!extcon_class) {
633 extcon_class = class_create(THIS_MODULE, "extcon");
634 if (IS_ERR(extcon_class))
635 return PTR_ERR(extcon_class);
Greg Kroah-Hartmanaf01da02013-07-24 15:05:10 -0700636 extcon_class->dev_groups = extcon_groups;
MyungJoo Hamde55d872012-04-20 14:16:22 +0900637
MyungJoo Ham449a2bf2012-04-23 20:19:57 +0900638#if defined(CONFIG_ANDROID)
MyungJoo Hamde55d872012-04-20 14:16:22 +0900639 switch_class = class_compat_register("switch");
640 if (WARN(!switch_class, "cannot allocate"))
641 return -ENOMEM;
MyungJoo Ham449a2bf2012-04-23 20:19:57 +0900642#endif /* CONFIG_ANDROID */
MyungJoo Hamde55d872012-04-20 14:16:22 +0900643 }
644
645 return 0;
646}
647
MyungJoo Hamde55d872012-04-20 14:16:22 +0900648static void extcon_dev_release(struct device *dev)
649{
MyungJoo Hamde55d872012-04-20 14:16:22 +0900650}
651
MyungJoo Hambde68e62012-04-20 14:16:26 +0900652static const char *muex_name = "mutually_exclusive";
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900653static void dummy_sysfs_dev_release(struct device *dev)
654{
655}
656
Chanwoo Choia9af6522014-04-24 19:46:49 +0900657/*
658 * extcon_dev_allocate() - Allocate the memory of extcon device.
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +0900659 * @supported_cable: Array of supported extcon ending with EXTCON_NONE.
Chanwoo Choia9af6522014-04-24 19:46:49 +0900660 * If supported_cable is NULL, cable name related APIs
661 * are disabled.
662 *
663 * This function allocates the memory for extcon device without allocating
664 * memory in each extcon provider driver and initialize default setting for
665 * extcon device.
666 *
667 * Return the pointer of extcon device if success or ERR_PTR(err) if fail
668 */
Chanwoo Choi73b6ecd2015-06-12 11:10:06 +0900669struct extcon_dev *extcon_dev_allocate(const unsigned int *supported_cable)
Chanwoo Choia9af6522014-04-24 19:46:49 +0900670{
671 struct extcon_dev *edev;
672
Chanwoo Choi7eae43a2015-06-21 23:48:36 +0900673 if (!supported_cable)
674 return ERR_PTR(-EINVAL);
675
Chanwoo Choia9af6522014-04-24 19:46:49 +0900676 edev = kzalloc(sizeof(*edev), GFP_KERNEL);
677 if (!edev)
678 return ERR_PTR(-ENOMEM);
679
680 edev->max_supported = 0;
681 edev->supported_cable = supported_cable;
682
683 return edev;
684}
685
686/*
687 * extcon_dev_free() - Free the memory of extcon device.
688 * @edev: the extcon device to free
689 */
690void extcon_dev_free(struct extcon_dev *edev)
691{
692 kfree(edev);
693}
694EXPORT_SYMBOL_GPL(extcon_dev_free);
695
Chanwoo Choi739ba1b2014-04-24 20:12:15 +0900696static int devm_extcon_dev_match(struct device *dev, void *res, void *data)
697{
698 struct extcon_dev **r = res;
699
700 if (WARN_ON(!r || !*r))
701 return 0;
702
703 return *r == data;
704}
705
706static void devm_extcon_dev_release(struct device *dev, void *res)
707{
708 extcon_dev_free(*(struct extcon_dev **)res);
709}
710
711/**
712 * devm_extcon_dev_allocate - Allocate managed extcon device
713 * @dev: device owning the extcon device being created
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +0900714 * @supported_cable: Array of supported extcon ending with EXTCON_NONE.
Chanwoo Choi739ba1b2014-04-24 20:12:15 +0900715 * If supported_cable is NULL, cable name related APIs
716 * are disabled.
717 *
718 * This function manages automatically the memory of extcon device using device
719 * resource management and simplify the control of freeing the memory of extcon
720 * device.
721 *
722 * Returns the pointer memory of allocated extcon_dev if success
723 * or ERR_PTR(err) if fail
724 */
725struct extcon_dev *devm_extcon_dev_allocate(struct device *dev,
Chanwoo Choi73b6ecd2015-06-12 11:10:06 +0900726 const unsigned int *supported_cable)
Chanwoo Choi739ba1b2014-04-24 20:12:15 +0900727{
728 struct extcon_dev **ptr, *edev;
729
730 ptr = devres_alloc(devm_extcon_dev_release, sizeof(*ptr), GFP_KERNEL);
731 if (!ptr)
732 return ERR_PTR(-ENOMEM);
733
734 edev = extcon_dev_allocate(supported_cable);
735 if (IS_ERR(edev)) {
736 devres_free(ptr);
737 return edev;
738 }
739
Chanwoo Choiac65a622014-05-30 10:13:15 +0900740 edev->dev.parent = dev;
741
Chanwoo Choi739ba1b2014-04-24 20:12:15 +0900742 *ptr = edev;
743 devres_add(dev, ptr);
744
745 return edev;
746}
747EXPORT_SYMBOL_GPL(devm_extcon_dev_allocate);
748
749void devm_extcon_dev_free(struct device *dev, struct extcon_dev *edev)
750{
751 WARN_ON(devres_release(dev, devm_extcon_dev_release,
752 devm_extcon_dev_match, edev));
753}
754EXPORT_SYMBOL_GPL(devm_extcon_dev_free);
755
MyungJoo Hamde55d872012-04-20 14:16:22 +0900756/**
757 * extcon_dev_register() - Register a new extcon device
758 * @edev : the new extcon device (should be allocated before calling)
MyungJoo Hamde55d872012-04-20 14:16:22 +0900759 *
760 * Among the members of edev struct, please set the "user initializing data"
761 * in any case and set the "optional callbacks" if required. However, please
762 * do not set the values of "internal data", which are initialized by
763 * this function.
764 */
Chanwoo Choi42d7d752013-09-27 09:20:26 +0900765int extcon_dev_register(struct extcon_dev *edev)
MyungJoo Hamde55d872012-04-20 14:16:22 +0900766{
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900767 int ret, index = 0;
Chanwoo Choi71c3ffa2015-04-15 15:02:01 +0900768 static atomic_t edev_no = ATOMIC_INIT(-1);
MyungJoo Hamde55d872012-04-20 14:16:22 +0900769
770 if (!extcon_class) {
771 ret = create_extcon_class();
772 if (ret < 0)
773 return ret;
774 }
775
Chanwoo Choi7eae43a2015-06-21 23:48:36 +0900776 if (!edev || !edev->supported_cable)
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +0900777 return -EINVAL;
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900778
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +0900779 for (; edev->supported_cable[index] != EXTCON_NONE; index++);
780
781 edev->max_supported = index;
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900782 if (index > SUPPORTED_CABLE_MAX) {
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +0900783 dev_err(&edev->dev,
784 "exceed the maximum number of supported cables\n");
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900785 return -EINVAL;
786 }
787
Chanwoo Choidae61652013-09-27 09:19:40 +0900788 edev->dev.class = extcon_class;
789 edev->dev.release = extcon_dev_release;
MyungJoo Hamde55d872012-04-20 14:16:22 +0900790
Chanwoo Choi71c3ffa2015-04-15 15:02:01 +0900791 edev->name = dev_name(edev->dev.parent);
Chanwoo Choi42d7d752013-09-27 09:20:26 +0900792 if (IS_ERR_OR_NULL(edev->name)) {
793 dev_err(&edev->dev,
794 "extcon device name is null\n");
795 return -EINVAL;
796 }
Chanwoo Choi71c3ffa2015-04-15 15:02:01 +0900797 dev_set_name(&edev->dev, "extcon%lu",
798 (unsigned long)atomic_inc_return(&edev_no));
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900799
800 if (edev->max_supported) {
801 char buf[10];
802 char *str;
803 struct extcon_cable *cable;
804
805 edev->cables = kzalloc(sizeof(struct extcon_cable) *
806 edev->max_supported, GFP_KERNEL);
807 if (!edev->cables) {
808 ret = -ENOMEM;
809 goto err_sysfs_alloc;
810 }
811 for (index = 0; index < edev->max_supported; index++) {
812 cable = &edev->cables[index];
813
814 snprintf(buf, 10, "cable.%d", index);
815 str = kzalloc(sizeof(char) * (strlen(buf) + 1),
816 GFP_KERNEL);
817 if (!str) {
818 for (index--; index >= 0; index--) {
819 cable = &edev->cables[index];
820 kfree(cable->attr_g.name);
821 }
822 ret = -ENOMEM;
823
824 goto err_alloc_cables;
825 }
826 strcpy(str, buf);
827
828 cable->edev = edev;
829 cable->cable_index = index;
830 cable->attrs[0] = &cable->attr_name.attr;
831 cable->attrs[1] = &cable->attr_state.attr;
832 cable->attrs[2] = NULL;
833 cable->attr_g.name = str;
834 cable->attr_g.attrs = cable->attrs;
835
Mark Brown9baf3222012-08-16 20:03:21 +0100836 sysfs_attr_init(&cable->attr_name.attr);
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900837 cable->attr_name.attr.name = "name";
838 cable->attr_name.attr.mode = 0444;
839 cable->attr_name.show = cable_name_show;
840
Mark Brown9baf3222012-08-16 20:03:21 +0100841 sysfs_attr_init(&cable->attr_state.attr);
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900842 cable->attr_state.attr.name = "state";
Chanwoo Choiea9dd9d2013-05-22 19:31:59 +0900843 cable->attr_state.attr.mode = 0444;
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900844 cable->attr_state.show = cable_state_show;
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900845 }
846 }
847
MyungJoo Hambde68e62012-04-20 14:16:26 +0900848 if (edev->max_supported && edev->mutually_exclusive) {
849 char buf[80];
850 char *name;
851
852 /* Count the size of mutually_exclusive array */
853 for (index = 0; edev->mutually_exclusive[index]; index++)
854 ;
855
856 edev->attrs_muex = kzalloc(sizeof(struct attribute *) *
857 (index + 1), GFP_KERNEL);
858 if (!edev->attrs_muex) {
859 ret = -ENOMEM;
860 goto err_muex;
861 }
862
863 edev->d_attrs_muex = kzalloc(sizeof(struct device_attribute) *
864 index, GFP_KERNEL);
865 if (!edev->d_attrs_muex) {
866 ret = -ENOMEM;
867 kfree(edev->attrs_muex);
868 goto err_muex;
869 }
870
871 for (index = 0; edev->mutually_exclusive[index]; index++) {
872 sprintf(buf, "0x%x", edev->mutually_exclusive[index]);
873 name = kzalloc(sizeof(char) * (strlen(buf) + 1),
874 GFP_KERNEL);
875 if (!name) {
876 for (index--; index >= 0; index--) {
877 kfree(edev->d_attrs_muex[index].attr.
878 name);
879 }
880 kfree(edev->d_attrs_muex);
881 kfree(edev->attrs_muex);
882 ret = -ENOMEM;
883 goto err_muex;
884 }
885 strcpy(name, buf);
Mark Brown9baf3222012-08-16 20:03:21 +0100886 sysfs_attr_init(&edev->d_attrs_muex[index].attr);
MyungJoo Hambde68e62012-04-20 14:16:26 +0900887 edev->d_attrs_muex[index].attr.name = name;
888 edev->d_attrs_muex[index].attr.mode = 0000;
889 edev->attrs_muex[index] = &edev->d_attrs_muex[index]
890 .attr;
891 }
892 edev->attr_g_muex.name = muex_name;
893 edev->attr_g_muex.attrs = edev->attrs_muex;
894
895 }
896
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900897 if (edev->max_supported) {
898 edev->extcon_dev_type.groups =
899 kzalloc(sizeof(struct attribute_group *) *
MyungJoo Hambde68e62012-04-20 14:16:26 +0900900 (edev->max_supported + 2), GFP_KERNEL);
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900901 if (!edev->extcon_dev_type.groups) {
902 ret = -ENOMEM;
903 goto err_alloc_groups;
904 }
905
Chanwoo Choidae61652013-09-27 09:19:40 +0900906 edev->extcon_dev_type.name = dev_name(&edev->dev);
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900907 edev->extcon_dev_type.release = dummy_sysfs_dev_release;
908
909 for (index = 0; index < edev->max_supported; index++)
910 edev->extcon_dev_type.groups[index] =
911 &edev->cables[index].attr_g;
MyungJoo Hambde68e62012-04-20 14:16:26 +0900912 if (edev->mutually_exclusive)
913 edev->extcon_dev_type.groups[index] =
914 &edev->attr_g_muex;
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900915
Chanwoo Choidae61652013-09-27 09:19:40 +0900916 edev->dev.type = &edev->extcon_dev_type;
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900917 }
918
Chanwoo Choidae61652013-09-27 09:19:40 +0900919 ret = device_register(&edev->dev);
MyungJoo Hamde55d872012-04-20 14:16:22 +0900920 if (ret) {
Chanwoo Choidae61652013-09-27 09:19:40 +0900921 put_device(&edev->dev);
MyungJoo Hamde55d872012-04-20 14:16:22 +0900922 goto err_dev;
923 }
MyungJoo Ham449a2bf2012-04-23 20:19:57 +0900924#if defined(CONFIG_ANDROID)
MyungJoo Hamde55d872012-04-20 14:16:22 +0900925 if (switch_class)
Chanwoo Choidae61652013-09-27 09:19:40 +0900926 ret = class_compat_create_link(switch_class, &edev->dev, NULL);
MyungJoo Ham449a2bf2012-04-23 20:19:57 +0900927#endif /* CONFIG_ANDROID */
MyungJoo Hamde55d872012-04-20 14:16:22 +0900928
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900929 spin_lock_init(&edev->lock);
930
Chanwoo Choi046050f2015-05-19 20:01:12 +0900931 edev->nh = devm_kzalloc(&edev->dev,
932 sizeof(*edev->nh) * edev->max_supported, GFP_KERNEL);
933 if (!edev->nh) {
934 ret = -ENOMEM;
935 goto err_dev;
936 }
937
938 for (index = 0; index < edev->max_supported; index++)
939 RAW_INIT_NOTIFIER_HEAD(&edev->nh[index]);
Donggeun Kim74c5d092012-04-20 14:16:24 +0900940
Chanwoo Choidae61652013-09-27 09:19:40 +0900941 dev_set_drvdata(&edev->dev, edev);
MyungJoo Hamde55d872012-04-20 14:16:22 +0900942 edev->state = 0;
Donggeun Kim74c5d092012-04-20 14:16:24 +0900943
944 mutex_lock(&extcon_dev_list_lock);
945 list_add(&edev->entry, &extcon_dev_list);
946 mutex_unlock(&extcon_dev_list_lock);
947
MyungJoo Hamde55d872012-04-20 14:16:22 +0900948 return 0;
949
950err_dev:
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900951 if (edev->max_supported)
952 kfree(edev->extcon_dev_type.groups);
953err_alloc_groups:
MyungJoo Hambde68e62012-04-20 14:16:26 +0900954 if (edev->max_supported && edev->mutually_exclusive) {
955 for (index = 0; edev->mutually_exclusive[index]; index++)
956 kfree(edev->d_attrs_muex[index].attr.name);
957 kfree(edev->d_attrs_muex);
958 kfree(edev->attrs_muex);
959 }
960err_muex:
MyungJoo Ham806d9dd2012-04-20 14:16:25 +0900961 for (index = 0; index < edev->max_supported; index++)
962 kfree(edev->cables[index].attr_g.name);
963err_alloc_cables:
964 if (edev->max_supported)
965 kfree(edev->cables);
966err_sysfs_alloc:
MyungJoo Hamde55d872012-04-20 14:16:22 +0900967 return ret;
968}
969EXPORT_SYMBOL_GPL(extcon_dev_register);
970
971/**
972 * extcon_dev_unregister() - Unregister the extcon device.
Peter Meerwaldc338bb02012-08-23 09:11:54 +0900973 * @edev: the extcon device instance to be unregistered.
MyungJoo Hamde55d872012-04-20 14:16:22 +0900974 *
975 * Note that this does not call kfree(edev) because edev was not allocated
976 * by this class.
977 */
978void extcon_dev_unregister(struct extcon_dev *edev)
979{
anish kumar57e7cd32012-10-22 09:43:33 +0900980 int index;
981
Chanwoo Choi7eae43a2015-06-21 23:48:36 +0900982 if (!edev)
983 return;
984
anish kumar57e7cd32012-10-22 09:43:33 +0900985 mutex_lock(&extcon_dev_list_lock);
986 list_del(&edev->entry);
987 mutex_unlock(&extcon_dev_list_lock);
988
Chanwoo Choidae61652013-09-27 09:19:40 +0900989 if (IS_ERR_OR_NULL(get_device(&edev->dev))) {
990 dev_err(&edev->dev, "Failed to unregister extcon_dev (%s)\n",
991 dev_name(&edev->dev));
anish kumar57e7cd32012-10-22 09:43:33 +0900992 return;
993 }
994
Wang, Xiaoming7585ca02013-11-01 18:48:14 -0400995 device_unregister(&edev->dev);
996
anish kumar57e7cd32012-10-22 09:43:33 +0900997 if (edev->mutually_exclusive && edev->max_supported) {
998 for (index = 0; edev->mutually_exclusive[index];
999 index++)
1000 kfree(edev->d_attrs_muex[index].attr.name);
1001 kfree(edev->d_attrs_muex);
1002 kfree(edev->attrs_muex);
1003 }
1004
1005 for (index = 0; index < edev->max_supported; index++)
1006 kfree(edev->cables[index].attr_g.name);
1007
1008 if (edev->max_supported) {
1009 kfree(edev->extcon_dev_type.groups);
1010 kfree(edev->cables);
1011 }
1012
1013#if defined(CONFIG_ANDROID)
1014 if (switch_class)
Chanwoo Choidae61652013-09-27 09:19:40 +09001015 class_compat_remove_link(switch_class, &edev->dev, NULL);
anish kumar57e7cd32012-10-22 09:43:33 +09001016#endif
Chanwoo Choidae61652013-09-27 09:19:40 +09001017 put_device(&edev->dev);
MyungJoo Hamde55d872012-04-20 14:16:22 +09001018}
1019EXPORT_SYMBOL_GPL(extcon_dev_unregister);
1020
Sangjung Woo11112442014-04-21 19:10:08 +09001021static void devm_extcon_dev_unreg(struct device *dev, void *res)
1022{
1023 extcon_dev_unregister(*(struct extcon_dev **)res);
1024}
1025
Sangjung Woo11112442014-04-21 19:10:08 +09001026/**
1027 * devm_extcon_dev_register() - Resource-managed extcon_dev_register()
1028 * @dev: device to allocate extcon device
1029 * @edev: the new extcon device to register
1030 *
1031 * Managed extcon_dev_register() function. If extcon device is attached with
1032 * this function, that extcon device is automatically unregistered on driver
1033 * detach. Internally this function calls extcon_dev_register() function.
1034 * To get more information, refer that function.
1035 *
1036 * If extcon device is registered with this function and the device needs to be
1037 * unregistered separately, devm_extcon_dev_unregister() should be used.
1038 *
1039 * Returns 0 if success or negaive error number if failure.
1040 */
1041int devm_extcon_dev_register(struct device *dev, struct extcon_dev *edev)
1042{
1043 struct extcon_dev **ptr;
1044 int ret;
1045
1046 ptr = devres_alloc(devm_extcon_dev_unreg, sizeof(*ptr), GFP_KERNEL);
1047 if (!ptr)
1048 return -ENOMEM;
1049
1050 ret = extcon_dev_register(edev);
1051 if (ret) {
1052 devres_free(ptr);
1053 return ret;
1054 }
1055
1056 *ptr = edev;
1057 devres_add(dev, ptr);
1058
1059 return 0;
1060}
1061EXPORT_SYMBOL_GPL(devm_extcon_dev_register);
1062
1063/**
1064 * devm_extcon_dev_unregister() - Resource-managed extcon_dev_unregister()
1065 * @dev: device the extcon belongs to
1066 * @edev: the extcon device to unregister
1067 *
1068 * Unregister extcon device that is registered with devm_extcon_dev_register()
1069 * function.
1070 */
1071void devm_extcon_dev_unregister(struct device *dev, struct extcon_dev *edev)
1072{
1073 WARN_ON(devres_release(dev, devm_extcon_dev_unreg,
1074 devm_extcon_dev_match, edev));
1075}
1076EXPORT_SYMBOL_GPL(devm_extcon_dev_unregister);
1077
Chanwoo Choi1ad94ff2014-03-18 19:55:46 +09001078#ifdef CONFIG_OF
1079/*
1080 * extcon_get_edev_by_phandle - Get the extcon device from devicetree
1081 * @dev - instance to the given device
1082 * @index - index into list of extcon_dev
1083 *
1084 * return the instance of extcon device
1085 */
1086struct extcon_dev *extcon_get_edev_by_phandle(struct device *dev, int index)
1087{
1088 struct device_node *node;
1089 struct extcon_dev *edev;
1090
Chanwoo Choi7eae43a2015-06-21 23:48:36 +09001091 if (!dev)
1092 return ERR_PTR(-EINVAL);
1093
Chanwoo Choi1ad94ff2014-03-18 19:55:46 +09001094 if (!dev->of_node) {
1095 dev_err(dev, "device does not have a device node entry\n");
1096 return ERR_PTR(-EINVAL);
1097 }
1098
1099 node = of_parse_phandle(dev->of_node, "extcon", index);
1100 if (!node) {
1101 dev_err(dev, "failed to get phandle in %s node\n",
1102 dev->of_node->full_name);
1103 return ERR_PTR(-ENODEV);
1104 }
1105
Tomasz Figaf841afb12014-10-16 15:11:44 +02001106 mutex_lock(&extcon_dev_list_lock);
1107 list_for_each_entry(edev, &extcon_dev_list, entry) {
1108 if (edev->dev.parent && edev->dev.parent->of_node == node) {
1109 mutex_unlock(&extcon_dev_list_lock);
1110 return edev;
1111 }
Chanwoo Choi1ad94ff2014-03-18 19:55:46 +09001112 }
Tomasz Figaf841afb12014-10-16 15:11:44 +02001113 mutex_unlock(&extcon_dev_list_lock);
Chanwoo Choi1ad94ff2014-03-18 19:55:46 +09001114
Tomasz Figaf841afb12014-10-16 15:11:44 +02001115 return ERR_PTR(-EPROBE_DEFER);
Chanwoo Choi1ad94ff2014-03-18 19:55:46 +09001116}
1117#else
1118struct extcon_dev *extcon_get_edev_by_phandle(struct device *dev, int index)
1119{
1120 return ERR_PTR(-ENOSYS);
1121}
1122#endif /* CONFIG_OF */
1123EXPORT_SYMBOL_GPL(extcon_get_edev_by_phandle);
1124
Chanwoo Choi707d7552015-04-15 13:57:51 +09001125/**
1126 * extcon_get_edev_name() - Get the name of the extcon device.
1127 * @edev: the extcon device
1128 */
1129const char *extcon_get_edev_name(struct extcon_dev *edev)
1130{
1131 return !edev ? NULL : edev->name;
1132}
1133
MyungJoo Hamde55d872012-04-20 14:16:22 +09001134static int __init extcon_class_init(void)
1135{
1136 return create_extcon_class();
1137}
1138module_init(extcon_class_init);
1139
1140static void __exit extcon_class_exit(void)
1141{
Peter Huewe0dc77b62012-09-24 15:32:31 +09001142#if defined(CONFIG_ANDROID)
1143 class_compat_unregister(switch_class);
1144#endif
MyungJoo Hamde55d872012-04-20 14:16:22 +09001145 class_destroy(extcon_class);
1146}
1147module_exit(extcon_class_exit);
1148
Chanwoo Choi2a9de9c2015-04-24 19:16:05 +09001149MODULE_AUTHOR("Chanwoo Choi <cw00.choi@samsung.com>");
MyungJoo Hamde55d872012-04-20 14:16:22 +09001150MODULE_AUTHOR("Mike Lockwood <lockwood@android.com>");
1151MODULE_AUTHOR("Donggeun Kim <dg77.kim@samsung.com>");
1152MODULE_AUTHOR("MyungJoo Ham <myungjoo.ham@samsung.com>");
1153MODULE_DESCRIPTION("External connector (extcon) class driver");
1154MODULE_LICENSE("GPL");