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/ingenic,lcd.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 Ingenic JZ47xx LCD driver
    2 
    3 Required properties:
    4 - compatible: one of:
    5   * ingenic,jz4740-lcd
    6   * ingenic,jz4725b-lcd
    7   * ingenic,jz4770-lcd
    8 - reg: LCD registers location and length
    9 - clocks: LCD pixclock and device clock specifiers.
   10            The device clock is only required on the JZ4740.
   11 - clock-names: "lcd_pclk" and "lcd"
   12 - interrupts: Specifies the interrupt line the LCD controller is connected to.
   13 
   14 Example:
   15 
   16 panel {
   17         compatible = "sharp,ls020b1dd01d";
   18 
   19         backlight = <&backlight>;
   20         power-supply = <&vcc>;
   21 
   22         port {
   23                 panel_input: endpoint {
   24                         remote-endpoint = <&panel_output>;
   25                 };
   26         };
   27 };
   28 
   29 
   30 lcd: lcd-controller@13050000 {
   31         compatible = "ingenic,jz4725b-lcd";
   32         reg = <0x13050000 0x1000>;
   33 
   34         interrupt-parent = <&intc>;
   35         interrupts = <31>;
   36 
   37         clocks = <&cgu JZ4725B_CLK_LCD>;
   38         clock-names = "lcd";
   39 
   40         port {
   41                 panel_output: endpoint {
   42                         remote-endpoint = <&panel_input>;
   43                 };
   44         };
   45 };

Cache object: 0827e197de92a127621ab0b94fbe7922


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