123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047 |
- #include <string.h>
- #include "driver/spi_common_internal.h"
- #include "driver/spi_master.h"
- #include "esp_log.h"
- #include "freertos/task.h"
- #include "freertos/queue.h"
- #include "freertos/semphr.h"
- #include "soc/soc_memory_layout.h"
- #include "driver/gpio.h"
- #include "hal/spi_hal.h"
- #include "esp_heap_caps.h"
- typedef struct spi_device_t spi_device_t;
- typedef struct {
- spi_transaction_t *trans;
- const uint32_t *buffer_to_send;
-
- uint32_t *buffer_to_rcv;
- } spi_trans_priv_t;
- typedef struct {
- int id;
- spi_device_t* device[DEV_NUM_MAX];
- intr_handle_t intr;
- spi_hal_context_t hal;
- spi_trans_priv_t cur_trans_buf;
- int cur_cs;
- const spi_bus_attr_t* bus_attr;
-
- spi_device_t* device_acquiring_lock;
- bool polling;
-
- SemaphoreHandle_t mutex;
- int count;
- } spi_host_t;
- struct spi_device_t {
- int id;
- QueueHandle_t trans_queue;
- QueueHandle_t ret_queue;
- spi_device_interface_config_t cfg;
- spi_hal_dev_config_t hal_dev;
- spi_host_t *host;
- spi_bus_lock_dev_handle_t dev_lock;
- };
- static spi_host_t* bus_driver_ctx[SOC_SPI_PERIPH_NUM] = {};
- static const char *SPI_TAG = "spi_master";
- #define SPI_CHECK(a, str, ret_val, ...) \
- if (unlikely(!(a))) { \
- ESP_LOGE(SPI_TAG,"%s(%d): "str, __FUNCTION__, __LINE__, ##__VA_ARGS__); \
- return (ret_val); \
- }
- static void spi_intr(void *arg);
- static void spi_bus_intr_enable(void *host);
- static void spi_bus_intr_disable(void *host);
- static esp_err_t spi_master_deinit_driver(void* arg);
- static inline bool is_valid_host(spi_host_device_t host)
- {
- #if CONFIG_IDF_TARGET_ESP32
- return host >= SPI1_HOST && host <= SPI3_HOST;
- #elif (SOC_SPI_PERIPH_NUM == 2)
- return host == SPI2_HOST;
- #elif (SOC_SPI_PERIPH_NUM == 3)
- return host >= SPI2_HOST && host <= SPI3_HOST;
- #endif
- }
- static esp_err_t spi_master_init_driver(spi_host_device_t host_id)
- {
- esp_err_t err = ESP_OK;
- const spi_bus_attr_t* bus_attr = spi_bus_get_attr(host_id);
- SPI_CHECK(bus_attr != NULL, "host_id not initialized", ESP_ERR_INVALID_STATE);
- SPI_CHECK(bus_attr->lock != NULL, "SPI Master cannot attach to bus. (Check CONFIG_SPI_FLASH_SHARE_SPI1_BUS)", ESP_ERR_INVALID_ARG);
-
- spi_host_t* host = heap_caps_malloc(sizeof(spi_host_t), MALLOC_CAP_INTERNAL | MALLOC_CAP_8BIT);
- if (host == NULL) {
- err = ESP_ERR_NO_MEM;
- goto cleanup;
- }
- *host = (spi_host_t) {
- .id = host_id,
- .cur_cs = DEV_NUM_MAX,
- .polling = false,
- .device_acquiring_lock = NULL,
- .bus_attr = bus_attr,
- };
- if (host_id != SPI1_HOST) {
- // interrupts are not allowed on SPI1 bus
- err = esp_intr_alloc(spicommon_irqsource_for_host(host_id),
- bus_attr->bus_cfg.intr_flags | ESP_INTR_FLAG_INTRDISABLED,
- spi_intr, host, &host->intr);
- if (err != ESP_OK) {
- goto cleanup;
- }
- }
- //assign the SPI, RX DMA and TX DMA peripheral registers beginning address
- spi_hal_config_t hal_config = {
- //On ESP32-S2 and earlier chips, DMA registers are part of SPI registers. Pass the registers of SPI peripheral to control it.
- .dma_in = SPI_LL_GET_HW(host_id),
- .dma_out = SPI_LL_GET_HW(host_id),
- .dma_enabled = bus_attr->dma_enabled,
- .dmadesc_tx = bus_attr->dmadesc_tx,
- .dmadesc_rx = bus_attr->dmadesc_rx,
- .tx_dma_chan = bus_attr->tx_dma_chan,
- .rx_dma_chan = bus_attr->rx_dma_chan,
- .dmadesc_n = bus_attr->dma_desc_num,
- };
- spi_hal_init(&host->hal, host_id, &hal_config);
- if (host_id != SPI1_HOST) {
- //SPI1 attributes are already initialized at start up.
- spi_bus_lock_handle_t lock = spi_bus_lock_get_by_id(host_id);
- spi_bus_lock_set_bg_control(lock, spi_bus_intr_enable, spi_bus_intr_disable, host);
- spi_bus_register_destroy_func(host_id, spi_master_deinit_driver, host);
- }
- bus_driver_ctx[host_id] = host;
- return ESP_OK;
- cleanup:
- if (host) {
- spi_hal_deinit(&host->hal);
- if (host->intr) {
- esp_intr_free(host->intr);
- }
- }
- free(host);
- return err;
- }
- static esp_err_t spi_master_deinit_driver(void* arg)
- {
- spi_host_t *host = (spi_host_t*)arg;
- SPI_CHECK(host != NULL, "host_id not in use", ESP_ERR_INVALID_STATE);
- int host_id = host->id;
- SPI_CHECK(is_valid_host(host_id), "invalid host_id", ESP_ERR_INVALID_ARG);
- int x;
- for (x=0; x<DEV_NUM_MAX; x++) {
- SPI_CHECK(host->device[x] == NULL, "not all CSses freed", ESP_ERR_INVALID_STATE);
- }
- spi_hal_deinit(&host->hal);
- if (host->intr) {
- esp_intr_free(host->intr);
- }
- free(host);
- bus_driver_ctx[host_id] = NULL;
- return ESP_OK;
- }
- void spi_get_timing(bool gpio_is_used, int input_delay_ns, int eff_clk, int* dummy_o, int* cycles_remain_o)
- {
- int timing_dummy;
- int timing_miso_delay;
- spi_hal_cal_timing(eff_clk, gpio_is_used, input_delay_ns, &timing_dummy, &timing_miso_delay);
- if (dummy_o) *dummy_o = timing_dummy;
- if (cycles_remain_o) *cycles_remain_o = timing_miso_delay;
- }
- int spi_get_freq_limit(bool gpio_is_used, int input_delay_ns)
- {
- return spi_hal_get_freq_limit(gpio_is_used, input_delay_ns);
- }
- /*
- Add a device. This allocates a CS line for the device, allocates memory for the device structure and hooks
- up the CS pin to whatever is specified.
- */
- esp_err_t spi_bus_add_device(spi_host_device_t host_id, const spi_device_interface_config_t *dev_config, spi_device_handle_t *handle)
- {
- spi_device_t *dev = NULL;
- esp_err_t err = ESP_OK;
- SPI_CHECK(is_valid_host(host_id), "invalid host", ESP_ERR_INVALID_ARG);
- if (bus_driver_ctx[host_id] == NULL) {
- //lazy initialization the driver, get deinitialized by the bus is freed
- err = spi_master_init_driver(host_id);
- if (err != ESP_OK) {
- return err;
- }
- }
- spi_host_t *host = bus_driver_ctx[host_id];
- const spi_bus_attr_t* bus_attr = host->bus_attr;
- SPI_CHECK(dev_config->spics_io_num < 0 || GPIO_IS_VALID_OUTPUT_GPIO(dev_config->spics_io_num), "spics pin invalid", ESP_ERR_INVALID_ARG);
- SPI_CHECK(dev_config->clock_speed_hz > 0, "invalid sclk speed", ESP_ERR_INVALID_ARG);
- #ifdef CONFIG_IDF_TARGET_ESP32
- //The hardware looks like it would support this, but actually setting cs_ena_pretrans when transferring in full
- //duplex mode does absolutely nothing on the ESP32.
- SPI_CHECK(dev_config->cs_ena_pretrans <= 1 || (dev_config->address_bits == 0 && dev_config->command_bits == 0) ||
- (dev_config->flags & SPI_DEVICE_HALFDUPLEX), "In full-duplex mode, only support cs pretrans delay = 1 and without address_bits and command_bits", ESP_ERR_INVALID_ARG);
- #endif
- uint32_t lock_flag = ((dev_config->spics_io_num != -1)? SPI_BUS_LOCK_DEV_FLAG_CS_REQUIRED: 0);
- spi_bus_lock_dev_config_t lock_config = {
- .flags = lock_flag,
- };
- spi_bus_lock_dev_handle_t dev_handle;
- err = spi_bus_lock_register_dev(bus_attr->lock, &lock_config, &dev_handle);
- if (err != ESP_OK) {
- goto nomem;
- }
- int freecs = spi_bus_lock_get_dev_id(dev_handle);
- SPI_CHECK(freecs != -1, "no free cs pins for the host", ESP_ERR_NOT_FOUND);
- //input parameters to calculate timing configuration
- int half_duplex = dev_config->flags & SPI_DEVICE_HALFDUPLEX ? 1 : 0;
- int no_compensate = dev_config->flags & SPI_DEVICE_NO_DUMMY ? 1 : 0;
- int duty_cycle = (dev_config->duty_cycle_pos==0) ? 128 : dev_config->duty_cycle_pos;
- int use_gpio = !(bus_attr->flags & SPICOMMON_BUSFLAG_IOMUX_PINS);
- spi_hal_timing_param_t timing_param = {
- .half_duplex = half_duplex,
- .no_compensate = no_compensate,
- .clock_speed_hz = dev_config->clock_speed_hz,
- .duty_cycle = duty_cycle,
- .input_delay_ns = dev_config->input_delay_ns,
- .use_gpio = use_gpio
- };
- //output values of timing configuration
- spi_hal_timing_conf_t temp_timing_conf;
- int freq;
- esp_err_t ret = spi_hal_cal_clock_conf(&timing_param, &freq, &temp_timing_conf);
- SPI_CHECK(ret==ESP_OK, "assigned clock speed not supported", ret);
- //Allocate memory for device
- dev = malloc(sizeof(spi_device_t));
- if (dev == NULL) goto nomem;
- memset(dev, 0, sizeof(spi_device_t));
- dev->id = freecs;
- dev->dev_lock = dev_handle;
- //Allocate queues, set defaults
- dev->trans_queue = xQueueCreate(dev_config->queue_size, sizeof(spi_trans_priv_t));
- dev->ret_queue = xQueueCreate(dev_config->queue_size, sizeof(spi_trans_priv_t));
- if (!dev->trans_queue || !dev->ret_queue) {
- goto nomem;
- }
- //We want to save a copy of the dev config in the dev struct.
- memcpy(&dev->cfg, dev_config, sizeof(spi_device_interface_config_t));
- dev->cfg.duty_cycle_pos = duty_cycle;
- // TODO: if we have to change the apb clock among transactions, re-calculate this each time the apb clock lock is locked.
- //Set CS pin, CS options
- if (dev_config->spics_io_num >= 0) {
- spicommon_cs_initialize(host_id, dev_config->spics_io_num, freecs, use_gpio);
- }
- // create a mutex if we have more than one client
- if (host->count++) {
- ESP_LOGI(SPI_TAG, "More than one device on SPI %d => creating mutex", host_id);
- //host->mutex = xSemaphoreCreateMutex();
- }
- //save a pointer to device in spi_host_t
- host->device[freecs] = dev;
- //save a pointer to host in spi_device_t
- dev->host= host;
- //initialise the device specific configuration
- spi_hal_dev_config_t *hal_dev = &(dev->hal_dev);
- hal_dev->mode = dev_config->mode;
- hal_dev->cs_setup = dev_config->cs_ena_pretrans;
- hal_dev->cs_hold = dev_config->cs_ena_posttrans;
- //set hold_time to 0 will not actually append delay to CS
- //set it to 1 since we do need at least one clock of hold time in most cases
- if (hal_dev->cs_hold == 0) {
- hal_dev->cs_hold = 1;
- }
- hal_dev->cs_pin_id = dev->id;
- hal_dev->timing_conf = temp_timing_conf;
- hal_dev->sio = (dev_config->flags) & SPI_DEVICE_3WIRE ? 1 : 0;
- hal_dev->half_duplex = dev_config->flags & SPI_DEVICE_HALFDUPLEX ? 1 : 0;
- hal_dev->tx_lsbfirst = dev_config->flags & SPI_DEVICE_TXBIT_LSBFIRST ? 1 : 0;
- hal_dev->rx_lsbfirst = dev_config->flags & SPI_DEVICE_RXBIT_LSBFIRST ? 1 : 0;
- hal_dev->no_compensate = dev_config->flags & SPI_DEVICE_NO_DUMMY ? 1 : 0;
- #if SOC_SPI_SUPPORT_AS_CS
- hal_dev->as_cs = dev_config->flags& SPI_DEVICE_CLK_AS_CS ? 1 : 0;
- #endif
- hal_dev->positive_cs = dev_config->flags & SPI_DEVICE_POSITIVE_CS ? 1 : 0;
- *handle = dev;
- ESP_LOGD(SPI_TAG, "SPI%d: New device added to CS%d, effective clock: %dkHz", host_id+1, freecs, freq/1000);
- return ESP_OK;
- nomem:
- if (dev) {
- if (dev->trans_queue) vQueueDelete(dev->trans_queue);
- if (dev->ret_queue) vQueueDelete(dev->ret_queue);
- spi_bus_lock_unregister_dev(dev->dev_lock);
- }
- free(dev);
- return ESP_ERR_NO_MEM;
- }
- esp_err_t spi_bus_remove_device(spi_device_handle_t handle)
- {
- SPI_CHECK(handle!=NULL, "invalid handle", ESP_ERR_INVALID_ARG);
- //These checks aren't exhaustive; another thread could sneak in a transaction inbetween. These are only here to
- //catch design errors and aren't meant to be triggered during normal operation.
- SPI_CHECK(uxQueueMessagesWaiting(handle->trans_queue)==0, "Have unfinished transactions", ESP_ERR_INVALID_STATE);
- SPI_CHECK(handle->host->cur_cs == DEV_NUM_MAX || handle->host->device[handle->host->cur_cs] != handle, "Have unfinished transactions", ESP_ERR_INVALID_STATE);
- SPI_CHECK(uxQueueMessagesWaiting(handle->ret_queue)==0, "Have unfinished transactions", ESP_ERR_INVALID_STATE);
- //return
- int spics_io_num = handle->cfg.spics_io_num;
- if (spics_io_num >= 0) spicommon_cs_free_io(spics_io_num);
- //Kill queues
- vQueueDelete(handle->trans_queue);
- vQueueDelete(handle->ret_queue);
- spi_bus_lock_unregister_dev(handle->dev_lock);
- assert(handle->host->device[handle->id] == handle);
- handle->host->device[handle->id] = NULL;
- free(handle);
- return ESP_OK;
- }
- int spi_cal_clock(int fapb, int hz, int duty_cycle, uint32_t *reg_o)
- {
- return spi_ll_master_cal_clock(fapb, hz, duty_cycle, reg_o);
- }
- int spi_get_actual_clock(int fapb, int hz, int duty_cycle)
- {
- return spi_hal_master_cal_clock(fapb, hz, duty_cycle);
- }
- // Setup the device-specified configuration registers. Called every time a new
- // transaction is to be sent, but only apply new configurations when the device
- // changes.
- static SPI_MASTER_ISR_ATTR void spi_setup_device(spi_device_t *dev)
- {
- spi_bus_lock_dev_handle_t dev_lock = dev->dev_lock;
- if (!spi_bus_lock_touch(dev_lock)) {
- //if the configuration is already applied, skip the following.
- return;
- }
- spi_hal_context_t *hal = &dev->host->hal;
- spi_hal_dev_config_t *hal_dev = &(dev->hal_dev);
- spi_hal_setup_device(hal, hal_dev);
- }
- static SPI_MASTER_ISR_ATTR spi_device_t *get_acquiring_dev(spi_host_t *host)
- {
- spi_bus_lock_dev_handle_t dev_lock = spi_bus_lock_get_acquiring_dev(host->bus_attr->lock);
- if (!dev_lock) {
- ESP_LOGW(SPI_TAG, "NOBODY HERE");
- return NULL;
- }
- return host->device[spi_bus_lock_get_dev_id(dev_lock)];
- }
- // Debug only
- // NOTE if the acquiring is not fully completed, `spi_bus_lock_get_acquiring_dev`
- // may return a false `NULL` cause the function returning false `false`.
- static inline SPI_MASTER_ISR_ATTR bool spi_bus_device_is_polling(spi_device_t *dev)
- {
- spi_device_t *toto = NULL;
- spi_bus_lock_dev_handle_t dev_lock = spi_bus_lock_get_acquiring_dev(dev->host->bus_attr->lock);
- if (dev_lock) toto = dev->host->device[spi_bus_lock_get_dev_id(dev_lock)];
- return toto == dev && dev->host->polling;
-
- //return get_acquiring_dev(dev->host) == dev && dev->host->polling;
- }
- /*-----------------------------------------------------------------------------
- Working Functions
- -----------------------------------------------------------------------------*/
- // The interrupt may get invoked by the bus lock.
- static void SPI_MASTER_ISR_ATTR spi_bus_intr_enable(void *host)
- {
- esp_intr_enable(((spi_host_t*)host)->intr);
- }
- // The interrupt is always disabled by the ISR itself, not exposed
- static void SPI_MASTER_ISR_ATTR spi_bus_intr_disable(void *host)
- {
- esp_intr_disable(((spi_host_t*)host)->intr);
- }
- // The function is called to send a new transaction, in ISR or in the task.
- // Setup the transaction-specified registers and linked-list used by the DMA (or FIFO if DMA is not used)
- static void SPI_MASTER_ISR_ATTR spi_new_trans(spi_device_t *dev, spi_trans_priv_t *trans_buf)
- {
- spi_transaction_t *trans = NULL;
- spi_host_t *host = dev->host;
- spi_hal_context_t *hal = &(host->hal);
- spi_hal_dev_config_t *hal_dev = &(dev->hal_dev);
- trans = trans_buf->trans;
- host->cur_cs = dev->id;
- //Reconfigure according to device settings, the function only has effect when the dev_id is changed.
- spi_setup_device(dev);
- //set the transaction specific configuration each time before a transaction setup
- spi_hal_trans_config_t hal_trans = {};
- hal_trans.tx_bitlen = trans->length;
- hal_trans.rx_bitlen = trans->rxlength;
- hal_trans.rcv_buffer = (uint8_t*)host->cur_trans_buf.buffer_to_rcv;
- hal_trans.send_buffer = (uint8_t*)host->cur_trans_buf.buffer_to_send;
- hal_trans.cmd = trans->cmd;
- hal_trans.addr = trans->addr;
- //Set up QIO/DIO if needed
- hal_trans.io_mode = (trans->flags & SPI_TRANS_MODE_DIO ?
- (trans->flags & SPI_TRANS_MODE_DIOQIO_ADDR ? SPI_LL_IO_MODE_DIO : SPI_LL_IO_MODE_DUAL) :
- (trans->flags & SPI_TRANS_MODE_QIO ?
- (trans->flags & SPI_TRANS_MODE_DIOQIO_ADDR ? SPI_LL_IO_MODE_QIO : SPI_LL_IO_MODE_QUAD) :
- SPI_LL_IO_MODE_NORMAL
- ));
- if (trans->flags & SPI_TRANS_VARIABLE_CMD) {
- hal_trans.cmd_bits = ((spi_transaction_ext_t *)trans)->command_bits;
- } else {
- hal_trans.cmd_bits = dev->cfg.command_bits;
- }
- if (trans->flags & SPI_TRANS_VARIABLE_ADDR) {
- hal_trans.addr_bits = ((spi_transaction_ext_t *)trans)->address_bits;
- } else {
- hal_trans.addr_bits = dev->cfg.address_bits;
- }
- if (trans->flags & SPI_TRANS_VARIABLE_DUMMY) {
- hal_trans.dummy_bits = ((spi_transaction_ext_t *)trans)->dummy_bits;
- } else {
- hal_trans.dummy_bits = dev->cfg.dummy_bits;
- }
- spi_hal_setup_trans(hal, hal_dev, &hal_trans);
- spi_hal_prepare_data(hal, hal_dev, &hal_trans);
- //Call pre-transmission callback, if any
- if (dev->cfg.pre_cb) dev->cfg.pre_cb(trans);
- //Kick off transfer
- spi_hal_user_start(hal);
- }
- // The function is called when a transaction is done, in ISR or in the task.
- // Fetch the data from FIFO and call the ``post_cb``.
- static void SPI_MASTER_ISR_ATTR spi_post_trans(spi_host_t *host)
- {
- spi_transaction_t *cur_trans = host->cur_trans_buf.trans;
- spi_hal_fetch_result(&host->hal);
- //Call post-transaction callback, if any
- spi_device_t* dev = host->device[host->cur_cs];
- if (dev->cfg.post_cb) dev->cfg.post_cb(cur_trans);
- host->cur_cs = DEV_NUM_MAX;
- }
- // This is run in interrupt context.
- static void SPI_MASTER_ISR_ATTR spi_intr(void *arg)
- {
- BaseType_t do_yield = pdFALSE;
- spi_host_t *host = (spi_host_t *)arg;
- const spi_bus_attr_t* bus_attr = host->bus_attr;
- assert(spi_hal_usr_is_done(&host->hal));
- /*
- * Help to skip the handling of in-flight transaction, and disable of the interrupt.
- * The esp_intr_enable will be called (b) after new BG request is queued (a) in the task;
- * while esp_intr_disable should be called (c) if we check and found the sending queue is empty (d).
- * If (c) is called after (d), then there is a risk that things happens in this sequence:
- * (d) -> (a) -> (b) -> (c), and in this case the interrupt is disabled while there's pending BG request in the queue.
- * To avoid this, interrupt is disabled here, and re-enabled later if required.
- */
- if (!spi_bus_lock_bg_entry(bus_attr->lock)) {
- /*------------ deal with the in-flight transaction -----------------*/
- assert(host->cur_cs != DEV_NUM_MAX);
- //Okay, transaction is done.
- const int cs = host->cur_cs;
- //Tell common code DMA workaround that our DMA channel is idle. If needed, the code will do a DMA reset.
- if (bus_attr->dma_enabled) {
- //This workaround is only for esp32, where tx_dma_chan and rx_dma_chan are always same
- spicommon_dmaworkaround_idle(bus_attr->tx_dma_chan);
- }
- //cur_cs is changed to DEV_NUM_MAX here
- spi_post_trans(host);
- // spi_bus_lock_bg_pause(bus_attr->lock);
- //Return transaction descriptor.
- xQueueSendFromISR(host->device[cs]->ret_queue, &host->cur_trans_buf, &do_yield);
- #ifdef CONFIG_PM_ENABLE
- //Release APB frequency lock
- esp_pm_lock_release(bus_attr->pm_lock);
- #endif
- }
- /*------------ new transaction starts here ------------------*/
- assert(host->cur_cs == DEV_NUM_MAX);
- spi_bus_lock_handle_t lock = host->bus_attr->lock;
- BaseType_t trans_found = pdFALSE;
- // There should be remaining requests
- BUS_LOCK_DEBUG_EXECUTE_CHECK(spi_bus_lock_bg_req_exist(lock));
- do {
- spi_bus_lock_dev_handle_t acq_dev_lock = spi_bus_lock_get_acquiring_dev(lock);
- spi_bus_lock_dev_handle_t desired_dev = acq_dev_lock;
- bool resume_task = false;
- spi_device_t* device_to_send = NULL;
- if (!acq_dev_lock) {
- // This function may assign a new acquiring device, otherwise it will suggest a desired device with BG active
- // We use either of them without further searching in the devices.
- // If the return value is true, it means either there's no acquiring device, or the acquiring device's BG is active,
- // We stay in the ISR to deal with those transactions of desired device, otherwise nothing will be done, check whether we need to resume some other tasks, or just quit the ISR
- resume_task = spi_bus_lock_bg_check_dev_acq(lock, &desired_dev);
- }
- if (!resume_task) {
- bool dev_has_req = spi_bus_lock_bg_check_dev_req(desired_dev);
- if (dev_has_req) {
- device_to_send = host->device[spi_bus_lock_get_dev_id(desired_dev)];
- trans_found = xQueueReceiveFromISR(device_to_send->trans_queue, &host->cur_trans_buf, &do_yield);
- if (!trans_found) {
- spi_bus_lock_bg_clear_req(desired_dev);
- }
- }
- }
- if (trans_found) {
- spi_trans_priv_t *const cur_trans_buf = &host->cur_trans_buf;
- if (bus_attr->dma_enabled && (cur_trans_buf->buffer_to_rcv || cur_trans_buf->buffer_to_send)) {
- //mark channel as active, so that the DMA will not be reset by the slave
- //This workaround is only for esp32, where tx_dma_chan and rx_dma_chan are always same
- spicommon_dmaworkaround_transfer_active(bus_attr->tx_dma_chan);
- }
- spi_new_trans(device_to_send, cur_trans_buf);
- }
- // Exit of the ISR, handle interrupt re-enable (if sending transaction), retry (if there's coming BG),
- // or resume acquiring device task (if quit due to bus acquiring).
- } while (!spi_bus_lock_bg_exit(lock, trans_found, &do_yield));
- if (do_yield) portYIELD_FROM_ISR();
- }
- static SPI_MASTER_ISR_ATTR esp_err_t check_trans_valid(spi_device_handle_t handle, spi_transaction_t *trans_desc)
- {
- SPI_CHECK(handle!=NULL, "invalid dev handle", ESP_ERR_INVALID_ARG);
- spi_host_t *host = handle->host;
- const spi_bus_attr_t* bus_attr = host->bus_attr;
- bool tx_enabled = (trans_desc->flags & SPI_TRANS_USE_TXDATA) || (trans_desc->tx_buffer);
- bool rx_enabled = (trans_desc->flags & SPI_TRANS_USE_RXDATA) || (trans_desc->rx_buffer);
- spi_transaction_ext_t *t_ext = (spi_transaction_ext_t *)trans_desc;
- bool dummy_enabled = (((trans_desc->flags & SPI_TRANS_VARIABLE_DUMMY)? t_ext->dummy_bits: handle->cfg.dummy_bits) != 0);
- bool extra_dummy_enabled = handle->hal_dev.timing_conf.timing_dummy;
- bool is_half_duplex = ((handle->cfg.flags & SPI_DEVICE_HALFDUPLEX) != 0);
- //check transmission length
- SPI_CHECK((trans_desc->flags & SPI_TRANS_USE_RXDATA)==0 || trans_desc->rxlength <= 32, "SPI_TRANS_USE_RXDATA only available for rxdata transfer <= 32 bits", ESP_ERR_INVALID_ARG);
- SPI_CHECK((trans_desc->flags & SPI_TRANS_USE_TXDATA)==0 || trans_desc->length <= 32, "SPI_TRANS_USE_TXDATA only available for txdata transfer <= 32 bits", ESP_ERR_INVALID_ARG);
- SPI_CHECK(trans_desc->length <= bus_attr->max_transfer_sz*8, "txdata transfer > host maximum", ESP_ERR_INVALID_ARG);
- SPI_CHECK(trans_desc->rxlength <= bus_attr->max_transfer_sz*8, "rxdata transfer > host maximum", ESP_ERR_INVALID_ARG);
- SPI_CHECK(is_half_duplex || trans_desc->rxlength <= trans_desc->length, "rx length > tx length in full duplex mode", ESP_ERR_INVALID_ARG);
- //check working mode
- SPI_CHECK(!((trans_desc->flags & (SPI_TRANS_MODE_DIO|SPI_TRANS_MODE_QIO)) && (handle->cfg.flags & SPI_DEVICE_3WIRE)), "incompatible iface params", ESP_ERR_INVALID_ARG);
- SPI_CHECK(!((trans_desc->flags & (SPI_TRANS_MODE_DIO|SPI_TRANS_MODE_QIO)) && !is_half_duplex), "incompatible iface params", ESP_ERR_INVALID_ARG);
- #ifdef CONFIG_IDF_TARGET_ESP32
- SPI_CHECK(!is_half_duplex || !bus_attr->dma_enabled || !rx_enabled || !tx_enabled, "SPI half duplex mode does not support using DMA with both MOSI and MISO phases.", ESP_ERR_INVALID_ARG );
- #elif CONFIG_IDF_TARGET_ESP32S3
- SPI_CHECK(!is_half_duplex || !tx_enabled || !rx_enabled, "SPI half duplex mode is not supported when both MOSI and MISO phases are enabled.", ESP_ERR_INVALID_ARG);
- #endif
- //MOSI phase is skipped only when both tx_buffer and SPI_TRANS_USE_TXDATA are not set.
- SPI_CHECK(trans_desc->length != 0 || !tx_enabled, "trans tx_buffer should be NULL and SPI_TRANS_USE_TXDATA should be cleared to skip MOSI phase.", ESP_ERR_INVALID_ARG);
- //MISO phase is skipped only when both rx_buffer and SPI_TRANS_USE_RXDATA are not set.
- //If set rxlength=0 in full_duplex mode, it will be automatically set to length
- SPI_CHECK(!is_half_duplex || trans_desc->rxlength != 0 || !rx_enabled, "trans rx_buffer should be NULL and SPI_TRANS_USE_RXDATA should be cleared to skip MISO phase.", ESP_ERR_INVALID_ARG);
- //In Full duplex mode, default rxlength to be the same as length, if not filled in.
- // set rxlength to length is ok, even when rx buffer=NULL
- if (trans_desc->rxlength==0 && !is_half_duplex) {
- trans_desc->rxlength=trans_desc->length;
- }
- //Dummy phase is not available when both data out and in are enabled, regardless of FD or HD mode.
- SPI_CHECK(!tx_enabled || !rx_enabled || !dummy_enabled || !extra_dummy_enabled, "Dummy phase is not available when both data out and in are enabled", ESP_ERR_INVALID_ARG);
- return ESP_OK;
- }
- static SPI_MASTER_ISR_ATTR void uninstall_priv_desc(spi_trans_priv_t* trans_buf)
- {
- spi_transaction_t *trans_desc = trans_buf->trans;
- if ((void *)trans_buf->buffer_to_send != &trans_desc->tx_data[0] &&
- trans_buf->buffer_to_send != trans_desc->tx_buffer) {
- free((void *)trans_buf->buffer_to_send); //force free, ignore const
- }
- // copy data from temporary DMA-capable buffer back to IRAM buffer and free the temporary one.
- if ((void *)trans_buf->buffer_to_rcv != &trans_desc->rx_data[0] &&
- trans_buf->buffer_to_rcv != trans_desc->rx_buffer) { // NOLINT(clang-analyzer-unix.Malloc)
- if (trans_desc->flags & SPI_TRANS_USE_RXDATA) {
- memcpy((uint8_t *) & trans_desc->rx_data[0], trans_buf->buffer_to_rcv, (trans_desc->rxlength + 7) / 8);
- } else {
- memcpy(trans_desc->rx_buffer, trans_buf->buffer_to_rcv, (trans_desc->rxlength + 7) / 8);
- }
- free(trans_buf->buffer_to_rcv);
- }
- }
- static SPI_MASTER_ISR_ATTR esp_err_t setup_priv_desc(spi_transaction_t *trans_desc, spi_trans_priv_t* new_desc, bool isdma)
- {
- *new_desc = (spi_trans_priv_t) { .trans = trans_desc, };
- // rx memory assign
- uint32_t* rcv_ptr;
- if ( trans_desc->flags & SPI_TRANS_USE_RXDATA ) {
- rcv_ptr = (uint32_t *)&trans_desc->rx_data[0];
- } else {
- //if not use RXDATA neither rx_buffer, buffer_to_rcv assigned to NULL
- rcv_ptr = trans_desc->rx_buffer;
- }
- if (rcv_ptr && isdma && (!esp_ptr_dma_capable(rcv_ptr) || ((int)rcv_ptr % 4 != 0))) {
- //if rxbuf in the desc not DMA-capable, malloc a new one. The rx buffer need to be length of multiples of 32 bits to avoid heap corruption.
- ESP_LOGD(SPI_TAG, "Allocate RX buffer for DMA" );
- rcv_ptr = heap_caps_malloc((trans_desc->rxlength + 31) / 8, MALLOC_CAP_DMA);
- if (rcv_ptr == NULL) goto clean_up;
- }
- new_desc->buffer_to_rcv = rcv_ptr;
- // tx memory assign
- const uint32_t *send_ptr;
- if ( trans_desc->flags & SPI_TRANS_USE_TXDATA ) {
- send_ptr = (uint32_t *)&trans_desc->tx_data[0];
- } else {
- //if not use TXDATA neither tx_buffer, tx data assigned to NULL
- send_ptr = trans_desc->tx_buffer ;
- }
- if (send_ptr && isdma && !esp_ptr_dma_capable( send_ptr )) {
- //if txbuf in the desc not DMA-capable, malloc a new one
- ESP_LOGD(SPI_TAG, "Allocate TX buffer for DMA" );
- uint32_t *temp = heap_caps_malloc((trans_desc->length + 7) / 8, MALLOC_CAP_DMA);
- if (temp == NULL) goto clean_up;
- memcpy( temp, send_ptr, (trans_desc->length + 7) / 8 );
- send_ptr = temp;
- }
- new_desc->buffer_to_send = send_ptr;
- return ESP_OK;
- clean_up:
- uninstall_priv_desc(new_desc);
- return ESP_ERR_NO_MEM;
- }
- esp_err_t SPI_MASTER_ATTR spi_device_queue_trans(spi_device_handle_t handle, spi_transaction_t *trans_desc, TickType_t ticks_to_wait)
- {
- esp_err_t ret = check_trans_valid(handle, trans_desc);
- if (ret != ESP_OK) return ret;
- spi_host_t *host = handle->host;
- SPI_CHECK(!spi_bus_device_is_polling(handle), "Cannot queue new transaction while previous polling transaction is not terminated.", ESP_ERR_INVALID_STATE );
- spi_trans_priv_t trans_buf;
- ret = setup_priv_desc(trans_desc, &trans_buf, (host->bus_attr->dma_enabled));
- if (ret != ESP_OK) return ret;
- #ifdef CONFIG_PM_ENABLE
- esp_pm_lock_acquire(host->bus_attr->pm_lock);
- #endif
- //Send to queue and invoke the ISR.
- BaseType_t r = xQueueSend(handle->trans_queue, (void *)&trans_buf, ticks_to_wait);
- if (!r) {
- ret = ESP_ERR_TIMEOUT;
- #ifdef CONFIG_PM_ENABLE
- //Release APB frequency lock
- esp_pm_lock_release(host->bus_attr->pm_lock);
- #endif
- goto clean_up;
- }
- // The ISR will be invoked at correct time by the lock with `spi_bus_intr_enable`.
- ret = spi_bus_lock_bg_request(handle->dev_lock);
- if (ret != ESP_OK) {
- goto clean_up;
- }
- return ESP_OK;
- clean_up:
- uninstall_priv_desc(&trans_buf);
- return ret;
- }
- esp_err_t SPI_MASTER_ATTR spi_device_get_trans_result(spi_device_handle_t handle, spi_transaction_t **trans_desc, TickType_t ticks_to_wait)
- {
- BaseType_t r;
- spi_trans_priv_t trans_buf;
- SPI_CHECK(handle!=NULL, "invalid dev handle", ESP_ERR_INVALID_ARG);
- //use the interrupt, block until return
- r=xQueueReceive(handle->ret_queue, (void*)&trans_buf, ticks_to_wait);
- if (!r) {
- // The memory occupied by rx and tx DMA buffer destroyed only when receiving from the queue (transaction finished).
- // If timeout, wait and retry.
- // Every in-flight transaction request occupies internal memory as DMA buffer if needed.
- return ESP_ERR_TIMEOUT;
- }
- //release temporary buffers
- uninstall_priv_desc(&trans_buf);
- (*trans_desc) = trans_buf.trans;
- return ESP_OK;
- }
- //Porcelain to do one blocking transmission.
- esp_err_t SPI_MASTER_ATTR spi_device_transmit(spi_device_handle_t handle, spi_transaction_t *trans_desc)
- {
- esp_err_t ret;
- spi_transaction_t *ret_trans;
- //ToDo: check if any spi transfers in flight
- ret = spi_device_queue_trans(handle, trans_desc, portMAX_DELAY);
- if (ret != ESP_OK) return ret;
- ret = spi_device_get_trans_result(handle, &ret_trans, portMAX_DELAY);
- if (ret != ESP_OK) return ret;
- assert(ret_trans == trans_desc);
- return ESP_OK;
- }
- esp_err_t SPI_MASTER_ISR_ATTR spi_device_acquire_bus(spi_device_t *device, TickType_t wait)
- {
- spi_host_t *const host = device->host;
- SPI_CHECK(wait==portMAX_DELAY, "acquire finite time not supported now.", ESP_ERR_INVALID_ARG);
- SPI_CHECK(!spi_bus_device_is_polling(device), "Cannot acquire bus when a polling transaction is in progress.", ESP_ERR_INVALID_STATE );
- esp_err_t ret = spi_bus_lock_acquire_start(device->dev_lock, wait);
- if (ret != ESP_OK) {
- return ret;
- }
- host->device_acquiring_lock = device;
- ESP_LOGD(SPI_TAG, "device%d locked the bus", device->id);
- #ifdef CONFIG_PM_ENABLE
- // though we don't suggest to block the task before ``release_bus``, still allow doing so.
- // this keeps the spi clock at 80MHz even if all tasks are blocked
- esp_pm_lock_acquire(host->bus_attr->pm_lock);
- #endif
- //configure the device ahead so that we don't need to do it again in the following transactions
- spi_setup_device(host->device[device->id]);
- //the DMA is also occupied by the device, all the slave devices that using DMA should wait until bus released.
- if (host->bus_attr->dma_enabled) {
- //This workaround is only for esp32, where tx_dma_chan and rx_dma_chan are always same
- spicommon_dmaworkaround_transfer_active(host->bus_attr->tx_dma_chan);
- }
- return ESP_OK;
- }
- // This function restore configurations required in the non-polling mode
- void SPI_MASTER_ISR_ATTR spi_device_release_bus(spi_device_t *dev)
- {
- spi_host_t *host = dev->host;
- if (spi_bus_device_is_polling(dev)){
- ESP_EARLY_LOGE(SPI_TAG, "Cannot release bus when a polling transaction is in progress.");
- assert(0);
- }
- if (host->bus_attr->dma_enabled) {
- //This workaround is only for esp32, where tx_dma_chan and rx_dma_chan are always same
- spicommon_dmaworkaround_idle(host->bus_attr->tx_dma_chan);
- }
- //Tell common code DMA workaround that our DMA channel is idle. If needed, the code will do a DMA reset.
- //allow clock to be lower than 80MHz when all tasks blocked
- #ifdef CONFIG_PM_ENABLE
- //Release APB frequency lock
- esp_pm_lock_release(host->bus_attr->pm_lock);
- #endif
- ESP_LOGD(SPI_TAG, "device%d release bus", dev->id);
- host->device_acquiring_lock = NULL;
- esp_err_t ret = spi_bus_lock_acquire_end(dev->dev_lock);
- assert(ret == ESP_OK);
- }
- esp_err_t SPI_MASTER_ISR_ATTR spi_device_polling_start(spi_device_handle_t handle, spi_transaction_t *trans_desc, TickType_t ticks_to_wait)
- {
- esp_err_t ret;
- SPI_CHECK(ticks_to_wait == portMAX_DELAY, "currently timeout is not available for polling transactions", ESP_ERR_INVALID_ARG);
- ret = check_trans_valid(handle, trans_desc);
- if (ret!=ESP_OK) return ret;
- SPI_CHECK(!spi_bus_device_is_polling(handle), "Cannot send polling transaction while the previous polling transaction is not terminated.", ESP_ERR_INVALID_STATE );
- /* If device_acquiring_lock is set to handle, it means that the user has already
- * acquired the bus thanks to the function `spi_device_acquire_bus()`.
- * In that case, we don't need to take the lock again. */
- spi_host_t *host = handle->host;
- try_again:
- if (host->device_acquiring_lock != handle) {
- ret = spi_bus_lock_acquire_start(handle->dev_lock, ticks_to_wait);
- } else {
- ESP_LOGW(SPI_TAG, "ALREADYA CQUIRED %d", handle->id);
- ret = spi_bus_lock_wait_bg_done(handle->dev_lock, ticks_to_wait);
- }
- if (ret != ESP_OK) return ret;
-
- if (handle != get_acquiring_dev(host)) {
- ESP_LOGW(SPI_TAG, "WE THOUGHT WE ACQUIRED THE BUS %d %p", handle->id, host);
- goto try_again;
- }
- ret = setup_priv_desc(trans_desc, &host->cur_trans_buf, (host->bus_attr->dma_enabled));
- if (ret!=ESP_OK) return ret;
- //Polling, no interrupt is used.
- host->polling = true;
- ESP_LOGV(SPI_TAG, "polling trans");
- spi_new_trans(handle, &host->cur_trans_buf);
- return ESP_OK;
- }
- esp_err_t SPI_MASTER_ISR_ATTR spi_device_polling_end(spi_device_handle_t handle, TickType_t ticks_to_wait)
- {
- SPI_CHECK(handle != NULL, "invalid dev handle", ESP_ERR_INVALID_ARG);
- spi_host_t *host = handle->host;
- assert(host->cur_cs == handle->id);
- if (handle != get_acquiring_dev(host)) {
- spi_device_handle_t toto = get_acquiring_dev(host);
- ESP_LOGW(SPI_TAG, "SPIDEVICEHANDLE id %d (%d) , host %p (%p)", handle->id, toto ? toto->id : -1, handle->host, toto ? toto->host : NULL);
- }
- assert(handle == get_acquiring_dev(host));
- TickType_t start = xTaskGetTickCount();
- while (!spi_hal_usr_is_done(&host->hal)) {
- TickType_t end = xTaskGetTickCount();
- if (end - start > ticks_to_wait) {
- return ESP_ERR_TIMEOUT;
- }
- }
- ESP_LOGV(SPI_TAG, "polling trans done");
- //deal with the in-flight transaction
- spi_post_trans(host);
- //release temporary buffers
- uninstall_priv_desc(&host->cur_trans_buf);
- host->polling = false;
- if (host->device_acquiring_lock != handle) {
- assert(host->device_acquiring_lock == NULL);
- spi_bus_lock_acquire_end(handle->dev_lock);
- }
- return ESP_OK;
- }
- esp_err_t SPI_MASTER_ISR_ATTR spi_device_polling_transmit(spi_device_handle_t handle, spi_transaction_t* trans_desc)
- {
- esp_err_t ret;
- static struct {
- int count;
- SemaphoreHandle_t mutex;
- } ctx[4];
- int id = handle->id;
- ctx[id].count++;
- //if (!ctx[id].mutex) ctx[id].mutex = xSemaphoreCreateMutex();
- //xSemaphoreTake(ctx[id].mutex, portMAX_DELAY);
- if (handle->host->mutex) xSemaphoreTake(handle->host->mutex, portMAX_DELAY);
- if (ctx[id].count > 1) {
- ESP_LOGW(SPI_TAG, "COUNTER of %d is %d %p", id, ctx[id].count, handle->host);
- }
- ret = spi_device_polling_start(handle, trans_desc, portMAX_DELAY);
- if (ctx[id].count > 1) {
- ESP_LOGW(SPI_TAG, "COUNTER of %d REALLY %d %p", id, ctx[id].count, handle->host);
- }
- //if (ret != ESP_OK) return ret;
- if (ret != ESP_OK) {
- ctx[id].count--;
- ESP_LOGE(SPI_TAG, "CAN'T START SPI POLLING %d", id);
- // xSemaphoreGive(ctx[id].mutex);
- if (handle->host->mutex) xSemaphoreGive(handle->host->mutex);
- return ret;
- }
- ret = spi_device_polling_end(handle, portMAX_DELAY);
- ctx[id].count--;
- //xSemaphoreGive(ctx[id].mutex);
- if (handle->host->mutex) xSemaphoreGive(handle->host->mutex);
- return ret;
- // return spi_device_polling_end(handle, portMAX_DELAY);
- }
|