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 | { |
Alexander Stein | 2da3db7 | 2021-11-23 15:53:01 +0100 | [diff] [blame] | 579 | int ret; |
Chanwoo Choi | ab11af04 | 2016-07-22 13:16:34 +0900 | [diff] [blame] | 580 | |
Chanwoo Choi | 6ab6094f | 2017-04-03 19:45:48 +0900 | [diff] [blame] | 581 | ret = extcon_set_state(edev, id, state); |
Chanwoo Choi | ab11af04 | 2016-07-22 13:16:34 +0900 | [diff] [blame] | 582 | if (ret < 0) |
| 583 | return ret; |
| 584 | |
| 585 | return extcon_sync(edev, id); |
| 586 | } |
| 587 | EXPORT_SYMBOL_GPL(extcon_set_state_sync); |
| 588 | |
| 589 | /** |
Chanwoo Choi | 6ab6094f | 2017-04-03 19:45:48 +0900 | [diff] [blame] | 590 | * extcon_get_property() - Get the property value of an external connector. |
| 591 | * @edev: the extcon device |
| 592 | * @id: the unique id indicating an external connector |
| 593 | * @prop: the property id indicating an extcon property |
| 594 | * @prop_val: the pointer which store the value of extcon property |
Chanwoo Choi | 792e7e9e | 2016-07-11 19:30:43 +0900 | [diff] [blame] | 595 | * |
Chanwoo Choi | 6ab6094f | 2017-04-03 19:45:48 +0900 | [diff] [blame] | 596 | * Note that when getting the property value of external connector, |
| 597 | * the external connector should be attached. If detached state, function |
| 598 | * return 0 without property value. Also, the each property should be |
| 599 | * included in the list of supported properties according to extcon type. |
Chanwoo Choi | 792e7e9e | 2016-07-11 19:30:43 +0900 | [diff] [blame] | 600 | * |
Chanwoo Choi | 6ab6094f | 2017-04-03 19:45:48 +0900 | [diff] [blame] | 601 | * Returns 0 if success or error number if fail. |
Chanwoo Choi | 792e7e9e | 2016-07-11 19:30:43 +0900 | [diff] [blame] | 602 | */ |
| 603 | int extcon_get_property(struct extcon_dev *edev, unsigned int id, |
| 604 | unsigned int prop, |
| 605 | union extcon_property_value *prop_val) |
| 606 | { |
| 607 | struct extcon_cable *cable; |
| 608 | unsigned long flags; |
| 609 | int index, ret = 0; |
| 610 | |
Andy Shevchenko | cff7499 | 2018-08-27 18:35:51 +0300 | [diff] [blame] | 611 | *prop_val = (union extcon_property_value){0}; |
Chanwoo Choi | 792e7e9e | 2016-07-11 19:30:43 +0900 | [diff] [blame] | 612 | |
| 613 | if (!edev) |
| 614 | return -EINVAL; |
| 615 | |
| 616 | /* Check whether the property is supported or not */ |
| 617 | if (!is_extcon_property_supported(id, prop)) |
| 618 | return -EINVAL; |
| 619 | |
| 620 | /* Find the cable index of external connector by using id */ |
| 621 | index = find_cable_index_by_id(edev, id); |
| 622 | if (index < 0) |
| 623 | return index; |
| 624 | |
| 625 | spin_lock_irqsave(&edev->lock, flags); |
| 626 | |
Chanwoo Choi | 7f2a0a1 | 2016-07-25 21:15:19 +0900 | [diff] [blame] | 627 | /* Check whether the property is available or not. */ |
| 628 | if (!is_extcon_property_capability(edev, id, index, prop)) { |
| 629 | spin_unlock_irqrestore(&edev->lock, flags); |
| 630 | return -EPERM; |
| 631 | } |
| 632 | |
Chanwoo Choi | 792e7e9e | 2016-07-11 19:30:43 +0900 | [diff] [blame] | 633 | /* |
| 634 | * Check whether the external connector is attached. |
| 635 | * If external connector is detached, the user can not |
| 636 | * get the property value. |
| 637 | */ |
| 638 | if (!is_extcon_attached(edev, index)) { |
| 639 | spin_unlock_irqrestore(&edev->lock, flags); |
| 640 | return 0; |
| 641 | } |
| 642 | |
| 643 | cable = &edev->cables[index]; |
| 644 | |
| 645 | /* Get the property value according to extcon type */ |
| 646 | switch (prop) { |
| 647 | case EXTCON_PROP_USB_MIN ... EXTCON_PROP_USB_MAX: |
| 648 | *prop_val = cable->usb_propval[prop - EXTCON_PROP_USB_MIN]; |
| 649 | break; |
| 650 | case EXTCON_PROP_CHG_MIN ... EXTCON_PROP_CHG_MAX: |
| 651 | *prop_val = cable->chg_propval[prop - EXTCON_PROP_CHG_MIN]; |
| 652 | break; |
| 653 | case EXTCON_PROP_JACK_MIN ... EXTCON_PROP_JACK_MAX: |
| 654 | *prop_val = cable->jack_propval[prop - EXTCON_PROP_JACK_MIN]; |
| 655 | break; |
| 656 | case EXTCON_PROP_DISP_MIN ... EXTCON_PROP_DISP_MAX: |
| 657 | *prop_val = cable->disp_propval[prop - EXTCON_PROP_DISP_MIN]; |
| 658 | break; |
| 659 | default: |
| 660 | ret = -EINVAL; |
| 661 | break; |
| 662 | } |
| 663 | |
| 664 | spin_unlock_irqrestore(&edev->lock, flags); |
| 665 | |
| 666 | return ret; |
| 667 | } |
| 668 | EXPORT_SYMBOL_GPL(extcon_get_property); |
| 669 | |
| 670 | /** |
Chanwoo Choi | 6ab6094f | 2017-04-03 19:45:48 +0900 | [diff] [blame] | 671 | * extcon_set_property() - Set the property value of an external connector. |
| 672 | * @edev: the extcon device |
| 673 | * @id: the unique id indicating an external connector |
| 674 | * @prop: the property id indicating an extcon property |
| 675 | * @prop_val: the pointer including the new value of extcon property |
Chanwoo Choi | 792e7e9e | 2016-07-11 19:30:43 +0900 | [diff] [blame] | 676 | * |
Chanwoo Choi | 6ab6094f | 2017-04-03 19:45:48 +0900 | [diff] [blame] | 677 | * Note that each property should be included in the list of supported |
| 678 | * properties according to the extcon type. |
Chanwoo Choi | 792e7e9e | 2016-07-11 19:30:43 +0900 | [diff] [blame] | 679 | * |
Chanwoo Choi | 6ab6094f | 2017-04-03 19:45:48 +0900 | [diff] [blame] | 680 | * Returns 0 if success or error number if fail. |
Chanwoo Choi | 792e7e9e | 2016-07-11 19:30:43 +0900 | [diff] [blame] | 681 | */ |
| 682 | int extcon_set_property(struct extcon_dev *edev, unsigned int id, |
| 683 | unsigned int prop, |
| 684 | union extcon_property_value prop_val) |
| 685 | { |
| 686 | struct extcon_cable *cable; |
| 687 | unsigned long flags; |
| 688 | int index, ret = 0; |
| 689 | |
| 690 | if (!edev) |
| 691 | return -EINVAL; |
| 692 | |
| 693 | /* Check whether the property is supported or not */ |
| 694 | if (!is_extcon_property_supported(id, prop)) |
| 695 | return -EINVAL; |
| 696 | |
| 697 | /* Find the cable index of external connector by using id */ |
| 698 | index = find_cable_index_by_id(edev, id); |
| 699 | if (index < 0) |
| 700 | return index; |
| 701 | |
| 702 | spin_lock_irqsave(&edev->lock, flags); |
| 703 | |
Chanwoo Choi | 7f2a0a1 | 2016-07-25 21:15:19 +0900 | [diff] [blame] | 704 | /* Check whether the property is available or not. */ |
| 705 | if (!is_extcon_property_capability(edev, id, index, prop)) { |
| 706 | spin_unlock_irqrestore(&edev->lock, flags); |
| 707 | return -EPERM; |
| 708 | } |
| 709 | |
Chanwoo Choi | 792e7e9e | 2016-07-11 19:30:43 +0900 | [diff] [blame] | 710 | cable = &edev->cables[index]; |
| 711 | |
| 712 | /* Set the property value according to extcon type */ |
| 713 | switch (prop) { |
| 714 | case EXTCON_PROP_USB_MIN ... EXTCON_PROP_USB_MAX: |
| 715 | cable->usb_propval[prop - EXTCON_PROP_USB_MIN] = prop_val; |
| 716 | break; |
| 717 | case EXTCON_PROP_CHG_MIN ... EXTCON_PROP_CHG_MAX: |
| 718 | cable->chg_propval[prop - EXTCON_PROP_CHG_MIN] = prop_val; |
| 719 | break; |
| 720 | case EXTCON_PROP_JACK_MIN ... EXTCON_PROP_JACK_MAX: |
| 721 | cable->jack_propval[prop - EXTCON_PROP_JACK_MIN] = prop_val; |
| 722 | break; |
| 723 | case EXTCON_PROP_DISP_MIN ... EXTCON_PROP_DISP_MAX: |
| 724 | cable->disp_propval[prop - EXTCON_PROP_DISP_MIN] = prop_val; |
| 725 | break; |
| 726 | default: |
| 727 | ret = -EINVAL; |
| 728 | break; |
| 729 | } |
| 730 | |
| 731 | spin_unlock_irqrestore(&edev->lock, flags); |
| 732 | |
| 733 | return ret; |
| 734 | } |
| 735 | EXPORT_SYMBOL_GPL(extcon_set_property); |
| 736 | |
| 737 | /** |
Chanwoo Choi | 6ab6094f | 2017-04-03 19:45:48 +0900 | [diff] [blame] | 738 | * extcon_set_property_sync() - Set property of an external connector with sync. |
| 739 | * @prop_val: the pointer including the new value of extcon property |
Chanwoo Choi | ab11af04 | 2016-07-22 13:16:34 +0900 | [diff] [blame] | 740 | * |
Chanwoo Choi | 6ab6094f | 2017-04-03 19:45:48 +0900 | [diff] [blame] | 741 | * Note that when setting the property value of external connector, |
| 742 | * the external connector should be attached. The each property should |
| 743 | * be included in the list of supported properties according to extcon type. |
Chanwoo Choi | ab11af04 | 2016-07-22 13:16:34 +0900 | [diff] [blame] | 744 | * |
Chanwoo Choi | 6ab6094f | 2017-04-03 19:45:48 +0900 | [diff] [blame] | 745 | * Returns 0 if success or error number if fail. |
Chanwoo Choi | ab11af04 | 2016-07-22 13:16:34 +0900 | [diff] [blame] | 746 | */ |
| 747 | int extcon_set_property_sync(struct extcon_dev *edev, unsigned int id, |
| 748 | unsigned int prop, |
| 749 | union extcon_property_value prop_val) |
| 750 | { |
| 751 | int ret; |
| 752 | |
| 753 | ret = extcon_set_property(edev, id, prop, prop_val); |
| 754 | if (ret < 0) |
| 755 | return ret; |
| 756 | |
| 757 | return extcon_sync(edev, id); |
| 758 | } |
| 759 | EXPORT_SYMBOL_GPL(extcon_set_property_sync); |
| 760 | |
| 761 | /** |
Chanwoo Choi | 6ab6094f | 2017-04-03 19:45:48 +0900 | [diff] [blame] | 762 | * extcon_get_property_capability() - Get the capability of the property |
| 763 | * for an external connector. |
| 764 | * @edev: the extcon device |
| 765 | * @id: the unique id indicating an external connector |
| 766 | * @prop: the property id indicating an extcon property |
Chanwoo Choi | 7f2a0a1 | 2016-07-25 21:15:19 +0900 | [diff] [blame] | 767 | * |
| 768 | * Returns 1 if the property is available or 0 if not available. |
| 769 | */ |
| 770 | int extcon_get_property_capability(struct extcon_dev *edev, unsigned int id, |
| 771 | unsigned int prop) |
| 772 | { |
| 773 | int index; |
| 774 | |
| 775 | if (!edev) |
| 776 | return -EINVAL; |
| 777 | |
| 778 | /* Check whether the property is supported or not */ |
| 779 | if (!is_extcon_property_supported(id, prop)) |
| 780 | return -EINVAL; |
| 781 | |
| 782 | /* Find the cable index of external connector by using id */ |
| 783 | index = find_cable_index_by_id(edev, id); |
| 784 | if (index < 0) |
| 785 | return index; |
| 786 | |
| 787 | return is_extcon_property_capability(edev, id, index, prop); |
| 788 | } |
| 789 | EXPORT_SYMBOL_GPL(extcon_get_property_capability); |
| 790 | |
| 791 | /** |
Chanwoo Choi | 6ab6094f | 2017-04-03 19:45:48 +0900 | [diff] [blame] | 792 | * extcon_set_property_capability() - Set the capability of the property |
| 793 | * for an external connector. |
| 794 | * @edev: the extcon device |
| 795 | * @id: the unique id indicating an external connector |
| 796 | * @prop: the property id indicating an extcon property |
Chanwoo Choi | 7f2a0a1 | 2016-07-25 21:15:19 +0900 | [diff] [blame] | 797 | * |
Chanwoo Choi | 6ab6094f | 2017-04-03 19:45:48 +0900 | [diff] [blame] | 798 | * Note that this function set the capability of the property |
| 799 | * for an external connector in order to mark the bit in capability |
| 800 | * bitmap which mean the available state of the property. |
Chanwoo Choi | 7f2a0a1 | 2016-07-25 21:15:19 +0900 | [diff] [blame] | 801 | * |
Chanwoo Choi | 6ab6094f | 2017-04-03 19:45:48 +0900 | [diff] [blame] | 802 | * Returns 0 if success or error number if fail. |
Chanwoo Choi | 7f2a0a1 | 2016-07-25 21:15:19 +0900 | [diff] [blame] | 803 | */ |
| 804 | int extcon_set_property_capability(struct extcon_dev *edev, unsigned int id, |
| 805 | unsigned int prop) |
| 806 | { |
| 807 | struct extcon_cable *cable; |
| 808 | int index, type, ret = 0; |
| 809 | |
| 810 | if (!edev) |
| 811 | return -EINVAL; |
| 812 | |
| 813 | /* Check whether the property is supported or not. */ |
| 814 | if (!is_extcon_property_supported(id, prop)) |
| 815 | return -EINVAL; |
| 816 | |
| 817 | /* Find the cable index of external connector by using id. */ |
| 818 | index = find_cable_index_by_id(edev, id); |
| 819 | if (index < 0) |
| 820 | return index; |
| 821 | |
| 822 | type = get_extcon_type(prop); |
| 823 | if (type < 0) |
| 824 | return type; |
| 825 | |
| 826 | cable = &edev->cables[index]; |
| 827 | |
| 828 | switch (type) { |
| 829 | case EXTCON_TYPE_USB: |
| 830 | __set_bit(prop - EXTCON_PROP_USB_MIN, cable->usb_bits); |
| 831 | break; |
| 832 | case EXTCON_TYPE_CHG: |
| 833 | __set_bit(prop - EXTCON_PROP_CHG_MIN, cable->chg_bits); |
| 834 | break; |
| 835 | case EXTCON_TYPE_JACK: |
| 836 | __set_bit(prop - EXTCON_PROP_JACK_MIN, cable->jack_bits); |
| 837 | break; |
| 838 | case EXTCON_TYPE_DISP: |
| 839 | __set_bit(prop - EXTCON_PROP_DISP_MIN, cable->disp_bits); |
| 840 | break; |
| 841 | default: |
| 842 | ret = -EINVAL; |
| 843 | } |
| 844 | |
| 845 | return ret; |
| 846 | } |
| 847 | EXPORT_SYMBOL_GPL(extcon_set_property_capability); |
| 848 | |
| 849 | /** |
Chanwoo Choi | 6ab6094f | 2017-04-03 19:45:48 +0900 | [diff] [blame] | 850 | * extcon_get_extcon_dev() - Get the extcon device instance from the name. |
| 851 | * @extcon_name: the extcon name provided with extcon_dev_register() |
| 852 | * |
| 853 | * 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] | 854 | */ |
| 855 | struct extcon_dev *extcon_get_extcon_dev(const char *extcon_name) |
| 856 | { |
| 857 | struct extcon_dev *sd; |
| 858 | |
Chanwoo Choi | 7eae43a | 2015-06-21 23:48:36 +0900 | [diff] [blame] | 859 | if (!extcon_name) |
| 860 | return ERR_PTR(-EINVAL); |
| 861 | |
Donggeun Kim | 74c5d09 | 2012-04-20 14:16:24 +0900 | [diff] [blame] | 862 | mutex_lock(&extcon_dev_list_lock); |
| 863 | list_for_each_entry(sd, &extcon_dev_list, entry) { |
| 864 | if (!strcmp(sd->name, extcon_name)) |
| 865 | goto out; |
| 866 | } |
| 867 | sd = NULL; |
| 868 | out: |
| 869 | mutex_unlock(&extcon_dev_list_lock); |
| 870 | return sd; |
| 871 | } |
| 872 | EXPORT_SYMBOL_GPL(extcon_get_extcon_dev); |
| 873 | |
MyungJoo Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 874 | /** |
Chanwoo Choi | 6ab6094f | 2017-04-03 19:45:48 +0900 | [diff] [blame] | 875 | * extcon_register_notifier() - Register a notifier block to get notified by |
| 876 | * any state changes from the extcon. |
| 877 | * @edev: the extcon device |
| 878 | * @id: the unique id indicating an external connector |
| 879 | * @nb: a notifier block to be registered |
MyungJoo Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 880 | * |
| 881 | * 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] | 882 | * the current state of an external connector and the third pameter |
| 883 | * is the pointer of extcon device. |
| 884 | * |
| 885 | * Returns 0 if success or error number if fail. |
Donggeun Kim | 74c5d09 | 2012-04-20 14:16:24 +0900 | [diff] [blame] | 886 | */ |
Chanwoo Choi | 73b6ecd | 2015-06-12 11:10:06 +0900 | [diff] [blame] | 887 | int extcon_register_notifier(struct extcon_dev *edev, unsigned int id, |
Chanwoo Choi | 046050f | 2015-05-19 20:01:12 +0900 | [diff] [blame] | 888 | struct notifier_block *nb) |
Donggeun Kim | 74c5d09 | 2012-04-20 14:16:24 +0900 | [diff] [blame] | 889 | { |
Hans de Goede | 66bee35 | 2015-03-21 17:26:24 +0100 | [diff] [blame] | 890 | unsigned long flags; |
Colin Ian King | 1fa80f1 | 2020-04-16 00:08:21 +0100 | [diff] [blame] | 891 | int ret, idx; |
Chanwoo Choi | 046050f | 2015-05-19 20:01:12 +0900 | [diff] [blame] | 892 | |
Chanwoo Choi | 01b4c9a | 2016-12-19 21:02:33 +0900 | [diff] [blame] | 893 | if (!edev || !nb) |
Chanwoo Choi | 7eae43a | 2015-06-21 23:48:36 +0900 | [diff] [blame] | 894 | return -EINVAL; |
| 895 | |
Chanwoo Choi | 01b4c9a | 2016-12-19 21:02:33 +0900 | [diff] [blame] | 896 | idx = find_cable_index_by_id(edev, id); |
| 897 | if (idx < 0) |
| 898 | return idx; |
Hans de Goede | 66bee35 | 2015-03-21 17:26:24 +0100 | [diff] [blame] | 899 | |
Chanwoo Choi | 01b4c9a | 2016-12-19 21:02:33 +0900 | [diff] [blame] | 900 | spin_lock_irqsave(&edev->lock, flags); |
| 901 | ret = raw_notifier_chain_register(&edev->nh[idx], nb); |
| 902 | spin_unlock_irqrestore(&edev->lock, flags); |
Hans de Goede | 66bee35 | 2015-03-21 17:26:24 +0100 | [diff] [blame] | 903 | |
| 904 | return ret; |
Donggeun Kim | 74c5d09 | 2012-04-20 14:16:24 +0900 | [diff] [blame] | 905 | } |
| 906 | EXPORT_SYMBOL_GPL(extcon_register_notifier); |
| 907 | |
| 908 | /** |
Chanwoo Choi | 6ab6094f | 2017-04-03 19:45:48 +0900 | [diff] [blame] | 909 | * extcon_unregister_notifier() - Unregister a notifier block from the extcon. |
| 910 | * @edev: the extcon device |
| 911 | * @id: the unique id indicating an external connector |
| 912 | * @nb: a notifier block to be registered |
| 913 | * |
| 914 | * Returns 0 if success or error number if fail. |
Donggeun Kim | 74c5d09 | 2012-04-20 14:16:24 +0900 | [diff] [blame] | 915 | */ |
Chanwoo Choi | 73b6ecd | 2015-06-12 11:10:06 +0900 | [diff] [blame] | 916 | int extcon_unregister_notifier(struct extcon_dev *edev, unsigned int id, |
Chanwoo Choi | 046050f | 2015-05-19 20:01:12 +0900 | [diff] [blame] | 917 | struct notifier_block *nb) |
Donggeun Kim | 74c5d09 | 2012-04-20 14:16:24 +0900 | [diff] [blame] | 918 | { |
Hans de Goede | 66bee35 | 2015-03-21 17:26:24 +0100 | [diff] [blame] | 919 | unsigned long flags; |
Chanwoo Choi | 046050f | 2015-05-19 20:01:12 +0900 | [diff] [blame] | 920 | int ret, idx; |
| 921 | |
Chanwoo Choi | 7eae43a | 2015-06-21 23:48:36 +0900 | [diff] [blame] | 922 | if (!edev || !nb) |
| 923 | return -EINVAL; |
| 924 | |
Chanwoo Choi | 046050f | 2015-05-19 20:01:12 +0900 | [diff] [blame] | 925 | idx = find_cable_index_by_id(edev, id); |
Stephen Boyd | a05f44c | 2016-06-23 19:34:30 +0900 | [diff] [blame] | 926 | if (idx < 0) |
| 927 | return idx; |
Hans de Goede | 66bee35 | 2015-03-21 17:26:24 +0100 | [diff] [blame] | 928 | |
| 929 | spin_lock_irqsave(&edev->lock, flags); |
Chanwoo Choi | 046050f | 2015-05-19 20:01:12 +0900 | [diff] [blame] | 930 | ret = raw_notifier_chain_unregister(&edev->nh[idx], nb); |
Hans de Goede | 66bee35 | 2015-03-21 17:26:24 +0100 | [diff] [blame] | 931 | spin_unlock_irqrestore(&edev->lock, flags); |
| 932 | |
| 933 | return ret; |
Donggeun Kim | 74c5d09 | 2012-04-20 14:16:24 +0900 | [diff] [blame] | 934 | } |
| 935 | EXPORT_SYMBOL_GPL(extcon_unregister_notifier); |
| 936 | |
Chanwoo Choi | 815429b3 | 2017-03-29 19:30:17 +0900 | [diff] [blame] | 937 | /** |
Chanwoo Choi | 6ab6094f | 2017-04-03 19:45:48 +0900 | [diff] [blame] | 938 | * extcon_register_notifier_all() - Register a notifier block for all connectors. |
| 939 | * @edev: the extcon device |
| 940 | * @nb: a notifier block to be registered |
Chanwoo Choi | 815429b3 | 2017-03-29 19:30:17 +0900 | [diff] [blame] | 941 | * |
Chanwoo Choi | 6ab6094f | 2017-04-03 19:45:48 +0900 | [diff] [blame] | 942 | * Note that this function registers a notifier block in order to receive |
| 943 | * the state change of all supported external connectors from extcon device. |
Markus Elfring | 826a47e | 2017-04-23 22:15:20 +0200 | [diff] [blame] | 944 | * And the second parameter given to the callback of nb (val) is |
Chanwoo Choi | 6ab6094f | 2017-04-03 19:45:48 +0900 | [diff] [blame] | 945 | * 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] | 946 | * |
Chanwoo Choi | 6ab6094f | 2017-04-03 19:45:48 +0900 | [diff] [blame] | 947 | * Returns 0 if success or error number if fail. |
Chanwoo Choi | 815429b3 | 2017-03-29 19:30:17 +0900 | [diff] [blame] | 948 | */ |
| 949 | int extcon_register_notifier_all(struct extcon_dev *edev, |
| 950 | struct notifier_block *nb) |
| 951 | { |
| 952 | unsigned long flags; |
| 953 | int ret; |
| 954 | |
| 955 | if (!edev || !nb) |
| 956 | return -EINVAL; |
| 957 | |
| 958 | spin_lock_irqsave(&edev->lock, flags); |
| 959 | ret = raw_notifier_chain_register(&edev->nh_all, nb); |
| 960 | spin_unlock_irqrestore(&edev->lock, flags); |
| 961 | |
| 962 | return ret; |
| 963 | } |
| 964 | EXPORT_SYMBOL_GPL(extcon_register_notifier_all); |
| 965 | |
| 966 | /** |
| 967 | * extcon_unregister_notifier_all() - Unregister a notifier block from extcon. |
Chanwoo Choi | 6ab6094f | 2017-04-03 19:45:48 +0900 | [diff] [blame] | 968 | * @edev: the extcon device |
| 969 | * @nb: a notifier block to be registered |
Chanwoo Choi | 815429b3 | 2017-03-29 19:30:17 +0900 | [diff] [blame] | 970 | * |
Chanwoo Choi | 6ab6094f | 2017-04-03 19:45:48 +0900 | [diff] [blame] | 971 | * Returns 0 if success or error number if fail. |
Chanwoo Choi | 815429b3 | 2017-03-29 19:30:17 +0900 | [diff] [blame] | 972 | */ |
| 973 | int extcon_unregister_notifier_all(struct extcon_dev *edev, |
| 974 | struct notifier_block *nb) |
| 975 | { |
| 976 | unsigned long flags; |
| 977 | int ret; |
| 978 | |
| 979 | if (!edev || !nb) |
| 980 | return -EINVAL; |
| 981 | |
| 982 | spin_lock_irqsave(&edev->lock, flags); |
| 983 | ret = raw_notifier_chain_unregister(&edev->nh_all, nb); |
| 984 | spin_unlock_irqrestore(&edev->lock, flags); |
| 985 | |
| 986 | return ret; |
| 987 | } |
| 988 | EXPORT_SYMBOL_GPL(extcon_unregister_notifier_all); |
| 989 | |
Greg Kroah-Hartman | af01da0 | 2013-07-24 15:05:10 -0700 | [diff] [blame] | 990 | static struct attribute *extcon_attrs[] = { |
| 991 | &dev_attr_state.attr, |
| 992 | &dev_attr_name.attr, |
| 993 | NULL, |
MyungJoo Ham | de55d87 | 2012-04-20 14:16:22 +0900 | [diff] [blame] | 994 | }; |
Greg Kroah-Hartman | af01da0 | 2013-07-24 15:05:10 -0700 | [diff] [blame] | 995 | ATTRIBUTE_GROUPS(extcon); |
MyungJoo Ham | de55d87 | 2012-04-20 14:16:22 +0900 | [diff] [blame] | 996 | |
| 997 | static int create_extcon_class(void) |
| 998 | { |
| 999 | if (!extcon_class) { |
| 1000 | extcon_class = class_create(THIS_MODULE, "extcon"); |
| 1001 | if (IS_ERR(extcon_class)) |
| 1002 | return PTR_ERR(extcon_class); |
Greg Kroah-Hartman | af01da0 | 2013-07-24 15:05:10 -0700 | [diff] [blame] | 1003 | extcon_class->dev_groups = extcon_groups; |
MyungJoo Ham | de55d87 | 2012-04-20 14:16:22 +0900 | [diff] [blame] | 1004 | } |
| 1005 | |
| 1006 | return 0; |
| 1007 | } |
| 1008 | |
MyungJoo Ham | de55d87 | 2012-04-20 14:16:22 +0900 | [diff] [blame] | 1009 | static void extcon_dev_release(struct device *dev) |
| 1010 | { |
MyungJoo Ham | de55d87 | 2012-04-20 14:16:22 +0900 | [diff] [blame] | 1011 | } |
| 1012 | |
MyungJoo Ham | bde68e6 | 2012-04-20 14:16:26 +0900 | [diff] [blame] | 1013 | static const char *muex_name = "mutually_exclusive"; |
MyungJoo Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 1014 | static void dummy_sysfs_dev_release(struct device *dev) |
| 1015 | { |
| 1016 | } |
| 1017 | |
Chanwoo Choi | a9af652 | 2014-04-24 19:46:49 +0900 | [diff] [blame] | 1018 | /* |
| 1019 | * extcon_dev_allocate() - Allocate the memory of extcon device. |
Chanwoo Choi | 6ab6094f | 2017-04-03 19:45:48 +0900 | [diff] [blame] | 1020 | * @supported_cable: the array of the supported external connectors |
| 1021 | * ending with EXTCON_NONE. |
Chanwoo Choi | a9af652 | 2014-04-24 19:46:49 +0900 | [diff] [blame] | 1022 | * |
Chanwoo Choi | 6ab6094f | 2017-04-03 19:45:48 +0900 | [diff] [blame] | 1023 | * Note that this function allocates the memory for extcon device |
| 1024 | * and initialize default setting for the extcon device. |
Chanwoo Choi | a9af652 | 2014-04-24 19:46:49 +0900 | [diff] [blame] | 1025 | * |
Chanwoo Choi | 6ab6094f | 2017-04-03 19:45:48 +0900 | [diff] [blame] | 1026 | * Returns the pointer memory of allocated extcon_dev if success |
| 1027 | * or ERR_PTR(err) if fail. |
Chanwoo Choi | a9af652 | 2014-04-24 19:46:49 +0900 | [diff] [blame] | 1028 | */ |
Chanwoo Choi | 73b6ecd | 2015-06-12 11:10:06 +0900 | [diff] [blame] | 1029 | struct extcon_dev *extcon_dev_allocate(const unsigned int *supported_cable) |
Chanwoo Choi | a9af652 | 2014-04-24 19:46:49 +0900 | [diff] [blame] | 1030 | { |
| 1031 | struct extcon_dev *edev; |
| 1032 | |
Chanwoo Choi | 7eae43a | 2015-06-21 23:48:36 +0900 | [diff] [blame] | 1033 | if (!supported_cable) |
| 1034 | return ERR_PTR(-EINVAL); |
| 1035 | |
Chanwoo Choi | a9af652 | 2014-04-24 19:46:49 +0900 | [diff] [blame] | 1036 | edev = kzalloc(sizeof(*edev), GFP_KERNEL); |
| 1037 | if (!edev) |
| 1038 | return ERR_PTR(-ENOMEM); |
| 1039 | |
| 1040 | edev->max_supported = 0; |
| 1041 | edev->supported_cable = supported_cable; |
| 1042 | |
| 1043 | return edev; |
| 1044 | } |
| 1045 | |
| 1046 | /* |
| 1047 | * extcon_dev_free() - Free the memory of extcon device. |
Chanwoo Choi | 6ab6094f | 2017-04-03 19:45:48 +0900 | [diff] [blame] | 1048 | * @edev: the extcon device |
Chanwoo Choi | a9af652 | 2014-04-24 19:46:49 +0900 | [diff] [blame] | 1049 | */ |
| 1050 | void extcon_dev_free(struct extcon_dev *edev) |
| 1051 | { |
| 1052 | kfree(edev); |
| 1053 | } |
| 1054 | EXPORT_SYMBOL_GPL(extcon_dev_free); |
| 1055 | |
MyungJoo Ham | de55d87 | 2012-04-20 14:16:22 +0900 | [diff] [blame] | 1056 | /** |
Chanwoo Choi | 6ab6094f | 2017-04-03 19:45:48 +0900 | [diff] [blame] | 1057 | * extcon_dev_register() - Register an new extcon device |
| 1058 | * @edev: the extcon device to be registered |
MyungJoo Ham | de55d87 | 2012-04-20 14:16:22 +0900 | [diff] [blame] | 1059 | * |
| 1060 | * Among the members of edev struct, please set the "user initializing data" |
MyungJoo Ham | de55d87 | 2012-04-20 14:16:22 +0900 | [diff] [blame] | 1061 | * do not set the values of "internal data", which are initialized by |
| 1062 | * this function. |
Chanwoo Choi | 6ab6094f | 2017-04-03 19:45:48 +0900 | [diff] [blame] | 1063 | * |
| 1064 | * Note that before calling this funciton, have to allocate the memory |
| 1065 | * of an extcon device by using the extcon_dev_allocate(). And the extcon |
| 1066 | * dev should include the supported_cable information. |
| 1067 | * |
| 1068 | * Returns 0 if success or error number if fail. |
MyungJoo Ham | de55d87 | 2012-04-20 14:16:22 +0900 | [diff] [blame] | 1069 | */ |
Chanwoo Choi | 42d7d75 | 2013-09-27 09:20:26 +0900 | [diff] [blame] | 1070 | int extcon_dev_register(struct extcon_dev *edev) |
MyungJoo Ham | de55d87 | 2012-04-20 14:16:22 +0900 | [diff] [blame] | 1071 | { |
MyungJoo Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 1072 | int ret, index = 0; |
Chanwoo Choi | 71c3ffa | 2015-04-15 15:02:01 +0900 | [diff] [blame] | 1073 | static atomic_t edev_no = ATOMIC_INIT(-1); |
MyungJoo Ham | de55d87 | 2012-04-20 14:16:22 +0900 | [diff] [blame] | 1074 | |
| 1075 | if (!extcon_class) { |
| 1076 | ret = create_extcon_class(); |
| 1077 | if (ret < 0) |
| 1078 | return ret; |
| 1079 | } |
| 1080 | |
Chanwoo Choi | 7eae43a | 2015-06-21 23:48:36 +0900 | [diff] [blame] | 1081 | if (!edev || !edev->supported_cable) |
Chanwoo Choi | 2a9de9c | 2015-04-24 19:16:05 +0900 | [diff] [blame] | 1082 | return -EINVAL; |
MyungJoo Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 1083 | |
Chanwoo Choi | 2a9de9c | 2015-04-24 19:16:05 +0900 | [diff] [blame] | 1084 | for (; edev->supported_cable[index] != EXTCON_NONE; index++); |
| 1085 | |
| 1086 | edev->max_supported = index; |
MyungJoo Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 1087 | if (index > SUPPORTED_CABLE_MAX) { |
Chanwoo Choi | 2a9de9c | 2015-04-24 19:16:05 +0900 | [diff] [blame] | 1088 | dev_err(&edev->dev, |
| 1089 | "exceed the maximum number of supported cables\n"); |
MyungJoo Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 1090 | return -EINVAL; |
| 1091 | } |
| 1092 | |
Chanwoo Choi | dae6165 | 2013-09-27 09:19:40 +0900 | [diff] [blame] | 1093 | edev->dev.class = extcon_class; |
| 1094 | edev->dev.release = extcon_dev_release; |
MyungJoo Ham | de55d87 | 2012-04-20 14:16:22 +0900 | [diff] [blame] | 1095 | |
Chanwoo Choi | 71c3ffa | 2015-04-15 15:02:01 +0900 | [diff] [blame] | 1096 | edev->name = dev_name(edev->dev.parent); |
Chanwoo Choi | 42d7d75 | 2013-09-27 09:20:26 +0900 | [diff] [blame] | 1097 | if (IS_ERR_OR_NULL(edev->name)) { |
| 1098 | dev_err(&edev->dev, |
| 1099 | "extcon device name is null\n"); |
| 1100 | return -EINVAL; |
| 1101 | } |
Chanwoo Choi | 71c3ffa | 2015-04-15 15:02:01 +0900 | [diff] [blame] | 1102 | dev_set_name(&edev->dev, "extcon%lu", |
| 1103 | (unsigned long)atomic_inc_return(&edev_no)); |
MyungJoo Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 1104 | |
| 1105 | if (edev->max_supported) { |
MyungJoo Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 1106 | char *str; |
| 1107 | struct extcon_cable *cable; |
| 1108 | |
Kees Cook | 6396bb2 | 2018-06-12 14:03:40 -0700 | [diff] [blame] | 1109 | edev->cables = kcalloc(edev->max_supported, |
| 1110 | sizeof(struct extcon_cable), |
| 1111 | GFP_KERNEL); |
MyungJoo Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 1112 | if (!edev->cables) { |
| 1113 | ret = -ENOMEM; |
| 1114 | goto err_sysfs_alloc; |
| 1115 | } |
| 1116 | for (index = 0; index < edev->max_supported; index++) { |
| 1117 | cable = &edev->cables[index]; |
| 1118 | |
Andy Shevchenko | 69f75a4 | 2018-08-27 18:35:52 +0300 | [diff] [blame] | 1119 | str = kasprintf(GFP_KERNEL, "cable.%d", index); |
MyungJoo Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 1120 | if (!str) { |
| 1121 | for (index--; index >= 0; index--) { |
| 1122 | cable = &edev->cables[index]; |
| 1123 | kfree(cable->attr_g.name); |
| 1124 | } |
| 1125 | ret = -ENOMEM; |
| 1126 | |
| 1127 | goto err_alloc_cables; |
| 1128 | } |
MyungJoo Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 1129 | |
| 1130 | cable->edev = edev; |
| 1131 | cable->cable_index = index; |
| 1132 | cable->attrs[0] = &cable->attr_name.attr; |
| 1133 | cable->attrs[1] = &cable->attr_state.attr; |
| 1134 | cable->attrs[2] = NULL; |
| 1135 | cable->attr_g.name = str; |
| 1136 | cable->attr_g.attrs = cable->attrs; |
| 1137 | |
Mark Brown | 9baf322 | 2012-08-16 20:03:21 +0100 | [diff] [blame] | 1138 | sysfs_attr_init(&cable->attr_name.attr); |
MyungJoo Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 1139 | cable->attr_name.attr.name = "name"; |
| 1140 | cable->attr_name.attr.mode = 0444; |
| 1141 | cable->attr_name.show = cable_name_show; |
| 1142 | |
Mark Brown | 9baf322 | 2012-08-16 20:03:21 +0100 | [diff] [blame] | 1143 | sysfs_attr_init(&cable->attr_state.attr); |
MyungJoo Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 1144 | cable->attr_state.attr.name = "state"; |
Chanwoo Choi | ea9dd9d | 2013-05-22 19:31:59 +0900 | [diff] [blame] | 1145 | cable->attr_state.attr.mode = 0444; |
MyungJoo Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 1146 | cable->attr_state.show = cable_state_show; |
MyungJoo Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 1147 | } |
| 1148 | } |
| 1149 | |
MyungJoo Ham | bde68e6 | 2012-04-20 14:16:26 +0900 | [diff] [blame] | 1150 | if (edev->max_supported && edev->mutually_exclusive) { |
MyungJoo Ham | bde68e6 | 2012-04-20 14:16:26 +0900 | [diff] [blame] | 1151 | char *name; |
| 1152 | |
| 1153 | /* Count the size of mutually_exclusive array */ |
| 1154 | for (index = 0; edev->mutually_exclusive[index]; index++) |
| 1155 | ; |
| 1156 | |
Kees Cook | 6396bb2 | 2018-06-12 14:03:40 -0700 | [diff] [blame] | 1157 | edev->attrs_muex = kcalloc(index + 1, |
| 1158 | sizeof(struct attribute *), |
| 1159 | GFP_KERNEL); |
MyungJoo Ham | bde68e6 | 2012-04-20 14:16:26 +0900 | [diff] [blame] | 1160 | if (!edev->attrs_muex) { |
| 1161 | ret = -ENOMEM; |
| 1162 | goto err_muex; |
| 1163 | } |
| 1164 | |
Kees Cook | 6396bb2 | 2018-06-12 14:03:40 -0700 | [diff] [blame] | 1165 | edev->d_attrs_muex = kcalloc(index, |
| 1166 | sizeof(struct device_attribute), |
| 1167 | GFP_KERNEL); |
MyungJoo Ham | bde68e6 | 2012-04-20 14:16:26 +0900 | [diff] [blame] | 1168 | if (!edev->d_attrs_muex) { |
| 1169 | ret = -ENOMEM; |
| 1170 | kfree(edev->attrs_muex); |
| 1171 | goto err_muex; |
| 1172 | } |
| 1173 | |
| 1174 | for (index = 0; edev->mutually_exclusive[index]; index++) { |
Andy Shevchenko | 69f75a4 | 2018-08-27 18:35:52 +0300 | [diff] [blame] | 1175 | name = kasprintf(GFP_KERNEL, "0x%x", |
| 1176 | edev->mutually_exclusive[index]); |
MyungJoo Ham | bde68e6 | 2012-04-20 14:16:26 +0900 | [diff] [blame] | 1177 | if (!name) { |
| 1178 | for (index--; index >= 0; index--) { |
| 1179 | kfree(edev->d_attrs_muex[index].attr. |
| 1180 | name); |
| 1181 | } |
| 1182 | kfree(edev->d_attrs_muex); |
| 1183 | kfree(edev->attrs_muex); |
| 1184 | ret = -ENOMEM; |
| 1185 | goto err_muex; |
| 1186 | } |
Mark Brown | 9baf322 | 2012-08-16 20:03:21 +0100 | [diff] [blame] | 1187 | sysfs_attr_init(&edev->d_attrs_muex[index].attr); |
MyungJoo Ham | bde68e6 | 2012-04-20 14:16:26 +0900 | [diff] [blame] | 1188 | edev->d_attrs_muex[index].attr.name = name; |
| 1189 | edev->d_attrs_muex[index].attr.mode = 0000; |
| 1190 | edev->attrs_muex[index] = &edev->d_attrs_muex[index] |
| 1191 | .attr; |
| 1192 | } |
| 1193 | edev->attr_g_muex.name = muex_name; |
| 1194 | edev->attr_g_muex.attrs = edev->attrs_muex; |
| 1195 | |
| 1196 | } |
| 1197 | |
MyungJoo Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 1198 | if (edev->max_supported) { |
| 1199 | edev->extcon_dev_type.groups = |
Kees Cook | 6396bb2 | 2018-06-12 14:03:40 -0700 | [diff] [blame] | 1200 | kcalloc(edev->max_supported + 2, |
| 1201 | sizeof(struct attribute_group *), |
| 1202 | GFP_KERNEL); |
MyungJoo Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 1203 | if (!edev->extcon_dev_type.groups) { |
| 1204 | ret = -ENOMEM; |
| 1205 | goto err_alloc_groups; |
| 1206 | } |
| 1207 | |
Chanwoo Choi | dae6165 | 2013-09-27 09:19:40 +0900 | [diff] [blame] | 1208 | edev->extcon_dev_type.name = dev_name(&edev->dev); |
MyungJoo Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 1209 | edev->extcon_dev_type.release = dummy_sysfs_dev_release; |
| 1210 | |
| 1211 | for (index = 0; index < edev->max_supported; index++) |
| 1212 | edev->extcon_dev_type.groups[index] = |
| 1213 | &edev->cables[index].attr_g; |
MyungJoo Ham | bde68e6 | 2012-04-20 14:16:26 +0900 | [diff] [blame] | 1214 | if (edev->mutually_exclusive) |
| 1215 | edev->extcon_dev_type.groups[index] = |
| 1216 | &edev->attr_g_muex; |
MyungJoo Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 1217 | |
Chanwoo Choi | dae6165 | 2013-09-27 09:19:40 +0900 | [diff] [blame] | 1218 | edev->dev.type = &edev->extcon_dev_type; |
MyungJoo Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 1219 | } |
| 1220 | |
Chanwoo Choi | dae6165 | 2013-09-27 09:19:40 +0900 | [diff] [blame] | 1221 | ret = device_register(&edev->dev); |
MyungJoo Ham | de55d87 | 2012-04-20 14:16:22 +0900 | [diff] [blame] | 1222 | if (ret) { |
Chanwoo Choi | dae6165 | 2013-09-27 09:19:40 +0900 | [diff] [blame] | 1223 | put_device(&edev->dev); |
MyungJoo Ham | de55d87 | 2012-04-20 14:16:22 +0900 | [diff] [blame] | 1224 | goto err_dev; |
| 1225 | } |
MyungJoo Ham | de55d87 | 2012-04-20 14:16:22 +0900 | [diff] [blame] | 1226 | |
MyungJoo Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 1227 | spin_lock_init(&edev->lock); |
Markus Elfring | 3f5071a | 2017-04-23 20:54:11 +0200 | [diff] [blame] | 1228 | edev->nh = devm_kcalloc(&edev->dev, edev->max_supported, |
| 1229 | sizeof(*edev->nh), GFP_KERNEL); |
Chanwoo Choi | 046050f | 2015-05-19 20:01:12 +0900 | [diff] [blame] | 1230 | if (!edev->nh) { |
| 1231 | ret = -ENOMEM; |
Dinghao Liu | d3bdd1c | 2021-01-19 16:10:55 +0800 | [diff] [blame] | 1232 | device_unregister(&edev->dev); |
Chanwoo Choi | 046050f | 2015-05-19 20:01:12 +0900 | [diff] [blame] | 1233 | goto err_dev; |
| 1234 | } |
| 1235 | |
| 1236 | for (index = 0; index < edev->max_supported; index++) |
| 1237 | RAW_INIT_NOTIFIER_HEAD(&edev->nh[index]); |
Donggeun Kim | 74c5d09 | 2012-04-20 14:16:24 +0900 | [diff] [blame] | 1238 | |
Chanwoo Choi | 815429b3 | 2017-03-29 19:30:17 +0900 | [diff] [blame] | 1239 | RAW_INIT_NOTIFIER_HEAD(&edev->nh_all); |
| 1240 | |
Chanwoo Choi | dae6165 | 2013-09-27 09:19:40 +0900 | [diff] [blame] | 1241 | dev_set_drvdata(&edev->dev, edev); |
MyungJoo Ham | de55d87 | 2012-04-20 14:16:22 +0900 | [diff] [blame] | 1242 | edev->state = 0; |
Donggeun Kim | 74c5d09 | 2012-04-20 14:16:24 +0900 | [diff] [blame] | 1243 | |
| 1244 | mutex_lock(&extcon_dev_list_lock); |
| 1245 | list_add(&edev->entry, &extcon_dev_list); |
| 1246 | mutex_unlock(&extcon_dev_list_lock); |
| 1247 | |
MyungJoo Ham | de55d87 | 2012-04-20 14:16:22 +0900 | [diff] [blame] | 1248 | return 0; |
| 1249 | |
| 1250 | err_dev: |
MyungJoo Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 1251 | if (edev->max_supported) |
| 1252 | kfree(edev->extcon_dev_type.groups); |
| 1253 | err_alloc_groups: |
MyungJoo Ham | bde68e6 | 2012-04-20 14:16:26 +0900 | [diff] [blame] | 1254 | if (edev->max_supported && edev->mutually_exclusive) { |
| 1255 | for (index = 0; edev->mutually_exclusive[index]; index++) |
| 1256 | kfree(edev->d_attrs_muex[index].attr.name); |
| 1257 | kfree(edev->d_attrs_muex); |
| 1258 | kfree(edev->attrs_muex); |
| 1259 | } |
| 1260 | err_muex: |
MyungJoo Ham | 806d9dd | 2012-04-20 14:16:25 +0900 | [diff] [blame] | 1261 | for (index = 0; index < edev->max_supported; index++) |
| 1262 | kfree(edev->cables[index].attr_g.name); |
| 1263 | err_alloc_cables: |
| 1264 | if (edev->max_supported) |
| 1265 | kfree(edev->cables); |
| 1266 | err_sysfs_alloc: |
MyungJoo Ham | de55d87 | 2012-04-20 14:16:22 +0900 | [diff] [blame] | 1267 | return ret; |
| 1268 | } |
| 1269 | EXPORT_SYMBOL_GPL(extcon_dev_register); |
| 1270 | |
| 1271 | /** |
| 1272 | * extcon_dev_unregister() - Unregister the extcon device. |
Chanwoo Choi | 6ab6094f | 2017-04-03 19:45:48 +0900 | [diff] [blame] | 1273 | * @edev: the extcon device to be unregistered. |
MyungJoo Ham | de55d87 | 2012-04-20 14:16:22 +0900 | [diff] [blame] | 1274 | * |
| 1275 | * Note that this does not call kfree(edev) because edev was not allocated |
| 1276 | * by this class. |
| 1277 | */ |
| 1278 | void extcon_dev_unregister(struct extcon_dev *edev) |
| 1279 | { |
anish kumar | 57e7cd3 | 2012-10-22 09:43:33 +0900 | [diff] [blame] | 1280 | int index; |
| 1281 | |
Chanwoo Choi | 7eae43a | 2015-06-21 23:48:36 +0900 | [diff] [blame] | 1282 | if (!edev) |
| 1283 | return; |
| 1284 | |
anish kumar | 57e7cd3 | 2012-10-22 09:43:33 +0900 | [diff] [blame] | 1285 | mutex_lock(&extcon_dev_list_lock); |
| 1286 | list_del(&edev->entry); |
| 1287 | mutex_unlock(&extcon_dev_list_lock); |
| 1288 | |
Chanwoo Choi | dae6165 | 2013-09-27 09:19:40 +0900 | [diff] [blame] | 1289 | if (IS_ERR_OR_NULL(get_device(&edev->dev))) { |
| 1290 | dev_err(&edev->dev, "Failed to unregister extcon_dev (%s)\n", |
| 1291 | dev_name(&edev->dev)); |
anish kumar | 57e7cd3 | 2012-10-22 09:43:33 +0900 | [diff] [blame] | 1292 | return; |
| 1293 | } |
| 1294 | |
Wang, Xiaoming | 7585ca0 | 2013-11-01 18:48:14 -0400 | [diff] [blame] | 1295 | device_unregister(&edev->dev); |
| 1296 | |
anish kumar | 57e7cd3 | 2012-10-22 09:43:33 +0900 | [diff] [blame] | 1297 | if (edev->mutually_exclusive && edev->max_supported) { |
| 1298 | for (index = 0; edev->mutually_exclusive[index]; |
| 1299 | index++) |
| 1300 | kfree(edev->d_attrs_muex[index].attr.name); |
| 1301 | kfree(edev->d_attrs_muex); |
| 1302 | kfree(edev->attrs_muex); |
| 1303 | } |
| 1304 | |
| 1305 | for (index = 0; index < edev->max_supported; index++) |
| 1306 | kfree(edev->cables[index].attr_g.name); |
| 1307 | |
| 1308 | if (edev->max_supported) { |
| 1309 | kfree(edev->extcon_dev_type.groups); |
| 1310 | kfree(edev->cables); |
| 1311 | } |
| 1312 | |
Chanwoo Choi | dae6165 | 2013-09-27 09:19:40 +0900 | [diff] [blame] | 1313 | put_device(&edev->dev); |
MyungJoo Ham | de55d87 | 2012-04-20 14:16:22 +0900 | [diff] [blame] | 1314 | } |
| 1315 | EXPORT_SYMBOL_GPL(extcon_dev_unregister); |
| 1316 | |
Chanwoo Choi | 1ad94ff | 2014-03-18 19:55:46 +0900 | [diff] [blame] | 1317 | #ifdef CONFIG_OF |
Andrzej Hajda | 370ed7a | 2018-02-27 13:22:07 +0100 | [diff] [blame] | 1318 | |
| 1319 | /* |
| 1320 | * extcon_find_edev_by_node - Find the extcon device from devicetree. |
| 1321 | * @node : OF node identifying edev |
| 1322 | * |
| 1323 | * Return the pointer of extcon device if success or ERR_PTR(err) if fail. |
| 1324 | */ |
| 1325 | struct extcon_dev *extcon_find_edev_by_node(struct device_node *node) |
| 1326 | { |
| 1327 | struct extcon_dev *edev; |
| 1328 | |
| 1329 | mutex_lock(&extcon_dev_list_lock); |
| 1330 | list_for_each_entry(edev, &extcon_dev_list, entry) |
| 1331 | if (edev->dev.parent && edev->dev.parent->of_node == node) |
| 1332 | goto out; |
| 1333 | edev = ERR_PTR(-EPROBE_DEFER); |
| 1334 | out: |
| 1335 | mutex_unlock(&extcon_dev_list_lock); |
| 1336 | |
| 1337 | return edev; |
| 1338 | } |
| 1339 | |
Chanwoo Choi | 1ad94ff | 2014-03-18 19:55:46 +0900 | [diff] [blame] | 1340 | /* |
Chanwoo Choi | 6ab6094f | 2017-04-03 19:45:48 +0900 | [diff] [blame] | 1341 | * extcon_get_edev_by_phandle - Get the extcon device from devicetree. |
| 1342 | * @dev : the instance to the given device |
| 1343 | * @index : the index into list of extcon_dev |
Chanwoo Choi | 1ad94ff | 2014-03-18 19:55:46 +0900 | [diff] [blame] | 1344 | * |
Chanwoo Choi | 6ab6094f | 2017-04-03 19:45:48 +0900 | [diff] [blame] | 1345 | * 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] | 1346 | */ |
| 1347 | struct extcon_dev *extcon_get_edev_by_phandle(struct device *dev, int index) |
| 1348 | { |
| 1349 | struct device_node *node; |
| 1350 | struct extcon_dev *edev; |
| 1351 | |
Chanwoo Choi | 7eae43a | 2015-06-21 23:48:36 +0900 | [diff] [blame] | 1352 | if (!dev) |
| 1353 | return ERR_PTR(-EINVAL); |
| 1354 | |
Chanwoo Choi | 1ad94ff | 2014-03-18 19:55:46 +0900 | [diff] [blame] | 1355 | if (!dev->of_node) { |
Stephen Boyd | e8752b7 | 2016-07-05 11:57:05 -0700 | [diff] [blame] | 1356 | dev_dbg(dev, "device does not have a device node entry\n"); |
Chanwoo Choi | 1ad94ff | 2014-03-18 19:55:46 +0900 | [diff] [blame] | 1357 | return ERR_PTR(-EINVAL); |
| 1358 | } |
| 1359 | |
| 1360 | node = of_parse_phandle(dev->of_node, "extcon", index); |
| 1361 | if (!node) { |
Rob Herring | 5c27036 | 2017-07-18 16:43:00 -0500 | [diff] [blame] | 1362 | dev_dbg(dev, "failed to get phandle in %pOF node\n", |
| 1363 | dev->of_node); |
Chanwoo Choi | 1ad94ff | 2014-03-18 19:55:46 +0900 | [diff] [blame] | 1364 | return ERR_PTR(-ENODEV); |
| 1365 | } |
| 1366 | |
Andrzej Hajda | 370ed7a | 2018-02-27 13:22:07 +0100 | [diff] [blame] | 1367 | edev = extcon_find_edev_by_node(node); |
Peter Chen | 5d5c4c1 | 2016-07-01 18:41:55 +0900 | [diff] [blame] | 1368 | of_node_put(node); |
Chanwoo Choi | 1ad94ff | 2014-03-18 19:55:46 +0900 | [diff] [blame] | 1369 | |
Andrzej Hajda | 370ed7a | 2018-02-27 13:22:07 +0100 | [diff] [blame] | 1370 | return edev; |
Chanwoo Choi | 1ad94ff | 2014-03-18 19:55:46 +0900 | [diff] [blame] | 1371 | } |
Andrzej Hajda | 370ed7a | 2018-02-27 13:22:07 +0100 | [diff] [blame] | 1372 | |
Chanwoo Choi | 1ad94ff | 2014-03-18 19:55:46 +0900 | [diff] [blame] | 1373 | #else |
Andrzej Hajda | 370ed7a | 2018-02-27 13:22:07 +0100 | [diff] [blame] | 1374 | |
| 1375 | struct extcon_dev *extcon_find_edev_by_node(struct device_node *node) |
| 1376 | { |
| 1377 | return ERR_PTR(-ENOSYS); |
| 1378 | } |
| 1379 | |
Chanwoo Choi | 1ad94ff | 2014-03-18 19:55:46 +0900 | [diff] [blame] | 1380 | struct extcon_dev *extcon_get_edev_by_phandle(struct device *dev, int index) |
| 1381 | { |
| 1382 | return ERR_PTR(-ENOSYS); |
| 1383 | } |
Andrzej Hajda | 370ed7a | 2018-02-27 13:22:07 +0100 | [diff] [blame] | 1384 | |
Chanwoo Choi | 1ad94ff | 2014-03-18 19:55:46 +0900 | [diff] [blame] | 1385 | #endif /* CONFIG_OF */ |
Andrzej Hajda | 370ed7a | 2018-02-27 13:22:07 +0100 | [diff] [blame] | 1386 | |
| 1387 | EXPORT_SYMBOL_GPL(extcon_find_edev_by_node); |
Chanwoo Choi | 1ad94ff | 2014-03-18 19:55:46 +0900 | [diff] [blame] | 1388 | EXPORT_SYMBOL_GPL(extcon_get_edev_by_phandle); |
| 1389 | |
Chanwoo Choi | 707d755 | 2015-04-15 13:57:51 +0900 | [diff] [blame] | 1390 | /** |
| 1391 | * extcon_get_edev_name() - Get the name of the extcon device. |
| 1392 | * @edev: the extcon device |
| 1393 | */ |
| 1394 | const char *extcon_get_edev_name(struct extcon_dev *edev) |
| 1395 | { |
| 1396 | return !edev ? NULL : edev->name; |
| 1397 | } |
Mayank Rana | 995bb10 | 2020-03-16 13:14:32 -0700 | [diff] [blame] | 1398 | EXPORT_SYMBOL_GPL(extcon_get_edev_name); |
Chanwoo Choi | 707d755 | 2015-04-15 13:57:51 +0900 | [diff] [blame] | 1399 | |
MyungJoo Ham | de55d87 | 2012-04-20 14:16:22 +0900 | [diff] [blame] | 1400 | static int __init extcon_class_init(void) |
| 1401 | { |
| 1402 | return create_extcon_class(); |
| 1403 | } |
| 1404 | module_init(extcon_class_init); |
| 1405 | |
| 1406 | static void __exit extcon_class_exit(void) |
| 1407 | { |
MyungJoo Ham | de55d87 | 2012-04-20 14:16:22 +0900 | [diff] [blame] | 1408 | class_destroy(extcon_class); |
| 1409 | } |
| 1410 | module_exit(extcon_class_exit); |
| 1411 | |
Chanwoo Choi | 2a9de9c | 2015-04-24 19:16:05 +0900 | [diff] [blame] | 1412 | MODULE_AUTHOR("Chanwoo Choi <cw00.choi@samsung.com>"); |
MyungJoo Ham | de55d87 | 2012-04-20 14:16:22 +0900 | [diff] [blame] | 1413 | MODULE_AUTHOR("MyungJoo Ham <myungjoo.ham@samsung.com>"); |
Chanwoo Choi | 6ab6094f | 2017-04-03 19:45:48 +0900 | [diff] [blame] | 1414 | MODULE_DESCRIPTION("External Connector (extcon) framework"); |
| 1415 | MODULE_LICENSE("GPL v2"); |