nuttx/arch/arm/src
Gregory Nutt 8ed4b1acfa Defines a second interface for the dma2d controller. Controlling both LTDC and DMA2D was unpractical from the programmers view because both controllers are to different. LTDC only controls the display visibility but the DMA2D controller changes the content of the frame buffer (buffer of the layer).
The main features are:

1. DMA2D interface
   Supports the nuttx pixel formats:
   - FB_FMT_RGB8
   - FB_FMT_RGB24
   - FB_FMT_RGB16_565
   Dynamic layer allocation during runtime for the supported formats
   - The number of allocatable layer can be configured.
   Supported dma2d operation:
   - blit (Copy content from source to destination layer) also works with
     selectable area.
   - blend (Blend two layer and copy the result to a destination layer wich can
     be a third layer or one of the source layer) also works with selectable
     area.
   - fillarea (Fill a defined area of the whole layer with a specific color)

As a result of that the dma2d controller can't transfer data from the core coupled memory, CCM is disabled but usable by the ccm allocator. Currently the ccm allocator is used for allocating the layer structurei only. For the dma memory (layers frame buffer) memory is allocated from heap 2 and 3.

2. LTDC interface

   I have changed the api for the currently non implemented operations:
   - blit (Copy content from a dma2d layer to an ltdc layer) also works with
     selectable area.
   - blend (Blend two dma2d layer and copy the result to a destination ltdc
     layer) also  works with selectable area.

     Note! ltdc layer is a layer referenced by the ltdc interface. dma2d layer
     is a layer referenced by the dma2d interface.

     One of the most important questions for me was, How can i flexible use an
     ltdc layer with the dma2d interface, e.g. as source layer for dma2d
     operations?
     Get the layer id of the related dma2d layer by a special flag when using
     getlid() function of the ltdc interface and use the layer id to reference
     the specific dma2d layer by the dma2d interface.

     The ltdc coupled dma2d layers are predefined and can't be dynamically
     allocated of freed. They use the same frame buffer memory and the same
     color lookup table.

   Changes:
   - layer internal format of the clut table
   - interrupt handling for register reload (vertical vblank) instead using
     waiting loop
   - small fixes and refactoring

From Marco Krahl.
2015-04-16 09:11:52 -06:00
..
a1x Remove executable flag from more .c and .h files 2015-04-09 08:20:57 -06:00
arm Make some file section headers more consistent with standard 2015-04-08 08:04:12 -06:00
armv6-m Make some file section headers more consistent with standard 2015-04-08 08:04:12 -06:00
armv7-a Make some file section headers more consistent with standard 2015-04-08 08:04:12 -06:00
armv7-m Update comments 2015-04-15 16:38:08 -06:00
c5471 More places where watchodg mispelled 2015-04-15 21:36:30 -06:00
calypso Calypso/Compal_e86 update from Craig Comstock 2015-04-16 09:11:47 -06:00
common Make some file section headers more consistent with standard 2015-04-08 08:04:12 -06:00
dm320 Make some file section headers more consistent with standard 2015-04-08 08:04:12 -06:00
efm32 Fix several typos in comments 2015-04-09 16:13:03 -06:00
imx Make some file section headers more consistent with standard 2015-04-08 08:04:12 -06:00
kinetis Make some file section headers more consistent with standard 2015-04-08 08:04:12 -06:00
kl Remove executable flag from more .c and .h files 2015-04-09 08:20:57 -06:00
lpc17xx Remove executable flag from more .c and .h files 2015-04-09 08:20:57 -06:00
lpc31xx Remove executable flag from more .c and .h files 2015-04-09 08:20:57 -06:00
lpc43xx Make some file section headers more consistent with standard 2015-04-08 08:04:12 -06:00
lpc214x Make some file section headers more consistent with standard 2015-04-08 08:04:12 -06:00
lpc2378 Make some file section headers more consistent with standard 2015-04-08 08:04:12 -06:00
nuc1xx Make some file section headers more consistent with standard 2015-04-08 08:04:12 -06:00
sam34 More places where watchodg mispelled 2015-04-15 21:36:30 -06:00
sama5 More places where watchodg mispelled 2015-04-15 21:36:30 -06:00
samd Make some file section headers more consistent with standard 2015-04-08 08:04:12 -06:00
samv7 Revert commit b80e8be652dfa52e97daa65aa3e550cf31cb2409 2015-04-12 06:26:50 -06:00
stm32 Defines a second interface for the dma2d controller. Controlling both LTDC and DMA2D was unpractical from the programmers view because both controllers are to different. LTDC only controls the display visibility but the DMA2D controller changes the content of the frame buffer (buffer of the layer). 2015-04-16 09:11:52 -06:00
str71x Make some file section headers more consistent with standard 2015-04-08 08:04:12 -06:00
tiva Make some file section headers more consistent with standard 2015-04-08 08:04:12 -06:00
.gitignore .dSYM only needs to be in the same .gitignore files as .exe 2013-05-30 15:02:04 -06:00
Makefile Cortex-M7/SAMV71-XULT: Various fixes for building Cortex-M7 with SAMV71. 2015-03-06 10:53:57 -06:00