porting-android-switch-class 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. Staging/Android Switch Class Porting Guide
  2. (linux/drivers/staging/android/switch)
  3. (c) Copyright 2012 Samsung Electronics
  4. AUTHORS
  5. MyungJoo Ham <myungjoo.ham@samsung.com>
  6. /*****************************************************************
  7. * CHAPTER 1. *
  8. * PORTING SWITCH CLASS DEVICE DRIVERS *
  9. *****************************************************************/
  10. ****** STEP 1. Basic Functionality
  11. No extcon extended feature, but switch features only.
  12. - struct switch_dev (fed to switch_dev_register/unregister)
  13. @name: no change
  14. @dev: no change
  15. @index: drop (not used in switch device driver side anyway)
  16. @state: no change
  17. If you have used @state with magic numbers, keep it
  18. at this step.
  19. @print_name: no change but type change (switch_dev->extcon_dev)
  20. @print_state: no change but type change (switch_dev->extcon_dev)
  21. - switch_dev_register(sdev, dev)
  22. => extcon_dev_register(edev)
  23. : type change (sdev->edev)
  24. : remove second param('dev'). if edev has parent device, should store
  25. 'dev' to 'edev.dev.parent' before registering extcon device
  26. - switch_dev_unregister(sdev)
  27. => extcon_dev_unregister(edev)
  28. : no change but type change (sdev->edev)
  29. - switch_get_state(sdev)
  30. => extcon_get_state(edev)
  31. : no change but type change (sdev->edev) and (return: int->u32)
  32. - switch_set_state(sdev, state)
  33. => extcon_set_state(edev, state)
  34. : no change but type change (sdev->edev) and (state: int->u32)
  35. With this changes, the ex-switch extcon class device works as it once
  36. worked as switch class device. However, it will now have additional
  37. interfaces (both ABI and in-kernel API) and different ABI locations.
  38. However, if CONFIG_ANDROID is enabled without CONFIG_ANDROID_SWITCH,
  39. /sys/class/switch/* will be symbolically linked to /sys/class/extcon/
  40. so that they are still compatible with legacy userspace processes.
  41. ****** STEP 2. Multistate (no more magic numbers in state value)
  42. Extcon's extended features for switch device drivers with
  43. complex features usually required magic numbers in state
  44. value of switch_dev. With extcon, such magic numbers that
  45. support multiple cables are no more required or supported.
  46. 1. Define cable names at edev->supported_cable.
  47. 2. (Recommended) remove print_state callback.
  48. 3. Use extcon_get_cable_state_(edev, index) or
  49. extcon_get_cable_state(edev, cable_name) instead of
  50. extcon_get_state(edev) if you intend to get a state of a specific
  51. cable. Same for set_state. This way, you can remove the usage of
  52. magic numbers in state value.
  53. 4. Use extcon_update_state() if you are updating specific bits of
  54. the state value.
  55. Example: a switch device driver w/ magic numbers for two cables.
  56. "0x00": no cables connected.
  57. "0x01": cable 1 connected
  58. "0x02": cable 2 connected
  59. "0x03": cable 1 and 2 connected
  60. 1. edev->supported_cable = {"1", "2", NULL};
  61. 2. edev->print_state = NULL;
  62. 3. extcon_get_cable_state_(edev, 0) shows cable 1's state.
  63. extcon_get_cable_state(edev, "1") shows cable 1's state.
  64. extcon_set_cable_state_(edev, 1) sets cable 2's state.
  65. extcon_set_cable_state(edev, "2") sets cable 2's state
  66. 4. extcon_update_state(edev, 0x01, 0) sets the least bit's 0.
  67. ****** STEP 3. Notify other device drivers
  68. You can notify others of the cable attach/detach events with
  69. notifier chains.
  70. At the side of other device drivers (the extcon device itself
  71. does not need to get notified of its own events), there are two
  72. methods to register notifier_block for cable events:
  73. (a) for a specific cable or (b) for every cable.
  74. (a) extcon_register_interest(obj, extcon_name, cable_name, nb)
  75. Example: want to get news of "MAX8997_MUIC"'s "USB" cable
  76. obj = kzalloc(sizeof(struct extcon_specific_cable_nb),
  77. GFP_KERNEL);
  78. nb->notifier_call = the_callback_to_handle_usb;
  79. extcon_register_intereset(obj, "MAX8997_MUIC", "USB", nb);
  80. (b) extcon_register_notifier(edev, nb)
  81. Call nb for any changes in edev.
  82. Please note that in order to properly behave with method (a),
  83. the extcon device driver should support multistate feature (STEP 2).
  84. ****** STEP 4. Inter-cable relation (mutually exclusive)
  85. You can provide inter-cable mutually exclusiveness information
  86. for an extcon device. When cables A and B are declared to be mutually
  87. exclusive, the two cables cannot be in ATTACHED state simulteneously.
  88. /*****************************************************************
  89. * CHAPTER 2. *
  90. * PORTING USERSPACE w/ SWITCH CLASS DEVICE SUPPORT *
  91. *****************************************************************/
  92. ****** ABI Location
  93. If "CONFIG_ANDROID" is enabled, /sys/class/switch/* are created
  94. as symbolic links to /sys/class/extcon/*.
  95. The two files of switch class, name and state, are provided with
  96. extcon, too. When the multistate support (STEP 2 of CHAPTER 1.) is
  97. not enabled or print_state callback is supplied, the output of
  98. state ABI is same with switch class.