clocks.h 11 KB

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