spi.h 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309
  1. /**
  2. * @file
  3. * @brief SPI Devicetree macro public API header file.
  4. */
  5. /*
  6. * Copyright (c) 2020 Nordic Semiconductor
  7. *
  8. * SPDX-License-Identifier: Apache-2.0
  9. */
  10. #ifndef ZEPHYR_INCLUDE_DEVICETREE_SPI_H_
  11. #define ZEPHYR_INCLUDE_DEVICETREE_SPI_H_
  12. #ifdef __cplusplus
  13. extern "C" {
  14. #endif
  15. /**
  16. * @defgroup devicetree-spi Devicetree SPI API
  17. * @ingroup devicetree
  18. * @{
  19. */
  20. /**
  21. * @brief Does a SPI controller node have chip select GPIOs configured?
  22. *
  23. * SPI bus controllers use the "cs-gpios" property for configuring
  24. * chip select GPIOs. Its value is a phandle-array which specifies the
  25. * chip select lines.
  26. *
  27. * Example devicetree fragment:
  28. *
  29. * spi1: spi@... {
  30. * compatible = "vnd,spi";
  31. * cs-gpios = <&gpio1 10 GPIO_ACTIVE_LOW>,
  32. * <&gpio2 20 GPIO_ACTIVE_LOW>;
  33. * };
  34. *
  35. * spi2: spi@... {
  36. * compatible = "vnd,spi";
  37. * };
  38. *
  39. * Example usage:
  40. *
  41. * DT_SPI_HAS_CS_GPIOS(DT_NODELABEL(spi1)) // 1
  42. * DT_SPI_HAS_CS_GPIOS(DT_NODELABEL(spi2)) // 0
  43. *
  44. * @param spi a SPI bus controller node identifier
  45. * @return 1 if "spi" has a cs-gpios property, 0 otherwise
  46. */
  47. #define DT_SPI_HAS_CS_GPIOS(spi) DT_NODE_HAS_PROP(spi, cs_gpios)
  48. /**
  49. * @brief Number of chip select GPIOs in a SPI controller's cs-gpios property
  50. *
  51. * Example devicetree fragment:
  52. *
  53. * spi1: spi@... {
  54. * compatible = "vnd,spi";
  55. * cs-gpios = <&gpio1 10 GPIO_ACTIVE_LOW>,
  56. * <&gpio2 20 GPIO_ACTIVE_LOW>;
  57. * };
  58. *
  59. * spi2: spi@... {
  60. * compatible = "vnd,spi";
  61. * };
  62. *
  63. * Example usage:
  64. *
  65. * DT_SPI_NUM_CS_GPIOS(DT_NODELABEL(spi1)) // 2
  66. * DT_SPI_NUM_CS_GPIOS(DT_NODELABEL(spi2)) // 0
  67. *
  68. * @param spi a SPI bus controller node identifier
  69. * @return Logical length of spi's cs-gpios property, or 0 if "spi" doesn't
  70. * have a cs-gpios property
  71. */
  72. #define DT_SPI_NUM_CS_GPIOS(spi) \
  73. COND_CODE_1(DT_SPI_HAS_CS_GPIOS(spi), \
  74. (DT_PROP_LEN(spi, cs_gpios)), (0))
  75. /**
  76. * @brief Does a SPI device have a chip select line configured?
  77. * Example devicetree fragment:
  78. *
  79. * spi1: spi@... {
  80. * compatible = "vnd,spi";
  81. * cs-gpios = <&gpio1 10 GPIO_ACTIVE_LOW>,
  82. * <&gpio2 20 GPIO_ACTIVE_LOW>;
  83. *
  84. * a: spi-dev-a@0 {
  85. * reg = <0>;
  86. * };
  87. *
  88. * b: spi-dev-b@1 {
  89. * reg = <1>;
  90. * };
  91. * };
  92. *
  93. * spi2: spi@... {
  94. * compatible = "vnd,spi";
  95. * c: spi-dev-c@0 {
  96. * reg = <0>;
  97. * };
  98. * };
  99. *
  100. * Example usage:
  101. *
  102. * DT_SPI_DEV_HAS_CS_GPIOS(DT_NODELABEL(a)) // 1
  103. * DT_SPI_DEV_HAS_CS_GPIOS(DT_NODELABEL(b)) // 1
  104. * DT_SPI_DEV_HAS_CS_GPIOS(DT_NODELABEL(c)) // 0
  105. *
  106. * @param spi_dev a SPI device node identifier
  107. * @return 1 if spi_dev's bus node DT_BUS(spi_dev) has a chip select
  108. * pin at index DT_REG_ADDR(spi_dev), 0 otherwise
  109. */
  110. #define DT_SPI_DEV_HAS_CS_GPIOS(spi_dev) DT_SPI_HAS_CS_GPIOS(DT_BUS(spi_dev))
  111. /**
  112. * @brief Get a SPI device's chip select GPIO controller's node identifier
  113. *
  114. * Example devicetree fragment:
  115. *
  116. * gpio1: gpio@... { ... };
  117. *
  118. * gpio2: gpio@... { ... };
  119. *
  120. * spi@... {
  121. * compatible = "vnd,spi";
  122. * cs-gpios = <&gpio1 10 GPIO_ACTIVE_LOW>,
  123. * <&gpio2 20 GPIO_ACTIVE_LOW>;
  124. *
  125. * a: spi-dev-a@0 {
  126. * reg = <0>;
  127. * };
  128. *
  129. * b: spi-dev-b@1 {
  130. * reg = <1>;
  131. * };
  132. * };
  133. *
  134. * Example usage:
  135. *
  136. * DT_SPI_DEV_CS_GPIOS_CTLR(DT_NODELABEL(a)) // DT_NODELABEL(gpio1)
  137. * DT_SPI_DEV_CS_GPIOS_CTLR(DT_NODELABEL(b)) // DT_NODELABEL(gpio2)
  138. *
  139. * @param spi_dev a SPI device node identifier
  140. * @return node identifier for spi_dev's chip select GPIO controller
  141. */
  142. #define DT_SPI_DEV_CS_GPIOS_CTLR(spi_dev) \
  143. DT_GPIO_CTLR_BY_IDX(DT_BUS(spi_dev), cs_gpios, DT_REG_ADDR(spi_dev))
  144. /**
  145. * @brief Get a SPI device's chip select GPIO controller's label property
  146. *
  147. * Example devicetree fragment:
  148. *
  149. * gpio1: gpio@... {
  150. * label = "GPIO_1";
  151. * };
  152. *
  153. * gpio2: gpio@... {
  154. * label = "GPIO_2";
  155. * };
  156. *
  157. * spi1: spi@... {
  158. * compatible = "vnd,spi";
  159. * cs-gpios = <&gpio1 10 GPIO_ACTIVE_LOW>,
  160. * <&gpio2 20 GPIO_ACTIVE_LOW>;
  161. *
  162. * a: spi-dev-a@0 {
  163. * reg = <0>;
  164. * };
  165. *
  166. * b: spi-dev-b@1 {
  167. * reg = <1>;
  168. * };
  169. * };
  170. *
  171. * Example usage:
  172. *
  173. * DT_SPI_DEV_CS_GPIOS_LABEL(DT_NODELABEL(a)) // "GPIO_1"
  174. * DT_SPI_DEV_CS_GPIOS_LABEL(DT_NODELABEL(b)) // "GPIO_2"
  175. *
  176. * @param spi_dev a SPI device node identifier
  177. * @return label property of spi_dev's chip select GPIO controller
  178. */
  179. #define DT_SPI_DEV_CS_GPIOS_LABEL(spi_dev) \
  180. DT_GPIO_LABEL_BY_IDX(DT_BUS(spi_dev), cs_gpios, DT_REG_ADDR(spi_dev))
  181. /**
  182. * @brief Get a SPI device's chip select GPIO pin number
  183. *
  184. * It's an error if the GPIO specifier for spi_dev's entry in its
  185. * bus node's cs-gpios property has no pin cell.
  186. *
  187. * Example devicetree fragment:
  188. *
  189. * spi1: spi@... {
  190. * compatible = "vnd,spi";
  191. * cs-gpios = <&gpio1 10 GPIO_ACTIVE_LOW>,
  192. * <&gpio2 20 GPIO_ACTIVE_LOW>;
  193. *
  194. * a: spi-dev-a@0 {
  195. * reg = <0>;
  196. * };
  197. *
  198. * b: spi-dev-b@1 {
  199. * reg = <1>;
  200. * };
  201. * };
  202. *
  203. * Example usage:
  204. *
  205. * DT_SPI_DEV_CS_GPIOS_PIN(DT_NODELABEL(a)) // 10
  206. * DT_SPI_DEV_CS_GPIOS_PIN(DT_NODELABEL(b)) // 20
  207. *
  208. * @param spi_dev a SPI device node identifier
  209. * @return pin number of spi_dev's chip select GPIO
  210. */
  211. #define DT_SPI_DEV_CS_GPIOS_PIN(spi_dev) \
  212. DT_GPIO_PIN_BY_IDX(DT_BUS(spi_dev), cs_gpios, DT_REG_ADDR(spi_dev))
  213. /**
  214. * @brief Get a SPI device's chip select GPIO flags
  215. *
  216. * Example devicetree fragment:
  217. *
  218. * spi1: spi@... {
  219. * compatible = "vnd,spi";
  220. * cs-gpios = <&gpio1 10 GPIO_ACTIVE_LOW>;
  221. *
  222. * a: spi-dev-a@0 {
  223. * reg = <0>;
  224. * };
  225. * };
  226. *
  227. * Example usage:
  228. *
  229. * DT_SPI_DEV_CS_GPIOS_FLAGS(DT_NODELABEL(a)) // GPIO_ACTIVE_LOW
  230. *
  231. * If the GPIO specifier for spi_dev's entry in its bus node's
  232. * cs-gpios property has no flags cell, this expands to zero.
  233. *
  234. * @param spi_dev a SPI device node identifier
  235. * @return flags value of spi_dev's chip select GPIO specifier, or
  236. * zero if there is none
  237. */
  238. #define DT_SPI_DEV_CS_GPIOS_FLAGS(spi_dev) \
  239. DT_GPIO_FLAGS_BY_IDX(DT_BUS(spi_dev), cs_gpios, DT_REG_ADDR(spi_dev))
  240. /**
  241. * @brief Equivalent to DT_SPI_DEV_HAS_CS_GPIOS(DT_DRV_INST(inst)).
  242. * @param inst DT_DRV_COMPAT instance number
  243. * @return 1 if the instance's bus has a CS pin at index
  244. * DT_INST_REG_ADDR(inst), 0 otherwise
  245. * @see DT_SPI_DEV_HAS_CS_GPIOS()
  246. */
  247. #define DT_INST_SPI_DEV_HAS_CS_GPIOS(inst) \
  248. DT_SPI_DEV_HAS_CS_GPIOS(DT_DRV_INST(inst))
  249. /**
  250. * @brief Get GPIO controller node identifier for a SPI device instance
  251. * This is equivalent to DT_SPI_DEV_CS_GPIOS_CTLR(DT_DRV_INST(inst)).
  252. * @param inst DT_DRV_COMPAT instance number
  253. * @return node identifier for instance's chip select GPIO controller
  254. * @see DT_SPI_DEV_CS_GPIOS_CTLR()
  255. */
  256. #define DT_INST_SPI_DEV_CS_GPIOS_CTLR(inst) \
  257. DT_SPI_DEV_CS_GPIOS_CTLR(DT_DRV_INST(inst))
  258. /**
  259. * @brief Get GPIO controller name for a SPI device instance
  260. * This is equivalent to DT_SPI_DEV_CS_GPIOS_LABEL(DT_DRV_INST(inst)).
  261. * @param inst DT_DRV_COMPAT instance number
  262. * @return label property of the instance's chip select GPIO controller
  263. * @see DT_SPI_DEV_CS_GPIOS_LABEL()
  264. */
  265. #define DT_INST_SPI_DEV_CS_GPIOS_LABEL(inst) \
  266. DT_SPI_DEV_CS_GPIOS_LABEL(DT_DRV_INST(inst))
  267. /**
  268. * @brief Equivalent to DT_SPI_DEV_CS_GPIOS_PIN(DT_DRV_INST(inst)).
  269. * @param inst DT_DRV_COMPAT instance number
  270. * @return pin number of the instance's chip select GPIO
  271. * @see DT_SPI_DEV_CS_GPIOS_PIN()
  272. */
  273. #define DT_INST_SPI_DEV_CS_GPIOS_PIN(inst) \
  274. DT_SPI_DEV_CS_GPIOS_PIN(DT_DRV_INST(inst))
  275. /**
  276. * @brief DT_SPI_DEV_CS_GPIOS_FLAGS(DT_DRV_INST(inst)).
  277. * @param inst DT_DRV_COMPAT instance number
  278. * @return flags value of the instance's chip select GPIO specifier,
  279. * or zero if there is none
  280. * @see DT_SPI_DEV_CS_GPIOS_FLAGS()
  281. */
  282. #define DT_INST_SPI_DEV_CS_GPIOS_FLAGS(inst) \
  283. DT_SPI_DEV_CS_GPIOS_FLAGS(DT_DRV_INST(inst))
  284. /**
  285. * @}
  286. */
  287. #ifdef __cplusplus
  288. }
  289. #endif
  290. #endif /* ZEPHYR_INCLUDE_DEVICETREE_SPI_H_ */