I came across small fix in dma init by ali-rostami · Pull Request #12 · lvgl/lv_port_stm32f746_disco_atollic · GitHub . I can’t answer there as that conversation is locked, so let me explain here:
The fix revolves around STM32 DMA initialization:
MemDataAlignment should be inited with DMA_MDATAALIGN_HALFWORD.
I also wonder how was it working because these defines have different values.
The dual-port DMA used in 'F7 (and 'F2/'F4, and as “general-purpose” DMA1/DMA2 in 'H7) has in internal 16-byte (4 word) FIFO. If enabled, the DMA can read on the source port a different width data than write on destination port, the FIFO allows to rearrange (split or assemble) the data as needed. FIFO can be disabled (and that’s the default state, called by ST rather confusingly Direct mode, see the even more confusingly named DMA_SxFCR.DMDIS (Direct Mode Disable = FIFO enable) bit).
In the code in question, DMA is used to transfer from LVGL’s “assembly” buffer into the LCD controller’s framebuffer. Memory-to-memory (M2M) mode is used, which requires FIFO to be on, and that’s set appropriately. In M2M mode, implicitly, the Peripheral port is source, and Memory port is destination.
Now in Cube/HAL, the data width on each port are given by DMA_SxCR.MSIZE/DMA_SxCR.PSIZE filled from the init struct’s MemDataAlignment/PeriphDataAlignment fields (characteristically, the fields’ name is even more confusing, thanks to the obvious incompetence of Cube/HAL’s authors - even if datum size implicitly does imply required address alignment, as DMA is not designed to perform unaligned bus transfers, there’s no clue in the name as per data width).
So, if you set PSIZE to halfword and MSIZE to word, DMA will read from peripheral port halfwords (their number given by the NDTR setting), assemble them into words and write on the memory port. If NDTR is odd, the last word write will overwrite one halfword after the intended size.
So, the fix above indeed corrects that, and also allows the destination (the LTDC framebuffer) to reside on word-unaligned halfword-aligned addresses.
However, reading and writing halfwords takes twice as much time (not exactly as the process is complex and involves many variables inside and outside DMA) as reading and writing words, so in that sense it’s a pessimisation step; and, contrary, the PSIZE ought to be set to words.
Rationale is, that I’m yet to see a display which has resolution in either direction other than multiple of 8 or even (much) higher power of 2 There’s little to absolute no reason on the destination (Memory) side not to see other than word alignment and word size of the framebuffer. On the source (Peripheral) side, it’s the lvgl’s “assembly” buffer which is user-settable, but again, it’s not unreasonable to expect the user to set it word aligned and word-sized.
There’s no “absolutely perfect” solution in the real microcontroller world; there are always tradeoffs, and thinking is required.
2 eurocents
JW