dma.h 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376
  1. /**
  2. * @file
  3. * @brief DMA 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_DMAS_H_
  11. #define ZEPHYR_INCLUDE_DEVICETREE_DMAS_H_
  12. #ifdef __cplusplus
  13. extern "C" {
  14. #endif
  15. /**
  16. * @defgroup devicetree-dmas Devicetree DMA API
  17. * @ingroup devicetree
  18. * @{
  19. */
  20. /**
  21. * @brief Get a label property from the node referenced by a dmas
  22. * property at an index
  23. *
  24. * It's an error if the DMA controller node referenced by the phandle
  25. * in node_id's dmas property at index "idx" has no label property.
  26. *
  27. * Example devicetree fragment:
  28. *
  29. * dma1: dma@... {
  30. * label = "DMA_1";
  31. * };
  32. *
  33. * dma2: dma@... {
  34. * label = "DMA_2";
  35. * };
  36. *
  37. * n: node {
  38. * dmas = <&dma1 1 2 0x400 0x3>,
  39. * <&dma2 6 3 0x404 0x5>;
  40. * };
  41. *
  42. * Example usage:
  43. *
  44. * DT_DMAS_LABEL_BY_IDX(DT_NODELABEL(n), 1) // "DMA_2"
  45. *
  46. * @param node_id node identifier for a node with a dmas property
  47. * @param idx logical index into dmas property
  48. * @return the label property of the node referenced at index "idx"
  49. */
  50. #define DT_DMAS_LABEL_BY_IDX(node_id, idx) \
  51. __DEPRECATED_MACRO \
  52. DT_PROP_BY_PHANDLE_IDX(node_id, dmas, idx, label)
  53. /**
  54. * @brief Get a label property from a DT_DRV_COMPAT instance's dmas
  55. * property at an index
  56. * @param inst DT_DRV_COMPAT instance number
  57. * @param idx logical index into dmas property
  58. * @return the label property of the node referenced at index "idx"
  59. * @see DT_DMAS_LABEL_BY_IDX()
  60. */
  61. #define DT_INST_DMAS_LABEL_BY_IDX(inst, idx) \
  62. __DEPRECATED_MACRO \
  63. DT_DMAS_LABEL_BY_IDX(DT_DRV_INST(inst), idx)
  64. /**
  65. * @brief Get a label property from a dmas property by name
  66. *
  67. * It's an error if the DMA controller node referenced by the phandle
  68. * in node_id's dmas property at the element named "name" has no label
  69. * property.
  70. *
  71. * Example devicetree fragment:
  72. *
  73. * dma1: dma@... {
  74. * label = "DMA_1";
  75. * };
  76. *
  77. * dma2: dma@... {
  78. * label = "DMA_2";
  79. * };
  80. *
  81. * n: node {
  82. * dmas = <&dma1 1 2 0x400 0x3>,
  83. * <&dma2 6 3 0x404 0x5>;
  84. * dma-names = "tx", "rx";
  85. * };
  86. *
  87. * Example usage:
  88. *
  89. * DT_DMAS_LABEL_BY_NAME(DT_NODELABEL(n), rx) // "DMA_2"
  90. *
  91. * @param node_id node identifier for a node with a dmas property
  92. * @param name lowercase-and-underscores name of a dmas element
  93. * as defined by the node's dma-names property
  94. * @return the label property of the node referenced at the named element
  95. */
  96. #define DT_DMAS_LABEL_BY_NAME(node_id, name) \
  97. __DEPRECATED_MACRO \
  98. DT_PROP(DT_PHANDLE_BY_NAME(node_id, dmas, name), label)
  99. /**
  100. * @brief Get the node identifier for the DMA controller from a
  101. * dmas property at an index
  102. *
  103. * Example devicetree fragment:
  104. *
  105. * dma1: dma@... { ... };
  106. *
  107. * dma2: dma@... { ... };
  108. *
  109. * n: node {
  110. * dmas = <&dma1 1 2 0x400 0x3>,
  111. * <&dma2 6 3 0x404 0x5>;
  112. * };
  113. *
  114. * Example usage:
  115. *
  116. * DT_DMAS_CTLR_BY_IDX(DT_NODELABEL(n), 0) // DT_NODELABEL(dma1)
  117. * DT_DMAS_CTLR_BY_IDX(DT_NODELABEL(n), 1) // DT_NODELABEL(dma2)
  118. *
  119. * @param node_id node identifier for a node with a dmas property
  120. * @param idx logical index into dmas property
  121. * @return the node identifier for the DMA controller referenced at
  122. * index "idx"
  123. * @see DT_PROP_BY_PHANDLE_IDX()
  124. */
  125. #define DT_DMAS_CTLR_BY_IDX(node_id, idx) DT_PHANDLE_BY_IDX(node_id, dmas, idx)
  126. /**
  127. * @brief Get the node identifier for the DMA controller from a
  128. * dmas property by name
  129. *
  130. * Example devicetree fragment:
  131. *
  132. * dma1: dma@... { ... };
  133. *
  134. * dma2: dma@... { ... };
  135. *
  136. * n: node {
  137. * dmas = <&dma1 1 2 0x400 0x3>,
  138. * <&dma2 6 3 0x404 0x5>;
  139. * dma-names = "tx", "rx";
  140. * };
  141. *
  142. * Example usage:
  143. *
  144. * DT_DMAS_CTLR_BY_NAME(DT_NODELABEL(n), tx) // DT_NODELABEL(dma1)
  145. * DT_DMAS_CTLR_BY_NAME(DT_NODELABEL(n), rx) // DT_NODELABEL(dma2)
  146. *
  147. * @param node_id node identifier for a node with a dmas property
  148. * @param name lowercase-and-underscores name of a dmas element
  149. * as defined by the node's dma-names property
  150. * @return the node identifier for the DMA controller in the named element
  151. * @see DT_PHANDLE_BY_NAME()
  152. */
  153. #define DT_DMAS_CTLR_BY_NAME(node_id, name) \
  154. DT_PHANDLE_BY_NAME(node_id, dmas, name)
  155. /**
  156. * @brief Equivalent to DT_DMAS_CTLR_BY_IDX(node_id, 0)
  157. * @param node_id node identifier for a node with a dmas property
  158. * @return the node identifier for the DMA controller at index 0
  159. * in the node's "dmas" property
  160. * @see DT_DMAS_CTLR_BY_IDX()
  161. */
  162. #define DT_DMAS_CTLR(node_id) DT_DMAS_CTLR_BY_IDX(node_id, 0)
  163. /**
  164. * @brief Get a label property from a DT_DRV_COMPAT instance's dmas
  165. * property by name
  166. * @param inst DT_DRV_COMPAT instance number
  167. * @param name lowercase-and-underscores name of a dmas element
  168. * as defined by the node's dma-names property
  169. * @return the label property of the node referenced at the named element
  170. * @see DT_DMAS_LABEL_BY_NAME()
  171. */
  172. #define DT_INST_DMAS_LABEL_BY_NAME(inst, name) \
  173. __DEPRECATED_MACRO \
  174. DT_DMAS_LABEL_BY_NAME(DT_DRV_INST(inst), name)
  175. /**
  176. * @brief Get the node identifier for the DMA controller from a
  177. * DT_DRV_COMPAT instance's dmas property at an index
  178. *
  179. * @param inst DT_DRV_COMPAT instance number
  180. * @param idx logical index into dmas property
  181. * @return the node identifier for the DMA controller referenced at
  182. * index "idx"
  183. * @see DT_DMAS_CTLR_BY_IDX()
  184. */
  185. #define DT_INST_DMAS_CTLR_BY_IDX(inst, idx) \
  186. DT_DMAS_CTLR_BY_IDX(DT_DRV_INST(inst), idx)
  187. /**
  188. * @brief Get the node identifier for the DMA controller from a
  189. * DT_DRV_COMPAT instance's dmas property by name
  190. * @param inst DT_DRV_COMPAT instance number
  191. * @param name lowercase-and-underscores name of a dmas element
  192. * as defined by the node's dma-names property
  193. * @return the node identifier for the DMA controller in the named element
  194. * @see DT_DMAS_CTLR_BY_NAME()
  195. */
  196. #define DT_INST_DMAS_CTLR_BY_NAME(inst, name) \
  197. DT_DMAS_CTLR_BY_NAME(DT_DRV_INST(inst), name)
  198. /**
  199. * @brief Equivalent to DT_INST_DMAS_CTLR_BY_IDX(inst, 0)
  200. * @param inst DT_DRV_COMPAT instance number
  201. * @return the node identifier for the DMA controller at index 0
  202. * in the instance's "dmas" property
  203. * @see DT_DMAS_CTLR_BY_IDX()
  204. */
  205. #define DT_INST_DMAS_CTLR(inst) DT_INST_DMAS_CTLR_BY_IDX(inst, 0)
  206. /**
  207. * @brief Get a DMA specifier's cell value at an index
  208. *
  209. * Example devicetree fragment:
  210. *
  211. * dma1: dma@... {
  212. * compatible = "vnd,dma";
  213. * #dma-cells = <2>;
  214. * };
  215. *
  216. * dma2: dma@... {
  217. * compatible = "vnd,dma";
  218. * #dma-cells = <2>;
  219. * };
  220. *
  221. * n: node {
  222. * dmas = <&dma1 1 0x400>,
  223. * <&dma2 6 0x404>;
  224. * };
  225. *
  226. * Bindings fragment for the vnd,dma compatible:
  227. *
  228. * dma-cells:
  229. * - channel
  230. * - config
  231. *
  232. * Example usage:
  233. *
  234. * DT_DMAS_CELL_BY_IDX(DT_NODELABEL(n), 0, channel) // 1
  235. * DT_DMAS_CELL_BY_IDX(DT_NODELABEL(n), 1, channel) // 6
  236. * DT_DMAS_CELL_BY_IDX(DT_NODELABEL(n), 0, config) // 0x400
  237. * DT_DMAS_CELL_BY_IDX(DT_NODELABEL(n), 1, config) // 0x404
  238. *
  239. * @param node_id node identifier for a node with a dmas property
  240. * @param idx logical index into dmas property
  241. * @param cell lowercase-and-underscores cell name
  242. * @return the cell value at index "idx"
  243. * @see DT_PHA_BY_IDX()
  244. */
  245. #define DT_DMAS_CELL_BY_IDX(node_id, idx, cell) \
  246. DT_PHA_BY_IDX(node_id, dmas, idx, cell)
  247. /**
  248. * @brief Get a DT_DRV_COMPAT instance's DMA specifier's cell value at an index
  249. * @param inst DT_DRV_COMPAT instance number
  250. * @param idx logical index into dmas property
  251. * @param cell lowercase-and-underscores cell name
  252. * @return the cell value at index "idx"
  253. * @see DT_DMAS_CELL_BY_IDX()
  254. */
  255. #define DT_INST_DMAS_CELL_BY_IDX(inst, idx, cell) \
  256. DT_PHA_BY_IDX(DT_DRV_INST(inst), dmas, idx, cell)
  257. /**
  258. * @brief Get a DMA specifier's cell value by name
  259. *
  260. * Example devicetree fragment:
  261. *
  262. * dma1: dma@... {
  263. * compatible = "vnd,dma";
  264. * #dma-cells = <2>;
  265. * };
  266. *
  267. * dma2: dma@... {
  268. * compatible = "vnd,dma";
  269. * #dma-cells = <2>;
  270. * };
  271. *
  272. * n: node {
  273. * dmas = <&dma1 1 0x400>,
  274. * <&dma2 6 0x404>;
  275. * dma-names = "tx", "rx";
  276. * };
  277. *
  278. * Bindings fragment for the vnd,dma compatible:
  279. *
  280. * dma-cells:
  281. * - channel
  282. * - config
  283. *
  284. * Example usage:
  285. *
  286. * DT_DMAS_CELL_BY_NAME(DT_NODELABEL(n), tx, channel) // 1
  287. * DT_DMAS_CELL_BY_NAME(DT_NODELABEL(n), rx, channel) // 6
  288. * DT_DMAS_CELL_BY_NAME(DT_NODELABEL(n), tx, config) // 0x400
  289. * DT_DMAS_CELL_BY_NAME(DT_NODELABEL(n), rx, config) // 0x404
  290. *
  291. * @param node_id node identifier for a node with a dmas property
  292. * @param name lowercase-and-underscores name of a dmas element
  293. * as defined by the node's dma-names property
  294. * @param cell lowercase-and-underscores cell name
  295. * @return the cell value in the specifier at the named element
  296. * @see DT_PHA_BY_NAME()
  297. */
  298. #define DT_DMAS_CELL_BY_NAME(node_id, name, cell) \
  299. DT_PHA_BY_NAME(node_id, dmas, name, cell)
  300. /**
  301. * @brief Get a DT_DRV_COMPAT instance's DMA specifier's cell value by name
  302. * @param inst DT_DRV_COMPAT instance number
  303. * @param name lowercase-and-underscores name of a dmas element
  304. * as defined by the node's dma-names property
  305. * @param cell lowercase-and-underscores cell name
  306. * @return the cell value in the specifier at the named element
  307. * @see DT_DMAS_CELL_BY_NAME()
  308. */
  309. #define DT_INST_DMAS_CELL_BY_NAME(inst, name, cell) \
  310. DT_DMAS_CELL_BY_NAME(DT_DRV_INST(inst), name, cell)
  311. /**
  312. * @brief Is index "idx" valid for a dmas property?
  313. * @param node_id node identifier for a node with a dmas property
  314. * @param idx logical index into dmas property
  315. * @return 1 if the "dmas" property has index "idx", 0 otherwise
  316. */
  317. #define DT_DMAS_HAS_IDX(node_id, idx) \
  318. IS_ENABLED(DT_CAT(node_id, _P_dmas_IDX_##idx##_EXISTS))
  319. /**
  320. * @brief Is index "idx" valid for a DT_DRV_COMPAT instance's dmas property?
  321. * @param inst DT_DRV_COMPAT instance number
  322. * @param idx logical index into dmas property
  323. * @return 1 if the "dmas" property has a specifier at index "idx", 0 otherwise
  324. */
  325. #define DT_INST_DMAS_HAS_IDX(inst, idx) \
  326. DT_DMAS_HAS_IDX(DT_DRV_INST(inst), idx)
  327. /**
  328. * @brief Does a dmas property have a named element?
  329. * @param node_id node identifier for a node with a dmas property
  330. * @param name lowercase-and-underscores name of a dmas element
  331. * as defined by the node's dma-names property
  332. * @return 1 if the dmas property has the named element, 0 otherwise
  333. */
  334. #define DT_DMAS_HAS_NAME(node_id, name) \
  335. IS_ENABLED(DT_CAT(node_id, _P_dmas_NAME_##name##_EXISTS))
  336. /**
  337. * @brief Does a DT_DRV_COMPAT instance's dmas property have a named element?
  338. * @param inst DT_DRV_COMPAT instance number
  339. * @param name lowercase-and-underscores name of a dmas element
  340. * as defined by the node's dma-names property
  341. * @return 1 if the dmas property has the named element, 0 otherwise
  342. */
  343. #define DT_INST_DMAS_HAS_NAME(inst, name) \
  344. DT_DMAS_HAS_NAME(DT_DRV_INST(inst), name)
  345. /**
  346. * @}
  347. */
  348. #ifdef __cplusplus
  349. }
  350. #endif
  351. #endif /* ZEPHYR_INCLUDE_DEVICETREE_DMAS_H_ */