MyungJoo Ham | de55d87 | 2012-04-20 14:16:22 +0900 | [diff] [blame] | 1 | /* |
Chanwoo Choi | b9ec23c | 2015-04-24 14:48:52 +0900 | [diff] [blame] | 2 | * drivers/extcon/extcon.c - External Connector (extcon) framework. |
MyungJoo Ham | de55d87 | 2012-04-20 14:16:22 +0900 | [diff] [blame] | 3 | * |
| 4 | * External connector (extcon) class driver |
| 5 | * |
Chanwoo Choi | 2a9de9c | 2015-04-24 19:16:05 +0900 | [diff] [blame] | 6 | * Copyright (C) 2015 Samsung Electronics |
| 7 | * Author: Chanwoo Choi <cw00.choi@samsung.com> |
| 8 | * |
MyungJoo Ham | de55d87 | 2012-04-20 14:16:22 +0900 | [diff] [blame] | 9 | * 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 Choi | b9ec23c | 2015-04-24 14:48:52 +0900 | [diff] [blame] | 25 | */ |
MyungJoo Ham | de55d87 | 2012-04-20 14:16:22 +0900 | [diff] [blame] | 26 | |
| 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 Figa | f841afb | 2014-10-16 15:11:44 +0200 | [diff] [blame] | 34 | #include <linux/of.h> |
MyungJoo Ham | de55d87 | 2012-04-20 14:16:22 +0900 | [diff] [blame] | 35 | #include <linux/slab.h> |
Mark Brown | 9baf322 | 2012-08-16 20:03:21 +0100 | [diff] [blame] | 36 | #include <linux/sysfs.h> |
MyungJoo Ham | de55d87 | 2012-04-20 14:16:22 +0900 | [diff] [blame] | 37 | |
Chanwoo Choi | 2a9de9c | 2015-04-24 19:16:05 +0900 | [diff] [blame] | 38 | #define SUPPORTED_CABLE_MAX 32 |
| 39 | #define CABLE_NAME_MAX 30 |
| 40 | |
| 41 | static const char *extcon_name[] = { |
Chanwoo Choi | 11eecf9 | 2015-10-03 14:15:13 +0900 | [diff] [blame] | 42 | [EXTCON_NONE] = "NONE", |
Chanwoo Choi | 73b6ecd | 2015-06-12 11:10:06 +0900 | [diff] [blame] | 43 | |
Chanwoo Choi | 8e9bc36 | 2015-05-19 19:58:49 +0900 | [diff] [blame] | 44 | /* USB external connector */ |
Chanwoo Choi | 11eecf9 | 2015-10-03 14:15:13 +0900 | [diff] [blame] | 45 | [EXTCON_USB] = "USB", |
| 46 | [EXTCON_USB_HOST] = "USB-HOST", |
Chanwoo Choi | 8e9bc36 | 2015-05-19 19:58:49 +0900 | [diff] [blame] | 47 | |
Chanwoo Choi | 11eecf9 | 2015-10-03 14:15:13 +0900 | [diff] [blame] | 48 | /* 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 Choi | 8e9bc36 | 2015-05-19 19:58:49 +0900 | [diff] [blame] | 55 | |
Chanwoo Choi | 11eecf9 | 2015-10-03 14:15:13 +0900 | [diff] [blame] | 56 | /* 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 Choi | 8e9bc36 | 2015-05-19 19:58:49 +0900 | [diff] [blame] | 65 | |
Chanwoo Choi | 11eecf9 | 2015-10-03 14:15:13 +0900 | [diff] [blame] | 66 | /* Display external connector */ |
| 67 | [EXTCON_DISP_HDMI] = "HDMI", |
| 68 | [EXTCON_DISP_MHL] = "MHL", |
| 69 | [EXTCON_DISP_DVI] = "DVI", |
| 70 | [EXTCON_DISP_VGA] = "VGA", |
Chanwoo Choi | 8e9bc36 | 2015-05-19 19:58:49 +0900 | [diff] [blame] | 71 | |
Chanwoo Choi | 11eecf9 | 2015-10-03 14:15:13 +0900 | [diff] [blame] | 72 | /* Miscellaneous external connector */ |
| 73 | [EXTCON_DOCK] = "DOCK", |
| 74 | [EXTCON_JIG] = "JIG", |
| 75 | [EXTCON_MECHANICAL] = "MECHANICAL", |
Chanwoo Choi | 8e9bc36 | 2015-05-19 19:58:49 +0900 | [diff] [blame] | 76 | |
Chanwoo Choi | 2a9de9c | 2015-04-24 19:16:05 +0900 | [diff] [blame] | 77 | NULL, |
MyungJoo Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 78 | }; |
| 79 | |
Mark Brown | be3a07f | 2012-06-05 16:14:38 +0100 | [diff] [blame] | 80 | static struct class *extcon_class; |
MyungJoo Ham | 449a2bf | 2012-04-23 20:19:57 +0900 | [diff] [blame] | 81 | #if defined(CONFIG_ANDROID) |
MyungJoo Ham | de55d87 | 2012-04-20 14:16:22 +0900 | [diff] [blame] | 82 | static struct class_compat *switch_class; |
MyungJoo Ham | 449a2bf | 2012-04-23 20:19:57 +0900 | [diff] [blame] | 83 | #endif /* CONFIG_ANDROID */ |
MyungJoo Ham | de55d87 | 2012-04-20 14:16:22 +0900 | [diff] [blame] | 84 | |
Donggeun Kim | 74c5d09 | 2012-04-20 14:16:24 +0900 | [diff] [blame] | 85 | static LIST_HEAD(extcon_dev_list); |
| 86 | static DEFINE_MUTEX(extcon_dev_list_lock); |
| 87 | |
MyungJoo Ham | bde68e6 | 2012-04-20 14:16:26 +0900 | [diff] [blame] | 88 | /** |
| 89 | * check_mutually_exclusive - Check if new_state violates mutually_exclusive |
Chanwoo Choi | a75e1c7 | 2013-08-31 13:16:49 +0900 | [diff] [blame] | 90 | * condition. |
MyungJoo Ham | bde68e6 | 2012-04-20 14:16:26 +0900 | [diff] [blame] | 91 | * @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 | */ |
| 97 | static 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 kumar | 28c0ada | 2012-08-30 00:35:10 +0530 | [diff] [blame] | 105 | int weight; |
MyungJoo Ham | bde68e6 | 2012-04-20 14:16:26 +0900 | [diff] [blame] | 106 | u32 correspondants = new_state & edev->mutually_exclusive[i]; |
MyungJoo Ham | bde68e6 | 2012-04-20 14:16:26 +0900 | [diff] [blame] | 107 | |
anish kumar | 28c0ada | 2012-08-30 00:35:10 +0530 | [diff] [blame] | 108 | /* calculate the total number of bits set */ |
| 109 | weight = hweight32(correspondants); |
| 110 | if (weight > 1) |
| 111 | return i + 1; |
MyungJoo Ham | bde68e6 | 2012-04-20 14:16:26 +0900 | [diff] [blame] | 112 | } |
| 113 | |
| 114 | return 0; |
| 115 | } |
| 116 | |
Chanwoo Choi | 73b6ecd | 2015-06-12 11:10:06 +0900 | [diff] [blame] | 117 | static int find_cable_index_by_id(struct extcon_dev *edev, const unsigned int id) |
Chanwoo Choi | 2a9de9c | 2015-04-24 19:16:05 +0900 | [diff] [blame] | 118 | { |
| 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 Quadros | be052cc | 2015-07-07 16:06:15 +0300 | [diff] [blame] | 130 | static int find_cable_id_by_name(struct extcon_dev *edev, const char *name) |
Chanwoo Choi | 2a9de9c | 2015-04-24 19:16:05 +0900 | [diff] [blame] | 131 | { |
Dan Carpenter | a598af7 | 2015-08-04 10:47:23 +0300 | [diff] [blame] | 132 | int id = -EINVAL; |
Chanwoo Choi | 73b6ecd | 2015-06-12 11:10:06 +0900 | [diff] [blame] | 133 | int i = 0; |
Chanwoo Choi | 2a9de9c | 2015-04-24 19:16:05 +0900 | [diff] [blame] | 134 | |
Roger Quadros | be052cc | 2015-07-07 16:06:15 +0300 | [diff] [blame] | 135 | /* Find the id of extcon cable */ |
Chanwoo Choi | 73b6ecd | 2015-06-12 11:10:06 +0900 | [diff] [blame] | 136 | while (extcon_name[i]) { |
Chanwoo Choi | 2a9de9c | 2015-04-24 19:16:05 +0900 | [diff] [blame] | 137 | if (!strncmp(extcon_name[i], name, CABLE_NAME_MAX)) { |
| 138 | id = i; |
| 139 | break; |
| 140 | } |
Roger Quadros | be052cc | 2015-07-07 16:06:15 +0300 | [diff] [blame] | 141 | i++; |
Chanwoo Choi | 2a9de9c | 2015-04-24 19:16:05 +0900 | [diff] [blame] | 142 | } |
| 143 | |
Roger Quadros | be052cc | 2015-07-07 16:06:15 +0300 | [diff] [blame] | 144 | return id; |
| 145 | } |
| 146 | |
| 147 | static int find_cable_index_by_name(struct extcon_dev *edev, const char *name) |
| 148 | { |
Dan Carpenter | a598af7 | 2015-08-04 10:47:23 +0300 | [diff] [blame] | 149 | int id; |
Roger Quadros | be052cc | 2015-07-07 16:06:15 +0300 | [diff] [blame] | 150 | |
| 151 | if (edev->max_supported == 0) |
Chanwoo Choi | 2a9de9c | 2015-04-24 19:16:05 +0900 | [diff] [blame] | 152 | return -EINVAL; |
| 153 | |
Roger Quadros | be052cc | 2015-07-07 16:06:15 +0300 | [diff] [blame] | 154 | /* 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 Choi | 2a9de9c | 2015-04-24 19:16:05 +0900 | [diff] [blame] | 159 | return find_cable_index_by_id(edev, id); |
| 160 | } |
| 161 | |
Chanwoo Choi | 046050f | 2015-05-19 20:01:12 +0900 | [diff] [blame] | 162 | static bool is_extcon_changed(u32 prev, u32 new, int idx, bool *attached) |
| 163 | { |
| 164 | if (((prev >> idx) & 0x1) != ((new >> idx) & 0x1)) { |
Hans de Goede | f4513b0 | 2015-08-24 00:35:36 +0200 | [diff] [blame] | 165 | *attached = ((new >> idx) & 0x1) ? true : false; |
Chanwoo Choi | 046050f | 2015-05-19 20:01:12 +0900 | [diff] [blame] | 166 | return true; |
| 167 | } |
| 168 | |
| 169 | return false; |
| 170 | } |
| 171 | |
MyungJoo Ham | de55d87 | 2012-04-20 14:16:22 +0900 | [diff] [blame] | 172 | static ssize_t state_show(struct device *dev, struct device_attribute *attr, |
| 173 | char *buf) |
| 174 | { |
MyungJoo Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 175 | int i, count = 0; |
Jingoo Han | cb8bb3a | 2013-09-09 14:33:32 +0900 | [diff] [blame] | 176 | struct extcon_dev *edev = dev_get_drvdata(dev); |
MyungJoo Ham | de55d87 | 2012-04-20 14:16:22 +0900 | [diff] [blame] | 177 | |
MyungJoo Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 178 | if (edev->max_supported == 0) |
| 179 | return sprintf(buf, "%u\n", edev->state); |
| 180 | |
Chanwoo Choi | 2a9de9c | 2015-04-24 19:16:05 +0900 | [diff] [blame] | 181 | for (i = 0; i < edev->max_supported; i++) { |
MyungJoo Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 182 | count += sprintf(buf + count, "%s=%d\n", |
Chanwoo Choi | 2a9de9c | 2015-04-24 19:16:05 +0900 | [diff] [blame] | 183 | extcon_name[edev->supported_cable[i]], |
MyungJoo Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 184 | !!(edev->state & (1 << i))); |
| 185 | } |
| 186 | |
| 187 | return count; |
| 188 | } |
| 189 | |
MyungJoo Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 190 | static 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 Han | cb8bb3a | 2013-09-09 14:33:32 +0900 | [diff] [blame] | 195 | struct extcon_dev *edev = dev_get_drvdata(dev); |
MyungJoo Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 196 | |
| 197 | ret = sscanf(buf, "0x%x", &state); |
| 198 | if (ret == 0) |
| 199 | ret = -EINVAL; |
| 200 | else |
MyungJoo Ham | bde68e6 | 2012-04-20 14:16:26 +0900 | [diff] [blame] | 201 | ret = extcon_set_state(edev, state); |
MyungJoo Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 202 | |
| 203 | if (ret < 0) |
| 204 | return ret; |
| 205 | |
| 206 | return count; |
MyungJoo Ham | de55d87 | 2012-04-20 14:16:22 +0900 | [diff] [blame] | 207 | } |
Greg Kroah-Hartman | af01da0 | 2013-07-24 15:05:10 -0700 | [diff] [blame] | 208 | static DEVICE_ATTR_RW(state); |
MyungJoo Ham | de55d87 | 2012-04-20 14:16:22 +0900 | [diff] [blame] | 209 | |
| 210 | static ssize_t name_show(struct device *dev, struct device_attribute *attr, |
| 211 | char *buf) |
| 212 | { |
Jingoo Han | cb8bb3a | 2013-09-09 14:33:32 +0900 | [diff] [blame] | 213 | struct extcon_dev *edev = dev_get_drvdata(dev); |
MyungJoo Ham | de55d87 | 2012-04-20 14:16:22 +0900 | [diff] [blame] | 214 | |
Chanwoo Choi | 71c3ffa | 2015-04-15 15:02:01 +0900 | [diff] [blame] | 215 | return sprintf(buf, "%s\n", edev->name); |
MyungJoo Ham | de55d87 | 2012-04-20 14:16:22 +0900 | [diff] [blame] | 216 | } |
Greg Kroah-Hartman | af01da0 | 2013-07-24 15:05:10 -0700 | [diff] [blame] | 217 | static DEVICE_ATTR_RO(name); |
MyungJoo Ham | de55d87 | 2012-04-20 14:16:22 +0900 | [diff] [blame] | 218 | |
MyungJoo Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 219 | static 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 Choi | 2a9de9c | 2015-04-24 19:16:05 +0900 | [diff] [blame] | 224 | int i = cable->cable_index; |
MyungJoo Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 225 | |
| 226 | return sprintf(buf, "%s\n", |
Chanwoo Choi | 2a9de9c | 2015-04-24 19:16:05 +0900 | [diff] [blame] | 227 | extcon_name[cable->edev->supported_cable[i]]); |
MyungJoo Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 228 | } |
| 229 | |
| 230 | static 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 Quadros | be052cc | 2015-07-07 16:06:15 +0300 | [diff] [blame] | 236 | int i = cable->cable_index; |
| 237 | |
MyungJoo Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 238 | return sprintf(buf, "%d\n", |
| 239 | extcon_get_cable_state_(cable->edev, |
Roger Quadros | be052cc | 2015-07-07 16:06:15 +0300 | [diff] [blame] | 240 | cable->edev->supported_cable[i])); |
MyungJoo Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 241 | } |
| 242 | |
MyungJoo Ham | de55d87 | 2012-04-20 14:16:22 +0900 | [diff] [blame] | 243 | /** |
MyungJoo Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 244 | * extcon_update_state() - Update the cable attach states of the extcon device |
Chanwoo Choi | a75e1c7 | 2013-08-31 13:16:49 +0900 | [diff] [blame] | 245 | * only for the masked bits. |
MyungJoo Ham | de55d87 | 2012-04-20 14:16:22 +0900 | [diff] [blame] | 246 | * @edev: the extcon device |
MyungJoo Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 247 | * @mask: the bit mask to designate updated bits. |
MyungJoo Ham | de55d87 | 2012-04-20 14:16:22 +0900 | [diff] [blame] | 248 | * @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 Kim | 74c5d09 | 2012-04-20 14:16:24 +0900 | [diff] [blame] | 254 | * |
MyungJoo Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 255 | * Note that the notifier provides which bits are changed in the state |
| 256 | * variable with the val parameter (second) to the callback. |
MyungJoo Ham | de55d87 | 2012-04-20 14:16:22 +0900 | [diff] [blame] | 257 | */ |
MyungJoo Ham | bde68e6 | 2012-04-20 14:16:26 +0900 | [diff] [blame] | 258 | int extcon_update_state(struct extcon_dev *edev, u32 mask, u32 state) |
MyungJoo Ham | de55d87 | 2012-04-20 14:16:22 +0900 | [diff] [blame] | 259 | { |
| 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 Choi | 046050f | 2015-05-19 20:01:12 +0900 | [diff] [blame] | 266 | int index; |
MyungJoo Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 267 | unsigned long flags; |
Chanwoo Choi | 046050f | 2015-05-19 20:01:12 +0900 | [diff] [blame] | 268 | bool attached; |
MyungJoo Ham | de55d87 | 2012-04-20 14:16:22 +0900 | [diff] [blame] | 269 | |
Chanwoo Choi | 7eae43a | 2015-06-21 23:48:36 +0900 | [diff] [blame] | 270 | if (!edev) |
| 271 | return -EINVAL; |
| 272 | |
MyungJoo Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 273 | spin_lock_irqsave(&edev->lock, flags); |
MyungJoo Ham | de55d87 | 2012-04-20 14:16:22 +0900 | [diff] [blame] | 274 | |
MyungJoo Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 275 | if (edev->state != ((edev->state & ~mask) | (state & mask))) { |
Roger Quadros | f7a8981 | 2015-07-06 17:46:58 +0300 | [diff] [blame] | 276 | u32 old_state; |
| 277 | |
MyungJoo Ham | bde68e6 | 2012-04-20 14:16:26 +0900 | [diff] [blame] | 278 | if (check_mutually_exclusive(edev, (edev->state & ~mask) | |
| 279 | (state & mask))) { |
| 280 | spin_unlock_irqrestore(&edev->lock, flags); |
| 281 | return -EPERM; |
| 282 | } |
| 283 | |
Roger Quadros | f7a8981 | 2015-07-06 17:46:58 +0300 | [diff] [blame] | 284 | old_state = edev->state; |
MyungJoo Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 285 | edev->state &= ~mask; |
| 286 | edev->state |= state & mask; |
| 287 | |
Roger Quadros | f7a8981 | 2015-07-06 17:46:58 +0300 | [diff] [blame] | 288 | 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 Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 295 | /* This could be in interrupt handler */ |
| 296 | prop_buf = (char *)get_zeroed_page(GFP_ATOMIC); |
MyungJoo Ham | de55d87 | 2012-04-20 14:16:22 +0900 | [diff] [blame] | 297 | if (prop_buf) { |
Chanwoo Choi | dae6165 | 2013-09-27 09:19:40 +0900 | [diff] [blame] | 298 | length = name_show(&edev->dev, NULL, prop_buf); |
MyungJoo Ham | de55d87 | 2012-04-20 14:16:22 +0900 | [diff] [blame] | 299 | 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 Choi | dae6165 | 2013-09-27 09:19:40 +0900 | [diff] [blame] | 306 | length = state_show(&edev->dev, NULL, prop_buf); |
MyungJoo Ham | de55d87 | 2012-04-20 14:16:22 +0900 | [diff] [blame] | 307 | 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 Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 315 | /* Unlock early before uevent */ |
| 316 | spin_unlock_irqrestore(&edev->lock, flags); |
| 317 | |
Chanwoo Choi | dae6165 | 2013-09-27 09:19:40 +0900 | [diff] [blame] | 318 | kobject_uevent_env(&edev->dev.kobj, KOBJ_CHANGE, envp); |
MyungJoo Ham | de55d87 | 2012-04-20 14:16:22 +0900 | [diff] [blame] | 319 | free_page((unsigned long)prop_buf); |
| 320 | } else { |
MyungJoo Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 321 | /* Unlock early before uevent */ |
| 322 | spin_unlock_irqrestore(&edev->lock, flags); |
| 323 | |
Chanwoo Choi | dae6165 | 2013-09-27 09:19:40 +0900 | [diff] [blame] | 324 | dev_err(&edev->dev, "out of memory in extcon_set_state\n"); |
| 325 | kobject_uevent(&edev->dev.kobj, KOBJ_CHANGE); |
MyungJoo Ham | de55d87 | 2012-04-20 14:16:22 +0900 | [diff] [blame] | 326 | } |
MyungJoo Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 327 | } else { |
| 328 | /* No changes */ |
| 329 | spin_unlock_irqrestore(&edev->lock, flags); |
MyungJoo Ham | de55d87 | 2012-04-20 14:16:22 +0900 | [diff] [blame] | 330 | } |
MyungJoo Ham | bde68e6 | 2012-04-20 14:16:26 +0900 | [diff] [blame] | 331 | |
| 332 | return 0; |
MyungJoo Ham | de55d87 | 2012-04-20 14:16:22 +0900 | [diff] [blame] | 333 | } |
MyungJoo Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 334 | EXPORT_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 Ham | bde68e6 | 2012-04-20 14:16:26 +0900 | [diff] [blame] | 344 | int extcon_set_state(struct extcon_dev *edev, u32 state) |
MyungJoo Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 345 | { |
Chanwoo Choi | 7eae43a | 2015-06-21 23:48:36 +0900 | [diff] [blame] | 346 | if (!edev) |
| 347 | return -EINVAL; |
| 348 | |
MyungJoo Ham | bde68e6 | 2012-04-20 14:16:26 +0900 | [diff] [blame] | 349 | return extcon_update_state(edev, 0xffffffff, state); |
MyungJoo Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 350 | } |
MyungJoo Ham | de55d87 | 2012-04-20 14:16:22 +0900 | [diff] [blame] | 351 | EXPORT_SYMBOL_GPL(extcon_set_state); |
| 352 | |
Donggeun Kim | 74c5d09 | 2012-04-20 14:16:24 +0900 | [diff] [blame] | 353 | /** |
MyungJoo Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 354 | * extcon_get_cable_state_() - Get the status of a specific cable. |
| 355 | * @edev: the extcon device that has the cable. |
Chanwoo Choi | 2a9de9c | 2015-04-24 19:16:05 +0900 | [diff] [blame] | 356 | * @id: the unique id of each external connector in extcon enumeration. |
MyungJoo Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 357 | */ |
Chanwoo Choi | 73b6ecd | 2015-06-12 11:10:06 +0900 | [diff] [blame] | 358 | int extcon_get_cable_state_(struct extcon_dev *edev, const unsigned int id) |
MyungJoo Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 359 | { |
Chanwoo Choi | 2a9de9c | 2015-04-24 19:16:05 +0900 | [diff] [blame] | 360 | int index; |
| 361 | |
Chanwoo Choi | 7eae43a | 2015-06-21 23:48:36 +0900 | [diff] [blame] | 362 | if (!edev) |
| 363 | return -EINVAL; |
| 364 | |
Chanwoo Choi | 2a9de9c | 2015-04-24 19:16:05 +0900 | [diff] [blame] | 365 | 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 Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 370 | return -EINVAL; |
| 371 | |
| 372 | return !!(edev->state & (1 << index)); |
| 373 | } |
| 374 | EXPORT_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 | */ |
| 383 | int extcon_get_cable_state(struct extcon_dev *edev, const char *cable_name) |
| 384 | { |
Dan Carpenter | a598af7 | 2015-08-04 10:47:23 +0300 | [diff] [blame] | 385 | int id; |
Roger Quadros | be052cc | 2015-07-07 16:06:15 +0300 | [diff] [blame] | 386 | |
| 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 Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 392 | } |
| 393 | EXPORT_SYMBOL_GPL(extcon_get_cable_state); |
| 394 | |
| 395 | /** |
Axel Lin | 909f9ec | 2012-10-04 09:53:45 +0900 | [diff] [blame] | 396 | * extcon_set_cable_state_() - Set the status of a specific cable. |
Chanwoo Choi | a75e1c7 | 2013-08-31 13:16:49 +0900 | [diff] [blame] | 397 | * @edev: the extcon device that has the cable. |
Chanwoo Choi | 2a9de9c | 2015-04-24 19:16:05 +0900 | [diff] [blame] | 398 | * @id: the unique id of each external connector |
| 399 | * in extcon enumeration. |
| 400 | * @state: the new cable status. The default semantics is |
MyungJoo Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 401 | * true: attached / false: detached. |
| 402 | */ |
Chanwoo Choi | 73b6ecd | 2015-06-12 11:10:06 +0900 | [diff] [blame] | 403 | int extcon_set_cable_state_(struct extcon_dev *edev, unsigned int id, |
Chanwoo Choi | 2a9de9c | 2015-04-24 19:16:05 +0900 | [diff] [blame] | 404 | bool cable_state) |
MyungJoo Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 405 | { |
| 406 | u32 state; |
Chanwoo Choi | 2a9de9c | 2015-04-24 19:16:05 +0900 | [diff] [blame] | 407 | int index; |
MyungJoo Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 408 | |
Chanwoo Choi | 7eae43a | 2015-06-21 23:48:36 +0900 | [diff] [blame] | 409 | if (!edev) |
| 410 | return -EINVAL; |
| 411 | |
Chanwoo Choi | 2a9de9c | 2015-04-24 19:16:05 +0900 | [diff] [blame] | 412 | 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 Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 417 | return -EINVAL; |
| 418 | |
| 419 | state = cable_state ? (1 << index) : 0; |
MyungJoo Ham | bde68e6 | 2012-04-20 14:16:26 +0900 | [diff] [blame] | 420 | return extcon_update_state(edev, 1 << index, state); |
MyungJoo Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 421 | } |
| 422 | EXPORT_SYMBOL_GPL(extcon_set_cable_state_); |
| 423 | |
| 424 | /** |
Axel Lin | 909f9ec | 2012-10-04 09:53:45 +0900 | [diff] [blame] | 425 | * extcon_set_cable_state() - Set the status of a specific cable. |
Chanwoo Choi | a75e1c7 | 2013-08-31 13:16:49 +0900 | [diff] [blame] | 426 | * @edev: the extcon device that has the cable. |
| 427 | * @cable_name: cable name. |
MyungJoo Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 428 | * @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 | */ |
| 433 | int extcon_set_cable_state(struct extcon_dev *edev, |
| 434 | const char *cable_name, bool cable_state) |
| 435 | { |
Dan Carpenter | a598af7 | 2015-08-04 10:47:23 +0300 | [diff] [blame] | 436 | int id; |
Roger Quadros | be052cc | 2015-07-07 16:06:15 +0300 | [diff] [blame] | 437 | |
| 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 Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 443 | } |
| 444 | EXPORT_SYMBOL_GPL(extcon_set_cable_state); |
| 445 | |
| 446 | /** |
Donggeun Kim | 74c5d09 | 2012-04-20 14:16:24 +0900 | [diff] [blame] | 447 | * extcon_get_extcon_dev() - Get the extcon device instance from the name |
| 448 | * @extcon_name: The extcon name provided with extcon_dev_register() |
| 449 | */ |
| 450 | struct extcon_dev *extcon_get_extcon_dev(const char *extcon_name) |
| 451 | { |
| 452 | struct extcon_dev *sd; |
| 453 | |
Chanwoo Choi | 7eae43a | 2015-06-21 23:48:36 +0900 | [diff] [blame] | 454 | if (!extcon_name) |
| 455 | return ERR_PTR(-EINVAL); |
| 456 | |
Donggeun Kim | 74c5d09 | 2012-04-20 14:16:24 +0900 | [diff] [blame] | 457 | 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; |
| 463 | out: |
| 464 | mutex_unlock(&extcon_dev_list_lock); |
| 465 | return sd; |
| 466 | } |
| 467 | EXPORT_SYMBOL_GPL(extcon_get_extcon_dev); |
| 468 | |
MyungJoo Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 469 | /** |
| 470 | * extcon_register_interest() - Register a notifier for a state change of a |
Chanwoo Choi | a75e1c7 | 2013-08-31 13:16:49 +0900 | [diff] [blame] | 471 | * 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 Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 474 | * @extcon_name: the name of extcon device. |
Jenny TC | 4f2de3b | 2012-10-18 21:00:32 +0900 | [diff] [blame] | 475 | * if NULL, extcon_register_interest will register |
| 476 | * every cable with the target cable_name given. |
MyungJoo Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 477 | * @cable_name: the target cable name. |
Chanwoo Choi | a75e1c7 | 2013-08-31 13:16:49 +0900 | [diff] [blame] | 478 | * @nb: the notifier block to get notified. |
MyungJoo Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 479 | * |
| 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 | */ |
| 492 | int 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 Goede | 66bee35 | 2015-03-21 17:26:24 +0100 | [diff] [blame] | 496 | unsigned long flags; |
| 497 | int ret; |
| 498 | |
Jenny TC | 4f2de3b | 2012-10-18 21:00:32 +0900 | [diff] [blame] | 499 | if (!obj || !cable_name || !nb) |
MyungJoo Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 500 | return -EINVAL; |
| 501 | |
Jenny TC | 4f2de3b | 2012-10-18 21:00:32 +0900 | [diff] [blame] | 502 | if (extcon_name) { |
| 503 | obj->edev = extcon_get_extcon_dev(extcon_name); |
| 504 | if (!obj->edev) |
| 505 | return -ENODEV; |
| 506 | |
Chanwoo Choi | 2a9de9c | 2015-04-24 19:16:05 +0900 | [diff] [blame] | 507 | obj->cable_index = find_cable_index_by_name(obj->edev, |
| 508 | cable_name); |
Jenny TC | 4f2de3b | 2012-10-18 21:00:32 +0900 | [diff] [blame] | 509 | if (obj->cable_index < 0) |
Sachin Kamat | c0c078c | 2012-11-20 16:30:31 +0900 | [diff] [blame] | 510 | return obj->cable_index; |
Jenny TC | 4f2de3b | 2012-10-18 21:00:32 +0900 | [diff] [blame] | 511 | |
| 512 | obj->user_nb = nb; |
| 513 | |
Hans de Goede | 66bee35 | 2015-03-21 17:26:24 +0100 | [diff] [blame] | 514 | spin_lock_irqsave(&obj->edev->lock, flags); |
Chanwoo Choi | 046050f | 2015-05-19 20:01:12 +0900 | [diff] [blame] | 515 | ret = raw_notifier_chain_register( |
| 516 | &obj->edev->nh[obj->cable_index], |
| 517 | obj->user_nb); |
Hans de Goede | 66bee35 | 2015-03-21 17:26:24 +0100 | [diff] [blame] | 518 | spin_unlock_irqrestore(&obj->edev->lock, flags); |
Jenny TC | 4f2de3b | 2012-10-18 21:00:32 +0900 | [diff] [blame] | 519 | } 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 Han | cb8bb3a | 2013-09-09 14:33:32 +0900 | [diff] [blame] | 528 | extd = dev_get_drvdata(dev); |
Jenny TC | 4f2de3b | 2012-10-18 21:00:32 +0900 | [diff] [blame] | 529 | |
Chanwoo Choi | 2a9de9c | 2015-04-24 19:16:05 +0900 | [diff] [blame] | 530 | if (find_cable_index_by_name(extd, cable_name) < 0) |
Jenny TC | 4f2de3b | 2012-10-18 21:00:32 +0900 | [diff] [blame] | 531 | continue; |
| 532 | |
| 533 | class_dev_iter_exit(&iter); |
| 534 | return extcon_register_interest(obj, extd->name, |
| 535 | cable_name, nb); |
| 536 | } |
| 537 | |
Chanwoo Choi | b9ec23c | 2015-04-24 14:48:52 +0900 | [diff] [blame] | 538 | ret = -ENODEV; |
Jenny TC | 4f2de3b | 2012-10-18 21:00:32 +0900 | [diff] [blame] | 539 | } |
Chanwoo Choi | b9ec23c | 2015-04-24 14:48:52 +0900 | [diff] [blame] | 540 | |
| 541 | return ret; |
MyungJoo Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 542 | } |
Kishon Vijay Abraham I | 9c8a013 | 2013-06-04 01:13:38 +0900 | [diff] [blame] | 543 | EXPORT_SYMBOL_GPL(extcon_register_interest); |
MyungJoo Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 544 | |
| 545 | /** |
| 546 | * extcon_unregister_interest() - Unregister the notifier registered by |
Chanwoo Choi | a75e1c7 | 2013-08-31 13:16:49 +0900 | [diff] [blame] | 547 | * extcon_register_interest(). |
MyungJoo Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 548 | * @obj: the extcon_specific_cable_nb object returned by |
| 549 | * extcon_register_interest(). |
| 550 | */ |
| 551 | int extcon_unregister_interest(struct extcon_specific_cable_nb *obj) |
| 552 | { |
Hans de Goede | 66bee35 | 2015-03-21 17:26:24 +0100 | [diff] [blame] | 553 | unsigned long flags; |
| 554 | int ret; |
| 555 | |
MyungJoo Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 556 | if (!obj) |
| 557 | return -EINVAL; |
| 558 | |
Hans de Goede | 66bee35 | 2015-03-21 17:26:24 +0100 | [diff] [blame] | 559 | spin_lock_irqsave(&obj->edev->lock, flags); |
Chanwoo Choi | 046050f | 2015-05-19 20:01:12 +0900 | [diff] [blame] | 560 | ret = raw_notifier_chain_unregister( |
| 561 | &obj->edev->nh[obj->cable_index], obj->user_nb); |
Hans de Goede | 66bee35 | 2015-03-21 17:26:24 +0100 | [diff] [blame] | 562 | spin_unlock_irqrestore(&obj->edev->lock, flags); |
| 563 | |
| 564 | return ret; |
MyungJoo Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 565 | } |
Kishon Vijay Abraham I | 9c8a013 | 2013-06-04 01:13:38 +0900 | [diff] [blame] | 566 | EXPORT_SYMBOL_GPL(extcon_unregister_interest); |
MyungJoo Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 567 | |
Donggeun Kim | 74c5d09 | 2012-04-20 14:16:24 +0900 | [diff] [blame] | 568 | /** |
Peter Meerwald | c338bb0 | 2012-08-23 09:11:54 +0900 | [diff] [blame] | 569 | * extcon_register_notifier() - Register a notifiee to get notified by |
Chanwoo Choi | a75e1c7 | 2013-08-31 13:16:49 +0900 | [diff] [blame] | 570 | * any attach status changes from the extcon. |
Chanwoo Choi | 046050f | 2015-05-19 20:01:12 +0900 | [diff] [blame] | 571 | * @edev: the extcon device that has the external connecotr. |
| 572 | * @id: the unique id of each external connector in extcon enumeration. |
Donggeun Kim | 74c5d09 | 2012-04-20 14:16:24 +0900 | [diff] [blame] | 573 | * @nb: a notifier block to be registered. |
MyungJoo Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 574 | * |
| 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 Kim | 74c5d09 | 2012-04-20 14:16:24 +0900 | [diff] [blame] | 578 | */ |
Chanwoo Choi | 73b6ecd | 2015-06-12 11:10:06 +0900 | [diff] [blame] | 579 | int extcon_register_notifier(struct extcon_dev *edev, unsigned int id, |
Chanwoo Choi | 046050f | 2015-05-19 20:01:12 +0900 | [diff] [blame] | 580 | struct notifier_block *nb) |
Donggeun Kim | 74c5d09 | 2012-04-20 14:16:24 +0900 | [diff] [blame] | 581 | { |
Hans de Goede | 66bee35 | 2015-03-21 17:26:24 +0100 | [diff] [blame] | 582 | unsigned long flags; |
Chanwoo Choi | 046050f | 2015-05-19 20:01:12 +0900 | [diff] [blame] | 583 | int ret, idx; |
| 584 | |
Chanwoo Choi | 7eae43a | 2015-06-21 23:48:36 +0900 | [diff] [blame] | 585 | if (!edev || !nb) |
| 586 | return -EINVAL; |
| 587 | |
Chanwoo Choi | 046050f | 2015-05-19 20:01:12 +0900 | [diff] [blame] | 588 | idx = find_cable_index_by_id(edev, id); |
Hans de Goede | 66bee35 | 2015-03-21 17:26:24 +0100 | [diff] [blame] | 589 | |
| 590 | spin_lock_irqsave(&edev->lock, flags); |
Chanwoo Choi | 046050f | 2015-05-19 20:01:12 +0900 | [diff] [blame] | 591 | ret = raw_notifier_chain_register(&edev->nh[idx], nb); |
Hans de Goede | 66bee35 | 2015-03-21 17:26:24 +0100 | [diff] [blame] | 592 | spin_unlock_irqrestore(&edev->lock, flags); |
| 593 | |
| 594 | return ret; |
Donggeun Kim | 74c5d09 | 2012-04-20 14:16:24 +0900 | [diff] [blame] | 595 | } |
| 596 | EXPORT_SYMBOL_GPL(extcon_register_notifier); |
| 597 | |
| 598 | /** |
Peter Meerwald | c338bb0 | 2012-08-23 09:11:54 +0900 | [diff] [blame] | 599 | * extcon_unregister_notifier() - Unregister a notifiee from the extcon device. |
Chanwoo Choi | 046050f | 2015-05-19 20:01:12 +0900 | [diff] [blame] | 600 | * @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 Kim | 74c5d09 | 2012-04-20 14:16:24 +0900 | [diff] [blame] | 603 | */ |
Chanwoo Choi | 73b6ecd | 2015-06-12 11:10:06 +0900 | [diff] [blame] | 604 | int extcon_unregister_notifier(struct extcon_dev *edev, unsigned int id, |
Chanwoo Choi | 046050f | 2015-05-19 20:01:12 +0900 | [diff] [blame] | 605 | struct notifier_block *nb) |
Donggeun Kim | 74c5d09 | 2012-04-20 14:16:24 +0900 | [diff] [blame] | 606 | { |
Hans de Goede | 66bee35 | 2015-03-21 17:26:24 +0100 | [diff] [blame] | 607 | unsigned long flags; |
Chanwoo Choi | 046050f | 2015-05-19 20:01:12 +0900 | [diff] [blame] | 608 | int ret, idx; |
| 609 | |
Chanwoo Choi | 7eae43a | 2015-06-21 23:48:36 +0900 | [diff] [blame] | 610 | if (!edev || !nb) |
| 611 | return -EINVAL; |
| 612 | |
Chanwoo Choi | 046050f | 2015-05-19 20:01:12 +0900 | [diff] [blame] | 613 | idx = find_cable_index_by_id(edev, id); |
Hans de Goede | 66bee35 | 2015-03-21 17:26:24 +0100 | [diff] [blame] | 614 | |
| 615 | spin_lock_irqsave(&edev->lock, flags); |
Chanwoo Choi | 046050f | 2015-05-19 20:01:12 +0900 | [diff] [blame] | 616 | ret = raw_notifier_chain_unregister(&edev->nh[idx], nb); |
Hans de Goede | 66bee35 | 2015-03-21 17:26:24 +0100 | [diff] [blame] | 617 | spin_unlock_irqrestore(&edev->lock, flags); |
| 618 | |
| 619 | return ret; |
Donggeun Kim | 74c5d09 | 2012-04-20 14:16:24 +0900 | [diff] [blame] | 620 | } |
| 621 | EXPORT_SYMBOL_GPL(extcon_unregister_notifier); |
| 622 | |
Greg Kroah-Hartman | af01da0 | 2013-07-24 15:05:10 -0700 | [diff] [blame] | 623 | static struct attribute *extcon_attrs[] = { |
| 624 | &dev_attr_state.attr, |
| 625 | &dev_attr_name.attr, |
| 626 | NULL, |
MyungJoo Ham | de55d87 | 2012-04-20 14:16:22 +0900 | [diff] [blame] | 627 | }; |
Greg Kroah-Hartman | af01da0 | 2013-07-24 15:05:10 -0700 | [diff] [blame] | 628 | ATTRIBUTE_GROUPS(extcon); |
MyungJoo Ham | de55d87 | 2012-04-20 14:16:22 +0900 | [diff] [blame] | 629 | |
| 630 | static 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-Hartman | af01da0 | 2013-07-24 15:05:10 -0700 | [diff] [blame] | 636 | extcon_class->dev_groups = extcon_groups; |
MyungJoo Ham | de55d87 | 2012-04-20 14:16:22 +0900 | [diff] [blame] | 637 | |
MyungJoo Ham | 449a2bf | 2012-04-23 20:19:57 +0900 | [diff] [blame] | 638 | #if defined(CONFIG_ANDROID) |
MyungJoo Ham | de55d87 | 2012-04-20 14:16:22 +0900 | [diff] [blame] | 639 | switch_class = class_compat_register("switch"); |
| 640 | if (WARN(!switch_class, "cannot allocate")) |
| 641 | return -ENOMEM; |
MyungJoo Ham | 449a2bf | 2012-04-23 20:19:57 +0900 | [diff] [blame] | 642 | #endif /* CONFIG_ANDROID */ |
MyungJoo Ham | de55d87 | 2012-04-20 14:16:22 +0900 | [diff] [blame] | 643 | } |
| 644 | |
| 645 | return 0; |
| 646 | } |
| 647 | |
MyungJoo Ham | de55d87 | 2012-04-20 14:16:22 +0900 | [diff] [blame] | 648 | static void extcon_dev_release(struct device *dev) |
| 649 | { |
MyungJoo Ham | de55d87 | 2012-04-20 14:16:22 +0900 | [diff] [blame] | 650 | } |
| 651 | |
MyungJoo Ham | bde68e6 | 2012-04-20 14:16:26 +0900 | [diff] [blame] | 652 | static const char *muex_name = "mutually_exclusive"; |
MyungJoo Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 653 | static void dummy_sysfs_dev_release(struct device *dev) |
| 654 | { |
| 655 | } |
| 656 | |
Chanwoo Choi | a9af652 | 2014-04-24 19:46:49 +0900 | [diff] [blame] | 657 | /* |
| 658 | * extcon_dev_allocate() - Allocate the memory of extcon device. |
Chanwoo Choi | 2a9de9c | 2015-04-24 19:16:05 +0900 | [diff] [blame] | 659 | * @supported_cable: Array of supported extcon ending with EXTCON_NONE. |
Chanwoo Choi | a9af652 | 2014-04-24 19:46:49 +0900 | [diff] [blame] | 660 | * 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 Choi | 73b6ecd | 2015-06-12 11:10:06 +0900 | [diff] [blame] | 669 | struct extcon_dev *extcon_dev_allocate(const unsigned int *supported_cable) |
Chanwoo Choi | a9af652 | 2014-04-24 19:46:49 +0900 | [diff] [blame] | 670 | { |
| 671 | struct extcon_dev *edev; |
| 672 | |
Chanwoo Choi | 7eae43a | 2015-06-21 23:48:36 +0900 | [diff] [blame] | 673 | if (!supported_cable) |
| 674 | return ERR_PTR(-EINVAL); |
| 675 | |
Chanwoo Choi | a9af652 | 2014-04-24 19:46:49 +0900 | [diff] [blame] | 676 | 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 | */ |
| 690 | void extcon_dev_free(struct extcon_dev *edev) |
| 691 | { |
| 692 | kfree(edev); |
| 693 | } |
| 694 | EXPORT_SYMBOL_GPL(extcon_dev_free); |
| 695 | |
Chanwoo Choi | 739ba1b | 2014-04-24 20:12:15 +0900 | [diff] [blame] | 696 | static 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 | |
| 706 | static 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 Choi | 2a9de9c | 2015-04-24 19:16:05 +0900 | [diff] [blame] | 714 | * @supported_cable: Array of supported extcon ending with EXTCON_NONE. |
Chanwoo Choi | 739ba1b | 2014-04-24 20:12:15 +0900 | [diff] [blame] | 715 | * 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 | */ |
| 725 | struct extcon_dev *devm_extcon_dev_allocate(struct device *dev, |
Chanwoo Choi | 73b6ecd | 2015-06-12 11:10:06 +0900 | [diff] [blame] | 726 | const unsigned int *supported_cable) |
Chanwoo Choi | 739ba1b | 2014-04-24 20:12:15 +0900 | [diff] [blame] | 727 | { |
| 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 Choi | ac65a62 | 2014-05-30 10:13:15 +0900 | [diff] [blame] | 740 | edev->dev.parent = dev; |
| 741 | |
Chanwoo Choi | 739ba1b | 2014-04-24 20:12:15 +0900 | [diff] [blame] | 742 | *ptr = edev; |
| 743 | devres_add(dev, ptr); |
| 744 | |
| 745 | return edev; |
| 746 | } |
| 747 | EXPORT_SYMBOL_GPL(devm_extcon_dev_allocate); |
| 748 | |
| 749 | void 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 | } |
| 754 | EXPORT_SYMBOL_GPL(devm_extcon_dev_free); |
| 755 | |
MyungJoo Ham | de55d87 | 2012-04-20 14:16:22 +0900 | [diff] [blame] | 756 | /** |
| 757 | * extcon_dev_register() - Register a new extcon device |
| 758 | * @edev : the new extcon device (should be allocated before calling) |
MyungJoo Ham | de55d87 | 2012-04-20 14:16:22 +0900 | [diff] [blame] | 759 | * |
| 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 Choi | 42d7d75 | 2013-09-27 09:20:26 +0900 | [diff] [blame] | 765 | int extcon_dev_register(struct extcon_dev *edev) |
MyungJoo Ham | de55d87 | 2012-04-20 14:16:22 +0900 | [diff] [blame] | 766 | { |
MyungJoo Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 767 | int ret, index = 0; |
Chanwoo Choi | 71c3ffa | 2015-04-15 15:02:01 +0900 | [diff] [blame] | 768 | static atomic_t edev_no = ATOMIC_INIT(-1); |
MyungJoo Ham | de55d87 | 2012-04-20 14:16:22 +0900 | [diff] [blame] | 769 | |
| 770 | if (!extcon_class) { |
| 771 | ret = create_extcon_class(); |
| 772 | if (ret < 0) |
| 773 | return ret; |
| 774 | } |
| 775 | |
Chanwoo Choi | 7eae43a | 2015-06-21 23:48:36 +0900 | [diff] [blame] | 776 | if (!edev || !edev->supported_cable) |
Chanwoo Choi | 2a9de9c | 2015-04-24 19:16:05 +0900 | [diff] [blame] | 777 | return -EINVAL; |
MyungJoo Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 778 | |
Chanwoo Choi | 2a9de9c | 2015-04-24 19:16:05 +0900 | [diff] [blame] | 779 | for (; edev->supported_cable[index] != EXTCON_NONE; index++); |
| 780 | |
| 781 | edev->max_supported = index; |
MyungJoo Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 782 | if (index > SUPPORTED_CABLE_MAX) { |
Chanwoo Choi | 2a9de9c | 2015-04-24 19:16:05 +0900 | [diff] [blame] | 783 | dev_err(&edev->dev, |
| 784 | "exceed the maximum number of supported cables\n"); |
MyungJoo Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 785 | return -EINVAL; |
| 786 | } |
| 787 | |
Chanwoo Choi | dae6165 | 2013-09-27 09:19:40 +0900 | [diff] [blame] | 788 | edev->dev.class = extcon_class; |
| 789 | edev->dev.release = extcon_dev_release; |
MyungJoo Ham | de55d87 | 2012-04-20 14:16:22 +0900 | [diff] [blame] | 790 | |
Chanwoo Choi | 71c3ffa | 2015-04-15 15:02:01 +0900 | [diff] [blame] | 791 | edev->name = dev_name(edev->dev.parent); |
Chanwoo Choi | 42d7d75 | 2013-09-27 09:20:26 +0900 | [diff] [blame] | 792 | if (IS_ERR_OR_NULL(edev->name)) { |
| 793 | dev_err(&edev->dev, |
| 794 | "extcon device name is null\n"); |
| 795 | return -EINVAL; |
| 796 | } |
Chanwoo Choi | 71c3ffa | 2015-04-15 15:02:01 +0900 | [diff] [blame] | 797 | dev_set_name(&edev->dev, "extcon%lu", |
| 798 | (unsigned long)atomic_inc_return(&edev_no)); |
MyungJoo Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 799 | |
| 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 Brown | 9baf322 | 2012-08-16 20:03:21 +0100 | [diff] [blame] | 836 | sysfs_attr_init(&cable->attr_name.attr); |
MyungJoo Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 837 | cable->attr_name.attr.name = "name"; |
| 838 | cable->attr_name.attr.mode = 0444; |
| 839 | cable->attr_name.show = cable_name_show; |
| 840 | |
Mark Brown | 9baf322 | 2012-08-16 20:03:21 +0100 | [diff] [blame] | 841 | sysfs_attr_init(&cable->attr_state.attr); |
MyungJoo Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 842 | cable->attr_state.attr.name = "state"; |
Chanwoo Choi | ea9dd9d | 2013-05-22 19:31:59 +0900 | [diff] [blame] | 843 | cable->attr_state.attr.mode = 0444; |
MyungJoo Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 844 | cable->attr_state.show = cable_state_show; |
MyungJoo Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 845 | } |
| 846 | } |
| 847 | |
MyungJoo Ham | bde68e6 | 2012-04-20 14:16:26 +0900 | [diff] [blame] | 848 | 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 Brown | 9baf322 | 2012-08-16 20:03:21 +0100 | [diff] [blame] | 886 | sysfs_attr_init(&edev->d_attrs_muex[index].attr); |
MyungJoo Ham | bde68e6 | 2012-04-20 14:16:26 +0900 | [diff] [blame] | 887 | 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 Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 897 | if (edev->max_supported) { |
| 898 | edev->extcon_dev_type.groups = |
| 899 | kzalloc(sizeof(struct attribute_group *) * |
MyungJoo Ham | bde68e6 | 2012-04-20 14:16:26 +0900 | [diff] [blame] | 900 | (edev->max_supported + 2), GFP_KERNEL); |
MyungJoo Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 901 | if (!edev->extcon_dev_type.groups) { |
| 902 | ret = -ENOMEM; |
| 903 | goto err_alloc_groups; |
| 904 | } |
| 905 | |
Chanwoo Choi | dae6165 | 2013-09-27 09:19:40 +0900 | [diff] [blame] | 906 | edev->extcon_dev_type.name = dev_name(&edev->dev); |
MyungJoo Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 907 | 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 Ham | bde68e6 | 2012-04-20 14:16:26 +0900 | [diff] [blame] | 912 | if (edev->mutually_exclusive) |
| 913 | edev->extcon_dev_type.groups[index] = |
| 914 | &edev->attr_g_muex; |
MyungJoo Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 915 | |
Chanwoo Choi | dae6165 | 2013-09-27 09:19:40 +0900 | [diff] [blame] | 916 | edev->dev.type = &edev->extcon_dev_type; |
MyungJoo Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 917 | } |
| 918 | |
Chanwoo Choi | dae6165 | 2013-09-27 09:19:40 +0900 | [diff] [blame] | 919 | ret = device_register(&edev->dev); |
MyungJoo Ham | de55d87 | 2012-04-20 14:16:22 +0900 | [diff] [blame] | 920 | if (ret) { |
Chanwoo Choi | dae6165 | 2013-09-27 09:19:40 +0900 | [diff] [blame] | 921 | put_device(&edev->dev); |
MyungJoo Ham | de55d87 | 2012-04-20 14:16:22 +0900 | [diff] [blame] | 922 | goto err_dev; |
| 923 | } |
MyungJoo Ham | 449a2bf | 2012-04-23 20:19:57 +0900 | [diff] [blame] | 924 | #if defined(CONFIG_ANDROID) |
MyungJoo Ham | de55d87 | 2012-04-20 14:16:22 +0900 | [diff] [blame] | 925 | if (switch_class) |
Chanwoo Choi | dae6165 | 2013-09-27 09:19:40 +0900 | [diff] [blame] | 926 | ret = class_compat_create_link(switch_class, &edev->dev, NULL); |
MyungJoo Ham | 449a2bf | 2012-04-23 20:19:57 +0900 | [diff] [blame] | 927 | #endif /* CONFIG_ANDROID */ |
MyungJoo Ham | de55d87 | 2012-04-20 14:16:22 +0900 | [diff] [blame] | 928 | |
MyungJoo Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 929 | spin_lock_init(&edev->lock); |
| 930 | |
Chanwoo Choi | 046050f | 2015-05-19 20:01:12 +0900 | [diff] [blame] | 931 | 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 Kim | 74c5d09 | 2012-04-20 14:16:24 +0900 | [diff] [blame] | 940 | |
Chanwoo Choi | dae6165 | 2013-09-27 09:19:40 +0900 | [diff] [blame] | 941 | dev_set_drvdata(&edev->dev, edev); |
MyungJoo Ham | de55d87 | 2012-04-20 14:16:22 +0900 | [diff] [blame] | 942 | edev->state = 0; |
Donggeun Kim | 74c5d09 | 2012-04-20 14:16:24 +0900 | [diff] [blame] | 943 | |
| 944 | mutex_lock(&extcon_dev_list_lock); |
| 945 | list_add(&edev->entry, &extcon_dev_list); |
| 946 | mutex_unlock(&extcon_dev_list_lock); |
| 947 | |
MyungJoo Ham | de55d87 | 2012-04-20 14:16:22 +0900 | [diff] [blame] | 948 | return 0; |
| 949 | |
| 950 | err_dev: |
MyungJoo Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 951 | if (edev->max_supported) |
| 952 | kfree(edev->extcon_dev_type.groups); |
| 953 | err_alloc_groups: |
MyungJoo Ham | bde68e6 | 2012-04-20 14:16:26 +0900 | [diff] [blame] | 954 | 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 | } |
| 960 | err_muex: |
MyungJoo Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 961 | for (index = 0; index < edev->max_supported; index++) |
| 962 | kfree(edev->cables[index].attr_g.name); |
| 963 | err_alloc_cables: |
| 964 | if (edev->max_supported) |
| 965 | kfree(edev->cables); |
| 966 | err_sysfs_alloc: |
MyungJoo Ham | de55d87 | 2012-04-20 14:16:22 +0900 | [diff] [blame] | 967 | return ret; |
| 968 | } |
| 969 | EXPORT_SYMBOL_GPL(extcon_dev_register); |
| 970 | |
| 971 | /** |
| 972 | * extcon_dev_unregister() - Unregister the extcon device. |
Peter Meerwald | c338bb0 | 2012-08-23 09:11:54 +0900 | [diff] [blame] | 973 | * @edev: the extcon device instance to be unregistered. |
MyungJoo Ham | de55d87 | 2012-04-20 14:16:22 +0900 | [diff] [blame] | 974 | * |
| 975 | * Note that this does not call kfree(edev) because edev was not allocated |
| 976 | * by this class. |
| 977 | */ |
| 978 | void extcon_dev_unregister(struct extcon_dev *edev) |
| 979 | { |
anish kumar | 57e7cd3 | 2012-10-22 09:43:33 +0900 | [diff] [blame] | 980 | int index; |
| 981 | |
Chanwoo Choi | 7eae43a | 2015-06-21 23:48:36 +0900 | [diff] [blame] | 982 | if (!edev) |
| 983 | return; |
| 984 | |
anish kumar | 57e7cd3 | 2012-10-22 09:43:33 +0900 | [diff] [blame] | 985 | mutex_lock(&extcon_dev_list_lock); |
| 986 | list_del(&edev->entry); |
| 987 | mutex_unlock(&extcon_dev_list_lock); |
| 988 | |
Chanwoo Choi | dae6165 | 2013-09-27 09:19:40 +0900 | [diff] [blame] | 989 | 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 kumar | 57e7cd3 | 2012-10-22 09:43:33 +0900 | [diff] [blame] | 992 | return; |
| 993 | } |
| 994 | |
Wang, Xiaoming | 7585ca0 | 2013-11-01 18:48:14 -0400 | [diff] [blame] | 995 | device_unregister(&edev->dev); |
| 996 | |
anish kumar | 57e7cd3 | 2012-10-22 09:43:33 +0900 | [diff] [blame] | 997 | 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 Choi | dae6165 | 2013-09-27 09:19:40 +0900 | [diff] [blame] | 1015 | class_compat_remove_link(switch_class, &edev->dev, NULL); |
anish kumar | 57e7cd3 | 2012-10-22 09:43:33 +0900 | [diff] [blame] | 1016 | #endif |
Chanwoo Choi | dae6165 | 2013-09-27 09:19:40 +0900 | [diff] [blame] | 1017 | put_device(&edev->dev); |
MyungJoo Ham | de55d87 | 2012-04-20 14:16:22 +0900 | [diff] [blame] | 1018 | } |
| 1019 | EXPORT_SYMBOL_GPL(extcon_dev_unregister); |
| 1020 | |
Sangjung Woo | 1111244 | 2014-04-21 19:10:08 +0900 | [diff] [blame] | 1021 | static void devm_extcon_dev_unreg(struct device *dev, void *res) |
| 1022 | { |
| 1023 | extcon_dev_unregister(*(struct extcon_dev **)res); |
| 1024 | } |
| 1025 | |
Sangjung Woo | 1111244 | 2014-04-21 19:10:08 +0900 | [diff] [blame] | 1026 | /** |
| 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 | */ |
| 1041 | int 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 | } |
| 1061 | EXPORT_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 | */ |
| 1071 | void 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 | } |
| 1076 | EXPORT_SYMBOL_GPL(devm_extcon_dev_unregister); |
| 1077 | |
Chanwoo Choi | 1ad94ff | 2014-03-18 19:55:46 +0900 | [diff] [blame] | 1078 | #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 | */ |
| 1086 | struct 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 Choi | 7eae43a | 2015-06-21 23:48:36 +0900 | [diff] [blame] | 1091 | if (!dev) |
| 1092 | return ERR_PTR(-EINVAL); |
| 1093 | |
Chanwoo Choi | 1ad94ff | 2014-03-18 19:55:46 +0900 | [diff] [blame] | 1094 | 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 Figa | f841afb | 2014-10-16 15:11:44 +0200 | [diff] [blame] | 1106 | 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 Choi | 1ad94ff | 2014-03-18 19:55:46 +0900 | [diff] [blame] | 1112 | } |
Tomasz Figa | f841afb | 2014-10-16 15:11:44 +0200 | [diff] [blame] | 1113 | mutex_unlock(&extcon_dev_list_lock); |
Chanwoo Choi | 1ad94ff | 2014-03-18 19:55:46 +0900 | [diff] [blame] | 1114 | |
Tomasz Figa | f841afb | 2014-10-16 15:11:44 +0200 | [diff] [blame] | 1115 | return ERR_PTR(-EPROBE_DEFER); |
Chanwoo Choi | 1ad94ff | 2014-03-18 19:55:46 +0900 | [diff] [blame] | 1116 | } |
| 1117 | #else |
| 1118 | struct extcon_dev *extcon_get_edev_by_phandle(struct device *dev, int index) |
| 1119 | { |
| 1120 | return ERR_PTR(-ENOSYS); |
| 1121 | } |
| 1122 | #endif /* CONFIG_OF */ |
| 1123 | EXPORT_SYMBOL_GPL(extcon_get_edev_by_phandle); |
| 1124 | |
Chanwoo Choi | 707d755 | 2015-04-15 13:57:51 +0900 | [diff] [blame] | 1125 | /** |
| 1126 | * extcon_get_edev_name() - Get the name of the extcon device. |
| 1127 | * @edev: the extcon device |
| 1128 | */ |
| 1129 | const char *extcon_get_edev_name(struct extcon_dev *edev) |
| 1130 | { |
| 1131 | return !edev ? NULL : edev->name; |
| 1132 | } |
| 1133 | |
MyungJoo Ham | de55d87 | 2012-04-20 14:16:22 +0900 | [diff] [blame] | 1134 | static int __init extcon_class_init(void) |
| 1135 | { |
| 1136 | return create_extcon_class(); |
| 1137 | } |
| 1138 | module_init(extcon_class_init); |
| 1139 | |
| 1140 | static void __exit extcon_class_exit(void) |
| 1141 | { |
Peter Huewe | 0dc77b6 | 2012-09-24 15:32:31 +0900 | [diff] [blame] | 1142 | #if defined(CONFIG_ANDROID) |
| 1143 | class_compat_unregister(switch_class); |
| 1144 | #endif |
MyungJoo Ham | de55d87 | 2012-04-20 14:16:22 +0900 | [diff] [blame] | 1145 | class_destroy(extcon_class); |
| 1146 | } |
| 1147 | module_exit(extcon_class_exit); |
| 1148 | |
Chanwoo Choi | 2a9de9c | 2015-04-24 19:16:05 +0900 | [diff] [blame] | 1149 | MODULE_AUTHOR("Chanwoo Choi <cw00.choi@samsung.com>"); |
MyungJoo Ham | de55d87 | 2012-04-20 14:16:22 +0900 | [diff] [blame] | 1150 | MODULE_AUTHOR("Mike Lockwood <lockwood@android.com>"); |
| 1151 | MODULE_AUTHOR("Donggeun Kim <dg77.kim@samsung.com>"); |
| 1152 | MODULE_AUTHOR("MyungJoo Ham <myungjoo.ham@samsung.com>"); |
| 1153 | MODULE_DESCRIPTION("External connector (extcon) class driver"); |
| 1154 | MODULE_LICENSE("GPL"); |