Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

DT: video: atmel_lcdc: Add example of fixed framebuffer memory

This drivers allows a fixed framebuffer memory to be set by an additional
IORESOURCE_MEM resource. Thus add an example to the DT documentation.

Signed-off-by: Alexander Stein <alexander.stein@systec-electronic.com>
Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com>

authored by

Alexander Stein and committed by
Nicolas Ferre
4518996f 35762a62

+11 -1
+11 -1
Documentation/devicetree/bindings/video/atmel,lcdc.txt
··· 10 10 "atmel,at91sam9g45es-lcdc" , 11 11 "atmel,at91sam9rl-lcdc" , 12 12 "atmel,at32ap-lcdc" 13 - - reg : Should contain 1 register ranges(address and length) 13 + - reg : Should contain 1 register ranges(address and length). 14 + Can contain an additional register range(address and length) 15 + for fixed framebuffer memory. Useful for dedicated memories. 14 16 - interrupts : framebuffer controller interrupt 15 17 - display: a phandle pointing to the display node 16 18 ··· 38 36 #address-cells = <1>; 39 37 #size-cells = <1>; 40 38 39 + }; 40 + 41 + Example for fixed framebuffer memory: 42 + 43 + fb0: fb@0x00500000 { 44 + compatible = "atmel,at91sam9263-lcdc"; 45 + reg = <0x00700000 0x1000 0x70000000 0x200000>; 46 + [...] 41 47 }; 42 48 43 49 Atmel LCDC Display