mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-02-12 01:45:24 +07:00
![Paul Cercueil](/assets/img/avatar_default.png)
Add a compatible string for the LCD controller found in the JZ4770 SoC. v2: No change Signed-off-by: Paul Cercueil <paul@crapouillou.net> Acked-by: Rob Herring <robh@kernel.org> Link: https://patchwork.freedesktop.org/patch/msgid/20191210144142.33143-1-paul@crapouillou.net # *** extracted tags *** Acked-by: Sam Ravnborg <sam@ravnborg.org>
46 lines
883 B
Plaintext
46 lines
883 B
Plaintext
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>;
|
|
};
|
|
};
|
|
};
|