mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
705 lines
28 KiB
C
705 lines
28 KiB
C
/*
|
|
* SPDX-FileCopyrightText: 2010-2023 Espressif Systems (Shanghai) CO LTD
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#include "esp_log.h"
|
|
#include "esp_check.h"
|
|
#include "esp_memory_utils.h"
|
|
#include "freertos/FreeRTOS.h"
|
|
#include "freertos/semphr.h"
|
|
#include "freertos/queue.h"
|
|
#include "freertos/ringbuf.h"
|
|
#include "driver/gpio.h"
|
|
#include "esp_private/spi_common_internal.h"
|
|
#include "esp_private/esp_cache_private.h"
|
|
#include "driver/spi_slave_hd.h"
|
|
#include "hal/spi_slave_hd_hal.h"
|
|
#if SOC_CACHE_INTERNAL_MEM_VIA_L1CACHE
|
|
#include "esp_cache.h"
|
|
#endif
|
|
|
|
#if (SOC_SPI_PERIPH_NUM == 2)
|
|
#define VALID_HOST(x) ((x) == SPI2_HOST)
|
|
#elif (SOC_SPI_PERIPH_NUM == 3)
|
|
#define VALID_HOST(x) ((x) >= SPI2_HOST && (x) <= SPI3_HOST)
|
|
#endif
|
|
#define SPIHD_CHECK(cond,warn,ret) do{if(!(cond)){ESP_LOGE(TAG, warn); return ret;}} while(0)
|
|
|
|
/// struct to hold private transaction data (like tx and rx buffer for DMA).
|
|
typedef struct {
|
|
spi_slave_hd_data_t *trans; //original trans
|
|
void *aligned_buffer; //actually trans buffer (re-malloced if needed)
|
|
} spi_slave_hd_trans_priv_t;
|
|
|
|
typedef struct {
|
|
bool dma_enabled;
|
|
uint16_t internal_mem_align_size;
|
|
int max_transfer_sz;
|
|
uint32_t flags;
|
|
portMUX_TYPE int_spinlock;
|
|
intr_handle_t intr;
|
|
#if SOC_GDMA_SUPPORTED
|
|
gdma_channel_handle_t gdma_handle_tx; //varible for storge gdma handle
|
|
gdma_channel_handle_t gdma_handle_rx;
|
|
#endif
|
|
intr_handle_t intr_dma;
|
|
spi_slave_hd_callback_config_t callback;
|
|
spi_slave_hd_hal_context_t hal;
|
|
bool append_mode;
|
|
|
|
QueueHandle_t tx_trans_queue;
|
|
QueueHandle_t tx_ret_queue;
|
|
QueueHandle_t rx_trans_queue;
|
|
QueueHandle_t rx_ret_queue;
|
|
QueueHandle_t tx_cnting_sem;
|
|
QueueHandle_t rx_cnting_sem;
|
|
|
|
spi_slave_hd_trans_priv_t tx_curr_trans;
|
|
spi_slave_hd_trans_priv_t rx_curr_trans;
|
|
#ifdef CONFIG_PM_ENABLE
|
|
esp_pm_lock_handle_t pm_lock;
|
|
#endif
|
|
} spi_slave_hd_slot_t;
|
|
|
|
static spi_slave_hd_slot_t *spihost[SOC_SPI_PERIPH_NUM];
|
|
static const char TAG[] = "slave_hd";
|
|
|
|
#if SOC_GDMA_SUPPORTED
|
|
static bool spi_gdma_tx_channel_callback(gdma_channel_handle_t dma_chan, gdma_event_data_t *event_data, void *user_data);
|
|
#endif // SOC_GDMA_SUPPORTED
|
|
|
|
static void spi_slave_hd_intr_append(void *arg);
|
|
static void spi_slave_hd_intr_segment(void *arg);
|
|
|
|
esp_err_t spi_slave_hd_init(spi_host_device_t host_id, const spi_bus_config_t *bus_config,
|
|
const spi_slave_hd_slot_config_t *config)
|
|
{
|
|
bool spi_chan_claimed;
|
|
bool append_mode = (config->flags & SPI_SLAVE_HD_APPEND_MODE);
|
|
uint32_t actual_tx_dma_chan = 0;
|
|
uint32_t actual_rx_dma_chan = 0;
|
|
esp_err_t ret = ESP_OK;
|
|
|
|
SPIHD_CHECK(VALID_HOST(host_id), "invalid host", ESP_ERR_INVALID_ARG);
|
|
#if CONFIG_IDF_TARGET_ESP32S2
|
|
SPIHD_CHECK(config->dma_chan == SPI_DMA_DISABLED || config->dma_chan == (int)host_id || config->dma_chan == SPI_DMA_CH_AUTO, "invalid dma channel", ESP_ERR_INVALID_ARG);
|
|
#elif SOC_GDMA_SUPPORTED
|
|
SPIHD_CHECK(config->dma_chan == SPI_DMA_DISABLED || config->dma_chan == SPI_DMA_CH_AUTO, "invalid dma channel, chip only support spi dma channel auto-alloc", ESP_ERR_INVALID_ARG);
|
|
#endif
|
|
|
|
spi_chan_claimed = spicommon_periph_claim(host_id, "slave_hd");
|
|
SPIHD_CHECK(spi_chan_claimed, "host already in use", ESP_ERR_INVALID_STATE);
|
|
|
|
spi_slave_hd_slot_t *host = heap_caps_calloc(1, sizeof(spi_slave_hd_slot_t), MALLOC_CAP_INTERNAL);
|
|
if (host == NULL) {
|
|
ret = ESP_ERR_NO_MEM;
|
|
goto cleanup;
|
|
}
|
|
spihost[host_id] = host;
|
|
host->int_spinlock = (portMUX_TYPE)portMUX_INITIALIZER_UNLOCKED;
|
|
host->dma_enabled = (config->dma_chan != SPI_DMA_DISABLED);
|
|
host->append_mode = append_mode;
|
|
|
|
if (host->dma_enabled) {
|
|
ret = spicommon_dma_chan_alloc(host_id, config->dma_chan, &actual_tx_dma_chan, &actual_rx_dma_chan);
|
|
if (ret != ESP_OK) {
|
|
goto cleanup;
|
|
}
|
|
|
|
//Malloc for all the DMA descriptors
|
|
int dma_desc_ct = (bus_config->max_transfer_sz + DMA_DESCRIPTOR_BUFFER_MAX_SIZE_4B_ALIGNED - 1) / DMA_DESCRIPTOR_BUFFER_MAX_SIZE_4B_ALIGNED;
|
|
if (dma_desc_ct == 0) {
|
|
dma_desc_ct = 1; //default to 4k when max is not given
|
|
}
|
|
host->hal.dma_desc_num = dma_desc_ct;
|
|
spi_dma_desc_t *orig_dmadesc_tx = heap_caps_aligned_alloc(DMA_DESC_MEM_ALIGN_SIZE, sizeof(spi_dma_desc_t) * dma_desc_ct, MALLOC_CAP_DMA);
|
|
spi_dma_desc_t *orig_dmadesc_rx = heap_caps_aligned_alloc(DMA_DESC_MEM_ALIGN_SIZE, sizeof(spi_dma_desc_t) * dma_desc_ct, MALLOC_CAP_DMA);
|
|
|
|
host->hal.dmadesc_tx = heap_caps_malloc(sizeof(spi_slave_hd_hal_desc_append_t) * dma_desc_ct, MALLOC_CAP_DEFAULT);
|
|
host->hal.dmadesc_rx = heap_caps_malloc(sizeof(spi_slave_hd_hal_desc_append_t) * dma_desc_ct, MALLOC_CAP_DEFAULT);
|
|
if (!(host->hal.dmadesc_tx && host->hal.dmadesc_rx && orig_dmadesc_tx && orig_dmadesc_rx)) {
|
|
ret = ESP_ERR_NO_MEM;
|
|
goto cleanup;
|
|
}
|
|
//Pair each desc to each possible trans
|
|
for (int i = 0; i < dma_desc_ct; i ++) {
|
|
host->hal.dmadesc_tx[i].desc = &orig_dmadesc_tx[i];
|
|
host->hal.dmadesc_rx[i].desc = &orig_dmadesc_rx[i];
|
|
}
|
|
|
|
//Get the actual SPI bus transaction size in bytes.
|
|
host->max_transfer_sz = dma_desc_ct * DMA_DESCRIPTOR_BUFFER_MAX_SIZE_4B_ALIGNED;
|
|
#if SOC_CACHE_INTERNAL_MEM_VIA_L1CACHE
|
|
size_t alignment;
|
|
esp_cache_get_alignment(ESP_CACHE_MALLOC_FLAG_DMA, &alignment);
|
|
host->internal_mem_align_size = alignment;
|
|
#else
|
|
host->internal_mem_align_size = 4;
|
|
#endif
|
|
} else {
|
|
//We're limited to non-DMA transfers: the SPI work registers can hold (72 for S2, 64 for others) bytes at most.
|
|
host->max_transfer_sz = 0;
|
|
}
|
|
|
|
ret = spicommon_bus_initialize_io(host_id, bus_config, SPICOMMON_BUSFLAG_SLAVE | bus_config->flags, &host->flags);
|
|
if (ret != ESP_OK) {
|
|
goto cleanup;
|
|
}
|
|
gpio_set_direction(config->spics_io_num, GPIO_MODE_INPUT);
|
|
spicommon_cs_initialize(host_id, config->spics_io_num, 0, !(bus_config->flags & SPICOMMON_BUSFLAG_NATIVE_PINS));
|
|
|
|
spi_slave_hd_hal_config_t hal_config = {
|
|
.host_id = host_id,
|
|
.dma_in = SPI_LL_GET_HW(host_id),
|
|
.dma_out = SPI_LL_GET_HW(host_id),
|
|
.dma_enabled = host->dma_enabled,
|
|
.tx_dma_chan = actual_tx_dma_chan,
|
|
.rx_dma_chan = actual_rx_dma_chan,
|
|
.append_mode = append_mode,
|
|
.mode = config->mode,
|
|
.tx_lsbfirst = (config->flags & SPI_SLAVE_HD_RXBIT_LSBFIRST),
|
|
.rx_lsbfirst = (config->flags & SPI_SLAVE_HD_TXBIT_LSBFIRST),
|
|
};
|
|
|
|
//Init the hal according to the hal_config set above
|
|
spi_slave_hd_hal_init(&host->hal, &hal_config);
|
|
|
|
#ifdef CONFIG_PM_ENABLE
|
|
ret = esp_pm_lock_create(ESP_PM_APB_FREQ_MAX, 0, "spi_slave", &host->pm_lock);
|
|
if (ret != ESP_OK) {
|
|
goto cleanup;
|
|
}
|
|
// Lock APB frequency while SPI slave driver is in use
|
|
esp_pm_lock_acquire(host->pm_lock);
|
|
#endif //CONFIG_PM_ENABLE
|
|
|
|
//Create Queues and Semaphores
|
|
host->tx_ret_queue = xQueueCreate(config->queue_size, sizeof(spi_slave_hd_trans_priv_t));
|
|
host->rx_ret_queue = xQueueCreate(config->queue_size, sizeof(spi_slave_hd_trans_priv_t));
|
|
if (!host->append_mode) {
|
|
host->tx_trans_queue = xQueueCreate(config->queue_size, sizeof(spi_slave_hd_trans_priv_t));
|
|
host->rx_trans_queue = xQueueCreate(config->queue_size, sizeof(spi_slave_hd_trans_priv_t));
|
|
if (!host->tx_trans_queue || !host->rx_trans_queue) {
|
|
ret = ESP_ERR_NO_MEM;
|
|
goto cleanup;
|
|
}
|
|
} else {
|
|
host->tx_cnting_sem = xSemaphoreCreateCounting(config->queue_size, config->queue_size);
|
|
host->rx_cnting_sem = xSemaphoreCreateCounting(config->queue_size, config->queue_size);
|
|
if (!host->tx_cnting_sem || !host->rx_cnting_sem) {
|
|
ret = ESP_ERR_NO_MEM;
|
|
goto cleanup;
|
|
}
|
|
}
|
|
|
|
//Alloc intr
|
|
if (!host->append_mode) {
|
|
//Seg mode
|
|
ret = esp_intr_alloc(spicommon_irqsource_for_host(host_id), 0, spi_slave_hd_intr_segment,
|
|
(void *)host, &host->intr);
|
|
if (ret != ESP_OK) {
|
|
goto cleanup;
|
|
}
|
|
ret = esp_intr_alloc(spicommon_irqdma_source_for_host(host_id), 0, spi_slave_hd_intr_segment,
|
|
(void *)host, &host->intr_dma);
|
|
if (ret != ESP_OK) {
|
|
goto cleanup;
|
|
}
|
|
} else {
|
|
//Append mode
|
|
//On ESP32S2, `cmd7` and `cmd8` interrupts registered as spi rx & tx interrupt are from SPI DMA interrupt source.
|
|
//although the `cmd7` and `cmd8` interrupt on spi are registered independently here
|
|
ret = esp_intr_alloc(spicommon_irqsource_for_host(host_id), 0, spi_slave_hd_intr_append,
|
|
(void *)host, &host->intr);
|
|
if (ret != ESP_OK) {
|
|
goto cleanup;
|
|
}
|
|
#if SOC_GDMA_SUPPORTED
|
|
// config gmda and ISR callback for gdma supported chip
|
|
spicommon_gdma_get_handle(host_id, &host->gdma_handle_tx, GDMA_CHANNEL_DIRECTION_TX);
|
|
gdma_tx_event_callbacks_t tx_cbs = {
|
|
.on_trans_eof = spi_gdma_tx_channel_callback
|
|
};
|
|
gdma_register_tx_event_callbacks(host->gdma_handle_tx, &tx_cbs, host);
|
|
#else
|
|
ret = esp_intr_alloc(spicommon_irqdma_source_for_host(host_id), 0, spi_slave_hd_intr_append,
|
|
(void *)host, &host->intr_dma);
|
|
if (ret != ESP_OK) {
|
|
goto cleanup;
|
|
}
|
|
#endif //#if SOC_GDMA_SUPPORTED
|
|
}
|
|
//Init callbacks
|
|
memcpy((uint8_t *)&host->callback, (uint8_t *)&config->cb_config, sizeof(spi_slave_hd_callback_config_t));
|
|
spi_event_t event = 0;
|
|
if (host->callback.cb_buffer_tx != NULL) event |= SPI_EV_BUF_TX;
|
|
if (host->callback.cb_buffer_rx != NULL) event |= SPI_EV_BUF_RX;
|
|
if (host->callback.cb_cmd9 != NULL) event |= SPI_EV_CMD9;
|
|
if (host->callback.cb_cmdA != NULL) event |= SPI_EV_CMDA;
|
|
spi_slave_hd_hal_enable_event_intr(&host->hal, event);
|
|
|
|
return ESP_OK;
|
|
|
|
cleanup:
|
|
// Memory free is in the deinit function
|
|
spi_slave_hd_deinit(host_id);
|
|
return ret;
|
|
}
|
|
|
|
esp_err_t spi_slave_hd_deinit(spi_host_device_t host_id)
|
|
{
|
|
spi_slave_hd_slot_t *host = spihost[host_id];
|
|
if (host == NULL) return ESP_ERR_INVALID_ARG;
|
|
|
|
if (host->tx_trans_queue) vQueueDelete(host->tx_trans_queue);
|
|
if (host->tx_ret_queue) vQueueDelete(host->tx_ret_queue);
|
|
if (host->rx_trans_queue) vQueueDelete(host->rx_trans_queue);
|
|
if (host->rx_ret_queue) vQueueDelete(host->rx_ret_queue);
|
|
if (host->tx_cnting_sem) vSemaphoreDelete(host->tx_cnting_sem);
|
|
if (host->rx_cnting_sem) vSemaphoreDelete(host->rx_cnting_sem);
|
|
esp_intr_free(host->intr);
|
|
esp_intr_free(host->intr_dma);
|
|
#ifdef CONFIG_PM_ENABLE
|
|
if (host->pm_lock) {
|
|
esp_pm_lock_release(host->pm_lock);
|
|
esp_pm_lock_delete(host->pm_lock);
|
|
}
|
|
#endif
|
|
|
|
spicommon_periph_free(host_id);
|
|
if (host->dma_enabled) {
|
|
free(host->hal.dmadesc_tx->desc);
|
|
free(host->hal.dmadesc_rx->desc);
|
|
free(host->hal.dmadesc_tx);
|
|
free(host->hal.dmadesc_rx);
|
|
spicommon_dma_chan_free(host_id);
|
|
}
|
|
free(host);
|
|
spihost[host_id] = NULL;
|
|
return ESP_OK;
|
|
}
|
|
|
|
static void tx_invoke(spi_slave_hd_slot_t *host)
|
|
{
|
|
portENTER_CRITICAL(&host->int_spinlock);
|
|
spi_slave_hd_hal_invoke_event_intr(&host->hal, SPI_EV_SEND);
|
|
portEXIT_CRITICAL(&host->int_spinlock);
|
|
}
|
|
|
|
static void rx_invoke(spi_slave_hd_slot_t *host)
|
|
{
|
|
portENTER_CRITICAL(&host->int_spinlock);
|
|
spi_slave_hd_hal_invoke_event_intr(&host->hal, SPI_EV_RECV);
|
|
portEXIT_CRITICAL(&host->int_spinlock);
|
|
}
|
|
|
|
static inline IRAM_ATTR BaseType_t intr_check_clear_callback(spi_slave_hd_slot_t *host, spi_event_t ev, slave_cb_t cb)
|
|
{
|
|
BaseType_t cb_awoken = pdFALSE;
|
|
if (spi_slave_hd_hal_check_clear_event(&host->hal, ev) && cb) {
|
|
spi_slave_hd_event_t event = {.event = ev};
|
|
cb(host->callback.arg, &event, &cb_awoken);
|
|
}
|
|
return cb_awoken;
|
|
}
|
|
|
|
static IRAM_ATTR void spi_slave_hd_intr_segment(void *arg)
|
|
{
|
|
spi_slave_hd_slot_t *host = (spi_slave_hd_slot_t *)arg;
|
|
spi_slave_hd_callback_config_t *callback = &host->callback;
|
|
spi_slave_hd_hal_context_t *hal = &host->hal;
|
|
BaseType_t awoken = pdFALSE;
|
|
BaseType_t ret;
|
|
|
|
awoken |= intr_check_clear_callback(host, SPI_EV_BUF_TX, callback->cb_buffer_tx);
|
|
awoken |= intr_check_clear_callback(host, SPI_EV_BUF_RX, callback->cb_buffer_rx);
|
|
awoken |= intr_check_clear_callback(host, SPI_EV_CMD9, callback->cb_cmd9);
|
|
awoken |= intr_check_clear_callback(host, SPI_EV_CMDA, callback->cb_cmdA);
|
|
|
|
bool tx_done = false;
|
|
bool rx_done = false;
|
|
|
|
portENTER_CRITICAL_ISR(&host->int_spinlock);
|
|
if (host->tx_curr_trans.trans && spi_slave_hd_hal_check_disable_event(hal, SPI_EV_SEND)) {
|
|
tx_done = true;
|
|
}
|
|
if (host->rx_curr_trans.trans && spi_slave_hd_hal_check_disable_event(hal, SPI_EV_RECV)) {
|
|
rx_done = true;
|
|
}
|
|
portEXIT_CRITICAL_ISR(&host->int_spinlock);
|
|
|
|
if (tx_done) {
|
|
bool ret_queue = true;
|
|
if (callback->cb_sent) {
|
|
spi_slave_hd_event_t ev = {
|
|
.event = SPI_EV_SEND,
|
|
.trans = host->tx_curr_trans.trans,
|
|
};
|
|
BaseType_t cb_awoken = pdFALSE;
|
|
ret_queue = callback->cb_sent(callback->arg, &ev, &cb_awoken);
|
|
awoken |= cb_awoken;
|
|
}
|
|
if (ret_queue) {
|
|
ret = xQueueSendFromISR(host->tx_ret_queue, &host->tx_curr_trans, &awoken);
|
|
// The return queue is full. All the data remian in send_queue + ret_queue should not be more than the queue length.
|
|
assert(ret == pdTRUE);
|
|
}
|
|
host->tx_curr_trans.trans = NULL;
|
|
}
|
|
if (rx_done) {
|
|
bool ret_queue = true;
|
|
host->rx_curr_trans.trans->trans_len = spi_slave_hd_hal_rxdma_seg_get_len(hal);
|
|
#if SOC_CACHE_INTERNAL_MEM_VIA_L1CACHE //invalidate here to let user access rx data in post_cb if possible
|
|
uint16_t alignment = host->internal_mem_align_size;
|
|
uint32_t buff_len = (host->rx_curr_trans.trans->len + alignment - 1) & (~(alignment - 1));
|
|
esp_err_t ret = esp_cache_msync((void *)host->rx_curr_trans.aligned_buffer, buff_len, ESP_CACHE_MSYNC_FLAG_DIR_M2C);
|
|
assert(ret == ESP_OK);
|
|
#endif
|
|
if (callback->cb_recv) {
|
|
spi_slave_hd_event_t ev = {
|
|
.event = SPI_EV_RECV,
|
|
.trans = host->rx_curr_trans.trans,
|
|
};
|
|
BaseType_t cb_awoken = pdFALSE;
|
|
ret_queue = callback->cb_recv(callback->arg, &ev, &cb_awoken);
|
|
awoken |= cb_awoken;
|
|
}
|
|
if (ret_queue) {
|
|
ret = xQueueSendFromISR(host->rx_ret_queue, &host->rx_curr_trans, &awoken);
|
|
// The return queue is full. All the data remian in send_queue + ret_queue should not be more than the queue length.
|
|
assert(ret == pdTRUE);
|
|
}
|
|
host->rx_curr_trans.trans = NULL;
|
|
}
|
|
|
|
bool tx_sent = false;
|
|
bool rx_sent = false;
|
|
if (!host->tx_curr_trans.trans) {
|
|
ret = xQueueReceiveFromISR(host->tx_trans_queue, &host->tx_curr_trans, &awoken);
|
|
if (ret == pdTRUE) {
|
|
spi_slave_hd_hal_txdma(hal, host->tx_curr_trans.aligned_buffer, host->tx_curr_trans.trans->len);
|
|
tx_sent = true;
|
|
if (callback->cb_send_dma_ready) {
|
|
spi_slave_hd_event_t ev = {
|
|
.event = SPI_EV_SEND_DMA_READY,
|
|
.trans = host->tx_curr_trans.trans,
|
|
};
|
|
BaseType_t cb_awoken = pdFALSE;
|
|
callback->cb_send_dma_ready(callback->arg, &ev, &cb_awoken);
|
|
awoken |= cb_awoken;
|
|
}
|
|
}
|
|
}
|
|
if (!host->rx_curr_trans.trans) {
|
|
ret = xQueueReceiveFromISR(host->rx_trans_queue, &host->rx_curr_trans, &awoken);
|
|
if (ret == pdTRUE) {
|
|
spi_slave_hd_hal_rxdma(hal, host->rx_curr_trans.aligned_buffer, host->rx_curr_trans.trans->len);
|
|
rx_sent = true;
|
|
if (callback->cb_recv_dma_ready) {
|
|
spi_slave_hd_event_t ev = {
|
|
.event = SPI_EV_RECV_DMA_READY,
|
|
.trans = host->rx_curr_trans.trans,
|
|
};
|
|
BaseType_t cb_awoken = pdFALSE;
|
|
callback->cb_recv_dma_ready(callback->arg, &ev, &cb_awoken);
|
|
awoken |= cb_awoken;
|
|
}
|
|
}
|
|
}
|
|
|
|
portENTER_CRITICAL_ISR(&host->int_spinlock);
|
|
if (tx_sent) {
|
|
spi_slave_hd_hal_enable_event_intr(hal, SPI_EV_SEND);
|
|
}
|
|
if (rx_sent) {
|
|
spi_slave_hd_hal_enable_event_intr(hal, SPI_EV_RECV);
|
|
}
|
|
portEXIT_CRITICAL_ISR(&host->int_spinlock);
|
|
|
|
if (awoken == pdTRUE) portYIELD_FROM_ISR();
|
|
}
|
|
|
|
static IRAM_ATTR void spi_slave_hd_append_tx_isr(void *arg)
|
|
{
|
|
spi_slave_hd_slot_t *host = (spi_slave_hd_slot_t*)arg;
|
|
spi_slave_hd_callback_config_t *callback = &host->callback;
|
|
spi_slave_hd_hal_context_t *hal = &host->hal;
|
|
BaseType_t awoken = pdFALSE;
|
|
BaseType_t ret __attribute__((unused));
|
|
|
|
spi_slave_hd_trans_priv_t ret_priv_trans;
|
|
while (1) {
|
|
bool trans_finish = false;
|
|
trans_finish = spi_slave_hd_hal_get_tx_finished_trans(hal, (void **)&ret_priv_trans.trans, &ret_priv_trans.aligned_buffer);
|
|
if (!trans_finish) {
|
|
break;
|
|
}
|
|
|
|
bool ret_queue = true;
|
|
if (callback->cb_sent) {
|
|
spi_slave_hd_event_t ev = {
|
|
.event = SPI_EV_SEND,
|
|
.trans = ret_priv_trans.trans,
|
|
};
|
|
BaseType_t cb_awoken = pdFALSE;
|
|
ret_queue = callback->cb_sent(callback->arg, &ev, &cb_awoken);
|
|
awoken |= cb_awoken;
|
|
}
|
|
|
|
if (ret_queue) {
|
|
ret = xQueueSendFromISR(host->tx_ret_queue, &ret_priv_trans, &awoken);
|
|
assert(ret == pdTRUE);
|
|
|
|
ret = xSemaphoreGiveFromISR(host->tx_cnting_sem, &awoken);
|
|
assert(ret == pdTRUE);
|
|
}
|
|
}
|
|
if (awoken==pdTRUE) portYIELD_FROM_ISR();
|
|
}
|
|
|
|
static IRAM_ATTR void spi_slave_hd_append_rx_isr(void *arg)
|
|
{
|
|
spi_slave_hd_slot_t *host = (spi_slave_hd_slot_t*)arg;
|
|
spi_slave_hd_callback_config_t *callback = &host->callback;
|
|
spi_slave_hd_hal_context_t *hal = &host->hal;
|
|
BaseType_t awoken = pdFALSE;
|
|
BaseType_t ret __attribute__((unused));
|
|
|
|
|
|
spi_slave_hd_trans_priv_t ret_priv_trans;
|
|
size_t trans_len;
|
|
while (1) {
|
|
bool trans_finish = false;
|
|
trans_finish = spi_slave_hd_hal_get_rx_finished_trans(hal, (void **)&ret_priv_trans.trans, &ret_priv_trans.aligned_buffer, &trans_len);
|
|
if (!trans_finish) {
|
|
break;
|
|
}
|
|
ret_priv_trans.trans->trans_len = trans_len;
|
|
#if SOC_CACHE_INTERNAL_MEM_VIA_L1CACHE //invalidate here to let user access rx data in post_cb if possible
|
|
uint16_t alignment = host->internal_mem_align_size;
|
|
uint32_t buff_len = (ret_priv_trans.trans->len + alignment - 1) & (~(alignment - 1));
|
|
esp_err_t ret = esp_cache_msync((void *)ret_priv_trans.aligned_buffer, buff_len, ESP_CACHE_MSYNC_FLAG_DIR_M2C);
|
|
assert(ret == ESP_OK);
|
|
#endif
|
|
bool ret_queue = true;
|
|
if (callback->cb_recv) {
|
|
spi_slave_hd_event_t ev = {
|
|
.event = SPI_EV_RECV,
|
|
.trans = ret_priv_trans.trans,
|
|
};
|
|
BaseType_t cb_awoken = pdFALSE;
|
|
ret_queue = callback->cb_recv(callback->arg, &ev, &cb_awoken);
|
|
awoken |= cb_awoken;
|
|
}
|
|
|
|
if (ret_queue) {
|
|
ret = xQueueSendFromISR(host->rx_ret_queue, &ret_priv_trans, &awoken);
|
|
assert(ret == pdTRUE);
|
|
|
|
ret = xSemaphoreGiveFromISR(host->rx_cnting_sem, &awoken);
|
|
assert(ret == pdTRUE);
|
|
}
|
|
}
|
|
if (awoken==pdTRUE) portYIELD_FROM_ISR();
|
|
}
|
|
|
|
#if SOC_GDMA_SUPPORTED
|
|
// 'spi_gdma_tx_channel_callback' used as spi tx interrupt of append mode on gdma supported target
|
|
static IRAM_ATTR bool spi_gdma_tx_channel_callback(gdma_channel_handle_t dma_chan, gdma_event_data_t *event_data, void *user_data)
|
|
{
|
|
assert(event_data);
|
|
spi_slave_hd_append_tx_isr(user_data);
|
|
return true;
|
|
}
|
|
#endif // SOC_GDMA_SUPPORTED
|
|
|
|
// SPI slave hd append isr entrance
|
|
static IRAM_ATTR void spi_slave_hd_intr_append(void *arg)
|
|
{
|
|
spi_slave_hd_slot_t *host = (spi_slave_hd_slot_t *)arg;
|
|
spi_slave_hd_hal_context_t *hal = &host->hal;
|
|
bool rx_done = false;
|
|
bool tx_done = false;
|
|
|
|
// Append Mode
|
|
portENTER_CRITICAL_ISR(&host->int_spinlock);
|
|
if (spi_slave_hd_hal_check_clear_event(hal, SPI_EV_RECV)) {
|
|
rx_done = true;
|
|
}
|
|
if (spi_slave_hd_hal_check_clear_event(hal, SPI_EV_SEND)) {
|
|
// NOTE: on gdma supported chips, this flag should NOT checked out, handle entrance is only `spi_gdma_tx_channel_callback`,
|
|
// otherwise, here should be target limited.
|
|
tx_done = true;
|
|
}
|
|
portEXIT_CRITICAL_ISR(&host->int_spinlock);
|
|
|
|
if (rx_done) {
|
|
spi_slave_hd_append_rx_isr(arg);
|
|
}
|
|
if (tx_done) {
|
|
spi_slave_hd_append_tx_isr(arg);
|
|
}
|
|
}
|
|
|
|
static void s_spi_slave_hd_destroy_priv_trans(spi_host_device_t host, spi_slave_hd_trans_priv_t *priv_trans, spi_slave_chan_t chan)
|
|
{
|
|
#if SOC_CACHE_INTERNAL_MEM_VIA_L1CACHE
|
|
spi_slave_hd_data_t *orig_trans = priv_trans->trans;
|
|
if (priv_trans->aligned_buffer != orig_trans->data) {
|
|
if (chan == SPI_SLAVE_CHAN_RX) {
|
|
memcpy(orig_trans->data, priv_trans->aligned_buffer, orig_trans->trans_len);
|
|
}
|
|
free(priv_trans->aligned_buffer);
|
|
}
|
|
#endif //SOC_CACHE_INTERNAL_MEM_VIA_L1CACHE
|
|
}
|
|
|
|
static esp_err_t s_spi_slave_hd_setup_priv_trans(spi_host_device_t host, spi_slave_hd_trans_priv_t *priv_trans, spi_slave_chan_t chan)
|
|
{
|
|
spi_slave_hd_data_t *orig_trans = priv_trans->trans;
|
|
|
|
priv_trans->aligned_buffer = orig_trans->data;
|
|
|
|
#if SOC_CACHE_INTERNAL_MEM_VIA_L1CACHE
|
|
uint16_t alignment = spihost[host]->internal_mem_align_size;
|
|
uint32_t byte_len = orig_trans->len;
|
|
|
|
if (((uint32_t)orig_trans->data) | (byte_len & (alignment - 1))) {
|
|
ESP_RETURN_ON_FALSE(orig_trans->flags & SPI_SLAVE_HD_TRANS_DMA_BUFFER_ALIGN_AUTO, ESP_ERR_INVALID_ARG, TAG, "data buffer addr&len not align to %d, or not dma_capable", alignment);
|
|
byte_len = (byte_len + alignment - 1) & (~(alignment - 1)); // up align to alignment
|
|
ESP_LOGD(TAG, "Re-allocate %s buffer of len %ld for DMA", (chan == SPI_SLAVE_CHAN_TX)?"TX":"RX", byte_len);
|
|
priv_trans->aligned_buffer = heap_caps_aligned_alloc(64, byte_len, MALLOC_CAP_DMA);
|
|
if (priv_trans->aligned_buffer == NULL) {
|
|
return ESP_ERR_NO_MEM;
|
|
}
|
|
}
|
|
if (chan == SPI_SLAVE_CHAN_TX) {
|
|
memcpy(priv_trans->aligned_buffer, orig_trans->data, orig_trans->len);
|
|
esp_err_t ret = esp_cache_msync((void *)priv_trans->aligned_buffer, byte_len, ESP_CACHE_MSYNC_FLAG_DIR_C2M);
|
|
ESP_RETURN_ON_FALSE(ESP_OK == ret, ESP_ERR_INVALID_STATE, TAG, "mem sync c2m(writeback) fail");
|
|
}
|
|
#endif //SOC_CACHE_INTERNAL_MEM_VIA_L1CACHE
|
|
return ESP_OK;
|
|
}
|
|
|
|
static esp_err_t get_ret_queue_result(spi_host_device_t host_id, spi_slave_chan_t chan, spi_slave_hd_data_t **out_trans, TickType_t timeout)
|
|
{
|
|
spi_slave_hd_slot_t *host = spihost[host_id];
|
|
spi_slave_hd_trans_priv_t hd_priv_trans;
|
|
BaseType_t ret;
|
|
|
|
if (chan == SPI_SLAVE_CHAN_TX) {
|
|
ret = xQueueReceive(host->tx_ret_queue, &hd_priv_trans, timeout);
|
|
} else {
|
|
ret = xQueueReceive(host->rx_ret_queue, &hd_priv_trans, timeout);
|
|
}
|
|
if (ret == pdFALSE) {
|
|
return ESP_ERR_TIMEOUT;
|
|
}
|
|
|
|
s_spi_slave_hd_destroy_priv_trans(host_id, &hd_priv_trans, chan);
|
|
*out_trans = hd_priv_trans.trans;
|
|
return ESP_OK;
|
|
}
|
|
|
|
//---------------------------------------------------------Segment Mode Transaction APIs-----------------------------------------------------------//
|
|
esp_err_t spi_slave_hd_queue_trans(spi_host_device_t host_id, spi_slave_chan_t chan, spi_slave_hd_data_t *trans, TickType_t timeout)
|
|
{
|
|
spi_slave_hd_slot_t *host = spihost[host_id];
|
|
|
|
SPIHD_CHECK(host->append_mode == 0, "This API should be used for SPI Slave HD Segment Mode", ESP_ERR_INVALID_STATE);
|
|
SPIHD_CHECK(esp_ptr_dma_capable(trans->data), "The buffer should be DMA capable.", ESP_ERR_INVALID_ARG);
|
|
SPIHD_CHECK(trans->len <= host->max_transfer_sz && trans->len > 0, "Invalid buffer size", ESP_ERR_INVALID_ARG);
|
|
SPIHD_CHECK(chan == SPI_SLAVE_CHAN_TX || chan == SPI_SLAVE_CHAN_RX, "Invalid channel", ESP_ERR_INVALID_ARG);
|
|
|
|
spi_slave_hd_trans_priv_t hd_priv_trans = {.trans = trans};
|
|
SPIHD_CHECK( ESP_OK == s_spi_slave_hd_setup_priv_trans(host_id, &hd_priv_trans, chan), "No mem to allocate new cache buffer", ESP_ERR_NO_MEM);
|
|
|
|
if (chan == SPI_SLAVE_CHAN_TX) {
|
|
BaseType_t ret = xQueueSend(host->tx_trans_queue, &hd_priv_trans, timeout);
|
|
if (ret == pdFALSE) {
|
|
return ESP_ERR_TIMEOUT;
|
|
}
|
|
tx_invoke(host);
|
|
} else { //chan == SPI_SLAVE_CHAN_RX
|
|
BaseType_t ret = xQueueSend(host->rx_trans_queue, &hd_priv_trans, timeout);
|
|
if (ret == pdFALSE) {
|
|
return ESP_ERR_TIMEOUT;
|
|
}
|
|
rx_invoke(host);
|
|
}
|
|
return ESP_OK;
|
|
}
|
|
|
|
esp_err_t spi_slave_hd_get_trans_res(spi_host_device_t host_id, spi_slave_chan_t chan, spi_slave_hd_data_t **out_trans, TickType_t timeout)
|
|
{
|
|
esp_err_t ret;
|
|
spi_slave_hd_slot_t *host = spihost[host_id];
|
|
|
|
SPIHD_CHECK(host->append_mode == 0, "This API should be used for SPI Slave HD Segment Mode", ESP_ERR_INVALID_STATE);
|
|
SPIHD_CHECK(chan == SPI_SLAVE_CHAN_TX || chan == SPI_SLAVE_CHAN_RX, "Invalid channel", ESP_ERR_INVALID_ARG);
|
|
ret = get_ret_queue_result(host_id, chan, out_trans, timeout);
|
|
|
|
return ret;
|
|
}
|
|
|
|
void spi_slave_hd_read_buffer(spi_host_device_t host_id, int addr, uint8_t *out_data, size_t len)
|
|
{
|
|
spi_slave_hd_hal_read_buffer(&spihost[host_id]->hal, addr, out_data, len);
|
|
}
|
|
|
|
void spi_slave_hd_write_buffer(spi_host_device_t host_id, int addr, uint8_t *data, size_t len)
|
|
{
|
|
spi_slave_hd_hal_write_buffer(&spihost[host_id]->hal, addr, data, len);
|
|
}
|
|
|
|
//---------------------------------------------------------Append Mode Transaction APIs-----------------------------------------------------------//
|
|
esp_err_t spi_slave_hd_append_trans(spi_host_device_t host_id, spi_slave_chan_t chan, spi_slave_hd_data_t *trans, TickType_t timeout)
|
|
{
|
|
esp_err_t err;
|
|
spi_slave_hd_slot_t *host = spihost[host_id];
|
|
spi_slave_hd_hal_context_t *hal = &host->hal;
|
|
|
|
SPIHD_CHECK(trans->len <= SPI_MAX_DMA_LEN, "Currently we only support transaction with data length within 4092 bytes", ESP_ERR_INVALID_ARG);
|
|
SPIHD_CHECK(host->append_mode == 1, "This API should be used for SPI Slave HD Append Mode", ESP_ERR_INVALID_STATE);
|
|
SPIHD_CHECK(esp_ptr_dma_capable(trans->data), "The buffer should be DMA capable.", ESP_ERR_INVALID_ARG);
|
|
SPIHD_CHECK(trans->len <= host->max_transfer_sz && trans->len > 0, "Invalid buffer size", ESP_ERR_INVALID_ARG);
|
|
SPIHD_CHECK(chan == SPI_SLAVE_CHAN_TX || chan == SPI_SLAVE_CHAN_RX, "Invalid channel", ESP_ERR_INVALID_ARG);
|
|
|
|
spi_slave_hd_trans_priv_t hd_priv_trans = {.trans = trans};
|
|
SPIHD_CHECK( ESP_OK == s_spi_slave_hd_setup_priv_trans(host_id, &hd_priv_trans, chan), "No mem to allocate new cache buffer", ESP_ERR_NO_MEM);
|
|
|
|
if (chan == SPI_SLAVE_CHAN_TX) {
|
|
BaseType_t ret = xSemaphoreTake(host->tx_cnting_sem, timeout);
|
|
if (ret == pdFALSE) {
|
|
return ESP_ERR_TIMEOUT;
|
|
}
|
|
err = spi_slave_hd_hal_txdma_append(hal, hd_priv_trans.aligned_buffer, trans->len, trans);
|
|
} else {
|
|
BaseType_t ret = xSemaphoreTake(host->rx_cnting_sem, timeout);
|
|
if (ret == pdFALSE) {
|
|
return ESP_ERR_TIMEOUT;
|
|
}
|
|
err = spi_slave_hd_hal_rxdma_append(hal, hd_priv_trans.aligned_buffer, trans->len, trans);
|
|
}
|
|
if (err != ESP_OK) {
|
|
ESP_LOGE(TAG, "Wait until the DMA finishes its transaction");
|
|
}
|
|
|
|
return err;
|
|
}
|
|
|
|
esp_err_t spi_slave_hd_get_append_trans_res(spi_host_device_t host_id, spi_slave_chan_t chan, spi_slave_hd_data_t **out_trans, TickType_t timeout)
|
|
{
|
|
esp_err_t ret;
|
|
spi_slave_hd_slot_t *host = spihost[host_id];
|
|
|
|
SPIHD_CHECK(host->append_mode == 1, "This API should be used for SPI Slave HD Append Mode", ESP_ERR_INVALID_STATE);
|
|
SPIHD_CHECK(chan == SPI_SLAVE_CHAN_TX || chan == SPI_SLAVE_CHAN_RX, "Invalid channel", ESP_ERR_INVALID_ARG);
|
|
ret = get_ret_queue_result(host_id, chan, out_trans, timeout);
|
|
|
|
return ret;
|
|
}
|