binding.rst 3.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. ==============
  2. Driver Binding
  3. ==============
  4. Driver binding is the process of associating a device with a device
  5. driver that can control it. Bus drivers have typically handled this
  6. because there have been bus-specific structures to represent the
  7. devices and the drivers. With generic device and device driver
  8. structures, most of the binding can take place using common code.
  9. Bus
  10. ~~~
  11. The bus type structure contains a list of all devices that are on that bus
  12. type in the system. When device_register is called for a device, it is
  13. inserted into the end of this list. The bus object also contains a
  14. list of all drivers of that bus type. When driver_register is called
  15. for a driver, it is inserted at the end of this list. These are the
  16. two events which trigger driver binding.
  17. device_register
  18. ~~~~~~~~~~~~~~~
  19. When a new device is added, the bus's list of drivers is iterated over
  20. to find one that supports it. In order to determine that, the device
  21. ID of the device must match one of the device IDs that the driver
  22. supports. The format and semantics for comparing IDs is bus-specific.
  23. Instead of trying to derive a complex state machine and matching
  24. algorithm, it is up to the bus driver to provide a callback to compare
  25. a device against the IDs of a driver. The bus returns 1 if a match was
  26. found; 0 otherwise.
  27. int match(struct device * dev, struct device_driver * drv);
  28. If a match is found, the device's driver field is set to the driver
  29. and the driver's probe callback is called. This gives the driver a
  30. chance to verify that it really does support the hardware, and that
  31. it's in a working state.
  32. Device Class
  33. ~~~~~~~~~~~~
  34. Upon the successful completion of probe, the device is registered with
  35. the class to which it belongs. Device drivers belong to one and only one
  36. class, and that is set in the driver's devclass field.
  37. devclass_add_device is called to enumerate the device within the class
  38. and actually register it with the class, which happens with the
  39. class's register_dev callback.
  40. Driver
  41. ~~~~~~
  42. When a driver is attached to a device, the device is inserted into the
  43. driver's list of devices.
  44. sysfs
  45. ~~~~~
  46. A symlink is created in the bus's 'devices' directory that points to
  47. the device's directory in the physical hierarchy.
  48. A symlink is created in the driver's 'devices' directory that points
  49. to the device's directory in the physical hierarchy.
  50. A directory for the device is created in the class's directory. A
  51. symlink is created in that directory that points to the device's
  52. physical location in the sysfs tree.
  53. A symlink can be created (though this isn't done yet) in the device's
  54. physical directory to either its class directory, or the class's
  55. top-level directory. One can also be created to point to its driver's
  56. directory also.
  57. driver_register
  58. ~~~~~~~~~~~~~~~
  59. The process is almost identical for when a new driver is added.
  60. The bus's list of devices is iterated over to find a match. Devices
  61. that already have a driver are skipped. All the devices are iterated
  62. over, to bind as many devices as possible to the driver.
  63. Removal
  64. ~~~~~~~
  65. When a device is removed, the reference count for it will eventually
  66. go to 0. When it does, the remove callback of the driver is called. It
  67. is removed from the driver's list of devices and the reference count
  68. of the driver is decremented. All symlinks between the two are removed.
  69. When a driver is removed, the list of devices that it supports is
  70. iterated over, and the driver's remove callback is called for each
  71. one. The device is removed from that list and the symlinks removed.