dev_spi.h 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633
  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. #include <drivers/core/driver.h>
  18. /**
  19. * @defgroup group_SPI SPI
  20. * @brief SPI driver api
  21. * @ingroup group_device_driver
  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. /*!
  85. * @addtogroup group_SPI
  86. * @{
  87. */
  88. #ifdef __cplusplus
  89. extern "C"{
  90. #endif
  91. /**
  92. * At CPOL=0 the base value of the clock is zero
  93. * - For CPHA=0, data are captured on the clock's rising edge (low->high transition)
  94. * and data are propagated on a falling edge (high->low clock transition).
  95. * - For CPHA=1, data are captured on the clock's falling edge and data are
  96. * propagated on a rising edge.
  97. * At CPOL=1 the base value of the clock is one (inversion of CPOL=0)
  98. * - For CPHA=0, data are captured on clock's falling edge and data are propagated
  99. * on a rising edge.
  100. * - For CPHA=1, data are captured on clock's rising edge and data are propagated
  101. * on a falling edge.
  102. */
  103. #define RT_SPI_CPHA (1<<0) /*!< bit[0]:CPHA, clock phase */
  104. #define RT_SPI_CPOL (1<<1) /*!< bit[1]:CPOL, clock polarity */
  105. #define RT_SPI_LSB (0<<2) /*!< bit[2]: 0-LSB */
  106. #define RT_SPI_MSB (1<<2) /*!< bit[2]: 1-MSB */
  107. #define RT_SPI_MASTER (0<<3) /*!< SPI master device */
  108. #define RT_SPI_SLAVE (1<<3) /*!< SPI slave device */
  109. #define RT_SPI_CS_HIGH (1<<4) /*!< Chipselect active high */
  110. #define RT_SPI_NO_CS (1<<5) /*!< No chipselect */
  111. #define RT_SPI_3WIRE (1<<6) /*!< SI/SO pin shared */
  112. #define RT_SPI_READY (1<<7) /*!< Slave pulls low to pause */
  113. #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)
  114. #define RT_SPI_MODE_0 (0 | 0) /*!< CPOL = 0, CPHA = 0 */
  115. #define RT_SPI_MODE_1 (0 | RT_SPI_CPHA) /*!< CPOL = 0, CPHA = 1 */
  116. #define RT_SPI_MODE_2 (RT_SPI_CPOL | 0) /*!< CPOL = 1, CPHA = 0 */
  117. #define RT_SPI_MODE_3 (RT_SPI_CPOL | RT_SPI_CPHA) /*!< CPOL = 1, CPHA = 1 */
  118. #define RT_SPI_BUS_MODE_SPI (1<<0)
  119. #define RT_SPI_BUS_MODE_QSPI (1<<1)
  120. #define RT_SPI_CS_CNT_MAX 16
  121. /**
  122. * @brief SPI message structure
  123. */
  124. struct rt_spi_message
  125. {
  126. const void *send_buf;
  127. void *recv_buf;
  128. rt_size_t length;
  129. struct rt_spi_message *next;
  130. unsigned cs_take : 1;
  131. unsigned cs_release : 1;
  132. };
  133. /**
  134. * @brief SPI configuration structure
  135. */
  136. struct rt_spi_configuration
  137. {
  138. rt_uint8_t mode;
  139. rt_uint8_t data_width;
  140. #ifdef RT_USING_DM
  141. rt_uint8_t data_width_tx;
  142. rt_uint8_t data_width_rx;
  143. #else
  144. rt_uint16_t reserved;
  145. #endif
  146. rt_uint32_t max_hz;
  147. };
  148. struct rt_spi_ops;
  149. /**
  150. * @brief SPI bus structure
  151. */
  152. struct rt_spi_bus
  153. {
  154. struct rt_device parent;
  155. rt_uint8_t mode;
  156. const struct rt_spi_ops *ops;
  157. #ifdef RT_USING_DM
  158. rt_base_t cs_pins[RT_SPI_CS_CNT_MAX];
  159. rt_uint8_t cs_active_vals[RT_SPI_CS_CNT_MAX];
  160. rt_bool_t slave;
  161. int num_chipselect;
  162. #endif /* RT_USING_DM */
  163. struct rt_mutex lock;
  164. struct rt_spi_device *owner;
  165. };
  166. /**
  167. * @brief SPI operators
  168. */
  169. struct rt_spi_ops
  170. {
  171. rt_err_t (*configure)(struct rt_spi_device *device, struct rt_spi_configuration *configuration);
  172. rt_ssize_t (*xfer)(struct rt_spi_device *device, struct rt_spi_message *message);
  173. };
  174. #ifdef RT_USING_DM
  175. /**
  176. * @brief SPI delay info
  177. */
  178. struct rt_spi_delay
  179. {
  180. #define RT_SPI_DELAY_UNIT_USECS 0
  181. #define RT_SPI_DELAY_UNIT_NSECS 1
  182. #define RT_SPI_DELAY_UNIT_SCK 2
  183. rt_uint16_t value;
  184. rt_uint8_t unit;
  185. };
  186. #endif /* RT_USING_DM */
  187. /**
  188. * @brief SPI Virtual BUS, one device must connected to a virtual BUS
  189. */
  190. struct rt_spi_device
  191. {
  192. struct rt_device parent;
  193. struct rt_spi_bus *bus;
  194. #ifdef RT_USING_DM
  195. const char *name;
  196. const struct rt_spi_device_id *id;
  197. const struct rt_ofw_node_id *ofw_id;
  198. rt_uint8_t chip_select[RT_SPI_CS_CNT_MAX];
  199. struct rt_spi_delay cs_setup;
  200. struct rt_spi_delay cs_hold;
  201. struct rt_spi_delay cs_inactive;
  202. #endif
  203. struct rt_spi_configuration config;
  204. rt_base_t cs_pin;
  205. void *user_data;
  206. };
  207. /**
  208. * @brief QSPI message structure
  209. */
  210. struct rt_qspi_message
  211. {
  212. struct rt_spi_message parent;
  213. /* instruction stage */
  214. struct
  215. {
  216. rt_uint8_t content;
  217. rt_uint8_t qspi_lines;
  218. } instruction;
  219. /* address and alternate_bytes stage */
  220. struct
  221. {
  222. rt_uint32_t content;
  223. rt_uint8_t size;
  224. rt_uint8_t qspi_lines;
  225. } address, alternate_bytes;
  226. /* dummy_cycles stage */
  227. rt_uint32_t dummy_cycles;
  228. /* number of lines in qspi data stage, the other configuration items are in parent */
  229. rt_uint8_t qspi_data_lines;
  230. };
  231. /**
  232. * @brief QSPI configuration structure
  233. */
  234. struct rt_qspi_configuration
  235. {
  236. struct rt_spi_configuration parent;
  237. /* The size of medium */
  238. rt_uint32_t medium_size;
  239. /* double data rate mode */
  240. rt_uint8_t ddr_mode;
  241. /* the data lines max width which QSPI bus supported, such as 1, 2, 4 */
  242. rt_uint8_t qspi_dl_width ;
  243. };
  244. /**
  245. * @brief QSPI operators
  246. */
  247. struct rt_qspi_device
  248. {
  249. struct rt_spi_device parent;
  250. struct rt_qspi_configuration config;
  251. void (*enter_qspi_mode)(struct rt_qspi_device *device);
  252. void (*exit_qspi_mode)(struct rt_qspi_device *device);
  253. };
  254. #define SPI_DEVICE(dev) ((struct rt_spi_device *)(dev))
  255. #ifdef RT_USING_DM
  256. struct rt_spi_device_id
  257. {
  258. char name[20];
  259. void *data;
  260. };
  261. struct rt_spi_driver
  262. {
  263. struct rt_driver parent;
  264. const struct rt_spi_device_id *ids;
  265. const struct rt_ofw_node_id *ofw_ids;
  266. rt_err_t (*probe)(struct rt_spi_device *device);
  267. rt_err_t (*remove)(struct rt_spi_device *device);
  268. rt_err_t (*shutdown)(struct rt_spi_device *device);
  269. };
  270. rt_err_t rt_spi_driver_register(struct rt_spi_driver *driver);
  271. rt_err_t rt_spi_device_register(struct rt_spi_device *device);
  272. #define RT_SPI_DRIVER_EXPORT(driver) RT_DRIVER_EXPORT(driver, spi, BUILIN)
  273. #endif /* RT_USING_DM */
  274. /**
  275. * @brief register a SPI bus
  276. *
  277. * @param bus the SPI bus
  278. * @param name the name of SPI bus
  279. * @param ops the operations of SPI bus
  280. *
  281. * @return rt_err_t error code
  282. */
  283. rt_err_t rt_spi_bus_register(struct rt_spi_bus *bus,
  284. const char *name,
  285. const struct rt_spi_ops *ops);
  286. /**
  287. * @brief attach a device on SPI bus
  288. *
  289. * @param device the SPI device
  290. * @param name the name of SPI device
  291. * @param bus_name the name of SPI bus
  292. * @param user_data the user data of SPI device
  293. *
  294. * @return rt_err_t error code
  295. */
  296. rt_err_t rt_spi_bus_attach_device(struct rt_spi_device *device,
  297. const char *name,
  298. const char *bus_name,
  299. void *user_data);
  300. /**
  301. * @brief attach a device on SPI bus with CS pin
  302. *
  303. * @param device the SPI device
  304. * @param name the name of SPI device
  305. * @param bus_name the name of SPI bus
  306. * @param cs_pin the CS pin of SPI device
  307. * @param user_data the user data of SPI device
  308. *
  309. * @return rt_err_t error code
  310. */
  311. rt_err_t rt_spi_bus_attach_device_cspin(struct rt_spi_device *device,
  312. const char *name,
  313. const char *bus_name,
  314. rt_base_t cs_pin,
  315. void *user_data);
  316. /**
  317. * @brief Reconfigure the SPI bus for the specified device.
  318. *
  319. * @param device: Pointer to the SPI device attached to the SPI bus.
  320. * @retval RT_EOK if the SPI device was successfully released and the bus was configured.
  321. * RT_EBUSY if the SPI bus is currently in use; the new configuration will take effect once the device releases the bus.
  322. * Other return values indicate failure to configure the SPI bus due to various reasons.
  323. * @note If the configuration of the SPI device has been updated and requires bus re-initialization,
  324. * call this function directly. This function will reconfigure the SPI bus for the specified device.
  325. * If this is the first time to initialize the SPI device, please call rt_spi_configure or rt_qspi_configure.
  326. * This function is used to reconfigure the SPI bus when the SPI device is already in use.
  327. * For further details, refer to:
  328. * https://github.com/RT-Thread/rt-thread/pull/8528
  329. */
  330. rt_err_t rt_spi_bus_configure(struct rt_spi_device *device);
  331. /**
  332. * @brief This function takes SPI bus.
  333. *
  334. * @param device the SPI device attached to SPI bus
  335. *
  336. * @return RT_EOK on taken SPI bus successfully. others on taken SPI bus failed.
  337. */
  338. rt_err_t rt_spi_take_bus(struct rt_spi_device *device);
  339. /**
  340. * @brief This function releases SPI bus.
  341. *
  342. * @param device the SPI device attached to SPI bus
  343. *
  344. * @return RT_EOK on release SPI bus successfully.
  345. */
  346. rt_err_t rt_spi_release_bus(struct rt_spi_device *device);
  347. /**
  348. * @brief This function take SPI device (takes CS of SPI device).
  349. *
  350. * @param device the SPI device attached to SPI bus
  351. *
  352. * @return RT_EOK on release SPI bus successfully. others on taken SPI bus failed.
  353. */
  354. rt_err_t rt_spi_take(struct rt_spi_device *device);
  355. /**
  356. * @brief This function releases SPI device (releases CS of SPI device).
  357. *
  358. * @param device the SPI device attached to SPI bus
  359. *
  360. * @return RT_EOK on release SPI device successfully.
  361. */
  362. rt_err_t rt_spi_release(struct rt_spi_device *device);
  363. /**
  364. * @brief This function can set configuration on SPI device.
  365. *
  366. * @param device: the SPI device attached to SPI bus
  367. * @param cfg: the configuration pointer.
  368. *
  369. * @retval RT_EOK on release SPI device successfully.
  370. * RT_EBUSY is not an error condition and the configuration will take effect once the device has the bus
  371. * others on taken SPI bus failed.
  372. */
  373. rt_err_t rt_spi_configure(struct rt_spi_device *device,
  374. struct rt_spi_configuration *cfg);
  375. /**
  376. * @brief This function can send data then receive data from SPI device.
  377. *
  378. * @param device the SPI device attached to SPI bus
  379. * @param send_buf the buffer to be transmitted to SPI device.
  380. * @param send_length the number of data to be transmitted.
  381. * @param recv_buf the buffer to be recivied from SPI device.
  382. * @param recv_length the data to be recivied.
  383. *
  384. * @return rt_err_t error code
  385. */
  386. rt_err_t rt_spi_send_then_recv(struct rt_spi_device *device,
  387. const void *send_buf,
  388. rt_size_t send_length,
  389. void *recv_buf,
  390. rt_size_t recv_length);
  391. /**
  392. * @brief This function can send data then send data from SPI device.
  393. *
  394. * @param device the SPI device attached to SPI bus
  395. * @param send_buf1 the buffer to be transmitted to SPI device.
  396. * @param send_length1 the number of data to be transmitted.
  397. * @param send_buf2 the buffer to be transmitted to SPI device.
  398. * @param send_length2 the number of data to be transmitted.
  399. *
  400. * @return the status of transmit.
  401. */
  402. rt_err_t rt_spi_send_then_send(struct rt_spi_device *device,
  403. const void *send_buf1,
  404. rt_size_t send_length1,
  405. const void *send_buf2,
  406. rt_size_t send_length2);
  407. /**
  408. * @brief This function transmits data to SPI device.
  409. *
  410. * @param device the SPI device attached to SPI bus
  411. * @param send_buf the buffer to be transmitted to SPI device.
  412. * @param recv_buf the buffer to save received data from SPI device.
  413. * @param length the length of transmitted data.
  414. *
  415. * @return the actual length of transmitted.
  416. */
  417. rt_ssize_t rt_spi_transfer(struct rt_spi_device *device,
  418. const void *send_buf,
  419. void *recv_buf,
  420. rt_size_t length);
  421. /**
  422. * @brief The SPI device transmits 8 bytes of data
  423. *
  424. * @param device the SPI device attached to SPI bus
  425. * @param senddata send data buffer
  426. * @param recvdata receive data buffer
  427. *
  428. * @return rt_err_t error code
  429. */
  430. rt_err_t rt_spi_sendrecv8(struct rt_spi_device *device,
  431. rt_uint8_t senddata,
  432. rt_uint8_t *recvdata);
  433. /**
  434. * @brief The SPI device transmits 16 bytes of data
  435. *
  436. * @param device the SPI device attached to SPI bus
  437. * @param senddata send data buffer
  438. * @param recvdata receive data buffer
  439. *
  440. * @return rt_err_t error code
  441. */
  442. rt_err_t rt_spi_sendrecv16(struct rt_spi_device *device,
  443. rt_uint16_t senddata,
  444. rt_uint16_t *recvdata);
  445. /**
  446. * @brief This function transfers a message list to the SPI device.
  447. *
  448. * @param device the SPI device attached to SPI bus
  449. * @param message the message list to be transmitted to SPI device
  450. *
  451. * @return RT_NULL if transmits message list successfully,
  452. * SPI message which be transmitted failed.
  453. */
  454. struct rt_spi_message *rt_spi_transfer_message(struct rt_spi_device *device,
  455. struct rt_spi_message *message);
  456. /**
  457. * @brief This function receives data from SPI device.
  458. *
  459. * @param device the SPI device attached to SPI bus
  460. * @param recv_buf the buffer to be recivied from SPI device.
  461. * @param length the data to be recivied.
  462. *
  463. * @return the actual length of received.
  464. */
  465. rt_inline rt_size_t rt_spi_recv(struct rt_spi_device *device,
  466. void *recv_buf,
  467. rt_size_t length)
  468. {
  469. return rt_spi_transfer(device, RT_NULL, recv_buf, length);
  470. }
  471. /**
  472. * @brief This function sends data to SPI device.
  473. *
  474. * @param device the SPI device attached to SPI bus
  475. * @param send_buf the buffer to be transmitted to SPI device.
  476. * @param length the number of data to be transmitted.
  477. *
  478. * @return the actual length of send.
  479. */
  480. rt_inline rt_size_t rt_spi_send(struct rt_spi_device *device,
  481. const void *send_buf,
  482. rt_size_t length)
  483. {
  484. return rt_spi_transfer(device, send_buf, RT_NULL, length);
  485. }
  486. /**
  487. * @brief This function appends a message to the SPI message list.
  488. *
  489. * @param list the SPI message list header.
  490. * @param message the message pointer to be appended to the message list.
  491. */
  492. rt_inline void rt_spi_message_append(struct rt_spi_message *list,
  493. struct rt_spi_message *message)
  494. {
  495. RT_ASSERT(list != RT_NULL);
  496. if (message == RT_NULL)
  497. return; /* not append */
  498. while (list->next != RT_NULL)
  499. {
  500. list = list->next;
  501. }
  502. list->next = message;
  503. message->next = RT_NULL;
  504. }
  505. /**
  506. * @brief This function can set configuration on QSPI device.
  507. *
  508. * @param device the QSPI device attached to QSPI bus.
  509. * @param cfg the configuration pointer.
  510. *
  511. * @return the actual length of transmitted.
  512. */
  513. rt_err_t rt_qspi_configure(struct rt_qspi_device *device, struct rt_qspi_configuration *cfg);
  514. /**
  515. * @brief This function can register a SPI bus for QSPI mode.
  516. *
  517. * @param bus the SPI bus for QSPI mode.
  518. * @param name The name of the spi bus.
  519. * @param ops the SPI bus instance to be registered.
  520. *
  521. * @return the actual length of transmitted.
  522. */
  523. rt_err_t rt_qspi_bus_register(struct rt_spi_bus *bus, const char *name, const struct rt_spi_ops *ops);
  524. /**
  525. * @brief This function transmits data to QSPI device.
  526. *
  527. * @param device the QSPI device attached to QSPI bus.
  528. * @param message the message pointer.
  529. *
  530. * @return the actual length of transmitted.
  531. */
  532. rt_size_t rt_qspi_transfer_message(struct rt_qspi_device *device, struct rt_qspi_message *message);
  533. /**
  534. * @brief This function can send data then receive data from QSPI device
  535. *
  536. * @param device the QSPI device attached to QSPI bus.
  537. * @param send_buf the buffer to be transmitted to QSPI device.
  538. * @param send_length the number of data to be transmitted.
  539. * @param recv_buf the buffer to be recivied from QSPI device.
  540. * @param recv_length the data to be recivied.
  541. *
  542. * @return the status of transmit.
  543. */
  544. 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);
  545. /**
  546. * @brief This function can send data to QSPI device
  547. *
  548. * @param device the QSPI device attached to QSPI bus.
  549. * @param send_buf the buffer to be transmitted to QSPI device.
  550. * @param length the number of data to be transmitted.
  551. *
  552. * @return the status of transmit.
  553. */
  554. rt_err_t rt_qspi_send(struct rt_qspi_device *device, const void *send_buf, rt_size_t length);
  555. #ifdef __cplusplus
  556. }
  557. #endif
  558. /*! @}*/
  559. #endif