The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/contrib/device-tree/Bindings/powerpc/fsl/diu.txt

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 * Freescale Display Interface Unit
    2 
    3 The Freescale DIU is a LCD controller, with proper hardware, it can also
    4 drive DVI monitors.
    5 
    6 Required properties:
    7 - compatible : should be "fsl,diu" or "fsl,mpc5121-diu".
    8 - reg : should contain at least address and length of the DIU register
    9   set.
   10 - interrupts : one DIU interrupt should be described here.
   11 
   12 Optional properties:
   13 - edid : verbatim EDID data block describing attached display.
   14   Data from the detailed timing descriptor will be used to
   15   program the display controller.
   16 
   17 Example (MPC8610HPCD):
   18         display@2c000 {
   19                 compatible = "fsl,diu";
   20                 reg = <0x2c000 100>;
   21                 interrupts = <72 2>;
   22                 interrupt-parent = <&mpic>;
   23         };
   24 
   25 Example for MPC5121:
   26         display@2100 {
   27                 compatible = "fsl,mpc5121-diu";
   28                 reg = <0x2100 0x100>;
   29                 interrupts = <64 0x8>;
   30                 interrupt-parent = <&ipic>;
   31                 edid = [edid-data];
   32         };

Cache object: 70c8e0dac0b0a4ee99b23707b25596a9


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.