Skip to content

Commit 2d62da8

Browse files
pH5gregkh
authored andcommitted
staging: drm/imx: Add devicetree binding documentation
Signed-off-by: Philipp Zabel <[email protected]> Signed-off-by: Sascha Hauer <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>
1 parent f326f79 commit 2d62da8

File tree

1 file changed

+41
-0
lines changed

1 file changed

+41
-0
lines changed
Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
Freescale i.MX IPUv3
2+
====================
3+
4+
Required properties:
5+
- compatible: Should be "fsl,<chip>-ipu"
6+
- reg: should be register base and length as documented in the
7+
datasheet
8+
- interrupts: Should contain sync interrupt and error interrupt,
9+
in this order.
10+
- #crtc-cells: 1, See below
11+
12+
example:
13+
14+
ipu: ipu@18000000 {
15+
#crtc-cells = <1>;
16+
compatible = "fsl,imx53-ipu";
17+
reg = <0x18000000 0x080000000>;
18+
interrupts = <11 10>;
19+
};
20+
21+
Parallel display support
22+
========================
23+
24+
Required properties:
25+
- compatible: Should be "fsl,imx-parallel-display"
26+
- crtc: the crtc this display is connected to, see below
27+
Optional properties:
28+
- interface_pix_fmt: How this display is connected to the
29+
crtc. Currently supported types: "rgb24", "rgb565"
30+
- edid: verbatim EDID data block describing attached display.
31+
- ddc: phandle describing the i2c bus handling the display data
32+
channel
33+
34+
example:
35+
36+
display@di0 {
37+
compatible = "fsl,imx-parallel-display";
38+
edid = [edid-data];
39+
crtc = <&ipu 0>;
40+
interface-pix-fmt = "rgb24";
41+
};

0 commit comments

Comments
 (0)