dri-devel.lists.freedesktop.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v5 1/2] dt-bindings: Add doc for the Ingenic JZ47xx LCD controller driver
@ 2019-06-03 15:23 Paul Cercueil
  2019-06-03 15:23 ` [PATCH v5 2/2] DRM: Add KMS driver for the Ingenic JZ47xx SoCs Paul Cercueil
  2019-06-11 21:55 ` [PATCH v5 1/2] dt-bindings: Add doc for the Ingenic JZ47xx LCD controller driver Rob Herring
  0 siblings, 2 replies; 11+ messages in thread
From: Paul Cercueil @ 2019-06-03 15:23 UTC (permalink / raw)
  To: David Airlie, Daniel Vetter, Sam Ravnborg, Rob Herring,
	Mark Rutland, Maarten Lankhorst, Maxime Ripard, Sean Paul
  Cc: od, dri-devel, devicetree, linux-kernel, Paul Cercueil, Artur Rojek

Add documentation for the devicetree bindings of the LCD controller present in
the JZ47xx family of SoCs from Ingenic.

Signed-off-by: Paul Cercueil <paul@crapouillou.net>
Tested-by: Artur Rojek <contact@artur-rojek.eu>
---

Notes:
    v2: Remove ingenic,panel property.
    
    v3: - Rename compatible strings from ingenic,jz47XX-drm to ingenic,jz47XX-lcd
        - The ingenic,lcd-mode property is now read from the panel node instead
    	  of from the driver node
    
    v4: Remove ingenic,lcd-mode property completely.
    
    v5: No change

 .../bindings/display/ingenic,lcd.txt          | 44 +++++++++++++++++++
 1 file changed, 44 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/display/ingenic,lcd.txt

diff --git a/Documentation/devicetree/bindings/display/ingenic,lcd.txt b/Documentation/devicetree/bindings/display/ingenic,lcd.txt
new file mode 100644
index 000000000000..7b536c8c6dde
--- /dev/null
+++ b/Documentation/devicetree/bindings/display/ingenic,lcd.txt
@@ -0,0 +1,44 @@
+Ingenic JZ47xx LCD driver
+
+Required properties:
+- compatible: one of:
+  * ingenic,jz4740-lcd
+  * ingenic,jz4725b-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>;
+		};
+	};
+};
-- 
2.21.0.593.g511ec345e18

^ permalink raw reply related	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2019-06-21  9:17 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-06-03 15:23 [PATCH v5 1/2] dt-bindings: Add doc for the Ingenic JZ47xx LCD controller driver Paul Cercueil
2019-06-03 15:23 ` [PATCH v5 2/2] DRM: Add KMS driver for the Ingenic JZ47xx SoCs Paul Cercueil
2019-06-19 12:26   ` Sam Ravnborg
2019-06-20 14:15     ` Paul Cercueil
2019-06-21  9:04       ` Daniel Vetter
2019-06-21  9:07         ` Paul Cercueil
2019-06-21  9:13           ` Daniel Vetter
2019-06-21  9:17             ` Paul Cercueil
2019-06-11 21:55 ` [PATCH v5 1/2] dt-bindings: Add doc for the Ingenic JZ47xx LCD controller driver Rob Herring
2019-06-12  8:49   ` Paul Cercueil
2019-06-19 12:18     ` Sam Ravnborg

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).