SPI Dual mode, Half-Duplex using DMA - very strange results [IDFGH-4017]

davidjade
Posts: 2
Joined: Mon Sep 21, 2020 6:54 am

SPI Dual mode, Half-Duplex using DMA - very strange results [IDFGH-4017]

Postby davidjade » Mon Sep 21, 2020 8:01 am

I am having strange issues when trying to use a SPI slave in HALF_DUPLEX mode with DMA. I logged a bunch of detail so thanks in advance to anyone that reads all the weird stuff I found.

For background, I have successfully used the FT81x family of display/touchscreen controllers as an SPI slave in DMA, MOSI/MISO, full duplex mode many times (I wrote the ESP32 LVGL graphics driver for it). To use the FT81x you need to send and receive data (i.e. read/write). The FT81x also supports DIO and QIO modes so I recently gave that a try, using HALF_DUPLEX mode. I got it to work but I have found very strange results when trying to use DMA SPI in DIO mode for reading data from this device (writing works fine). Note that I am careful to not try to read and write in the same transaction as documented in half-duplex DMA mode.

The FT81x essentially functions like a memory-mapped like device. SPI transactions are used to send addresses for writing and reading – I use the transaction address field for this – followed by a stream of bytes - sometimes really large blocks of data up to 64k. Reading requires using 8 dummy bits between the address and byte streaming of the SPI transaction – I use the SPI transaction’s variable dummy bit field for this when reading.

I’ll also note here that there are several reports both here and on Github of using half duplex mode and dropping bytes while reading so I don’t think I am the first person to see this but I uncovered a lot of details.

On the logic analyzer everything looks perfect however reading data is wonky, at best. What I found does not appear to be a hardware issue but rather an ESP32 SPI driver issue in HALF_DUPLEX mode. I spent a lot of time trying to work through this and took careful notes and logic analyzer traces. It is 100% reproducible in all the scenarios I documented below. There are several really strange things going on in HALF_DUPLUX mode:
  1. When I use rx_buffer as a pointer to a data buffer, no matter how many bytes I request to read, from 1 to 4, the driver always writes out 4 bytes into the read buffer, filling it with extra zeros. It seems to behave as if it were using rx_buffer in SPI_TRANS_USE_RXDATA mode, always writing 4 bytes, and zeroing out any extra bytes when requested less than 4. This is of course a problem if the buffer is not big enough – for instance reading a single byte even though the slave clearly sends the data.
  2. When setting the SPI transaction for 8 variable dummy bits in DIO mode, you have to really set it to 4 or you will get extra clock cycles (another full byte). However, the rxlength is still specified in actual data bit count. Dummy bits seem to be counted as DIO pairs. Maybe this is just a documentation issue though as while inconsistent, it sort of makes sense.
  3. The biggest issue though, in DMA half duplex DIO mode, I can only reliably read one byte at a time. If I request more than that, only the first byte is copied to the receive buffer (and the extra zeros) yet all the data appears in the logic analyzer traces. It seems that the driver just doesn’t read or copy the other data to the receive buffer UNLESS you use this one really weird hack (details below).
There are few code examples of DIO or even QIO mode DMA SPI, especially in half duplex mode that I can find online so maybe I am doing something wrong but I have also dug deep into spi_master and spi_hal and other ESP32 driver sources and I can’t quite figure out what is wrong here. It sure seems like a driver issue at this point. If this does turn out to be something, then I will create issues over on GitHub but I figured it best to run it by here first as my assumption is that I must have something very wrong.

Note: one important thing to note is, at boot the FT81x works in standard MOSI/MISO mode and it requires a few SPI transaction to switch it to DIO (or QIO) mode. I do not tear down the bus or device at this transition since DIO mode is just adding flags to all following SPI transactions. But I have also tried that and it makes no difference. At this point sending (writing) data to the slave works just fine – I can send a lot really fast (32-64k chunks at 32Mhz) but cannot read anything reliably beyond a single byte even though the slave clearly sends the data.

So here are a bunch of scenarios with logic traces, all using DMA, DIO, and HALF_DUPLEX:

Components/software
ESP32-WROVER-B
FT813 display controller
ESP-IDF version 4.1

SPI Bus config
DMA channel: 1
Max transfer: 64000

SPI Device config
Clock speed: 1,000,000 (slowed down for logic traces but it functions the same all the way up to 32,000,000)
Mode: 0
Queue size: 1
Flags: SPI_DEVICE_HALFDUPLEX (I have also tried adding SPI_DEVICE_NO_DUMMY and it does not appear to change anything, neither the scope display or the bytes received in the read buffer)

Common to all DMA read transactions
RX buffer: ptr to uint8_t buffer
Address bits: 24
Command bits: 0
Flags: SPI_TRANS_VARIABLE_ADDR | SPI_TRANS_VARIABLE_DUMMY | SPI_TRANS_MODE_DIO | SPI_TRANS_MODE_DIOQIO_ADDR

Note: Because all of these SPI transactions start with a 24-bit address followed by 8 dummy bits, the data the slave returns start in the 5th decoded byte of each of the logic traces below.

Failed DMA read Transaction for a single byte (expected 0x7c)
What seems to be happening here, is 16 bits are clocked as dummy instead of 8 so the single 0x7c data byte from the slave is skipped. The required dummy bits are 4th in decode blocks – 0x00, after 0x302000 24-bit address.

Variable Dummy bits: 8
RX Length: 8
Slave data transmitted: 0x7c + an extra 0x00 byte at end due to the extra dummy clocks
Transaction data written to receive buffer: 0, 0, 0, 0 (note: 4 bytes written to buffer – all zeros)
Image

Successful DMA read Transaction for a single byte
Using ½ as many dummy bits (e.g. 4) seems to correctly read the single 0x7c data byte from the slave (i.e. in DIO mode dummy bits seem to be counted as DIO bit pairs – not the total bit count). Maybe this is just a documentation error?

Variable Dummy bits: 4
RX Length: 8
Slave data transmitted: 0x7c
Transaction data written to receive buffer: 0x7c, 0, 0, 0 (note: data + 3 extra zero bytes written)
Image

Failed DMA read Transaction for two bytes (expected 0x04, 0x03)
In this case, only the first byte is correctly read – the second is not read at all – it simply just does not make it into the read buffer. Note that address 0x000004 was used this time and there is still one correct dummy byte that follows.

Variable Dummy bits: 4 bits
RX Length: 16
Slave data transmitted: 0x04, 0x03
Transaction data written to receive buffer: 0x04, 0, 0, 0 (note: data + 3 extra zero bytes written)
Image

Sometimes successful DMA read Transaction for two bytes (expected 0x04, 0x03)
This is a case I found by accident. I found that if I increase the RX length by between 1 and 7 extra bits (i.e. specifying 17 when I really want 16) then I get the 2nd byte but only every other read despite the scope looking exactly the same for each read cycle. Furthermore, if I instead increase RX by 8 or more extra bits (i.e. specifying 24 or more when I really want 16), then it goes back to only receiving the 1st byte. I can find no settings that makes it read both bytes every single time.

Variable Dummy bits: 4 bits
RX Length: 16
Slave data transmitted: 0x04, 0x03
1st Transaction data written to receive buffer: 0x04, 0, 0, 0 (note: 1st byte + 3 extra zero bytes written)
2nd Transaction data written to receive buffer: 0x04, 0x03, 0, 0 (note: 1st + 2nd + 2 extra zero bytes written)
3rd Transaction data written to receive buffer: 0x04, 0, 0, 0 (note: 1st + 3 extra zero bytes written)
4th Transaction data written to receive buffer: 0x04, 0x03, 0, 0 (note: 1st + 2nd + 2 extra zero bytes written)
Etc… - continues to flip back and forth with valid two-bytes of data.
Image

Failed DMA read Transaction for 4 bytes (expected 0x04, 0x03, 0x02, 0x01)
In this case, again only the first byte is correctly read – the second, third, or forth bytes are not read at all. Very similar to the case when reading 2 bytes. I believe this is the case for reading anything more than a single byte – only the first byte is returned if the exact length is specified.

Variable Dummy bits: 4 bits
RX Length: 32
Slave data transmitted: 0x04, 0x03, 0x02, 0x01
Transaction data written to receive buffer: 0x04, 0, 0, 0 (note: data + 3 extra zero bytes written)
Image

Increasing weird patterns for DMA read Transaction for 4 bytes (0x04, 0x03, 0x02, 0x01)
Again, if I use the proper RX Length (32 for 4 bytes), then I only receive the 1st byte despite the slave sending all 4 bytes. However, if I increase the RX length by 1 extra bit, then I get another rotating pattern.

Variable Dummy bits: 4 bits
RX Length: 33
Slave data transmitted: 0x04, 0x03, 0x02, 0x01
1st Transaction data written to receive buffer: 0x04, 0, 0, 0 (note: 1st + 3 extra zero bytes written)
2nd Transaction data written to receive buffer: 0x04, 0x03, 0x02, 0x01 (note: all 4 correct bytes written)
3rd Transaction data written to receive buffer: 0x04, 0x03, 0x02, 0 (note: 1, 2, 3 correct + 1 extra zero byte written)
4th Transaction data written to receive buffer: 0x04, 0x03, 0, 0 (note: 1, 2 + 2 extra zero bytes written)
5th Transaction data written to receive buffer: 0x04, 0, 0, 0 (note: 1st + 3 extra zero bytes written)
Etc… - continues to rotate through pattern.
Image

It seems that if you set it up correctly you only ever get the first byte of the data no matter the size requested. However, if you get it slightly wrong (the one weird trick) then you can get the driver to read all the data but not consistently. If I had to guess, somewhere there seems to be a circular buffer that’s not locked in step with the number of bytes read, or something like that that produces the odd rotating byte patterns. Yet I can find no combinations of settings that makes it work reliably.

Does anyone have any idea what is really going on here? Is this a configuration issue. The code this is a part of is quite large but I can try and work up and isolated case, or at least show the SPI code if needed but it is pretty standard stuff and I believe it is correct because I can write data all day long - I just can't read data, which is just setting a rxlength in the end on the transaction.

davidjade
Posts: 2
Joined: Mon Sep 21, 2020 6:54 am

Re: SPI Dual mode, Half-Duplex using DMA - very strange results

Postby davidjade » Mon Sep 21, 2020 6:48 pm

A few additional notes to add:

My tests so far are loops over the same read transaction so it is easy to watch on the analyzer. I send a read request about once every second. I have tried polling, queued, and interrupt transactions and they all behave in the same way for reading (i.e. missing data beyond the first byte received).

As for the issue of the receive buffer always receiving 4 bytes even if rxlength is less than that, I now see that the API docs say "Written by 4 bytes-unit if DMA is used. " I must have missed it because it's not on the rxlength parameter notes but rather on the rx_buffer parameter notes.

edit: just tried quad SPI and it behaves the same way - only the first byte is read correctly - additional bytes always read as zeros. Unless I request one extra bit then I get the rotating results.

ESP_Alvin
Posts: 195
Joined: Thu May 17, 2018 2:26 am

Re: SPI Dual mode, Half-Duplex using DMA - very strange results [IDFGH-4017]

Postby ESP_Alvin » Wed Sep 23, 2020 3:55 am

Moderator's note: edit the topic title for issue tracking, thanks for reporting.

Who is online

Users browsing this forum: No registered users and 51 guests