About Kernel Documentation Linux Kernel Contact Linux Resources Linux Blog

Documentation / devicetree / bindings / video / simple-framebuffer.txt


Based on kernel version 4.3. Page generated on 2015-11-02 12:48 EST.

1	Simple Framebuffer
2	
3	A simple frame-buffer describes a frame-buffer setup by firmware or
4	the bootloader, with the assumption that the display hardware has already
5	been set up to scan out from the memory pointed to by the reg property.
6	
7	Since simplefb nodes represent runtime information they must be sub-nodes of
8	the chosen node (*). Simplefb nodes must be named "framebuffer@<address>".
9	
10	If the devicetree contains nodes for the display hardware used by a simplefb,
11	then the simplefb node must contain a property called "display", which
12	contains a phandle pointing to the primary display hw node, so that the OS
13	knows which simplefb to disable when handing over control to a driver for the
14	real hardware. The bindings for the hw nodes must specify which node is
15	considered the primary node.
16	
17	It is advised to add display# aliases to help the OS determine how to number
18	things. If display# aliases are used, then if the simplefb node contains a
19	"display" property then the /aliases/display# path must point to the display
20	hw node the "display" property points to, otherwise it must point directly
21	to the simplefb node.
22	
23	If a simplefb node represents the preferred console for user interaction,
24	then the chosen node's stdout-path property should point to it, or to the
25	primary display hw node, as with display# aliases. If display aliases are
26	used then it should be set to the alias instead.
27	
28	It is advised that devicetree files contain pre-filled, disabled framebuffer
29	nodes, so that the firmware only needs to update the mode information and
30	enable them. This way if e.g. later on support for more display clocks get
31	added, the simplefb nodes will already contain this info and the firmware
32	does not need to be updated.
33	
34	If pre-filled framebuffer nodes are used, the firmware may need extra
35	information to find the right node. In that case an extra platform specific
36	compatible and platform specific properties should be used and documented,
37	see e.g. simple-framebuffer-sunxi.txt .
38	
39	Required properties:
40	- compatible: "simple-framebuffer"
41	- reg: Should contain the location and size of the framebuffer memory.
42	- width: The width of the framebuffer in pixels.
43	- height: The height of the framebuffer in pixels.
44	- stride: The number of bytes in each line of the framebuffer.
45	- format: The format of the framebuffer surface. Valid values are:
46	  - r5g6b5 (16-bit pixels, d[15:11]=r, d[10:5]=g, d[4:0]=b).
47	  - a8b8g8r8 (32-bit pixels, d[31:24]=a, d[23:16]=b, d[15:8]=g, d[7:0]=r).
48	
49	Optional properties:
50	- clocks : List of clocks used by the framebuffer. Clocks listed here
51	           are expected to already be configured correctly. The OS must
52	           ensure these clocks are not modified or disabled while the
53	           simple framebuffer remains active.
54	- display : phandle pointing to the primary display hardware node
55	
56	Example:
57	
58	aliases {
59		display0 = &lcdc0;
60	}
61	
62	chosen {
63		framebuffer0: framebuffer@1d385000 {
64			compatible = "simple-framebuffer";
65			reg = <0x1d385000 (1600 * 1200 * 2)>;
66			width = <1600>;
67			height = <1200>;
68			stride = <(1600 * 2)>;
69			format = "r5g6b5";
70			clocks = <&ahb_gates 36>, <&ahb_gates 43>, <&ahb_gates 44>;
71			display = <&lcdc0>;
72		};
73		stdout-path = "display0";
74	};
75	
76	soc@01c00000 {
77		lcdc0: lcdc@1c0c000 {
78			compatible = "allwinner,sun4i-a10-lcdc";
79			...
80		};
81	};
82	
83	
84	*) Older devicetree files may have a compatible = "simple-framebuffer" node
85	in a different place, operating systems must first enumerate any compatible
86	nodes found under chosen and then check for other compatible nodes.
Hide Line Numbers


About Kernel Documentation Linux Kernel Contact Linux Resources Linux Blog