You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If CSID is invalid, CSID is assigned the default CSID, but the FSM should not be started.
Using the following patch:
--- a/sw/device/tests/spi_host_irq_test.c+++ b/sw/device/tests/spi_host_irq_test.c@@ -276,6 +276,8 @@ static status_t rx_full_event_irq(void) {
static_assert(kRxFifoLen <= UINT16_MAX, "kRxFifoLen must fit in uint16_t");
irq_fired = UINT32_MAX;
+ mmio_region_write32(spi_host.base_addr, SPI_HOST_CSID_REG_OFFSET, 1);+
dif_spi_host_status_t status;
TRY(dif_spi_host_get_status(&spi_host, &status));
TRY_CHECK(!status.rx_full);
Commands for the dummy read are pushed into the CMD FIFO, the firsrt command is handled, but FSM stays @ IDLE (and the test deadlock, waiting on WFI: 2000115c 10500073 wfi which never happens)
The command is therefore not handled, and remaining commands are not popped up from the command FIFO.
If the command is invalid (typically dual/quad + bidirectional transfer), the FSM behavior is somewhat similar
Using the following patch:
Commands for the dummy read are pushed into the CMD FIFO, the firsrt command is handled, but FSM stays @ IDLE (and the test deadlock, waiting on WFI: 20001158 10500073 wfi which never happens)
The text was updated successfully, but these errors were encountered:
rivos-eblot
changed the title
SPI Host should not start FSM on some error type
SPI Host should not start FSM on some error types
Feb 13, 2025
If CSID is invalid, CSID is assigned the default CSID, but the FSM should not be started.
Using the following patch:
Commands for the dummy read are pushed into the CMD FIFO, the firsrt command is handled, but FSM stays @ IDLE (and the test deadlock, waiting on

WFI
:2000115c 10500073 wfi
which never happens)The command is therefore not handled, and remaining commands are not popped up from the command FIFO.
If the command is invalid (typically dual/quad + bidirectional transfer), the FSM behavior is somewhat similar
Using the following patch:
Commands for the dummy read are pushed into the CMD FIFO, the firsrt command is handled, but FSM stays @ IDLE (and the test deadlock, waiting on

WFI
:20001158 10500073 wfi
which never happens)The text was updated successfully, but these errors were encountered: