Commit a027b33348df3512d7680eed29bada1247f01ad7

Authored by Anatolij Gustschin
Committed by Grant Likely
1 parent 4b5006ec7b

powerpc/5121: doc/dts-bindings: update doc of FSL DIU bindings

Update compatible and interrupt properties description.
Furthermore an example for the MPC5121 has been added.

Signed-off-by: Anatolij Gustschin <agust@denx.de>
Acked-by: Timur Tabi <timur@freescale.com>
Signed-off-by: Grant Likely <grant.likely@secretlab.ca>

Showing 1 changed file with 12 additions and 2 deletions Side-by-side Diff

Documentation/powerpc/dts-bindings/fsl/diu.txt
... ... @@ -4,10 +4,12 @@
4 4 drive DVI monitors.
5 5  
6 6 Required properties:
7   -- compatible : should be "fsl-diu".
  7 +- compatible : should be "fsl,diu" or "fsl,mpc5121-diu".
8 8 - reg : should contain at least address and length of the DIU register
9 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  
12 14 Example (MPC8610HPCD):
13 15 display@2c000 {
... ... @@ -15,5 +17,13 @@
15 17 reg = <0x2c000 100>;
16 18 interrupts = <72 2>;
17 19 interrupt-parent = <&mpic>;
  20 + };
  21 +
  22 +Example for MPC5121:
  23 + display@2100 {
  24 + compatible = "fsl,mpc5121-diu";
  25 + reg = <0x2100 0x100>;
  26 + interrupts = <64 0x8>;
  27 + interrupt-parent = <&ipic>;
18 28 };