driver.txt 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272
  1. GPIO Descriptor Driver Interface
  2. ================================
  3. This document serves as a guide for GPIO chip drivers writers. Note that it
  4. describes the new descriptor-based interface. For a description of the
  5. deprecated integer-based GPIO interface please refer to gpio-legacy.txt.
  6. Each GPIO controller driver needs to include the following header, which defines
  7. the structures used to define a GPIO driver:
  8. #include <linux/gpio/driver.h>
  9. Internal Representation of GPIOs
  10. ================================
  11. Inside a GPIO driver, individual GPIOs are identified by their hardware number,
  12. which is a unique number between 0 and n, n being the number of GPIOs managed by
  13. the chip. This number is purely internal: the hardware number of a particular
  14. GPIO descriptor is never made visible outside of the driver.
  15. On top of this internal number, each GPIO also need to have a global number in
  16. the integer GPIO namespace so that it can be used with the legacy GPIO
  17. interface. Each chip must thus have a "base" number (which can be automatically
  18. assigned), and for each GPIO the global number will be (base + hardware number).
  19. Although the integer representation is considered deprecated, it still has many
  20. users and thus needs to be maintained.
  21. So for example one platform could use numbers 32-159 for GPIOs, with a
  22. controller defining 128 GPIOs at a "base" of 32 ; while another platform uses
  23. numbers 0..63 with one set of GPIO controllers, 64-79 with another type of GPIO
  24. controller, and on one particular board 80-95 with an FPGA. The numbers need not
  25. be contiguous; either of those platforms could also use numbers 2000-2063 to
  26. identify GPIOs in a bank of I2C GPIO expanders.
  27. Controller Drivers: gpio_chip
  28. =============================
  29. In the gpiolib framework each GPIO controller is packaged as a "struct
  30. gpio_chip" (see linux/gpio/driver.h for its complete definition) with members
  31. common to each controller of that type:
  32. - methods to establish GPIO direction
  33. - methods used to access GPIO values
  34. - method to return the IRQ number associated to a given GPIO
  35. - flag saying whether calls to its methods may sleep
  36. - optional debugfs dump method (showing extra state like pullup config)
  37. - optional base number (will be automatically assigned if omitted)
  38. - label for diagnostics and GPIOs mapping using platform data
  39. The code implementing a gpio_chip should support multiple instances of the
  40. controller, possibly using the driver model. That code will configure each
  41. gpio_chip and issue gpiochip_add(). Removing a GPIO controller should be rare;
  42. use gpiochip_remove() when it is unavoidable.
  43. Most often a gpio_chip is part of an instance-specific structure with state not
  44. exposed by the GPIO interfaces, such as addressing, power management, and more.
  45. Chips such as codecs will have complex non-GPIO state.
  46. Any debugfs dump method should normally ignore signals which haven't been
  47. requested as GPIOs. They can use gpiochip_is_requested(), which returns either
  48. NULL or the label associated with that GPIO when it was requested.
  49. RT_FULL: GPIO driver should not use spinlock_t or any sleepable APIs
  50. (like PM runtime) in its gpio_chip implementation (.get/.set and direction
  51. control callbacks) if it is expected to call GPIO APIs from atomic context
  52. on -RT (inside hard IRQ handlers and similar contexts). Normally this should
  53. not be required.
  54. GPIO drivers providing IRQs
  55. ---------------------------
  56. It is custom that GPIO drivers (GPIO chips) are also providing interrupts,
  57. most often cascaded off a parent interrupt controller, and in some special
  58. cases the GPIO logic is melded with a SoC's primary interrupt controller.
  59. The IRQ portions of the GPIO block are implemented using an irqchip, using
  60. the header <linux/irq.h>. So basically such a driver is utilizing two sub-
  61. systems simultaneously: gpio and irq.
  62. RT_FULL: GPIO driver should not use spinlock_t or any sleepable APIs
  63. (like PM runtime) as part of its irq_chip implementation on -RT.
  64. - spinlock_t should be replaced with raw_spinlock_t [1].
  65. - If sleepable APIs have to be used, these can be done from the .irq_bus_lock()
  66. and .irq_bus_unlock() callbacks, as these are the only slowpath callbacks
  67. on an irqchip. Create the callbacks if needed [2].
  68. GPIO irqchips usually fall in one of two categories:
  69. * CHAINED GPIO irqchips: these are usually the type that is embedded on
  70. an SoC. This means that there is a fast IRQ handler for the GPIOs that
  71. gets called in a chain from the parent IRQ handler, most typically the
  72. system interrupt controller. This means the GPIO irqchip is registered
  73. using irq_set_chained_handler() or the corresponding
  74. gpiochip_set_chained_irqchip() helper function, and the GPIO irqchip
  75. handler will be called immediately from the parent irqchip, while
  76. holding the IRQs disabled. The GPIO irqchip will then end up calling
  77. something like this sequence in its interrupt handler:
  78. static irqreturn_t tc3589x_gpio_irq(int irq, void *data)
  79. chained_irq_enter(...);
  80. generic_handle_irq(...);
  81. chained_irq_exit(...);
  82. Chained GPIO irqchips typically can NOT set the .can_sleep flag on
  83. struct gpio_chip, as everything happens directly in the callbacks.
  84. RT_FULL: Note, chained IRQ handlers will not be forced threaded on -RT.
  85. As result, spinlock_t or any sleepable APIs (like PM runtime) can't be used
  86. in chained IRQ handler.
  87. if required (and if it can't be converted to the nested threaded GPIO irqchip)
  88. - chained IRQ handler can be converted to generic irq handler and this way
  89. it will be threaded IRQ handler on -RT and hard IRQ handler on non-RT
  90. (for example, see [3]).
  91. Know W/A: The generic_handle_irq() is expected to be called with IRQ disabled,
  92. so IRQ core will complain if it will be called from IRQ handler wich is forced
  93. thread. The "fake?" raw lock can be used to W/A this problem:
  94. raw_spinlock_t wa_lock;
  95. static irqreturn_t omap_gpio_irq_handler(int irq, void *gpiobank)
  96. unsigned long wa_lock_flags;
  97. raw_spin_lock_irqsave(&bank->wa_lock, wa_lock_flags);
  98. generic_handle_irq(irq_find_mapping(bank->chip.irqdomain, bit));
  99. raw_spin_unlock_irqrestore(&bank->wa_lock, wa_lock_flags);
  100. * GENERIC CHAINED GPIO irqchips: these are the same as "CHAINED GPIO irqchips",
  101. but chained IRQ handlers are not used. Instead GPIO IRQs dispatching is
  102. performed by generic IRQ handler which is configured using request_irq().
  103. The GPIO irqchip will then end up calling something like this sequence in
  104. its interrupt handler:
  105. static irqreturn_t gpio_rcar_irq_handler(int irq, void *dev_id)
  106. for each detected GPIO IRQ
  107. generic_handle_irq(...);
  108. RT_FULL: Such kind of handlers will be forced threaded on -RT, as result IRQ
  109. core will complain that generic_handle_irq() is called with IRQ enabled and
  110. the same W/A as for "CHAINED GPIO irqchips" can be applied.
  111. * NESTED THREADED GPIO irqchips: these are off-chip GPIO expanders and any
  112. other GPIO irqchip residing on the other side of a sleeping bus. Of course
  113. such drivers that need slow bus traffic to read out IRQ status and similar,
  114. traffic which may in turn incur other IRQs to happen, cannot be handled
  115. in a quick IRQ handler with IRQs disabled. Instead they need to spawn a
  116. thread and then mask the parent IRQ line until the interrupt is handled
  117. by the driver. The hallmark of this driver is to call something like
  118. this in its interrupt handler:
  119. static irqreturn_t tc3589x_gpio_irq(int irq, void *data)
  120. ...
  121. handle_nested_irq(irq);
  122. The hallmark of threaded GPIO irqchips is that they set the .can_sleep
  123. flag on struct gpio_chip to true, indicating that this chip may sleep
  124. when accessing the GPIOs.
  125. To help out in handling the set-up and management of GPIO irqchips and the
  126. associated irqdomain and resource allocation callbacks, the gpiolib has
  127. some helpers that can be enabled by selecting the GPIOLIB_IRQCHIP Kconfig
  128. symbol:
  129. * gpiochip_irqchip_add(): adds an irqchip to a gpiochip. It will pass
  130. the struct gpio_chip* for the chip to all IRQ callbacks, so the callbacks
  131. need to embed the gpio_chip in its state container and obtain a pointer
  132. to the container using container_of().
  133. (See Documentation/driver-model/design-patterns.txt)
  134. * gpiochip_set_chained_irqchip(): sets up a chained irq handler for a
  135. gpio_chip from a parent IRQ and passes the struct gpio_chip* as handler
  136. data. (Notice handler data, since the irqchip data is likely used by the
  137. parent irqchip!) This is for the chained type of chip. This is also used
  138. to set up a nested irqchip if NULL is passed as handler.
  139. To use the helpers please keep the following in mind:
  140. - Make sure to assign all relevant members of the struct gpio_chip so that
  141. the irqchip can initialize. E.g. .dev and .can_sleep shall be set up
  142. properly.
  143. - Nominally set all handlers to handle_bad_irq() in the setup call and pass
  144. handle_bad_irq() as flow handler parameter in gpiochip_irqchip_add() if it is
  145. expected for GPIO driver that irqchip .set_type() callback have to be called
  146. before using/enabling GPIO IRQ. Then set the handler to handle_level_irq()
  147. and/or handle_edge_irq() in the irqchip .set_type() callback depending on
  148. what your controller supports.
  149. It is legal for any IRQ consumer to request an IRQ from any irqchip no matter
  150. if that is a combined GPIO+IRQ driver. The basic premise is that gpio_chip and
  151. irq_chip are orthogonal, and offering their services independent of each
  152. other.
  153. gpiod_to_irq() is just a convenience function to figure out the IRQ for a
  154. certain GPIO line and should not be relied upon to have been called before
  155. the IRQ is used.
  156. So always prepare the hardware and make it ready for action in respective
  157. callbacks from the GPIO and irqchip APIs. Do not rely on gpiod_to_irq() having
  158. been called first.
  159. This orthogonality leads to ambiguities that we need to solve: if there is
  160. competition inside the subsystem which side is using the resource (a certain
  161. GPIO line and register for example) it needs to deny certain operations and
  162. keep track of usage inside of the gpiolib subsystem. This is why the API
  163. below exists.
  164. Locking IRQ usage
  165. -----------------
  166. Input GPIOs can be used as IRQ signals. When this happens, a driver is requested
  167. to mark the GPIO as being used as an IRQ:
  168. int gpiochip_lock_as_irq(struct gpio_chip *chip, unsigned int offset)
  169. This will prevent the use of non-irq related GPIO APIs until the GPIO IRQ lock
  170. is released:
  171. void gpiochip_unlock_as_irq(struct gpio_chip *chip, unsigned int offset)
  172. When implementing an irqchip inside a GPIO driver, these two functions should
  173. typically be called in the .startup() and .shutdown() callbacks from the
  174. irqchip.
  175. Real-Time compliance for GPIO IRQ chips
  176. ---------------------------------------
  177. Any provider of irqchips needs to be carefully tailored to support Real Time
  178. preemption. It is desireable that all irqchips in the GPIO subsystem keep this
  179. in mind and does the proper testing to assure they are real time-enabled.
  180. So, pay attention on above " RT_FULL:" notes, please.
  181. The following is a checklist to follow when preparing a driver for real
  182. time-compliance:
  183. - ensure spinlock_t is not used as part irq_chip implementation;
  184. - ensure that sleepable APIs are not used as part irq_chip implementation.
  185. If sleepable APIs have to be used, these can be done from the .irq_bus_lock()
  186. and .irq_bus_unlock() callbacks;
  187. - Chained GPIO irqchips: ensure spinlock_t or any sleepable APIs are not used
  188. from chained IRQ handler;
  189. - Generic chained GPIO irqchips: take care about generic_handle_irq() calls and
  190. apply corresponding W/A;
  191. - Chained GPIO irqchips: get rid of chained IRQ handler and use generic irq
  192. handler if possible :)
  193. - regmap_mmio: Sry, but you are in trouble :( if MMIO regmap is used as for
  194. GPIO IRQ chip implementation;
  195. - Test your driver with the appropriate in-kernel real time test cases for both
  196. level and edge IRQs.
  197. Requesting self-owned GPIO pins
  198. -------------------------------
  199. Sometimes it is useful to allow a GPIO chip driver to request its own GPIO
  200. descriptors through the gpiolib API. Using gpio_request() for this purpose
  201. does not help since it pins the module to the kernel forever (it calls
  202. try_module_get()). A GPIO driver can use the following functions instead
  203. to request and free descriptors without being pinned to the kernel forever.
  204. struct gpio_desc *gpiochip_request_own_desc(struct gpio_desc *desc,
  205. const char *label)
  206. void gpiochip_free_own_desc(struct gpio_desc *desc)
  207. Descriptors requested with gpiochip_request_own_desc() must be released with
  208. gpiochip_free_own_desc().
  209. These functions must be used with care since they do not affect module use
  210. count. Do not use the functions to request gpio descriptors not owned by the
  211. calling driver.
  212. [1] http://www.spinics.net/lists/linux-omap/msg120425.html
  213. [2] https://lkml.org/lkml/2015/9/25/494
  214. [3] https://lkml.org/lkml/2015/9/25/495