pwms.h 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601
  1. /**
  2. * @file
  3. * @brief PWMs 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_PWMS_H_
  11. #define ZEPHYR_INCLUDE_DEVICETREE_PWMS_H_
  12. #ifdef __cplusplus
  13. extern "C" {
  14. #endif
  15. /**
  16. * @defgroup devicetree-pwms Devicetree PWMs API
  17. * @ingroup devicetree
  18. * @{
  19. */
  20. /**
  21. * @brief Get a label property from a pwms property at an index
  22. *
  23. * It's an error if the PWM controller node referenced by the phandle
  24. * in node_id's pwms property at index "idx" has no label property.
  25. *
  26. * Example devicetree fragment:
  27. *
  28. * pwm1: pwm-controller@... {
  29. * label = "PWM_1";
  30. * };
  31. *
  32. * pwm2: pwm-controller@... {
  33. * label = "PWM_2";
  34. * };
  35. *
  36. * n: node {
  37. * pwms = <&pwm1 1 PWM_POLARITY_NORMAL>,
  38. * <&pwm2 3 PWM_POLARITY_INVERTED>;
  39. * };
  40. *
  41. * Example usage:
  42. *
  43. * DT_PWMS_LABEL_BY_IDX(DT_NODELABEL(n), 0) // "PWM_1"
  44. * DT_PWMS_LABEL_BY_IDX(DT_NODELABEL(n), 1) // "PWM_2"
  45. *
  46. * @param node_id node identifier for a node with a pwms property
  47. * @param idx logical index into pwms property
  48. * @return the label property of the node referenced at index "idx"
  49. * @see DT_PROP_BY_PHANDLE_IDX()
  50. */
  51. #define DT_PWMS_LABEL_BY_IDX(node_id, idx) \
  52. __DEPRECATED_MACRO \
  53. DT_PROP_BY_PHANDLE_IDX(node_id, pwms, idx, label)
  54. /**
  55. * @brief Get a label property from a pwms property by name
  56. *
  57. * It's an error if the PWM controller node referenced by the
  58. * phandle in node_id's pwms property at the element named "name"
  59. * has no label property.
  60. *
  61. * Example devicetree fragment:
  62. *
  63. * pwm1: pwm-controller@... {
  64. * label = "PWM_1";
  65. * };
  66. *
  67. * pwm2: pwm-controller@... {
  68. * label = "PWM_2";
  69. * };
  70. *
  71. * n: node {
  72. * pwms = <&pwm1 1 PWM_POLARITY_NORMAL>,
  73. * <&pwm2 3 PWM_POLARITY_INVERTED>;
  74. * pwm-names = "alpha", "beta";
  75. * };
  76. *
  77. * Example usage:
  78. *
  79. * DT_PWMS_LABEL_BY_NAME(DT_NODELABEL(n), alpha) // "PWM_1"
  80. * DT_PWMS_LABEL_BY_NAME(DT_NODELABEL(n), beta) // "PWM_2"
  81. *
  82. * @param node_id node identifier for a node with a pwms property
  83. * @param name lowercase-and-underscores name of a pwms element
  84. * as defined by the node's pwm-names property
  85. * @return the label property of the node referenced at the named element
  86. * @see DT_PHANDLE_BY_NAME()
  87. */
  88. #define DT_PWMS_LABEL_BY_NAME(node_id, name) \
  89. __DEPRECATED_MACRO \
  90. DT_PROP(DT_PHANDLE_BY_NAME(node_id, pwms, name), label)
  91. /**
  92. * @brief Equivalent to DT_PWMS_LABEL_BY_IDX(node_id, 0)
  93. * @param node_id node identifier for a node with a pwms property
  94. * @return the label property of the node referenced at index 0
  95. * @see DT_PWMS_LABEL_BY_IDX()
  96. */
  97. #define DT_PWMS_LABEL(node_id) __DEPRECATED_MACRO DT_PWMS_LABEL_BY_IDX(node_id, 0)
  98. /**
  99. * @brief Get the node identifier for the PWM controller from a
  100. * pwms property at an index
  101. *
  102. * Example devicetree fragment:
  103. *
  104. * pwm1: pwm-controller@... { ... };
  105. *
  106. * pwm2: pwm-controller@... { ... };
  107. *
  108. * n: node {
  109. * pwms = <&pwm1 1 PWM_POLARITY_NORMAL>,
  110. * <&pwm2 3 PWM_POLARITY_INVERTED>;
  111. * };
  112. *
  113. * Example usage:
  114. *
  115. * DT_PWMS_CTLR_BY_IDX(DT_NODELABEL(n), 0) // DT_NODELABEL(pwm1)
  116. * DT_PWMS_CTLR_BY_IDX(DT_NODELABEL(n), 1) // DT_NODELABEL(pwm2)
  117. *
  118. * @param node_id node identifier for a node with a pwms property
  119. * @param idx logical index into pwms property
  120. * @return the node identifier for the PWM controller referenced at
  121. * index "idx"
  122. * @see DT_PROP_BY_PHANDLE_IDX()
  123. */
  124. #define DT_PWMS_CTLR_BY_IDX(node_id, idx) \
  125. DT_PHANDLE_BY_IDX(node_id, pwms, idx)
  126. /**
  127. * @brief Get the node identifier for the PWM controller from a
  128. * pwms property by name
  129. *
  130. * Example devicetree fragment:
  131. *
  132. * pwm1: pwm-controller@... { ... };
  133. *
  134. * pwm2: pwm-controller@... { ... };
  135. *
  136. * n: node {
  137. * pwms = <&pwm1 1 PWM_POLARITY_NORMAL>,
  138. * <&pwm2 3 PWM_POLARITY_INVERTED>;
  139. * pwm-names = "alpha", "beta";
  140. * };
  141. *
  142. * Example usage:
  143. *
  144. * DT_PWMS_CTLR_BY_NAME(DT_NODELABEL(n), alpha) // DT_NODELABEL(pwm1)
  145. * DT_PWMS_CTLR_BY_NAME(DT_NODELABEL(n), beta) // DT_NODELABEL(pwm2)
  146. *
  147. * @param node_id node identifier for a node with a pwms property
  148. * @param name lowercase-and-underscores name of a pwms element
  149. * as defined by the node's pwm-names property
  150. * @return the node identifier for the PWM controller in the named element
  151. * @see DT_PHANDLE_BY_NAME()
  152. */
  153. #define DT_PWMS_CTLR_BY_NAME(node_id, name) \
  154. DT_PHANDLE_BY_NAME(node_id, pwms, name)
  155. /**
  156. * @brief Equivalent to DT_PWMS_CTLR_BY_IDX(node_id, 0)
  157. * @param node_id node identifier for a node with a pwms property
  158. * @return the node identifier for the PWM controller at index 0
  159. * in the node's "pwms" property
  160. * @see DT_PWMS_CTLR_BY_IDX()
  161. */
  162. #define DT_PWMS_CTLR(node_id) DT_PWMS_CTLR_BY_IDX(node_id, 0)
  163. /**
  164. * @brief Get PWM specifier's cell value at an index
  165. *
  166. * Example devicetree fragment:
  167. *
  168. * pwm1: pwm-controller@... {
  169. * compatible = "vnd,pwm";
  170. * label = "PWM_1";
  171. * #pwm-cells = <2>;
  172. * };
  173. *
  174. * pwm2: pwm-controller@... {
  175. * compatible = "vnd,pwm";
  176. * label = "PWM_2";
  177. * #pwm-cells = <2>;
  178. * };
  179. *
  180. * n: node {
  181. * pwms = <&pwm1 1 200000 PWM_POLARITY_NORMAL>,
  182. * <&pwm2 3 100000 PWM_POLARITY_INVERTED>;
  183. * };
  184. *
  185. * Bindings fragment for the "vnd,pwm" compatible:
  186. *
  187. * pwm-cells:
  188. * - channel
  189. * - period
  190. * - flags
  191. *
  192. * Example usage:
  193. *
  194. * DT_PWMS_CELL_BY_IDX(DT_NODELABEL(n), 0, channel) // 1
  195. * DT_PWMS_CELL_BY_IDX(DT_NODELABEL(n), 1, channel) // 3
  196. * DT_PWMS_CELL_BY_IDX(DT_NODELABEL(n), 0, period) // 200000
  197. * DT_PWMS_CELL_BY_IDX(DT_NODELABEL(n), 1, period) // 100000
  198. * DT_PWMS_CELL_BY_IDX(DT_NODELABEL(n), 0, flags) // PWM_POLARITY_NORMAL
  199. * DT_PWMS_CELL_BY_IDX(DT_NODELABEL(n), 1, flags) // PWM_POLARITY_INVERTED
  200. *
  201. * @param node_id node identifier for a node with a pwms property
  202. * @param idx logical index into pwms property
  203. * @param cell lowercase-and-underscores cell name
  204. * @return the cell value at index "idx"
  205. * @see DT_PHA_BY_IDX()
  206. */
  207. #define DT_PWMS_CELL_BY_IDX(node_id, idx, cell) \
  208. DT_PHA_BY_IDX(node_id, pwms, idx, cell)
  209. /**
  210. * @brief Get a PWM specifier's cell value by name
  211. *
  212. * Example devicetree fragment:
  213. *
  214. * pwm1: pwm-controller@... {
  215. * compatible = "vnd,pwm";
  216. * label = "PWM_1";
  217. * #pwm-cells = <2>;
  218. * };
  219. *
  220. * pwm2: pwm-controller@... {
  221. * compatible = "vnd,pwm";
  222. * label = "PWM_2";
  223. * #pwm-cells = <2>;
  224. * };
  225. *
  226. * n: node {
  227. * pwms = <&pwm1 1 200000 PWM_POLARITY_NORMAL>,
  228. * <&pwm2 3 100000 PWM_POLARITY_INVERTED>;
  229. * pwm-names = "alpha", "beta";
  230. * };
  231. *
  232. * Bindings fragment for the "vnd,pwm" compatible:
  233. *
  234. * pwm-cells:
  235. * - channel
  236. * - period
  237. * - flags
  238. *
  239. * Example usage:
  240. *
  241. * DT_PWMS_CELL_BY_NAME(DT_NODELABEL(n), alpha, channel) // 1
  242. * DT_PWMS_CELL_BY_NAME(DT_NODELABEL(n), beta, channel) // 3
  243. * DT_PWMS_CELL_BY_NAME(DT_NODELABEL(n), alpha, period) // 200000
  244. * DT_PWMS_CELL_BY_NAME(DT_NODELABEL(n), beta, period) // 100000
  245. * DT_PWMS_CELL_BY_NAME(DT_NODELABEL(n), alpha, flags) // PWM_POLARITY_NORMAL
  246. * DT_PWMS_CELL_BY_NAME(DT_NODELABEL(n), beta, flags) // PWM_POLARITY_INVERTED
  247. *
  248. * @param node_id node identifier for a node with a pwms property
  249. * @param name lowercase-and-underscores name of a pwms element
  250. * as defined by the node's pwm-names property
  251. * @param cell lowercase-and-underscores cell name
  252. * @return the cell value in the specifier at the named element
  253. * @see DT_PHA_BY_NAME()
  254. */
  255. #define DT_PWMS_CELL_BY_NAME(node_id, name, cell) \
  256. DT_PHA_BY_NAME(node_id, pwms, name, cell)
  257. /**
  258. * @brief Equivalent to DT_PWMS_CELL_BY_IDX(node_id, 0, cell)
  259. * @param node_id node identifier for a node with a pwms property
  260. * @param cell lowercase-and-underscores cell name
  261. * @return the cell value at index 0
  262. * @see DT_PWMS_CELL_BY_IDX()
  263. */
  264. #define DT_PWMS_CELL(node_id, cell) DT_PWMS_CELL_BY_IDX(node_id, 0, cell)
  265. /**
  266. * @brief Get a PWM specifier's channel cell value at an index
  267. *
  268. * This macro only works for PWM specifiers with cells named "channel".
  269. * Refer to the node's binding to check if necessary.
  270. *
  271. * This is equivalent to DT_PWMS_CELL_BY_IDX(node_id, idx, channel).
  272. *
  273. * @param node_id node identifier for a node with a pwms property
  274. * @param idx logical index into pwms property
  275. * @return the channel cell value at index "idx"
  276. * @see DT_PWMS_CELL_BY_IDX()
  277. */
  278. #define DT_PWMS_CHANNEL_BY_IDX(node_id, idx) \
  279. DT_PWMS_CELL_BY_IDX(node_id, idx, channel)
  280. /**
  281. * @brief Get a PWM specifier's channel cell value by name
  282. *
  283. * This macro only works for PWM specifiers with cells named "channel".
  284. * Refer to the node's binding to check if necessary.
  285. *
  286. * This is equivalent to DT_PWMS_CELL_BY_NAME(node_id, name, channel).
  287. *
  288. * @param node_id node identifier for a node with a pwms property
  289. * @param name lowercase-and-underscores name of a pwms element
  290. * as defined by the node's pwm-names property
  291. * @return the channel cell value in the specifier at the named element
  292. * @see DT_PWMS_CELL_BY_NAME()
  293. */
  294. #define DT_PWMS_CHANNEL_BY_NAME(node_id, name) \
  295. DT_PWMS_CELL_BY_NAME(node_id, name, channel)
  296. /**
  297. * @brief Equivalent to DT_PWMS_CHANNEL_BY_IDX(node_id, 0)
  298. * @param node_id node identifier for a node with a pwms property
  299. * @return the channel cell value at index 0
  300. * @see DT_PWMS_CHANNEL_BY_IDX()
  301. */
  302. #define DT_PWMS_CHANNEL(node_id) DT_PWMS_CHANNEL_BY_IDX(node_id, 0)
  303. /**
  304. * @brief Get PWM specifier's period cell value at an index
  305. *
  306. * This macro only works for PWM specifiers with cells named "period".
  307. * Refer to the node's binding to check if necessary.
  308. *
  309. * This is equivalent to DT_PWMS_CELL_BY_IDX(node_id, idx, period).
  310. *
  311. * @param node_id node identifier for a node with a pwms property
  312. * @param idx logical index into pwms property
  313. * @return the period cell value at index "idx"
  314. * @see DT_PWMS_CELL_BY_IDX()
  315. */
  316. #define DT_PWMS_PERIOD_BY_IDX(node_id, idx) \
  317. DT_PWMS_CELL_BY_IDX(node_id, idx, period)
  318. /**
  319. * @brief Get a PWM specifier's period cell value by name
  320. *
  321. * This macro only works for PWM specifiers with cells named "period".
  322. * Refer to the node's binding to check if necessary.
  323. *
  324. * This is equivalent to DT_PWMS_CELL_BY_NAME(node_id, name, period).
  325. *
  326. * @param node_id node identifier for a node with a pwms property
  327. * @param name lowercase-and-underscores name of a pwms element
  328. * as defined by the node's pwm-names property
  329. * @return the period cell value in the specifier at the named element
  330. * @see DT_PWMS_CELL_BY_NAME()
  331. */
  332. #define DT_PWMS_PERIOD_BY_NAME(node_id, name) \
  333. DT_PWMS_CELL_BY_NAME(node_id, name, period)
  334. /**
  335. * @brief Equivalent to DT_PWMS_PERIOD_BY_IDX(node_id, 0)
  336. * @param node_id node identifier for a node with a pwms property
  337. * @return the period cell value at index 0
  338. * @see DT_PWMS_PERIOD_BY_IDX()
  339. */
  340. #define DT_PWMS_PERIOD(node_id) DT_PWMS_PERIOD_BY_IDX(node_id, 0)
  341. /**
  342. * @brief Get a PWM specifier's flags cell value at an index
  343. *
  344. * This macro expects PWM specifiers with cells named "flags".
  345. * If there is no "flags" cell in the PWM specifier, zero is returned.
  346. * Refer to the node's binding to check specifier cell names if necessary.
  347. *
  348. * This is equivalent to DT_PWMS_CELL_BY_IDX(node_id, idx, flags).
  349. *
  350. * @param node_id node identifier for a node with a pwms property
  351. * @param idx logical index into pwms property
  352. * @return the flags cell value at index "idx", or zero if there is none
  353. * @see DT_PWMS_CELL_BY_IDX()
  354. */
  355. #define DT_PWMS_FLAGS_BY_IDX(node_id, idx) \
  356. DT_PHA_BY_IDX_OR(node_id, pwms, idx, flags, 0)
  357. /**
  358. * @brief Get a PWM specifier's flags cell value by name
  359. *
  360. * This macro expects PWM specifiers with cells named "flags".
  361. * If there is no "flags" cell in the PWM specifier, zero is returned.
  362. * Refer to the node's binding to check specifier cell names if necessary.
  363. *
  364. * This is equivalent to DT_PWMS_CELL_BY_NAME(node_id, name, flags) if
  365. * there is a flags cell, but expands to zero if there is none.
  366. *
  367. * @param node_id node identifier for a node with a pwms property
  368. * @param name lowercase-and-underscores name of a pwms element
  369. * as defined by the node's pwm-names property
  370. * @return the flags cell value in the specifier at the named element,
  371. * or zero if there is none
  372. * @see DT_PWMS_CELL_BY_NAME()
  373. */
  374. #define DT_PWMS_FLAGS_BY_NAME(node_id, name) \
  375. DT_PHA_BY_NAME_OR(node_id, pwms, name, flags, 0)
  376. /**
  377. * @brief Equivalent to DT_PWMS_FLAGS_BY_IDX(node_id, 0)
  378. * @param node_id node identifier for a node with a pwms property
  379. * @return the flags cell value at index 0, or zero if there is none
  380. * @see DT_PWMS_FLAGS_BY_IDX()
  381. */
  382. #define DT_PWMS_FLAGS(node_id) DT_PWMS_FLAGS_BY_IDX(node_id, 0)
  383. /**
  384. * @brief Get a label property from a DT_DRV_COMPAT instance's pwms
  385. * property by name
  386. * @param inst DT_DRV_COMPAT instance number
  387. * @param idx logical index into pwms property
  388. * @return the label property of the node referenced at index "idx"
  389. * @see DT_PWMS_LABEL_BY_IDX()
  390. */
  391. #define DT_INST_PWMS_LABEL_BY_IDX(inst, idx) \
  392. __DEPRECATED_MACRO \
  393. DT_PWMS_LABEL_BY_IDX(DT_DRV_INST(inst), idx)
  394. /**
  395. * @brief Get a label property from a DT_DRV_COMPAT instance's pwms
  396. * property by name
  397. * @param inst DT_DRV_COMPAT instance number
  398. * @param name lowercase-and-underscores name of a pwms element
  399. * as defined by the node's pwm-names property
  400. * @return the label property of the node referenced at the named element
  401. * @see DT_PWMS_LABEL_BY_NAME()
  402. */
  403. #define DT_INST_PWMS_LABEL_BY_NAME(inst, name) \
  404. __DEPRECATED_MACRO \
  405. DT_PWMS_LABEL_BY_NAME(DT_DRV_INST(inst), name)
  406. /**
  407. * @brief Equivalent to DT_INST_PWMS_LABEL_BY_IDX(inst, 0)
  408. * @param inst DT_DRV_COMPAT instance number
  409. * @return the label property of the node referenced at index 0
  410. * @see DT_PWMS_LABEL_BY_IDX()
  411. */
  412. #define DT_INST_PWMS_LABEL(inst) __DEPRECATED_MACRO DT_INST_PWMS_LABEL_BY_IDX(inst, 0)
  413. /**
  414. * @brief Get the node identifier for the PWM controller from a
  415. * DT_DRV_COMPAT instance's pwms property at an index
  416. *
  417. * @param inst DT_DRV_COMPAT instance number
  418. * @param idx logical index into pwms property
  419. * @return the node identifier for the PWM controller referenced at
  420. * index "idx"
  421. * @see DT_PWMS_CTLR_BY_IDX()
  422. */
  423. #define DT_INST_PWMS_CTLR_BY_IDX(inst, idx) \
  424. DT_PWMS_CTLR_BY_IDX(DT_DRV_INST(inst), idx)
  425. /**
  426. * @brief Get the node identifier for the PWM controller from a
  427. * DT_DRV_COMPAT instance's pwms property by name
  428. * @param inst DT_DRV_COMPAT instance number
  429. * @param name lowercase-and-underscores name of a pwms element
  430. * as defined by the node's pwm-names property
  431. * @return the node identifier for the PWM controller in the named element
  432. * @see DT_PWMS_CTLR_BY_NAME()
  433. */
  434. #define DT_INST_PWMS_CTLR_BY_NAME(inst, name) \
  435. DT_PWMS_CTLR_BY_NAME(DT_DRV_INST(inst), name)
  436. /**
  437. * @brief Equivalent to DT_INST_PWMS_CTLR_BY_IDX(inst, 0)
  438. * @param inst DT_DRV_COMPAT instance number
  439. * @return the node identifier for the PWM controller at index 0
  440. * in the instance's "pwms" property
  441. * @see DT_PWMS_CTLR_BY_IDX()
  442. */
  443. #define DT_INST_PWMS_CTLR(inst) DT_INST_PWMS_CTLR_BY_IDX(inst, 0)
  444. /**
  445. * @brief Get a DT_DRV_COMPAT instance's PWM specifier's cell value
  446. * at an index
  447. * @param inst DT_DRV_COMPAT instance number
  448. * @param idx logical index into pwms property
  449. * @param cell lowercase-and-underscores cell name
  450. * @return the cell value at index "idx"
  451. */
  452. #define DT_INST_PWMS_CELL_BY_IDX(inst, idx, cell) \
  453. DT_PWMS_CELL_BY_IDX(DT_DRV_INST(inst), idx, cell)
  454. /**
  455. * @brief Get a DT_DRV_COMPAT instance's PWM specifier's cell value by name
  456. * @param inst DT_DRV_COMPAT instance number
  457. * @param name lowercase-and-underscores name of a pwms element
  458. * as defined by the node's pwm-names property
  459. * @param cell lowercase-and-underscores cell name
  460. * @return the cell value in the specifier at the named element
  461. * @see DT_PWMS_CELL_BY_NAME()
  462. */
  463. #define DT_INST_PWMS_CELL_BY_NAME(inst, name, cell) \
  464. DT_PWMS_CELL_BY_NAME(DT_DRV_INST(inst), name, cell)
  465. /**
  466. * @brief Equivalent to DT_INST_PWMS_CELL_BY_IDX(inst, 0, cell)
  467. * @param inst DT_DRV_COMPAT instance number
  468. * @param cell lowercase-and-underscores cell name
  469. * @return the cell value at index 0
  470. */
  471. #define DT_INST_PWMS_CELL(inst, cell) \
  472. DT_INST_PWMS_CELL_BY_IDX(inst, 0, cell)
  473. /**
  474. * @brief Equivalent to DT_INST_PWMS_CELL_BY_IDX(inst, idx, channel)
  475. * @param inst DT_DRV_COMPAT instance number
  476. * @param idx logical index into pwms property
  477. * @return the channel cell value at index "idx"
  478. * @see DT_INST_PWMS_CELL_BY_IDX()
  479. */
  480. #define DT_INST_PWMS_CHANNEL_BY_IDX(inst, idx) \
  481. DT_INST_PWMS_CELL_BY_IDX(inst, idx, channel)
  482. /**
  483. * @brief Equivalent to DT_INST_PWMS_CELL_BY_NAME(inst, name, channel)
  484. * @param inst DT_DRV_COMPAT instance number
  485. * @param name lowercase-and-underscores name of a pwms element
  486. * as defined by the node's pwm-names property
  487. * @return the channel cell value in the specifier at the named element
  488. * @see DT_INST_PWMS_CELL_BY_NAME()
  489. */
  490. #define DT_INST_PWMS_CHANNEL_BY_NAME(inst, name) \
  491. DT_INST_PWMS_CELL_BY_NAME(inst, name, channel)
  492. /**
  493. * @brief Equivalent to DT_INST_PWMS_CHANNEL_BY_IDX(inst, 0)
  494. * @param inst DT_DRV_COMPAT instance number
  495. * @return the channel cell value at index 0
  496. * @see DT_INST_PWMS_CHANNEL_BY_IDX()
  497. */
  498. #define DT_INST_PWMS_CHANNEL(inst) DT_INST_PWMS_CHANNEL_BY_IDX(inst, 0)
  499. /**
  500. * @brief Equivalent to DT_INST_PWMS_CELL_BY_IDX(inst, idx, period)
  501. * @param inst DT_DRV_COMPAT instance number
  502. * @param idx logical index into pwms property
  503. * @return the period cell value at index "idx"
  504. * @see DT_INST_PWMS_CELL_BY_IDX()
  505. */
  506. #define DT_INST_PWMS_PERIOD_BY_IDX(inst, idx) \
  507. DT_INST_PWMS_CELL_BY_IDX(inst, idx, period)
  508. /**
  509. * @brief Equivalent to DT_INST_PWMS_CELL_BY_NAME(inst, name, period)
  510. * @param inst DT_DRV_COMPAT instance number
  511. * @param name lowercase-and-underscores name of a pwms element
  512. * as defined by the node's pwm-names property
  513. * @return the period cell value in the specifier at the named element
  514. * @see DT_INST_PWMS_CELL_BY_NAME()
  515. */
  516. #define DT_INST_PWMS_PERIOD_BY_NAME(inst, name) \
  517. DT_INST_PWMS_CELL_BY_NAME(inst, name, period)
  518. /**
  519. * @brief Equivalent to DT_INST_PWMS_PERIOD_BY_IDX(inst, 0)
  520. * @param inst DT_DRV_COMPAT instance number
  521. * @return the period cell value at index 0
  522. * @see DT_INST_PWMS_PERIOD_BY_IDX()
  523. */
  524. #define DT_INST_PWMS_PERIOD(inst) DT_INST_PWMS_PERIOD_BY_IDX(inst, 0)
  525. /**
  526. * @brief Equivalent to DT_INST_PWMS_CELL_BY_IDX(inst, idx, flags)
  527. * @param inst DT_DRV_COMPAT instance number
  528. * @param idx logical index into pwms property
  529. * @return the flags cell value at index "idx", or zero if there is none
  530. * @see DT_INST_PWMS_CELL_BY_IDX()
  531. */
  532. #define DT_INST_PWMS_FLAGS_BY_IDX(inst, idx) \
  533. DT_INST_PWMS_CELL_BY_IDX(inst, idx, flags)
  534. /**
  535. * @brief Equivalent to DT_INST_PWMS_CELL_BY_NAME(inst, name, flags)
  536. * @param inst DT_DRV_COMPAT instance number
  537. * @param name lowercase-and-underscores name of a pwms element
  538. * as defined by the node's pwm-names property
  539. * @return the flags cell value in the specifier at the named element,
  540. * or zero if there is none
  541. * @see DT_INST_PWMS_CELL_BY_NAME()
  542. */
  543. #define DT_INST_PWMS_FLAGS_BY_NAME(inst, name) \
  544. DT_INST_PWMS_CELL_BY_NAME(inst, name, flags)
  545. /**
  546. * @brief Equivalent to DT_INST_PWMS_FLAGS_BY_IDX(inst, 0)
  547. * @param inst DT_DRV_COMPAT instance number
  548. * @return the flags cell value at index 0, or zero if there is none
  549. * @see DT_INST_PWMS_FLAGS_BY_IDX()
  550. */
  551. #define DT_INST_PWMS_FLAGS(inst) DT_INST_PWMS_FLAGS_BY_IDX(inst, 0)
  552. /**
  553. * @}
  554. */
  555. #ifdef __cplusplus
  556. }
  557. #endif
  558. #endif /* ZEPHYR_INCLUDE_DEVICETREE_PWMS_H_ */