gpio.h 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305
  1. /**
  2. * @file
  3. * @brief GPIO Devicetree macro public API header file.
  4. */
  5. /*
  6. * Copyright (c) 2020, Linaro Ltd.
  7. * Copyright (c) 2020 Nordic Semiconductor
  8. *
  9. * SPDX-License-Identifier: Apache-2.0
  10. */
  11. #ifndef ZEPHYR_INCLUDE_DEVICETREE_GPIO_H_
  12. #define ZEPHYR_INCLUDE_DEVICETREE_GPIO_H_
  13. #ifdef __cplusplus
  14. extern "C" {
  15. #endif
  16. /**
  17. * @defgroup devicetree-gpio Devicetree GPIO API
  18. * @ingroup devicetree
  19. * @{
  20. */
  21. /**
  22. * @brief Get the node identifier for the controller phandle from a
  23. * gpio phandle-array property at an index
  24. *
  25. * Example devicetree fragment:
  26. *
  27. * gpio1: gpio@... { };
  28. *
  29. * gpio2: gpio@... { };
  30. *
  31. * n: node {
  32. * gpios = <&gpio1 10 GPIO_ACTIVE_LOW>,
  33. * <&gpio2 30 GPIO_ACTIVE_HIGH>;
  34. * };
  35. *
  36. * Example usage:
  37. *
  38. * DT_GPIO_CTLR_BY_IDX(DT_NODELABEL(n), gpios, 1) // DT_NODELABEL(gpio2)
  39. *
  40. * @param node_id node identifier
  41. * @param gpio_pha lowercase-and-underscores GPIO property with
  42. * type "phandle-array"
  43. * @param idx logical index into "gpio_pha"
  44. * @return the node identifier for the gpio controller referenced at
  45. * index "idx"
  46. * @see DT_PHANDLE_BY_IDX()
  47. */
  48. #define DT_GPIO_CTLR_BY_IDX(node_id, gpio_pha, idx) \
  49. DT_PHANDLE_BY_IDX(node_id, gpio_pha, idx)
  50. /**
  51. * @brief Equivalent to DT_GPIO_CTLR_BY_IDX(node_id, gpio_pha, 0)
  52. * @param node_id node identifier
  53. * @param gpio_pha lowercase-and-underscores GPIO property with
  54. * type "phandle-array"
  55. * @return a node identifier for the gpio controller at index 0
  56. * in "gpio_pha"
  57. * @see DT_GPIO_CTLR_BY_IDX()
  58. */
  59. #define DT_GPIO_CTLR(node_id, gpio_pha) \
  60. DT_GPIO_CTLR_BY_IDX(node_id, gpio_pha, 0)
  61. /**
  62. * @brief Get a label property from a gpio phandle-array property
  63. * at an index
  64. *
  65. * It's an error if the GPIO controller node referenced by the phandle
  66. * in node_id's "gpio_pha" property at index "idx" has no label
  67. * property.
  68. *
  69. * Example devicetree fragment:
  70. *
  71. * gpio1: gpio@... {
  72. * label = "GPIO_1";
  73. * };
  74. *
  75. * gpio2: gpio@... {
  76. * label = "GPIO_2";
  77. * };
  78. *
  79. * n: node {
  80. * gpios = <&gpio1 10 GPIO_ACTIVE_LOW>,
  81. * <&gpio2 30 GPIO_ACTIVE_HIGH>;
  82. * };
  83. *
  84. * Example usage:
  85. *
  86. * DT_GPIO_LABEL_BY_IDX(DT_NODELABEL(n), gpios, 1) // "GPIO_2"
  87. *
  88. * @param node_id node identifier
  89. * @param gpio_pha lowercase-and-underscores GPIO property with
  90. * type "phandle-array"
  91. * @param idx logical index into "gpio_pha"
  92. * @return the label property of the node referenced at index "idx"
  93. * @see DT_PHANDLE_BY_IDX()
  94. */
  95. #define DT_GPIO_LABEL_BY_IDX(node_id, gpio_pha, idx) \
  96. DT_PROP(DT_GPIO_CTLR_BY_IDX(node_id, gpio_pha, idx), label)
  97. /**
  98. * @brief Equivalent to DT_GPIO_LABEL_BY_IDX(node_id, gpio_pha, 0)
  99. * @param node_id node identifier
  100. * @param gpio_pha lowercase-and-underscores GPIO property with
  101. * type "phandle-array"
  102. * @return the label property of the node referenced at index 0
  103. * @see DT_GPIO_LABEL_BY_IDX()
  104. */
  105. #define DT_GPIO_LABEL(node_id, gpio_pha) \
  106. DT_GPIO_LABEL_BY_IDX(node_id, gpio_pha, 0)
  107. /**
  108. * @brief Get a GPIO specifier's pin cell at an index
  109. *
  110. * This macro only works for GPIO specifiers with cells named "pin".
  111. * Refer to the node's binding to check if necessary.
  112. *
  113. * Example devicetree fragment:
  114. *
  115. * gpio1: gpio@... {
  116. * compatible = "vnd,gpio";
  117. * #gpio-cells = <2>;
  118. * };
  119. *
  120. * gpio2: gpio@... {
  121. * compatible = "vnd,gpio";
  122. * #gpio-cells = <2>;
  123. * };
  124. *
  125. * n: node {
  126. * gpios = <&gpio1 10 GPIO_ACTIVE_LOW>,
  127. * <&gpio2 30 GPIO_ACTIVE_HIGH>;
  128. * };
  129. *
  130. * Bindings fragment for the vnd,gpio compatible:
  131. *
  132. * gpio-cells:
  133. * - pin
  134. * - flags
  135. *
  136. * Example usage:
  137. *
  138. * DT_GPIO_PIN_BY_IDX(DT_NODELABEL(n), gpios, 0) // 10
  139. * DT_GPIO_PIN_BY_IDX(DT_NODELABEL(n), gpios, 1) // 30
  140. *
  141. * @param node_id node identifier
  142. * @param gpio_pha lowercase-and-underscores GPIO property with
  143. * type "phandle-array"
  144. * @param idx logical index into "gpio_pha"
  145. * @return the pin cell value at index "idx"
  146. * @see DT_PHA_BY_IDX()
  147. */
  148. #define DT_GPIO_PIN_BY_IDX(node_id, gpio_pha, idx) \
  149. DT_PHA_BY_IDX(node_id, gpio_pha, idx, pin)
  150. /**
  151. * @brief Equivalent to DT_GPIO_PIN_BY_IDX(node_id, gpio_pha, 0)
  152. * @param node_id node identifier
  153. * @param gpio_pha lowercase-and-underscores GPIO property with
  154. * type "phandle-array"
  155. * @return the pin cell value at index 0
  156. * @see DT_GPIO_PIN_BY_IDX()
  157. */
  158. #define DT_GPIO_PIN(node_id, gpio_pha) \
  159. DT_GPIO_PIN_BY_IDX(node_id, gpio_pha, 0)
  160. /**
  161. * @brief Get a GPIO specifier's flags cell at an index
  162. *
  163. * This macro expects GPIO specifiers with cells named "flags".
  164. * If there is no "flags" cell in the GPIO specifier, zero is returned.
  165. * Refer to the node's binding to check specifier cell names if necessary.
  166. *
  167. * Example devicetree fragment:
  168. *
  169. * gpio1: gpio@... {
  170. * compatible = "vnd,gpio";
  171. * #gpio-cells = <2>;
  172. * };
  173. *
  174. * gpio2: gpio@... {
  175. * compatible = "vnd,gpio";
  176. * #gpio-cells = <2>;
  177. * };
  178. *
  179. * n: node {
  180. * gpios = <&gpio1 10 GPIO_ACTIVE_LOW>,
  181. * <&gpio2 30 GPIO_ACTIVE_HIGH>;
  182. * };
  183. *
  184. * Bindings fragment for the vnd,gpio compatible:
  185. *
  186. * gpio-cells:
  187. * - pin
  188. * - flags
  189. *
  190. * Example usage:
  191. *
  192. * DT_GPIO_FLAGS_BY_IDX(DT_NODELABEL(n), gpios, 0) // GPIO_ACTIVE_LOW
  193. * DT_GPIO_FLAGS_BY_IDX(DT_NODELABEL(n), gpios, 1) // GPIO_ACTIVE_HIGH
  194. *
  195. * @param node_id node identifier
  196. * @param gpio_pha lowercase-and-underscores GPIO property with
  197. * type "phandle-array"
  198. * @param idx logical index into "gpio_pha"
  199. * @return the flags cell value at index "idx", or zero if there is none
  200. * @see DT_PHA_BY_IDX()
  201. */
  202. #define DT_GPIO_FLAGS_BY_IDX(node_id, gpio_pha, idx) \
  203. DT_PHA_BY_IDX_OR(node_id, gpio_pha, idx, flags, 0)
  204. /**
  205. * @brief Equivalent to DT_GPIO_FLAGS_BY_IDX(node_id, gpio_pha, 0)
  206. * @param node_id node identifier
  207. * @param gpio_pha lowercase-and-underscores GPIO property with
  208. * type "phandle-array"
  209. * @return the flags cell value at index 0, or zero if there is none
  210. * @see DT_GPIO_FLAGS_BY_IDX()
  211. */
  212. #define DT_GPIO_FLAGS(node_id, gpio_pha) \
  213. DT_GPIO_FLAGS_BY_IDX(node_id, gpio_pha, 0)
  214. /**
  215. * @brief Get a label property from a DT_DRV_COMPAT instance's GPIO
  216. * property at an index
  217. * @param inst DT_DRV_COMPAT instance number
  218. * @param gpio_pha lowercase-and-underscores GPIO property with
  219. * type "phandle-array"
  220. * @param idx logical index into "gpio_pha"
  221. * @return the label property of the node referenced at index "idx"
  222. */
  223. #define DT_INST_GPIO_LABEL_BY_IDX(inst, gpio_pha, idx) \
  224. DT_GPIO_LABEL_BY_IDX(DT_DRV_INST(inst), gpio_pha, idx)
  225. /**
  226. * @brief Equivalent to DT_INST_GPIO_LABEL_BY_IDX(inst, gpio_pha, 0)
  227. * @param inst DT_DRV_COMPAT instance number
  228. * @param gpio_pha lowercase-and-underscores GPIO property with
  229. * type "phandle-array"
  230. * @return the label property of the node referenced at index 0
  231. */
  232. #define DT_INST_GPIO_LABEL(inst, gpio_pha) \
  233. DT_INST_GPIO_LABEL_BY_IDX(inst, gpio_pha, 0)
  234. /**
  235. * @brief Get a DT_DRV_COMPAT instance's GPIO specifier's pin cell value
  236. * at an index
  237. * @param inst DT_DRV_COMPAT instance number
  238. * @param gpio_pha lowercase-and-underscores GPIO property with
  239. * type "phandle-array"
  240. * @param idx logical index into "gpio_pha"
  241. * @return the pin cell value at index "idx"
  242. * @see DT_GPIO_PIN_BY_IDX()
  243. */
  244. #define DT_INST_GPIO_PIN_BY_IDX(inst, gpio_pha, idx) \
  245. DT_GPIO_PIN_BY_IDX(DT_DRV_INST(inst), gpio_pha, idx)
  246. /**
  247. * @brief Equivalent to DT_INST_GPIO_PIN_BY_IDX(inst, gpio_pha, 0)
  248. * @param inst DT_DRV_COMPAT instance number
  249. * @param gpio_pha lowercase-and-underscores GPIO property with
  250. * type "phandle-array"
  251. * @return the pin cell value at index 0
  252. * @see DT_INST_GPIO_PIN_BY_IDX()
  253. */
  254. #define DT_INST_GPIO_PIN(inst, gpio_pha) \
  255. DT_INST_GPIO_PIN_BY_IDX(inst, gpio_pha, 0)
  256. /**
  257. * @brief Get a DT_DRV_COMPAT instance's GPIO specifier's flags cell
  258. * at an index
  259. * @param inst DT_DRV_COMPAT instance number
  260. * @param gpio_pha lowercase-and-underscores GPIO property with
  261. * type "phandle-array"
  262. * @param idx logical index into "gpio_pha"
  263. * @return the flags cell value at index "idx", or zero if there is none
  264. * @see DT_GPIO_FLAGS_BY_IDX()
  265. */
  266. #define DT_INST_GPIO_FLAGS_BY_IDX(inst, gpio_pha, idx) \
  267. DT_GPIO_FLAGS_BY_IDX(DT_DRV_INST(inst), gpio_pha, idx)
  268. /**
  269. * @brief Equivalent to DT_INST_GPIO_FLAGS_BY_IDX(inst, gpio_pha, 0)
  270. * @param inst DT_DRV_COMPAT instance number
  271. * @param gpio_pha lowercase-and-underscores GPIO property with
  272. * type "phandle-array"
  273. * @return the flags cell value at index 0, or zero if there is none
  274. * @see DT_INST_GPIO_FLAGS_BY_IDX()
  275. */
  276. #define DT_INST_GPIO_FLAGS(inst, gpio_pha) \
  277. DT_INST_GPIO_FLAGS_BY_IDX(inst, gpio_pha, 0)
  278. /**
  279. * @}
  280. */
  281. #ifdef __cplusplus
  282. }
  283. #endif
  284. #endif /* ZEPHYR_INCLUDE_DEVICETREE_GPIO_H_ */