Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v3.16-rc3 1033 lines 28 kB view raw
1/* 2 * drivers/extcon/extcon_class.c 3 * 4 * External connector (extcon) class driver 5 * 6 * Copyright (C) 2012 Samsung Electronics 7 * Author: Donggeun Kim <dg77.kim@samsung.com> 8 * Author: MyungJoo Ham <myungjoo.ham@samsung.com> 9 * 10 * based on android/drivers/switch/switch_class.c 11 * Copyright (C) 2008 Google, Inc. 12 * Author: Mike Lockwood <lockwood@android.com> 13 * 14 * This software is licensed under the terms of the GNU General Public 15 * License version 2, as published by the Free Software Foundation, and 16 * may be copied, distributed, and modified under those terms. 17 * 18 * This program is distributed in the hope that it will be useful, 19 * but WITHOUT ANY WARRANTY; without even the implied warranty of 20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 21 * GNU General Public License for more details. 22 * 23*/ 24 25#include <linux/module.h> 26#include <linux/types.h> 27#include <linux/init.h> 28#include <linux/device.h> 29#include <linux/fs.h> 30#include <linux/err.h> 31#include <linux/extcon.h> 32#include <linux/slab.h> 33#include <linux/sysfs.h> 34#include <linux/of.h> 35 36/* 37 * extcon_cable_name suggests the standard cable names for commonly used 38 * cable types. 39 * 40 * However, please do not use extcon_cable_name directly for extcon_dev 41 * struct's supported_cable pointer unless your device really supports 42 * every single port-type of the following cable names. Please choose cable 43 * names that are actually used in your extcon device. 44 */ 45const char extcon_cable_name[][CABLE_NAME_MAX + 1] = { 46 [EXTCON_USB] = "USB", 47 [EXTCON_USB_HOST] = "USB-Host", 48 [EXTCON_TA] = "TA", 49 [EXTCON_FAST_CHARGER] = "Fast-charger", 50 [EXTCON_SLOW_CHARGER] = "Slow-charger", 51 [EXTCON_CHARGE_DOWNSTREAM] = "Charge-downstream", 52 [EXTCON_HDMI] = "HDMI", 53 [EXTCON_MHL] = "MHL", 54 [EXTCON_DVI] = "DVI", 55 [EXTCON_VGA] = "VGA", 56 [EXTCON_DOCK] = "Dock", 57 [EXTCON_LINE_IN] = "Line-in", 58 [EXTCON_LINE_OUT] = "Line-out", 59 [EXTCON_MIC_IN] = "Microphone", 60 [EXTCON_HEADPHONE_OUT] = "Headphone", 61 [EXTCON_SPDIF_IN] = "SPDIF-in", 62 [EXTCON_SPDIF_OUT] = "SPDIF-out", 63 [EXTCON_VIDEO_IN] = "Video-in", 64 [EXTCON_VIDEO_OUT] = "Video-out", 65 [EXTCON_MECHANICAL] = "Mechanical", 66}; 67 68static struct class *extcon_class; 69#if defined(CONFIG_ANDROID) 70static struct class_compat *switch_class; 71#endif /* CONFIG_ANDROID */ 72 73static LIST_HEAD(extcon_dev_list); 74static DEFINE_MUTEX(extcon_dev_list_lock); 75 76/** 77 * check_mutually_exclusive - Check if new_state violates mutually_exclusive 78 * condition. 79 * @edev: the extcon device 80 * @new_state: new cable attach status for @edev 81 * 82 * Returns 0 if nothing violates. Returns the index + 1 for the first 83 * violated condition. 84 */ 85static int check_mutually_exclusive(struct extcon_dev *edev, u32 new_state) 86{ 87 int i = 0; 88 89 if (!edev->mutually_exclusive) 90 return 0; 91 92 for (i = 0; edev->mutually_exclusive[i]; i++) { 93 int weight; 94 u32 correspondants = new_state & edev->mutually_exclusive[i]; 95 96 /* calculate the total number of bits set */ 97 weight = hweight32(correspondants); 98 if (weight > 1) 99 return i + 1; 100 } 101 102 return 0; 103} 104 105static ssize_t state_show(struct device *dev, struct device_attribute *attr, 106 char *buf) 107{ 108 int i, count = 0; 109 struct extcon_dev *edev = dev_get_drvdata(dev); 110 111 if (edev->print_state) { 112 int ret = edev->print_state(edev, buf); 113 114 if (ret >= 0) 115 return ret; 116 /* Use default if failed */ 117 } 118 119 if (edev->max_supported == 0) 120 return sprintf(buf, "%u\n", edev->state); 121 122 for (i = 0; i < SUPPORTED_CABLE_MAX; i++) { 123 if (!edev->supported_cable[i]) 124 break; 125 count += sprintf(buf + count, "%s=%d\n", 126 edev->supported_cable[i], 127 !!(edev->state & (1 << i))); 128 } 129 130 return count; 131} 132 133static ssize_t state_store(struct device *dev, struct device_attribute *attr, 134 const char *buf, size_t count) 135{ 136 u32 state; 137 ssize_t ret = 0; 138 struct extcon_dev *edev = dev_get_drvdata(dev); 139 140 ret = sscanf(buf, "0x%x", &state); 141 if (ret == 0) 142 ret = -EINVAL; 143 else 144 ret = extcon_set_state(edev, state); 145 146 if (ret < 0) 147 return ret; 148 149 return count; 150} 151static DEVICE_ATTR_RW(state); 152 153static ssize_t name_show(struct device *dev, struct device_attribute *attr, 154 char *buf) 155{ 156 struct extcon_dev *edev = dev_get_drvdata(dev); 157 158 /* Optional callback given by the user */ 159 if (edev->print_name) { 160 int ret = edev->print_name(edev, buf); 161 if (ret >= 0) 162 return ret; 163 } 164 165 return sprintf(buf, "%s\n", dev_name(&edev->dev)); 166} 167static DEVICE_ATTR_RO(name); 168 169static ssize_t cable_name_show(struct device *dev, 170 struct device_attribute *attr, char *buf) 171{ 172 struct extcon_cable *cable = container_of(attr, struct extcon_cable, 173 attr_name); 174 175 return sprintf(buf, "%s\n", 176 cable->edev->supported_cable[cable->cable_index]); 177} 178 179static ssize_t cable_state_show(struct device *dev, 180 struct device_attribute *attr, char *buf) 181{ 182 struct extcon_cable *cable = container_of(attr, struct extcon_cable, 183 attr_state); 184 185 return sprintf(buf, "%d\n", 186 extcon_get_cable_state_(cable->edev, 187 cable->cable_index)); 188} 189 190/** 191 * extcon_update_state() - Update the cable attach states of the extcon device 192 * only for the masked bits. 193 * @edev: the extcon device 194 * @mask: the bit mask to designate updated bits. 195 * @state: new cable attach status for @edev 196 * 197 * Changing the state sends uevent with environment variable containing 198 * the name of extcon device (envp[0]) and the state output (envp[1]). 199 * Tizen uses this format for extcon device to get events from ports. 200 * Android uses this format as well. 201 * 202 * Note that the notifier provides which bits are changed in the state 203 * variable with the val parameter (second) to the callback. 204 */ 205int extcon_update_state(struct extcon_dev *edev, u32 mask, u32 state) 206{ 207 char name_buf[120]; 208 char state_buf[120]; 209 char *prop_buf; 210 char *envp[3]; 211 int env_offset = 0; 212 int length; 213 unsigned long flags; 214 215 spin_lock_irqsave(&edev->lock, flags); 216 217 if (edev->state != ((edev->state & ~mask) | (state & mask))) { 218 u32 old_state = edev->state; 219 220 if (check_mutually_exclusive(edev, (edev->state & ~mask) | 221 (state & mask))) { 222 spin_unlock_irqrestore(&edev->lock, flags); 223 return -EPERM; 224 } 225 226 edev->state &= ~mask; 227 edev->state |= state & mask; 228 229 raw_notifier_call_chain(&edev->nh, old_state, edev); 230 /* This could be in interrupt handler */ 231 prop_buf = (char *)get_zeroed_page(GFP_ATOMIC); 232 if (prop_buf) { 233 length = name_show(&edev->dev, NULL, prop_buf); 234 if (length > 0) { 235 if (prop_buf[length - 1] == '\n') 236 prop_buf[length - 1] = 0; 237 snprintf(name_buf, sizeof(name_buf), 238 "NAME=%s", prop_buf); 239 envp[env_offset++] = name_buf; 240 } 241 length = state_show(&edev->dev, NULL, prop_buf); 242 if (length > 0) { 243 if (prop_buf[length - 1] == '\n') 244 prop_buf[length - 1] = 0; 245 snprintf(state_buf, sizeof(state_buf), 246 "STATE=%s", prop_buf); 247 envp[env_offset++] = state_buf; 248 } 249 envp[env_offset] = NULL; 250 /* Unlock early before uevent */ 251 spin_unlock_irqrestore(&edev->lock, flags); 252 253 kobject_uevent_env(&edev->dev.kobj, KOBJ_CHANGE, envp); 254 free_page((unsigned long)prop_buf); 255 } else { 256 /* Unlock early before uevent */ 257 spin_unlock_irqrestore(&edev->lock, flags); 258 259 dev_err(&edev->dev, "out of memory in extcon_set_state\n"); 260 kobject_uevent(&edev->dev.kobj, KOBJ_CHANGE); 261 } 262 } else { 263 /* No changes */ 264 spin_unlock_irqrestore(&edev->lock, flags); 265 } 266 267 return 0; 268} 269EXPORT_SYMBOL_GPL(extcon_update_state); 270 271/** 272 * extcon_set_state() - Set the cable attach states of the extcon device. 273 * @edev: the extcon device 274 * @state: new cable attach status for @edev 275 * 276 * Note that notifier provides which bits are changed in the state 277 * variable with the val parameter (second) to the callback. 278 */ 279int extcon_set_state(struct extcon_dev *edev, u32 state) 280{ 281 return extcon_update_state(edev, 0xffffffff, state); 282} 283EXPORT_SYMBOL_GPL(extcon_set_state); 284 285/** 286 * extcon_find_cable_index() - Get the cable index based on the cable name. 287 * @edev: the extcon device that has the cable. 288 * @cable_name: cable name to be searched. 289 * 290 * Note that accessing a cable state based on cable_index is faster than 291 * cable_name because using cable_name induces a loop with strncmp(). 292 * Thus, when get/set_cable_state is repeatedly used, using cable_index 293 * is recommended. 294 */ 295int extcon_find_cable_index(struct extcon_dev *edev, const char *cable_name) 296{ 297 int i; 298 299 if (edev->supported_cable) { 300 for (i = 0; edev->supported_cable[i]; i++) { 301 if (!strncmp(edev->supported_cable[i], 302 cable_name, CABLE_NAME_MAX)) 303 return i; 304 } 305 } 306 307 return -EINVAL; 308} 309EXPORT_SYMBOL_GPL(extcon_find_cable_index); 310 311/** 312 * extcon_get_cable_state_() - Get the status of a specific cable. 313 * @edev: the extcon device that has the cable. 314 * @index: cable index that can be retrieved by extcon_find_cable_index(). 315 */ 316int extcon_get_cable_state_(struct extcon_dev *edev, int index) 317{ 318 if (index < 0 || (edev->max_supported && edev->max_supported <= index)) 319 return -EINVAL; 320 321 return !!(edev->state & (1 << index)); 322} 323EXPORT_SYMBOL_GPL(extcon_get_cable_state_); 324 325/** 326 * extcon_get_cable_state() - Get the status of a specific cable. 327 * @edev: the extcon device that has the cable. 328 * @cable_name: cable name. 329 * 330 * Note that this is slower than extcon_get_cable_state_. 331 */ 332int extcon_get_cable_state(struct extcon_dev *edev, const char *cable_name) 333{ 334 return extcon_get_cable_state_(edev, extcon_find_cable_index 335 (edev, cable_name)); 336} 337EXPORT_SYMBOL_GPL(extcon_get_cable_state); 338 339/** 340 * extcon_set_cable_state_() - Set the status of a specific cable. 341 * @edev: the extcon device that has the cable. 342 * @index: cable index that can be retrieved by 343 * extcon_find_cable_index(). 344 * @cable_state: the new cable status. The default semantics is 345 * true: attached / false: detached. 346 */ 347int extcon_set_cable_state_(struct extcon_dev *edev, 348 int index, bool cable_state) 349{ 350 u32 state; 351 352 if (index < 0 || (edev->max_supported && edev->max_supported <= index)) 353 return -EINVAL; 354 355 state = cable_state ? (1 << index) : 0; 356 return extcon_update_state(edev, 1 << index, state); 357} 358EXPORT_SYMBOL_GPL(extcon_set_cable_state_); 359 360/** 361 * extcon_set_cable_state() - Set the status of a specific cable. 362 * @edev: the extcon device that has the cable. 363 * @cable_name: cable name. 364 * @cable_state: the new cable status. The default semantics is 365 * true: attached / false: detached. 366 * 367 * Note that this is slower than extcon_set_cable_state_. 368 */ 369int extcon_set_cable_state(struct extcon_dev *edev, 370 const char *cable_name, bool cable_state) 371{ 372 return extcon_set_cable_state_(edev, extcon_find_cable_index 373 (edev, cable_name), cable_state); 374} 375EXPORT_SYMBOL_GPL(extcon_set_cable_state); 376 377/** 378 * extcon_get_extcon_dev() - Get the extcon device instance from the name 379 * @extcon_name: The extcon name provided with extcon_dev_register() 380 */ 381struct extcon_dev *extcon_get_extcon_dev(const char *extcon_name) 382{ 383 struct extcon_dev *sd; 384 385 mutex_lock(&extcon_dev_list_lock); 386 list_for_each_entry(sd, &extcon_dev_list, entry) { 387 if (!strcmp(sd->name, extcon_name)) 388 goto out; 389 } 390 sd = NULL; 391out: 392 mutex_unlock(&extcon_dev_list_lock); 393 return sd; 394} 395EXPORT_SYMBOL_GPL(extcon_get_extcon_dev); 396 397static int _call_per_cable(struct notifier_block *nb, unsigned long val, 398 void *ptr) 399{ 400 struct extcon_specific_cable_nb *obj = container_of(nb, 401 struct extcon_specific_cable_nb, internal_nb); 402 struct extcon_dev *edev = ptr; 403 404 if ((val & (1 << obj->cable_index)) != 405 (edev->state & (1 << obj->cable_index))) { 406 bool cable_state = true; 407 408 obj->previous_value = val; 409 410 if (val & (1 << obj->cable_index)) 411 cable_state = false; 412 413 return obj->user_nb->notifier_call(obj->user_nb, 414 cable_state, ptr); 415 } 416 417 return NOTIFY_OK; 418} 419 420/** 421 * extcon_register_interest() - Register a notifier for a state change of a 422 * specific cable, not an entier set of cables of a 423 * extcon device. 424 * @obj: an empty extcon_specific_cable_nb object to be returned. 425 * @extcon_name: the name of extcon device. 426 * if NULL, extcon_register_interest will register 427 * every cable with the target cable_name given. 428 * @cable_name: the target cable name. 429 * @nb: the notifier block to get notified. 430 * 431 * Provide an empty extcon_specific_cable_nb. extcon_register_interest() sets 432 * the struct for you. 433 * 434 * extcon_register_interest is a helper function for those who want to get 435 * notification for a single specific cable's status change. If a user wants 436 * to get notification for any changes of all cables of a extcon device, 437 * he/she should use the general extcon_register_notifier(). 438 * 439 * Note that the second parameter given to the callback of nb (val) is 440 * "old_state", not the current state. The current state can be retrieved 441 * by looking at the third pameter (edev pointer)'s state value. 442 */ 443int extcon_register_interest(struct extcon_specific_cable_nb *obj, 444 const char *extcon_name, const char *cable_name, 445 struct notifier_block *nb) 446{ 447 if (!obj || !cable_name || !nb) 448 return -EINVAL; 449 450 if (extcon_name) { 451 obj->edev = extcon_get_extcon_dev(extcon_name); 452 if (!obj->edev) 453 return -ENODEV; 454 455 obj->cable_index = extcon_find_cable_index(obj->edev, 456 cable_name); 457 if (obj->cable_index < 0) 458 return obj->cable_index; 459 460 obj->user_nb = nb; 461 462 obj->internal_nb.notifier_call = _call_per_cable; 463 464 return raw_notifier_chain_register(&obj->edev->nh, 465 &obj->internal_nb); 466 } else { 467 struct class_dev_iter iter; 468 struct extcon_dev *extd; 469 struct device *dev; 470 471 if (!extcon_class) 472 return -ENODEV; 473 class_dev_iter_init(&iter, extcon_class, NULL, NULL); 474 while ((dev = class_dev_iter_next(&iter))) { 475 extd = dev_get_drvdata(dev); 476 477 if (extcon_find_cable_index(extd, cable_name) < 0) 478 continue; 479 480 class_dev_iter_exit(&iter); 481 return extcon_register_interest(obj, extd->name, 482 cable_name, nb); 483 } 484 485 return -ENODEV; 486 } 487} 488EXPORT_SYMBOL_GPL(extcon_register_interest); 489 490/** 491 * extcon_unregister_interest() - Unregister the notifier registered by 492 * extcon_register_interest(). 493 * @obj: the extcon_specific_cable_nb object returned by 494 * extcon_register_interest(). 495 */ 496int extcon_unregister_interest(struct extcon_specific_cable_nb *obj) 497{ 498 if (!obj) 499 return -EINVAL; 500 501 return raw_notifier_chain_unregister(&obj->edev->nh, &obj->internal_nb); 502} 503EXPORT_SYMBOL_GPL(extcon_unregister_interest); 504 505/** 506 * extcon_register_notifier() - Register a notifiee to get notified by 507 * any attach status changes from the extcon. 508 * @edev: the extcon device. 509 * @nb: a notifier block to be registered. 510 * 511 * Note that the second parameter given to the callback of nb (val) is 512 * "old_state", not the current state. The current state can be retrieved 513 * by looking at the third pameter (edev pointer)'s state value. 514 */ 515int extcon_register_notifier(struct extcon_dev *edev, 516 struct notifier_block *nb) 517{ 518 return raw_notifier_chain_register(&edev->nh, nb); 519} 520EXPORT_SYMBOL_GPL(extcon_register_notifier); 521 522/** 523 * extcon_unregister_notifier() - Unregister a notifiee from the extcon device. 524 * @edev: the extcon device. 525 * @nb: a registered notifier block to be unregistered. 526 */ 527int extcon_unregister_notifier(struct extcon_dev *edev, 528 struct notifier_block *nb) 529{ 530 return raw_notifier_chain_unregister(&edev->nh, nb); 531} 532EXPORT_SYMBOL_GPL(extcon_unregister_notifier); 533 534static struct attribute *extcon_attrs[] = { 535 &dev_attr_state.attr, 536 &dev_attr_name.attr, 537 NULL, 538}; 539ATTRIBUTE_GROUPS(extcon); 540 541static int create_extcon_class(void) 542{ 543 if (!extcon_class) { 544 extcon_class = class_create(THIS_MODULE, "extcon"); 545 if (IS_ERR(extcon_class)) 546 return PTR_ERR(extcon_class); 547 extcon_class->dev_groups = extcon_groups; 548 549#if defined(CONFIG_ANDROID) 550 switch_class = class_compat_register("switch"); 551 if (WARN(!switch_class, "cannot allocate")) 552 return -ENOMEM; 553#endif /* CONFIG_ANDROID */ 554 } 555 556 return 0; 557} 558 559static void extcon_dev_release(struct device *dev) 560{ 561} 562 563static const char *muex_name = "mutually_exclusive"; 564static void dummy_sysfs_dev_release(struct device *dev) 565{ 566} 567 568/* 569 * extcon_dev_allocate() - Allocate the memory of extcon device. 570 * @supported_cable: Array of supported cable names ending with NULL. 571 * If supported_cable is NULL, cable name related APIs 572 * are disabled. 573 * 574 * This function allocates the memory for extcon device without allocating 575 * memory in each extcon provider driver and initialize default setting for 576 * extcon device. 577 * 578 * Return the pointer of extcon device if success or ERR_PTR(err) if fail 579 */ 580struct extcon_dev *extcon_dev_allocate(const char **supported_cable) 581{ 582 struct extcon_dev *edev; 583 584 edev = kzalloc(sizeof(*edev), GFP_KERNEL); 585 if (!edev) 586 return ERR_PTR(-ENOMEM); 587 588 edev->max_supported = 0; 589 edev->supported_cable = supported_cable; 590 591 return edev; 592} 593 594/* 595 * extcon_dev_free() - Free the memory of extcon device. 596 * @edev: the extcon device to free 597 */ 598void extcon_dev_free(struct extcon_dev *edev) 599{ 600 kfree(edev); 601} 602EXPORT_SYMBOL_GPL(extcon_dev_free); 603 604static int devm_extcon_dev_match(struct device *dev, void *res, void *data) 605{ 606 struct extcon_dev **r = res; 607 608 if (WARN_ON(!r || !*r)) 609 return 0; 610 611 return *r == data; 612} 613 614static void devm_extcon_dev_release(struct device *dev, void *res) 615{ 616 extcon_dev_free(*(struct extcon_dev **)res); 617} 618 619/** 620 * devm_extcon_dev_allocate - Allocate managed extcon device 621 * @dev: device owning the extcon device being created 622 * @supported_cable: Array of supported cable names ending with NULL. 623 * If supported_cable is NULL, cable name related APIs 624 * are disabled. 625 * 626 * This function manages automatically the memory of extcon device using device 627 * resource management and simplify the control of freeing the memory of extcon 628 * device. 629 * 630 * Returns the pointer memory of allocated extcon_dev if success 631 * or ERR_PTR(err) if fail 632 */ 633struct extcon_dev *devm_extcon_dev_allocate(struct device *dev, 634 const char **supported_cable) 635{ 636 struct extcon_dev **ptr, *edev; 637 638 ptr = devres_alloc(devm_extcon_dev_release, sizeof(*ptr), GFP_KERNEL); 639 if (!ptr) 640 return ERR_PTR(-ENOMEM); 641 642 edev = extcon_dev_allocate(supported_cable); 643 if (IS_ERR(edev)) { 644 devres_free(ptr); 645 return edev; 646 } 647 648 *ptr = edev; 649 devres_add(dev, ptr); 650 651 return edev; 652} 653EXPORT_SYMBOL_GPL(devm_extcon_dev_allocate); 654 655void devm_extcon_dev_free(struct device *dev, struct extcon_dev *edev) 656{ 657 WARN_ON(devres_release(dev, devm_extcon_dev_release, 658 devm_extcon_dev_match, edev)); 659} 660EXPORT_SYMBOL_GPL(devm_extcon_dev_free); 661 662/** 663 * extcon_dev_register() - Register a new extcon device 664 * @edev : the new extcon device (should be allocated before calling) 665 * 666 * Among the members of edev struct, please set the "user initializing data" 667 * in any case and set the "optional callbacks" if required. However, please 668 * do not set the values of "internal data", which are initialized by 669 * this function. 670 */ 671int extcon_dev_register(struct extcon_dev *edev) 672{ 673 int ret, index = 0; 674 675 if (!extcon_class) { 676 ret = create_extcon_class(); 677 if (ret < 0) 678 return ret; 679 } 680 681 if (edev->supported_cable) { 682 /* Get size of array */ 683 for (index = 0; edev->supported_cable[index]; index++) 684 ; 685 edev->max_supported = index; 686 } else { 687 edev->max_supported = 0; 688 } 689 690 if (index > SUPPORTED_CABLE_MAX) { 691 dev_err(&edev->dev, "extcon: maximum number of supported cables exceeded.\n"); 692 return -EINVAL; 693 } 694 695 edev->dev.class = extcon_class; 696 edev->dev.release = extcon_dev_release; 697 698 edev->name = edev->name ? edev->name : dev_name(edev->dev.parent); 699 if (IS_ERR_OR_NULL(edev->name)) { 700 dev_err(&edev->dev, 701 "extcon device name is null\n"); 702 return -EINVAL; 703 } 704 dev_set_name(&edev->dev, "%s", edev->name); 705 706 if (edev->max_supported) { 707 char buf[10]; 708 char *str; 709 struct extcon_cable *cable; 710 711 edev->cables = kzalloc(sizeof(struct extcon_cable) * 712 edev->max_supported, GFP_KERNEL); 713 if (!edev->cables) { 714 ret = -ENOMEM; 715 goto err_sysfs_alloc; 716 } 717 for (index = 0; index < edev->max_supported; index++) { 718 cable = &edev->cables[index]; 719 720 snprintf(buf, 10, "cable.%d", index); 721 str = kzalloc(sizeof(char) * (strlen(buf) + 1), 722 GFP_KERNEL); 723 if (!str) { 724 for (index--; index >= 0; index--) { 725 cable = &edev->cables[index]; 726 kfree(cable->attr_g.name); 727 } 728 ret = -ENOMEM; 729 730 goto err_alloc_cables; 731 } 732 strcpy(str, buf); 733 734 cable->edev = edev; 735 cable->cable_index = index; 736 cable->attrs[0] = &cable->attr_name.attr; 737 cable->attrs[1] = &cable->attr_state.attr; 738 cable->attrs[2] = NULL; 739 cable->attr_g.name = str; 740 cable->attr_g.attrs = cable->attrs; 741 742 sysfs_attr_init(&cable->attr_name.attr); 743 cable->attr_name.attr.name = "name"; 744 cable->attr_name.attr.mode = 0444; 745 cable->attr_name.show = cable_name_show; 746 747 sysfs_attr_init(&cable->attr_state.attr); 748 cable->attr_state.attr.name = "state"; 749 cable->attr_state.attr.mode = 0444; 750 cable->attr_state.show = cable_state_show; 751 } 752 } 753 754 if (edev->max_supported && edev->mutually_exclusive) { 755 char buf[80]; 756 char *name; 757 758 /* Count the size of mutually_exclusive array */ 759 for (index = 0; edev->mutually_exclusive[index]; index++) 760 ; 761 762 edev->attrs_muex = kzalloc(sizeof(struct attribute *) * 763 (index + 1), GFP_KERNEL); 764 if (!edev->attrs_muex) { 765 ret = -ENOMEM; 766 goto err_muex; 767 } 768 769 edev->d_attrs_muex = kzalloc(sizeof(struct device_attribute) * 770 index, GFP_KERNEL); 771 if (!edev->d_attrs_muex) { 772 ret = -ENOMEM; 773 kfree(edev->attrs_muex); 774 goto err_muex; 775 } 776 777 for (index = 0; edev->mutually_exclusive[index]; index++) { 778 sprintf(buf, "0x%x", edev->mutually_exclusive[index]); 779 name = kzalloc(sizeof(char) * (strlen(buf) + 1), 780 GFP_KERNEL); 781 if (!name) { 782 for (index--; index >= 0; index--) { 783 kfree(edev->d_attrs_muex[index].attr. 784 name); 785 } 786 kfree(edev->d_attrs_muex); 787 kfree(edev->attrs_muex); 788 ret = -ENOMEM; 789 goto err_muex; 790 } 791 strcpy(name, buf); 792 sysfs_attr_init(&edev->d_attrs_muex[index].attr); 793 edev->d_attrs_muex[index].attr.name = name; 794 edev->d_attrs_muex[index].attr.mode = 0000; 795 edev->attrs_muex[index] = &edev->d_attrs_muex[index] 796 .attr; 797 } 798 edev->attr_g_muex.name = muex_name; 799 edev->attr_g_muex.attrs = edev->attrs_muex; 800 801 } 802 803 if (edev->max_supported) { 804 edev->extcon_dev_type.groups = 805 kzalloc(sizeof(struct attribute_group *) * 806 (edev->max_supported + 2), GFP_KERNEL); 807 if (!edev->extcon_dev_type.groups) { 808 ret = -ENOMEM; 809 goto err_alloc_groups; 810 } 811 812 edev->extcon_dev_type.name = dev_name(&edev->dev); 813 edev->extcon_dev_type.release = dummy_sysfs_dev_release; 814 815 for (index = 0; index < edev->max_supported; index++) 816 edev->extcon_dev_type.groups[index] = 817 &edev->cables[index].attr_g; 818 if (edev->mutually_exclusive) 819 edev->extcon_dev_type.groups[index] = 820 &edev->attr_g_muex; 821 822 edev->dev.type = &edev->extcon_dev_type; 823 } 824 825 ret = device_register(&edev->dev); 826 if (ret) { 827 put_device(&edev->dev); 828 goto err_dev; 829 } 830#if defined(CONFIG_ANDROID) 831 if (switch_class) 832 ret = class_compat_create_link(switch_class, &edev->dev, NULL); 833#endif /* CONFIG_ANDROID */ 834 835 spin_lock_init(&edev->lock); 836 837 RAW_INIT_NOTIFIER_HEAD(&edev->nh); 838 839 dev_set_drvdata(&edev->dev, edev); 840 edev->state = 0; 841 842 mutex_lock(&extcon_dev_list_lock); 843 list_add(&edev->entry, &extcon_dev_list); 844 mutex_unlock(&extcon_dev_list_lock); 845 846 return 0; 847 848err_dev: 849 if (edev->max_supported) 850 kfree(edev->extcon_dev_type.groups); 851err_alloc_groups: 852 if (edev->max_supported && edev->mutually_exclusive) { 853 for (index = 0; edev->mutually_exclusive[index]; index++) 854 kfree(edev->d_attrs_muex[index].attr.name); 855 kfree(edev->d_attrs_muex); 856 kfree(edev->attrs_muex); 857 } 858err_muex: 859 for (index = 0; index < edev->max_supported; index++) 860 kfree(edev->cables[index].attr_g.name); 861err_alloc_cables: 862 if (edev->max_supported) 863 kfree(edev->cables); 864err_sysfs_alloc: 865 return ret; 866} 867EXPORT_SYMBOL_GPL(extcon_dev_register); 868 869/** 870 * extcon_dev_unregister() - Unregister the extcon device. 871 * @edev: the extcon device instance to be unregistered. 872 * 873 * Note that this does not call kfree(edev) because edev was not allocated 874 * by this class. 875 */ 876void extcon_dev_unregister(struct extcon_dev *edev) 877{ 878 int index; 879 880 mutex_lock(&extcon_dev_list_lock); 881 list_del(&edev->entry); 882 mutex_unlock(&extcon_dev_list_lock); 883 884 if (IS_ERR_OR_NULL(get_device(&edev->dev))) { 885 dev_err(&edev->dev, "Failed to unregister extcon_dev (%s)\n", 886 dev_name(&edev->dev)); 887 return; 888 } 889 890 device_unregister(&edev->dev); 891 892 if (edev->mutually_exclusive && edev->max_supported) { 893 for (index = 0; edev->mutually_exclusive[index]; 894 index++) 895 kfree(edev->d_attrs_muex[index].attr.name); 896 kfree(edev->d_attrs_muex); 897 kfree(edev->attrs_muex); 898 } 899 900 for (index = 0; index < edev->max_supported; index++) 901 kfree(edev->cables[index].attr_g.name); 902 903 if (edev->max_supported) { 904 kfree(edev->extcon_dev_type.groups); 905 kfree(edev->cables); 906 } 907 908#if defined(CONFIG_ANDROID) 909 if (switch_class) 910 class_compat_remove_link(switch_class, &edev->dev, NULL); 911#endif 912 put_device(&edev->dev); 913} 914EXPORT_SYMBOL_GPL(extcon_dev_unregister); 915 916static void devm_extcon_dev_unreg(struct device *dev, void *res) 917{ 918 extcon_dev_unregister(*(struct extcon_dev **)res); 919} 920 921/** 922 * devm_extcon_dev_register() - Resource-managed extcon_dev_register() 923 * @dev: device to allocate extcon device 924 * @edev: the new extcon device to register 925 * 926 * Managed extcon_dev_register() function. If extcon device is attached with 927 * this function, that extcon device is automatically unregistered on driver 928 * detach. Internally this function calls extcon_dev_register() function. 929 * To get more information, refer that function. 930 * 931 * If extcon device is registered with this function and the device needs to be 932 * unregistered separately, devm_extcon_dev_unregister() should be used. 933 * 934 * Returns 0 if success or negaive error number if failure. 935 */ 936int devm_extcon_dev_register(struct device *dev, struct extcon_dev *edev) 937{ 938 struct extcon_dev **ptr; 939 int ret; 940 941 ptr = devres_alloc(devm_extcon_dev_unreg, sizeof(*ptr), GFP_KERNEL); 942 if (!ptr) 943 return -ENOMEM; 944 945 ret = extcon_dev_register(edev); 946 if (ret) { 947 devres_free(ptr); 948 return ret; 949 } 950 951 *ptr = edev; 952 devres_add(dev, ptr); 953 954 return 0; 955} 956EXPORT_SYMBOL_GPL(devm_extcon_dev_register); 957 958/** 959 * devm_extcon_dev_unregister() - Resource-managed extcon_dev_unregister() 960 * @dev: device the extcon belongs to 961 * @edev: the extcon device to unregister 962 * 963 * Unregister extcon device that is registered with devm_extcon_dev_register() 964 * function. 965 */ 966void devm_extcon_dev_unregister(struct device *dev, struct extcon_dev *edev) 967{ 968 WARN_ON(devres_release(dev, devm_extcon_dev_unreg, 969 devm_extcon_dev_match, edev)); 970} 971EXPORT_SYMBOL_GPL(devm_extcon_dev_unregister); 972 973#ifdef CONFIG_OF 974/* 975 * extcon_get_edev_by_phandle - Get the extcon device from devicetree 976 * @dev - instance to the given device 977 * @index - index into list of extcon_dev 978 * 979 * return the instance of extcon device 980 */ 981struct extcon_dev *extcon_get_edev_by_phandle(struct device *dev, int index) 982{ 983 struct device_node *node; 984 struct extcon_dev *edev; 985 986 if (!dev->of_node) { 987 dev_err(dev, "device does not have a device node entry\n"); 988 return ERR_PTR(-EINVAL); 989 } 990 991 node = of_parse_phandle(dev->of_node, "extcon", index); 992 if (!node) { 993 dev_err(dev, "failed to get phandle in %s node\n", 994 dev->of_node->full_name); 995 return ERR_PTR(-ENODEV); 996 } 997 998 edev = extcon_get_extcon_dev(node->name); 999 if (!edev) { 1000 dev_err(dev, "unable to get extcon device : %s\n", node->name); 1001 return ERR_PTR(-ENODEV); 1002 } 1003 1004 return edev; 1005} 1006#else 1007struct extcon_dev *extcon_get_edev_by_phandle(struct device *dev, int index) 1008{ 1009 return ERR_PTR(-ENOSYS); 1010} 1011#endif /* CONFIG_OF */ 1012EXPORT_SYMBOL_GPL(extcon_get_edev_by_phandle); 1013 1014static int __init extcon_class_init(void) 1015{ 1016 return create_extcon_class(); 1017} 1018module_init(extcon_class_init); 1019 1020static void __exit extcon_class_exit(void) 1021{ 1022#if defined(CONFIG_ANDROID) 1023 class_compat_unregister(switch_class); 1024#endif 1025 class_destroy(extcon_class); 1026} 1027module_exit(extcon_class_exit); 1028 1029MODULE_AUTHOR("Mike Lockwood <lockwood@android.com>"); 1030MODULE_AUTHOR("Donggeun Kim <dg77.kim@samsung.com>"); 1031MODULE_AUTHOR("MyungJoo Ham <myungjoo.ham@samsung.com>"); 1032MODULE_DESCRIPTION("External connector (extcon) class driver"); 1033MODULE_LICENSE("GPL");