aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation/powerpc/dts-bindings
diff options
context:
space:
mode:
Diffstat (limited to 'Documentation/powerpc/dts-bindings')
-rw-r--r--Documentation/powerpc/dts-bindings/fsl/diu.txt14
1 files changed, 12 insertions, 2 deletions
diff --git a/Documentation/powerpc/dts-bindings/fsl/diu.txt b/Documentation/powerpc/dts-bindings/fsl/diu.txt
index deb35de7098..326cddfd7c2 100644
--- a/Documentation/powerpc/dts-bindings/fsl/diu.txt
+++ b/Documentation/powerpc/dts-bindings/fsl/diu.txt
@@ -4,10 +4,12 @@ The Freescale DIU is a LCD controller, with proper hardware, it can also
4drive DVI monitors. 4drive DVI monitors.
5 5
6Required properties: 6Required properties:
7- compatible : should be "fsl-diu". 7- compatible : should be "fsl,diu" or "fsl,mpc5121-diu".
8- reg : should contain at least address and length of the DIU register 8- reg : should contain at least address and length of the DIU register
9 set. 9 set.
10- Interrupts : one DIU interrupt should be describe here. 10- interrupts : one DIU interrupt should be described here.
11- interrupt-parent : the phandle for the interrupt controller that
12 services interrupts for this device.
11 13
12Example (MPC8610HPCD): 14Example (MPC8610HPCD):
13 display@2c000 { 15 display@2c000 {
@@ -16,3 +18,11 @@ Example (MPC8610HPCD):
16 interrupts = <72 2>; 18 interrupts = <72 2>;
17 interrupt-parent = <&mpic>; 19 interrupt-parent = <&mpic>;
18 }; 20 };
21
22Example for MPC5121:
23 display@2100 {
24 compatible = "fsl,mpc5121-diu";
25 reg = <0x2100 0x100>;
26 interrupts = <64 0x8>;
27 interrupt-parent = <&ipic>;
28 };