pinctrl.h 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455
  1. /*
  2. * Copyright (c) 2021 Nordic Semiconductor ASA
  3. * SPDX-License-Identifier: Apache-2.0
  4. */
  5. #ifndef ZEPHYR_INCLUDE_DEVICETREE_PINCTRL_H_
  6. #define ZEPHYR_INCLUDE_DEVICETREE_PINCTRL_H_
  7. /**
  8. * @file
  9. * @brief Devicetree pin control helpers
  10. */
  11. /**
  12. * @defgroup devicetree-pinctrl Pin control
  13. * @ingroup devicetree
  14. * @{
  15. */
  16. /**
  17. * @brief Get a node identifier for a phandle in a pinctrl property by index
  18. *
  19. * Example devicetree fragment:
  20. *
  21. * n: node {
  22. * pinctrl-0 = <&foo &bar>;
  23. * pinctrl-1 = <&baz &blub>;
  24. * }
  25. *
  26. * Example usage:
  27. *
  28. * DT_PINCTRL_BY_IDX(DT_NODELABEL(n), 0, 1) // DT_NODELABEL(bar)
  29. * DT_PINCTRL_BY_IDX(DT_NODELABEL(n), 1, 0) // DT_NODELABEL(baz)
  30. *
  31. * @param node_id node with a pinctrl-'pc_idx' property
  32. * @param pc_idx index of the pinctrl property itself
  33. * @param idx index into the value of the pinctrl property
  34. * @return node identifier for the phandle at index 'idx' in 'pinctrl-'pc_idx''
  35. */
  36. #define DT_PINCTRL_BY_IDX(node_id, pc_idx, idx) \
  37. DT_CAT6(node_id, _P_pinctrl_, pc_idx, _IDX_, idx, _PH)
  38. /**
  39. * @brief Get a node identifier from a pinctrl-0 property
  40. *
  41. * This is equivalent to:
  42. *
  43. * DT_PINCTRL_BY_IDX(node_id, 0, idx)
  44. *
  45. * It is provided for convenience since pinctrl-0 is commonly used.
  46. *
  47. * @param node_id node with a pinctrl-0 property
  48. * @param idx index into the pinctrl-0 property
  49. * @return node identifier for the phandle at index idx in the pinctrl-0
  50. * property of that node
  51. */
  52. #define DT_PINCTRL_0(node_id, idx) DT_PINCTRL_BY_IDX(node_id, 0, idx)
  53. /**
  54. * @brief Get a node identifier for a phandle inside a pinctrl node by name
  55. *
  56. * Example devicetree fragment:
  57. *
  58. * n: node {
  59. * pinctrl-0 = <&foo &bar>;
  60. * pinctrl-1 = <&baz &blub>;
  61. * pinctrl-names = "default", "sleep";
  62. * };
  63. *
  64. * Example usage:
  65. *
  66. * DT_PINCTRL_BY_NAME(DT_NODELABEL(n), default, 1) // DT_NODELABEL(bar)
  67. * DT_PINCTRL_BY_NAME(DT_NODELABEL(n), sleep, 0) // DT_NODELABEL(baz)
  68. *
  69. * @param node_id node with a named pinctrl property
  70. * @param name lowercase-and-underscores pinctrl property name
  71. * @param idx index into the value of the named pinctrl property
  72. * @return node identifier for the phandle at that index in the pinctrl
  73. * property
  74. */
  75. #define DT_PINCTRL_BY_NAME(node_id, name, idx) \
  76. DT_CAT6(node_id, _PINCTRL_NAME_, name, _IDX_, idx, _PH)
  77. /**
  78. * @brief Convert a pinctrl name to its corresponding index
  79. *
  80. * Example devicetree fragment:
  81. *
  82. * n: node {
  83. * pinctrl-0 = <&foo &bar>;
  84. * pinctrl-1 = <&baz &blub>;
  85. * pinctrl-names = "default", "sleep";
  86. * };
  87. *
  88. * Example usage:
  89. *
  90. * DT_PINCTRL_NAME_TO_IDX(DT_NODELABEL(n), default) // 0
  91. * DT_PINCTRL_NAME_TO_IDX(DT_NODELABEL(n), sleep) // 1
  92. *
  93. * @param node_id node identifier with a named pinctrl property
  94. * @param name lowercase-and-underscores name name of the pinctrl whose index to get
  95. * @return integer literal for the index of the pinctrl property with that name
  96. */
  97. #define DT_PINCTRL_NAME_TO_IDX(node_id, name) \
  98. DT_CAT4(node_id, _PINCTRL_NAME_, name, _IDX)
  99. /**
  100. * @brief Convert a pinctrl property index to its name as a token
  101. *
  102. * This allows you to get a pinctrl property's name, and "remove the
  103. * quotes" from it.
  104. *
  105. * DT_PINCTRL_IDX_TO_NAME_TOKEN() can only be used if the node has a
  106. * pinctrl-'pc_idx' property and a pinctrl-names property element for
  107. * that index. It is an error to use it in other circumstances.
  108. *
  109. * Example devicetree fragment:
  110. *
  111. * n: node {
  112. * pinctrl-0 = <...>;
  113. * pinctrl-1 = <...>;
  114. * pinctrl-names = "default", "f.o.o2";
  115. * };
  116. *
  117. * Example usage:
  118. *
  119. * DT_PINCTRL_IDX_TO_NAME_TOKEN(DT_NODELABEL(n), 0) // default
  120. * DT_PINCTRL_IDX_TO_NAME_TOKEN(DT_NODELABEL(n), 1) // f_o_o2
  121. *
  122. * The same caveats and restrictions that apply to DT_STRING_TOKEN()'s
  123. * return value also apply here.
  124. *
  125. * @param node_id node identifier
  126. * @param pc_idx index of a pinctrl property in that node
  127. * @return name of the pinctrl property, as a token, without any quotes
  128. * and with non-alphanumeric characters converted to underscores
  129. */
  130. #define DT_PINCTRL_IDX_TO_NAME_TOKEN(node_id, pc_idx) \
  131. DT_CAT4(node_id, _PINCTRL_IDX_, pc_idx, _TOKEN)
  132. /**
  133. * @brief Like DT_PINCTRL_IDX_TO_NAME_TOKEN(), but with an uppercased result
  134. *
  135. * This does the a similar conversion as
  136. * DT_PINCTRL_IDX_TO_NAME_TOKEN(node_id, pc_idx). The only difference
  137. * is that alphabetical characters in the result are uppercased.
  138. *
  139. * Example devicetree fragment:
  140. *
  141. * n: node {
  142. * pinctrl-0 = <...>;
  143. * pinctrl-1 = <...>;
  144. * pinctrl-names = "default", "f.o.o2";
  145. * };
  146. *
  147. * Example usage:
  148. *
  149. * DT_PINCTRL_IDX_TO_NAME_TOKEN(DT_NODELABEL(n), 0) // DEFAULT
  150. * DT_PINCTRL_IDX_TO_NAME_TOKEN(DT_NODELABEL(n), 1) // F_O_O2
  151. *
  152. * The same caveats and restrictions that apply to
  153. * DT_STRING_UPPER_TOKEN()'s return value also apply here.
  154. */
  155. #define DT_PINCTRL_IDX_TO_NAME_UPPER_TOKEN(node_id, pc_idx) \
  156. DT_CAT4(node_id, _PINCTRL_IDX_, pc_idx, _UPPER_TOKEN)
  157. /**
  158. * @brief Get the number of phandles in a pinctrl property
  159. *
  160. * Example devicetree fragment:
  161. *
  162. * n1: node-1 {
  163. * pinctrl-0 = <&foo &bar>;
  164. * };
  165. *
  166. * n2: node-2 {
  167. * pinctrl-0 = <&baz>;
  168. * };
  169. *
  170. * Example usage:
  171. *
  172. * DT_NUM_PINCTRLS_BY_IDX(DT_NODELABEL(n1), 0) // 2
  173. * DT_NUM_PINCTRLS_BY_IDX(DT_NODELABEL(n2), 0) // 1
  174. *
  175. * @param node_id node identifier with a pinctrl property
  176. * @param pc_idx index of the pinctrl property itself
  177. * @return number of phandles in the property with that index
  178. */
  179. #define DT_NUM_PINCTRLS_BY_IDX(node_id, pc_idx) \
  180. DT_CAT4(node_id, _P_pinctrl_, pc_idx, _LEN)
  181. /**
  182. * @brief Like DT_NUM_PINCTRLS_BY_IDX(), but by name instead
  183. *
  184. * Example devicetree fragment:
  185. *
  186. * n: node {
  187. * pinctrl-0 = <&foo &bar>;
  188. * pinctrl-1 = <&baz>
  189. * pinctrl-names = "default", "sleep";
  190. * };
  191. *
  192. * Example usage:
  193. *
  194. * DT_NUM_PINCTRLS_BY_NAME(DT_NODELABEL(n), default) // 2
  195. * DT_NUM_PINCTRLS_BY_NAME(DT_NODELABEL(n), sleep) // 1
  196. *
  197. * @param node_id node identifier with a pinctrl property
  198. * @param name lowercase-and-underscores name name of the pinctrl property
  199. * @return number of phandles in the property with that name
  200. */
  201. #define DT_NUM_PINCTRLS_BY_NAME(node_id, name) \
  202. DT_NUM_PINCTRLS_BY_IDX(node_id, DT_PINCTRL_NAME_TO_IDX(node_id, name))
  203. /**
  204. * @brief Get the number of pinctrl properties in a node
  205. *
  206. * This expands to 0 if there are no pinctrl-i properties.
  207. * Otherwise, it expands to the number of such properties.
  208. *
  209. * Example devicetree fragment:
  210. *
  211. * n1: node-1 {
  212. * pinctrl-0 = <...>;
  213. * pinctrl-1 = <...>;
  214. * };
  215. *
  216. * n2: node-2 {
  217. * };
  218. *
  219. * Example usage:
  220. *
  221. * DT_NUM_PINCTRL_STATES(DT_NODELABEL(n1)) // 2
  222. * DT_NUM_PINCTRL_STATES(DT_NODELABEL(n2)) // 0
  223. *
  224. * @param node_id node identifier; may or may not have any pinctrl properties
  225. * @return number of pinctrl properties in the node
  226. */
  227. #define DT_NUM_PINCTRL_STATES(node_id) DT_CAT(node_id, _PINCTRL_NUM)
  228. /**
  229. * @brief Test if a node has a pinctrl property with an index
  230. *
  231. * This expands to 1 if the pinctrl-'idx' property exists.
  232. * Otherwise, it expands to 0.
  233. *
  234. * Example devicetree fragment:
  235. *
  236. * n1: node-1 {
  237. * pinctrl-0 = <...>;
  238. * pinctrl-1 = <...>;
  239. * };
  240. *
  241. * n2: node-2 {
  242. * };
  243. *
  244. * Example usage:
  245. *
  246. * DT_PINCTRL_HAS_IDX(DT_NODELABEL(n1), 0) // 1
  247. * DT_PINCTRL_HAS_IDX(DT_NODELABEL(n1), 1) // 1
  248. * DT_PINCTRL_HAS_IDX(DT_NODELABEL(n1), 2) // 0
  249. * DT_PINCTRL_HAS_IDX(DT_NODELABEL(n2), 0) // 0
  250. *
  251. * @param node_id node identifier; may or may not have any pinctrl properties
  252. * @param pc_idx index of a pinctrl property whose existence to check
  253. * @return 1 if the property exists, 0 otherwise
  254. */
  255. #define DT_PINCTRL_HAS_IDX(node_id, pc_idx) \
  256. IS_ENABLED(DT_CAT4(node_id, _PINCTRL_IDX_, pc_idx, _EXISTS))
  257. /**
  258. * @brief Test if a node has a pinctrl property with a name
  259. *
  260. * This expands to 1 if the named pinctrl property exists.
  261. * Otherwise, it expands to 0.
  262. *
  263. * Example devicetree fragment:
  264. *
  265. * n1: node-1 {
  266. * pinctrl-0 = <...>;
  267. * pinctrl-names = "default";
  268. * };
  269. *
  270. * n2: node-2 {
  271. * };
  272. *
  273. * Example usage:
  274. *
  275. * DT_PINCTRL_HAS_NAME(DT_NODELABEL(n1), default) // 1
  276. * DT_PINCTRL_HAS_NAME(DT_NODELABEL(n1), sleep) // 0
  277. * DT_PINCTRL_HAS_NAME(DT_NODELABEL(n2), default) // 0
  278. *
  279. * @param node_id node identifier; may or may not have any pinctrl properties
  280. * @param name lowercase-and-underscores pinctrl property name to check
  281. * @return 1 if the property exists, 0 otherwise
  282. */
  283. #define DT_PINCTRL_HAS_NAME(node_id, name) \
  284. IS_ENABLED(DT_CAT4(node_id, _PINCTRL_NAME_, name, _EXISTS))
  285. /**
  286. * @brief Get a node identifier for a phandle in a pinctrl property by index
  287. * for a DT_DRV_COMPAT instance
  288. *
  289. * This is equivalent to DT_PINCTRL_BY_IDX(DT_DRV_INST(inst), pc_idx, idx).
  290. *
  291. * @param inst instance number
  292. * @param pc_idx index of the pinctrl property itself
  293. * @param idx index into the value of the pinctrl property
  294. * @return node identifier for the phandle at index 'idx' in 'pinctrl-'pc_idx''
  295. */
  296. #define DT_INST_PINCTRL_BY_IDX(inst, pc_idx, idx) \
  297. DT_PINCTRL_BY_IDX(DT_DRV_INST(inst), pc_idx, idx)
  298. /**
  299. * @brief Get a node identifier from a pinctrl-0 property for a
  300. * DT_DRV_COMPAT instance
  301. *
  302. * This is equivalent to:
  303. *
  304. * DT_PINCTRL_BY_IDX(DT_DRV_INST(inst), 0, idx)
  305. *
  306. * It is provided for convenience since pinctrl-0 is commonly used.
  307. *
  308. * @param inst instance number
  309. * @param idx index into the pinctrl-0 property
  310. * @return node identifier for the phandle at index idx in the pinctrl-0
  311. * property of that instance
  312. */
  313. #define DT_INST_PINCTRL_0(inst, idx) \
  314. DT_PINCTRL_BY_IDX(DT_DRV_INST(inst), 0, idx)
  315. /**
  316. * @brief Get a node identifier for a phandle inside a pinctrl node
  317. * for a DT_DRV_COMPAT instance
  318. *
  319. * This is equivalent to DT_PINCTRL_BY_NAME(DT_DRV_INST(inst), name, idx).
  320. *
  321. * @param inst instance number
  322. * @param name lowercase-and-underscores pinctrl property name
  323. * @param idx index into the value of the named pinctrl property
  324. * @return node identifier for the phandle at that index in the pinctrl
  325. * property
  326. */
  327. #define DT_INST_PINCTRL_BY_NAME(inst, name, idx) \
  328. DT_PINCTRL_BY_NAME(DT_DRV_INST(inst), name, idx)
  329. /**
  330. * @brief Convert a pinctrl name to its corresponding index
  331. * for a DT_DRV_COMPAT instance
  332. *
  333. * This is equivalent to DT_PINCTRL_NAME_TO_IDX(DT_DRV_INST(inst),
  334. * name).
  335. *
  336. * @param inst instance number
  337. * @param name lowercase-and-underscores name of the pinctrl whose index to get
  338. * @return integer literal for the index of the pinctrl property with that name
  339. */
  340. #define DT_INST_PINCTRL_NAME_TO_IDX(inst, name) \
  341. DT_PINCTRL_NAME_TO_IDX(DT_DRV_INST(inst), name)
  342. /**
  343. * @brief Convert a pinctrl index to its name as an uppercased token
  344. *
  345. * This is equivalent to
  346. * DT_PINCTRL_IDX_TO_NAME_TOKEN(DT_DRV_INST(inst), pc_idx).
  347. *
  348. * @param inst instance number
  349. * @param pc_idx index of the pinctrl property itself
  350. * @return name of the pin control property as a token
  351. */
  352. #define DT_INST_PINCTRL_IDX_TO_NAME_TOKEN(inst, pc_idx) \
  353. DT_PINCTRL_IDX_TO_NAME_TOKEN(DT_DRV_INST(inst), pc_idx)
  354. /**
  355. * @brief Convert a pinctrl index to its name as an uppercased token
  356. *
  357. * This is equivalent to
  358. * DT_PINCTRL_IDX_TO_NAME_UPPER_TOKEN(DT_DRV_INST(inst), idx).
  359. *
  360. * @param inst instance number
  361. * @param pc_idx index of the pinctrl property itself
  362. * @return name of the pin control property as an uppercase token
  363. */
  364. #define DT_INST_PINCTRL_IDX_TO_NAME_UPPER_TOKEN(inst, pc_idx) \
  365. DT_PINCTRL_IDX_TO_NAME_UPPER_TOKEN(DT_DRV_INST(inst), pc_idx)
  366. /**
  367. * @brief Get the number of phandles in a pinctrl property
  368. * for a DT_DRV_COMPAT instance
  369. *
  370. * This is equivalent to DT_NUM_PINCTRLS_BY_IDX(DT_DRV_INST(inst),
  371. * pc_idx).
  372. *
  373. * @param inst instance number
  374. * @param pc_idx index of the pinctrl property itself
  375. * @return number of phandles in the property with that index
  376. */
  377. #define DT_INST_NUM_PINCTRLS_BY_IDX(inst, pc_idx) \
  378. DT_NUM_PINCTRLS_BY_IDX(DT_DRV_INST(inst), pc_idx)
  379. /**
  380. * @brief Like DT_INST_NUM_PINCTRLS_BY_IDX(), but by name instead
  381. *
  382. * This is equivalent to DT_NUM_PINCTRLS_BY_NAME(DT_DRV_INST(inst),
  383. * name).
  384. *
  385. * @param inst instance number
  386. * @param name lowercase-and-underscores name of the pinctrl property
  387. * @return number of phandles in the property with that name
  388. */
  389. #define DT_INST_NUM_PINCTRLS_BY_NAME(inst, name) \
  390. DT_NUM_PINCTRLS_BY_NAME(DT_DRV_INST(inst), name)
  391. /**
  392. * @brief Get the number of pinctrl properties in a DT_DRV_COMPAT instance
  393. *
  394. * This is equivalent to DT_NUM_PINCTRL_STATES(DT_DRV_INST(inst)).
  395. *
  396. * @param inst instance number
  397. * @return number of pinctrl properties in the instance
  398. */
  399. #define DT_INST_NUM_PINCTRL_STATES(inst) \
  400. DT_NUM_PINCTRL_STATES(DT_DRV_INST(inst))
  401. /**
  402. * @brief Test if a DT_DRV_COMPAT instance has a pinctrl property
  403. * with an index
  404. *
  405. * This is equivalent to DT_PINCTRL_HAS_IDX(DT_DRV_INST(inst), pc_idx).
  406. *
  407. * @param inst instance number
  408. * @param pc_idx index of a pinctrl property whose existence to check
  409. * @return 1 if the property exists, 0 otherwise
  410. */
  411. #define DT_INST_PINCTRL_HAS_IDX(inst, pc_idx) \
  412. DT_PINCTRL_HAS_IDX(DT_DRV_INST(inst), pc_idx)
  413. /**
  414. * @brief Test if a DT_DRV_COMPAT instance has a pinctrl property with a name
  415. *
  416. * This is equivalent to DT_PINCTRL_HAS_NAME(DT_DRV_INST(inst), name).
  417. *
  418. * @param inst instance number
  419. * @param name lowercase-and-underscores pinctrl property name to check
  420. * @return 1 if the property exists, 0 otherwise
  421. */
  422. #define DT_INST_PINCTRL_HAS_NAME(inst, name) \
  423. DT_PINCTRL_HAS_NAME(DT_DRV_INST(inst), name)
  424. /**
  425. * @}
  426. */
  427. #endif /* ZEPHYR_INCLUDE_DEVICETREE_PINCTRL_H_ */