dev_spi.h 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570
  1. /*
  2. * Copyright (c) 2006-2024 RT-Thread Development Team
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. *
  6. * Change Logs:
  7. * Date Author Notes
  8. * 2012-11-23 Bernard Add extern "C"
  9. * 2020-06-13 armink fix the 3 wires issue
  10. * 2022-09-01 liYony fix api rt_spi_sendrecv16 about MSB and LSB bug
  11. */
  12. #ifndef __DEV_SPI_H__
  13. #define __DEV_SPI_H__
  14. #include <stdlib.h>
  15. #include <rtthread.h>
  16. #include <drivers/dev_pin.h>
  17. /**
  18. * @addtogroup Drivers RTTHREAD Driver
  19. * @defgroup SPI SPI
  20. *
  21. * @brief SPI driver api
  22. *
  23. * <b>Example</b>
  24. * @code {.c}
  25. * #include <rtthread.h>
  26. * #include <rtdevice.h>
  27. *
  28. * #define W25Q_SPI_DEVICE_NAME "qspi10"
  29. *
  30. * static void spi_w25q_sample(int argc, char *argv[])
  31. * {
  32. * struct rt_spi_device *spi_dev_w25q;
  33. * char name[RT_NAME_MAX];
  34. * rt_uint8_t w25x_read_id = 0x90;
  35. * rt_uint8_t id[5] = {0};
  36. *
  37. * if (argc == 2)
  38. * {
  39. * rt_strncpy(name, argv[1], RT_NAME_MAX);
  40. * }
  41. * else
  42. * {
  43. * rt_strncpy(name, W25Q_SPI_DEVICE_NAME, RT_NAME_MAX);
  44. * }
  45. *
  46. * // 查找 spi 设备获取设备句柄
  47. * spi_dev_w25q = (struct rt_spi_device *)rt_device_find(name);
  48. * if (!spi_dev_w25q)
  49. * {
  50. * rt_kprintf("spi sample run failed! can't find %s device!\n", name);
  51. * }
  52. * else
  53. * {
  54. * // 方式1:使用 rt_spi_send_then_recv()发送命令读取ID
  55. * rt_spi_send_then_recv(spi_dev_w25q, &w25x_read_id, 1, id, 5);
  56. * rt_kprintf("use rt_spi_send_then_recv() read w25q ID is:%x%x\n", id[3], id[4]);
  57. *
  58. * // 方式2:使用 rt_spi_transfer_message()发送命令读取ID
  59. * struct rt_spi_message msg1, msg2;
  60. *
  61. * msg1.send_buf = &w25x_read_id;
  62. * msg1.recv_buf = RT_NULL;
  63. * msg1.length = 1;
  64. * msg1.cs_take = 1;
  65. * msg1.cs_release = 0;
  66. * msg1.next = &msg2;
  67. *
  68. * msg2.send_buf = RT_NULL;
  69. * msg2.recv_buf = id;
  70. * msg2.length = 5;
  71. * msg2.cs_take = 0;
  72. * msg2.cs_release = 1;
  73. * msg2.next = RT_NULL;
  74. *
  75. * rt_spi_transfer_message(spi_dev_w25q, &msg1);
  76. * rt_kprintf("use rt_spi_transfer_message() read w25q ID is:%x%x\n", id[3], id[4]);
  77. *
  78. * }
  79. * }
  80. * // 导出到 msh 命令列表中
  81. * MSH_CMD_EXPORT(spi_w25q_sample, spi w25q sample);
  82. * @endcode
  83. *
  84. * @ingroup Drivers
  85. */
  86. /*!
  87. * @addtogroup SPI
  88. * @{
  89. */
  90. #ifdef __cplusplus
  91. extern "C"{
  92. #endif
  93. /**
  94. * At CPOL=0 the base value of the clock is zero
  95. * - For CPHA=0, data are captured on the clock's rising edge (low->high transition)
  96. * and data are propagated on a falling edge (high->low clock transition).
  97. * - For CPHA=1, data are captured on the clock's falling edge and data are
  98. * propagated on a rising edge.
  99. * At CPOL=1 the base value of the clock is one (inversion of CPOL=0)
  100. * - For CPHA=0, data are captured on clock's falling edge and data are propagated
  101. * on a rising edge.
  102. * - For CPHA=1, data are captured on clock's rising edge and data are propagated
  103. * on a falling edge.
  104. */
  105. #define RT_SPI_CPHA (1<<0) /*!< bit[0]:CPHA, clock phase */
  106. #define RT_SPI_CPOL (1<<1) /*!< bit[1]:CPOL, clock polarity */
  107. #define RT_SPI_LSB (0<<2) /*!< bit[2]: 0-LSB */
  108. #define RT_SPI_MSB (1<<2) /*!< bit[2]: 1-MSB */
  109. #define RT_SPI_MASTER (0<<3) /*!< SPI master device */
  110. #define RT_SPI_SLAVE (1<<3) /*!< SPI slave device */
  111. #define RT_SPI_CS_HIGH (1<<4) /*!< Chipselect active high */
  112. #define RT_SPI_NO_CS (1<<5) /*!< No chipselect */
  113. #define RT_SPI_3WIRE (1<<6) /*!< SI/SO pin shared */
  114. #define RT_SPI_READY (1<<7) /*!< Slave pulls low to pause */
  115. #define RT_SPI_MODE_MASK (RT_SPI_CPHA | RT_SPI_CPOL | RT_SPI_MSB | RT_SPI_SLAVE | RT_SPI_CS_HIGH | RT_SPI_NO_CS | RT_SPI_3WIRE | RT_SPI_READY)
  116. #define RT_SPI_MODE_0 (0 | 0) /*!< CPOL = 0, CPHA = 0 */
  117. #define RT_SPI_MODE_1 (0 | RT_SPI_CPHA) /*!< CPOL = 0, CPHA = 1 */
  118. #define RT_SPI_MODE_2 (RT_SPI_CPOL | 0) /*!< CPOL = 1, CPHA = 0 */
  119. #define RT_SPI_MODE_3 (RT_SPI_CPOL | RT_SPI_CPHA) /*!< CPOL = 1, CPHA = 1 */
  120. #define RT_SPI_BUS_MODE_SPI (1<<0)
  121. #define RT_SPI_BUS_MODE_QSPI (1<<1)
  122. /**
  123. * @brief SPI message structure
  124. */
  125. struct rt_spi_message
  126. {
  127. const void *send_buf;
  128. void *recv_buf;
  129. rt_size_t length;
  130. struct rt_spi_message *next;
  131. unsigned cs_take : 1;
  132. unsigned cs_release : 1;
  133. };
  134. /**
  135. * @brief SPI configuration structure
  136. */
  137. struct rt_spi_configuration
  138. {
  139. rt_uint8_t mode;
  140. rt_uint8_t data_width;
  141. rt_uint16_t reserved;
  142. rt_uint32_t max_hz;
  143. };
  144. struct rt_spi_ops;
  145. /**
  146. * @brief SPI bus structure
  147. */
  148. struct rt_spi_bus
  149. {
  150. struct rt_device parent;
  151. rt_uint8_t mode;
  152. const struct rt_spi_ops *ops;
  153. struct rt_mutex lock;
  154. struct rt_spi_device *owner;
  155. };
  156. /**
  157. * @brief SPI operators
  158. */
  159. struct rt_spi_ops
  160. {
  161. rt_err_t (*configure)(struct rt_spi_device *device, struct rt_spi_configuration *configuration);
  162. rt_ssize_t (*xfer)(struct rt_spi_device *device, struct rt_spi_message *message);
  163. };
  164. /**
  165. * @brief SPI Virtual BUS, one device must connected to a virtual BUS
  166. */
  167. struct rt_spi_device
  168. {
  169. struct rt_device parent;
  170. struct rt_spi_bus *bus;
  171. struct rt_spi_configuration config;
  172. rt_base_t cs_pin;
  173. void *user_data;
  174. };
  175. /**
  176. * @brief QSPI message structure
  177. */
  178. struct rt_qspi_message
  179. {
  180. struct rt_spi_message parent;
  181. /* instruction stage */
  182. struct
  183. {
  184. rt_uint8_t content;
  185. rt_uint8_t qspi_lines;
  186. } instruction;
  187. /* address and alternate_bytes stage */
  188. struct
  189. {
  190. rt_uint32_t content;
  191. rt_uint8_t size;
  192. rt_uint8_t qspi_lines;
  193. } address, alternate_bytes;
  194. /* dummy_cycles stage */
  195. rt_uint32_t dummy_cycles;
  196. /* number of lines in qspi data stage, the other configuration items are in parent */
  197. rt_uint8_t qspi_data_lines;
  198. };
  199. /**
  200. * @brief QSPI configuration structure
  201. */
  202. struct rt_qspi_configuration
  203. {
  204. struct rt_spi_configuration parent;
  205. /* The size of medium */
  206. rt_uint32_t medium_size;
  207. /* double data rate mode */
  208. rt_uint8_t ddr_mode;
  209. /* the data lines max width which QSPI bus supported, such as 1, 2, 4 */
  210. rt_uint8_t qspi_dl_width ;
  211. };
  212. /**
  213. * @brief QSPI operators
  214. */
  215. struct rt_qspi_device
  216. {
  217. struct rt_spi_device parent;
  218. struct rt_qspi_configuration config;
  219. void (*enter_qspi_mode)(struct rt_qspi_device *device);
  220. void (*exit_qspi_mode)(struct rt_qspi_device *device);
  221. };
  222. #define SPI_DEVICE(dev) ((struct rt_spi_device *)(dev))
  223. /**
  224. * @brief register a SPI bus
  225. *
  226. * @param bus the SPI bus
  227. * @param name the name of SPI bus
  228. * @param ops the operations of SPI bus
  229. *
  230. * @return rt_err_t error code
  231. */
  232. rt_err_t rt_spi_bus_register(struct rt_spi_bus *bus,
  233. const char *name,
  234. const struct rt_spi_ops *ops);
  235. /**
  236. * @brief attach a device on SPI bus
  237. *
  238. * @param device the SPI device
  239. * @param name the name of SPI device
  240. * @param bus_name the name of SPI bus
  241. * @param user_data the user data of SPI device
  242. *
  243. * @return rt_err_t error code
  244. */
  245. rt_err_t rt_spi_bus_attach_device(struct rt_spi_device *device,
  246. const char *name,
  247. const char *bus_name,
  248. void *user_data);
  249. /**
  250. * @brief attach a device on SPI bus with CS pin
  251. *
  252. * @param device the SPI device
  253. * @param name the name of SPI device
  254. * @param bus_name the name of SPI bus
  255. * @param cs_pin the CS pin of SPI device
  256. * @param user_data the user data of SPI device
  257. *
  258. * @return rt_err_t error code
  259. */
  260. rt_err_t rt_spi_bus_attach_device_cspin(struct rt_spi_device *device,
  261. const char *name,
  262. const char *bus_name,
  263. rt_base_t cs_pin,
  264. void *user_data);
  265. /**
  266. * @brief Reconfigure the SPI bus for the specified device.
  267. *
  268. * @param device: Pointer to the SPI device attached to the SPI bus.
  269. * @retval RT_EOK if the SPI device was successfully released and the bus was configured.
  270. * RT_EBUSY if the SPI bus is currently in use; the new configuration will take effect once the device releases the bus.
  271. * Other return values indicate failure to configure the SPI bus due to various reasons.
  272. * @note If the configuration of the SPI device has been updated and requires bus re-initialization,
  273. * call this function directly. This function will reconfigure the SPI bus for the specified device.
  274. * If this is the first time to initialize the SPI device, please call rt_spi_configure or rt_qspi_configure.
  275. * This function is used to reconfigure the SPI bus when the SPI device is already in use.
  276. * For further details, refer to:
  277. * https://github.com/RT-Thread/rt-thread/pull/8528
  278. */
  279. rt_err_t rt_spi_bus_configure(struct rt_spi_device *device);
  280. /**
  281. * @brief This function takes SPI bus.
  282. *
  283. * @param device the SPI device attached to SPI bus
  284. *
  285. * @return RT_EOK on taken SPI bus successfully. others on taken SPI bus failed.
  286. */
  287. rt_err_t rt_spi_take_bus(struct rt_spi_device *device);
  288. /**
  289. * @brief This function releases SPI bus.
  290. *
  291. * @param device the SPI device attached to SPI bus
  292. *
  293. * @return RT_EOK on release SPI bus successfully.
  294. */
  295. rt_err_t rt_spi_release_bus(struct rt_spi_device *device);
  296. /**
  297. * @brief This function take SPI device (takes CS of SPI device).
  298. *
  299. * @param device the SPI device attached to SPI bus
  300. *
  301. * @return RT_EOK on release SPI bus successfully. others on taken SPI bus failed.
  302. */
  303. rt_err_t rt_spi_take(struct rt_spi_device *device);
  304. /**
  305. * @brief This function releases SPI device (releases CS of SPI device).
  306. *
  307. * @param device the SPI device attached to SPI bus
  308. *
  309. * @return RT_EOK on release SPI device successfully.
  310. */
  311. rt_err_t rt_spi_release(struct rt_spi_device *device);
  312. /**
  313. * @brief This function can set configuration on SPI device.
  314. *
  315. * @param device: the SPI device attached to SPI bus
  316. * @param cfg: the configuration pointer.
  317. *
  318. * @retval RT_EOK on release SPI device successfully.
  319. * RT_EBUSY is not an error condition and the configuration will take effect once the device has the bus
  320. * others on taken SPI bus failed.
  321. */
  322. rt_err_t rt_spi_configure(struct rt_spi_device *device,
  323. struct rt_spi_configuration *cfg);
  324. /**
  325. * @brief This function can send data then receive data from SPI device.
  326. *
  327. * @param device the SPI device attached to SPI bus
  328. * @param send_buf the buffer to be transmitted to SPI device.
  329. * @param send_length the number of data to be transmitted.
  330. * @param recv_buf the buffer to be recivied from SPI device.
  331. * @param recv_length the data to be recivied.
  332. *
  333. * @return rt_err_t error code
  334. */
  335. rt_err_t rt_spi_send_then_recv(struct rt_spi_device *device,
  336. const void *send_buf,
  337. rt_size_t send_length,
  338. void *recv_buf,
  339. rt_size_t recv_length);
  340. /**
  341. * @brief This function can send data then send data from SPI device.
  342. *
  343. * @param device the SPI device attached to SPI bus
  344. * @param send_buf1 the buffer to be transmitted to SPI device.
  345. * @param send_length1 the number of data to be transmitted.
  346. * @param send_buf2 the buffer to be transmitted to SPI device.
  347. * @param send_length2 the number of data to be transmitted.
  348. *
  349. * @return the status of transmit.
  350. */
  351. rt_err_t rt_spi_send_then_send(struct rt_spi_device *device,
  352. const void *send_buf1,
  353. rt_size_t send_length1,
  354. const void *send_buf2,
  355. rt_size_t send_length2);
  356. /**
  357. * @brief This function transmits data to SPI device.
  358. *
  359. * @param device the SPI device attached to SPI bus
  360. * @param send_buf the buffer to be transmitted to SPI device.
  361. * @param recv_buf the buffer to save received data from SPI device.
  362. * @param length the length of transmitted data.
  363. *
  364. * @return the actual length of transmitted.
  365. */
  366. rt_ssize_t rt_spi_transfer(struct rt_spi_device *device,
  367. const void *send_buf,
  368. void *recv_buf,
  369. rt_size_t length);
  370. /**
  371. * @brief The SPI device transmits 8 bytes of data
  372. *
  373. * @param device the SPI device attached to SPI bus
  374. * @param senddata send data buffer
  375. * @param recvdata receive data buffer
  376. *
  377. * @return rt_err_t error code
  378. */
  379. rt_err_t rt_spi_sendrecv8(struct rt_spi_device *device,
  380. rt_uint8_t senddata,
  381. rt_uint8_t *recvdata);
  382. /**
  383. * @brief The SPI device transmits 16 bytes of data
  384. *
  385. * @param device the SPI device attached to SPI bus
  386. * @param senddata send data buffer
  387. * @param recvdata receive data buffer
  388. *
  389. * @return rt_err_t error code
  390. */
  391. rt_err_t rt_spi_sendrecv16(struct rt_spi_device *device,
  392. rt_uint16_t senddata,
  393. rt_uint16_t *recvdata);
  394. /**
  395. * @brief This function transfers a message list to the SPI device.
  396. *
  397. * @param device the SPI device attached to SPI bus
  398. * @param message the message list to be transmitted to SPI device
  399. *
  400. * @return RT_NULL if transmits message list successfully,
  401. * SPI message which be transmitted failed.
  402. */
  403. struct rt_spi_message *rt_spi_transfer_message(struct rt_spi_device *device,
  404. struct rt_spi_message *message);
  405. /**
  406. * @brief This function receives data from SPI device.
  407. *
  408. * @param device the SPI device attached to SPI bus
  409. * @param recv_buf the buffer to be recivied from SPI device.
  410. * @param length the data to be recivied.
  411. *
  412. * @return the actual length of received.
  413. */
  414. rt_inline rt_size_t rt_spi_recv(struct rt_spi_device *device,
  415. void *recv_buf,
  416. rt_size_t length)
  417. {
  418. return rt_spi_transfer(device, RT_NULL, recv_buf, length);
  419. }
  420. /**
  421. * @brief This function sends data to SPI device.
  422. *
  423. * @param device the SPI device attached to SPI bus
  424. * @param send_buf the buffer to be transmitted to SPI device.
  425. * @param length the number of data to be transmitted.
  426. *
  427. * @return the actual length of send.
  428. */
  429. rt_inline rt_size_t rt_spi_send(struct rt_spi_device *device,
  430. const void *send_buf,
  431. rt_size_t length)
  432. {
  433. return rt_spi_transfer(device, send_buf, RT_NULL, length);
  434. }
  435. /**
  436. * @brief This function appends a message to the SPI message list.
  437. *
  438. * @param list the SPI message list header.
  439. * @param message the message pointer to be appended to the message list.
  440. */
  441. rt_inline void rt_spi_message_append(struct rt_spi_message *list,
  442. struct rt_spi_message *message)
  443. {
  444. RT_ASSERT(list != RT_NULL);
  445. if (message == RT_NULL)
  446. return; /* not append */
  447. while (list->next != RT_NULL)
  448. {
  449. list = list->next;
  450. }
  451. list->next = message;
  452. message->next = RT_NULL;
  453. }
  454. /**
  455. * @brief This function can set configuration on QSPI device.
  456. *
  457. * @param device the QSPI device attached to QSPI bus.
  458. * @param cfg the configuration pointer.
  459. *
  460. * @return the actual length of transmitted.
  461. */
  462. rt_err_t rt_qspi_configure(struct rt_qspi_device *device, struct rt_qspi_configuration *cfg);
  463. /**
  464. * @brief This function can register a SPI bus for QSPI mode.
  465. *
  466. * @param bus the SPI bus for QSPI mode.
  467. * @param name The name of the spi bus.
  468. * @param ops the SPI bus instance to be registered.
  469. *
  470. * @return the actual length of transmitted.
  471. */
  472. rt_err_t rt_qspi_bus_register(struct rt_spi_bus *bus, const char *name, const struct rt_spi_ops *ops);
  473. /**
  474. * @brief This function transmits data to QSPI device.
  475. *
  476. * @param device the QSPI device attached to QSPI bus.
  477. * @param message the message pointer.
  478. *
  479. * @return the actual length of transmitted.
  480. */
  481. rt_size_t rt_qspi_transfer_message(struct rt_qspi_device *device, struct rt_qspi_message *message);
  482. /**
  483. * @brief This function can send data then receive data from QSPI device
  484. *
  485. * @param device the QSPI device attached to QSPI bus.
  486. * @param send_buf the buffer to be transmitted to QSPI device.
  487. * @param send_length the number of data to be transmitted.
  488. * @param recv_buf the buffer to be recivied from QSPI device.
  489. * @param recv_length the data to be recivied.
  490. *
  491. * @return the status of transmit.
  492. */
  493. rt_err_t rt_qspi_send_then_recv(struct rt_qspi_device *device, const void *send_buf, rt_size_t send_length,void *recv_buf, rt_size_t recv_length);
  494. /**
  495. * @brief This function can send data to QSPI device
  496. *
  497. * @param device the QSPI device attached to QSPI bus.
  498. * @param send_buf the buffer to be transmitted to QSPI device.
  499. * @param send_length the number of data to be transmitted.
  500. *
  501. * @return the status of transmit.
  502. */
  503. rt_err_t rt_qspi_send(struct rt_qspi_device *device, const void *send_buf, rt_size_t length);
  504. #ifdef __cplusplus
  505. }
  506. #endif
  507. /*! @}*/
  508. #endif