dev_spi.h 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671
  1. /*
  2. * Copyright (c) 2006-2025 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. * 2025-10-30 wdfk-prog enable interrupt-safe operations using spinlocks
  12. */
  13. #ifndef __DEV_SPI_H__
  14. #define __DEV_SPI_H__
  15. #include <stdlib.h>
  16. #include <rtthread.h>
  17. #include <drivers/dev_pin.h>
  18. #include <drivers/core/driver.h>
  19. /**
  20. * @defgroup group_drivers_spi SPI
  21. * @brief SPI driver api
  22. * @ingroup group_device_driver
  23. *
  24. * <b>Example</b>
  25. * @code {.c}
  26. * #include <rtthread.h>
  27. * #include <rtdevice.h>
  28. *
  29. * #define W25Q_SPI_DEVICE_NAME "qspi10"
  30. *
  31. * static void spi_w25q_sample(int argc, char *argv[])
  32. * {
  33. * struct rt_spi_device *spi_dev_w25q;
  34. * char name[RT_NAME_MAX];
  35. * rt_uint8_t w25x_read_id = 0x90;
  36. * rt_uint8_t id[5] = {0};
  37. *
  38. * if (argc == 2)
  39. * {
  40. * rt_strncpy(name, argv[1], RT_NAME_MAX);
  41. * }
  42. * else
  43. * {
  44. * rt_strncpy(name, W25Q_SPI_DEVICE_NAME, RT_NAME_MAX);
  45. * }
  46. *
  47. * // 查找 spi 设备获取设备句柄
  48. * spi_dev_w25q = (struct rt_spi_device *)rt_device_find(name);
  49. * if (!spi_dev_w25q)
  50. * {
  51. * rt_kprintf("spi sample run failed! can't find %s device!\n", name);
  52. * }
  53. * else
  54. * {
  55. * // 方式1:使用 rt_spi_send_then_recv()发送命令读取ID
  56. * rt_spi_send_then_recv(spi_dev_w25q, &w25x_read_id, 1, id, 5);
  57. * rt_kprintf("use rt_spi_send_then_recv() read w25q ID is:%x%x\n", id[3], id[4]);
  58. *
  59. * // 方式2:使用 rt_spi_transfer_message()发送命令读取ID
  60. * struct rt_spi_message msg1, msg2;
  61. *
  62. * msg1.send_buf = &w25x_read_id;
  63. * msg1.recv_buf = RT_NULL;
  64. * msg1.length = 1;
  65. * msg1.cs_take = 1;
  66. * msg1.cs_release = 0;
  67. * msg1.next = &msg2;
  68. *
  69. * msg2.send_buf = RT_NULL;
  70. * msg2.recv_buf = id;
  71. * msg2.length = 5;
  72. * msg2.cs_take = 0;
  73. * msg2.cs_release = 1;
  74. * msg2.next = RT_NULL;
  75. *
  76. * rt_spi_transfer_message(spi_dev_w25q, &msg1);
  77. * rt_kprintf("use rt_spi_transfer_message() read w25q ID is:%x%x\n", id[3], id[4]);
  78. *
  79. * }
  80. * }
  81. * // 导出到 msh 命令列表中
  82. * MSH_CMD_EXPORT(spi_w25q_sample, spi w25q sample);
  83. * @endcode
  84. */
  85. /*!
  86. * @addtogroup group_drivers_spi
  87. * @{
  88. */
  89. #ifdef __cplusplus
  90. extern "C"{
  91. #endif
  92. /**
  93. * At CPOL=0 the base value of the clock is zero
  94. * - For CPHA=0, data are captured on the clock's rising edge (low->high transition)
  95. * and data are propagated on a falling edge (high->low clock transition).
  96. * - For CPHA=1, data are captured on the clock's falling edge and data are
  97. * propagated on a rising edge.
  98. * At CPOL=1 the base value of the clock is one (inversion of CPOL=0)
  99. * - For CPHA=0, data are captured on clock's falling edge and data are propagated
  100. * on a rising edge.
  101. * - For CPHA=1, data are captured on clock's rising edge and data are propagated
  102. * on a falling edge.
  103. */
  104. #define RT_SPI_CPHA (1<<0) /*!< bit[0]:CPHA, clock phase */
  105. #define RT_SPI_CPOL (1<<1) /*!< bit[1]:CPOL, clock polarity */
  106. #define RT_SPI_LSB (0<<2) /*!< bit[2]: 0-LSB */
  107. #define RT_SPI_MSB (1<<2) /*!< bit[2]: 1-MSB */
  108. #define RT_SPI_MASTER (0<<3) /*!< SPI master device */
  109. #define RT_SPI_SLAVE (1<<3) /*!< SPI slave device */
  110. #define RT_SPI_CS_HIGH (1<<4) /*!< Chipselect active high */
  111. #define RT_SPI_NO_CS (1<<5) /*!< No chipselect */
  112. #define RT_SPI_3WIRE (1<<6) /*!< SI/SO pin shared */
  113. #define RT_SPI_READY (1<<7) /*!< Slave pulls low to pause */
  114. #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)
  115. #define RT_SPI_MODE_0 (0 | 0) /*!< CPOL = 0, CPHA = 0 */
  116. #define RT_SPI_MODE_1 (0 | RT_SPI_CPHA) /*!< CPOL = 0, CPHA = 1 */
  117. #define RT_SPI_MODE_2 (RT_SPI_CPOL | 0) /*!< CPOL = 1, CPHA = 0 */
  118. #define RT_SPI_MODE_3 (RT_SPI_CPOL | RT_SPI_CPHA) /*!< CPOL = 1, CPHA = 1 */
  119. #define RT_SPI_BUS_MODE_SPI (1<<0)
  120. #define RT_SPI_BUS_MODE_QSPI (1<<1)
  121. #define RT_SPI_CS_CNT_MAX 16
  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. #ifdef RT_USING_DM
  142. rt_uint8_t data_width_tx;
  143. rt_uint8_t data_width_rx;
  144. #else
  145. rt_uint16_t reserved;
  146. #endif
  147. rt_uint32_t max_hz;
  148. };
  149. struct rt_spi_ops;
  150. /**
  151. * @brief SPI bus structure
  152. */
  153. struct rt_spi_bus
  154. {
  155. struct rt_device parent;
  156. rt_uint8_t mode;
  157. const struct rt_spi_ops *ops;
  158. #ifdef RT_USING_DM
  159. rt_base_t cs_pins[RT_SPI_CS_CNT_MAX];
  160. rt_uint8_t cs_active_vals[RT_SPI_CS_CNT_MAX];
  161. rt_bool_t slave;
  162. int num_chipselect;
  163. #endif /* RT_USING_DM */
  164. struct rt_mutex lock;
  165. #ifdef RT_USING_SPI_ISR
  166. rt_base_t _isr_lvl;
  167. struct rt_spinlock _spinlock;
  168. #endif /* RT_USING_SPI_ISR */
  169. struct rt_spi_device *owner;
  170. };
  171. /**
  172. * @brief SPI operators
  173. */
  174. struct rt_spi_ops
  175. {
  176. rt_err_t (*configure)(struct rt_spi_device *device, struct rt_spi_configuration *configuration);
  177. rt_ssize_t (*xfer)(struct rt_spi_device *device, struct rt_spi_message *message);
  178. };
  179. #ifdef RT_USING_DM
  180. /**
  181. * @brief SPI delay info
  182. */
  183. struct rt_spi_delay
  184. {
  185. #define RT_SPI_DELAY_UNIT_USECS 0
  186. #define RT_SPI_DELAY_UNIT_NSECS 1
  187. #define RT_SPI_DELAY_UNIT_SCK 2
  188. rt_uint16_t value;
  189. rt_uint8_t unit;
  190. };
  191. #endif /* RT_USING_DM */
  192. /**
  193. * @brief SPI Virtual BUS, one device must connected to a virtual BUS
  194. */
  195. struct rt_spi_device
  196. {
  197. struct rt_device parent;
  198. struct rt_spi_bus *bus;
  199. #ifdef RT_USING_DM
  200. const char *name;
  201. const struct rt_spi_device_id *id;
  202. const struct rt_ofw_node_id *ofw_id;
  203. rt_uint8_t chip_select[RT_SPI_CS_CNT_MAX];
  204. struct rt_spi_delay cs_setup;
  205. struct rt_spi_delay cs_hold;
  206. struct rt_spi_delay cs_inactive;
  207. #endif
  208. struct rt_spi_configuration config;
  209. rt_base_t cs_pin;
  210. void *user_data;
  211. };
  212. /**
  213. * @brief QSPI message structure
  214. */
  215. struct rt_qspi_message
  216. {
  217. struct rt_spi_message parent;
  218. /* instruction stage */
  219. struct
  220. {
  221. rt_uint8_t content;
  222. rt_uint8_t qspi_lines;
  223. } instruction;
  224. /* address and alternate_bytes stage */
  225. struct
  226. {
  227. rt_uint32_t content;
  228. rt_uint8_t size;
  229. rt_uint8_t qspi_lines;
  230. } address, alternate_bytes;
  231. /* dummy_cycles stage */
  232. rt_uint32_t dummy_cycles;
  233. /* number of lines in qspi data stage, the other configuration items are in parent */
  234. rt_uint8_t qspi_data_lines;
  235. };
  236. /**
  237. * @brief QSPI configuration structure
  238. */
  239. struct rt_qspi_configuration
  240. {
  241. struct rt_spi_configuration parent;
  242. /* The size of medium */
  243. rt_uint32_t medium_size;
  244. /* double data rate mode */
  245. rt_uint8_t ddr_mode;
  246. /* the data lines max width which QSPI bus supported, such as 1, 2, 4 */
  247. rt_uint8_t qspi_dl_width ;
  248. };
  249. /**
  250. * @brief QSPI operators
  251. */
  252. struct rt_qspi_device
  253. {
  254. struct rt_spi_device parent;
  255. struct rt_qspi_configuration config;
  256. void (*enter_qspi_mode)(struct rt_qspi_device *device);
  257. void (*exit_qspi_mode)(struct rt_qspi_device *device);
  258. };
  259. #define SPI_DEVICE(dev) ((struct rt_spi_device *)(dev))
  260. #ifdef RT_USING_DM
  261. struct rt_spi_device_id
  262. {
  263. char name[20];
  264. void *data;
  265. };
  266. struct rt_spi_driver
  267. {
  268. struct rt_driver parent;
  269. const struct rt_spi_device_id *ids;
  270. const struct rt_ofw_node_id *ofw_ids;
  271. rt_err_t (*probe)(struct rt_spi_device *device);
  272. rt_err_t (*remove)(struct rt_spi_device *device);
  273. rt_err_t (*shutdown)(struct rt_spi_device *device);
  274. };
  275. rt_err_t rt_spi_driver_register(struct rt_spi_driver *driver);
  276. rt_err_t rt_spi_device_register(struct rt_spi_device *device);
  277. #define RT_SPI_DRIVER_EXPORT(driver) RT_DRIVER_EXPORT(driver, spi, BUILIN)
  278. rt_inline const void *rt_spi_device_id_data(struct rt_spi_device *device)
  279. {
  280. return device->id ? device->id->data : (device->ofw_id ? device->ofw_id->data : RT_NULL);
  281. }
  282. #endif /* RT_USING_DM */
  283. /**
  284. * @brief register a SPI bus
  285. *
  286. * @param bus the SPI bus
  287. * @param name the name of SPI bus
  288. * @param ops the operations of SPI bus
  289. *
  290. * @return rt_err_t error code
  291. */
  292. rt_err_t rt_spi_bus_register(struct rt_spi_bus *bus,
  293. const char *name,
  294. const struct rt_spi_ops *ops);
  295. /**
  296. * @brief attach a device on SPI bus
  297. *
  298. * @param device the SPI device
  299. * @param name the name of SPI device
  300. * @param bus_name the name of SPI bus
  301. * @param user_data the user data of SPI device
  302. *
  303. * @return rt_err_t error code
  304. */
  305. rt_err_t rt_spi_bus_attach_device(struct rt_spi_device *device,
  306. const char *name,
  307. const char *bus_name,
  308. void *user_data);
  309. /**
  310. * @brief Detach a device from the SPI bus.
  311. *
  312. * This function serves as the high-level API to detach a SPI device from its bus.
  313. * It unregisters the device from the device framework and ensures all associated
  314. * resources, such as the chip select pin, are properly released by calling
  315. * the underlying implementation.
  316. *
  317. * @param device The SPI device to be detached.
  318. *
  319. * @return rt_err_t The result of the operation. RT_EOK on success, otherwise an error code.
  320. */
  321. rt_err_t rt_spi_bus_detach_device(struct rt_spi_device *device);
  322. /**
  323. * @brief attach a device on SPI bus with CS pin
  324. *
  325. * @param device the SPI device
  326. * @param name the name of SPI device
  327. * @param bus_name the name of SPI bus
  328. * @param cs_pin the CS pin of SPI device
  329. * @param user_data the user data of SPI device
  330. *
  331. * @return rt_err_t error code
  332. */
  333. rt_err_t rt_spi_bus_attach_device_cspin(struct rt_spi_device *device,
  334. const char *name,
  335. const char *bus_name,
  336. rt_base_t cs_pin,
  337. void *user_data);
  338. /**
  339. * @brief Detach a device from the SPI bus and release its CS pin.
  340. *
  341. * This function provides the low-level implementation for detaching a device
  342. * from the SPI bus. It specifically handles the operations for the chip select (CS)
  343. * pin, resetting it to input mode to release it. This function is typically
  344. * called by the higher-level rt_spi_bus_detach_device() and should not be
  345. * called directly by the user application.
  346. *
  347. * @param device The SPI device to be detached.
  348. *
  349. * @return rt_err_t The result of the operation. RT_EOK on success, otherwise an error code.
  350. */
  351. rt_err_t rt_spi_bus_detach_device_cspin(struct rt_spi_device *device);
  352. /**
  353. * @brief Reconfigure the SPI bus for the specified device.
  354. *
  355. * @param device: Pointer to the SPI device attached to the SPI bus.
  356. * @retval RT_EOK if the SPI device was successfully released and the bus was configured.
  357. * RT_EBUSY if the SPI bus is currently in use; the new configuration will take effect once the device releases the bus.
  358. * Other return values indicate failure to configure the SPI bus due to various reasons.
  359. * @note If the configuration of the SPI device has been updated and requires bus re-initialization,
  360. * call this function directly. This function will reconfigure the SPI bus for the specified device.
  361. * If this is the first time to initialize the SPI device, please call rt_spi_configure or rt_qspi_configure.
  362. * This function is used to reconfigure the SPI bus when the SPI device is already in use.
  363. * For further details, refer to:
  364. * https://github.com/RT-Thread/rt-thread/pull/8528
  365. */
  366. rt_err_t rt_spi_bus_configure(struct rt_spi_device *device);
  367. /**
  368. * @brief This function takes SPI bus.
  369. *
  370. * @param device the SPI device attached to SPI bus
  371. *
  372. * @return RT_EOK on taken SPI bus successfully. others on taken SPI bus failed.
  373. */
  374. rt_err_t rt_spi_take_bus(struct rt_spi_device *device);
  375. /**
  376. * @brief This function releases SPI bus.
  377. *
  378. * @param device the SPI device attached to SPI bus
  379. *
  380. * @return RT_EOK on release SPI bus successfully.
  381. */
  382. rt_err_t rt_spi_release_bus(struct rt_spi_device *device);
  383. /**
  384. * @brief This function take SPI device (takes CS of SPI device).
  385. *
  386. * @param device the SPI device attached to SPI bus
  387. *
  388. * @return RT_EOK on release SPI bus successfully. others on taken SPI bus failed.
  389. */
  390. rt_err_t rt_spi_take(struct rt_spi_device *device);
  391. /**
  392. * @brief This function releases SPI device (releases CS of SPI device).
  393. *
  394. * @param device the SPI device attached to SPI bus
  395. *
  396. * @return RT_EOK on release SPI device successfully.
  397. */
  398. rt_err_t rt_spi_release(struct rt_spi_device *device);
  399. /**
  400. * @brief This function can set configuration on SPI device.
  401. *
  402. * @param device: the SPI device attached to SPI bus
  403. * @param cfg: the configuration pointer.
  404. *
  405. * @retval RT_EOK on release SPI device successfully.
  406. * RT_EBUSY is not an error condition and the configuration will take effect once the device has the bus
  407. * others on taken SPI bus failed.
  408. */
  409. rt_err_t rt_spi_configure(struct rt_spi_device *device,
  410. struct rt_spi_configuration *cfg);
  411. /**
  412. * @brief This function can send data then receive data from SPI device.
  413. *
  414. * @param device the SPI device attached to SPI bus
  415. * @param send_buf the buffer to be transmitted to SPI device.
  416. * @param send_length the number of data to be transmitted.
  417. * @param recv_buf the buffer to be recivied from SPI device.
  418. * @param recv_length the data to be recivied.
  419. *
  420. * @return rt_err_t error code
  421. */
  422. rt_err_t rt_spi_send_then_recv(struct rt_spi_device *device,
  423. const void *send_buf,
  424. rt_size_t send_length,
  425. void *recv_buf,
  426. rt_size_t recv_length);
  427. /**
  428. * @brief This function can send data then send data from SPI device.
  429. *
  430. * @param device the SPI device attached to SPI bus
  431. * @param send_buf1 the buffer to be transmitted to SPI device.
  432. * @param send_length1 the number of data to be transmitted.
  433. * @param send_buf2 the buffer to be transmitted to SPI device.
  434. * @param send_length2 the number of data to be transmitted.
  435. *
  436. * @return the status of transmit.
  437. */
  438. rt_err_t rt_spi_send_then_send(struct rt_spi_device *device,
  439. const void *send_buf1,
  440. rt_size_t send_length1,
  441. const void *send_buf2,
  442. rt_size_t send_length2);
  443. /**
  444. * @brief This function transmits data to SPI device.
  445. *
  446. * @param device the SPI device attached to SPI bus
  447. * @param send_buf the buffer to be transmitted to SPI device.
  448. * @param recv_buf the buffer to save received data from SPI device.
  449. * @param length the length of transmitted data.
  450. *
  451. * @return the actual length of transmitted.
  452. */
  453. rt_ssize_t rt_spi_transfer(struct rt_spi_device *device,
  454. const void *send_buf,
  455. void *recv_buf,
  456. rt_size_t length);
  457. /**
  458. * @brief The SPI device transmits 8 bytes of data
  459. *
  460. * @param device the SPI device attached to SPI bus
  461. * @param senddata send data buffer
  462. * @param recvdata receive data buffer
  463. *
  464. * @return rt_err_t error code
  465. */
  466. rt_err_t rt_spi_sendrecv8(struct rt_spi_device *device,
  467. rt_uint8_t senddata,
  468. rt_uint8_t *recvdata);
  469. /**
  470. * @brief The SPI device transmits 16 bytes of data
  471. *
  472. * @param device the SPI device attached to SPI bus
  473. * @param senddata send data buffer
  474. * @param recvdata receive data buffer
  475. *
  476. * @return rt_err_t error code
  477. */
  478. rt_err_t rt_spi_sendrecv16(struct rt_spi_device *device,
  479. rt_uint16_t senddata,
  480. rt_uint16_t *recvdata);
  481. /**
  482. * @brief This function transfers a message list to the SPI device.
  483. *
  484. * @param device the SPI device attached to SPI bus
  485. * @param message the message list to be transmitted to SPI device
  486. *
  487. * @return RT_NULL if transmits message list successfully,
  488. * SPI message which be transmitted failed.
  489. */
  490. struct rt_spi_message *rt_spi_transfer_message(struct rt_spi_device *device,
  491. struct rt_spi_message *message);
  492. /**
  493. * @brief This function receives data from SPI device.
  494. *
  495. * @param device the SPI device attached to SPI bus
  496. * @param recv_buf the buffer to be recivied from SPI device.
  497. * @param length the data to be recivied.
  498. *
  499. * @return the actual length of received.
  500. */
  501. rt_inline rt_size_t rt_spi_recv(struct rt_spi_device *device,
  502. void *recv_buf,
  503. rt_size_t length)
  504. {
  505. return rt_spi_transfer(device, RT_NULL, recv_buf, length);
  506. }
  507. /**
  508. * @brief This function sends data to SPI device.
  509. *
  510. * @param device the SPI device attached to SPI bus
  511. * @param send_buf the buffer to be transmitted to SPI device.
  512. * @param length the number of data to be transmitted.
  513. *
  514. * @return the actual length of send.
  515. */
  516. rt_inline rt_size_t rt_spi_send(struct rt_spi_device *device,
  517. const void *send_buf,
  518. rt_size_t length)
  519. {
  520. return rt_spi_transfer(device, send_buf, RT_NULL, length);
  521. }
  522. /**
  523. * @brief This function appends a message to the SPI message list.
  524. *
  525. * @param list the SPI message list header.
  526. * @param message the message pointer to be appended to the message list.
  527. */
  528. rt_inline void rt_spi_message_append(struct rt_spi_message *list,
  529. struct rt_spi_message *message)
  530. {
  531. RT_ASSERT(list != RT_NULL);
  532. if (message == RT_NULL)
  533. return; /* not append */
  534. while (list->next != RT_NULL)
  535. {
  536. list = list->next;
  537. }
  538. list->next = message;
  539. message->next = RT_NULL;
  540. }
  541. /**
  542. * @brief This function can set configuration on QSPI device.
  543. *
  544. * @param device the QSPI device attached to QSPI bus.
  545. * @param cfg the configuration pointer.
  546. *
  547. * @return the actual length of transmitted.
  548. */
  549. rt_err_t rt_qspi_configure(struct rt_qspi_device *device, struct rt_qspi_configuration *cfg);
  550. /**
  551. * @brief This function can register a SPI bus for QSPI mode.
  552. *
  553. * @param bus the SPI bus for QSPI mode.
  554. * @param name The name of the spi bus.
  555. * @param ops the SPI bus instance to be registered.
  556. *
  557. * @return the actual length of transmitted.
  558. */
  559. rt_err_t rt_qspi_bus_register(struct rt_spi_bus *bus, const char *name, const struct rt_spi_ops *ops);
  560. /**
  561. * @brief This function transmits data to QSPI device.
  562. *
  563. * @param device the QSPI device attached to QSPI bus.
  564. * @param message the message pointer.
  565. *
  566. * @return the actual length of transmitted.
  567. */
  568. rt_ssize_t rt_qspi_transfer_message(struct rt_qspi_device *device, struct rt_qspi_message *message);
  569. /**
  570. * @brief This function can send data then receive data from QSPI device
  571. *
  572. * @param device the QSPI device attached to QSPI bus.
  573. * @param send_buf the buffer to be transmitted to QSPI device.
  574. * @param send_length the number of data to be transmitted.
  575. * @param recv_buf the buffer to be recivied from QSPI device.
  576. * @param recv_length the data to be recivied.
  577. *
  578. * @return the status of transmit.
  579. */
  580. rt_ssize_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);
  581. /**
  582. * @brief This function can send data to QSPI device
  583. *
  584. * @param device the QSPI device attached to QSPI bus.
  585. * @param send_buf the buffer to be transmitted to QSPI device.
  586. * @param length the number of data to be transmitted.
  587. *
  588. * @return the status of transmit.
  589. */
  590. rt_ssize_t rt_qspi_send(struct rt_qspi_device *device, const void *send_buf, rt_size_t length);
  591. #ifdef __cplusplus
  592. }
  593. #endif
  594. /*! @}*/
  595. #endif