2 * drivers/extcon/extcon.c - External Connector (extcon) framework.
4 * External connector (extcon) class driver
6 * Copyright (C) 2015 Samsung Electronics
7 * Author: Chanwoo Choi <cw00.choi@samsung.com>
9 * Copyright (C) 2012 Samsung Electronics
10 * Author: Donggeun Kim <dg77.kim@samsung.com>
11 * Author: MyungJoo Ham <myungjoo.ham@samsung.com>
13 * based on android/drivers/switch/switch_class.c
14 * Copyright (C) 2008 Google, Inc.
15 * Author: Mike Lockwood <lockwood@android.com>
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.
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.
27 #include <linux/module.h>
28 #include <linux/types.h>
29 #include <linux/init.h>
30 #include <linux/device.h>
32 #include <linux/err.h>
34 #include <linux/slab.h>
35 #include <linux/sysfs.h>
39 #define SUPPORTED_CABLE_MAX 32
40 #define CABLE_NAME_MAX 30
42 struct __extcon_info
{
49 .type
= EXTCON_TYPE_MISC
,
54 /* USB external connector */
56 .type
= EXTCON_TYPE_USB
,
61 .type
= EXTCON_TYPE_USB
,
62 .id
= EXTCON_USB_HOST
,
66 /* Charging external connector */
67 [EXTCON_CHG_USB_SDP
] = {
68 .type
= EXTCON_TYPE_CHG
| EXTCON_TYPE_USB
,
69 .id
= EXTCON_CHG_USB_SDP
,
72 [EXTCON_CHG_USB_DCP
] = {
73 .type
= EXTCON_TYPE_CHG
| EXTCON_TYPE_USB
,
74 .id
= EXTCON_CHG_USB_DCP
,
77 [EXTCON_CHG_USB_CDP
] = {
78 .type
= EXTCON_TYPE_CHG
| EXTCON_TYPE_USB
,
79 .id
= EXTCON_CHG_USB_CDP
,
82 [EXTCON_CHG_USB_ACA
] = {
83 .type
= EXTCON_TYPE_CHG
| EXTCON_TYPE_USB
,
84 .id
= EXTCON_CHG_USB_ACA
,
87 [EXTCON_CHG_USB_FAST
] = {
88 .type
= EXTCON_TYPE_CHG
| EXTCON_TYPE_USB
,
89 .id
= EXTCON_CHG_USB_FAST
,
90 .name
= "FAST-CHARGER",
92 [EXTCON_CHG_USB_SLOW
] = {
93 .type
= EXTCON_TYPE_CHG
| EXTCON_TYPE_USB
,
94 .id
= EXTCON_CHG_USB_SLOW
,
95 .name
= "SLOW-CHARGER",
98 .type
= EXTCON_TYPE_CHG
,
102 [EXTCON_CHG_USB_PD
] = {
103 .type
= EXTCON_TYPE_CHG
| EXTCON_TYPE_USB
,
104 .id
= EXTCON_CHG_USB_PD
,
108 /* Jack external connector */
109 [EXTCON_JACK_MICROPHONE
] = {
110 .type
= EXTCON_TYPE_JACK
,
111 .id
= EXTCON_JACK_MICROPHONE
,
112 .name
= "MICROPHONE",
114 [EXTCON_JACK_HEADPHONE
] = {
115 .type
= EXTCON_TYPE_JACK
,
116 .id
= EXTCON_JACK_HEADPHONE
,
119 [EXTCON_JACK_LINE_IN
] = {
120 .type
= EXTCON_TYPE_JACK
,
121 .id
= EXTCON_JACK_LINE_IN
,
124 [EXTCON_JACK_LINE_OUT
] = {
125 .type
= EXTCON_TYPE_JACK
,
126 .id
= EXTCON_JACK_LINE_OUT
,
129 [EXTCON_JACK_VIDEO_IN
] = {
130 .type
= EXTCON_TYPE_JACK
,
131 .id
= EXTCON_JACK_VIDEO_IN
,
134 [EXTCON_JACK_VIDEO_OUT
] = {
135 .type
= EXTCON_TYPE_JACK
,
136 .id
= EXTCON_JACK_VIDEO_OUT
,
139 [EXTCON_JACK_SPDIF_IN
] = {
140 .type
= EXTCON_TYPE_JACK
,
141 .id
= EXTCON_JACK_SPDIF_IN
,
144 [EXTCON_JACK_SPDIF_OUT
] = {
145 .type
= EXTCON_TYPE_JACK
,
146 .id
= EXTCON_JACK_SPDIF_OUT
,
150 /* Display external connector */
151 [EXTCON_DISP_HDMI
] = {
152 .type
= EXTCON_TYPE_DISP
,
153 .id
= EXTCON_DISP_HDMI
,
156 [EXTCON_DISP_MHL
] = {
157 .type
= EXTCON_TYPE_DISP
,
158 .id
= EXTCON_DISP_MHL
,
161 [EXTCON_DISP_DVI
] = {
162 .type
= EXTCON_TYPE_DISP
,
163 .id
= EXTCON_DISP_DVI
,
166 [EXTCON_DISP_VGA
] = {
167 .type
= EXTCON_TYPE_DISP
,
168 .id
= EXTCON_DISP_VGA
,
172 .type
= EXTCON_TYPE_DISP
| EXTCON_TYPE_USB
,
173 .id
= EXTCON_DISP_DP
,
176 [EXTCON_DISP_HMD
] = {
177 .type
= EXTCON_TYPE_DISP
| EXTCON_TYPE_USB
,
178 .id
= EXTCON_DISP_HMD
,
182 /* Miscellaneous external connector */
184 .type
= EXTCON_TYPE_MISC
,
189 .type
= EXTCON_TYPE_MISC
,
193 [EXTCON_MECHANICAL
] = {
194 .type
= EXTCON_TYPE_MISC
,
195 .id
= EXTCON_MECHANICAL
,
196 .name
= "MECHANICAL",
203 * struct extcon_cable - An internal data for each cable of extcon device.
204 * @edev: The extcon device
205 * @cable_index: Index of this cable in the edev
206 * @attr_g: Attribute group for the cable
207 * @attr_name: "name" sysfs entry
208 * @attr_state: "state" sysfs entry
209 * @attrs: Array pointing to attr_name and attr_state for attr_g
211 struct extcon_cable
{
212 struct extcon_dev
*edev
;
215 struct attribute_group attr_g
;
216 struct device_attribute attr_name
;
217 struct device_attribute attr_state
;
219 struct attribute
*attrs
[3]; /* to be fed to attr_g.attrs */
221 union extcon_property_value usb_propval
[EXTCON_PROP_USB_CNT
];
222 union extcon_property_value chg_propval
[EXTCON_PROP_CHG_CNT
];
223 union extcon_property_value jack_propval
[EXTCON_PROP_JACK_CNT
];
224 union extcon_property_value disp_propval
[EXTCON_PROP_DISP_CNT
];
226 unsigned long usb_bits
[BITS_TO_LONGS(EXTCON_PROP_USB_CNT
)];
227 unsigned long chg_bits
[BITS_TO_LONGS(EXTCON_PROP_CHG_CNT
)];
228 unsigned long jack_bits
[BITS_TO_LONGS(EXTCON_PROP_JACK_CNT
)];
229 unsigned long disp_bits
[BITS_TO_LONGS(EXTCON_PROP_DISP_CNT
)];
232 static struct class *extcon_class
;
233 #if defined(CONFIG_ANDROID)
234 static struct class_compat
*switch_class
;
235 #endif /* CONFIG_ANDROID */
237 static LIST_HEAD(extcon_dev_list
);
238 static DEFINE_MUTEX(extcon_dev_list_lock
);
241 * check_mutually_exclusive - Check if new_state violates mutually_exclusive
243 * @edev: the extcon device
244 * @new_state: new cable attach status for @edev
246 * Returns 0 if nothing violates. Returns the index + 1 for the first
247 * violated condition.
249 static int check_mutually_exclusive(struct extcon_dev
*edev
, u32 new_state
)
253 if (!edev
->mutually_exclusive
)
256 for (i
= 0; edev
->mutually_exclusive
[i
]; i
++) {
258 u32 correspondants
= new_state
& edev
->mutually_exclusive
[i
];
260 /* calculate the total number of bits set */
261 weight
= hweight32(correspondants
);
269 static int find_cable_index_by_id(struct extcon_dev
*edev
, const unsigned int id
)
273 /* Find the the index of extcon cable in edev->supported_cable */
274 for (i
= 0; i
< edev
->max_supported
; i
++) {
275 if (edev
->supported_cable
[i
] == id
)
282 static int get_extcon_type(unsigned int prop
)
285 case EXTCON_PROP_USB_MIN
... EXTCON_PROP_USB_MAX
:
286 return EXTCON_TYPE_USB
;
287 case EXTCON_PROP_CHG_MIN
... EXTCON_PROP_CHG_MAX
:
288 return EXTCON_TYPE_CHG
;
289 case EXTCON_PROP_JACK_MIN
... EXTCON_PROP_JACK_MAX
:
290 return EXTCON_TYPE_JACK
;
291 case EXTCON_PROP_DISP_MIN
... EXTCON_PROP_DISP_MAX
:
292 return EXTCON_TYPE_DISP
;
298 static bool is_extcon_attached(struct extcon_dev
*edev
, unsigned int index
)
300 return !!(edev
->state
& BIT(index
));
303 static bool is_extcon_changed(struct extcon_dev
*edev
, int index
,
306 int state
= !!(edev
->state
& BIT(index
));
307 return (state
!= new_state
);
310 static bool is_extcon_property_supported(unsigned int id
, unsigned int prop
)
314 /* Check whether the property is supported or not. */
315 type
= get_extcon_type(prop
);
319 /* Check whether a specific extcon id supports the property or not. */
320 return !!(extcon_info
[id
].type
& type
);
323 static int is_extcon_property_capability(struct extcon_dev
*edev
,
324 unsigned int id
, int index
,unsigned int prop
)
326 struct extcon_cable
*cable
;
329 /* Check whether the property is supported or not. */
330 type
= get_extcon_type(prop
);
334 cable
= &edev
->cables
[index
];
337 case EXTCON_TYPE_USB
:
338 ret
= test_bit(prop
- EXTCON_PROP_USB_MIN
, cable
->usb_bits
);
340 case EXTCON_TYPE_CHG
:
341 ret
= test_bit(prop
- EXTCON_PROP_CHG_MIN
, cable
->chg_bits
);
343 case EXTCON_TYPE_JACK
:
344 ret
= test_bit(prop
- EXTCON_PROP_JACK_MIN
, cable
->jack_bits
);
346 case EXTCON_TYPE_DISP
:
347 ret
= test_bit(prop
- EXTCON_PROP_DISP_MIN
, cable
->disp_bits
);
356 static void init_property(struct extcon_dev
*edev
, unsigned int id
, int index
)
358 unsigned int type
= extcon_info
[id
].type
;
359 struct extcon_cable
*cable
= &edev
->cables
[index
];
361 if (EXTCON_TYPE_USB
& type
)
362 memset(cable
->usb_propval
, 0, sizeof(cable
->usb_propval
));
363 if (EXTCON_TYPE_CHG
& type
)
364 memset(cable
->chg_propval
, 0, sizeof(cable
->chg_propval
));
365 if (EXTCON_TYPE_JACK
& type
)
366 memset(cable
->jack_propval
, 0, sizeof(cable
->jack_propval
));
367 if (EXTCON_TYPE_DISP
& type
)
368 memset(cable
->disp_propval
, 0, sizeof(cable
->disp_propval
));
371 static ssize_t
state_show(struct device
*dev
, struct device_attribute
*attr
,
375 struct extcon_dev
*edev
= dev_get_drvdata(dev
);
377 if (edev
->max_supported
== 0)
378 return sprintf(buf
, "%u\n", edev
->state
);
380 for (i
= 0; i
< edev
->max_supported
; i
++) {
381 count
+= sprintf(buf
+ count
, "%s=%d\n",
382 extcon_info
[edev
->supported_cable
[i
]].name
,
383 !!(edev
->state
& (1 << i
)));
388 static DEVICE_ATTR_RO(state
);
390 static ssize_t
name_show(struct device
*dev
, struct device_attribute
*attr
,
393 struct extcon_dev
*edev
= dev_get_drvdata(dev
);
395 return sprintf(buf
, "%s\n", edev
->name
);
397 static DEVICE_ATTR_RO(name
);
399 static ssize_t
cable_name_show(struct device
*dev
,
400 struct device_attribute
*attr
, char *buf
)
402 struct extcon_cable
*cable
= container_of(attr
, struct extcon_cable
,
404 int i
= cable
->cable_index
;
406 return sprintf(buf
, "%s\n",
407 extcon_info
[cable
->edev
->supported_cable
[i
]].name
);
410 static ssize_t
cable_state_show(struct device
*dev
,
411 struct device_attribute
*attr
, char *buf
)
413 struct extcon_cable
*cable
= container_of(attr
, struct extcon_cable
,
416 int i
= cable
->cable_index
;
418 return sprintf(buf
, "%d\n",
419 extcon_get_state(cable
->edev
, cable
->edev
->supported_cable
[i
]));
423 * extcon_sync() - Synchronize the states for both the attached/detached
424 * @edev: the extcon device that has the cable.
426 * This function send a notification to synchronize the all states of a
427 * specific external connector
429 int extcon_sync(struct extcon_dev
*edev
, unsigned int id
)
444 index
= find_cable_index_by_id(edev
, id
);
448 spin_lock_irqsave(&edev
->lock
, flags
);
450 state
= !!(edev
->state
& BIT(index
));
451 raw_notifier_call_chain(&edev
->nh
[index
], state
, edev
);
453 /* This could be in interrupt handler */
454 prop_buf
= (char *)get_zeroed_page(GFP_ATOMIC
);
456 /* Unlock early before uevent */
457 spin_unlock_irqrestore(&edev
->lock
, flags
);
459 dev_err(&edev
->dev
, "out of memory in extcon_set_state\n");
460 kobject_uevent(&edev
->dev
.kobj
, KOBJ_CHANGE
);
465 length
= name_show(&edev
->dev
, NULL
, prop_buf
);
467 if (prop_buf
[length
- 1] == '\n')
468 prop_buf
[length
- 1] = 0;
469 snprintf(name_buf
, sizeof(name_buf
), "NAME=%s", prop_buf
);
470 envp
[env_offset
++] = name_buf
;
473 length
= state_show(&edev
->dev
, NULL
, prop_buf
);
475 if (prop_buf
[length
- 1] == '\n')
476 prop_buf
[length
- 1] = 0;
477 snprintf(state_buf
, sizeof(state_buf
), "STATE=%s", prop_buf
);
478 envp
[env_offset
++] = state_buf
;
480 envp
[env_offset
] = NULL
;
482 /* Unlock early before uevent */
483 spin_unlock_irqrestore(&edev
->lock
, flags
);
484 kobject_uevent_env(&edev
->dev
.kobj
, KOBJ_CHANGE
, envp
);
485 free_page((unsigned long)prop_buf
);
489 EXPORT_SYMBOL_GPL(extcon_sync
);
492 * extcon_get_state() - Get the state of a external connector.
493 * @edev: the extcon device that has the cable.
494 * @id: the unique id of each external connector in extcon enumeration.
496 int extcon_get_state(struct extcon_dev
*edev
, const unsigned int id
)
504 index
= find_cable_index_by_id(edev
, id
);
508 spin_lock_irqsave(&edev
->lock
, flags
);
509 state
= is_extcon_attached(edev
, index
);
510 spin_unlock_irqrestore(&edev
->lock
, flags
);
514 EXPORT_SYMBOL_GPL(extcon_get_state
);
517 * extcon_set_state() - Set the state of a external connector.
518 * without a notification.
519 * @edev: the extcon device that has the cable.
520 * @id: the unique id of each external connector
521 * in extcon enumeration.
522 * @state: the new cable status. The default semantics is
523 * true: attached / false: detached.
525 * This function only set the state of a external connector without
526 * a notification. To synchronize the data of a external connector,
527 * use extcon_set_state_sync() and extcon_sync().
529 int extcon_set_state(struct extcon_dev
*edev
, unsigned int id
,
538 index
= find_cable_index_by_id(edev
, id
);
542 spin_lock_irqsave(&edev
->lock
, flags
);
544 /* Check whether the external connector's state is changed. */
545 if (!is_extcon_changed(edev
, index
, cable_state
))
548 if (check_mutually_exclusive(edev
,
549 (edev
->state
& ~BIT(index
)) | (cable_state
& BIT(index
)))) {
555 * Initialize the value of extcon property before setting
556 * the detached state for an external connector.
559 init_property(edev
, id
, index
);
561 /* Update the state for a external connector. */
563 edev
->state
|= BIT(index
);
565 edev
->state
&= ~(BIT(index
));
567 spin_unlock_irqrestore(&edev
->lock
, flags
);
571 EXPORT_SYMBOL_GPL(extcon_set_state
);
574 * extcon_set_state_sync() - Set the state of a external connector
575 * with a notification.
576 * @edev: the extcon device that has the cable.
577 * @id: the unique id of each external connector
578 * in extcon enumeration.
579 * @state: the new cable status. The default semantics is
580 * true: attached / false: detached.
582 * This function set the state of external connector and synchronize the data
583 * by usning a notification.
585 int extcon_set_state_sync(struct extcon_dev
*edev
, unsigned int id
,
591 index
= find_cable_index_by_id(edev
, id
);
595 /* Check whether the external connector's state is changed. */
596 spin_lock_irqsave(&edev
->lock
, flags
);
597 ret
= is_extcon_changed(edev
, index
, cable_state
);
598 spin_unlock_irqrestore(&edev
->lock
, flags
);
602 ret
= extcon_set_state(edev
, id
, cable_state
);
606 return extcon_sync(edev
, id
);
608 EXPORT_SYMBOL_GPL(extcon_set_state_sync
);
611 * extcon_get_property() - Get the property value of a specific cable.
612 * @edev: the extcon device that has the cable.
613 * @id: the unique id of each external connector
614 * in extcon enumeration.
615 * @prop: the property id among enum extcon_property.
616 * @prop_val: the pointer which store the value of property.
618 * When getting the property value of external connector, the external connector
619 * should be attached. If detached state, function just return 0 without
620 * property value. Also, the each property should be included in the list of
621 * supported properties according to the type of external connectors.
623 * Returns 0 if success or error number if fail
625 int extcon_get_property(struct extcon_dev
*edev
, unsigned int id
,
627 union extcon_property_value
*prop_val
)
629 struct extcon_cable
*cable
;
633 *prop_val
= (union extcon_property_value
)(0);
638 /* Check whether the property is supported or not */
639 if (!is_extcon_property_supported(id
, prop
))
642 /* Find the cable index of external connector by using id */
643 index
= find_cable_index_by_id(edev
, id
);
647 spin_lock_irqsave(&edev
->lock
, flags
);
649 /* Check whether the property is available or not. */
650 if (!is_extcon_property_capability(edev
, id
, index
, prop
)) {
651 spin_unlock_irqrestore(&edev
->lock
, flags
);
656 * Check whether the external connector is attached.
657 * If external connector is detached, the user can not
658 * get the property value.
660 if (!is_extcon_attached(edev
, index
)) {
661 spin_unlock_irqrestore(&edev
->lock
, flags
);
665 cable
= &edev
->cables
[index
];
667 /* Get the property value according to extcon type */
669 case EXTCON_PROP_USB_MIN
... EXTCON_PROP_USB_MAX
:
670 *prop_val
= cable
->usb_propval
[prop
- EXTCON_PROP_USB_MIN
];
672 case EXTCON_PROP_CHG_MIN
... EXTCON_PROP_CHG_MAX
:
673 *prop_val
= cable
->chg_propval
[prop
- EXTCON_PROP_CHG_MIN
];
675 case EXTCON_PROP_JACK_MIN
... EXTCON_PROP_JACK_MAX
:
676 *prop_val
= cable
->jack_propval
[prop
- EXTCON_PROP_JACK_MIN
];
678 case EXTCON_PROP_DISP_MIN
... EXTCON_PROP_DISP_MAX
:
679 *prop_val
= cable
->disp_propval
[prop
- EXTCON_PROP_DISP_MIN
];
686 spin_unlock_irqrestore(&edev
->lock
, flags
);
690 EXPORT_SYMBOL_GPL(extcon_get_property
);
693 * extcon_set_property() - Set the property value of a specific cable.
694 * @edev: the extcon device that has the cable.
695 * @id: the unique id of each external connector
696 * in extcon enumeration.
697 * @prop: the property id among enum extcon_property.
698 * @prop_val: the pointer including the new value of property.
700 * The each property should be included in the list of supported properties
701 * according to the type of external connectors.
703 * Returns 0 if success or error number if fail
705 int extcon_set_property(struct extcon_dev
*edev
, unsigned int id
,
707 union extcon_property_value prop_val
)
709 struct extcon_cable
*cable
;
716 /* Check whether the property is supported or not */
717 if (!is_extcon_property_supported(id
, prop
))
720 /* Find the cable index of external connector by using id */
721 index
= find_cable_index_by_id(edev
, id
);
725 spin_lock_irqsave(&edev
->lock
, flags
);
727 /* Check whether the property is available or not. */
728 if (!is_extcon_property_capability(edev
, id
, index
, prop
)) {
729 spin_unlock_irqrestore(&edev
->lock
, flags
);
733 cable
= &edev
->cables
[index
];
735 /* Set the property value according to extcon type */
737 case EXTCON_PROP_USB_MIN
... EXTCON_PROP_USB_MAX
:
738 cable
->usb_propval
[prop
- EXTCON_PROP_USB_MIN
] = prop_val
;
740 case EXTCON_PROP_CHG_MIN
... EXTCON_PROP_CHG_MAX
:
741 cable
->chg_propval
[prop
- EXTCON_PROP_CHG_MIN
] = prop_val
;
743 case EXTCON_PROP_JACK_MIN
... EXTCON_PROP_JACK_MAX
:
744 cable
->jack_propval
[prop
- EXTCON_PROP_JACK_MIN
] = prop_val
;
746 case EXTCON_PROP_DISP_MIN
... EXTCON_PROP_DISP_MAX
:
747 cable
->disp_propval
[prop
- EXTCON_PROP_DISP_MIN
] = prop_val
;
754 spin_unlock_irqrestore(&edev
->lock
, flags
);
758 EXPORT_SYMBOL_GPL(extcon_set_property
);
761 * extcon_set_property_sync() - Set the property value of a specific cable
763 * @prop_val: the pointer including the new value of property.
765 * When setting the property value of external connector, the external connector
766 * should be attached. The each property should be included in the list of
767 * supported properties according to the type of external connectors.
769 * Returns 0 if success or error number if fail
771 int extcon_set_property_sync(struct extcon_dev
*edev
, unsigned int id
,
773 union extcon_property_value prop_val
)
777 ret
= extcon_set_property(edev
, id
, prop
, prop_val
);
781 return extcon_sync(edev
, id
);
783 EXPORT_SYMBOL_GPL(extcon_set_property_sync
);
786 * extcon_get_property_capability() - Get the capability of property
787 * of an external connector.
788 * @edev: the extcon device that has the cable.
789 * @id: the unique id of each external connector
790 * in extcon enumeration.
791 * @prop: the property id among enum extcon_property.
793 * Returns 1 if the property is available or 0 if not available.
795 int extcon_get_property_capability(struct extcon_dev
*edev
, unsigned int id
,
803 /* Check whether the property is supported or not */
804 if (!is_extcon_property_supported(id
, prop
))
807 /* Find the cable index of external connector by using id */
808 index
= find_cable_index_by_id(edev
, id
);
812 return is_extcon_property_capability(edev
, id
, index
, prop
);
814 EXPORT_SYMBOL_GPL(extcon_get_property_capability
);
817 * extcon_set_property_capability() - Set the capability of a property
818 * of an external connector.
819 * @edev: the extcon device that has the cable.
820 * @id: the unique id of each external connector
821 * in extcon enumeration.
822 * @prop: the property id among enum extcon_property.
824 * This function set the capability of a property for an external connector
825 * to mark the bit in capability bitmap which mean the available state of
828 * Returns 0 if success or error number if fail
830 int extcon_set_property_capability(struct extcon_dev
*edev
, unsigned int id
,
833 struct extcon_cable
*cable
;
834 int index
, type
, ret
= 0;
839 /* Check whether the property is supported or not. */
840 if (!is_extcon_property_supported(id
, prop
))
843 /* Find the cable index of external connector by using id. */
844 index
= find_cable_index_by_id(edev
, id
);
848 type
= get_extcon_type(prop
);
852 cable
= &edev
->cables
[index
];
855 case EXTCON_TYPE_USB
:
856 __set_bit(prop
- EXTCON_PROP_USB_MIN
, cable
->usb_bits
);
858 case EXTCON_TYPE_CHG
:
859 __set_bit(prop
- EXTCON_PROP_CHG_MIN
, cable
->chg_bits
);
861 case EXTCON_TYPE_JACK
:
862 __set_bit(prop
- EXTCON_PROP_JACK_MIN
, cable
->jack_bits
);
864 case EXTCON_TYPE_DISP
:
865 __set_bit(prop
- EXTCON_PROP_DISP_MIN
, cable
->disp_bits
);
873 EXPORT_SYMBOL_GPL(extcon_set_property_capability
);
876 * extcon_get_extcon_dev() - Get the extcon device instance from the name
877 * @extcon_name: The extcon name provided with extcon_dev_register()
879 struct extcon_dev
*extcon_get_extcon_dev(const char *extcon_name
)
881 struct extcon_dev
*sd
;
884 return ERR_PTR(-EINVAL
);
886 mutex_lock(&extcon_dev_list_lock
);
887 list_for_each_entry(sd
, &extcon_dev_list
, entry
) {
888 if (!strcmp(sd
->name
, extcon_name
))
893 mutex_unlock(&extcon_dev_list_lock
);
896 EXPORT_SYMBOL_GPL(extcon_get_extcon_dev
);
899 * extcon_register_notifier() - Register a notifiee to get notified by
900 * any attach status changes from the extcon.
901 * @edev: the extcon device that has the external connecotr.
902 * @id: the unique id of each external connector in extcon enumeration.
903 * @nb: a notifier block to be registered.
905 * Note that the second parameter given to the callback of nb (val) is
906 * "old_state", not the current state. The current state can be retrieved
907 * by looking at the third pameter (edev pointer)'s state value.
909 int extcon_register_notifier(struct extcon_dev
*edev
, unsigned int id
,
910 struct notifier_block
*nb
)
913 int ret
, idx
= -EINVAL
;
918 idx
= find_cable_index_by_id(edev
, id
);
922 spin_lock_irqsave(&edev
->lock
, flags
);
923 ret
= raw_notifier_chain_register(&edev
->nh
[idx
], nb
);
924 spin_unlock_irqrestore(&edev
->lock
, flags
);
928 EXPORT_SYMBOL_GPL(extcon_register_notifier
);
931 * extcon_unregister_notifier() - Unregister a notifiee from the extcon device.
932 * @edev: the extcon device that has the external connecotr.
933 * @id: the unique id of each external connector in extcon enumeration.
934 * @nb: a notifier block to be registered.
936 int extcon_unregister_notifier(struct extcon_dev
*edev
, unsigned int id
,
937 struct notifier_block
*nb
)
945 idx
= find_cable_index_by_id(edev
, id
);
949 spin_lock_irqsave(&edev
->lock
, flags
);
950 ret
= raw_notifier_chain_unregister(&edev
->nh
[idx
], nb
);
951 spin_unlock_irqrestore(&edev
->lock
, flags
);
955 EXPORT_SYMBOL_GPL(extcon_unregister_notifier
);
957 static struct attribute
*extcon_attrs
[] = {
958 &dev_attr_state
.attr
,
962 ATTRIBUTE_GROUPS(extcon
);
964 static int create_extcon_class(void)
967 extcon_class
= class_create(THIS_MODULE
, "extcon");
968 if (IS_ERR(extcon_class
))
969 return PTR_ERR(extcon_class
);
970 extcon_class
->dev_groups
= extcon_groups
;
972 #if defined(CONFIG_ANDROID)
973 switch_class
= class_compat_register("switch");
974 if (WARN(!switch_class
, "cannot allocate"))
976 #endif /* CONFIG_ANDROID */
982 static void extcon_dev_release(struct device
*dev
)
986 static const char *muex_name
= "mutually_exclusive";
987 static void dummy_sysfs_dev_release(struct device
*dev
)
992 * extcon_dev_allocate() - Allocate the memory of extcon device.
993 * @supported_cable: Array of supported extcon ending with EXTCON_NONE.
994 * If supported_cable is NULL, cable name related APIs
997 * This function allocates the memory for extcon device without allocating
998 * memory in each extcon provider driver and initialize default setting for
1001 * Return the pointer of extcon device if success or ERR_PTR(err) if fail
1003 struct extcon_dev
*extcon_dev_allocate(const unsigned int *supported_cable
)
1005 struct extcon_dev
*edev
;
1007 if (!supported_cable
)
1008 return ERR_PTR(-EINVAL
);
1010 edev
= kzalloc(sizeof(*edev
), GFP_KERNEL
);
1012 return ERR_PTR(-ENOMEM
);
1014 edev
->max_supported
= 0;
1015 edev
->supported_cable
= supported_cable
;
1021 * extcon_dev_free() - Free the memory of extcon device.
1022 * @edev: the extcon device to free
1024 void extcon_dev_free(struct extcon_dev
*edev
)
1028 EXPORT_SYMBOL_GPL(extcon_dev_free
);
1031 * extcon_dev_register() - Register a new extcon device
1032 * @edev : the new extcon device (should be allocated before calling)
1034 * Among the members of edev struct, please set the "user initializing data"
1035 * in any case and set the "optional callbacks" if required. However, please
1036 * do not set the values of "internal data", which are initialized by
1039 int extcon_dev_register(struct extcon_dev
*edev
)
1042 static atomic_t edev_no
= ATOMIC_INIT(-1);
1044 if (!extcon_class
) {
1045 ret
= create_extcon_class();
1050 if (!edev
|| !edev
->supported_cable
)
1053 for (; edev
->supported_cable
[index
] != EXTCON_NONE
; index
++);
1055 edev
->max_supported
= index
;
1056 if (index
> SUPPORTED_CABLE_MAX
) {
1058 "exceed the maximum number of supported cables\n");
1062 edev
->dev
.class = extcon_class
;
1063 edev
->dev
.release
= extcon_dev_release
;
1065 edev
->name
= dev_name(edev
->dev
.parent
);
1066 if (IS_ERR_OR_NULL(edev
->name
)) {
1068 "extcon device name is null\n");
1071 dev_set_name(&edev
->dev
, "extcon%lu",
1072 (unsigned long)atomic_inc_return(&edev_no
));
1074 if (edev
->max_supported
) {
1077 struct extcon_cable
*cable
;
1079 edev
->cables
= kzalloc(sizeof(struct extcon_cable
) *
1080 edev
->max_supported
, GFP_KERNEL
);
1081 if (!edev
->cables
) {
1083 goto err_sysfs_alloc
;
1085 for (index
= 0; index
< edev
->max_supported
; index
++) {
1086 cable
= &edev
->cables
[index
];
1088 snprintf(buf
, 10, "cable.%d", index
);
1089 str
= kzalloc(sizeof(char) * (strlen(buf
) + 1),
1092 for (index
--; index
>= 0; index
--) {
1093 cable
= &edev
->cables
[index
];
1094 kfree(cable
->attr_g
.name
);
1098 goto err_alloc_cables
;
1103 cable
->cable_index
= index
;
1104 cable
->attrs
[0] = &cable
->attr_name
.attr
;
1105 cable
->attrs
[1] = &cable
->attr_state
.attr
;
1106 cable
->attrs
[2] = NULL
;
1107 cable
->attr_g
.name
= str
;
1108 cable
->attr_g
.attrs
= cable
->attrs
;
1110 sysfs_attr_init(&cable
->attr_name
.attr
);
1111 cable
->attr_name
.attr
.name
= "name";
1112 cable
->attr_name
.attr
.mode
= 0444;
1113 cable
->attr_name
.show
= cable_name_show
;
1115 sysfs_attr_init(&cable
->attr_state
.attr
);
1116 cable
->attr_state
.attr
.name
= "state";
1117 cable
->attr_state
.attr
.mode
= 0444;
1118 cable
->attr_state
.show
= cable_state_show
;
1122 if (edev
->max_supported
&& edev
->mutually_exclusive
) {
1126 /* Count the size of mutually_exclusive array */
1127 for (index
= 0; edev
->mutually_exclusive
[index
]; index
++)
1130 edev
->attrs_muex
= kzalloc(sizeof(struct attribute
*) *
1131 (index
+ 1), GFP_KERNEL
);
1132 if (!edev
->attrs_muex
) {
1137 edev
->d_attrs_muex
= kzalloc(sizeof(struct device_attribute
) *
1139 if (!edev
->d_attrs_muex
) {
1141 kfree(edev
->attrs_muex
);
1145 for (index
= 0; edev
->mutually_exclusive
[index
]; index
++) {
1146 sprintf(buf
, "0x%x", edev
->mutually_exclusive
[index
]);
1147 name
= kzalloc(sizeof(char) * (strlen(buf
) + 1),
1150 for (index
--; index
>= 0; index
--) {
1151 kfree(edev
->d_attrs_muex
[index
].attr
.
1154 kfree(edev
->d_attrs_muex
);
1155 kfree(edev
->attrs_muex
);
1160 sysfs_attr_init(&edev
->d_attrs_muex
[index
].attr
);
1161 edev
->d_attrs_muex
[index
].attr
.name
= name
;
1162 edev
->d_attrs_muex
[index
].attr
.mode
= 0000;
1163 edev
->attrs_muex
[index
] = &edev
->d_attrs_muex
[index
]
1166 edev
->attr_g_muex
.name
= muex_name
;
1167 edev
->attr_g_muex
.attrs
= edev
->attrs_muex
;
1171 if (edev
->max_supported
) {
1172 edev
->extcon_dev_type
.groups
=
1173 kzalloc(sizeof(struct attribute_group
*) *
1174 (edev
->max_supported
+ 2), GFP_KERNEL
);
1175 if (!edev
->extcon_dev_type
.groups
) {
1177 goto err_alloc_groups
;
1180 edev
->extcon_dev_type
.name
= dev_name(&edev
->dev
);
1181 edev
->extcon_dev_type
.release
= dummy_sysfs_dev_release
;
1183 for (index
= 0; index
< edev
->max_supported
; index
++)
1184 edev
->extcon_dev_type
.groups
[index
] =
1185 &edev
->cables
[index
].attr_g
;
1186 if (edev
->mutually_exclusive
)
1187 edev
->extcon_dev_type
.groups
[index
] =
1190 edev
->dev
.type
= &edev
->extcon_dev_type
;
1193 ret
= device_register(&edev
->dev
);
1195 put_device(&edev
->dev
);
1198 #if defined(CONFIG_ANDROID)
1200 ret
= class_compat_create_link(switch_class
, &edev
->dev
, NULL
);
1201 #endif /* CONFIG_ANDROID */
1203 spin_lock_init(&edev
->lock
);
1205 edev
->nh
= devm_kzalloc(&edev
->dev
,
1206 sizeof(*edev
->nh
) * edev
->max_supported
, GFP_KERNEL
);
1212 for (index
= 0; index
< edev
->max_supported
; index
++)
1213 RAW_INIT_NOTIFIER_HEAD(&edev
->nh
[index
]);
1215 dev_set_drvdata(&edev
->dev
, edev
);
1218 mutex_lock(&extcon_dev_list_lock
);
1219 list_add(&edev
->entry
, &extcon_dev_list
);
1220 mutex_unlock(&extcon_dev_list_lock
);
1225 if (edev
->max_supported
)
1226 kfree(edev
->extcon_dev_type
.groups
);
1228 if (edev
->max_supported
&& edev
->mutually_exclusive
) {
1229 for (index
= 0; edev
->mutually_exclusive
[index
]; index
++)
1230 kfree(edev
->d_attrs_muex
[index
].attr
.name
);
1231 kfree(edev
->d_attrs_muex
);
1232 kfree(edev
->attrs_muex
);
1235 for (index
= 0; index
< edev
->max_supported
; index
++)
1236 kfree(edev
->cables
[index
].attr_g
.name
);
1238 if (edev
->max_supported
)
1239 kfree(edev
->cables
);
1243 EXPORT_SYMBOL_GPL(extcon_dev_register
);
1246 * extcon_dev_unregister() - Unregister the extcon device.
1247 * @edev: the extcon device instance to be unregistered.
1249 * Note that this does not call kfree(edev) because edev was not allocated
1252 void extcon_dev_unregister(struct extcon_dev
*edev
)
1259 mutex_lock(&extcon_dev_list_lock
);
1260 list_del(&edev
->entry
);
1261 mutex_unlock(&extcon_dev_list_lock
);
1263 if (IS_ERR_OR_NULL(get_device(&edev
->dev
))) {
1264 dev_err(&edev
->dev
, "Failed to unregister extcon_dev (%s)\n",
1265 dev_name(&edev
->dev
));
1269 device_unregister(&edev
->dev
);
1271 if (edev
->mutually_exclusive
&& edev
->max_supported
) {
1272 for (index
= 0; edev
->mutually_exclusive
[index
];
1274 kfree(edev
->d_attrs_muex
[index
].attr
.name
);
1275 kfree(edev
->d_attrs_muex
);
1276 kfree(edev
->attrs_muex
);
1279 for (index
= 0; index
< edev
->max_supported
; index
++)
1280 kfree(edev
->cables
[index
].attr_g
.name
);
1282 if (edev
->max_supported
) {
1283 kfree(edev
->extcon_dev_type
.groups
);
1284 kfree(edev
->cables
);
1287 #if defined(CONFIG_ANDROID)
1289 class_compat_remove_link(switch_class
, &edev
->dev
, NULL
);
1291 put_device(&edev
->dev
);
1293 EXPORT_SYMBOL_GPL(extcon_dev_unregister
);
1297 * extcon_get_edev_by_phandle - Get the extcon device from devicetree
1298 * @dev - instance to the given device
1299 * @index - index into list of extcon_dev
1301 * return the instance of extcon device
1303 struct extcon_dev
*extcon_get_edev_by_phandle(struct device
*dev
, int index
)
1305 struct device_node
*node
;
1306 struct extcon_dev
*edev
;
1309 return ERR_PTR(-EINVAL
);
1311 if (!dev
->of_node
) {
1312 dev_dbg(dev
, "device does not have a device node entry\n");
1313 return ERR_PTR(-EINVAL
);
1316 node
= of_parse_phandle(dev
->of_node
, "extcon", index
);
1318 dev_dbg(dev
, "failed to get phandle in %s node\n",
1319 dev
->of_node
->full_name
);
1320 return ERR_PTR(-ENODEV
);
1323 mutex_lock(&extcon_dev_list_lock
);
1324 list_for_each_entry(edev
, &extcon_dev_list
, entry
) {
1325 if (edev
->dev
.parent
&& edev
->dev
.parent
->of_node
== node
) {
1326 mutex_unlock(&extcon_dev_list_lock
);
1331 mutex_unlock(&extcon_dev_list_lock
);
1334 return ERR_PTR(-EPROBE_DEFER
);
1337 struct extcon_dev
*extcon_get_edev_by_phandle(struct device
*dev
, int index
)
1339 return ERR_PTR(-ENOSYS
);
1341 #endif /* CONFIG_OF */
1342 EXPORT_SYMBOL_GPL(extcon_get_edev_by_phandle
);
1345 * extcon_get_edev_name() - Get the name of the extcon device.
1346 * @edev: the extcon device
1348 const char *extcon_get_edev_name(struct extcon_dev
*edev
)
1350 return !edev
? NULL
: edev
->name
;
1353 static int __init
extcon_class_init(void)
1355 return create_extcon_class();
1357 module_init(extcon_class_init
);
1359 static void __exit
extcon_class_exit(void)
1361 #if defined(CONFIG_ANDROID)
1362 class_compat_unregister(switch_class
);
1364 class_destroy(extcon_class
);
1366 module_exit(extcon_class_exit
);
1368 MODULE_AUTHOR("Chanwoo Choi <cw00.choi@samsung.com>");
1369 MODULE_AUTHOR("Mike Lockwood <lockwood@android.com>");
1370 MODULE_AUTHOR("Donggeun Kim <dg77.kim@samsung.com>");
1371 MODULE_AUTHOR("MyungJoo Ham <myungjoo.ham@samsung.com>");
1372 MODULE_DESCRIPTION("External connector (extcon) class driver");
1373 MODULE_LICENSE("GPL");