Back to home page

OSCL-LXR

 
 

    


0001 * Freescale Display Interface Unit
0002 
0003 The Freescale DIU is a LCD controller, with proper hardware, it can also
0004 drive DVI monitors.
0005 
0006 Required properties:
0007 - compatible : should be "fsl,diu" or "fsl,mpc5121-diu".
0008 - reg : should contain at least address and length of the DIU register
0009   set.
0010 - interrupts : one DIU interrupt should be described here.
0011 
0012 Optional properties:
0013 - edid : verbatim EDID data block describing attached display.
0014   Data from the detailed timing descriptor will be used to
0015   program the display controller.
0016 
0017 Example (MPC8610HPCD):
0018         display@2c000 {
0019                 compatible = "fsl,diu";
0020                 reg = <0x2c000 100>;
0021                 interrupts = <72 2>;
0022                 interrupt-parent = <&mpic>;
0023         };
0024 
0025 Example for MPC5121:
0026         display@2100 {
0027                 compatible = "fsl,mpc5121-diu";
0028                 reg = <0x2100 0x100>;
0029                 interrupts = <64 0x8>;
0030                 interrupt-parent = <&ipic>;
0031                 edid = [edid-data];
0032         };