Thomas Gleixner | 9c92ab6 | 2019-05-29 07:17:56 -0700 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-only |
MyungJoo Ham | de55d87 | 2012-04-20 14:16:22 +0900 | [diff] [blame] | 2 | /* |
Chanwoo Choi | 6ab6094f | 2017-04-03 19:45:48 +0900 | [diff] [blame] | 3 | * drivers/extcon/extcon.c - External Connector (extcon) framework. |
MyungJoo Ham | de55d87 | 2012-04-20 14:16:22 +0900 | [diff] [blame] | 4 | * |
Chanwoo Choi | 2a9de9c | 2015-04-24 19:16:05 +0900 | [diff] [blame] | 5 | * Copyright (C) 2015 Samsung Electronics |
| 6 | * Author: Chanwoo Choi <cw00.choi@samsung.com> |
| 7 | * |
MyungJoo Ham | de55d87 | 2012-04-20 14:16:22 +0900 | [diff] [blame] | 8 | * Copyright (C) 2012 Samsung Electronics |
| 9 | * Author: Donggeun Kim <dg77.kim@samsung.com> |
| 10 | * Author: MyungJoo Ham <myungjoo.ham@samsung.com> |
| 11 | * |
| 12 | * based on android/drivers/switch/switch_class.c |
| 13 | * Copyright (C) 2008 Google, Inc. |
| 14 | * Author: Mike Lockwood <lockwood@android.com> |
Chanwoo Choi | b9ec23c | 2015-04-24 14:48:52 +0900 | [diff] [blame] | 15 | */ |
MyungJoo Ham | de55d87 | 2012-04-20 14:16:22 +0900 | [diff] [blame] | 16 | |
| 17 | #include <linux/module.h> |
| 18 | #include <linux/types.h> |
| 19 | #include <linux/init.h> |
| 20 | #include <linux/device.h> |
| 21 | #include <linux/fs.h> |
| 22 | #include <linux/err.h> |
Tomasz Figa | f841afb1 | 2014-10-16 15:11:44 +0200 | [diff] [blame] | 23 | #include <linux/of.h> |
MyungJoo Ham | de55d87 | 2012-04-20 14:16:22 +0900 | [diff] [blame] | 24 | #include <linux/slab.h> |
Mark Brown | 9baf322 | 2012-08-16 20:03:21 +0100 | [diff] [blame] | 25 | #include <linux/sysfs.h> |
MyungJoo Ham | de55d87 | 2012-04-20 14:16:22 +0900 | [diff] [blame] | 26 | |
Chanwoo Choi | e6cf046 | 2016-12-26 20:37:38 +0900 | [diff] [blame] | 27 | #include "extcon.h" |
| 28 | |
Chanwoo Choi | 2a9de9c | 2015-04-24 19:16:05 +0900 | [diff] [blame] | 29 | #define SUPPORTED_CABLE_MAX 32 |
Chanwoo Choi | 2a9de9c | 2015-04-24 19:16:05 +0900 | [diff] [blame] | 30 | |
Colin Ian King | 5183240 | 2017-09-09 17:51:00 +0100 | [diff] [blame] | 31 | static const struct __extcon_info { |
Chanwoo Choi | 55e4e2f | 2016-07-11 16:34:52 +0900 | [diff] [blame] | 32 | unsigned int type; |
| 33 | unsigned int id; |
| 34 | const char *name; |
| 35 | |
| 36 | } extcon_info[] = { |
| 37 | [EXTCON_NONE] = { |
| 38 | .type = EXTCON_TYPE_MISC, |
| 39 | .id = EXTCON_NONE, |
| 40 | .name = "NONE", |
| 41 | }, |
Chanwoo Choi | 73b6ecd | 2015-06-12 11:10:06 +0900 | [diff] [blame] | 42 | |
Chanwoo Choi | 8e9bc36 | 2015-05-19 19:58:49 +0900 | [diff] [blame] | 43 | /* USB external connector */ |
Chanwoo Choi | 55e4e2f | 2016-07-11 16:34:52 +0900 | [diff] [blame] | 44 | [EXTCON_USB] = { |
| 45 | .type = EXTCON_TYPE_USB, |
| 46 | .id = EXTCON_USB, |
| 47 | .name = "USB", |
| 48 | }, |
| 49 | [EXTCON_USB_HOST] = { |
| 50 | .type = EXTCON_TYPE_USB, |
| 51 | .id = EXTCON_USB_HOST, |
Chanwoo Choi | 86d6cda | 2017-01-07 05:17:36 +0900 | [diff] [blame] | 52 | .name = "USB-HOST", |
Chanwoo Choi | 55e4e2f | 2016-07-11 16:34:52 +0900 | [diff] [blame] | 53 | }, |
Chanwoo Choi | 8e9bc36 | 2015-05-19 19:58:49 +0900 | [diff] [blame] | 54 | |
Chanwoo Choi | 11eecf9 | 2015-10-03 14:15:13 +0900 | [diff] [blame] | 55 | /* Charging external connector */ |
Chanwoo Choi | 55e4e2f | 2016-07-11 16:34:52 +0900 | [diff] [blame] | 56 | [EXTCON_CHG_USB_SDP] = { |
| 57 | .type = EXTCON_TYPE_CHG | EXTCON_TYPE_USB, |
| 58 | .id = EXTCON_CHG_USB_SDP, |
| 59 | .name = "SDP", |
| 60 | }, |
| 61 | [EXTCON_CHG_USB_DCP] = { |
| 62 | .type = EXTCON_TYPE_CHG | EXTCON_TYPE_USB, |
| 63 | .id = EXTCON_CHG_USB_DCP, |
| 64 | .name = "DCP", |
| 65 | }, |
| 66 | [EXTCON_CHG_USB_CDP] = { |
| 67 | .type = EXTCON_TYPE_CHG | EXTCON_TYPE_USB, |
| 68 | .id = EXTCON_CHG_USB_CDP, |
| 69 | .name = "CDP", |
| 70 | }, |
| 71 | [EXTCON_CHG_USB_ACA] = { |
| 72 | .type = EXTCON_TYPE_CHG | EXTCON_TYPE_USB, |
| 73 | .id = EXTCON_CHG_USB_ACA, |
| 74 | .name = "ACA", |
| 75 | }, |
| 76 | [EXTCON_CHG_USB_FAST] = { |
| 77 | .type = EXTCON_TYPE_CHG | EXTCON_TYPE_USB, |
| 78 | .id = EXTCON_CHG_USB_FAST, |
| 79 | .name = "FAST-CHARGER", |
| 80 | }, |
| 81 | [EXTCON_CHG_USB_SLOW] = { |
| 82 | .type = EXTCON_TYPE_CHG | EXTCON_TYPE_USB, |
| 83 | .id = EXTCON_CHG_USB_SLOW, |
| 84 | .name = "SLOW-CHARGER", |
| 85 | }, |
Chanwoo Choi | 7fe95fb | 2016-08-05 18:15:46 +0900 | [diff] [blame] | 86 | [EXTCON_CHG_WPT] = { |
| 87 | .type = EXTCON_TYPE_CHG, |
| 88 | .id = EXTCON_CHG_WPT, |
| 89 | .name = "WPT", |
| 90 | }, |
Chanwoo Choi | 3c5f0e0 | 2017-01-02 13:03:03 +0900 | [diff] [blame] | 91 | [EXTCON_CHG_USB_PD] = { |
| 92 | .type = EXTCON_TYPE_CHG | EXTCON_TYPE_USB, |
| 93 | .id = EXTCON_CHG_USB_PD, |
| 94 | .name = "PD", |
| 95 | }, |
Chanwoo Choi | 8e9bc36 | 2015-05-19 19:58:49 +0900 | [diff] [blame] | 96 | |
Chanwoo Choi | 11eecf9 | 2015-10-03 14:15:13 +0900 | [diff] [blame] | 97 | /* Jack external connector */ |
Chanwoo Choi | 55e4e2f | 2016-07-11 16:34:52 +0900 | [diff] [blame] | 98 | [EXTCON_JACK_MICROPHONE] = { |
| 99 | .type = EXTCON_TYPE_JACK, |
| 100 | .id = EXTCON_JACK_MICROPHONE, |
| 101 | .name = "MICROPHONE", |
| 102 | }, |
| 103 | [EXTCON_JACK_HEADPHONE] = { |
| 104 | .type = EXTCON_TYPE_JACK, |
| 105 | .id = EXTCON_JACK_HEADPHONE, |
| 106 | .name = "HEADPHONE", |
| 107 | }, |
| 108 | [EXTCON_JACK_LINE_IN] = { |
| 109 | .type = EXTCON_TYPE_JACK, |
| 110 | .id = EXTCON_JACK_LINE_IN, |
| 111 | .name = "LINE-IN", |
| 112 | }, |
| 113 | [EXTCON_JACK_LINE_OUT] = { |
| 114 | .type = EXTCON_TYPE_JACK, |
| 115 | .id = EXTCON_JACK_LINE_OUT, |
| 116 | .name = "LINE-OUT", |
| 117 | }, |
| 118 | [EXTCON_JACK_VIDEO_IN] = { |
| 119 | .type = EXTCON_TYPE_JACK, |
| 120 | .id = EXTCON_JACK_VIDEO_IN, |
| 121 | .name = "VIDEO-IN", |
| 122 | }, |
| 123 | [EXTCON_JACK_VIDEO_OUT] = { |
| 124 | .type = EXTCON_TYPE_JACK, |
| 125 | .id = EXTCON_JACK_VIDEO_OUT, |
| 126 | .name = "VIDEO-OUT", |
| 127 | }, |
| 128 | [EXTCON_JACK_SPDIF_IN] = { |
| 129 | .type = EXTCON_TYPE_JACK, |
| 130 | .id = EXTCON_JACK_SPDIF_IN, |
| 131 | .name = "SPDIF-IN", |
| 132 | }, |
| 133 | [EXTCON_JACK_SPDIF_OUT] = { |
| 134 | .type = EXTCON_TYPE_JACK, |
| 135 | .id = EXTCON_JACK_SPDIF_OUT, |
| 136 | .name = "SPDIF-OUT", |
| 137 | }, |
Chanwoo Choi | 8e9bc36 | 2015-05-19 19:58:49 +0900 | [diff] [blame] | 138 | |
Chanwoo Choi | 11eecf9 | 2015-10-03 14:15:13 +0900 | [diff] [blame] | 139 | /* Display external connector */ |
Chanwoo Choi | 55e4e2f | 2016-07-11 16:34:52 +0900 | [diff] [blame] | 140 | [EXTCON_DISP_HDMI] = { |
| 141 | .type = EXTCON_TYPE_DISP, |
| 142 | .id = EXTCON_DISP_HDMI, |
| 143 | .name = "HDMI", |
| 144 | }, |
| 145 | [EXTCON_DISP_MHL] = { |
| 146 | .type = EXTCON_TYPE_DISP, |
| 147 | .id = EXTCON_DISP_MHL, |
| 148 | .name = "MHL", |
| 149 | }, |
| 150 | [EXTCON_DISP_DVI] = { |
| 151 | .type = EXTCON_TYPE_DISP, |
| 152 | .id = EXTCON_DISP_DVI, |
| 153 | .name = "DVI", |
| 154 | }, |
| 155 | [EXTCON_DISP_VGA] = { |
| 156 | .type = EXTCON_TYPE_DISP, |
| 157 | .id = EXTCON_DISP_VGA, |
| 158 | .name = "VGA", |
| 159 | }, |
Chris Zhong | 2164188 | 2016-07-22 01:13:02 +0900 | [diff] [blame] | 160 | [EXTCON_DISP_DP] = { |
| 161 | .type = EXTCON_TYPE_DISP | EXTCON_TYPE_USB, |
| 162 | .id = EXTCON_DISP_DP, |
| 163 | .name = "DP", |
| 164 | }, |
Chanwoo Choi | 9c0595d | 2016-08-05 17:49:23 +0900 | [diff] [blame] | 165 | [EXTCON_DISP_HMD] = { |
| 166 | .type = EXTCON_TYPE_DISP | EXTCON_TYPE_USB, |
| 167 | .id = EXTCON_DISP_HMD, |
| 168 | .name = "HMD", |
| 169 | }, |
Chanwoo Choi | 8e9bc36 | 2015-05-19 19:58:49 +0900 | [diff] [blame] | 170 | |
Chanwoo Choi | 11eecf9 | 2015-10-03 14:15:13 +0900 | [diff] [blame] | 171 | /* Miscellaneous external connector */ |
Chanwoo Choi | 55e4e2f | 2016-07-11 16:34:52 +0900 | [diff] [blame] | 172 | [EXTCON_DOCK] = { |
| 173 | .type = EXTCON_TYPE_MISC, |
| 174 | .id = EXTCON_DOCK, |
| 175 | .name = "DOCK", |
| 176 | }, |
| 177 | [EXTCON_JIG] = { |
| 178 | .type = EXTCON_TYPE_MISC, |
| 179 | .id = EXTCON_JIG, |
| 180 | .name = "JIG", |
| 181 | }, |
| 182 | [EXTCON_MECHANICAL] = { |
| 183 | .type = EXTCON_TYPE_MISC, |
| 184 | .id = EXTCON_MECHANICAL, |
| 185 | .name = "MECHANICAL", |
| 186 | }, |
Chanwoo Choi | 8e9bc36 | 2015-05-19 19:58:49 +0900 | [diff] [blame] | 187 | |
Chanwoo Choi | 55e4e2f | 2016-07-11 16:34:52 +0900 | [diff] [blame] | 188 | { /* sentinel */ } |
MyungJoo Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 189 | }; |
| 190 | |
Chanwoo Choi | 20f7b53 | 2016-06-27 19:17:06 +0900 | [diff] [blame] | 191 | /** |
Chanwoo Choi | 6ab6094f | 2017-04-03 19:45:48 +0900 | [diff] [blame] | 192 | * struct extcon_cable - An internal data for an external connector. |
| 193 | * @edev: the extcon device |
| 194 | * @cable_index: the index of this cable in the edev |
| 195 | * @attr_g: the attribute group for the cable |
Chanwoo Choi | 20f7b53 | 2016-06-27 19:17:06 +0900 | [diff] [blame] | 196 | * @attr_name: "name" sysfs entry |
| 197 | * @attr_state: "state" sysfs entry |
Chanwoo Choi | 6ab6094f | 2017-04-03 19:45:48 +0900 | [diff] [blame] | 198 | * @attrs: the array pointing to attr_name and attr_state for attr_g |
Chanwoo Choi | 20f7b53 | 2016-06-27 19:17:06 +0900 | [diff] [blame] | 199 | */ |
| 200 | struct extcon_cable { |
| 201 | struct extcon_dev *edev; |
| 202 | int cable_index; |
| 203 | |
| 204 | struct attribute_group attr_g; |
| 205 | struct device_attribute attr_name; |
| 206 | struct device_attribute attr_state; |
| 207 | |
| 208 | struct attribute *attrs[3]; /* to be fed to attr_g.attrs */ |
Chanwoo Choi | 792e7e9e | 2016-07-11 19:30:43 +0900 | [diff] [blame] | 209 | |
| 210 | union extcon_property_value usb_propval[EXTCON_PROP_USB_CNT]; |
| 211 | union extcon_property_value chg_propval[EXTCON_PROP_CHG_CNT]; |
| 212 | union extcon_property_value jack_propval[EXTCON_PROP_JACK_CNT]; |
| 213 | union extcon_property_value disp_propval[EXTCON_PROP_DISP_CNT]; |
Chanwoo Choi | 7f2a0a1 | 2016-07-25 21:15:19 +0900 | [diff] [blame] | 214 | |
| 215 | unsigned long usb_bits[BITS_TO_LONGS(EXTCON_PROP_USB_CNT)]; |
| 216 | unsigned long chg_bits[BITS_TO_LONGS(EXTCON_PROP_CHG_CNT)]; |
| 217 | unsigned long jack_bits[BITS_TO_LONGS(EXTCON_PROP_JACK_CNT)]; |
| 218 | unsigned long disp_bits[BITS_TO_LONGS(EXTCON_PROP_DISP_CNT)]; |
Chanwoo Choi | 20f7b53 | 2016-06-27 19:17:06 +0900 | [diff] [blame] | 219 | }; |
| 220 | |
Mark Brown | be3a07f | 2012-06-05 16:14:38 +0100 | [diff] [blame] | 221 | static struct class *extcon_class; |
MyungJoo Ham | de55d87 | 2012-04-20 14:16:22 +0900 | [diff] [blame] | 222 | |
Donggeun Kim | 74c5d09 | 2012-04-20 14:16:24 +0900 | [diff] [blame] | 223 | static LIST_HEAD(extcon_dev_list); |
| 224 | static DEFINE_MUTEX(extcon_dev_list_lock); |
| 225 | |
MyungJoo Ham | bde68e6 | 2012-04-20 14:16:26 +0900 | [diff] [blame] | 226 | static int check_mutually_exclusive(struct extcon_dev *edev, u32 new_state) |
| 227 | { |
| 228 | int i = 0; |
| 229 | |
| 230 | if (!edev->mutually_exclusive) |
| 231 | return 0; |
| 232 | |
| 233 | for (i = 0; edev->mutually_exclusive[i]; i++) { |
anish kumar | 28c0ada | 2012-08-30 00:35:10 +0530 | [diff] [blame] | 234 | int weight; |
MyungJoo Ham | bde68e6 | 2012-04-20 14:16:26 +0900 | [diff] [blame] | 235 | u32 correspondants = new_state & edev->mutually_exclusive[i]; |
MyungJoo Ham | bde68e6 | 2012-04-20 14:16:26 +0900 | [diff] [blame] | 236 | |
anish kumar | 28c0ada | 2012-08-30 00:35:10 +0530 | [diff] [blame] | 237 | /* calculate the total number of bits set */ |
| 238 | weight = hweight32(correspondants); |
| 239 | if (weight > 1) |
| 240 | return i + 1; |
MyungJoo Ham | bde68e6 | 2012-04-20 14:16:26 +0900 | [diff] [blame] | 241 | } |
| 242 | |
| 243 | return 0; |
| 244 | } |
| 245 | |
Chanwoo Choi | 73b6ecd | 2015-06-12 11:10:06 +0900 | [diff] [blame] | 246 | 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] | 247 | { |
| 248 | int i; |
| 249 | |
| 250 | /* Find the the index of extcon cable in edev->supported_cable */ |
| 251 | for (i = 0; i < edev->max_supported; i++) { |
| 252 | if (edev->supported_cable[i] == id) |
| 253 | return i; |
| 254 | } |
| 255 | |
| 256 | return -EINVAL; |
| 257 | } |
| 258 | |
Chanwoo Choi | 792e7e9e | 2016-07-11 19:30:43 +0900 | [diff] [blame] | 259 | static int get_extcon_type(unsigned int prop) |
| 260 | { |
| 261 | switch (prop) { |
| 262 | case EXTCON_PROP_USB_MIN ... EXTCON_PROP_USB_MAX: |
| 263 | return EXTCON_TYPE_USB; |
| 264 | case EXTCON_PROP_CHG_MIN ... EXTCON_PROP_CHG_MAX: |
| 265 | return EXTCON_TYPE_CHG; |
| 266 | case EXTCON_PROP_JACK_MIN ... EXTCON_PROP_JACK_MAX: |
| 267 | return EXTCON_TYPE_JACK; |
| 268 | case EXTCON_PROP_DISP_MIN ... EXTCON_PROP_DISP_MAX: |
| 269 | return EXTCON_TYPE_DISP; |
| 270 | default: |
| 271 | return -EINVAL; |
| 272 | } |
| 273 | } |
| 274 | |
| 275 | static bool is_extcon_attached(struct extcon_dev *edev, unsigned int index) |
| 276 | { |
| 277 | return !!(edev->state & BIT(index)); |
| 278 | } |
| 279 | |
Chanwoo Choi | ab11af04 | 2016-07-22 13:16:34 +0900 | [diff] [blame] | 280 | static bool is_extcon_changed(struct extcon_dev *edev, int index, |
| 281 | bool new_state) |
Chanwoo Choi | 046050f | 2015-05-19 20:01:12 +0900 | [diff] [blame] | 282 | { |
Chanwoo Choi | ab11af04 | 2016-07-22 13:16:34 +0900 | [diff] [blame] | 283 | int state = !!(edev->state & BIT(index)); |
| 284 | return (state != new_state); |
Chanwoo Choi | 046050f | 2015-05-19 20:01:12 +0900 | [diff] [blame] | 285 | } |
| 286 | |
Chanwoo Choi | 792e7e9e | 2016-07-11 19:30:43 +0900 | [diff] [blame] | 287 | static bool is_extcon_property_supported(unsigned int id, unsigned int prop) |
| 288 | { |
| 289 | int type; |
| 290 | |
| 291 | /* Check whether the property is supported or not. */ |
| 292 | type = get_extcon_type(prop); |
| 293 | if (type < 0) |
| 294 | return false; |
| 295 | |
| 296 | /* Check whether a specific extcon id supports the property or not. */ |
| 297 | return !!(extcon_info[id].type & type); |
| 298 | } |
| 299 | |
Chanwoo Choi | 7f2a0a1 | 2016-07-25 21:15:19 +0900 | [diff] [blame] | 300 | static int is_extcon_property_capability(struct extcon_dev *edev, |
| 301 | unsigned int id, int index,unsigned int prop) |
| 302 | { |
| 303 | struct extcon_cable *cable; |
| 304 | int type, ret; |
| 305 | |
| 306 | /* Check whether the property is supported or not. */ |
| 307 | type = get_extcon_type(prop); |
| 308 | if (type < 0) |
| 309 | return type; |
| 310 | |
| 311 | cable = &edev->cables[index]; |
| 312 | |
| 313 | switch (type) { |
| 314 | case EXTCON_TYPE_USB: |
| 315 | ret = test_bit(prop - EXTCON_PROP_USB_MIN, cable->usb_bits); |
| 316 | break; |
| 317 | case EXTCON_TYPE_CHG: |
| 318 | ret = test_bit(prop - EXTCON_PROP_CHG_MIN, cable->chg_bits); |
| 319 | break; |
| 320 | case EXTCON_TYPE_JACK: |
| 321 | ret = test_bit(prop - EXTCON_PROP_JACK_MIN, cable->jack_bits); |
| 322 | break; |
| 323 | case EXTCON_TYPE_DISP: |
| 324 | ret = test_bit(prop - EXTCON_PROP_DISP_MIN, cable->disp_bits); |
| 325 | break; |
| 326 | default: |
| 327 | ret = -EINVAL; |
| 328 | } |
| 329 | |
| 330 | return ret; |
| 331 | } |
| 332 | |
Chanwoo Choi | 792e7e9e | 2016-07-11 19:30:43 +0900 | [diff] [blame] | 333 | static void init_property(struct extcon_dev *edev, unsigned int id, int index) |
| 334 | { |
| 335 | unsigned int type = extcon_info[id].type; |
| 336 | struct extcon_cable *cable = &edev->cables[index]; |
| 337 | |
| 338 | if (EXTCON_TYPE_USB & type) |
| 339 | memset(cable->usb_propval, 0, sizeof(cable->usb_propval)); |
| 340 | if (EXTCON_TYPE_CHG & type) |
| 341 | memset(cable->chg_propval, 0, sizeof(cable->chg_propval)); |
| 342 | if (EXTCON_TYPE_JACK & type) |
| 343 | memset(cable->jack_propval, 0, sizeof(cable->jack_propval)); |
| 344 | if (EXTCON_TYPE_DISP & type) |
| 345 | memset(cable->disp_propval, 0, sizeof(cable->disp_propval)); |
| 346 | } |
| 347 | |
MyungJoo Ham | de55d87 | 2012-04-20 14:16:22 +0900 | [diff] [blame] | 348 | static ssize_t state_show(struct device *dev, struct device_attribute *attr, |
| 349 | char *buf) |
| 350 | { |
MyungJoo Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 351 | int i, count = 0; |
Jingoo Han | cb8bb3a | 2013-09-09 14:33:32 +0900 | [diff] [blame] | 352 | struct extcon_dev *edev = dev_get_drvdata(dev); |
MyungJoo Ham | de55d87 | 2012-04-20 14:16:22 +0900 | [diff] [blame] | 353 | |
MyungJoo Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 354 | if (edev->max_supported == 0) |
| 355 | return sprintf(buf, "%u\n", edev->state); |
| 356 | |
Chanwoo Choi | 2a9de9c | 2015-04-24 19:16:05 +0900 | [diff] [blame] | 357 | for (i = 0; i < edev->max_supported; i++) { |
MyungJoo Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 358 | count += sprintf(buf + count, "%s=%d\n", |
Chanwoo Choi | 55e4e2f | 2016-07-11 16:34:52 +0900 | [diff] [blame] | 359 | extcon_info[edev->supported_cable[i]].name, |
Chanwoo Choi | 70641a0 | 2017-03-29 19:18:36 +0900 | [diff] [blame] | 360 | !!(edev->state & BIT(i))); |
MyungJoo Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 361 | } |
| 362 | |
| 363 | return count; |
| 364 | } |
Chanwoo Choi | 5d5321e | 2016-07-18 15:39:28 +0900 | [diff] [blame] | 365 | static DEVICE_ATTR_RO(state); |
MyungJoo Ham | de55d87 | 2012-04-20 14:16:22 +0900 | [diff] [blame] | 366 | |
| 367 | static ssize_t name_show(struct device *dev, struct device_attribute *attr, |
| 368 | char *buf) |
| 369 | { |
Jingoo Han | cb8bb3a | 2013-09-09 14:33:32 +0900 | [diff] [blame] | 370 | struct extcon_dev *edev = dev_get_drvdata(dev); |
MyungJoo Ham | de55d87 | 2012-04-20 14:16:22 +0900 | [diff] [blame] | 371 | |
Chanwoo Choi | 71c3ffa | 2015-04-15 15:02:01 +0900 | [diff] [blame] | 372 | return sprintf(buf, "%s\n", edev->name); |
MyungJoo Ham | de55d87 | 2012-04-20 14:16:22 +0900 | [diff] [blame] | 373 | } |
Greg Kroah-Hartman | af01da0 | 2013-07-24 15:05:10 -0700 | [diff] [blame] | 374 | static DEVICE_ATTR_RO(name); |
MyungJoo Ham | de55d87 | 2012-04-20 14:16:22 +0900 | [diff] [blame] | 375 | |
MyungJoo Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 376 | static ssize_t cable_name_show(struct device *dev, |
| 377 | struct device_attribute *attr, char *buf) |
| 378 | { |
| 379 | struct extcon_cable *cable = container_of(attr, struct extcon_cable, |
| 380 | attr_name); |
Chanwoo Choi | 2a9de9c | 2015-04-24 19:16:05 +0900 | [diff] [blame] | 381 | int i = cable->cable_index; |
MyungJoo Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 382 | |
| 383 | return sprintf(buf, "%s\n", |
Chanwoo Choi | 55e4e2f | 2016-07-11 16:34:52 +0900 | [diff] [blame] | 384 | extcon_info[cable->edev->supported_cable[i]].name); |
MyungJoo Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 385 | } |
| 386 | |
| 387 | static ssize_t cable_state_show(struct device *dev, |
| 388 | struct device_attribute *attr, char *buf) |
| 389 | { |
| 390 | struct extcon_cable *cable = container_of(attr, struct extcon_cable, |
| 391 | attr_state); |
| 392 | |
Roger Quadros | be052cc | 2015-07-07 16:06:15 +0300 | [diff] [blame] | 393 | int i = cable->cable_index; |
| 394 | |
MyungJoo Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 395 | return sprintf(buf, "%d\n", |
Chanwoo Choi | 575c2b86 | 2016-07-22 13:03:17 +0900 | [diff] [blame] | 396 | extcon_get_state(cable->edev, cable->edev->supported_cable[i])); |
MyungJoo Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 397 | } |
| 398 | |
MyungJoo Ham | de55d87 | 2012-04-20 14:16:22 +0900 | [diff] [blame] | 399 | /** |
Chanwoo Choi | 6ab6094f | 2017-04-03 19:45:48 +0900 | [diff] [blame] | 400 | * extcon_sync() - Synchronize the state for an external connector. |
| 401 | * @edev: the extcon device |
MyungJoo Ham | de55d87 | 2012-04-20 14:16:22 +0900 | [diff] [blame] | 402 | * |
Chanwoo Choi | 6ab6094f | 2017-04-03 19:45:48 +0900 | [diff] [blame] | 403 | * Note that this function send a notification in order to synchronize |
| 404 | * the state and property of an external connector. |
| 405 | * |
| 406 | * Returns 0 if success or error number if fail. |
MyungJoo Ham | de55d87 | 2012-04-20 14:16:22 +0900 | [diff] [blame] | 407 | */ |
Chanwoo Choi | ab11af04 | 2016-07-22 13:16:34 +0900 | [diff] [blame] | 408 | int extcon_sync(struct extcon_dev *edev, unsigned int id) |
MyungJoo Ham | de55d87 | 2012-04-20 14:16:22 +0900 | [diff] [blame] | 409 | { |
| 410 | char name_buf[120]; |
| 411 | char state_buf[120]; |
| 412 | char *prop_buf; |
| 413 | char *envp[3]; |
| 414 | int env_offset = 0; |
| 415 | int length; |
Chanwoo Choi | 046050f | 2015-05-19 20:01:12 +0900 | [diff] [blame] | 416 | int index; |
Chanwoo Choi | ab11af04 | 2016-07-22 13:16:34 +0900 | [diff] [blame] | 417 | int state; |
MyungJoo Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 418 | unsigned long flags; |
MyungJoo Ham | de55d87 | 2012-04-20 14:16:22 +0900 | [diff] [blame] | 419 | |
Chanwoo Choi | 7eae43a | 2015-06-21 23:48:36 +0900 | [diff] [blame] | 420 | if (!edev) |
| 421 | return -EINVAL; |
| 422 | |
Chanwoo Choi | ab11af04 | 2016-07-22 13:16:34 +0900 | [diff] [blame] | 423 | index = find_cable_index_by_id(edev, id); |
| 424 | if (index < 0) |
| 425 | return index; |
| 426 | |
MyungJoo Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 427 | spin_lock_irqsave(&edev->lock, flags); |
Chanwoo Choi | ab11af04 | 2016-07-22 13:16:34 +0900 | [diff] [blame] | 428 | state = !!(edev->state & BIT(index)); |
Chanwoo Choi | 8a9dbb7 | 2018-06-14 11:16:29 +0900 | [diff] [blame] | 429 | spin_unlock_irqrestore(&edev->lock, flags); |
Chanwoo Choi | 815429b3 | 2017-03-29 19:30:17 +0900 | [diff] [blame] | 430 | |
| 431 | /* |
| 432 | * Call functions in a raw notifier chain for the specific one |
| 433 | * external connector. |
| 434 | */ |
Chanwoo Choi | ab11af04 | 2016-07-22 13:16:34 +0900 | [diff] [blame] | 435 | raw_notifier_call_chain(&edev->nh[index], state, edev); |
Roger Quadros | f7a8981 | 2015-07-06 17:46:58 +0300 | [diff] [blame] | 436 | |
Chanwoo Choi | 815429b3 | 2017-03-29 19:30:17 +0900 | [diff] [blame] | 437 | /* |
| 438 | * Call functions in a raw notifier chain for the all supported |
| 439 | * external connectors. |
| 440 | */ |
| 441 | raw_notifier_call_chain(&edev->nh_all, state, edev); |
| 442 | |
Chanwoo Choi | 8a9dbb7 | 2018-06-14 11:16:29 +0900 | [diff] [blame] | 443 | spin_lock_irqsave(&edev->lock, flags); |
Chanwoo Choi | ab11af04 | 2016-07-22 13:16:34 +0900 | [diff] [blame] | 444 | /* This could be in interrupt handler */ |
| 445 | prop_buf = (char *)get_zeroed_page(GFP_ATOMIC); |
| 446 | if (!prop_buf) { |
| 447 | /* Unlock early before uevent */ |
MyungJoo Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 448 | spin_unlock_irqrestore(&edev->lock, flags); |
Chanwoo Choi | ab11af04 | 2016-07-22 13:16:34 +0900 | [diff] [blame] | 449 | |
| 450 | dev_err(&edev->dev, "out of memory in extcon_set_state\n"); |
| 451 | kobject_uevent(&edev->dev.kobj, KOBJ_CHANGE); |
| 452 | |
Pan Bian | e7d9dd5 | 2016-12-03 16:56:49 +0800 | [diff] [blame] | 453 | return -ENOMEM; |
MyungJoo Ham | de55d87 | 2012-04-20 14:16:22 +0900 | [diff] [blame] | 454 | } |
MyungJoo Ham | bde68e6 | 2012-04-20 14:16:26 +0900 | [diff] [blame] | 455 | |
Chanwoo Choi | ab11af04 | 2016-07-22 13:16:34 +0900 | [diff] [blame] | 456 | length = name_show(&edev->dev, NULL, prop_buf); |
| 457 | if (length > 0) { |
| 458 | if (prop_buf[length - 1] == '\n') |
| 459 | prop_buf[length - 1] = 0; |
| 460 | snprintf(name_buf, sizeof(name_buf), "NAME=%s", prop_buf); |
| 461 | envp[env_offset++] = name_buf; |
| 462 | } |
| 463 | |
| 464 | length = state_show(&edev->dev, NULL, prop_buf); |
| 465 | if (length > 0) { |
| 466 | if (prop_buf[length - 1] == '\n') |
| 467 | prop_buf[length - 1] = 0; |
| 468 | snprintf(state_buf, sizeof(state_buf), "STATE=%s", prop_buf); |
| 469 | envp[env_offset++] = state_buf; |
| 470 | } |
| 471 | envp[env_offset] = NULL; |
| 472 | |
| 473 | /* Unlock early before uevent */ |
| 474 | spin_unlock_irqrestore(&edev->lock, flags); |
| 475 | kobject_uevent_env(&edev->dev.kobj, KOBJ_CHANGE, envp); |
| 476 | free_page((unsigned long)prop_buf); |
| 477 | |
MyungJoo Ham | bde68e6 | 2012-04-20 14:16:26 +0900 | [diff] [blame] | 478 | return 0; |
MyungJoo Ham | de55d87 | 2012-04-20 14:16:22 +0900 | [diff] [blame] | 479 | } |
Chanwoo Choi | ab11af04 | 2016-07-22 13:16:34 +0900 | [diff] [blame] | 480 | EXPORT_SYMBOL_GPL(extcon_sync); |
MyungJoo Ham | de55d87 | 2012-04-20 14:16:22 +0900 | [diff] [blame] | 481 | |
Donggeun Kim | 74c5d09 | 2012-04-20 14:16:24 +0900 | [diff] [blame] | 482 | /** |
Chanwoo Choi | 6ab6094f | 2017-04-03 19:45:48 +0900 | [diff] [blame] | 483 | * extcon_get_state() - Get the state of an external connector. |
| 484 | * @edev: the extcon device |
| 485 | * @id: the unique id indicating an external connector |
| 486 | * |
| 487 | * Returns 0 if success or error number if fail. |
MyungJoo Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 488 | */ |
Chanwoo Choi | 575c2b86 | 2016-07-22 13:03:17 +0900 | [diff] [blame] | 489 | int extcon_get_state(struct extcon_dev *edev, const unsigned int id) |
MyungJoo Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 490 | { |
Chanwoo Choi | 575c2b86 | 2016-07-22 13:03:17 +0900 | [diff] [blame] | 491 | int index, state; |
| 492 | unsigned long flags; |
Chanwoo Choi | 2a9de9c | 2015-04-24 19:16:05 +0900 | [diff] [blame] | 493 | |
Chanwoo Choi | 7eae43a | 2015-06-21 23:48:36 +0900 | [diff] [blame] | 494 | if (!edev) |
| 495 | return -EINVAL; |
| 496 | |
Chanwoo Choi | 2a9de9c | 2015-04-24 19:16:05 +0900 | [diff] [blame] | 497 | index = find_cable_index_by_id(edev, id); |
| 498 | if (index < 0) |
| 499 | return index; |
| 500 | |
Chanwoo Choi | 575c2b86 | 2016-07-22 13:03:17 +0900 | [diff] [blame] | 501 | spin_lock_irqsave(&edev->lock, flags); |
| 502 | state = is_extcon_attached(edev, index); |
| 503 | spin_unlock_irqrestore(&edev->lock, flags); |
MyungJoo Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 504 | |
Chanwoo Choi | 575c2b86 | 2016-07-22 13:03:17 +0900 | [diff] [blame] | 505 | return state; |
MyungJoo Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 506 | } |
Chanwoo Choi | 575c2b86 | 2016-07-22 13:03:17 +0900 | [diff] [blame] | 507 | EXPORT_SYMBOL_GPL(extcon_get_state); |
MyungJoo Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 508 | |
| 509 | /** |
Chanwoo Choi | 6ab6094f | 2017-04-03 19:45:48 +0900 | [diff] [blame] | 510 | * extcon_set_state() - Set the state of an external connector. |
| 511 | * @edev: the extcon device |
| 512 | * @id: the unique id indicating an external connector |
| 513 | * @state: the new state of an external connector. |
| 514 | * the default semantics is true: attached / false: detached. |
Chanwoo Choi | ab11af04 | 2016-07-22 13:16:34 +0900 | [diff] [blame] | 515 | * |
Chanwoo Choi | 6ab6094f | 2017-04-03 19:45:48 +0900 | [diff] [blame] | 516 | * Note that this function set the state of an external connector without |
| 517 | * a notification. To synchronize the state of an external connector, |
| 518 | * have to use extcon_set_state_sync() and extcon_sync(). |
| 519 | * |
| 520 | * Returns 0 if success or error number if fail. |
MyungJoo Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 521 | */ |
Chanwoo Choi | 6ab6094f | 2017-04-03 19:45:48 +0900 | [diff] [blame] | 522 | int extcon_set_state(struct extcon_dev *edev, unsigned int id, bool state) |
MyungJoo Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 523 | { |
Chanwoo Choi | ab11af04 | 2016-07-22 13:16:34 +0900 | [diff] [blame] | 524 | unsigned long flags; |
| 525 | int index, ret = 0; |
MyungJoo Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 526 | |
Chanwoo Choi | 7eae43a | 2015-06-21 23:48:36 +0900 | [diff] [blame] | 527 | if (!edev) |
| 528 | return -EINVAL; |
| 529 | |
Chanwoo Choi | 2a9de9c | 2015-04-24 19:16:05 +0900 | [diff] [blame] | 530 | index = find_cable_index_by_id(edev, id); |
| 531 | if (index < 0) |
| 532 | return index; |
| 533 | |
Chanwoo Choi | ab11af04 | 2016-07-22 13:16:34 +0900 | [diff] [blame] | 534 | spin_lock_irqsave(&edev->lock, flags); |
| 535 | |
| 536 | /* Check whether the external connector's state is changed. */ |
Chanwoo Choi | 6ab6094f | 2017-04-03 19:45:48 +0900 | [diff] [blame] | 537 | if (!is_extcon_changed(edev, index, state)) |
Chanwoo Choi | ab11af04 | 2016-07-22 13:16:34 +0900 | [diff] [blame] | 538 | goto out; |
| 539 | |
| 540 | if (check_mutually_exclusive(edev, |
Chanwoo Choi | 6ab6094f | 2017-04-03 19:45:48 +0900 | [diff] [blame] | 541 | (edev->state & ~BIT(index)) | (state & BIT(index)))) { |
Chanwoo Choi | ab11af04 | 2016-07-22 13:16:34 +0900 | [diff] [blame] | 542 | ret = -EPERM; |
| 543 | goto out; |
| 544 | } |
| 545 | |
Chanwoo Choi | 792e7e9e | 2016-07-11 19:30:43 +0900 | [diff] [blame] | 546 | /* |
| 547 | * Initialize the value of extcon property before setting |
| 548 | * the detached state for an external connector. |
| 549 | */ |
Chanwoo Choi | 6ab6094f | 2017-04-03 19:45:48 +0900 | [diff] [blame] | 550 | if (!state) |
Chanwoo Choi | 792e7e9e | 2016-07-11 19:30:43 +0900 | [diff] [blame] | 551 | init_property(edev, id, index); |
| 552 | |
Chanwoo Choi | 6ab6094f | 2017-04-03 19:45:48 +0900 | [diff] [blame] | 553 | /* Update the state for an external connector. */ |
| 554 | if (state) |
Chanwoo Choi | ab11af04 | 2016-07-22 13:16:34 +0900 | [diff] [blame] | 555 | edev->state |= BIT(index); |
| 556 | else |
| 557 | edev->state &= ~(BIT(index)); |
| 558 | out: |
| 559 | spin_unlock_irqrestore(&edev->lock, flags); |
| 560 | |
| 561 | return ret; |
MyungJoo Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 562 | } |
Chanwoo Choi | 575c2b86 | 2016-07-22 13:03:17 +0900 | [diff] [blame] | 563 | EXPORT_SYMBOL_GPL(extcon_set_state); |
MyungJoo Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 564 | |
| 565 | /** |
Chanwoo Choi | 6ab6094f | 2017-04-03 19:45:48 +0900 | [diff] [blame] | 566 | * extcon_set_state_sync() - Set the state of an external connector with sync. |
| 567 | * @edev: the extcon device |
| 568 | * @id: the unique id indicating an external connector |
| 569 | * @state: the new state of external connector. |
| 570 | * the default semantics is true: attached / false: detached. |
Chanwoo Choi | ab11af04 | 2016-07-22 13:16:34 +0900 | [diff] [blame] | 571 | * |
Chanwoo Choi | 6ab6094f | 2017-04-03 19:45:48 +0900 | [diff] [blame] | 572 | * Note that this function set the state of external connector |
| 573 | * and synchronize the state by sending a notification. |
| 574 | * |
| 575 | * Returns 0 if success or error number if fail. |
Chanwoo Choi | ab11af04 | 2016-07-22 13:16:34 +0900 | [diff] [blame] | 576 | */ |
Chanwoo Choi | 6ab6094f | 2017-04-03 19:45:48 +0900 | [diff] [blame] | 577 | int extcon_set_state_sync(struct extcon_dev *edev, unsigned int id, bool state) |
Chanwoo Choi | ab11af04 | 2016-07-22 13:16:34 +0900 | [diff] [blame] | 578 | { |
| 579 | int ret, index; |
| 580 | unsigned long flags; |
| 581 | |
| 582 | index = find_cable_index_by_id(edev, id); |
| 583 | if (index < 0) |
| 584 | return index; |
| 585 | |
| 586 | /* Check whether the external connector's state is changed. */ |
| 587 | spin_lock_irqsave(&edev->lock, flags); |
Chanwoo Choi | 6ab6094f | 2017-04-03 19:45:48 +0900 | [diff] [blame] | 588 | ret = is_extcon_changed(edev, index, state); |
Chanwoo Choi | ab11af04 | 2016-07-22 13:16:34 +0900 | [diff] [blame] | 589 | spin_unlock_irqrestore(&edev->lock, flags); |
| 590 | if (!ret) |
| 591 | return 0; |
| 592 | |
Chanwoo Choi | 6ab6094f | 2017-04-03 19:45:48 +0900 | [diff] [blame] | 593 | ret = extcon_set_state(edev, id, state); |
Chanwoo Choi | ab11af04 | 2016-07-22 13:16:34 +0900 | [diff] [blame] | 594 | if (ret < 0) |
| 595 | return ret; |
| 596 | |
| 597 | return extcon_sync(edev, id); |
| 598 | } |
| 599 | EXPORT_SYMBOL_GPL(extcon_set_state_sync); |
| 600 | |
| 601 | /** |
Chanwoo Choi | 6ab6094f | 2017-04-03 19:45:48 +0900 | [diff] [blame] | 602 | * extcon_get_property() - Get the property value of an external connector. |
| 603 | * @edev: the extcon device |
| 604 | * @id: the unique id indicating an external connector |
| 605 | * @prop: the property id indicating an extcon property |
| 606 | * @prop_val: the pointer which store the value of extcon property |
Chanwoo Choi | 792e7e9e | 2016-07-11 19:30:43 +0900 | [diff] [blame] | 607 | * |
Chanwoo Choi | 6ab6094f | 2017-04-03 19:45:48 +0900 | [diff] [blame] | 608 | * Note that when getting the property value of external connector, |
| 609 | * the external connector should be attached. If detached state, function |
| 610 | * return 0 without property value. Also, the each property should be |
| 611 | * included in the list of supported properties according to extcon type. |
Chanwoo Choi | 792e7e9e | 2016-07-11 19:30:43 +0900 | [diff] [blame] | 612 | * |
Chanwoo Choi | 6ab6094f | 2017-04-03 19:45:48 +0900 | [diff] [blame] | 613 | * Returns 0 if success or error number if fail. |
Chanwoo Choi | 792e7e9e | 2016-07-11 19:30:43 +0900 | [diff] [blame] | 614 | */ |
| 615 | int extcon_get_property(struct extcon_dev *edev, unsigned int id, |
| 616 | unsigned int prop, |
| 617 | union extcon_property_value *prop_val) |
| 618 | { |
| 619 | struct extcon_cable *cable; |
| 620 | unsigned long flags; |
| 621 | int index, ret = 0; |
| 622 | |
Andy Shevchenko | cff7499 | 2018-08-27 18:35:51 +0300 | [diff] [blame] | 623 | *prop_val = (union extcon_property_value){0}; |
Chanwoo Choi | 792e7e9e | 2016-07-11 19:30:43 +0900 | [diff] [blame] | 624 | |
| 625 | if (!edev) |
| 626 | return -EINVAL; |
| 627 | |
| 628 | /* Check whether the property is supported or not */ |
| 629 | if (!is_extcon_property_supported(id, prop)) |
| 630 | return -EINVAL; |
| 631 | |
| 632 | /* Find the cable index of external connector by using id */ |
| 633 | index = find_cable_index_by_id(edev, id); |
| 634 | if (index < 0) |
| 635 | return index; |
| 636 | |
| 637 | spin_lock_irqsave(&edev->lock, flags); |
| 638 | |
Chanwoo Choi | 7f2a0a1 | 2016-07-25 21:15:19 +0900 | [diff] [blame] | 639 | /* Check whether the property is available or not. */ |
| 640 | if (!is_extcon_property_capability(edev, id, index, prop)) { |
| 641 | spin_unlock_irqrestore(&edev->lock, flags); |
| 642 | return -EPERM; |
| 643 | } |
| 644 | |
Chanwoo Choi | 792e7e9e | 2016-07-11 19:30:43 +0900 | [diff] [blame] | 645 | /* |
| 646 | * Check whether the external connector is attached. |
| 647 | * If external connector is detached, the user can not |
| 648 | * get the property value. |
| 649 | */ |
| 650 | if (!is_extcon_attached(edev, index)) { |
| 651 | spin_unlock_irqrestore(&edev->lock, flags); |
| 652 | return 0; |
| 653 | } |
| 654 | |
| 655 | cable = &edev->cables[index]; |
| 656 | |
| 657 | /* Get the property value according to extcon type */ |
| 658 | switch (prop) { |
| 659 | case EXTCON_PROP_USB_MIN ... EXTCON_PROP_USB_MAX: |
| 660 | *prop_val = cable->usb_propval[prop - EXTCON_PROP_USB_MIN]; |
| 661 | break; |
| 662 | case EXTCON_PROP_CHG_MIN ... EXTCON_PROP_CHG_MAX: |
| 663 | *prop_val = cable->chg_propval[prop - EXTCON_PROP_CHG_MIN]; |
| 664 | break; |
| 665 | case EXTCON_PROP_JACK_MIN ... EXTCON_PROP_JACK_MAX: |
| 666 | *prop_val = cable->jack_propval[prop - EXTCON_PROP_JACK_MIN]; |
| 667 | break; |
| 668 | case EXTCON_PROP_DISP_MIN ... EXTCON_PROP_DISP_MAX: |
| 669 | *prop_val = cable->disp_propval[prop - EXTCON_PROP_DISP_MIN]; |
| 670 | break; |
| 671 | default: |
| 672 | ret = -EINVAL; |
| 673 | break; |
| 674 | } |
| 675 | |
| 676 | spin_unlock_irqrestore(&edev->lock, flags); |
| 677 | |
| 678 | return ret; |
| 679 | } |
| 680 | EXPORT_SYMBOL_GPL(extcon_get_property); |
| 681 | |
| 682 | /** |
Chanwoo Choi | 6ab6094f | 2017-04-03 19:45:48 +0900 | [diff] [blame] | 683 | * extcon_set_property() - Set the property value of an external connector. |
| 684 | * @edev: the extcon device |
| 685 | * @id: the unique id indicating an external connector |
| 686 | * @prop: the property id indicating an extcon property |
| 687 | * @prop_val: the pointer including the new value of extcon property |
Chanwoo Choi | 792e7e9e | 2016-07-11 19:30:43 +0900 | [diff] [blame] | 688 | * |
Chanwoo Choi | 6ab6094f | 2017-04-03 19:45:48 +0900 | [diff] [blame] | 689 | * Note that each property should be included in the list of supported |
| 690 | * properties according to the extcon type. |
Chanwoo Choi | 792e7e9e | 2016-07-11 19:30:43 +0900 | [diff] [blame] | 691 | * |
Chanwoo Choi | 6ab6094f | 2017-04-03 19:45:48 +0900 | [diff] [blame] | 692 | * Returns 0 if success or error number if fail. |
Chanwoo Choi | 792e7e9e | 2016-07-11 19:30:43 +0900 | [diff] [blame] | 693 | */ |
| 694 | int extcon_set_property(struct extcon_dev *edev, unsigned int id, |
| 695 | unsigned int prop, |
| 696 | union extcon_property_value prop_val) |
| 697 | { |
| 698 | struct extcon_cable *cable; |
| 699 | unsigned long flags; |
| 700 | int index, ret = 0; |
| 701 | |
| 702 | if (!edev) |
| 703 | return -EINVAL; |
| 704 | |
| 705 | /* Check whether the property is supported or not */ |
| 706 | if (!is_extcon_property_supported(id, prop)) |
| 707 | return -EINVAL; |
| 708 | |
| 709 | /* Find the cable index of external connector by using id */ |
| 710 | index = find_cable_index_by_id(edev, id); |
| 711 | if (index < 0) |
| 712 | return index; |
| 713 | |
| 714 | spin_lock_irqsave(&edev->lock, flags); |
| 715 | |
Chanwoo Choi | 7f2a0a1 | 2016-07-25 21:15:19 +0900 | [diff] [blame] | 716 | /* Check whether the property is available or not. */ |
| 717 | if (!is_extcon_property_capability(edev, id, index, prop)) { |
| 718 | spin_unlock_irqrestore(&edev->lock, flags); |
| 719 | return -EPERM; |
| 720 | } |
| 721 | |
Chanwoo Choi | 792e7e9e | 2016-07-11 19:30:43 +0900 | [diff] [blame] | 722 | cable = &edev->cables[index]; |
| 723 | |
| 724 | /* Set the property value according to extcon type */ |
| 725 | switch (prop) { |
| 726 | case EXTCON_PROP_USB_MIN ... EXTCON_PROP_USB_MAX: |
| 727 | cable->usb_propval[prop - EXTCON_PROP_USB_MIN] = prop_val; |
| 728 | break; |
| 729 | case EXTCON_PROP_CHG_MIN ... EXTCON_PROP_CHG_MAX: |
| 730 | cable->chg_propval[prop - EXTCON_PROP_CHG_MIN] = prop_val; |
| 731 | break; |
| 732 | case EXTCON_PROP_JACK_MIN ... EXTCON_PROP_JACK_MAX: |
| 733 | cable->jack_propval[prop - EXTCON_PROP_JACK_MIN] = prop_val; |
| 734 | break; |
| 735 | case EXTCON_PROP_DISP_MIN ... EXTCON_PROP_DISP_MAX: |
| 736 | cable->disp_propval[prop - EXTCON_PROP_DISP_MIN] = prop_val; |
| 737 | break; |
| 738 | default: |
| 739 | ret = -EINVAL; |
| 740 | break; |
| 741 | } |
| 742 | |
| 743 | spin_unlock_irqrestore(&edev->lock, flags); |
| 744 | |
| 745 | return ret; |
| 746 | } |
| 747 | EXPORT_SYMBOL_GPL(extcon_set_property); |
| 748 | |
| 749 | /** |
Chanwoo Choi | 6ab6094f | 2017-04-03 19:45:48 +0900 | [diff] [blame] | 750 | * extcon_set_property_sync() - Set property of an external connector with sync. |
| 751 | * @prop_val: the pointer including the new value of extcon property |
Chanwoo Choi | ab11af04 | 2016-07-22 13:16:34 +0900 | [diff] [blame] | 752 | * |
Chanwoo Choi | 6ab6094f | 2017-04-03 19:45:48 +0900 | [diff] [blame] | 753 | * Note that when setting the property value of external connector, |
| 754 | * the external connector should be attached. The each property should |
| 755 | * be included in the list of supported properties according to extcon type. |
Chanwoo Choi | ab11af04 | 2016-07-22 13:16:34 +0900 | [diff] [blame] | 756 | * |
Chanwoo Choi | 6ab6094f | 2017-04-03 19:45:48 +0900 | [diff] [blame] | 757 | * Returns 0 if success or error number if fail. |
Chanwoo Choi | ab11af04 | 2016-07-22 13:16:34 +0900 | [diff] [blame] | 758 | */ |
| 759 | int extcon_set_property_sync(struct extcon_dev *edev, unsigned int id, |
| 760 | unsigned int prop, |
| 761 | union extcon_property_value prop_val) |
| 762 | { |
| 763 | int ret; |
| 764 | |
| 765 | ret = extcon_set_property(edev, id, prop, prop_val); |
| 766 | if (ret < 0) |
| 767 | return ret; |
| 768 | |
| 769 | return extcon_sync(edev, id); |
| 770 | } |
| 771 | EXPORT_SYMBOL_GPL(extcon_set_property_sync); |
| 772 | |
| 773 | /** |
Chanwoo Choi | 6ab6094f | 2017-04-03 19:45:48 +0900 | [diff] [blame] | 774 | * extcon_get_property_capability() - Get the capability of the property |
| 775 | * for an external connector. |
| 776 | * @edev: the extcon device |
| 777 | * @id: the unique id indicating an external connector |
| 778 | * @prop: the property id indicating an extcon property |
Chanwoo Choi | 7f2a0a1 | 2016-07-25 21:15:19 +0900 | [diff] [blame] | 779 | * |
| 780 | * Returns 1 if the property is available or 0 if not available. |
| 781 | */ |
| 782 | int extcon_get_property_capability(struct extcon_dev *edev, unsigned int id, |
| 783 | unsigned int prop) |
| 784 | { |
| 785 | int index; |
| 786 | |
| 787 | if (!edev) |
| 788 | return -EINVAL; |
| 789 | |
| 790 | /* Check whether the property is supported or not */ |
| 791 | if (!is_extcon_property_supported(id, prop)) |
| 792 | return -EINVAL; |
| 793 | |
| 794 | /* Find the cable index of external connector by using id */ |
| 795 | index = find_cable_index_by_id(edev, id); |
| 796 | if (index < 0) |
| 797 | return index; |
| 798 | |
| 799 | return is_extcon_property_capability(edev, id, index, prop); |
| 800 | } |
| 801 | EXPORT_SYMBOL_GPL(extcon_get_property_capability); |
| 802 | |
| 803 | /** |
Chanwoo Choi | 6ab6094f | 2017-04-03 19:45:48 +0900 | [diff] [blame] | 804 | * extcon_set_property_capability() - Set the capability of the property |
| 805 | * for an external connector. |
| 806 | * @edev: the extcon device |
| 807 | * @id: the unique id indicating an external connector |
| 808 | * @prop: the property id indicating an extcon property |
Chanwoo Choi | 7f2a0a1 | 2016-07-25 21:15:19 +0900 | [diff] [blame] | 809 | * |
Chanwoo Choi | 6ab6094f | 2017-04-03 19:45:48 +0900 | [diff] [blame] | 810 | * Note that this function set the capability of the property |
| 811 | * for an external connector in order to mark the bit in capability |
| 812 | * bitmap which mean the available state of the property. |
Chanwoo Choi | 7f2a0a1 | 2016-07-25 21:15:19 +0900 | [diff] [blame] | 813 | * |
Chanwoo Choi | 6ab6094f | 2017-04-03 19:45:48 +0900 | [diff] [blame] | 814 | * Returns 0 if success or error number if fail. |
Chanwoo Choi | 7f2a0a1 | 2016-07-25 21:15:19 +0900 | [diff] [blame] | 815 | */ |
| 816 | int extcon_set_property_capability(struct extcon_dev *edev, unsigned int id, |
| 817 | unsigned int prop) |
| 818 | { |
| 819 | struct extcon_cable *cable; |
| 820 | int index, type, ret = 0; |
| 821 | |
| 822 | if (!edev) |
| 823 | return -EINVAL; |
| 824 | |
| 825 | /* Check whether the property is supported or not. */ |
| 826 | if (!is_extcon_property_supported(id, prop)) |
| 827 | return -EINVAL; |
| 828 | |
| 829 | /* Find the cable index of external connector by using id. */ |
| 830 | index = find_cable_index_by_id(edev, id); |
| 831 | if (index < 0) |
| 832 | return index; |
| 833 | |
| 834 | type = get_extcon_type(prop); |
| 835 | if (type < 0) |
| 836 | return type; |
| 837 | |
| 838 | cable = &edev->cables[index]; |
| 839 | |
| 840 | switch (type) { |
| 841 | case EXTCON_TYPE_USB: |
| 842 | __set_bit(prop - EXTCON_PROP_USB_MIN, cable->usb_bits); |
| 843 | break; |
| 844 | case EXTCON_TYPE_CHG: |
| 845 | __set_bit(prop - EXTCON_PROP_CHG_MIN, cable->chg_bits); |
| 846 | break; |
| 847 | case EXTCON_TYPE_JACK: |
| 848 | __set_bit(prop - EXTCON_PROP_JACK_MIN, cable->jack_bits); |
| 849 | break; |
| 850 | case EXTCON_TYPE_DISP: |
| 851 | __set_bit(prop - EXTCON_PROP_DISP_MIN, cable->disp_bits); |
| 852 | break; |
| 853 | default: |
| 854 | ret = -EINVAL; |
| 855 | } |
| 856 | |
| 857 | return ret; |
| 858 | } |
| 859 | EXPORT_SYMBOL_GPL(extcon_set_property_capability); |
| 860 | |
| 861 | /** |
Chanwoo Choi | 6ab6094f | 2017-04-03 19:45:48 +0900 | [diff] [blame] | 862 | * extcon_get_extcon_dev() - Get the extcon device instance from the name. |
| 863 | * @extcon_name: the extcon name provided with extcon_dev_register() |
| 864 | * |
| 865 | * Return the pointer of extcon device if success or ERR_PTR(err) if fail. |
Donggeun Kim | 74c5d09 | 2012-04-20 14:16:24 +0900 | [diff] [blame] | 866 | */ |
| 867 | struct extcon_dev *extcon_get_extcon_dev(const char *extcon_name) |
| 868 | { |
| 869 | struct extcon_dev *sd; |
| 870 | |
Chanwoo Choi | 7eae43a | 2015-06-21 23:48:36 +0900 | [diff] [blame] | 871 | if (!extcon_name) |
| 872 | return ERR_PTR(-EINVAL); |
| 873 | |
Donggeun Kim | 74c5d09 | 2012-04-20 14:16:24 +0900 | [diff] [blame] | 874 | mutex_lock(&extcon_dev_list_lock); |
| 875 | list_for_each_entry(sd, &extcon_dev_list, entry) { |
| 876 | if (!strcmp(sd->name, extcon_name)) |
| 877 | goto out; |
| 878 | } |
| 879 | sd = NULL; |
| 880 | out: |
| 881 | mutex_unlock(&extcon_dev_list_lock); |
| 882 | return sd; |
| 883 | } |
| 884 | EXPORT_SYMBOL_GPL(extcon_get_extcon_dev); |
| 885 | |
MyungJoo Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 886 | /** |
Chanwoo Choi | 6ab6094f | 2017-04-03 19:45:48 +0900 | [diff] [blame] | 887 | * extcon_register_notifier() - Register a notifier block to get notified by |
| 888 | * any state changes from the extcon. |
| 889 | * @edev: the extcon device |
| 890 | * @id: the unique id indicating an external connector |
| 891 | * @nb: a notifier block to be registered |
MyungJoo Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 892 | * |
| 893 | * Note that the second parameter given to the callback of nb (val) is |
Chanwoo Choi | 6ab6094f | 2017-04-03 19:45:48 +0900 | [diff] [blame] | 894 | * the current state of an external connector and the third pameter |
| 895 | * is the pointer of extcon device. |
| 896 | * |
| 897 | * Returns 0 if success or error number if fail. |
Donggeun Kim | 74c5d09 | 2012-04-20 14:16:24 +0900 | [diff] [blame] | 898 | */ |
Chanwoo Choi | 73b6ecd | 2015-06-12 11:10:06 +0900 | [diff] [blame] | 899 | int extcon_register_notifier(struct extcon_dev *edev, unsigned int id, |
Chanwoo Choi | 046050f | 2015-05-19 20:01:12 +0900 | [diff] [blame] | 900 | struct notifier_block *nb) |
Donggeun Kim | 74c5d09 | 2012-04-20 14:16:24 +0900 | [diff] [blame] | 901 | { |
Hans de Goede | 66bee35 | 2015-03-21 17:26:24 +0100 | [diff] [blame] | 902 | unsigned long flags; |
Maninder Singh | 2c8116a | 2016-08-01 14:51:30 +0530 | [diff] [blame] | 903 | int ret, idx = -EINVAL; |
Chanwoo Choi | 046050f | 2015-05-19 20:01:12 +0900 | [diff] [blame] | 904 | |
Chanwoo Choi | 01b4c9a | 2016-12-19 21:02:33 +0900 | [diff] [blame] | 905 | if (!edev || !nb) |
Chanwoo Choi | 7eae43a | 2015-06-21 23:48:36 +0900 | [diff] [blame] | 906 | return -EINVAL; |
| 907 | |
Chanwoo Choi | 01b4c9a | 2016-12-19 21:02:33 +0900 | [diff] [blame] | 908 | idx = find_cable_index_by_id(edev, id); |
| 909 | if (idx < 0) |
| 910 | return idx; |
Hans de Goede | 66bee35 | 2015-03-21 17:26:24 +0100 | [diff] [blame] | 911 | |
Chanwoo Choi | 01b4c9a | 2016-12-19 21:02:33 +0900 | [diff] [blame] | 912 | spin_lock_irqsave(&edev->lock, flags); |
| 913 | ret = raw_notifier_chain_register(&edev->nh[idx], nb); |
| 914 | spin_unlock_irqrestore(&edev->lock, flags); |
Hans de Goede | 66bee35 | 2015-03-21 17:26:24 +0100 | [diff] [blame] | 915 | |
| 916 | return ret; |
Donggeun Kim | 74c5d09 | 2012-04-20 14:16:24 +0900 | [diff] [blame] | 917 | } |
| 918 | EXPORT_SYMBOL_GPL(extcon_register_notifier); |
| 919 | |
| 920 | /** |
Chanwoo Choi | 6ab6094f | 2017-04-03 19:45:48 +0900 | [diff] [blame] | 921 | * extcon_unregister_notifier() - Unregister a notifier block from the extcon. |
| 922 | * @edev: the extcon device |
| 923 | * @id: the unique id indicating an external connector |
| 924 | * @nb: a notifier block to be registered |
| 925 | * |
| 926 | * Returns 0 if success or error number if fail. |
Donggeun Kim | 74c5d09 | 2012-04-20 14:16:24 +0900 | [diff] [blame] | 927 | */ |
Chanwoo Choi | 73b6ecd | 2015-06-12 11:10:06 +0900 | [diff] [blame] | 928 | int extcon_unregister_notifier(struct extcon_dev *edev, unsigned int id, |
Chanwoo Choi | 046050f | 2015-05-19 20:01:12 +0900 | [diff] [blame] | 929 | struct notifier_block *nb) |
Donggeun Kim | 74c5d09 | 2012-04-20 14:16:24 +0900 | [diff] [blame] | 930 | { |
Hans de Goede | 66bee35 | 2015-03-21 17:26:24 +0100 | [diff] [blame] | 931 | unsigned long flags; |
Chanwoo Choi | 046050f | 2015-05-19 20:01:12 +0900 | [diff] [blame] | 932 | int ret, idx; |
| 933 | |
Chanwoo Choi | 7eae43a | 2015-06-21 23:48:36 +0900 | [diff] [blame] | 934 | if (!edev || !nb) |
| 935 | return -EINVAL; |
| 936 | |
Chanwoo Choi | 046050f | 2015-05-19 20:01:12 +0900 | [diff] [blame] | 937 | idx = find_cable_index_by_id(edev, id); |
Stephen Boyd | a05f44c | 2016-06-23 19:34:30 +0900 | [diff] [blame] | 938 | if (idx < 0) |
| 939 | return idx; |
Hans de Goede | 66bee35 | 2015-03-21 17:26:24 +0100 | [diff] [blame] | 940 | |
| 941 | spin_lock_irqsave(&edev->lock, flags); |
Chanwoo Choi | 046050f | 2015-05-19 20:01:12 +0900 | [diff] [blame] | 942 | ret = raw_notifier_chain_unregister(&edev->nh[idx], nb); |
Hans de Goede | 66bee35 | 2015-03-21 17:26:24 +0100 | [diff] [blame] | 943 | spin_unlock_irqrestore(&edev->lock, flags); |
| 944 | |
| 945 | return ret; |
Donggeun Kim | 74c5d09 | 2012-04-20 14:16:24 +0900 | [diff] [blame] | 946 | } |
| 947 | EXPORT_SYMBOL_GPL(extcon_unregister_notifier); |
| 948 | |
Chanwoo Choi | 815429b3 | 2017-03-29 19:30:17 +0900 | [diff] [blame] | 949 | /** |
Chanwoo Choi | 6ab6094f | 2017-04-03 19:45:48 +0900 | [diff] [blame] | 950 | * extcon_register_notifier_all() - Register a notifier block for all connectors. |
| 951 | * @edev: the extcon device |
| 952 | * @nb: a notifier block to be registered |
Chanwoo Choi | 815429b3 | 2017-03-29 19:30:17 +0900 | [diff] [blame] | 953 | * |
Chanwoo Choi | 6ab6094f | 2017-04-03 19:45:48 +0900 | [diff] [blame] | 954 | * Note that this function registers a notifier block in order to receive |
| 955 | * the state change of all supported external connectors from extcon device. |
Markus Elfring | 826a47e | 2017-04-23 22:15:20 +0200 | [diff] [blame] | 956 | * And the second parameter given to the callback of nb (val) is |
Chanwoo Choi | 6ab6094f | 2017-04-03 19:45:48 +0900 | [diff] [blame] | 957 | * the current state and the third pameter is the pointer of extcon device. |
Chanwoo Choi | 815429b3 | 2017-03-29 19:30:17 +0900 | [diff] [blame] | 958 | * |
Chanwoo Choi | 6ab6094f | 2017-04-03 19:45:48 +0900 | [diff] [blame] | 959 | * Returns 0 if success or error number if fail. |
Chanwoo Choi | 815429b3 | 2017-03-29 19:30:17 +0900 | [diff] [blame] | 960 | */ |
| 961 | int extcon_register_notifier_all(struct extcon_dev *edev, |
| 962 | struct notifier_block *nb) |
| 963 | { |
| 964 | unsigned long flags; |
| 965 | int ret; |
| 966 | |
| 967 | if (!edev || !nb) |
| 968 | return -EINVAL; |
| 969 | |
| 970 | spin_lock_irqsave(&edev->lock, flags); |
| 971 | ret = raw_notifier_chain_register(&edev->nh_all, nb); |
| 972 | spin_unlock_irqrestore(&edev->lock, flags); |
| 973 | |
| 974 | return ret; |
| 975 | } |
| 976 | EXPORT_SYMBOL_GPL(extcon_register_notifier_all); |
| 977 | |
| 978 | /** |
| 979 | * extcon_unregister_notifier_all() - Unregister a notifier block from extcon. |
Chanwoo Choi | 6ab6094f | 2017-04-03 19:45:48 +0900 | [diff] [blame] | 980 | * @edev: the extcon device |
| 981 | * @nb: a notifier block to be registered |
Chanwoo Choi | 815429b3 | 2017-03-29 19:30:17 +0900 | [diff] [blame] | 982 | * |
Chanwoo Choi | 6ab6094f | 2017-04-03 19:45:48 +0900 | [diff] [blame] | 983 | * Returns 0 if success or error number if fail. |
Chanwoo Choi | 815429b3 | 2017-03-29 19:30:17 +0900 | [diff] [blame] | 984 | */ |
| 985 | int extcon_unregister_notifier_all(struct extcon_dev *edev, |
| 986 | struct notifier_block *nb) |
| 987 | { |
| 988 | unsigned long flags; |
| 989 | int ret; |
| 990 | |
| 991 | if (!edev || !nb) |
| 992 | return -EINVAL; |
| 993 | |
| 994 | spin_lock_irqsave(&edev->lock, flags); |
| 995 | ret = raw_notifier_chain_unregister(&edev->nh_all, nb); |
| 996 | spin_unlock_irqrestore(&edev->lock, flags); |
| 997 | |
| 998 | return ret; |
| 999 | } |
| 1000 | EXPORT_SYMBOL_GPL(extcon_unregister_notifier_all); |
| 1001 | |
Greg Kroah-Hartman | af01da0 | 2013-07-24 15:05:10 -0700 | [diff] [blame] | 1002 | static struct attribute *extcon_attrs[] = { |
| 1003 | &dev_attr_state.attr, |
| 1004 | &dev_attr_name.attr, |
| 1005 | NULL, |
MyungJoo Ham | de55d87 | 2012-04-20 14:16:22 +0900 | [diff] [blame] | 1006 | }; |
Greg Kroah-Hartman | af01da0 | 2013-07-24 15:05:10 -0700 | [diff] [blame] | 1007 | ATTRIBUTE_GROUPS(extcon); |
MyungJoo Ham | de55d87 | 2012-04-20 14:16:22 +0900 | [diff] [blame] | 1008 | |
| 1009 | static int create_extcon_class(void) |
| 1010 | { |
| 1011 | if (!extcon_class) { |
| 1012 | extcon_class = class_create(THIS_MODULE, "extcon"); |
| 1013 | if (IS_ERR(extcon_class)) |
| 1014 | return PTR_ERR(extcon_class); |
Greg Kroah-Hartman | af01da0 | 2013-07-24 15:05:10 -0700 | [diff] [blame] | 1015 | extcon_class->dev_groups = extcon_groups; |
MyungJoo Ham | de55d87 | 2012-04-20 14:16:22 +0900 | [diff] [blame] | 1016 | } |
| 1017 | |
| 1018 | return 0; |
| 1019 | } |
| 1020 | |
MyungJoo Ham | de55d87 | 2012-04-20 14:16:22 +0900 | [diff] [blame] | 1021 | static void extcon_dev_release(struct device *dev) |
| 1022 | { |
MyungJoo Ham | de55d87 | 2012-04-20 14:16:22 +0900 | [diff] [blame] | 1023 | } |
| 1024 | |
MyungJoo Ham | bde68e6 | 2012-04-20 14:16:26 +0900 | [diff] [blame] | 1025 | static const char *muex_name = "mutually_exclusive"; |
MyungJoo Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 1026 | static void dummy_sysfs_dev_release(struct device *dev) |
| 1027 | { |
| 1028 | } |
| 1029 | |
Chanwoo Choi | a9af652 | 2014-04-24 19:46:49 +0900 | [diff] [blame] | 1030 | /* |
| 1031 | * extcon_dev_allocate() - Allocate the memory of extcon device. |
Chanwoo Choi | 6ab6094f | 2017-04-03 19:45:48 +0900 | [diff] [blame] | 1032 | * @supported_cable: the array of the supported external connectors |
| 1033 | * ending with EXTCON_NONE. |
Chanwoo Choi | a9af652 | 2014-04-24 19:46:49 +0900 | [diff] [blame] | 1034 | * |
Chanwoo Choi | 6ab6094f | 2017-04-03 19:45:48 +0900 | [diff] [blame] | 1035 | * Note that this function allocates the memory for extcon device |
| 1036 | * and initialize default setting for the extcon device. |
Chanwoo Choi | a9af652 | 2014-04-24 19:46:49 +0900 | [diff] [blame] | 1037 | * |
Chanwoo Choi | 6ab6094f | 2017-04-03 19:45:48 +0900 | [diff] [blame] | 1038 | * Returns the pointer memory of allocated extcon_dev if success |
| 1039 | * or ERR_PTR(err) if fail. |
Chanwoo Choi | a9af652 | 2014-04-24 19:46:49 +0900 | [diff] [blame] | 1040 | */ |
Chanwoo Choi | 73b6ecd | 2015-06-12 11:10:06 +0900 | [diff] [blame] | 1041 | struct extcon_dev *extcon_dev_allocate(const unsigned int *supported_cable) |
Chanwoo Choi | a9af652 | 2014-04-24 19:46:49 +0900 | [diff] [blame] | 1042 | { |
| 1043 | struct extcon_dev *edev; |
| 1044 | |
Chanwoo Choi | 7eae43a | 2015-06-21 23:48:36 +0900 | [diff] [blame] | 1045 | if (!supported_cable) |
| 1046 | return ERR_PTR(-EINVAL); |
| 1047 | |
Chanwoo Choi | a9af652 | 2014-04-24 19:46:49 +0900 | [diff] [blame] | 1048 | edev = kzalloc(sizeof(*edev), GFP_KERNEL); |
| 1049 | if (!edev) |
| 1050 | return ERR_PTR(-ENOMEM); |
| 1051 | |
| 1052 | edev->max_supported = 0; |
| 1053 | edev->supported_cable = supported_cable; |
| 1054 | |
| 1055 | return edev; |
| 1056 | } |
| 1057 | |
| 1058 | /* |
| 1059 | * extcon_dev_free() - Free the memory of extcon device. |
Chanwoo Choi | 6ab6094f | 2017-04-03 19:45:48 +0900 | [diff] [blame] | 1060 | * @edev: the extcon device |
Chanwoo Choi | a9af652 | 2014-04-24 19:46:49 +0900 | [diff] [blame] | 1061 | */ |
| 1062 | void extcon_dev_free(struct extcon_dev *edev) |
| 1063 | { |
| 1064 | kfree(edev); |
| 1065 | } |
| 1066 | EXPORT_SYMBOL_GPL(extcon_dev_free); |
| 1067 | |
MyungJoo Ham | de55d87 | 2012-04-20 14:16:22 +0900 | [diff] [blame] | 1068 | /** |
Chanwoo Choi | 6ab6094f | 2017-04-03 19:45:48 +0900 | [diff] [blame] | 1069 | * extcon_dev_register() - Register an new extcon device |
| 1070 | * @edev: the extcon device to be registered |
MyungJoo Ham | de55d87 | 2012-04-20 14:16:22 +0900 | [diff] [blame] | 1071 | * |
| 1072 | * Among the members of edev struct, please set the "user initializing data" |
MyungJoo Ham | de55d87 | 2012-04-20 14:16:22 +0900 | [diff] [blame] | 1073 | * do not set the values of "internal data", which are initialized by |
| 1074 | * this function. |
Chanwoo Choi | 6ab6094f | 2017-04-03 19:45:48 +0900 | [diff] [blame] | 1075 | * |
| 1076 | * Note that before calling this funciton, have to allocate the memory |
| 1077 | * of an extcon device by using the extcon_dev_allocate(). And the extcon |
| 1078 | * dev should include the supported_cable information. |
| 1079 | * |
| 1080 | * Returns 0 if success or error number if fail. |
MyungJoo Ham | de55d87 | 2012-04-20 14:16:22 +0900 | [diff] [blame] | 1081 | */ |
Chanwoo Choi | 42d7d75 | 2013-09-27 09:20:26 +0900 | [diff] [blame] | 1082 | int extcon_dev_register(struct extcon_dev *edev) |
MyungJoo Ham | de55d87 | 2012-04-20 14:16:22 +0900 | [diff] [blame] | 1083 | { |
MyungJoo Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 1084 | int ret, index = 0; |
Chanwoo Choi | 71c3ffa | 2015-04-15 15:02:01 +0900 | [diff] [blame] | 1085 | static atomic_t edev_no = ATOMIC_INIT(-1); |
MyungJoo Ham | de55d87 | 2012-04-20 14:16:22 +0900 | [diff] [blame] | 1086 | |
| 1087 | if (!extcon_class) { |
| 1088 | ret = create_extcon_class(); |
| 1089 | if (ret < 0) |
| 1090 | return ret; |
| 1091 | } |
| 1092 | |
Chanwoo Choi | 7eae43a | 2015-06-21 23:48:36 +0900 | [diff] [blame] | 1093 | if (!edev || !edev->supported_cable) |
Chanwoo Choi | 2a9de9c | 2015-04-24 19:16:05 +0900 | [diff] [blame] | 1094 | return -EINVAL; |
MyungJoo Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 1095 | |
Chanwoo Choi | 2a9de9c | 2015-04-24 19:16:05 +0900 | [diff] [blame] | 1096 | for (; edev->supported_cable[index] != EXTCON_NONE; index++); |
| 1097 | |
| 1098 | edev->max_supported = index; |
MyungJoo Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 1099 | if (index > SUPPORTED_CABLE_MAX) { |
Chanwoo Choi | 2a9de9c | 2015-04-24 19:16:05 +0900 | [diff] [blame] | 1100 | dev_err(&edev->dev, |
| 1101 | "exceed the maximum number of supported cables\n"); |
MyungJoo Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 1102 | return -EINVAL; |
| 1103 | } |
| 1104 | |
Chanwoo Choi | dae6165 | 2013-09-27 09:19:40 +0900 | [diff] [blame] | 1105 | edev->dev.class = extcon_class; |
| 1106 | edev->dev.release = extcon_dev_release; |
MyungJoo Ham | de55d87 | 2012-04-20 14:16:22 +0900 | [diff] [blame] | 1107 | |
Chanwoo Choi | 71c3ffa | 2015-04-15 15:02:01 +0900 | [diff] [blame] | 1108 | edev->name = dev_name(edev->dev.parent); |
Chanwoo Choi | 42d7d75 | 2013-09-27 09:20:26 +0900 | [diff] [blame] | 1109 | if (IS_ERR_OR_NULL(edev->name)) { |
| 1110 | dev_err(&edev->dev, |
| 1111 | "extcon device name is null\n"); |
| 1112 | return -EINVAL; |
| 1113 | } |
Chanwoo Choi | 71c3ffa | 2015-04-15 15:02:01 +0900 | [diff] [blame] | 1114 | dev_set_name(&edev->dev, "extcon%lu", |
| 1115 | (unsigned long)atomic_inc_return(&edev_no)); |
MyungJoo Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 1116 | |
| 1117 | if (edev->max_supported) { |
MyungJoo Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 1118 | char *str; |
| 1119 | struct extcon_cable *cable; |
| 1120 | |
Kees Cook | 6396bb2 | 2018-06-12 14:03:40 -0700 | [diff] [blame] | 1121 | edev->cables = kcalloc(edev->max_supported, |
| 1122 | sizeof(struct extcon_cable), |
| 1123 | GFP_KERNEL); |
MyungJoo Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 1124 | if (!edev->cables) { |
| 1125 | ret = -ENOMEM; |
| 1126 | goto err_sysfs_alloc; |
| 1127 | } |
| 1128 | for (index = 0; index < edev->max_supported; index++) { |
| 1129 | cable = &edev->cables[index]; |
| 1130 | |
Andy Shevchenko | 69f75a4 | 2018-08-27 18:35:52 +0300 | [diff] [blame] | 1131 | str = kasprintf(GFP_KERNEL, "cable.%d", index); |
MyungJoo Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 1132 | if (!str) { |
| 1133 | for (index--; index >= 0; index--) { |
| 1134 | cable = &edev->cables[index]; |
| 1135 | kfree(cable->attr_g.name); |
| 1136 | } |
| 1137 | ret = -ENOMEM; |
| 1138 | |
| 1139 | goto err_alloc_cables; |
| 1140 | } |
MyungJoo Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 1141 | |
| 1142 | cable->edev = edev; |
| 1143 | cable->cable_index = index; |
| 1144 | cable->attrs[0] = &cable->attr_name.attr; |
| 1145 | cable->attrs[1] = &cable->attr_state.attr; |
| 1146 | cable->attrs[2] = NULL; |
| 1147 | cable->attr_g.name = str; |
| 1148 | cable->attr_g.attrs = cable->attrs; |
| 1149 | |
Mark Brown | 9baf322 | 2012-08-16 20:03:21 +0100 | [diff] [blame] | 1150 | sysfs_attr_init(&cable->attr_name.attr); |
MyungJoo Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 1151 | cable->attr_name.attr.name = "name"; |
| 1152 | cable->attr_name.attr.mode = 0444; |
| 1153 | cable->attr_name.show = cable_name_show; |
| 1154 | |
Mark Brown | 9baf322 | 2012-08-16 20:03:21 +0100 | [diff] [blame] | 1155 | sysfs_attr_init(&cable->attr_state.attr); |
MyungJoo Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 1156 | cable->attr_state.attr.name = "state"; |
Chanwoo Choi | ea9dd9d | 2013-05-22 19:31:59 +0900 | [diff] [blame] | 1157 | cable->attr_state.attr.mode = 0444; |
MyungJoo Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 1158 | cable->attr_state.show = cable_state_show; |
MyungJoo Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 1159 | } |
| 1160 | } |
| 1161 | |
MyungJoo Ham | bde68e6 | 2012-04-20 14:16:26 +0900 | [diff] [blame] | 1162 | if (edev->max_supported && edev->mutually_exclusive) { |
MyungJoo Ham | bde68e6 | 2012-04-20 14:16:26 +0900 | [diff] [blame] | 1163 | char *name; |
| 1164 | |
| 1165 | /* Count the size of mutually_exclusive array */ |
| 1166 | for (index = 0; edev->mutually_exclusive[index]; index++) |
| 1167 | ; |
| 1168 | |
Kees Cook | 6396bb2 | 2018-06-12 14:03:40 -0700 | [diff] [blame] | 1169 | edev->attrs_muex = kcalloc(index + 1, |
| 1170 | sizeof(struct attribute *), |
| 1171 | GFP_KERNEL); |
MyungJoo Ham | bde68e6 | 2012-04-20 14:16:26 +0900 | [diff] [blame] | 1172 | if (!edev->attrs_muex) { |
| 1173 | ret = -ENOMEM; |
| 1174 | goto err_muex; |
| 1175 | } |
| 1176 | |
Kees Cook | 6396bb2 | 2018-06-12 14:03:40 -0700 | [diff] [blame] | 1177 | edev->d_attrs_muex = kcalloc(index, |
| 1178 | sizeof(struct device_attribute), |
| 1179 | GFP_KERNEL); |
MyungJoo Ham | bde68e6 | 2012-04-20 14:16:26 +0900 | [diff] [blame] | 1180 | if (!edev->d_attrs_muex) { |
| 1181 | ret = -ENOMEM; |
| 1182 | kfree(edev->attrs_muex); |
| 1183 | goto err_muex; |
| 1184 | } |
| 1185 | |
| 1186 | for (index = 0; edev->mutually_exclusive[index]; index++) { |
Andy Shevchenko | 69f75a4 | 2018-08-27 18:35:52 +0300 | [diff] [blame] | 1187 | name = kasprintf(GFP_KERNEL, "0x%x", |
| 1188 | edev->mutually_exclusive[index]); |
MyungJoo Ham | bde68e6 | 2012-04-20 14:16:26 +0900 | [diff] [blame] | 1189 | if (!name) { |
| 1190 | for (index--; index >= 0; index--) { |
| 1191 | kfree(edev->d_attrs_muex[index].attr. |
| 1192 | name); |
| 1193 | } |
| 1194 | kfree(edev->d_attrs_muex); |
| 1195 | kfree(edev->attrs_muex); |
| 1196 | ret = -ENOMEM; |
| 1197 | goto err_muex; |
| 1198 | } |
Mark Brown | 9baf322 | 2012-08-16 20:03:21 +0100 | [diff] [blame] | 1199 | sysfs_attr_init(&edev->d_attrs_muex[index].attr); |
MyungJoo Ham | bde68e6 | 2012-04-20 14:16:26 +0900 | [diff] [blame] | 1200 | edev->d_attrs_muex[index].attr.name = name; |
| 1201 | edev->d_attrs_muex[index].attr.mode = 0000; |
| 1202 | edev->attrs_muex[index] = &edev->d_attrs_muex[index] |
| 1203 | .attr; |
| 1204 | } |
| 1205 | edev->attr_g_muex.name = muex_name; |
| 1206 | edev->attr_g_muex.attrs = edev->attrs_muex; |
| 1207 | |
| 1208 | } |
| 1209 | |
MyungJoo Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 1210 | if (edev->max_supported) { |
| 1211 | edev->extcon_dev_type.groups = |
Kees Cook | 6396bb2 | 2018-06-12 14:03:40 -0700 | [diff] [blame] | 1212 | kcalloc(edev->max_supported + 2, |
| 1213 | sizeof(struct attribute_group *), |
| 1214 | GFP_KERNEL); |
MyungJoo Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 1215 | if (!edev->extcon_dev_type.groups) { |
| 1216 | ret = -ENOMEM; |
| 1217 | goto err_alloc_groups; |
| 1218 | } |
| 1219 | |
Chanwoo Choi | dae6165 | 2013-09-27 09:19:40 +0900 | [diff] [blame] | 1220 | edev->extcon_dev_type.name = dev_name(&edev->dev); |
MyungJoo Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 1221 | edev->extcon_dev_type.release = dummy_sysfs_dev_release; |
| 1222 | |
| 1223 | for (index = 0; index < edev->max_supported; index++) |
| 1224 | edev->extcon_dev_type.groups[index] = |
| 1225 | &edev->cables[index].attr_g; |
MyungJoo Ham | bde68e6 | 2012-04-20 14:16:26 +0900 | [diff] [blame] | 1226 | if (edev->mutually_exclusive) |
| 1227 | edev->extcon_dev_type.groups[index] = |
| 1228 | &edev->attr_g_muex; |
MyungJoo Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 1229 | |
Chanwoo Choi | dae6165 | 2013-09-27 09:19:40 +0900 | [diff] [blame] | 1230 | edev->dev.type = &edev->extcon_dev_type; |
MyungJoo Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 1231 | } |
| 1232 | |
Chanwoo Choi | dae6165 | 2013-09-27 09:19:40 +0900 | [diff] [blame] | 1233 | ret = device_register(&edev->dev); |
MyungJoo Ham | de55d87 | 2012-04-20 14:16:22 +0900 | [diff] [blame] | 1234 | if (ret) { |
Chanwoo Choi | dae6165 | 2013-09-27 09:19:40 +0900 | [diff] [blame] | 1235 | put_device(&edev->dev); |
MyungJoo Ham | de55d87 | 2012-04-20 14:16:22 +0900 | [diff] [blame] | 1236 | goto err_dev; |
| 1237 | } |
MyungJoo Ham | de55d87 | 2012-04-20 14:16:22 +0900 | [diff] [blame] | 1238 | |
MyungJoo Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 1239 | spin_lock_init(&edev->lock); |
Markus Elfring | 3f5071a | 2017-04-23 20:54:11 +0200 | [diff] [blame] | 1240 | edev->nh = devm_kcalloc(&edev->dev, edev->max_supported, |
| 1241 | sizeof(*edev->nh), GFP_KERNEL); |
Chanwoo Choi | 046050f | 2015-05-19 20:01:12 +0900 | [diff] [blame] | 1242 | if (!edev->nh) { |
| 1243 | ret = -ENOMEM; |
| 1244 | goto err_dev; |
| 1245 | } |
| 1246 | |
| 1247 | for (index = 0; index < edev->max_supported; index++) |
| 1248 | RAW_INIT_NOTIFIER_HEAD(&edev->nh[index]); |
Donggeun Kim | 74c5d09 | 2012-04-20 14:16:24 +0900 | [diff] [blame] | 1249 | |
Chanwoo Choi | 815429b3 | 2017-03-29 19:30:17 +0900 | [diff] [blame] | 1250 | RAW_INIT_NOTIFIER_HEAD(&edev->nh_all); |
| 1251 | |
Chanwoo Choi | dae6165 | 2013-09-27 09:19:40 +0900 | [diff] [blame] | 1252 | dev_set_drvdata(&edev->dev, edev); |
MyungJoo Ham | de55d87 | 2012-04-20 14:16:22 +0900 | [diff] [blame] | 1253 | edev->state = 0; |
Donggeun Kim | 74c5d09 | 2012-04-20 14:16:24 +0900 | [diff] [blame] | 1254 | |
| 1255 | mutex_lock(&extcon_dev_list_lock); |
| 1256 | list_add(&edev->entry, &extcon_dev_list); |
| 1257 | mutex_unlock(&extcon_dev_list_lock); |
| 1258 | |
MyungJoo Ham | de55d87 | 2012-04-20 14:16:22 +0900 | [diff] [blame] | 1259 | return 0; |
| 1260 | |
| 1261 | err_dev: |
MyungJoo Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 1262 | if (edev->max_supported) |
| 1263 | kfree(edev->extcon_dev_type.groups); |
| 1264 | err_alloc_groups: |
MyungJoo Ham | bde68e6 | 2012-04-20 14:16:26 +0900 | [diff] [blame] | 1265 | if (edev->max_supported && edev->mutually_exclusive) { |
| 1266 | for (index = 0; edev->mutually_exclusive[index]; index++) |
| 1267 | kfree(edev->d_attrs_muex[index].attr.name); |
| 1268 | kfree(edev->d_attrs_muex); |
| 1269 | kfree(edev->attrs_muex); |
| 1270 | } |
| 1271 | err_muex: |
MyungJoo Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 1272 | for (index = 0; index < edev->max_supported; index++) |
| 1273 | kfree(edev->cables[index].attr_g.name); |
| 1274 | err_alloc_cables: |
| 1275 | if (edev->max_supported) |
| 1276 | kfree(edev->cables); |
| 1277 | err_sysfs_alloc: |
MyungJoo Ham | de55d87 | 2012-04-20 14:16:22 +0900 | [diff] [blame] | 1278 | return ret; |
| 1279 | } |
| 1280 | EXPORT_SYMBOL_GPL(extcon_dev_register); |
| 1281 | |
| 1282 | /** |
| 1283 | * extcon_dev_unregister() - Unregister the extcon device. |
Chanwoo Choi | 6ab6094f | 2017-04-03 19:45:48 +0900 | [diff] [blame] | 1284 | * @edev: the extcon device to be unregistered. |
MyungJoo Ham | de55d87 | 2012-04-20 14:16:22 +0900 | [diff] [blame] | 1285 | * |
| 1286 | * Note that this does not call kfree(edev) because edev was not allocated |
| 1287 | * by this class. |
| 1288 | */ |
| 1289 | void extcon_dev_unregister(struct extcon_dev *edev) |
| 1290 | { |
anish kumar | 57e7cd3 | 2012-10-22 09:43:33 +0900 | [diff] [blame] | 1291 | int index; |
| 1292 | |
Chanwoo Choi | 7eae43a | 2015-06-21 23:48:36 +0900 | [diff] [blame] | 1293 | if (!edev) |
| 1294 | return; |
| 1295 | |
anish kumar | 57e7cd3 | 2012-10-22 09:43:33 +0900 | [diff] [blame] | 1296 | mutex_lock(&extcon_dev_list_lock); |
| 1297 | list_del(&edev->entry); |
| 1298 | mutex_unlock(&extcon_dev_list_lock); |
| 1299 | |
Chanwoo Choi | dae6165 | 2013-09-27 09:19:40 +0900 | [diff] [blame] | 1300 | if (IS_ERR_OR_NULL(get_device(&edev->dev))) { |
| 1301 | dev_err(&edev->dev, "Failed to unregister extcon_dev (%s)\n", |
| 1302 | dev_name(&edev->dev)); |
anish kumar | 57e7cd3 | 2012-10-22 09:43:33 +0900 | [diff] [blame] | 1303 | return; |
| 1304 | } |
| 1305 | |
Wang, Xiaoming | 7585ca0 | 2013-11-01 18:48:14 -0400 | [diff] [blame] | 1306 | device_unregister(&edev->dev); |
| 1307 | |
anish kumar | 57e7cd3 | 2012-10-22 09:43:33 +0900 | [diff] [blame] | 1308 | if (edev->mutually_exclusive && edev->max_supported) { |
| 1309 | for (index = 0; edev->mutually_exclusive[index]; |
| 1310 | index++) |
| 1311 | kfree(edev->d_attrs_muex[index].attr.name); |
| 1312 | kfree(edev->d_attrs_muex); |
| 1313 | kfree(edev->attrs_muex); |
| 1314 | } |
| 1315 | |
| 1316 | for (index = 0; index < edev->max_supported; index++) |
| 1317 | kfree(edev->cables[index].attr_g.name); |
| 1318 | |
| 1319 | if (edev->max_supported) { |
| 1320 | kfree(edev->extcon_dev_type.groups); |
| 1321 | kfree(edev->cables); |
| 1322 | } |
| 1323 | |
Chanwoo Choi | dae6165 | 2013-09-27 09:19:40 +0900 | [diff] [blame] | 1324 | put_device(&edev->dev); |
MyungJoo Ham | de55d87 | 2012-04-20 14:16:22 +0900 | [diff] [blame] | 1325 | } |
| 1326 | EXPORT_SYMBOL_GPL(extcon_dev_unregister); |
| 1327 | |
Chanwoo Choi | 1ad94ff | 2014-03-18 19:55:46 +0900 | [diff] [blame] | 1328 | #ifdef CONFIG_OF |
Andrzej Hajda | 370ed7a | 2018-02-27 13:22:07 +0100 | [diff] [blame] | 1329 | |
| 1330 | /* |
| 1331 | * extcon_find_edev_by_node - Find the extcon device from devicetree. |
| 1332 | * @node : OF node identifying edev |
| 1333 | * |
| 1334 | * Return the pointer of extcon device if success or ERR_PTR(err) if fail. |
| 1335 | */ |
| 1336 | struct extcon_dev *extcon_find_edev_by_node(struct device_node *node) |
| 1337 | { |
| 1338 | struct extcon_dev *edev; |
| 1339 | |
| 1340 | mutex_lock(&extcon_dev_list_lock); |
| 1341 | list_for_each_entry(edev, &extcon_dev_list, entry) |
| 1342 | if (edev->dev.parent && edev->dev.parent->of_node == node) |
| 1343 | goto out; |
| 1344 | edev = ERR_PTR(-EPROBE_DEFER); |
| 1345 | out: |
| 1346 | mutex_unlock(&extcon_dev_list_lock); |
| 1347 | |
| 1348 | return edev; |
| 1349 | } |
| 1350 | |
Chanwoo Choi | 1ad94ff | 2014-03-18 19:55:46 +0900 | [diff] [blame] | 1351 | /* |
Chanwoo Choi | 6ab6094f | 2017-04-03 19:45:48 +0900 | [diff] [blame] | 1352 | * extcon_get_edev_by_phandle - Get the extcon device from devicetree. |
| 1353 | * @dev : the instance to the given device |
| 1354 | * @index : the index into list of extcon_dev |
Chanwoo Choi | 1ad94ff | 2014-03-18 19:55:46 +0900 | [diff] [blame] | 1355 | * |
Chanwoo Choi | 6ab6094f | 2017-04-03 19:45:48 +0900 | [diff] [blame] | 1356 | * Return the pointer of extcon device if success or ERR_PTR(err) if fail. |
Chanwoo Choi | 1ad94ff | 2014-03-18 19:55:46 +0900 | [diff] [blame] | 1357 | */ |
| 1358 | struct extcon_dev *extcon_get_edev_by_phandle(struct device *dev, int index) |
| 1359 | { |
| 1360 | struct device_node *node; |
| 1361 | struct extcon_dev *edev; |
| 1362 | |
Chanwoo Choi | 7eae43a | 2015-06-21 23:48:36 +0900 | [diff] [blame] | 1363 | if (!dev) |
| 1364 | return ERR_PTR(-EINVAL); |
| 1365 | |
Chanwoo Choi | 1ad94ff | 2014-03-18 19:55:46 +0900 | [diff] [blame] | 1366 | if (!dev->of_node) { |
Stephen Boyd | e8752b7 | 2016-07-05 11:57:05 -0700 | [diff] [blame] | 1367 | dev_dbg(dev, "device does not have a device node entry\n"); |
Chanwoo Choi | 1ad94ff | 2014-03-18 19:55:46 +0900 | [diff] [blame] | 1368 | return ERR_PTR(-EINVAL); |
| 1369 | } |
| 1370 | |
| 1371 | node = of_parse_phandle(dev->of_node, "extcon", index); |
| 1372 | if (!node) { |
Rob Herring | 5c27036 | 2017-07-18 16:43:00 -0500 | [diff] [blame] | 1373 | dev_dbg(dev, "failed to get phandle in %pOF node\n", |
| 1374 | dev->of_node); |
Chanwoo Choi | 1ad94ff | 2014-03-18 19:55:46 +0900 | [diff] [blame] | 1375 | return ERR_PTR(-ENODEV); |
| 1376 | } |
| 1377 | |
Andrzej Hajda | 370ed7a | 2018-02-27 13:22:07 +0100 | [diff] [blame] | 1378 | edev = extcon_find_edev_by_node(node); |
Peter Chen | 5d5c4c1 | 2016-07-01 18:41:55 +0900 | [diff] [blame] | 1379 | of_node_put(node); |
Chanwoo Choi | 1ad94ff | 2014-03-18 19:55:46 +0900 | [diff] [blame] | 1380 | |
Andrzej Hajda | 370ed7a | 2018-02-27 13:22:07 +0100 | [diff] [blame] | 1381 | return edev; |
Chanwoo Choi | 1ad94ff | 2014-03-18 19:55:46 +0900 | [diff] [blame] | 1382 | } |
Andrzej Hajda | 370ed7a | 2018-02-27 13:22:07 +0100 | [diff] [blame] | 1383 | |
Chanwoo Choi | 1ad94ff | 2014-03-18 19:55:46 +0900 | [diff] [blame] | 1384 | #else |
Andrzej Hajda | 370ed7a | 2018-02-27 13:22:07 +0100 | [diff] [blame] | 1385 | |
| 1386 | struct extcon_dev *extcon_find_edev_by_node(struct device_node *node) |
| 1387 | { |
| 1388 | return ERR_PTR(-ENOSYS); |
| 1389 | } |
| 1390 | |
Chanwoo Choi | 1ad94ff | 2014-03-18 19:55:46 +0900 | [diff] [blame] | 1391 | struct extcon_dev *extcon_get_edev_by_phandle(struct device *dev, int index) |
| 1392 | { |
| 1393 | return ERR_PTR(-ENOSYS); |
| 1394 | } |
Andrzej Hajda | 370ed7a | 2018-02-27 13:22:07 +0100 | [diff] [blame] | 1395 | |
Chanwoo Choi | 1ad94ff | 2014-03-18 19:55:46 +0900 | [diff] [blame] | 1396 | #endif /* CONFIG_OF */ |
Andrzej Hajda | 370ed7a | 2018-02-27 13:22:07 +0100 | [diff] [blame] | 1397 | |
| 1398 | EXPORT_SYMBOL_GPL(extcon_find_edev_by_node); |
Chanwoo Choi | 1ad94ff | 2014-03-18 19:55:46 +0900 | [diff] [blame] | 1399 | EXPORT_SYMBOL_GPL(extcon_get_edev_by_phandle); |
| 1400 | |
Chanwoo Choi | 707d755 | 2015-04-15 13:57:51 +0900 | [diff] [blame] | 1401 | /** |
| 1402 | * extcon_get_edev_name() - Get the name of the extcon device. |
| 1403 | * @edev: the extcon device |
| 1404 | */ |
| 1405 | const char *extcon_get_edev_name(struct extcon_dev *edev) |
| 1406 | { |
| 1407 | return !edev ? NULL : edev->name; |
| 1408 | } |
| 1409 | |
MyungJoo Ham | de55d87 | 2012-04-20 14:16:22 +0900 | [diff] [blame] | 1410 | static int __init extcon_class_init(void) |
| 1411 | { |
| 1412 | return create_extcon_class(); |
| 1413 | } |
| 1414 | module_init(extcon_class_init); |
| 1415 | |
| 1416 | static void __exit extcon_class_exit(void) |
| 1417 | { |
MyungJoo Ham | de55d87 | 2012-04-20 14:16:22 +0900 | [diff] [blame] | 1418 | class_destroy(extcon_class); |
| 1419 | } |
| 1420 | module_exit(extcon_class_exit); |
| 1421 | |
Chanwoo Choi | 2a9de9c | 2015-04-24 19:16:05 +0900 | [diff] [blame] | 1422 | MODULE_AUTHOR("Chanwoo Choi <cw00.choi@samsung.com>"); |
MyungJoo Ham | de55d87 | 2012-04-20 14:16:22 +0900 | [diff] [blame] | 1423 | MODULE_AUTHOR("MyungJoo Ham <myungjoo.ham@samsung.com>"); |
Chanwoo Choi | 6ab6094f | 2017-04-03 19:45:48 +0900 | [diff] [blame] | 1424 | MODULE_DESCRIPTION("External Connector (extcon) framework"); |
| 1425 | MODULE_LICENSE("GPL v2"); |