Search found 4 matches

by accessays
Tue Sep 05, 2023 4:43 pm
Forum: General Discussion
Topic: Some questions about ESP32-P4
Replies: 2
Views: 2305

Some questions about ESP32-P4

I realize it hasn't released yet, so maybe some of these cannot be answered yet. I'd appreciate at least some info :D . Will the MMU be more full-featured, so normal Linux can be run on the system? Will there be support for faster PSRAM? E.g. something towards 200MHz DDR. Furthermore, ESP32-P4 integ...
by accessays
Wed Feb 23, 2022 3:09 am
Forum: Hardware
Topic: ESP32-S3 maximum theoretical PSRAM speed
Replies: 0
Views: 1846

ESP32-S3 maximum theoretical PSRAM speed

Hello, I am working on a project that requires the use of PSRAM and seems to be bottlenecked by its speed. I was wondering what the theoretical maximum PSRAM speed is? I currently use an N8R2 module, QSPI @120MHz mode. I've found out that NxR8 modules have Octal SPI, as well as are DTR instead of ST...
by accessays
Sun Oct 31, 2021 6:57 pm
Forum: Hardware
Topic: ESP32-S3 DMA (EDMA) with PSRAM and LCD
Replies: 2
Views: 6091

Re: ESP32-S3 DMA (EDMA) with PSRAM and LCD

Likely you're not flushing your cache. There's a cache between the PSRAM and the CPU. The CPU accesses the PSRAM through that cache, but EDMA directly accesses the PSRAM without going through the cache, meaning stuff can get 'stuck' in that cache: thr CPU has written it, but the cache hasn't flushe...
by accessays
Sat Oct 30, 2021 5:23 pm
Forum: Hardware
Topic: ESP32-S3 DMA (EDMA) with PSRAM and LCD
Replies: 2
Views: 6091

ESP32-S3 DMA (EDMA) with PSRAM and LCD

Hello, I am trying to get DMA working with PSRAM on ESP32-S3. From what I gather, it employs EDMA (as does ESP32-S2), which allows direct data transfer between PSRAM and peripherals, e.g. LCD. However, I've been unable to get it working properly. I used code from LVGL example in esp-idf as a base to...