I had raised ticket "https://devzone.nordicsemi.com/f/nordic-q-a/63754/nordic-sdk-qspi-driver-call".
Wanted help for using qspi driver with non blocking mode. I have modified code on driver with semaphore with call back event registered in qspi_init. After 2 hours of logging , system gets reset even when watch dog timer is completely disabled,
Here, is the code i have modified
static nrfx_err_t qspi_task_perform(nrf_qspi_task_t task)
{
// Wait for peripheral
if (m_cb.interrupt_driven)
{
return NRFX_ERROR_BUSY;
}
nrf_qspi_event_clear(NRF_QSPI, NRF_QSPI_EVENT_READY);
if (m_cb.handler)
{
m_cb.interrupt_driven = true;
nrf_qspi_int_enable(NRF_QSPI, NRF_QSPI_INT_READY_MASK);
}
ISR_flag =0;
nrf_qspi_task_trigger(NRF_QSPI, task);
if (m_cb.handler == NULL)
{
while (!nrf_qspi_event_check(NRF_QSPI, NRF_QSPI_EVENT_READY))
{};
}
//while(!ISR_flag);
adi_osal_SemPend(qspi_task_evt_sem, ADI_OSAL_TIMEOUT_FOREVER); // pending semaphore in qspi_task_perform where read/write is called.
return NRFX_SUCCESS;
}
void nrfx_qspi_irq_handler(void)
{
// Catch Event ready interrupts
if (nrf_qspi_event_check(NRF_QSPI, NRF_QSPI_EVENT_READY))
{
m_cb.interrupt_driven = false;
nrf_qspi_event_clear(NRF_QSPI, NRF_QSPI_EVENT_READY);
ISR_flag = 1;
adi_osal_SemPost(qspi_task_evt_sem); // posting semaphore when handler is called.
m_cb.handler(NRFX_QSPI_EVENT_DONE, m_cb.p_context);
}
}
ADI_OSAL_SEM_HANDLE qspi_task_evt_sem; // declaration of variable
adi_osal_SemCreate(&qspi_task_evt_sem, 0);// semaphore create in file system init and is done once
Please help . It logs for 2 hours then i see reset getting happened. Are there mixture of blocking calls inside nrfx_qspi.c I have attached full code.
#include <nrfx.h> #include "adi_osal.h" extern ADI_OSAL_SEM_HANDLE qspi_task_evt_sem; #if NRFX_CHECK(NRFX_QSPI_ENABLED) #include <nrfx_qspi.h> volatile uint8_t ISR_flag =0; /** * @brief Command byte used to read status register. * */ #define QSPI_STD_CMD_RDSR 0x05 /** * @brief Byte used to mask status register and retrieve the write-in-progess bit. * */ #define QSPI_MEM_STATUSREG_WIP_Pos 0x01 /** * @brief Default time used in timeout function. */ #define QSPI_DEF_WAIT_TIME_US 10 /** * @brief Default number of tries in timeout function. */ #define QSPI_DEF_WAIT_ATTEMPTS 100 /** * @brief Control block - driver instance local data. */ typedef struct { nrfx_qspi_handler_t handler; /**< Handler. */ nrfx_drv_state_t state; /**< Driver state. */ volatile bool interrupt_driven; /**< Information if the current operation is performed and is interrupt-driven. */ void * p_context; /**< Driver context used in interrupt. */ } qspi_control_block_t; static qspi_control_block_t m_cb; static nrfx_err_t qspi_task_perform(nrf_qspi_task_t task) { // Wait for peripheral if (m_cb.interrupt_driven) { return NRFX_ERROR_BUSY; } nrf_qspi_event_clear(NRF_QSPI, NRF_QSPI_EVENT_READY); if (m_cb.handler) { m_cb.interrupt_driven = true; nrf_qspi_int_enable(NRF_QSPI, NRF_QSPI_INT_READY_MASK); } ISR_flag =0; nrf_qspi_task_trigger(NRF_QSPI, task); if (m_cb.handler == NULL) { while (!nrf_qspi_event_check(NRF_QSPI, NRF_QSPI_EVENT_READY)) {}; } //while(!ISR_flag); adi_osal_SemPend(qspi_task_evt_sem, ADI_OSAL_TIMEOUT_FOREVER); return NRFX_SUCCESS; } static bool qspi_pins_configure(nrf_qspi_pins_t const * p_config) { // Check if the user set meaningful values to struct fields. If not, return false. if ((p_config->sck_pin == NRF_QSPI_PIN_NOT_CONNECTED) || (p_config->csn_pin == NRF_QSPI_PIN_NOT_CONNECTED) || (p_config->io0_pin == NRF_QSPI_PIN_NOT_CONNECTED) || (p_config->io1_pin == NRF_QSPI_PIN_NOT_CONNECTED)) { return false; } nrf_qspi_pins_set(NRF_QSPI, p_config); return true; } nrfx_err_t nrfx_qspi_init(nrfx_qspi_config_t const * p_config, nrfx_qspi_handler_t handler, void * p_context) { NRFX_ASSERT(p_config); if (m_cb.state != NRFX_DRV_STATE_UNINITIALIZED) { return NRFX_ERROR_INVALID_STATE; } if (!qspi_pins_configure(&p_config->pins)) { return NRFX_ERROR_INVALID_PARAM; } nrf_qspi_xip_offset_set(NRF_QSPI, p_config->xip_offset); nrf_qspi_ifconfig0_set(NRF_QSPI, &p_config->prot_if); nrf_qspi_ifconfig1_set(NRF_QSPI, &p_config->phy_if); m_cb.interrupt_driven = false; m_cb.handler = handler; m_cb.p_context = p_context; /* QSPI interrupt is disabled because the device should be enabled in polling mode (wait for activate task event ready)*/ nrf_qspi_int_disable(NRF_QSPI, NRF_QSPI_INT_READY_MASK); if (handler) { NRFX_IRQ_PRIORITY_SET(QSPI_IRQn, p_config->irq_priority); NRFX_IRQ_ENABLE(QSPI_IRQn); } m_cb.state = NRFX_DRV_STATE_INITIALIZED; nrf_qspi_enable(NRF_QSPI); nrf_qspi_event_clear(NRF_QSPI, NRF_QSPI_EVENT_READY); nrf_qspi_task_trigger(NRF_QSPI, NRF_QSPI_TASK_ACTIVATE); // Waiting for the peripheral to activate bool result; NRFX_WAIT_FOR(nrf_qspi_event_check(NRF_QSPI, NRF_QSPI_EVENT_READY), QSPI_DEF_WAIT_ATTEMPTS, QSPI_DEF_WAIT_TIME_US, result); if (!result) { return NRFX_ERROR_TIMEOUT; } return NRFX_SUCCESS; } nrfx_err_t nrfx_qspi_cinstr_xfer(nrf_qspi_cinstr_conf_t const * p_config, void const * p_tx_buffer, void * p_rx_buffer) { NRFX_ASSERT(m_cb.state != NRFX_DRV_STATE_UNINITIALIZED); if (m_cb.interrupt_driven) { return NRFX_ERROR_BUSY; } nrf_qspi_event_clear(NRF_QSPI, NRF_QSPI_EVENT_READY); /* In some cases, only opcode should be sent. To prevent execution, set function code is * surrounded by an if. */ if (p_tx_buffer) { nrf_qspi_cinstrdata_set(NRF_QSPI, p_config->length, p_tx_buffer); } /* modify begin by Leo, 2020-06-28,not need to disable interrupt if no use it*/ if(m_cb.handler) { nrf_qspi_int_disable(NRF_QSPI, NRF_QSPI_INT_READY_MASK); } /* modify end by Leo, 2020-06-28 */ nrf_qspi_cinstr_transfer_start(NRF_QSPI, p_config); bool result; NRFX_WAIT_FOR(nrf_qspi_event_check(NRF_QSPI, NRF_QSPI_EVENT_READY), QSPI_DEF_WAIT_ATTEMPTS, QSPI_DEF_WAIT_TIME_US, result); if (!result) { // This timeout should never occur when WIPWAIT is not active, since in this // case the QSPI peripheral should send the command immediately, without any // waiting for previous write to complete. NRFX_ASSERT(p_config->wipwait); return NRFX_ERROR_TIMEOUT; } nrf_qspi_event_clear(NRF_QSPI, NRF_QSPI_EVENT_READY); /* modify begin by Leo, 2020-06-28 not need to disable interrupt if no use it*/ if(m_cb.handler) { nrf_qspi_int_enable(NRF_QSPI, NRF_QSPI_INT_READY_MASK); } /* modify end by Leo, 2020-06-28 */ if (p_rx_buffer) { nrf_qspi_cinstrdata_get(NRF_QSPI, p_config->length, p_rx_buffer); } return NRFX_SUCCESS; } nrfx_err_t nrfx_qspi_cinstr_quick_send(uint8_t opcode, nrf_qspi_cinstr_len_t length, void const * p_tx_buffer) { nrf_qspi_cinstr_conf_t config = NRFX_QSPI_DEFAULT_CINSTR(opcode, length); return nrfx_qspi_cinstr_xfer(&config, p_tx_buffer, NULL); } nrfx_err_t nrfx_qspi_mem_busy_check(void) { nrfx_err_t ret_code; uint8_t status_value = 0; nrf_qspi_cinstr_conf_t const config = NRFX_QSPI_DEFAULT_CINSTR(QSPI_STD_CMD_RDSR, NRF_QSPI_CINSTR_LEN_2B); ret_code = nrfx_qspi_cinstr_xfer(&config, &status_value, &status_value); if (ret_code != NRFX_SUCCESS) { return ret_code; } if ((status_value & QSPI_MEM_STATUSREG_WIP_Pos) != 0x00) { return NRFX_ERROR_BUSY; } return NRFX_SUCCESS; } void nrfx_qspi_uninit(void) { NRFX_ASSERT(m_cb.state != NRFX_DRV_STATE_UNINITIALIZED); nrf_qspi_int_disable(NRF_QSPI, NRF_QSPI_INT_READY_MASK); nrf_qspi_task_trigger(NRF_QSPI, NRF_QSPI_TASK_DEACTIVATE); // Workaround for nRF52840 anomaly 122: Current consumption is too high. *(volatile uint32_t *)0x40029054ul = 1ul; nrf_qspi_disable(NRF_QSPI); NRFX_IRQ_DISABLE(QSPI_IRQn); nrf_qspi_event_clear(NRF_QSPI, NRF_QSPI_EVENT_READY); m_cb.state = NRFX_DRV_STATE_UNINITIALIZED; } nrfx_err_t nrfx_qspi_write(void const * p_tx_buffer, size_t tx_buffer_length, uint32_t dst_address) { NRFX_ASSERT(m_cb.state != NRFX_DRV_STATE_UNINITIALIZED); NRFX_ASSERT(p_tx_buffer != NULL); if (!nrfx_is_in_ram(p_tx_buffer)) { return NRFX_ERROR_INVALID_ADDR; } nrf_qspi_write_buffer_set(NRF_QSPI, p_tx_buffer, tx_buffer_length, dst_address); return qspi_task_perform(NRF_QSPI_TASK_WRITESTART); } nrfx_err_t nrfx_qspi_read(void * p_rx_buffer, size_t rx_buffer_length, uint32_t src_address) { NRFX_ASSERT(m_cb.state != NRFX_DRV_STATE_UNINITIALIZED); NRFX_ASSERT(p_rx_buffer != NULL); if (!nrfx_is_in_ram(p_rx_buffer)) { return NRFX_ERROR_INVALID_ADDR; } nrf_qspi_read_buffer_set(NRF_QSPI, p_rx_buffer, rx_buffer_length, src_address); return qspi_task_perform(NRF_QSPI_TASK_READSTART); } nrfx_err_t nrfx_qspi_erase(nrf_qspi_erase_len_t length, uint32_t start_address) { NRFX_ASSERT(m_cb.state != NRFX_DRV_STATE_UNINITIALIZED); nrf_qspi_erase_ptr_set(NRF_QSPI, start_address, length); return qspi_task_perform(NRF_QSPI_TASK_ERASESTART); } nrfx_err_t nrfx_qspi_chip_erase(void) { return nrfx_qspi_erase(NRF_QSPI_ERASE_LEN_ALL, 0); } void nrfx_qspi_irq_handler(void) { // Catch Event ready interrupts if (nrf_qspi_event_check(NRF_QSPI, NRF_QSPI_EVENT_READY)) { m_cb.interrupt_driven = false; nrf_qspi_event_clear(NRF_QSPI, NRF_QSPI_EVENT_READY); ISR_flag = 1; adi_osal_SemPost(qspi_task_evt_sem); m_cb.handler(NRFX_QSPI_EVENT_DONE, m_cb.p_context); } }