summaryrefslogtreecommitdiffstats
path: root/dts/Bindings/display/ingenic,lcd.txt
blob: 01e3261defb6a97a3bbaf41604b6693e74b18b2f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
Ingenic JZ47xx LCD driver

Required properties:
- compatible: one of:
  * ingenic,jz4740-lcd
  * ingenic,jz4725b-lcd
  * ingenic,jz4770-lcd
- reg: LCD registers location and length
- clocks: LCD pixclock and device clock specifiers.
	   The device clock is only required on the JZ4740.
- clock-names: "lcd_pclk" and "lcd"
- interrupts: Specifies the interrupt line the LCD controller is connected to.

Example:

panel {
	compatible = "sharp,ls020b1dd01d";

	backlight = <&backlight>;
	power-supply = <&vcc>;

	port {
		panel_input: endpoint {
			remote-endpoint = <&panel_output>;
		};
	};
};


lcd: lcd-controller@13050000 {
	compatible = "ingenic,jz4725b-lcd";
	reg = <0x13050000 0x1000>;

	interrupt-parent = <&intc>;
	interrupts = <31>;

	clocks = <&cgu JZ4725B_CLK_LCD>;
	clock-names = "lcd";

	port {
		panel_output: endpoint {
			remote-endpoint = <&panel_input>;
		};
	};
};