callbacks.txt 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. What callbacks will usbcore do?
  2. ===============================
  3. Usbcore will call into a driver through callbacks defined in the driver
  4. structure and through the completion handler of URBs a driver submits.
  5. Only the former are in the scope of this document. These two kinds of
  6. callbacks are completely independent of each other. Information on the
  7. completion callback can be found in Documentation/usb/URB.txt.
  8. The callbacks defined in the driver structure are:
  9. 1. Hotplugging callbacks:
  10. * @probe: Called to see if the driver is willing to manage a particular
  11. * interface on a device.
  12. * @disconnect: Called when the interface is no longer accessible, usually
  13. * because its device has been (or is being) disconnected or the
  14. * driver module is being unloaded.
  15. 2. Odd backdoor through usbfs:
  16. * @ioctl: Used for drivers that want to talk to userspace through
  17. * the "usbfs" filesystem. This lets devices provide ways to
  18. * expose information to user space regardless of where they
  19. * do (or don't) show up otherwise in the filesystem.
  20. 3. Power management (PM) callbacks:
  21. * @suspend: Called when the device is going to be suspended.
  22. * @resume: Called when the device is being resumed.
  23. * @reset_resume: Called when the suspended device has been reset instead
  24. * of being resumed.
  25. 4. Device level operations:
  26. * @pre_reset: Called when the device is about to be reset.
  27. * @post_reset: Called after the device has been reset
  28. The ioctl interface (2) should be used only if you have a very good
  29. reason. Sysfs is preferred these days. The PM callbacks are covered
  30. separately in Documentation/usb/power-management.txt.
  31. Calling conventions
  32. ===================
  33. All callbacks are mutually exclusive. There's no need for locking
  34. against other USB callbacks. All callbacks are called from a task
  35. context. You may sleep. However, it is important that all sleeps have a
  36. small fixed upper limit in time. In particular you must not call out to
  37. user space and await results.
  38. Hotplugging callbacks
  39. =====================
  40. These callbacks are intended to associate and disassociate a driver with
  41. an interface. A driver's bond to an interface is exclusive.
  42. The probe() callback
  43. --------------------
  44. int (*probe) (struct usb_interface *intf,
  45. const struct usb_device_id *id);
  46. Accept or decline an interface. If you accept the device return 0,
  47. otherwise -ENODEV or -ENXIO. Other error codes should be used only if a
  48. genuine error occurred during initialisation which prevented a driver
  49. from accepting a device that would else have been accepted.
  50. You are strongly encouraged to use usbcore's facility,
  51. usb_set_intfdata(), to associate a data structure with an interface, so
  52. that you know which internal state and identity you associate with a
  53. particular interface. The device will not be suspended and you may do IO
  54. to the interface you are called for and endpoint 0 of the device. Device
  55. initialisation that doesn't take too long is a good idea here.
  56. The disconnect() callback
  57. -------------------------
  58. void (*disconnect) (struct usb_interface *intf);
  59. This callback is a signal to break any connection with an interface.
  60. You are not allowed any IO to a device after returning from this
  61. callback. You also may not do any other operation that may interfere
  62. with another driver bound the interface, eg. a power management
  63. operation.
  64. If you are called due to a physical disconnection, all your URBs will be
  65. killed by usbcore. Note that in this case disconnect will be called some
  66. time after the physical disconnection. Thus your driver must be prepared
  67. to deal with failing IO even prior to the callback.
  68. Device level callbacks
  69. ======================
  70. pre_reset
  71. ---------
  72. int (*pre_reset)(struct usb_interface *intf);
  73. A driver or user space is triggering a reset on the device which
  74. contains the interface passed as an argument. Cease IO, wait for all
  75. outstanding URBs to complete, and save any device state you need to
  76. restore. No more URBs may be submitted until the post_reset method
  77. is called.
  78. If you need to allocate memory here, use GFP_NOIO or GFP_ATOMIC, if you
  79. are in atomic context.
  80. post_reset
  81. ----------
  82. int (*post_reset)(struct usb_interface *intf);
  83. The reset has completed. Restore any saved device state and begin
  84. using the device again.
  85. If you need to allocate memory here, use GFP_NOIO or GFP_ATOMIC, if you
  86. are in atomic context.
  87. Call sequences
  88. ==============
  89. No callbacks other than probe will be invoked for an interface
  90. that isn't bound to your driver.
  91. Probe will never be called for an interface bound to a driver.
  92. Hence following a successful probe, disconnect will be called
  93. before there is another probe for the same interface.
  94. Once your driver is bound to an interface, disconnect can be
  95. called at any time except in between pre_reset and post_reset.
  96. pre_reset is always followed by post_reset, even if the reset
  97. failed or the device has been unplugged.
  98. suspend is always followed by one of: resume, reset_resume, or
  99. disconnect.