Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DMA hangs after it reaches descriptor with Owner::CPU #3251

Open
George-Miao opened this issue Mar 12, 2025 · 3 comments
Open

DMA hangs after it reaches descriptor with Owner::CPU #3251

George-Miao opened this issue Mar 12, 2025 · 3 comments
Labels
bug Something isn't working peripheral:dma DMA Peripheral peripheral:lcd_cam LCD_CAM peripheral

Comments

@George-Miao
Copy link

Bug description

I was testing out the experimental DMA TX stream buf from @Dominaezzz (I originally found this in a discussion). I have esp32-s3 and a lcd driven by st7701s (datasheet). The screen has a parallel RGB (DPI) with 3-wire SPI interface. The example in the code works well and I do get the expected pure red and blue flashing screen. But whenever I add some time-consuming logic (initialize and update slint, for example) between start of transmission and subsequent data push, the screen turned dark.

I created a MRE repo, however it is just for showcasing the code more easily and I don't expect anyone to happen to have the exact same hardware. After some digging, I found all subsequent pushes was eventually early-returned by following code that was supposed to reclaim buffer from DMA:

https://github.com/George-Miao/esp-dma-lcd-mre/blob/eb52c69a275a80a1602ea00fa6e621c72143e05b/src/dma.rs#L298-L300

That's how I come to the conclusion that DMA hangs, since auto write back is turned on but the descriptor was never given back to CPU and no bytes was written to the screen after the delay.

To Reproduce

  1. Run cargo run --release
  2. The screen should turn red and blue normally
  3. Uncomment src/main.rs:159, which delays 10ms before the main loop starts
  4. DMA hangs and nothing got transmitted to the screen

Expected behavior

The descriptor should have owner bit set to CPU and data should be transmitted to LCD_CAM normally.

Environment

  • Target device: esp32s3 (revision v0.2)
  • Crate name and version: esp-hal 1.0.0-beta.0
@George-Miao George-Miao added bug Something isn't working status:needs-attention This should be prioritized labels Mar 12, 2025
@Dominaezzz
Copy link
Collaborator

What's happened here is the DMA got to the end of the linked list and halted. By the time you added more descriptors to the list, the DMA had stopped caring.

LCD_CAM basically doesn't care and will just keep going with zeros. As far as it's concerned, the transfer never ends, so it won't let you know when this happens.

The DMA does have an interrupt for this, OUT_TOTAL_EOF but the catch with it is you have to mark the last descriptor in the list with the EOF flag.

DpiTransfer basically needs to expose the DMA interrupts for you to check for this condition.

Once this condition is detected, there are only two options, restart the transfer or restart just the DMA. In practice you want the former.

@George-Miao
Copy link
Author

I see. Do you know how does esp-idf handle the situation?

@Dominaezzz
Copy link
Collaborator

It restarts the transfer

@Dominaezzz Dominaezzz added peripheral:lcd_cam LCD_CAM peripheral peripheral:dma DMA Peripheral labels Mar 13, 2025
@jessebraham jessebraham removed the status:needs-attention This should be prioritized label Mar 17, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working peripheral:dma DMA Peripheral peripheral:lcd_cam LCD_CAM peripheral
Projects
Status: Todo
Development

No branches or pull requests

3 participants