diu.txt 753 B

12345678910111213141516171819202122232425262728
  1. * Freescale Display Interface Unit
  2. The Freescale DIU is a LCD controller, with proper hardware, it can also
  3. drive DVI monitors.
  4. Required properties:
  5. - compatible : should be "fsl,diu" or "fsl,mpc5121-diu".
  6. - reg : should contain at least address and length of the DIU register
  7. set.
  8. - interrupts : one DIU interrupt should be described here.
  9. - interrupt-parent : the phandle for the interrupt controller that
  10. services interrupts for this device.
  11. Example (MPC8610HPCD):
  12. display@2c000 {
  13. compatible = "fsl,diu";
  14. reg = <0x2c000 100>;
  15. interrupts = <72 2>;
  16. interrupt-parent = <&mpic>;
  17. };
  18. Example for MPC5121:
  19. display@2100 {
  20. compatible = "fsl,mpc5121-diu";
  21. reg = <0x2100 0x100>;
  22. interrupts = <64 0x8>;
  23. interrupt-parent = <&ipic>;
  24. };