consumer.txt 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376
  1. GPIO Descriptor Consumer Interface
  2. ==================================
  3. This document describes the consumer interface of the GPIO framework. Note that
  4. it describes the new descriptor-based interface. For a description of the
  5. deprecated integer-based GPIO interface please refer to gpio-legacy.txt.
  6. Guidelines for GPIOs consumers
  7. ==============================
  8. Drivers that can't work without standard GPIO calls should have Kconfig entries
  9. that depend on GPIOLIB. The functions that allow a driver to obtain and use
  10. GPIOs are available by including the following file:
  11. #include <linux/gpio/consumer.h>
  12. All the functions that work with the descriptor-based GPIO interface are
  13. prefixed with gpiod_. The gpio_ prefix is used for the legacy interface. No
  14. other function in the kernel should use these prefixes.
  15. Obtaining and Disposing GPIOs
  16. =============================
  17. With the descriptor-based interface, GPIOs are identified with an opaque,
  18. non-forgeable handler that must be obtained through a call to one of the
  19. gpiod_get() functions. Like many other kernel subsystems, gpiod_get() takes the
  20. device that will use the GPIO and the function the requested GPIO is supposed to
  21. fulfill:
  22. struct gpio_desc *gpiod_get(struct device *dev, const char *con_id,
  23. enum gpiod_flags flags)
  24. If a function is implemented by using several GPIOs together (e.g. a simple LED
  25. device that displays digits), an additional index argument can be specified:
  26. struct gpio_desc *gpiod_get_index(struct device *dev,
  27. const char *con_id, unsigned int idx,
  28. enum gpiod_flags flags)
  29. For a more detailed description of the con_id parameter in the DeviceTree case
  30. see Documentation/gpio/board.txt
  31. The flags parameter is used to optionally specify a direction and initial value
  32. for the GPIO. Values can be:
  33. * GPIOD_ASIS or 0 to not initialize the GPIO at all. The direction must be set
  34. later with one of the dedicated functions.
  35. * GPIOD_IN to initialize the GPIO as input.
  36. * GPIOD_OUT_LOW to initialize the GPIO as output with a value of 0.
  37. * GPIOD_OUT_HIGH to initialize the GPIO as output with a value of 1.
  38. Both functions return either a valid GPIO descriptor, or an error code checkable
  39. with IS_ERR() (they will never return a NULL pointer). -ENOENT will be returned
  40. if and only if no GPIO has been assigned to the device/function/index triplet,
  41. other error codes are used for cases where a GPIO has been assigned but an error
  42. occurred while trying to acquire it. This is useful to discriminate between mere
  43. errors and an absence of GPIO for optional GPIO parameters. For the common
  44. pattern where a GPIO is optional, the gpiod_get_optional() and
  45. gpiod_get_index_optional() functions can be used. These functions return NULL
  46. instead of -ENOENT if no GPIO has been assigned to the requested function:
  47. struct gpio_desc *gpiod_get_optional(struct device *dev,
  48. const char *con_id,
  49. enum gpiod_flags flags)
  50. struct gpio_desc *gpiod_get_index_optional(struct device *dev,
  51. const char *con_id,
  52. unsigned int index,
  53. enum gpiod_flags flags)
  54. For a function using multiple GPIOs all of those can be obtained with one call:
  55. struct gpio_descs *gpiod_get_array(struct device *dev,
  56. const char *con_id,
  57. enum gpiod_flags flags)
  58. This function returns a struct gpio_descs which contains an array of
  59. descriptors:
  60. struct gpio_descs {
  61. unsigned int ndescs;
  62. struct gpio_desc *desc[];
  63. }
  64. The following function returns NULL instead of -ENOENT if no GPIOs have been
  65. assigned to the requested function:
  66. struct gpio_descs *gpiod_get_array_optional(struct device *dev,
  67. const char *con_id,
  68. enum gpiod_flags flags)
  69. Device-managed variants of these functions are also defined:
  70. struct gpio_desc *devm_gpiod_get(struct device *dev, const char *con_id,
  71. enum gpiod_flags flags)
  72. struct gpio_desc *devm_gpiod_get_index(struct device *dev,
  73. const char *con_id,
  74. unsigned int idx,
  75. enum gpiod_flags flags)
  76. struct gpio_desc *devm_gpiod_get_optional(struct device *dev,
  77. const char *con_id,
  78. enum gpiod_flags flags)
  79. struct gpio_desc *devm_gpiod_get_index_optional(struct device *dev,
  80. const char *con_id,
  81. unsigned int index,
  82. enum gpiod_flags flags)
  83. struct gpio_descs *devm_gpiod_get_array(struct device *dev,
  84. const char *con_id,
  85. enum gpiod_flags flags)
  86. struct gpio_descs *devm_gpiod_get_array_optional(struct device *dev,
  87. const char *con_id,
  88. enum gpiod_flags flags)
  89. A GPIO descriptor can be disposed of using the gpiod_put() function:
  90. void gpiod_put(struct gpio_desc *desc)
  91. For an array of GPIOs this function can be used:
  92. void gpiod_put_array(struct gpio_descs *descs)
  93. It is strictly forbidden to use a descriptor after calling these functions.
  94. It is also not allowed to individually release descriptors (using gpiod_put())
  95. from an array acquired with gpiod_get_array().
  96. The device-managed variants are, unsurprisingly:
  97. void devm_gpiod_put(struct device *dev, struct gpio_desc *desc)
  98. void devm_gpiod_put_array(struct device *dev, struct gpio_descs *descs)
  99. Using GPIOs
  100. ===========
  101. Setting Direction
  102. -----------------
  103. The first thing a driver must do with a GPIO is setting its direction. If no
  104. direction-setting flags have been given to gpiod_get*(), this is done by
  105. invoking one of the gpiod_direction_*() functions:
  106. int gpiod_direction_input(struct gpio_desc *desc)
  107. int gpiod_direction_output(struct gpio_desc *desc, int value)
  108. The return value is zero for success, else a negative errno. It should be
  109. checked, since the get/set calls don't return errors and since misconfiguration
  110. is possible. You should normally issue these calls from a task context. However,
  111. for spinlock-safe GPIOs it is OK to use them before tasking is enabled, as part
  112. of early board setup.
  113. For output GPIOs, the value provided becomes the initial output value. This
  114. helps avoid signal glitching during system startup.
  115. A driver can also query the current direction of a GPIO:
  116. int gpiod_get_direction(const struct gpio_desc *desc)
  117. This function will return either GPIOF_DIR_IN or GPIOF_DIR_OUT.
  118. Be aware that there is no default direction for GPIOs. Therefore, **using a GPIO
  119. without setting its direction first is illegal and will result in undefined
  120. behavior!**
  121. Spinlock-Safe GPIO Access
  122. -------------------------
  123. Most GPIO controllers can be accessed with memory read/write instructions. Those
  124. don't need to sleep, and can safely be done from inside hard (non-threaded) IRQ
  125. handlers and similar contexts.
  126. Use the following calls to access GPIOs from an atomic context:
  127. int gpiod_get_value(const struct gpio_desc *desc);
  128. void gpiod_set_value(struct gpio_desc *desc, int value);
  129. The values are boolean, zero for low, nonzero for high. When reading the value
  130. of an output pin, the value returned should be what's seen on the pin. That
  131. won't always match the specified output value, because of issues including
  132. open-drain signaling and output latencies.
  133. The get/set calls do not return errors because "invalid GPIO" should have been
  134. reported earlier from gpiod_direction_*(). However, note that not all platforms
  135. can read the value of output pins; those that can't should always return zero.
  136. Also, using these calls for GPIOs that can't safely be accessed without sleeping
  137. (see below) is an error.
  138. GPIO Access That May Sleep
  139. --------------------------
  140. Some GPIO controllers must be accessed using message based buses like I2C or
  141. SPI. Commands to read or write those GPIO values require waiting to get to the
  142. head of a queue to transmit a command and get its response. This requires
  143. sleeping, which can't be done from inside IRQ handlers.
  144. Platforms that support this type of GPIO distinguish them from other GPIOs by
  145. returning nonzero from this call:
  146. int gpiod_cansleep(const struct gpio_desc *desc)
  147. To access such GPIOs, a different set of accessors is defined:
  148. int gpiod_get_value_cansleep(const struct gpio_desc *desc)
  149. void gpiod_set_value_cansleep(struct gpio_desc *desc, int value)
  150. Accessing such GPIOs requires a context which may sleep, for example a threaded
  151. IRQ handler, and those accessors must be used instead of spinlock-safe
  152. accessors without the cansleep() name suffix.
  153. Other than the fact that these accessors might sleep, and will work on GPIOs
  154. that can't be accessed from hardIRQ handlers, these calls act the same as the
  155. spinlock-safe calls.
  156. Active-low State and Raw GPIO Values
  157. ------------------------------------
  158. Device drivers like to manage the logical state of a GPIO, i.e. the value their
  159. device will actually receive, no matter what lies between it and the GPIO line.
  160. In some cases, it might make sense to control the actual GPIO line value. The
  161. following set of calls ignore the active-low property of a GPIO and work on the
  162. raw line value:
  163. int gpiod_get_raw_value(const struct gpio_desc *desc)
  164. void gpiod_set_raw_value(struct gpio_desc *desc, int value)
  165. int gpiod_get_raw_value_cansleep(const struct gpio_desc *desc)
  166. void gpiod_set_raw_value_cansleep(struct gpio_desc *desc, int value)
  167. int gpiod_direction_output_raw(struct gpio_desc *desc, int value)
  168. The active-low state of a GPIO can also be queried using the following call:
  169. int gpiod_is_active_low(const struct gpio_desc *desc)
  170. Note that these functions should only be used with great moderation ; a driver
  171. should not have to care about the physical line level.
  172. The active-low property
  173. -----------------------
  174. As a driver should not have to care about the physical line level, all of the
  175. gpiod_set_value_xxx() or gpiod_set_array_value_xxx() functions operate with
  176. the *logical* value. With this they take the active-low property into account.
  177. This means that they check whether the GPIO is configured to be active-low,
  178. and if so, they manipulate the passed value before the physical line level is
  179. driven.
  180. With this, all the gpiod_set_(array)_value_xxx() functions interpret the
  181. parameter "value" as "active" ("1") or "inactive" ("0"). The physical line
  182. level will be driven accordingly.
  183. As an example, if the active-low property for a dedicated GPIO is set, and the
  184. gpiod_set_(array)_value_xxx() passes "active" ("1"), the physical line level
  185. will be driven low.
  186. To summarize:
  187. Function (example) active-low proporty physical line
  188. gpiod_set_raw_value(desc, 0); don't care low
  189. gpiod_set_raw_value(desc, 1); don't care high
  190. gpiod_set_value(desc, 0); default (active-high) low
  191. gpiod_set_value(desc, 1); default (active-high) high
  192. gpiod_set_value(desc, 0); active-low high
  193. gpiod_set_value(desc, 1); active-low low
  194. Please note again that the set_raw/get_raw functions should be avoided as much
  195. as possible, especially by drivers which should not care about the actual
  196. physical line level and worry about the logical value instead.
  197. Set multiple GPIO outputs with a single function call
  198. -----------------------------------------------------
  199. The following functions set the output values of an array of GPIOs:
  200. void gpiod_set_array_value(unsigned int array_size,
  201. struct gpio_desc **desc_array,
  202. int *value_array)
  203. void gpiod_set_raw_array_value(unsigned int array_size,
  204. struct gpio_desc **desc_array,
  205. int *value_array)
  206. void gpiod_set_array_value_cansleep(unsigned int array_size,
  207. struct gpio_desc **desc_array,
  208. int *value_array)
  209. void gpiod_set_raw_array_value_cansleep(unsigned int array_size,
  210. struct gpio_desc **desc_array,
  211. int *value_array)
  212. The array can be an arbitrary set of GPIOs. The functions will try to set
  213. GPIOs belonging to the same bank or chip simultaneously if supported by the
  214. corresponding chip driver. In that case a significantly improved performance
  215. can be expected. If simultaneous setting is not possible the GPIOs will be set
  216. sequentially.
  217. The gpiod_set_array() functions take three arguments:
  218. * array_size - the number of array elements
  219. * desc_array - an array of GPIO descriptors
  220. * value_array - an array of values to assign to the GPIOs
  221. The descriptor array can be obtained using the gpiod_get_array() function
  222. or one of its variants. If the group of descriptors returned by that function
  223. matches the desired group of GPIOs, those GPIOs can be set by simply using
  224. the struct gpio_descs returned by gpiod_get_array():
  225. struct gpio_descs *my_gpio_descs = gpiod_get_array(...);
  226. gpiod_set_array_value(my_gpio_descs->ndescs, my_gpio_descs->desc,
  227. my_gpio_values);
  228. It is also possible to set a completely arbitrary array of descriptors. The
  229. descriptors may be obtained using any combination of gpiod_get() and
  230. gpiod_get_array(). Afterwards the array of descriptors has to be setup
  231. manually before it can be used with gpiod_set_array().
  232. Note that for optimal performance GPIOs belonging to the same chip should be
  233. contiguous within the array of descriptors.
  234. GPIOs mapped to IRQs
  235. --------------------
  236. GPIO lines can quite often be used as IRQs. You can get the IRQ number
  237. corresponding to a given GPIO using the following call:
  238. int gpiod_to_irq(const struct gpio_desc *desc)
  239. It will return an IRQ number, or a negative errno code if the mapping can't be
  240. done (most likely because that particular GPIO cannot be used as IRQ). It is an
  241. unchecked error to use a GPIO that wasn't set up as an input using
  242. gpiod_direction_input(), or to use an IRQ number that didn't originally come
  243. from gpiod_to_irq(). gpiod_to_irq() is not allowed to sleep.
  244. Non-error values returned from gpiod_to_irq() can be passed to request_irq() or
  245. free_irq(). They will often be stored into IRQ resources for platform devices,
  246. by the board-specific initialization code. Note that IRQ trigger options are
  247. part of the IRQ interface, e.g. IRQF_TRIGGER_FALLING, as are system wakeup
  248. capabilities.
  249. GPIOs and ACPI
  250. ==============
  251. On ACPI systems, GPIOs are described by GpioIo()/GpioInt() resources listed by
  252. the _CRS configuration objects of devices. Those resources do not provide
  253. connection IDs (names) for GPIOs, so it is necessary to use an additional
  254. mechanism for this purpose.
  255. Systems compliant with ACPI 5.1 or newer may provide a _DSD configuration object
  256. which, among other things, may be used to provide connection IDs for specific
  257. GPIOs described by the GpioIo()/GpioInt() resources in _CRS. If that is the
  258. case, it will be handled by the GPIO subsystem automatically. However, if the
  259. _DSD is not present, the mappings between GpioIo()/GpioInt() resources and GPIO
  260. connection IDs need to be provided by device drivers.
  261. For details refer to Documentation/acpi/gpio-properties.txt
  262. Interacting With the Legacy GPIO Subsystem
  263. ==========================================
  264. Many kernel subsystems still handle GPIOs using the legacy integer-based
  265. interface. Although it is strongly encouraged to upgrade them to the safer
  266. descriptor-based API, the following two functions allow you to convert a GPIO
  267. descriptor into the GPIO integer namespace and vice-versa:
  268. int desc_to_gpio(const struct gpio_desc *desc)
  269. struct gpio_desc *gpio_to_desc(unsigned gpio)
  270. The GPIO number returned by desc_to_gpio() can be safely used as long as the
  271. GPIO descriptor has not been freed. All the same, a GPIO number passed to
  272. gpio_to_desc() must have been properly acquired, and usage of the returned GPIO
  273. descriptor is only possible after the GPIO number has been released.
  274. Freeing a GPIO obtained by one API with the other API is forbidden and an
  275. unchecked error.