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/marvell,pxa2xx-lcdc.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 PXA LCD Controller
    2 ------------------
    3 
    4 Required properties:
    5  - compatible : one of these
    6         "marvell,pxa2xx-lcdc",
    7         "marvell,pxa270-lcdc",
    8         "marvell,pxa300-lcdc"
    9  - reg : should contain 1 register range (address and length).
   10  - interrupts : framebuffer controller interrupt.
   11  - clocks: phandle to input clocks
   12 
   13 Optional properties:
   14  - lcd-supply: A phandle to a power regulator that controls the LCD voltage.
   15 
   16 Required nodes:
   17  - port: connection to the LCD panel (see video-interfaces.txt)
   18          This node must have its properties bus-width and remote-endpoint set.
   19          If the panel is not a TFT color panel, then a "lcd-type" property in
   20          the panel should specify the panel type.
   21          This panel node should be in the board dts.
   22 
   23 Example:
   24         lcd-controller@40500000 {
   25                 compatible = "marvell,pxa2xx-lcdc";
   26                 reg = <0x44000000 0x10000>;
   27                 interrupts = <17>;
   28                 clocks = <&clks CLK_LCD>;
   29 
   30                 port {
   31                         lcdc_out: endpoint {
   32                                 remote-endpoint = <&panel_in>;
   33                                 bus-width = <16>;
   34                         };
   35                 };
   36         };

Cache object: 4b1be244b98a28963f42276cf7f5053e


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