io-channels.h 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363
  1. /**
  2. * @file
  3. * @brief IO channels devicetree macro public API header file.
  4. */
  5. /*
  6. * Copyright (c) 2020, Linaro Ltd.
  7. *
  8. * SPDX-License-Identifier: Apache-2.0
  9. */
  10. #ifndef ZEPHYR_INCLUDE_DEVICETREE_IO_CHANNELS_H_
  11. #define ZEPHYR_INCLUDE_DEVICETREE_IO_CHANNELS_H_
  12. #ifdef __cplusplus
  13. extern "C" {
  14. #endif
  15. /**
  16. * @defgroup devicetree-io-channels Devicetree IO Channels API
  17. * @ingroup devicetree
  18. * @{
  19. */
  20. /**
  21. * @brief Get a label property from the node referenced by an
  22. * io-channels property at an index
  23. *
  24. * It's an error if the node referenced by the phandle in node_id's
  25. * io-channels property at index "idx" has no label property.
  26. *
  27. * Example devicetree fragment:
  28. *
  29. * adc1: adc@... {
  30. * label = "ADC_1";
  31. * };
  32. *
  33. * adc2: adc@... {
  34. * label = "ADC_2";
  35. * };
  36. *
  37. * n: node {
  38. * io-channels = <&adc1 10>, <&adc2 20>;
  39. * };
  40. *
  41. * Example usage:
  42. *
  43. * DT_IO_CHANNELS_LABEL_BY_IDX(DT_NODELABEL(n), 1) // "ADC_2"
  44. *
  45. * @param node_id node identifier for a node with an io-channels property
  46. * @param idx logical index into io-channels property
  47. * @return the label property of the node referenced at index "idx"
  48. * @see DT_PROP_BY_PHANDLE_IDX()
  49. */
  50. #define DT_IO_CHANNELS_LABEL_BY_IDX(node_id, idx) \
  51. __DEPRECATED_MACRO \
  52. DT_PROP_BY_PHANDLE_IDX(node_id, io_channels, idx, label)
  53. /**
  54. * @brief Get a label property from an io-channels property by name
  55. *
  56. * It's an error if the node referenced by the phandle in node_id's
  57. * io-channels property at the element named "name" has no label
  58. * property.
  59. *
  60. * Example devicetree fragment:
  61. *
  62. * adc1: adc@... {
  63. * label = "ADC_1";
  64. * };
  65. *
  66. * adc2: adc@... {
  67. * label = "ADC_2";
  68. * };
  69. *
  70. * n: node {
  71. * io-channels = <&adc1 10>, <&adc2 20>;
  72. * io-channel-names = "SENSOR", "BANDGAP";
  73. * };
  74. *
  75. * Example usage:
  76. *
  77. * DT_IO_CHANNELS_LABEL_BY_NAME(DT_NODELABEL(n), bandgap) // "ADC_2"
  78. *
  79. * @param node_id node identifier for a node with an io-channels property
  80. * @param name lowercase-and-underscores name of an io-channels element
  81. * as defined by the node's io-channel-names property
  82. * @return the label property of the node referenced at the named element
  83. * @see DT_PHANDLE_BY_NAME()
  84. */
  85. #define DT_IO_CHANNELS_LABEL_BY_NAME(node_id, name) \
  86. __DEPRECATED_MACRO \
  87. DT_PROP(DT_PHANDLE_BY_NAME(node_id, io_channels, name), label)
  88. /**
  89. * @brief Equivalent to DT_IO_CHANNELS_LABEL_BY_IDX(node_id, 0)
  90. * @param node_id node identifier for a node with an io-channels property
  91. * @return the label property of the node referenced at index 0
  92. * @see DT_IO_CHANNELS_LABEL_BY_IDX()
  93. */
  94. #define DT_IO_CHANNELS_LABEL(node_id) \
  95. __DEPRECATED_MACRO DT_IO_CHANNELS_LABEL_BY_IDX(node_id, 0)
  96. /**
  97. *
  98. * @brief Get the node identifier for the node referenced by an
  99. * io-channels property at an index
  100. *
  101. * Example devicetree fragment:
  102. *
  103. * adc1: adc@... { ... };
  104. *
  105. * adc2: adc@... { ... };
  106. *
  107. * n: node {
  108. * io-channels = <&adc1 10>, <&adc2 20>;
  109. * };
  110. *
  111. * Example usage:
  112. *
  113. * DT_IO_CHANNELS_CTLR_BY_IDX(DT_NODELABEL(n), 0) // DT_NODELABEL(adc1)
  114. * DT_IO_CHANNELS_CTLR_BY_IDX(DT_NODELABEL(n), 1) // DT_NODELABEL(adc2)
  115. *
  116. * @param node_id node identifier for a node with an io-channels property
  117. * @param idx logical index into io-channels property
  118. * @return the node identifier for the node referenced at index "idx"
  119. * @see DT_PROP_BY_PHANDLE_IDX()
  120. */
  121. #define DT_IO_CHANNELS_CTLR_BY_IDX(node_id, idx) \
  122. DT_PHANDLE_BY_IDX(node_id, io_channels, idx)
  123. /**
  124. * @brief Get the node identifier for the node referenced by an
  125. * io-channels property by name
  126. *
  127. * Example devicetree fragment:
  128. *
  129. * adc1: adc@... { ... };
  130. *
  131. * adc2: adc@... { ... };
  132. *
  133. * n: node {
  134. * io-channels = <&adc1 10>, <&adc2 20>;
  135. * io-channel-names = "SENSOR", "BANDGAP";
  136. * };
  137. *
  138. * Example usage:
  139. *
  140. * DT_IO_CHANNELS_CTLR_BY_NAME(DT_NODELABEL(n), sensor) // DT_NODELABEL(adc1)
  141. * DT_IO_CHANNELS_CTLR_BY_NAME(DT_NODELABEL(n), bandgap) // DT_NODELABEL(adc2)
  142. *
  143. * @param node_id node identifier for a node with an io-channels property
  144. * @param name lowercase-and-underscores name of an io-channels element
  145. * as defined by the node's io-channel-names property
  146. * @return the node identifier for the node referenced at the named element
  147. * @see DT_PHANDLE_BY_NAME()
  148. */
  149. #define DT_IO_CHANNELS_CTLR_BY_NAME(node_id, name) \
  150. DT_PHANDLE_BY_NAME(node_id, io_channels, name)
  151. /**
  152. * @brief Equivalent to DT_IO_CHANNELS_CTLR_BY_IDX(node_id, 0)
  153. * @param node_id node identifier for a node with an io-channels property
  154. * @return the node identifier for the node referenced at index 0
  155. * in the node's "io-channels" property
  156. * @see DT_IO_CHANNELS_CTLR_BY_IDX()
  157. */
  158. #define DT_IO_CHANNELS_CTLR(node_id) DT_IO_CHANNELS_CTLR_BY_IDX(node_id, 0)
  159. /**
  160. * @brief Get a label property from a DT_DRV_COMPAT instance's io-channels
  161. * property at an index
  162. * @param inst DT_DRV_COMPAT instance number
  163. * @param idx logical index into io-channels property
  164. * @return the label property of the node referenced at index "idx"
  165. * @see DT_IO_CHANNELS_LABEL_BY_IDX()
  166. */
  167. #define DT_INST_IO_CHANNELS_LABEL_BY_IDX(inst, idx) \
  168. __DEPRECATED_MACRO \
  169. DT_IO_CHANNELS_LABEL_BY_IDX(DT_DRV_INST(inst), idx)
  170. /**
  171. * @brief Get a label property from a DT_DRV_COMPAT instance's io-channels
  172. * property by name
  173. * @param inst DT_DRV_COMPAT instance number
  174. * @param name lowercase-and-underscores name of an io-channels element
  175. * as defined by the instance's io-channel-names property
  176. * @return the label property of the node referenced at the named element
  177. * @see DT_IO_CHANNELS_LABEL_BY_NAME()
  178. */
  179. #define DT_INST_IO_CHANNELS_LABEL_BY_NAME(inst, name) \
  180. __DEPRECATED_MACRO \
  181. DT_IO_CHANNELS_LABEL_BY_NAME(DT_DRV_INST(inst), name)
  182. /**
  183. * @brief Equivalent to DT_INST_IO_CHANNELS_LABEL_BY_IDX(inst, 0)
  184. * @param inst DT_DRV_COMPAT instance number
  185. * @return the label property of the node referenced at index 0
  186. */
  187. #define DT_INST_IO_CHANNELS_LABEL(inst) \
  188. __DEPRECATED_MACRO DT_INST_IO_CHANNELS_LABEL_BY_IDX(inst, 0)
  189. /**
  190. * @brief Get the node identifier from a DT_DRV_COMPAT instance's io-channels
  191. * property at an index
  192. *
  193. * @param inst DT_DRV_COMPAT instance number
  194. * @param idx logical index into io-channels property
  195. * @return the node identifier for the node referenced at index "idx"
  196. * @see DT_IO_CHANNELS_CTLR_BY_IDX()
  197. */
  198. #define DT_INST_IO_CHANNELS_CTLR_BY_IDX(inst, idx) \
  199. DT_IO_CHANNELS_CTLR_BY_IDX(DT_DRV_INST(inst), idx)
  200. /**
  201. * @brief Get the node identifier from a DT_DRV_COMPAT instance's io-channels
  202. * property by name
  203. * @param inst DT_DRV_COMPAT instance number
  204. * @param name lowercase-and-underscores name of an io-channels element
  205. * as defined by the node's io-channel-names property
  206. * @return the node identifier for the node referenced at the named element
  207. * @see DT_IO_CHANNELS_CTLR_BY_NAME()
  208. */
  209. #define DT_INST_IO_CHANNELS_CTLR_BY_NAME(inst, name) \
  210. DT_IO_CHANNELS_CTLR_BY_NAME(DT_DRV_INST(inst), name)
  211. /**
  212. * @brief Equivalent to DT_INST_IO_CHANNELS_CTLR_BY_IDX(inst, 0)
  213. * @param inst DT_DRV_COMPAT instance number
  214. * @return the node identifier for the node referenced at index 0
  215. * in the node's "io-channels" property
  216. * @see DT_IO_CHANNELS_CTLR_BY_IDX()
  217. */
  218. #define DT_INST_IO_CHANNELS_CTLR(inst) DT_INST_IO_CHANNELS_CTLR_BY_IDX(inst, 0)
  219. /**
  220. * @brief Get an io-channels specifier input cell at an index
  221. *
  222. * This macro only works for io-channels specifiers with cells named
  223. * "input". Refer to the node's binding to check if necessary.
  224. *
  225. * Example devicetree fragment:
  226. *
  227. * adc1: adc@... {
  228. * compatible = "vnd,adc";
  229. * #io-channel-cells = <1>;
  230. * };
  231. *
  232. * adc2: adc@... {
  233. * compatible = "vnd,adc";
  234. * #io-channel-cells = <1>;
  235. * };
  236. *
  237. * n: node {
  238. * io-channels = <&adc1 10>, <&adc2 20>;
  239. * };
  240. *
  241. * Bindings fragment for the vnd,adc compatible:
  242. *
  243. * io-channel-cells:
  244. * - input
  245. *
  246. * Example usage:
  247. *
  248. * DT_IO_CHANNELS_INPUT_BY_IDX(DT_NODELABEL(n), 0) // 10
  249. * DT_IO_CHANNELS_INPUT_BY_IDX(DT_NODELABEL(n), 1) // 20
  250. *
  251. * @param node_id node identifier for a node with an io-channels property
  252. * @param idx logical index into io-channels property
  253. * @return the input cell in the specifier at index "idx"
  254. * @see DT_PHA_BY_IDX()
  255. */
  256. #define DT_IO_CHANNELS_INPUT_BY_IDX(node_id, idx) \
  257. DT_PHA_BY_IDX(node_id, io_channels, idx, input)
  258. /**
  259. * @brief Get an io-channels specifier input cell by name
  260. *
  261. * This macro only works for io-channels specifiers with cells named
  262. * "input". Refer to the node's binding to check if necessary.
  263. *
  264. * Example devicetree fragment:
  265. *
  266. * adc1: adc@... {
  267. * compatible = "vnd,adc";
  268. * #io-channel-cells = <1>;
  269. * };
  270. *
  271. * adc2: adc@... {
  272. * compatible = "vnd,adc";
  273. * #io-channel-cells = <1>;
  274. * };
  275. *
  276. * n: node {
  277. * io-channels = <&adc1 10>, <&adc2 20>;
  278. * io-channel-names = "SENSOR", "BANDGAP";
  279. * };
  280. *
  281. * Bindings fragment for the vnd,adc compatible:
  282. *
  283. * io-channel-cells:
  284. * - input
  285. *
  286. * Example usage:
  287. *
  288. * DT_IO_CHANNELS_INPUT_BY_NAME(DT_NODELABEL(n), sensor) // 10
  289. * DT_IO_CHANNELS_INPUT_BY_NAME(DT_NODELABEL(n), bandgap) // 20
  290. *
  291. * @param node_id node identifier for a node with an io-channels property
  292. * @param name lowercase-and-underscores name of an io-channels element
  293. * as defined by the node's io-channel-names property
  294. * @return the input cell in the specifier at the named element
  295. * @see DT_PHA_BY_NAME()
  296. */
  297. #define DT_IO_CHANNELS_INPUT_BY_NAME(node_id, name) \
  298. DT_PHA_BY_NAME(node_id, io_channels, name, input)
  299. /**
  300. * @brief Equivalent to DT_IO_CHANNELS_INPUT_BY_IDX(node_id, 0)
  301. * @param node_id node identifier for a node with an io-channels property
  302. * @return the input cell in the specifier at index 0
  303. * @see DT_IO_CHANNELS_INPUT_BY_IDX()
  304. */
  305. #define DT_IO_CHANNELS_INPUT(node_id) DT_IO_CHANNELS_INPUT_BY_IDX(node_id, 0)
  306. /**
  307. * @brief Get an input cell from the "DT_DRV_INST(inst)" io-channels
  308. * property at an index
  309. * @param inst DT_DRV_COMPAT instance number
  310. * @param idx logical index into io-channels property
  311. * @return the input cell in the specifier at index "idx"
  312. * @see DT_IO_CHANNELS_INPUT_BY_IDX()
  313. */
  314. #define DT_INST_IO_CHANNELS_INPUT_BY_IDX(inst, idx) \
  315. DT_IO_CHANNELS_INPUT_BY_IDX(DT_DRV_INST(inst), idx)
  316. /**
  317. * @brief Get an input cell from the "DT_DRV_INST(inst)" io-channels
  318. * property by name
  319. * @param inst DT_DRV_COMPAT instance number
  320. * @param name lowercase-and-underscores name of an io-channels element
  321. * as defined by the instance's io-channel-names property
  322. * @return the input cell in the specifier at the named element
  323. * @see DT_IO_CHANNELS_INPUT_BY_NAME()
  324. */
  325. #define DT_INST_IO_CHANNELS_INPUT_BY_NAME(inst, name) \
  326. DT_IO_CHANNELS_INPUT_BY_NAME(DT_DRV_INST(inst), name)
  327. /**
  328. * @brief Equivalent to DT_INST_IO_CHANNELS_INPUT_BY_IDX(inst, 0)
  329. * @param inst DT_DRV_COMPAT instance number
  330. * @return the input cell in the specifier at index 0
  331. */
  332. #define DT_INST_IO_CHANNELS_INPUT(inst) DT_INST_IO_CHANNELS_INPUT_BY_IDX(inst, 0)
  333. /**
  334. * @}
  335. */
  336. #ifdef __cplusplus
  337. }
  338. #endif
  339. #endif /* ZEPHYR_INCLUDE_DEVICETREE_IO_CHANNELS_H_ */