Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 

356 linhas
16 KiB

  1. // Copyright 2010-2016 Espressif Systems (Shanghai) PTE LTD
  2. //
  3. // Licensed under the Apache License, Version 2.0 (the "License");
  4. // you may not use this file except in compliance with the License.
  5. // You may obtain a copy of the License at
  6. // http://www.apache.org/licenses/LICENSE-2.0
  7. //
  8. // Unless required by applicable law or agreed to in writing, software
  9. // distributed under the License is distributed on an "AS IS" BASIS,
  10. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  11. // See the License for the specific language governing permissions and
  12. // limitations under the License.
  13. #ifndef _DRIVER_SPI_MASTER_LOBO_H_
  14. #define _DRIVER_SPI_MASTER_LOBO_H_
  15. #include "esp_err.h"
  16. #include "freertos/FreeRTOS.h"
  17. #include "freertos/semphr.h"
  18. #include "soc/spi_struct.h"
  19. #include "esp_intr.h"
  20. #include "esp_intr_alloc.h"
  21. #include "rom/lldesc.h"
  22. #ifdef __cplusplus
  23. extern "C"
  24. {
  25. #endif
  26. //Maximum amount of bytes that can be put in one DMA descriptor
  27. #define SPI_MAX_DMA_LEN (4096-4)
  28. /**
  29. * @brief Enum with the three SPI peripherals that are software-accessible in it
  30. */
  31. typedef enum {
  32. SPI_HOST=0, ///< SPI1, SPI; Cannot be used in this driver!
  33. HSPI_HOST=1, ///< SPI2, HSPI
  34. VSPI_HOST=2 ///< SPI3, VSPI
  35. } spi_lobo_host_device_t;
  36. /**
  37. * @brief This is a configuration structure for a SPI bus.
  38. *
  39. * You can use this structure to specify the GPIO pins of the bus. Normally, the driver will use the
  40. * GPIO matrix to route the signals. An exception is made when all signals either can be routed through
  41. * the IO_MUX or are -1. In that case, the IO_MUX is used, allowing for >40MHz speeds.
  42. */
  43. typedef struct {
  44. int mosi_io_num; ///< GPIO pin for Master Out Slave In (=spi_d) signal, or -1 if not used.
  45. int miso_io_num; ///< GPIO pin for Master In Slave Out (=spi_q) signal, or -1 if not used.
  46. int sclk_io_num; ///< GPIO pin for Spi CLocK signal, or -1 if not used.
  47. int quadwp_io_num; ///< GPIO pin for WP (Write Protect) signal which is used as D2 in 4-bit communication modes, or -1 if not used.
  48. int quadhd_io_num; ///< GPIO pin for HD (HolD) signal which is used as D3 in 4-bit communication modes, or -1 if not used.
  49. int max_transfer_sz; ///< Maximum transfer size, in bytes. Defaults to 4094 if 0.
  50. } spi_lobo_bus_config_t;
  51. #define SPI_DEVICE_TXBIT_LSBFIRST (1<<0) ///< Transmit command/address/data LSB first instead of the default MSB first
  52. #define SPI_DEVICE_RXBIT_LSBFIRST (1<<1) ///< Receive data LSB first instead of the default MSB first
  53. #define SPI_DEVICE_BIT_LSBFIRST (SPI_TXBIT_LSBFIRST|SPI_RXBIT_LSBFIRST); ///< Transmit and receive LSB first
  54. #define SPI_DEVICE_3WIRE (1<<2) ///< Use spiq for both sending and receiving data
  55. #define SPI_DEVICE_POSITIVE_CS (1<<3) ///< Make CS positive during a transaction instead of negative
  56. #define SPI_DEVICE_HALFDUPLEX (1<<4) ///< Transmit data before receiving it, instead of simultaneously
  57. #define SPI_DEVICE_CLK_AS_CS (1<<5) ///< Output clock on CS line if CS is active
  58. #define SPI_ERR_OTHER_CONFIG 7001
  59. typedef struct spi_lobo_transaction_t spi_lobo_transaction_t;
  60. typedef void(*transaction_cb_t)(spi_lobo_transaction_t *trans);
  61. /**
  62. * @brief This is a configuration for a SPI slave device that is connected to one of the SPI buses.
  63. */
  64. typedef struct {
  65. uint8_t command_bits; ///< Amount of bits in command phase (0-16)
  66. uint8_t address_bits; ///< Amount of bits in address phase (0-64)
  67. uint8_t dummy_bits; ///< Amount of dummy bits to insert between address and data phase
  68. uint8_t mode; ///< SPI mode (0-3)
  69. uint8_t duty_cycle_pos; ///< Duty cycle of positive clock, in 1/256th increments (128 = 50%/50% duty). Setting this to 0 (=not setting it) is equivalent to setting this to 128.
  70. uint8_t cs_ena_pretrans; ///< Amount of SPI bit-cycles the cs should be activated before the transmission (0-16). This only works on half-duplex transactions.
  71. uint8_t cs_ena_posttrans; ///< Amount of SPI bit-cycles the cs should stay active after the transmission (0-16)
  72. int clock_speed_hz; ///< Clock speed, in Hz
  73. int spics_io_num; ///< CS GPIO pin for this device, handled by hardware; set to -1 if not used
  74. int spics_ext_io_num; ///< CS GPIO pin for this device, handled by software (spi_lobo_device_select/spi_lobo_device_deselect); only used if spics_io_num=-1
  75. uint32_t flags; ///< Bitwise OR of SPI_DEVICE_* flags
  76. transaction_cb_t pre_cb; ///< Callback to be called before a transmission is started. This callback from 'spi_lobo_transfer_data' function.
  77. transaction_cb_t post_cb; ///< Callback to be called after a transmission has completed. This callback from 'spi_lobo_transfer_data' function.
  78. uint8_t selected; ///< **INTERNAL** 1 if the device's CS pin is active
  79. } spi_lobo_device_interface_config_t;
  80. #define SPI_TRANS_MODE_DIO (1<<0) ///< Transmit/receive data in 2-bit mode
  81. #define SPI_TRANS_MODE_QIO (1<<1) ///< Transmit/receive data in 4-bit mode
  82. #define SPI_TRANS_MODE_DIOQIO_ADDR (1<<2) ///< Also transmit address in mode selected by SPI_MODE_DIO/SPI_MODE_QIO
  83. #define SPI_TRANS_USE_RXDATA (1<<3) ///< Receive into rx_data member of spi_lobo_transaction_t instead into memory at rx_buffer.
  84. #define SPI_TRANS_USE_TXDATA (1<<4) ///< Transmit tx_data member of spi_lobo_transaction_t instead of data at tx_buffer. Do not set tx_buffer when using this.
  85. /**
  86. * This structure describes one SPI transmission
  87. */
  88. struct spi_lobo_transaction_t {
  89. uint32_t flags; ///< Bitwise OR of SPI_TRANS_* flags
  90. uint16_t command; ///< Command data. Specific length was given when device was added to the bus.
  91. uint64_t address; ///< Address. Specific length was given when device was added to the bus.
  92. size_t length; ///< Total data length to be transmitted to the device, in bits; if 0, no data is transmitted
  93. size_t rxlength; ///< Total data length to be received from the device, in bits; if 0, no data is received
  94. void *user; ///< User-defined variable. Can be used to store eg transaction ID or data to be used by pre_cb and/or post_cb callbacks.
  95. union {
  96. const void *tx_buffer; ///< Pointer to transmit buffer, or NULL for no MOSI phase
  97. uint8_t tx_data[4]; ///< If SPI_USE_TXDATA is set, data set here is sent directly from this variable.
  98. };
  99. union {
  100. void *rx_buffer; ///< Pointer to receive buffer, or NULL for no MISO phase
  101. uint8_t rx_data[4]; ///< If SPI_USE_RXDATA is set, data is received directly to this variable
  102. };
  103. };
  104. #define NO_CS 3 // Number of CS pins per SPI host
  105. #define NO_DEV 6 // Number of spi devices per SPI host; more than 3 devices can be attached to the same bus if using software CS's
  106. #define SPI_SEMAPHORE_WAIT 2000 // Time in ms to wait for SPI mutex
  107. typedef struct spi_lobo_device_t spi_lobo_device_t;
  108. typedef struct {
  109. spi_lobo_device_t *device[NO_DEV];
  110. intr_handle_t intr;
  111. spi_dev_t *hw;
  112. //spi_lobo_transaction_t *cur_trans;
  113. int cur_device;
  114. lldesc_t *dmadesc_tx;
  115. lldesc_t *dmadesc_rx;
  116. bool no_gpio_matrix;
  117. int dma_chan;
  118. int max_transfer_sz;
  119. QueueHandle_t spi_lobo_bus_mutex;
  120. spi_lobo_bus_config_t cur_bus_config;
  121. } spi_lobo_host_t;
  122. struct spi_lobo_device_t {
  123. spi_lobo_device_interface_config_t cfg;
  124. spi_lobo_host_t *host;
  125. spi_lobo_bus_config_t bus_config;
  126. spi_lobo_host_device_t host_dev;
  127. };
  128. typedef spi_lobo_device_t* spi_lobo_device_handle_t; ///< Handle for a device on a SPI bus
  129. typedef spi_lobo_host_t* spi_lobo_host_handle_t;
  130. typedef spi_lobo_device_interface_config_t* spi_lobo_device_interface_config_handle_t;
  131. /**
  132. * @brief Add a device. This allocates a CS line for the device, allocates memory for the device structure and hooks
  133. * up the CS pin to whatever is specified.
  134. *
  135. * This initializes the internal structures for a device, plus allocates a CS pin on the indicated SPI master
  136. * peripheral and routes it to the indicated GPIO. All SPI master devices have three hw CS pins and can thus control
  137. * up to three devices. Software handled CS pin can also be used for additional devices on the same SPI bus.
  138. *
  139. * ### If selected SPI host device bus is not yet initialized, it is initialized first with 'bus_config' function ###
  140. *
  141. * @note While in general, speeds up to 80MHz on the dedicated SPI pins and 40MHz on GPIO-matrix-routed pins are
  142. * supported, full-duplex transfers routed over the GPIO matrix only support speeds up to 26MHz.
  143. *
  144. * @param host SPI peripheral to allocate device on (HSPI or VSPI)
  145. * @param dev_config SPI interface protocol config for the device
  146. * @param bus_config Pointer to a spi_lobo_bus_config_t struct specifying how the host device bus should be initialized
  147. * @param handle Pointer to variable to hold the device handle
  148. * @return
  149. * - ESP_ERR_INVALID_ARG if parameter is invalid
  150. * - ESP_ERR_NOT_FOUND if host doesn't have any free CS slots
  151. * - ESP_ERR_NO_MEM if out of memory
  152. * - ESP_OK on success
  153. */
  154. esp_err_t spi_lobo_bus_add_device(spi_lobo_host_device_t host, spi_lobo_bus_config_t *bus_config, spi_lobo_device_interface_config_t *dev_config, spi_lobo_device_handle_t *handle);
  155. /**
  156. * @brief Remove a device from the SPI bus. If after removal no other device is attached to the spi bus device, it is freed.
  157. *
  158. * @param handle Device handle to free
  159. * @return
  160. * - ESP_ERR_INVALID_ARG if parameter is invalid
  161. * - ESP_ERR_INVALID_STATE if device already is freed
  162. * - ESP_OK on success
  163. */
  164. esp_err_t spi_lobo_bus_remove_device(spi_lobo_device_handle_t handle);
  165. /**
  166. * @brief Return the actuall SPI bus speed for the spi device in Hz
  167. *
  168. * Some frequencies cannot be set, for example 30000000 will actually set SPI clock to 26666666 Hz
  169. *
  170. * @param handle Device handle obtained using spi_lobo_bus_add_device
  171. *
  172. * @return
  173. * - actuall SPI clock
  174. */
  175. uint32_t spi_lobo_get_speed(spi_lobo_device_handle_t handle);
  176. /**
  177. * @brief Set the new clock speed for the device, return the actuall SPI bus speed set, in Hz
  178. * This function can be used after the device is initialized
  179. *
  180. * Some frequencies cannot be set, for example 30000000 will actually set SPI clock to 26666666 Hz
  181. *
  182. * @param handle Device handle obtained using spi_lobo_bus_add_device
  183. * @param speed New device spi clock to be set in Hz
  184. *
  185. * @return
  186. * - actuall SPI clock
  187. * - 0 if speed cannot be set
  188. */
  189. uint32_t spi_lobo_set_speed(spi_lobo_device_handle_t handle, uint32_t speed);
  190. /**
  191. * @brief Select spi device for transmission
  192. *
  193. * It configures spi bus with selected spi device parameters if previously selected device was different than the current
  194. * If device's spics_io_num=-1 and spics_ext_io_num > 0 'spics_ext_io_num' pin is set to active state (low)
  195. *
  196. * spi bus device's semaphore is taken before selecting the device
  197. *
  198. * @param handle Device handle obtained using spi_lobo_bus_add_device
  199. * @param force configure spi bus even if the previous device was the same
  200. *
  201. * @return
  202. * - ESP_ERR_INVALID_ARG if parameter is invalid
  203. * - ESP_OK on success
  204. */
  205. esp_err_t spi_lobo_device_select(spi_lobo_device_handle_t handle, int force);
  206. /**
  207. * @brief De-select spi device
  208. *
  209. * If device's spics_io_num=-1 and spics_ext_io_num > 0 'spics_ext_io_num' pin is set to inactive state (high)
  210. *
  211. * spi bus device's semaphore is given after selecting the device
  212. *
  213. * @param handle Device handle obtained using spi_lobo_bus_add_device
  214. *
  215. * @return
  216. * - ESP_ERR_INVALID_ARG if parameter is invalid
  217. * - ESP_OK on success
  218. */
  219. esp_err_t spi_lobo_device_deselect(spi_lobo_device_handle_t handle);
  220. /**
  221. * @brief Check if spi bus uses native spi pins
  222. *
  223. * @param handle Device handle obtained using spi_lobo_bus_add_device
  224. *
  225. * @return
  226. * - true if native spi pins are used
  227. * - false if spi pins are routed through gpio matrix
  228. */
  229. bool spi_lobo_uses_native_pins(spi_lobo_device_handle_t handle);
  230. /**
  231. * @brief Get spi bus native spi pins
  232. *
  233. * @param handle Device handle obtained using spi_lobo_bus_add_device
  234. *
  235. * @return
  236. * places spi bus native pins in provided pointers
  237. */
  238. void spi_lobo_get_native_pins(int host, int *sdi, int *sdo, int *sck);
  239. /**
  240. * @brief Transimit and receive data to/from spi device based on transaction data
  241. *
  242. * TRANSMIT 8-bit data to spi device from 'trans->tx_buffer' or 'trans->tx_data' (trans->lenght/8 bytes)
  243. * and RECEIVE data to 'trans->rx_buffer' or 'trans->rx_data' (trans->rx_length/8 bytes)
  244. * Lengths must be 8-bit multiples!
  245. * If trans->rx_buffer is NULL or trans->rx_length is 0, only transmits data
  246. * If trans->tx_buffer is NULL or trans->length is 0, only receives data
  247. * If the device is in duplex mode (SPI_DEVICE_HALFDUPLEX flag NOT set), data are transmitted and received simultaneously.
  248. * If the device is in half duplex mode (SPI_DEVICE_HALFDUPLEX flag IS set), data are received after transmission
  249. * 'address', 'command' and 'dummy bits' are transmitted before data phase IF set in device's configuration
  250. * and IF 'trans->length' and 'trans->rx_length' are NOT both 0
  251. * If device was not previously selected, it will be selected before transmission and deselected after transmission.
  252. *
  253. * @param handle Device handle obtained using spi_lobo_bus_add_device
  254. *
  255. * @param trans Pointer to variable containing the description of the transaction that is executed
  256. *
  257. * @return
  258. * - ESP_ERR_INVALID_ARG if parameter is invalid
  259. * - ESP error code if device cannot be selected
  260. * - ESP_OK on success
  261. *
  262. */
  263. esp_err_t spi_lobo_transfer_data(spi_lobo_device_handle_t handle, spi_lobo_transaction_t *trans);
  264. /*
  265. * SPI transactions uses the semaphore (taken in select function) to protect the transfer
  266. */
  267. esp_err_t spi_lobo_device_TakeSemaphore(spi_lobo_device_handle_t handle);
  268. void spi_lobo_device_GiveSemaphore(spi_lobo_device_handle_t handle);
  269. /**
  270. * @brief Setup a DMA link chain
  271. *
  272. * This routine will set up a chain of linked DMA descriptors in the array pointed to by
  273. * ``dmadesc``. Enough DMA descriptors will be used to fit the buffer of ``len`` bytes in, and the
  274. * descriptors will point to the corresponding positions in ``buffer`` and linked together. The
  275. * end result is that feeding ``dmadesc[0]`` into DMA hardware results in the entirety ``len`` bytes
  276. * of ``data`` being read or written.
  277. *
  278. * @param dmadesc Pointer to array of DMA descriptors big enough to be able to convey ``len`` bytes
  279. * @param len Length of buffer
  280. * @param data Data buffer to use for DMA transfer
  281. * @param isrx True if data is to be written into ``data``, false if it's to be read from ``data``.
  282. */
  283. void spi_lobo_setup_dma_desc_links(lldesc_t *dmadesc, int len, const uint8_t *data, bool isrx);
  284. /**
  285. * @brief Check if a DMA reset is requested but has not completed yet
  286. *
  287. * @return True when a DMA reset is requested but hasn't completed yet. False otherwise.
  288. */
  289. bool spi_lobo_dmaworkaround_reset_in_progress();
  290. /**
  291. * @brief Mark a DMA channel as idle.
  292. *
  293. * A call to this function tells the workaround logic that this channel will
  294. * not be affected by a global SPI DMA reset.
  295. */
  296. void spi_lobo_dmaworkaround_idle(int dmachan);
  297. /**
  298. * @brief Mark a DMA channel as active.
  299. *
  300. * A call to this function tells the workaround logic that this channel will
  301. * be affected by a global SPI DMA reset, and a reset like that should not be attempted.
  302. */
  303. void spi_lobo_dmaworkaround_transfer_active(int dmachan);
  304. #ifdef __cplusplus
  305. }
  306. #endif
  307. #endif