SPI Master Receive Problems

rsimpsonbusa
Posts: 124
Joined: Tue May 17, 2016 8:12 pm

Re: SPI Master Receive Problems

Postby rsimpsonbusa » Thu Mar 30, 2017 8:13 pm

Thanks Loboris.

Do you know if the DMA problem was reported formally/officially to EspressIf?

RSN

User avatar
loboris
Posts: 514
Joined: Wed Dec 21, 2016 7:40 pm

Re: SPI Master Receive Problems

Postby loboris » Thu Mar 30, 2017 10:37 pm

rsimpsonbusa wrote:Thanks Loboris.

Do you know if the DMA problem was reported formally/officially to EspressIf?

RSN
I've only got the response from ESP_Sprite:
ESP_Sprite wrote:My guess is that there is still some remaining state in the spi dma controller that does not get reset when the transmission has ended. Thanks for the hint on resetting the IN part as well; I'm working on spi-master anyway and will include this in the next MR for it.

rsimpsonbusa
Posts: 124
Joined: Tue May 17, 2016 8:12 pm

Re: SPI Master Receive Problems

Postby rsimpsonbusa » Thu Mar 30, 2017 11:03 pm

No worries loboris. Thanks for your work.

I did use the software CS and writing worked but not reading. The clock is lost after Tx is done, it takes some time and starts again, but data gets corrupted meanwhile and the Driver gives wrong values.

I notice ESP-Sprite seems to work at Espressif, hopefully so. A message for him.

The DMA section of the spi-master is really "not working :D to say the least.

Errors/inconsistencies in the spi-master:

#define THRESH_DMA_TRANS (8*32) defines the max amount of data to Tx or Rx WITHOUT using DMA.
First minor mistakes, is that in some IF conditions its used as <= and in others just < so when fixed to All being <= one can read/write up to 32 bytes without a problem and very consistent.

Passed that point the DMA section gets into play and I cannot find what is wrong. There is no DMA apis that could help detect what the problem could be, but it is absolutely erratic, not trustable if one considers that we could need reading of thousands of bytes from SPI.

Again, WRITING is perfect so maybe something with the Rx setup of the DMA.

There is also another topic where the user complains about DMA problems receiving with another driver (cannot remember which).

Hope it can help to clear some bugs and have a perfect ESP32 IDF.

RSN

ESP_Sprite
Posts: 9027
Joined: Thu Nov 26, 2015 4:08 am

Re: SPI Master Receive Problems

Postby ESP_Sprite » Fri Mar 31, 2017 2:53 am

Gotcha. As a matter of fact, I'm working on the SPI master code anyway; there should be a fix on Github that addresses the timing discussed elsewhere pretty soon. I'm also working on longer DMA transfers; I'll also build some test cases for long DMA transfers plus WiFi, see if I can reproduce the issue.

rsimpsonbusa
Posts: 124
Joined: Tue May 17, 2016 8:12 pm

Re: SPI Master Receive Problems

Postby rsimpsonbusa » Fri Mar 31, 2017 3:44 pm

No worries loboris, thanks for your work and time.

Maybe you could inform ESP-Sprite of the DMA problem in spi_master.

Regards.

RSN

rsimpsonbusa
Posts: 124
Joined: Tue May 17, 2016 8:12 pm

Re: SPI Master Receive Problems

Postby rsimpsonbusa » Mon Apr 03, 2017 6:58 pm

Hi loboris.

Saw the reply from ESP-Sprite. Good to know.

One question regarding the use of the spi driver (either). If we have TWO (or max 3) devices in the spi chain each with a CS GPIO, how does one access each device? spi_bus_initialize and spi_bus_add_device(VSPI_HOST, &devcfg, &spiX) and the spi(X-Y-Z) one passed as parameter?

Regards.

ESP_Sprite
Posts: 9027
Joined: Thu Nov 26, 2015 4:08 am

Re: SPI Master Receive Problems

Postby ESP_Sprite » Tue Apr 04, 2017 6:51 am

Yes. The idea is that the spi device handle is essentially all you need to communicate with the device.

rsimpsonbusa
Posts: 124
Joined: Tue May 17, 2016 8:12 pm

Re: SPI Master Receive Problems

Postby rsimpsonbusa » Wed Apr 05, 2017 12:11 am

May I ask if you tried it with more than one device? Because when I did it did not work at all. It got stuck, holding on the internal time out at ret=spi_device_get_trans_result(handle, &ret_trans, portMAX_DELAY) in spi_device_transmit routine.

After a lot of tracing I found that the reason was that it never did update WHICH device it was using and always wanted to answer to the first device (0). It does add the device just that it always wants to "answer" to device 0, when sending to the xQueueSendFromISR.

Anyway the fix is simple, its in static void IRAM_ATTR spi_intr(void *arg).
All this in spi-master.c for anybody else that might read this.

Code: Select all

 
 //He needs to do this based on cur_cs which is never updated
  //Call post-transaction callback, if any
        if (host->device[host->cur_cs]->cfg.post_cb) host->device[host->cur_cs]->cfg.post_cb(host->cur_trans);
        //Return transaction descriptor.
        xQueueSendFromISR(host->device[host->cur_cs]->ret_queue, &host->cur_trans, &do_yield);
 .........
 // the fix
 if (i==NO_CS) {
        //No packet waiting. Disable interrupt.
        esp_intr_disable(host->intr);
    } else {
        host->hw->slave.trans_done=0; //clear int bit
        //We have a transaction. Send it.
        spi_device_t *dev=host->device[i];
        // HERE IS WHERE YOU SAVE THE CURRENT DEVICE VIA cur_cs
        host->cur_cs=i; // The reason why it wouldnt work for 2 or more devices. Add this
        // end of fix
        host->cur_trans=trans;
        //We should be done with the transmission.
        assert(host->hw->cmd.usr == 0);
I've already tested it on 3 devices . Maybe share this with ESP-Sprite.

RSN

ESP_Sprite
Posts: 9027
Joined: Thu Nov 26, 2015 4:08 am

Re: SPI Master Receive Problems

Postby ESP_Sprite » Wed Apr 05, 2017 3:21 am

Thanks for that! I actually checked multiple devices early on, but did my later testing with just one device... I think a bug may have snucked in then. I'm reworking the SPI code anyway, will add a test for multiple slaves then.

rsimpsonbusa
Posts: 124
Joined: Tue May 17, 2016 8:12 pm

Re: SPI Master Receive Problems

Postby rsimpsonbusa » Thu Apr 06, 2017 11:38 pm

You are welcome. Thanks to you.

RSN

Who is online

Users browsing this forum: Neerajtanwar2087 and 59 guests