1Ingenic JZ47xx LCD driver 2 3Required 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 13Example: 14 15panel { 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 29lcd: 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}; 45