eisa.txt 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203
  1. EISA bus support (Marc Zyngier <maz@wild-wind.fr.eu.org>)
  2. This document groups random notes about porting EISA drivers to the
  3. new EISA/sysfs API.
  4. Starting from version 2.5.59, the EISA bus is almost given the same
  5. status as other much more mainstream busses such as PCI or USB. This
  6. has been possible through sysfs, which defines a nice enough set of
  7. abstractions to manage busses, devices and drivers.
  8. Although the new API is quite simple to use, converting existing
  9. drivers to the new infrastructure is not an easy task (mostly because
  10. detection code is generally also used to probe ISA cards). Moreover,
  11. most EISA drivers are among the oldest Linux drivers so, as you can
  12. imagine, some dust has settled here over the years.
  13. The EISA infrastructure is made up of three parts :
  14. - The bus code implements most of the generic code. It is shared
  15. among all the architectures that the EISA code runs on. It
  16. implements bus probing (detecting EISA cards available on the bus),
  17. allocates I/O resources, allows fancy naming through sysfs, and
  18. offers interfaces for driver to register.
  19. - The bus root driver implements the glue between the bus hardware
  20. and the generic bus code. It is responsible for discovering the
  21. device implementing the bus, and setting it up to be latter probed
  22. by the bus code. This can go from something as simple as reserving
  23. an I/O region on x86, to the rather more complex, like the hppa
  24. EISA code. This is the part to implement in order to have EISA
  25. running on an "new" platform.
  26. - The driver offers the bus a list of devices that it manages, and
  27. implements the necessary callbacks to probe and release devices
  28. whenever told to.
  29. Every function/structure below lives in <linux/eisa.h>, which depends
  30. heavily on <linux/device.h>.
  31. ** Bus root driver :
  32. int eisa_root_register (struct eisa_root_device *root);
  33. The eisa_root_register function is used to declare a device as the
  34. root of an EISA bus. The eisa_root_device structure holds a reference
  35. to this device, as well as some parameters for probing purposes.
  36. struct eisa_root_device {
  37. struct device *dev; /* Pointer to bridge device */
  38. struct resource *res;
  39. unsigned long bus_base_addr;
  40. int slots; /* Max slot number */
  41. int force_probe; /* Probe even when no slot 0 */
  42. u64 dma_mask; /* from bridge device */
  43. int bus_nr; /* Set by eisa_root_register */
  44. struct resource eisa_root_res; /* ditto */
  45. };
  46. node : used for eisa_root_register internal purpose
  47. dev : pointer to the root device
  48. res : root device I/O resource
  49. bus_base_addr : slot 0 address on this bus
  50. slots : max slot number to probe
  51. force_probe : Probe even when slot 0 is empty (no EISA mainboard)
  52. dma_mask : Default DMA mask. Usually the bridge device dma_mask.
  53. bus_nr : unique bus id, set by eisa_root_register
  54. ** Driver :
  55. int eisa_driver_register (struct eisa_driver *edrv);
  56. void eisa_driver_unregister (struct eisa_driver *edrv);
  57. Clear enough ?
  58. struct eisa_device_id {
  59. char sig[EISA_SIG_LEN];
  60. unsigned long driver_data;
  61. };
  62. struct eisa_driver {
  63. const struct eisa_device_id *id_table;
  64. struct device_driver driver;
  65. };
  66. id_table : an array of NULL terminated EISA id strings,
  67. followed by an empty string. Each string can
  68. optionally be paired with a driver-dependant value
  69. (driver_data).
  70. driver : a generic driver, such as described in
  71. Documentation/driver-model/driver.txt. Only .name,
  72. .probe and .remove members are mandatory.
  73. An example is the 3c59x driver :
  74. static struct eisa_device_id vortex_eisa_ids[] = {
  75. { "TCM5920", EISA_3C592_OFFSET },
  76. { "TCM5970", EISA_3C597_OFFSET },
  77. { "" }
  78. };
  79. static struct eisa_driver vortex_eisa_driver = {
  80. .id_table = vortex_eisa_ids,
  81. .driver = {
  82. .name = "3c59x",
  83. .probe = vortex_eisa_probe,
  84. .remove = vortex_eisa_remove
  85. }
  86. };
  87. ** Device :
  88. The sysfs framework calls .probe and .remove functions upon device
  89. discovery and removal (note that the .remove function is only called
  90. when driver is built as a module).
  91. Both functions are passed a pointer to a 'struct device', which is
  92. encapsulated in a 'struct eisa_device' described as follows :
  93. struct eisa_device {
  94. struct eisa_device_id id;
  95. int slot;
  96. int state;
  97. unsigned long base_addr;
  98. struct resource res[EISA_MAX_RESOURCES];
  99. u64 dma_mask;
  100. struct device dev; /* generic device */
  101. };
  102. id : EISA id, as read from device. id.driver_data is set from the
  103. matching driver EISA id.
  104. slot : slot number which the device was detected on
  105. state : set of flags indicating the state of the device. Current
  106. flags are EISA_CONFIG_ENABLED and EISA_CONFIG_FORCED.
  107. res : set of four 256 bytes I/O regions allocated to this device
  108. dma_mask: DMA mask set from the parent device.
  109. dev : generic device (see Documentation/driver-model/device.txt)
  110. You can get the 'struct eisa_device' from 'struct device' using the
  111. 'to_eisa_device' macro.
  112. ** Misc stuff :
  113. void eisa_set_drvdata (struct eisa_device *edev, void *data);
  114. Stores data into the device's driver_data area.
  115. void *eisa_get_drvdata (struct eisa_device *edev):
  116. Gets the pointer previously stored into the device's driver_data area.
  117. int eisa_get_region_index (void *addr);
  118. Returns the region number (0 <= x < EISA_MAX_RESOURCES) of a given
  119. address.
  120. ** Kernel parameters :
  121. eisa_bus.enable_dev :
  122. A comma-separated list of slots to be enabled, even if the firmware
  123. set the card as disabled. The driver must be able to properly
  124. initialize the device in such conditions.
  125. eisa_bus.disable_dev :
  126. A comma-separated list of slots to be enabled, even if the firmware
  127. set the card as enabled. The driver won't be called to handle this
  128. device.
  129. virtual_root.force_probe :
  130. Force the probing code to probe EISA slots even when it cannot find an
  131. EISA compliant mainboard (nothing appears on slot 0). Defaultd to 0
  132. (don't force), and set to 1 (force probing) when either
  133. CONFIG_ALPHA_JENSEN or CONFIG_EISA_VLB_PRIMING are set.
  134. ** Random notes :
  135. Converting an EISA driver to the new API mostly involves *deleting*
  136. code (since probing is now in the core EISA code). Unfortunately, most
  137. drivers share their probing routine between ISA, MCA and EISA. Special
  138. care must be taken when ripping out the EISA code, so other busses
  139. won't suffer from these surgical strikes...
  140. You *must not* expect any EISA device to be detected when returning
  141. from eisa_driver_register, since the chances are that the bus has not
  142. yet been probed. In fact, that's what happens most of the time (the
  143. bus root driver usually kicks in rather late in the boot process).
  144. Unfortunately, most drivers are doing the probing by themselves, and
  145. expect to have explored the whole machine when they exit their probe
  146. routine.
  147. For example, switching your favorite EISA SCSI card to the "hotplug"
  148. model is "the right thing"(tm).
  149. ** Thanks :
  150. I'd like to thank the following people for their help :
  151. - Xavier Benigni for lending me a wonderful Alpha Jensen,
  152. - James Bottomley, Jeff Garzik for getting this stuff into the kernel,
  153. - Andries Brouwer for contributing numerous EISA ids,
  154. - Catrin Jones for coping with far too many machines at home.