Merge tag 'riscv/for-v5.3-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/riscv...
[sfrench/cifs-2.6.git] / Documentation / devicetree / bindings / display / ingenic,lcd.txt
1 Ingenic JZ47xx LCD driver
2
3 Required properties:
4 - compatible: one of:
5   * ingenic,jz4740-lcd
6   * ingenic,jz4725b-lcd
7 - reg: LCD registers location and length
8 - clocks: LCD pixclock and device clock specifiers.
9            The device clock is only required on the JZ4740.
10 - clock-names: "lcd_pclk" and "lcd"
11 - interrupts: Specifies the interrupt line the LCD controller is connected to.
12
13 Example:
14
15 panel {
16         compatible = "sharp,ls020b1dd01d";
17
18         backlight = <&backlight>;
19         power-supply = <&vcc>;
20
21         port {
22                 panel_input: endpoint {
23                         remote-endpoint = <&panel_output>;
24                 };
25         };
26 };
27
28
29 lcd: lcd-controller@13050000 {
30         compatible = "ingenic,jz4725b-lcd";
31         reg = <0x13050000 0x1000>;
32
33         interrupt-parent = <&intc>;
34         interrupts = <31>;
35
36         clocks = <&cgu JZ4725B_CLK_LCD>;
37         clock-names = "lcd";
38
39         port {
40                 panel_output: endpoint {
41                         remote-endpoint = <&panel_input>;
42                 };
43         };
44 };