All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v3 1/3] dt-bindings: Add doc for the ingenic-drm driver
@ 2019-04-14 20:08 Paul Cercueil
  2019-04-14 20:08 ` [PATCH v3 2/3] dt-bindings: Add header for the ingenic-drm driver bindings Paul Cercueil
                   ` (2 more replies)
  0 siblings, 3 replies; 11+ messages in thread
From: Paul Cercueil @ 2019-04-14 20:08 UTC (permalink / raw)
  To: David Airlie, Daniel Vetter, Rob Herring, Mark Rutland,
	Maarten Lankhorst, Maxime Ripard, Sean Paul
  Cc: od, dri-devel, devicetree, linux-kernel, Paul Cercueil

Add documentation for the devicetree bindings of the DRM driver for 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

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

diff --git a/Documentation/devicetree/bindings/display/ingenic,drm.txt b/Documentation/devicetree/bindings/display/ingenic,drm.txt
new file mode 100644
index 000000000000..9de47db8a515
--- /dev/null
+++ b/Documentation/devicetree/bindings/display/ingenic,drm.txt
@@ -0,0 +1,53 @@
+Ingenic JZ47xx DRM 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.
+
+Optional properties in the panel mode:
+- ingenic,lcd-mode: LCD mode to use with the display panel.
+		    See <dt-bindings/display/ingenic,drm.h> for all the
+		    possible values.
+
+Example:
+
+#include <dt-bindings/display/ingenic,drm.h>
+
+panel {
+	compatible = "sharp,ls020b1dd01d", "simple-panel";
+
+	backlight = <&backlight>;
+	power-supply = <&vcc>;
+
+	ingenic,lcd-mode = <JZ_LCD_SPECIAL_TFT_2>;
+
+	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.11.0

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

end of thread, other threads:[~2019-04-22 16:13 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-04-14 20:08 [PATCH v3 1/3] dt-bindings: Add doc for the ingenic-drm driver Paul Cercueil
2019-04-14 20:08 ` [PATCH v3 2/3] dt-bindings: Add header for the ingenic-drm driver bindings Paul Cercueil
2019-04-17 13:47   ` Rob Herring
2019-04-17 13:52     ` Rob Herring
2019-04-20 12:23     ` Ezequiel Garcia
2019-04-20 12:23       ` Ezequiel Garcia
2019-04-22 16:13       ` Paul Cercueil
2019-04-14 20:08 ` [PATCH v3 3/3] DRM: Add KMS driver for the Ingenic JZ47xx SoCs Paul Cercueil
2019-04-15 16:07   ` Daniel Vetter
2019-04-15 16:07     ` Daniel Vetter
2019-04-17 13:48 ` [PATCH v3 1/3] dt-bindings: Add doc for the ingenic-drm driver Rob Herring

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.