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