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/display/fsl,dcu.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 Device Tree bindings for Freescale DCU DRM Driver
    2 
    3 Required properties:
    4 - compatible:           Should be one of
    5         * "fsl,ls1021a-dcu".
    6         * "fsl,vf610-dcu".
    7 
    8 - reg:                  Address and length of the register set for dcu.
    9 - clocks:               Handle to "dcu" and "pix" clock (in the order below)
   10                         This can be the same clock (e.g. LS1021a)
   11                         See ../clocks/clock-bindings.txt for details.
   12 - clock-names:          Should be "dcu" and "pix"
   13                         See ../clocks/clock-bindings.txt for details.
   14 - big-endian            Boolean property, LS1021A DCU registers are big-endian.
   15 - port                  Video port for the panel output
   16 
   17 Optional properties:
   18 - fsl,tcon:             The phandle to the timing controller node.
   19 
   20 Examples:
   21 dcu: dcu@2ce0000 {
   22         compatible = "fsl,ls1021a-dcu";
   23         reg = <0x0 0x2ce0000 0x0 0x10000>;
   24         clocks = <&platform_clk 0>, <&platform_clk 0>;
   25         clock-names = "dcu", "pix";
   26         big-endian;
   27         fsl,tcon = <&tcon>;
   28 
   29         port {
   30                 dcu_out: endpoint {
   31                         remote-endpoint = <&panel_out>;
   32              };
   33         };
   34 };

Cache object: 48d25a897eb0030018611d0e29145608


[ 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.