treewide: remove redundant IS_ERR() before error code check
[linux/fpc-iii.git] / Documentation / devicetree / bindings / display / ingenic,lcd.txt
blob01e3261defb6a97a3bbaf41604b6693e74b18b2f
1 Ingenic JZ47xx LCD driver
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.
14 Example:
16 panel {
17         compatible = "sharp,ls020b1dd01d";
19         backlight = <&backlight>;
20         power-supply = <&vcc>;
22         port {
23                 panel_input: endpoint {
24                         remote-endpoint = <&panel_output>;
25                 };
26         };
30 lcd: lcd-controller@13050000 {
31         compatible = "ingenic,jz4725b-lcd";
32         reg = <0x13050000 0x1000>;
34         interrupt-parent = <&intc>;
35         interrupts = <31>;
37         clocks = <&cgu JZ4725B_CLK_LCD>;
38         clock-names = "lcd";
40         port {
41                 panel_output: endpoint {
42                         remote-endpoint = <&panel_input>;
43                 };
44         };