mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
Merge branch 'bugfix/i2s_receive_data_lost' into 'master'
i2s: fix message queue overflow condition Closes IDFGH-5854 See merge request espressif/esp-idf!15551
This commit is contained in:
commit
4586bd7ec8
@ -347,27 +347,33 @@ esp_err_t i2s_set_pin(i2s_port_t i2s_num, const i2s_pin_config_t *pin)
|
|||||||
static bool IRAM_ATTR i2s_dma_rx_callback(gdma_channel_handle_t dma_chan, gdma_event_data_t *event_data, void *user_data)
|
static bool IRAM_ATTR i2s_dma_rx_callback(gdma_channel_handle_t dma_chan, gdma_event_data_t *event_data, void *user_data)
|
||||||
{
|
{
|
||||||
i2s_obj_t *p_i2s = (i2s_obj_t *) user_data;
|
i2s_obj_t *p_i2s = (i2s_obj_t *) user_data;
|
||||||
portBASE_TYPE high_priority_task_awoken = 0;
|
portBASE_TYPE need_awoke = 0;
|
||||||
BaseType_t ret = 0;
|
portBASE_TYPE tmp = 0;
|
||||||
int dummy;
|
int dummy;
|
||||||
i2s_event_t i2s_event;
|
i2s_event_t i2s_event;
|
||||||
uint32_t finish_desc;
|
uint32_t finish_desc;
|
||||||
|
|
||||||
if (p_i2s->rx) {
|
if (p_i2s->rx) {
|
||||||
finish_desc = event_data->rx_eof_desc_addr;
|
finish_desc = event_data->rx_eof_desc_addr;
|
||||||
|
i2s_event.size = ((lldesc_t *)finish_desc)->size;
|
||||||
if (xQueueIsQueueFullFromISR(p_i2s->rx->queue)) {
|
if (xQueueIsQueueFullFromISR(p_i2s->rx->queue)) {
|
||||||
xQueueReceiveFromISR(p_i2s->rx->queue, &dummy, &high_priority_task_awoken);
|
xQueueReceiveFromISR(p_i2s->rx->queue, &dummy, &tmp);
|
||||||
}
|
need_awoke |= tmp;
|
||||||
ret = xQueueSendFromISR(p_i2s->rx->queue, &(((lldesc_t *)finish_desc)->buf), &high_priority_task_awoken);
|
if (p_i2s->i2s_queue) {
|
||||||
if (p_i2s->i2s_queue) {
|
i2s_event.type = I2S_EVENT_RX_Q_OVF;
|
||||||
i2s_event.type = (ret == pdPASS) ? I2S_EVENT_RX_DONE : I2S_EVENT_RX_Q_OVF;
|
xQueueSendFromISR(p_i2s->i2s_queue, (void * )&i2s_event, &tmp);
|
||||||
if (p_i2s->i2s_queue && xQueueIsQueueFullFromISR(p_i2s->i2s_queue)) {
|
need_awoke |= tmp;
|
||||||
xQueueReceiveFromISR(p_i2s->i2s_queue, &dummy, &high_priority_task_awoken);
|
|
||||||
}
|
}
|
||||||
xQueueSendFromISR(p_i2s->i2s_queue, (void * )&i2s_event, &high_priority_task_awoken);
|
}
|
||||||
|
xQueueSendFromISR(p_i2s->rx->queue, &(((lldesc_t *)finish_desc)->buf), &tmp);
|
||||||
|
need_awoke |= tmp;
|
||||||
|
if (p_i2s->i2s_queue) {
|
||||||
|
i2s_event.type = I2S_EVENT_RX_DONE;
|
||||||
|
xQueueSendFromISR(p_i2s->i2s_queue, (void * )&i2s_event, &tmp);
|
||||||
|
need_awoke |= tmp;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return high_priority_task_awoken;
|
return need_awoke;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -383,29 +389,36 @@ static bool IRAM_ATTR i2s_dma_rx_callback(gdma_channel_handle_t dma_chan, gdma_e
|
|||||||
static bool IRAM_ATTR i2s_dma_tx_callback(gdma_channel_handle_t dma_chan, gdma_event_data_t *event_data, void *user_data)
|
static bool IRAM_ATTR i2s_dma_tx_callback(gdma_channel_handle_t dma_chan, gdma_event_data_t *event_data, void *user_data)
|
||||||
{
|
{
|
||||||
i2s_obj_t *p_i2s = (i2s_obj_t *) user_data;
|
i2s_obj_t *p_i2s = (i2s_obj_t *) user_data;
|
||||||
portBASE_TYPE high_priority_task_awoken = 0;
|
portBASE_TYPE need_awoke = 0;
|
||||||
BaseType_t ret;
|
portBASE_TYPE tmp = 0;
|
||||||
int dummy;
|
int dummy;
|
||||||
i2s_event_t i2s_event;
|
i2s_event_t i2s_event;
|
||||||
uint32_t finish_desc;
|
uint32_t finish_desc;
|
||||||
if (p_i2s->tx) {
|
if (p_i2s->tx) {
|
||||||
finish_desc = event_data->tx_eof_desc_addr;
|
finish_desc = event_data->tx_eof_desc_addr;
|
||||||
|
i2s_event.size = ((lldesc_t *)finish_desc)->size;
|
||||||
if (xQueueIsQueueFullFromISR(p_i2s->tx->queue)) {
|
if (xQueueIsQueueFullFromISR(p_i2s->tx->queue)) {
|
||||||
xQueueReceiveFromISR(p_i2s->tx->queue, &dummy, &high_priority_task_awoken);
|
xQueueReceiveFromISR(p_i2s->tx->queue, &dummy, &tmp);
|
||||||
|
need_awoke |= tmp;
|
||||||
if (p_i2s->tx_desc_auto_clear) {
|
if (p_i2s->tx_desc_auto_clear) {
|
||||||
memset((void *) dummy, 0, p_i2s->tx->buf_size);
|
memset((void *) dummy, 0, p_i2s->tx->buf_size);
|
||||||
}
|
}
|
||||||
}
|
if (p_i2s->i2s_queue) {
|
||||||
ret = xQueueSendFromISR(p_i2s->tx->queue, &(((lldesc_t *)finish_desc)->buf), &high_priority_task_awoken);
|
i2s_event.type = I2S_EVENT_TX_Q_OVF;
|
||||||
if (p_i2s->i2s_queue) {
|
i2s_event.size = p_i2s->tx->buf_size;
|
||||||
i2s_event.type = (ret == pdPASS) ? I2S_EVENT_TX_DONE : I2S_EVENT_TX_Q_OVF;
|
xQueueSendFromISR(p_i2s->i2s_queue, (void * )&i2s_event, &tmp);
|
||||||
if (xQueueIsQueueFullFromISR(p_i2s->i2s_queue)) {
|
need_awoke |= tmp;
|
||||||
xQueueReceiveFromISR(p_i2s->i2s_queue, &dummy, &high_priority_task_awoken);
|
|
||||||
}
|
}
|
||||||
xQueueSendFromISR(p_i2s->i2s_queue, (void * )&i2s_event, &high_priority_task_awoken);
|
}
|
||||||
|
xQueueSendFromISR(p_i2s->tx->queue, &(((lldesc_t *)finish_desc)->buf), &tmp);
|
||||||
|
need_awoke |= tmp;
|
||||||
|
if (p_i2s->i2s_queue) {
|
||||||
|
i2s_event.type = I2S_EVENT_TX_DONE;
|
||||||
|
xQueueSendFromISR(p_i2s->i2s_queue, (void * )&i2s_event, &tmp);
|
||||||
|
need_awoke |= tmp;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return high_priority_task_awoken;
|
return need_awoke;
|
||||||
}
|
}
|
||||||
|
|
||||||
#else
|
#else
|
||||||
@ -427,59 +440,74 @@ static void IRAM_ATTR i2s_intr_handler_default(void *arg)
|
|||||||
|
|
||||||
i2s_event_t i2s_event;
|
i2s_event_t i2s_event;
|
||||||
int dummy;
|
int dummy;
|
||||||
portBASE_TYPE high_priority_task_awoken = 0;
|
portBASE_TYPE need_awoke = 0;
|
||||||
|
portBASE_TYPE tmp = 0;
|
||||||
uint32_t finish_desc = 0;
|
uint32_t finish_desc = 0;
|
||||||
if ((status & I2S_INTR_OUT_DSCR_ERR) || (status & I2S_INTR_IN_DSCR_ERR)) {
|
if ((status & I2S_INTR_OUT_DSCR_ERR) || (status & I2S_INTR_IN_DSCR_ERR)) {
|
||||||
ESP_EARLY_LOGE(TAG, "dma error, interrupt status: 0x%08x", status);
|
ESP_EARLY_LOGE(TAG, "dma error, interrupt status: 0x%08x", status);
|
||||||
if (p_i2s->i2s_queue) {
|
if (p_i2s->i2s_queue) {
|
||||||
i2s_event.type = I2S_EVENT_DMA_ERROR;
|
i2s_event.type = I2S_EVENT_DMA_ERROR;
|
||||||
if (xQueueIsQueueFullFromISR(p_i2s->i2s_queue)) {
|
if (xQueueIsQueueFullFromISR(p_i2s->i2s_queue)) {
|
||||||
xQueueReceiveFromISR(p_i2s->i2s_queue, &dummy, &high_priority_task_awoken);
|
xQueueReceiveFromISR(p_i2s->i2s_queue, &dummy, &tmp);
|
||||||
|
need_awoke |= tmp;
|
||||||
}
|
}
|
||||||
xQueueSendFromISR(p_i2s->i2s_queue, (void * )&i2s_event, &high_priority_task_awoken);
|
xQueueSendFromISR(p_i2s->i2s_queue, (void * )&i2s_event, &tmp);
|
||||||
|
need_awoke |= tmp;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if ((status & I2S_INTR_OUT_EOF) && p_i2s->tx) {
|
if ((status & I2S_INTR_OUT_EOF) && p_i2s->tx) {
|
||||||
i2s_hal_get_out_eof_des_addr(&(p_i2s->hal), &finish_desc);
|
i2s_hal_get_out_eof_des_addr(&(p_i2s->hal), &finish_desc);
|
||||||
|
i2s_event.size = ((lldesc_t *)finish_desc)->size;
|
||||||
// All buffers are empty. This means we have an underflow on our hands.
|
// All buffers are empty. This means we have an underflow on our hands.
|
||||||
if (xQueueIsQueueFullFromISR(p_i2s->tx->queue)) {
|
if (xQueueIsQueueFullFromISR(p_i2s->tx->queue)) {
|
||||||
xQueueReceiveFromISR(p_i2s->tx->queue, &dummy, &high_priority_task_awoken);
|
xQueueReceiveFromISR(p_i2s->tx->queue, &dummy, &tmp);
|
||||||
|
need_awoke |= tmp;
|
||||||
// See if tx descriptor needs to be auto cleared:
|
// See if tx descriptor needs to be auto cleared:
|
||||||
// This will avoid any kind of noise that may get introduced due to transmission
|
// This will avoid any kind of noise that may get introduced due to transmission
|
||||||
// of previous data from tx descriptor on I2S line.
|
// of previous data from tx descriptor on I2S line.
|
||||||
if (p_i2s->tx_desc_auto_clear == true) {
|
if (p_i2s->tx_desc_auto_clear == true) {
|
||||||
memset((void *) dummy, 0, p_i2s->tx->buf_size);
|
memset((void *) dummy, 0, p_i2s->tx->buf_size);
|
||||||
}
|
}
|
||||||
|
if (p_i2s->i2s_queue) {
|
||||||
|
i2s_event.type = I2S_EVENT_TX_Q_OVF;
|
||||||
|
xQueueSendFromISR(p_i2s->i2s_queue, (void * )&i2s_event, &tmp);
|
||||||
|
need_awoke |= tmp;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
xQueueSendFromISR(p_i2s->tx->queue, &(((lldesc_t *)finish_desc)->buf), &high_priority_task_awoken);
|
xQueueSendFromISR(p_i2s->tx->queue, &(((lldesc_t *)finish_desc)->buf), &tmp);
|
||||||
|
need_awoke |= tmp;
|
||||||
if (p_i2s->i2s_queue) {
|
if (p_i2s->i2s_queue) {
|
||||||
i2s_event.type = I2S_EVENT_TX_DONE;
|
i2s_event.type = I2S_EVENT_TX_DONE;
|
||||||
if (xQueueIsQueueFullFromISR(p_i2s->i2s_queue)) {
|
xQueueSendFromISR(p_i2s->i2s_queue, (void * )&i2s_event, &tmp);
|
||||||
xQueueReceiveFromISR(p_i2s->i2s_queue, &dummy, &high_priority_task_awoken);
|
need_awoke |= tmp;
|
||||||
}
|
|
||||||
xQueueSendFromISR(p_i2s->i2s_queue, (void * )&i2s_event, &high_priority_task_awoken);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if ((status & I2S_INTR_IN_SUC_EOF) && p_i2s->rx) {
|
if ((status & I2S_INTR_IN_SUC_EOF) && p_i2s->rx) {
|
||||||
// All buffers are full. This means we have an overflow.
|
// All buffers are full. This means we have an overflow.
|
||||||
i2s_hal_get_in_eof_des_addr(&(p_i2s->hal), &finish_desc);
|
i2s_hal_get_in_eof_des_addr(&(p_i2s->hal), &finish_desc);
|
||||||
|
i2s_event.size = ((lldesc_t *)finish_desc)->size;
|
||||||
if (xQueueIsQueueFullFromISR(p_i2s->rx->queue)) {
|
if (xQueueIsQueueFullFromISR(p_i2s->rx->queue)) {
|
||||||
xQueueReceiveFromISR(p_i2s->rx->queue, &dummy, &high_priority_task_awoken);
|
xQueueReceiveFromISR(p_i2s->rx->queue, &dummy, &tmp);
|
||||||
|
need_awoke |= tmp;
|
||||||
|
if (p_i2s->i2s_queue) {
|
||||||
|
i2s_event.type = I2S_EVENT_RX_Q_OVF;
|
||||||
|
xQueueSendFromISR(p_i2s->i2s_queue, (void * )&i2s_event, &tmp);
|
||||||
|
need_awoke |= tmp;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
xQueueSendFromISR(p_i2s->rx->queue, &(((lldesc_t *)finish_desc)->buf), &high_priority_task_awoken);
|
xQueueSendFromISR(p_i2s->rx->queue, &(((lldesc_t *)finish_desc)->buf), &tmp);
|
||||||
|
need_awoke |= tmp;
|
||||||
if (p_i2s->i2s_queue) {
|
if (p_i2s->i2s_queue) {
|
||||||
i2s_event.type = I2S_EVENT_RX_DONE;
|
i2s_event.type = I2S_EVENT_RX_DONE;
|
||||||
if (p_i2s->i2s_queue && xQueueIsQueueFullFromISR(p_i2s->i2s_queue)) {
|
xQueueSendFromISR(p_i2s->i2s_queue, (void * )&i2s_event, &tmp);
|
||||||
xQueueReceiveFromISR(p_i2s->i2s_queue, &dummy, &high_priority_task_awoken);
|
need_awoke |= tmp;
|
||||||
}
|
|
||||||
xQueueSendFromISR(p_i2s->i2s_queue, (void * )&i2s_event, &high_priority_task_awoken);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
i2s_hal_clear_intr_status(&(p_i2s->hal), status);
|
i2s_hal_clear_intr_status(&(p_i2s->hal), status);
|
||||||
|
|
||||||
if (high_priority_task_awoken == pdTRUE) {
|
if (need_awoke == pdTRUE) {
|
||||||
portYIELD_FROM_ISR();
|
portYIELD_FROM_ISR();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -101,7 +101,7 @@ typedef struct {
|
|||||||
int dma_buf_count __attribute__((deprecated)); /*!< This is an alias to 'dma_desc_num' for backward compatibility */
|
int dma_buf_count __attribute__((deprecated)); /*!< This is an alias to 'dma_desc_num' for backward compatibility */
|
||||||
};
|
};
|
||||||
union {
|
union {
|
||||||
int dma_frame_num; /*!< Frame number for one-time sampling. Frame here means the total data from all the channels in a WS cycle */
|
int dma_frame_num; /*!< Number of frames for one-time sampling. The frame here means the total data from all the channels in a WS cycle */
|
||||||
int dma_buf_len __attribute__((deprecated)); /*!< This is an alias to 'dma_frame_num' for backward compatibility */
|
int dma_buf_len __attribute__((deprecated)); /*!< This is an alias to 'dma_frame_num' for backward compatibility */
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -347,6 +347,66 @@ Example for general usage.
|
|||||||
i2s_driver_uninstall(i2s_num); //stop & destroy i2s driver
|
i2s_driver_uninstall(i2s_num); //stop & destroy i2s driver
|
||||||
|
|
||||||
|
|
||||||
|
Application Notes
|
||||||
|
^^^^^^^^^^^^^^^^^
|
||||||
|
|
||||||
|
If you are using a high sample rate like more than 48 kHz or see the data being lost, the following information might help.
|
||||||
|
|
||||||
|
Considering different applications have different requirements, ``dma_desc_num`` and ``dma_frame_num`` are made public. Here is the detailed explanation to these two fields:
|
||||||
|
|
||||||
|
- ``dma_desc_num``: The total number of descriptors used by I2S DMA to receive/transmit data. A descriptor includes some information such as buffer address, the address of the next descriptor, and the buffer length. Since one descriptor points to one buffer, therefore, ``dma_desc_num`` can be interpreted as the total number of DMA buffers used to store data from DMA interrupt. Notice that these buffers are internal to :cpp:func:`i2s_read` and descriptors are created automatically inside of the I2S driver. Users only need to set the buffer number while the length is derived from the parameter described below.
|
||||||
|
- ``dma_frame_num``: The number of frames for one-time sampling. The frame here means the total data from all the channels in one WS cycle. For example, if two channels in stereo mode (i.e., ``channel_format`` is set to ``I2S_CHANNEL_FMT_RIGHT_LEFT``) are active, and each channel transfers 32 bits (i.e., ``bits_per_sample`` is set to ``I2S_BITS_PER_CHAN_32BIT``), then the total number of bytes of a frame is ``channel_format`` * ``bits_per_sample`` = 2 * 32 / 8 = 8 bytes. For example, we assume that the current ``dma_frame_num`` is 100, then the length of the DMA buffer is 8 * 100 = 800 bytes. Note that the length of an internal DMA buffer shouldn't be greater than 4092.
|
||||||
|
|
||||||
|
When the data received by DMA reach the size of internal DMA buffer, a receive interrupt is triggered, and an internal message queue will transport this buffer to :cpp:func:`i2s_read`. The main task of :cpp:func:`i2s_read` is to copy the data in the internal DMA buffer into the user given buffer. Since the internal DMA buffer is usually not equal to the user given buffer size, there are two cases:
|
||||||
|
|
||||||
|
- If the size of internal DMA buffers is smaller than the user given buffer size, :cpp:func:`i2s_read` will consume several internal DMA buffers to fill up the user given buffer. If the message queue of DMA buffer is not long enough, :cpp:func:`i2s_read` will be blocked on receive message queue untill getting enough data. You can estimate the time :cpp:func:`i2s_read` function is blocked by the formula block_time (sec) = (given_bufer_size) / (sample_rate * channel_num * channel_bytes). If we place :cpp:func:`i2s_read` in a ``while`` together with other functions we should also consider the time the loop execution is blocked by the other functions before :cpp:func:`i2s_read` is executed again. It is not allowed to exceed the max_wait_time (sec) = ((``dma_desc_num`` - 1) * dma_buffer_size) / (sample_rate), otherwise the internal message queue will overflow and in consequence some data will be lost.
|
||||||
|
- If the DMA buffer size is greater than the user given buffer size, it means :cpp:func:`i2s_read` would need to be called in a loop several times to take all the data, the max_wait_time may be exceeded, and the message queue overflow is likely to happen. Therefore it is quite risky to use a small user buffer for data receiving.
|
||||||
|
|
||||||
|
Here are a couple of tips when the sample rate is high:
|
||||||
|
|
||||||
|
1. Increasing ``dma_frame_num`` can help to reduce the I2S DMA interrupt frequency;
|
||||||
|
2. Increasing ``dma_desc_num`` can help to alow a longer max_wait_time to be spent by the other functions in the loop conatining :cpp:func:`i2s_read` ;
|
||||||
|
|
||||||
|
.. code-block:: c
|
||||||
|
|
||||||
|
while (1) {
|
||||||
|
... // Other operations (e.g. Waiting on a semaphore)
|
||||||
|
i2s_read(I2S_NUM, user_given_buffer, user_given_buffer_size, &i2s_bytes_read, 100);
|
||||||
|
... // Other operations (e.g. Sending the data to another thread. Avoid any data processing here.)
|
||||||
|
}
|
||||||
|
|
||||||
|
3. Increasing the size of the buffer internal to :cpp:func:`i2s_read` can help to increase the max_wait_time. When you process I2S data (like storing the data to an SD card) in another thread, the time spent in processing thread for one loop should not exceed the max_wait_time otherwise some data will be lost. So if the processing of the received data received is rather slow, please allow :cpp:func:`i2s_read` a big internal buffer for storing the read data;
|
||||||
|
4. Allocating at least two user given buffers can improve the data receipt efficiency. One buffer can continue to receive data while the other one is under processing. But we have to guarantee the buffer that is going to read data is not under processing in the other thread. We can use a semaphore or another lock to avoid overwriting the data in the buffer while it is still under processing;
|
||||||
|
|
||||||
|
.. code-block:: c
|
||||||
|
|
||||||
|
uint8_t **user_given_buffers = (uint8_t **)calloc(buffer_num, sizeof(uint8_t *));
|
||||||
|
// Don't forget to check if user_given_buffers is NULL here
|
||||||
|
for (int i = 0; i < buffer_num; i++) {
|
||||||
|
user_given_buffers[i] = (uint8_t *)calloc(user_given_buffer_size, sizeof(uint8_t));
|
||||||
|
// Don't forget to check if user_given_buffers[i] is NULL here
|
||||||
|
}
|
||||||
|
int cnt = 0;
|
||||||
|
while (1) {
|
||||||
|
... // Other operations (e.g. Waiting on a semaphore)
|
||||||
|
i2s_read(I2S_NUM, user_given_buffer[cnt], user_given_buffer_size, &i2s_bytes_read, 100);
|
||||||
|
... // Other operations (e.g. Sending the data to another thread. Avoid any data processing here.)
|
||||||
|
cnt++;
|
||||||
|
cnt %= buffer_num;
|
||||||
|
}
|
||||||
|
|
||||||
|
5. Increasing the priority of the thread that contains :cpp:func:`i2s_read` can help the data in the message queue to be taken more timely.
|
||||||
|
|
||||||
|
To check whether there are data lost, you can offer an event queue handler to the driver during installation:
|
||||||
|
|
||||||
|
.. code-block:: c
|
||||||
|
|
||||||
|
QueueHandle_t evt_que;
|
||||||
|
i2s_driver_install(i2s_num, &i2s_config, 10, &evt_que);
|
||||||
|
|
||||||
|
You will receive ``I2S_EVENT_RX_Q_OVF`` event when there are data lost.
|
||||||
|
|
||||||
|
|
||||||
API Reference
|
API Reference
|
||||||
-------------
|
-------------
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user