linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v3 0/5] drm/panel-simple: Add panel parameters for ortustech-com37h3m05dtc/99dtc and sharp-lq070y3dg3b
@ 2019-06-07 11:11 H. Nikolaus Schaller
  2019-06-07 11:11 ` [PATCH v3 1/5] drm/panel: simple: Add Sharp LQ070Y3DG3B panel support H. Nikolaus Schaller
                   ` (5 more replies)
  0 siblings, 6 replies; 21+ messages in thread
From: H. Nikolaus Schaller @ 2019-06-07 11:11 UTC (permalink / raw)
  To: Thierry Reding, David Airlie, Daniel Vetter, tomi.valkeinen,
	imirkin, marek.belisko, Rob Herring, Mark Rutland
  Cc: dri-devel, linux-kernel, linux-omap, letux-kernel, devicetree,
	H. Nikolaus Schaller

V3:
* add bindings documentation (suggested by sam@ravnborg.org)

V2 2019-06-05 07:07:05:
* fix typo in 99dtc panel compatible string (reported by imirkin@alum.mit.edu)

V1 2019-06-04 14:53:00:

Since v5.2-rc1 OMAP is no longer using a special display driver architecture
for DPI panels, but uses the general drm/panel/panel-simple.

So we finally can add SoC independent panel definitions for two panel models
which we already had worked on quite a while ago (before device tree was
introduced):

	https://patchwork.kernel.org/patch/2851295/



H. Nikolaus Schaller (5):
  drm/panel: simple: Add Sharp LQ070Y3DG3B panel support
  drm/panel: simple: Add Ortustech COM37H3M panel support
  dt-bindings: drm/panel: simple: add ortustech,com37h3m05dtc panel
  dt-bindings: drm/panel: simple: add ortustech,com37h3m99dtc panel
  dt-bindings: drm/panel: simple: add sharp,lq070y3dg3b panel

 .../display/panel/ortustech,com37h3m05dtc.txt | 12 ++++
 .../display/panel/ortustech,com37h3m99dtc.txt | 12 ++++
 .../display/panel/sharp,lq070y3dg3b.txt       | 12 ++++
 drivers/gpu/drm/panel/panel-simple.c          | 63 +++++++++++++++++++
 4 files changed, 99 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/display/panel/ortustech,com37h3m05dtc.txt
 create mode 100644 Documentation/devicetree/bindings/display/panel/ortustech,com37h3m99dtc.txt
 create mode 100644 Documentation/devicetree/bindings/display/panel/sharp,lq070y3dg3b.txt

-- 
2.19.1


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

* [PATCH v3 1/5] drm/panel: simple: Add Sharp LQ070Y3DG3B panel support
  2019-06-07 11:11 [PATCH v3 0/5] drm/panel-simple: Add panel parameters for ortustech-com37h3m05dtc/99dtc and sharp-lq070y3dg3b H. Nikolaus Schaller
@ 2019-06-07 11:11 ` H. Nikolaus Schaller
  2019-06-25 20:39   ` Sam Ravnborg
  2019-06-07 11:11 ` [PATCH v3 2/5] drm/panel: simple: Add Ortustech COM37H3M " H. Nikolaus Schaller
                   ` (4 subsequent siblings)
  5 siblings, 1 reply; 21+ messages in thread
From: H. Nikolaus Schaller @ 2019-06-07 11:11 UTC (permalink / raw)
  To: Thierry Reding, David Airlie, Daniel Vetter, tomi.valkeinen,
	imirkin, marek.belisko, Rob Herring, Mark Rutland
  Cc: dri-devel, linux-kernel, linux-omap, letux-kernel, devicetree,
	H. Nikolaus Schaller

The change adds support for the Sharp LQ070Y3DG3B 7.0" TFT LCD panel.

Tested on Letux7004.

Signed-off-by: H. Nikolaus Schaller <hns@goldelico.com>
---
 drivers/gpu/drm/panel/panel-simple.c | 30 ++++++++++++++++++++++++++++
 1 file changed, 30 insertions(+)

diff --git a/drivers/gpu/drm/panel/panel-simple.c b/drivers/gpu/drm/panel/panel-simple.c
index 569be4efd8d1..5b27829c5a78 100644
--- a/drivers/gpu/drm/panel/panel-simple.c
+++ b/drivers/gpu/drm/panel/panel-simple.c
@@ -2204,6 +2204,33 @@ static const struct panel_desc samsung_ltn140at29_301 = {
 	},
 };
 
+static const struct drm_display_mode sharp_lq070y3dg3b_mode = {
+	.clock = 33260,
+	.hdisplay = 800,
+	.hsync_start = 800 + 64,
+	.hsync_end = 800 + 64 + 128,
+	.htotal = 800 + 64 + 128 + 64,
+	.vdisplay = 480,
+	.vsync_start = 480 + 8,
+	.vsync_end = 480 + 8 + 2,
+	.vtotal = 480 + 8 + 2 + 35,
+	.vrefresh = 60,
+	.flags = DISPLAY_FLAGS_PIXDATA_POSEDGE,
+};
+
+static const struct panel_desc sharp_lq070y3dg3b = {
+	.modes = &sharp_lq070y3dg3b_mode,
+	.num_modes = 1,
+	.bpc = 8,
+	.size = {
+		.width = 152,	/* 152.4mm */
+		.height = 91,	/* 91.4mm */
+	},
+	.bus_format = MEDIA_BUS_FMT_RGB888_1X24,
+	.bus_flags = DRM_BUS_FLAG_DE_HIGH | DRM_BUS_FLAG_PIXDATA_POSEDGE |
+		     DRM_BUS_FLAG_SYNC_DRIVE_POSEDGE,
+};
+
 static const struct drm_display_mode sharp_lq035q7db03_mode = {
 	.clock = 5500,
 	.hdisplay = 240,
@@ -2786,6 +2813,9 @@ static const struct of_device_id platform_of_match[] = {
 	}, {
 		.compatible = "sharp,lq035q7db03",
 		.data = &sharp_lq035q7db03,
+	}, {
+		.compatible = "sharp,lq070y3dg3b",
+		.data = &sharp_lq070y3dg3b,
 	}, {
 		.compatible = "sharp,lq101k1ly04",
 		.data = &sharp_lq101k1ly04,
-- 
2.19.1


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

* [PATCH v3 2/5] drm/panel: simple: Add Ortustech COM37H3M panel support
  2019-06-07 11:11 [PATCH v3 0/5] drm/panel-simple: Add panel parameters for ortustech-com37h3m05dtc/99dtc and sharp-lq070y3dg3b H. Nikolaus Schaller
  2019-06-07 11:11 ` [PATCH v3 1/5] drm/panel: simple: Add Sharp LQ070Y3DG3B panel support H. Nikolaus Schaller
@ 2019-06-07 11:11 ` H. Nikolaus Schaller
  2019-06-25 20:40   ` Sam Ravnborg
  2019-06-07 11:11 ` [PATCH v3 3/5] dt-bindings: drm/panel: simple: add ortustech,com37h3m05dtc panel H. Nikolaus Schaller
                   ` (3 subsequent siblings)
  5 siblings, 1 reply; 21+ messages in thread
From: H. Nikolaus Schaller @ 2019-06-07 11:11 UTC (permalink / raw)
  To: Thierry Reding, David Airlie, Daniel Vetter, tomi.valkeinen,
	imirkin, marek.belisko, Rob Herring, Mark Rutland
  Cc: dri-devel, linux-kernel, linux-omap, letux-kernel, devicetree,
	H. Nikolaus Schaller

The change adds support for the Ortustech COM37H3M05DTC/99DTC 3.7" TFT LCD panel.

Tested on Letux3704.

Signed-off-by: H. Nikolaus Schaller <hns@goldelico.com>
---
 drivers/gpu/drm/panel/panel-simple.c | 33 ++++++++++++++++++++++++++++
 1 file changed, 33 insertions(+)

diff --git a/drivers/gpu/drm/panel/panel-simple.c b/drivers/gpu/drm/panel/panel-simple.c
index 5b27829c5a78..1fb74908a269 100644
--- a/drivers/gpu/drm/panel/panel-simple.c
+++ b/drivers/gpu/drm/panel/panel-simple.c
@@ -2007,6 +2007,33 @@ static const struct panel_desc ontat_yx700wv03 = {
 	.bus_format = MEDIA_BUS_FMT_RGB666_1X18,
 };
 
+static const struct drm_display_mode ortustech_com37h3m_mode  = {
+	.clock = 22153,
+	.hdisplay = 480,
+	.hsync_start = 480 + 8,
+	.hsync_end = 480 + 8 + 10,
+	.htotal = 480 + 8 + 10 + 10,
+	.vdisplay = 640,
+	.vsync_start = 640 + 4,
+	.vsync_end = 640 + 4 + 3,
+	.vtotal = 640 + 4 + 3 + 4,
+	.vrefresh = 60,
+	.flags = DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC,
+};
+
+static const struct panel_desc ortustech_com37h3m = {
+	.modes = &ortustech_com37h3m_mode,
+	.num_modes = 1,
+	.bpc = 8,
+	.size = {
+		.width = 56,	/* 56.16mm */
+		.height = 75,	/* 74.88mm */
+	},
+	.bus_format = MEDIA_BUS_FMT_RGB888_1X24,
+	.bus_flags = DRM_BUS_FLAG_DE_HIGH | DRM_BUS_FLAG_PIXDATA_POSEDGE |
+		     DRM_BUS_FLAG_SYNC_DRIVE_POSEDGE,
+};
+
 static const struct drm_display_mode ortustech_com43h4m85ulc_mode  = {
 	.clock = 25000,
 	.hdisplay = 480,
@@ -2786,6 +2813,12 @@ static const struct of_device_id platform_of_match[] = {
 	}, {
 		.compatible = "ontat,yx700wv03",
 		.data = &ontat_yx700wv03,
+	}, {
+		.compatible = "ortustech,com37h3m05dtc",
+		.data = &ortustech_com37h3m,
+	}, {
+		.compatible = "ortustech,com37h3m99dtc",
+		.data = &ortustech_com37h3m,
 	}, {
 		.compatible = "ortustech,com43h4m85ulc",
 		.data = &ortustech_com43h4m85ulc,
-- 
2.19.1


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

* [PATCH v3 3/5] dt-bindings: drm/panel: simple: add ortustech,com37h3m05dtc panel
  2019-06-07 11:11 [PATCH v3 0/5] drm/panel-simple: Add panel parameters for ortustech-com37h3m05dtc/99dtc and sharp-lq070y3dg3b H. Nikolaus Schaller
  2019-06-07 11:11 ` [PATCH v3 1/5] drm/panel: simple: Add Sharp LQ070Y3DG3B panel support H. Nikolaus Schaller
  2019-06-07 11:11 ` [PATCH v3 2/5] drm/panel: simple: Add Ortustech COM37H3M " H. Nikolaus Schaller
@ 2019-06-07 11:11 ` H. Nikolaus Schaller
  2019-06-25 20:26   ` [PATCH v3 3/5] dt-bindings: drm/panel: simple: add ortustech, com37h3m05dtc panel Sam Ravnborg
  2019-07-09  1:57   ` [PATCH v3 3/5] dt-bindings: drm/panel: simple: add ortustech,com37h3m05dtc panel Rob Herring
  2019-06-07 11:11 ` [PATCH v3 4/5] dt-bindings: drm/panel: simple: add ortustech,com37h3m99dtc panel H. Nikolaus Schaller
                   ` (2 subsequent siblings)
  5 siblings, 2 replies; 21+ messages in thread
From: H. Nikolaus Schaller @ 2019-06-07 11:11 UTC (permalink / raw)
  To: Thierry Reding, David Airlie, Daniel Vetter, tomi.valkeinen,
	imirkin, marek.belisko, Rob Herring, Mark Rutland
  Cc: dri-devel, linux-kernel, linux-omap, letux-kernel, devicetree,
	H. Nikolaus Schaller

Signed-off-by: H. Nikolaus Schaller <hns@goldelico.com>
---
 .../display/panel/ortustech,com37h3m05dtc.txt        | 12 ++++++++++++
 1 file changed, 12 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/display/panel/ortustech,com37h3m05dtc.txt

diff --git a/Documentation/devicetree/bindings/display/panel/ortustech,com37h3m05dtc.txt b/Documentation/devicetree/bindings/display/panel/ortustech,com37h3m05dtc.txt
new file mode 100644
index 000000000000..c16907c02f80
--- /dev/null
+++ b/Documentation/devicetree/bindings/display/panel/ortustech,com37h3m05dtc.txt
@@ -0,0 +1,12 @@
+OrtusTech COM37H3M05DTC Blanview 3.7" VGA portrait TFT-LCD panel
+
+Required properties:
+- compatible: should be "ortustech,com37h3m05dtc"
+
+Optional properties:
+- enable-gpios: GPIO pin to enable or disable the panel
+- backlight: phandle of the backlight device attached to the panel
+- power-supply: phandle of the regulator that provides the supply voltage
+
+This binding is compatible with the simple-panel binding, which is specified
+in simple-panel.txt in this directory.
-- 
2.19.1


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

* [PATCH v3 4/5] dt-bindings: drm/panel: simple: add ortustech,com37h3m99dtc panel
  2019-06-07 11:11 [PATCH v3 0/5] drm/panel-simple: Add panel parameters for ortustech-com37h3m05dtc/99dtc and sharp-lq070y3dg3b H. Nikolaus Schaller
                   ` (2 preceding siblings ...)
  2019-06-07 11:11 ` [PATCH v3 3/5] dt-bindings: drm/panel: simple: add ortustech,com37h3m05dtc panel H. Nikolaus Schaller
@ 2019-06-07 11:11 ` H. Nikolaus Schaller
  2019-06-25 20:40   ` [PATCH v3 4/5] dt-bindings: drm/panel: simple: add ortustech, com37h3m99dtc panel Sam Ravnborg
  2019-07-09  1:58   ` [PATCH v3 4/5] dt-bindings: drm/panel: simple: add ortustech,com37h3m99dtc panel Rob Herring
  2019-06-07 11:11 ` [PATCH v3 5/5] dt-bindings: drm/panel: simple: add sharp,lq070y3dg3b panel H. Nikolaus Schaller
  2019-06-24 18:44 ` [PATCH v3 0/5] drm/panel-simple: Add panel parameters for ortustech-com37h3m05dtc/99dtc and sharp-lq070y3dg3b H. Nikolaus Schaller
  5 siblings, 2 replies; 21+ messages in thread
From: H. Nikolaus Schaller @ 2019-06-07 11:11 UTC (permalink / raw)
  To: Thierry Reding, David Airlie, Daniel Vetter, tomi.valkeinen,
	imirkin, marek.belisko, Rob Herring, Mark Rutland
  Cc: dri-devel, linux-kernel, linux-omap, letux-kernel, devicetree,
	H. Nikolaus Schaller

Signed-off-by: H. Nikolaus Schaller <hns@goldelico.com>
---
 .../display/panel/ortustech,com37h3m99dtc.txt        | 12 ++++++++++++
 1 file changed, 12 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/display/panel/ortustech,com37h3m99dtc.txt

diff --git a/Documentation/devicetree/bindings/display/panel/ortustech,com37h3m99dtc.txt b/Documentation/devicetree/bindings/display/panel/ortustech,com37h3m99dtc.txt
new file mode 100644
index 000000000000..06a73c3f46b5
--- /dev/null
+++ b/Documentation/devicetree/bindings/display/panel/ortustech,com37h3m99dtc.txt
@@ -0,0 +1,12 @@
+OrtusTech COM37H3M99DTC Blanview 3.7" VGA portrait TFT-LCD panel
+
+Required properties:
+- compatible: should be "ortustech,com37h3m99dtc"
+
+Optional properties:
+- enable-gpios: GPIO pin to enable or disable the panel
+- backlight: phandle of the backlight device attached to the panel
+- power-supply: phandle of the regulator that provides the supply voltage
+
+This binding is compatible with the simple-panel binding, which is specified
+in simple-panel.txt in this directory.
-- 
2.19.1


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

* [PATCH v3 5/5] dt-bindings: drm/panel: simple: add sharp,lq070y3dg3b panel
  2019-06-07 11:11 [PATCH v3 0/5] drm/panel-simple: Add panel parameters for ortustech-com37h3m05dtc/99dtc and sharp-lq070y3dg3b H. Nikolaus Schaller
                   ` (3 preceding siblings ...)
  2019-06-07 11:11 ` [PATCH v3 4/5] dt-bindings: drm/panel: simple: add ortustech,com37h3m99dtc panel H. Nikolaus Schaller
@ 2019-06-07 11:11 ` H. Nikolaus Schaller
  2019-06-25 20:41   ` [PATCH v3 5/5] dt-bindings: drm/panel: simple: add sharp, lq070y3dg3b panel Sam Ravnborg
  2019-07-09  1:58   ` [PATCH v3 5/5] dt-bindings: drm/panel: simple: add sharp,lq070y3dg3b panel Rob Herring
  2019-06-24 18:44 ` [PATCH v3 0/5] drm/panel-simple: Add panel parameters for ortustech-com37h3m05dtc/99dtc and sharp-lq070y3dg3b H. Nikolaus Schaller
  5 siblings, 2 replies; 21+ messages in thread
From: H. Nikolaus Schaller @ 2019-06-07 11:11 UTC (permalink / raw)
  To: Thierry Reding, David Airlie, Daniel Vetter, tomi.valkeinen,
	imirkin, marek.belisko, Rob Herring, Mark Rutland
  Cc: dri-devel, linux-kernel, linux-omap, letux-kernel, devicetree,
	H. Nikolaus Schaller

Signed-off-by: H. Nikolaus Schaller <hns@goldelico.com>
---
 .../bindings/display/panel/sharp,lq070y3dg3b.txt     | 12 ++++++++++++
 1 file changed, 12 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/display/panel/sharp,lq070y3dg3b.txt

diff --git a/Documentation/devicetree/bindings/display/panel/sharp,lq070y3dg3b.txt b/Documentation/devicetree/bindings/display/panel/sharp,lq070y3dg3b.txt
new file mode 100644
index 000000000000..95534b55ee5f
--- /dev/null
+++ b/Documentation/devicetree/bindings/display/panel/sharp,lq070y3dg3b.txt
@@ -0,0 +1,12 @@
+Sharp LQ070Y3DG3B 7.0" WVGA landscape TFT LCD panel
+
+Required properties:
+- compatible: should be "sharp,lq070y3dg3b"
+
+Optional properties:
+- enable-gpios: GPIO pin to enable or disable the panel
+- backlight: phandle of the backlight device attached to the panel
+- power-supply: phandle of the regulator that provides the supply voltage
+
+This binding is compatible with the simple-panel binding, which is specified
+in simple-panel.txt in this directory.
-- 
2.19.1


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

* Re: [PATCH v3 0/5] drm/panel-simple: Add panel parameters for ortustech-com37h3m05dtc/99dtc and sharp-lq070y3dg3b
  2019-06-07 11:11 [PATCH v3 0/5] drm/panel-simple: Add panel parameters for ortustech-com37h3m05dtc/99dtc and sharp-lq070y3dg3b H. Nikolaus Schaller
                   ` (4 preceding siblings ...)
  2019-06-07 11:11 ` [PATCH v3 5/5] dt-bindings: drm/panel: simple: add sharp,lq070y3dg3b panel H. Nikolaus Schaller
@ 2019-06-24 18:44 ` H. Nikolaus Schaller
  2019-06-25 20:43   ` Sam Ravnborg
  5 siblings, 1 reply; 21+ messages in thread
From: H. Nikolaus Schaller @ 2019-06-24 18:44 UTC (permalink / raw)
  To: Thierry Reding, David Airlie, Daniel Vetter, tomi.valkeinen,
	imirkin, marek.belisko, Rob Herring, Mark Rutland
  Cc: dri-devel, linux-kernel, linux-omap, letux-kernel, devicetree

Hi,

> Am 07.06.2019 um 13:11 schrieb H. Nikolaus Schaller <hns@goldelico.com>:
> 
> V3:
> * add bindings documentation (suggested by sam@ravnborg.org)
> 
> V2 2019-06-05 07:07:05:
> * fix typo in 99dtc panel compatible string (reported by imirkin@alum.mit.edu)
> 
> V1 2019-06-04 14:53:00:
> 
> Since v5.2-rc1 OMAP is no longer using a special display driver architecture
> for DPI panels, but uses the general drm/panel/panel-simple.
> 
> So we finally can add SoC independent panel definitions for two panel models
> which we already had worked on quite a while ago (before device tree was
> introduced):
> 
> 	https://patchwork.kernel.org/patch/2851295/
> 
> 
> 
> H. Nikolaus Schaller (5):
>  drm/panel: simple: Add Sharp LQ070Y3DG3B panel support
>  drm/panel: simple: Add Ortustech COM37H3M panel support
>  dt-bindings: drm/panel: simple: add ortustech,com37h3m05dtc panel
>  dt-bindings: drm/panel: simple: add ortustech,com37h3m99dtc panel
>  dt-bindings: drm/panel: simple: add sharp,lq070y3dg3b panel
> 
> .../display/panel/ortustech,com37h3m05dtc.txt | 12 ++++
> .../display/panel/ortustech,com37h3m99dtc.txt | 12 ++++
> .../display/panel/sharp,lq070y3dg3b.txt       | 12 ++++
> drivers/gpu/drm/panel/panel-simple.c          | 63 +++++++++++++++++++
> 4 files changed, 99 insertions(+)
> create mode 100644 Documentation/devicetree/bindings/display/panel/ortustech,com37h3m05dtc.txt
> create mode 100644 Documentation/devicetree/bindings/display/panel/ortustech,com37h3m99dtc.txt
> create mode 100644 Documentation/devicetree/bindings/display/panel/sharp,lq070y3dg3b.txt
> 
> -- 
> 2.19.1
> 

any progress towards merging this somewhere? It did not yet arrive in linux-next.

BTW: should also be applied to 5.2

BR and thanks,
Nikolaus


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

* Re: [PATCH v3 3/5] dt-bindings: drm/panel: simple: add ortustech, com37h3m05dtc panel
  2019-06-07 11:11 ` [PATCH v3 3/5] dt-bindings: drm/panel: simple: add ortustech,com37h3m05dtc panel H. Nikolaus Schaller
@ 2019-06-25 20:26   ` Sam Ravnborg
  2019-07-09  1:57   ` [PATCH v3 3/5] dt-bindings: drm/panel: simple: add ortustech,com37h3m05dtc panel Rob Herring
  1 sibling, 0 replies; 21+ messages in thread
From: Sam Ravnborg @ 2019-06-25 20:26 UTC (permalink / raw)
  To: H. Nikolaus Schaller
  Cc: Thierry Reding, David Airlie, Daniel Vetter, tomi.valkeinen,
	imirkin, marek.belisko, Rob Herring, Mark Rutland, devicetree,
	linux-omap, linux-kernel, dri-devel, letux-kernel

On Fri, Jun 07, 2019 at 01:11:09PM +0200, H. Nikolaus Schaller wrote:
> Signed-off-by: H. Nikolaus Schaller <hns@goldelico.com>
Reviewed-by: Sam Ravnborg <sam@ravnborg.org>

We need OK from one of the DT people before we can apply this.

	Sam

> ---
>  .../display/panel/ortustech,com37h3m05dtc.txt        | 12 ++++++++++++
>  1 file changed, 12 insertions(+)
>  create mode 100644 Documentation/devicetree/bindings/display/panel/ortustech,com37h3m05dtc.txt
> 
> diff --git a/Documentation/devicetree/bindings/display/panel/ortustech,com37h3m05dtc.txt b/Documentation/devicetree/bindings/display/panel/ortustech,com37h3m05dtc.txt
> new file mode 100644
> index 000000000000..c16907c02f80
> --- /dev/null
> +++ b/Documentation/devicetree/bindings/display/panel/ortustech,com37h3m05dtc.txt
> @@ -0,0 +1,12 @@
> +OrtusTech COM37H3M05DTC Blanview 3.7" VGA portrait TFT-LCD panel
> +
> +Required properties:
> +- compatible: should be "ortustech,com37h3m05dtc"
> +
> +Optional properties:
> +- enable-gpios: GPIO pin to enable or disable the panel
> +- backlight: phandle of the backlight device attached to the panel
> +- power-supply: phandle of the regulator that provides the supply voltage
> +
> +This binding is compatible with the simple-panel binding, which is specified
> +in simple-panel.txt in this directory.
> -- 
> 2.19.1
> 
> _______________________________________________
> dri-devel mailing list
> dri-devel@lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/dri-devel

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

* Re: [PATCH v3 1/5] drm/panel: simple: Add Sharp LQ070Y3DG3B panel support
  2019-06-07 11:11 ` [PATCH v3 1/5] drm/panel: simple: Add Sharp LQ070Y3DG3B panel support H. Nikolaus Schaller
@ 2019-06-25 20:39   ` Sam Ravnborg
  0 siblings, 0 replies; 21+ messages in thread
From: Sam Ravnborg @ 2019-06-25 20:39 UTC (permalink / raw)
  To: H. Nikolaus Schaller
  Cc: Thierry Reding, David Airlie, Daniel Vetter, tomi.valkeinen,
	imirkin, marek.belisko, Rob Herring, Mark Rutland, devicetree,
	linux-omap, linux-kernel, dri-devel, letux-kernel

On Fri, Jun 07, 2019 at 01:11:07PM +0200, H. Nikolaus Schaller wrote:
> The change adds support for the Sharp LQ070Y3DG3B 7.0" TFT LCD panel.
> 
> Tested on Letux7004.
> 
> Signed-off-by: H. Nikolaus Schaller <hns@goldelico.com>
Reviewed-by: Sam Ravnborg <sam@ravnborg.org>
> ---
>  drivers/gpu/drm/panel/panel-simple.c | 30 ++++++++++++++++++++++++++++
>  1 file changed, 30 insertions(+)
> 
> diff --git a/drivers/gpu/drm/panel/panel-simple.c b/drivers/gpu/drm/panel/panel-simple.c
> index 569be4efd8d1..5b27829c5a78 100644
> --- a/drivers/gpu/drm/panel/panel-simple.c
> +++ b/drivers/gpu/drm/panel/panel-simple.c
> @@ -2204,6 +2204,33 @@ static const struct panel_desc samsung_ltn140at29_301 = {
>  	},
>  };
>  
> +static const struct drm_display_mode sharp_lq070y3dg3b_mode = {
> +	.clock = 33260,
> +	.hdisplay = 800,
> +	.hsync_start = 800 + 64,
> +	.hsync_end = 800 + 64 + 128,
> +	.htotal = 800 + 64 + 128 + 64,
> +	.vdisplay = 480,
> +	.vsync_start = 480 + 8,
> +	.vsync_end = 480 + 8 + 2,
> +	.vtotal = 480 + 8 + 2 + 35,
> +	.vrefresh = 60,
> +	.flags = DISPLAY_FLAGS_PIXDATA_POSEDGE,
> +};
> +
> +static const struct panel_desc sharp_lq070y3dg3b = {
> +	.modes = &sharp_lq070y3dg3b_mode,
> +	.num_modes = 1,
> +	.bpc = 8,
> +	.size = {
> +		.width = 152,	/* 152.4mm */
> +		.height = 91,	/* 91.4mm */
> +	},
> +	.bus_format = MEDIA_BUS_FMT_RGB888_1X24,
> +	.bus_flags = DRM_BUS_FLAG_DE_HIGH | DRM_BUS_FLAG_PIXDATA_POSEDGE |
> +		     DRM_BUS_FLAG_SYNC_DRIVE_POSEDGE,
> +};
> +
>  static const struct drm_display_mode sharp_lq035q7db03_mode = {
>  	.clock = 5500,
>  	.hdisplay = 240,
> @@ -2786,6 +2813,9 @@ static const struct of_device_id platform_of_match[] = {
>  	}, {
>  		.compatible = "sharp,lq035q7db03",
>  		.data = &sharp_lq035q7db03,
> +	}, {
> +		.compatible = "sharp,lq070y3dg3b",
> +		.data = &sharp_lq070y3dg3b,
>  	}, {
>  		.compatible = "sharp,lq101k1ly04",
>  		.data = &sharp_lq101k1ly04,
> -- 
> 2.19.1
> 
> _______________________________________________
> dri-devel mailing list
> dri-devel@lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/dri-devel

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

* Re: [PATCH v3 2/5] drm/panel: simple: Add Ortustech COM37H3M panel support
  2019-06-07 11:11 ` [PATCH v3 2/5] drm/panel: simple: Add Ortustech COM37H3M " H. Nikolaus Schaller
@ 2019-06-25 20:40   ` Sam Ravnborg
  0 siblings, 0 replies; 21+ messages in thread
From: Sam Ravnborg @ 2019-06-25 20:40 UTC (permalink / raw)
  To: H. Nikolaus Schaller
  Cc: Thierry Reding, David Airlie, Daniel Vetter, tomi.valkeinen,
	imirkin, marek.belisko, Rob Herring, Mark Rutland, devicetree,
	linux-omap, linux-kernel, dri-devel, letux-kernel

On Fri, Jun 07, 2019 at 01:11:08PM +0200, H. Nikolaus Schaller wrote:
> The change adds support for the Ortustech COM37H3M05DTC/99DTC 3.7" TFT LCD panel.
> 
> Tested on Letux3704.
> 
> Signed-off-by: H. Nikolaus Schaller <hns@goldelico.com>
Reviewed-by: Sam Ravnborg <sam@ravnborg.org>
> ---
>  drivers/gpu/drm/panel/panel-simple.c | 33 ++++++++++++++++++++++++++++
>  1 file changed, 33 insertions(+)
> 
> diff --git a/drivers/gpu/drm/panel/panel-simple.c b/drivers/gpu/drm/panel/panel-simple.c
> index 5b27829c5a78..1fb74908a269 100644
> --- a/drivers/gpu/drm/panel/panel-simple.c
> +++ b/drivers/gpu/drm/panel/panel-simple.c
> @@ -2007,6 +2007,33 @@ static const struct panel_desc ontat_yx700wv03 = {
>  	.bus_format = MEDIA_BUS_FMT_RGB666_1X18,
>  };
>  
> +static const struct drm_display_mode ortustech_com37h3m_mode  = {
> +	.clock = 22153,
> +	.hdisplay = 480,
> +	.hsync_start = 480 + 8,
> +	.hsync_end = 480 + 8 + 10,
> +	.htotal = 480 + 8 + 10 + 10,
> +	.vdisplay = 640,
> +	.vsync_start = 640 + 4,
> +	.vsync_end = 640 + 4 + 3,
> +	.vtotal = 640 + 4 + 3 + 4,
> +	.vrefresh = 60,
> +	.flags = DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC,
> +};
> +
> +static const struct panel_desc ortustech_com37h3m = {
> +	.modes = &ortustech_com37h3m_mode,
> +	.num_modes = 1,
> +	.bpc = 8,
> +	.size = {
> +		.width = 56,	/* 56.16mm */
> +		.height = 75,	/* 74.88mm */
> +	},
> +	.bus_format = MEDIA_BUS_FMT_RGB888_1X24,
> +	.bus_flags = DRM_BUS_FLAG_DE_HIGH | DRM_BUS_FLAG_PIXDATA_POSEDGE |
> +		     DRM_BUS_FLAG_SYNC_DRIVE_POSEDGE,
> +};
> +
>  static const struct drm_display_mode ortustech_com43h4m85ulc_mode  = {
>  	.clock = 25000,
>  	.hdisplay = 480,
> @@ -2786,6 +2813,12 @@ static const struct of_device_id platform_of_match[] = {
>  	}, {
>  		.compatible = "ontat,yx700wv03",
>  		.data = &ontat_yx700wv03,
> +	}, {
> +		.compatible = "ortustech,com37h3m05dtc",
> +		.data = &ortustech_com37h3m,
> +	}, {
> +		.compatible = "ortustech,com37h3m99dtc",
> +		.data = &ortustech_com37h3m,
>  	}, {
>  		.compatible = "ortustech,com43h4m85ulc",
>  		.data = &ortustech_com43h4m85ulc,
> -- 
> 2.19.1
> 
> _______________________________________________
> dri-devel mailing list
> dri-devel@lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/dri-devel

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

* Re: [PATCH v3 4/5] dt-bindings: drm/panel: simple: add ortustech, com37h3m99dtc panel
  2019-06-07 11:11 ` [PATCH v3 4/5] dt-bindings: drm/panel: simple: add ortustech,com37h3m99dtc panel H. Nikolaus Schaller
@ 2019-06-25 20:40   ` Sam Ravnborg
  2019-07-09  1:58   ` [PATCH v3 4/5] dt-bindings: drm/panel: simple: add ortustech,com37h3m99dtc panel Rob Herring
  1 sibling, 0 replies; 21+ messages in thread
From: Sam Ravnborg @ 2019-06-25 20:40 UTC (permalink / raw)
  To: H. Nikolaus Schaller
  Cc: Thierry Reding, David Airlie, Daniel Vetter, tomi.valkeinen,
	imirkin, marek.belisko, Rob Herring, Mark Rutland, devicetree,
	linux-omap, linux-kernel, dri-devel, letux-kernel

On Fri, Jun 07, 2019 at 01:11:10PM +0200, H. Nikolaus Schaller wrote:
> Signed-off-by: H. Nikolaus Schaller <hns@goldelico.com>
Reviewed-by: Sam Ravnborg <sam@ravnborg.org>
> ---
>  .../display/panel/ortustech,com37h3m99dtc.txt        | 12 ++++++++++++
>  1 file changed, 12 insertions(+)
>  create mode 100644 Documentation/devicetree/bindings/display/panel/ortustech,com37h3m99dtc.txt
> 
> diff --git a/Documentation/devicetree/bindings/display/panel/ortustech,com37h3m99dtc.txt b/Documentation/devicetree/bindings/display/panel/ortustech,com37h3m99dtc.txt
> new file mode 100644
> index 000000000000..06a73c3f46b5
> --- /dev/null
> +++ b/Documentation/devicetree/bindings/display/panel/ortustech,com37h3m99dtc.txt
> @@ -0,0 +1,12 @@
> +OrtusTech COM37H3M99DTC Blanview 3.7" VGA portrait TFT-LCD panel
> +
> +Required properties:
> +- compatible: should be "ortustech,com37h3m99dtc"
> +
> +Optional properties:
> +- enable-gpios: GPIO pin to enable or disable the panel
> +- backlight: phandle of the backlight device attached to the panel
> +- power-supply: phandle of the regulator that provides the supply voltage
> +
> +This binding is compatible with the simple-panel binding, which is specified
> +in simple-panel.txt in this directory.
> -- 
> 2.19.1
> 
> _______________________________________________
> dri-devel mailing list
> dri-devel@lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/dri-devel

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

* Re: [PATCH v3 5/5] dt-bindings: drm/panel: simple: add sharp, lq070y3dg3b panel
  2019-06-07 11:11 ` [PATCH v3 5/5] dt-bindings: drm/panel: simple: add sharp,lq070y3dg3b panel H. Nikolaus Schaller
@ 2019-06-25 20:41   ` Sam Ravnborg
  2019-07-09  1:58   ` [PATCH v3 5/5] dt-bindings: drm/panel: simple: add sharp,lq070y3dg3b panel Rob Herring
  1 sibling, 0 replies; 21+ messages in thread
From: Sam Ravnborg @ 2019-06-25 20:41 UTC (permalink / raw)
  To: H. Nikolaus Schaller
  Cc: Thierry Reding, David Airlie, Daniel Vetter, tomi.valkeinen,
	imirkin, marek.belisko, Rob Herring, Mark Rutland, devicetree,
	linux-omap, linux-kernel, dri-devel, letux-kernel

On Fri, Jun 07, 2019 at 01:11:11PM +0200, H. Nikolaus Schaller wrote:
> Signed-off-by: H. Nikolaus Schaller <hns@goldelico.com>
Reviewed-by: Sam Ravnborg <sam@ravnborg.org>
> ---
>  .../bindings/display/panel/sharp,lq070y3dg3b.txt     | 12 ++++++++++++
>  1 file changed, 12 insertions(+)
>  create mode 100644 Documentation/devicetree/bindings/display/panel/sharp,lq070y3dg3b.txt
> 
> diff --git a/Documentation/devicetree/bindings/display/panel/sharp,lq070y3dg3b.txt b/Documentation/devicetree/bindings/display/panel/sharp,lq070y3dg3b.txt
> new file mode 100644
> index 000000000000..95534b55ee5f
> --- /dev/null
> +++ b/Documentation/devicetree/bindings/display/panel/sharp,lq070y3dg3b.txt
> @@ -0,0 +1,12 @@
> +Sharp LQ070Y3DG3B 7.0" WVGA landscape TFT LCD panel
> +
> +Required properties:
> +- compatible: should be "sharp,lq070y3dg3b"
> +
> +Optional properties:
> +- enable-gpios: GPIO pin to enable or disable the panel
> +- backlight: phandle of the backlight device attached to the panel
> +- power-supply: phandle of the regulator that provides the supply voltage
> +
> +This binding is compatible with the simple-panel binding, which is specified
> +in simple-panel.txt in this directory.
> -- 
> 2.19.1
> 
> _______________________________________________
> dri-devel mailing list
> dri-devel@lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/dri-devel

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

* Re: [PATCH v3 0/5] drm/panel-simple: Add panel parameters for ortustech-com37h3m05dtc/99dtc and sharp-lq070y3dg3b
  2019-06-24 18:44 ` [PATCH v3 0/5] drm/panel-simple: Add panel parameters for ortustech-com37h3m05dtc/99dtc and sharp-lq070y3dg3b H. Nikolaus Schaller
@ 2019-06-25 20:43   ` Sam Ravnborg
  2019-06-26  7:33     ` Sam Ravnborg
  0 siblings, 1 reply; 21+ messages in thread
From: Sam Ravnborg @ 2019-06-25 20:43 UTC (permalink / raw)
  To: H. Nikolaus Schaller
  Cc: Thierry Reding, David Airlie, Daniel Vetter, tomi.valkeinen,
	imirkin, marek.belisko, Rob Herring, Mark Rutland, devicetree,
	letux-kernel, linux-omap, linux-kernel, dri-devel

Hi Nikolaus

> > V3:
> > * add bindings documentation (suggested by sam@ravnborg.org)
> > 
> > V2 2019-06-05 07:07:05:
> > * fix typo in 99dtc panel compatible string (reported by imirkin@alum.mit.edu)
> > 
> > V1 2019-06-04 14:53:00:
> > 
> > Since v5.2-rc1 OMAP is no longer using a special display driver architecture
> > for DPI panels, but uses the general drm/panel/panel-simple.
> > 
> > So we finally can add SoC independent panel definitions for two panel models
> > which we already had worked on quite a while ago (before device tree was
> > introduced):
> > 
> > 	https://patchwork.kernel.org/patch/2851295/
> > 
> > 
> > 
> > H. Nikolaus Schaller (5):
> >  drm/panel: simple: Add Sharp LQ070Y3DG3B panel support
> >  drm/panel: simple: Add Ortustech COM37H3M panel support
> >  dt-bindings: drm/panel: simple: add ortustech,com37h3m05dtc panel
> >  dt-bindings: drm/panel: simple: add ortustech,com37h3m99dtc panel
> >  dt-bindings: drm/panel: simple: add sharp,lq070y3dg3b panel
> > 
> > .../display/panel/ortustech,com37h3m05dtc.txt | 12 ++++
> > .../display/panel/ortustech,com37h3m99dtc.txt | 12 ++++
> > .../display/panel/sharp,lq070y3dg3b.txt       | 12 ++++
> > drivers/gpu/drm/panel/panel-simple.c          | 63 +++++++++++++++++++
> > 4 files changed, 99 insertions(+)
> > create mode 100644 Documentation/devicetree/bindings/display/panel/ortustech,com37h3m05dtc.txt
> > create mode 100644 Documentation/devicetree/bindings/display/panel/ortustech,com37h3m99dtc.txt
> > create mode 100644 Documentation/devicetree/bindings/display/panel/sharp,lq070y3dg3b.txt
> > 
> > -- 
> > 2.19.1
> > 
> 
> any progress towards merging this somewhere? It did not yet arrive in linux-next.
> 
> BTW: should also be applied to 5.2
The drm bits are reviewed. The DT bits needs OK from DT people.
When we have OK from DT people we can apply them all to drm-misc-next.

If we need them expedited towards the upstream kernel you will need help
from someone else. But let's get them in drm-misc-next first.

	Sam

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

* Re: [PATCH v3 0/5] drm/panel-simple: Add panel parameters for ortustech-com37h3m05dtc/99dtc and sharp-lq070y3dg3b
  2019-06-25 20:43   ` Sam Ravnborg
@ 2019-06-26  7:33     ` Sam Ravnborg
  2019-06-26 12:40       ` H. Nikolaus Schaller
  0 siblings, 1 reply; 21+ messages in thread
From: Sam Ravnborg @ 2019-06-26  7:33 UTC (permalink / raw)
  To: H. Nikolaus Schaller
  Cc: Mark Rutland, devicetree, linux-omap, David Airlie,
	marek.belisko, linux-kernel, Rob Herring, tomi.valkeinen,
	Thierry Reding, dri-devel, letux-kernel

Hi Nikolaus.

> > 
> > any progress towards merging this somewhere? It did not yet arrive in linux-next.
> > 
> > BTW: should also be applied to 5.2
> The drm bits are reviewed. The DT bits needs OK from DT people.
> When we have OK from DT people we can apply them all to drm-misc-next.

I got OK on irc from Rob to process these.
All patches are now applied to drm-misc-next.

	Sam

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

* Re: [PATCH v3 0/5] drm/panel-simple: Add panel parameters for ortustech-com37h3m05dtc/99dtc and sharp-lq070y3dg3b
  2019-06-26  7:33     ` Sam Ravnborg
@ 2019-06-26 12:40       ` H. Nikolaus Schaller
  2019-07-17 17:33         ` [Letux-kernel] " H. Nikolaus Schaller
  0 siblings, 1 reply; 21+ messages in thread
From: H. Nikolaus Schaller @ 2019-06-26 12:40 UTC (permalink / raw)
  To: Sam Ravnborg
  Cc: Mark Rutland, devicetree, Linux-OMAP, David Airlie,
	marek.belisko, linux-kernel, Rob Herring, tomi.valkeinen,
	Thierry Reding, dri-devel, letux-kernel

Hi Sam,

> Am 26.06.2019 um 09:33 schrieb Sam Ravnborg <sam@ravnborg.org>:
> 
> Hi Nikolaus.
> 
>>> 
>>> any progress towards merging this somewhere? It did not yet arrive in linux-next.
>>> 
>>> BTW: should also be applied to 5.2
>> The drm bits are reviewed. The DT bits needs OK from DT people.
>> When we have OK from DT people we can apply them all to drm-misc-next.
> 
> I got OK on irc from Rob to process these.
> All patches are now applied to drm-misc-next.

Thanks for taking care of this!

> 
> 	Sam

BR,
Nikolaus


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

* Re: [PATCH v3 3/5] dt-bindings: drm/panel: simple: add ortustech,com37h3m05dtc panel
  2019-06-07 11:11 ` [PATCH v3 3/5] dt-bindings: drm/panel: simple: add ortustech,com37h3m05dtc panel H. Nikolaus Schaller
  2019-06-25 20:26   ` [PATCH v3 3/5] dt-bindings: drm/panel: simple: add ortustech, com37h3m05dtc panel Sam Ravnborg
@ 2019-07-09  1:57   ` Rob Herring
  1 sibling, 0 replies; 21+ messages in thread
From: Rob Herring @ 2019-07-09  1:57 UTC (permalink / raw)
  To: H. Nikolaus Schaller
  Cc: Thierry Reding, David Airlie, Daniel Vetter, tomi.valkeinen,
	imirkin, marek.belisko, Mark Rutland, dri-devel, linux-kernel,
	linux-omap, letux-kernel, devicetree, H. Nikolaus Schaller

On Fri,  7 Jun 2019 13:11:09 +0200, "H. Nikolaus Schaller" wrote:
> Signed-off-by: H. Nikolaus Schaller <hns@goldelico.com>
> ---
>  .../display/panel/ortustech,com37h3m05dtc.txt        | 12 ++++++++++++
>  1 file changed, 12 insertions(+)
>  create mode 100644 Documentation/devicetree/bindings/display/panel/ortustech,com37h3m05dtc.txt
> 

Reviewed-by: Rob Herring <robh@kernel.org>

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

* Re: [PATCH v3 4/5] dt-bindings: drm/panel: simple: add ortustech,com37h3m99dtc panel
  2019-06-07 11:11 ` [PATCH v3 4/5] dt-bindings: drm/panel: simple: add ortustech,com37h3m99dtc panel H. Nikolaus Schaller
  2019-06-25 20:40   ` [PATCH v3 4/5] dt-bindings: drm/panel: simple: add ortustech, com37h3m99dtc panel Sam Ravnborg
@ 2019-07-09  1:58   ` Rob Herring
  1 sibling, 0 replies; 21+ messages in thread
From: Rob Herring @ 2019-07-09  1:58 UTC (permalink / raw)
  To: H. Nikolaus Schaller
  Cc: Thierry Reding, David Airlie, Daniel Vetter, tomi.valkeinen,
	imirkin, marek.belisko, Mark Rutland, dri-devel, linux-kernel,
	linux-omap, letux-kernel, devicetree, H. Nikolaus Schaller

On Fri,  7 Jun 2019 13:11:10 +0200, "H. Nikolaus Schaller" wrote:
> Signed-off-by: H. Nikolaus Schaller <hns@goldelico.com>
> ---
>  .../display/panel/ortustech,com37h3m99dtc.txt        | 12 ++++++++++++
>  1 file changed, 12 insertions(+)
>  create mode 100644 Documentation/devicetree/bindings/display/panel/ortustech,com37h3m99dtc.txt
> 

Reviewed-by: Rob Herring <robh@kernel.org>

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

* Re: [PATCH v3 5/5] dt-bindings: drm/panel: simple: add sharp,lq070y3dg3b panel
  2019-06-07 11:11 ` [PATCH v3 5/5] dt-bindings: drm/panel: simple: add sharp,lq070y3dg3b panel H. Nikolaus Schaller
  2019-06-25 20:41   ` [PATCH v3 5/5] dt-bindings: drm/panel: simple: add sharp, lq070y3dg3b panel Sam Ravnborg
@ 2019-07-09  1:58   ` Rob Herring
  1 sibling, 0 replies; 21+ messages in thread
From: Rob Herring @ 2019-07-09  1:58 UTC (permalink / raw)
  To: H. Nikolaus Schaller
  Cc: Thierry Reding, David Airlie, Daniel Vetter, tomi.valkeinen,
	imirkin, marek.belisko, Mark Rutland, dri-devel, linux-kernel,
	linux-omap, letux-kernel, devicetree, H. Nikolaus Schaller

On Fri,  7 Jun 2019 13:11:11 +0200, "H. Nikolaus Schaller" wrote:
> Signed-off-by: H. Nikolaus Schaller <hns@goldelico.com>
> ---
>  .../bindings/display/panel/sharp,lq070y3dg3b.txt     | 12 ++++++++++++
>  1 file changed, 12 insertions(+)
>  create mode 100644 Documentation/devicetree/bindings/display/panel/sharp,lq070y3dg3b.txt
> 

Reviewed-by: Rob Herring <robh@kernel.org>

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

* Re: [Letux-kernel] [PATCH v3 0/5] drm/panel-simple: Add panel parameters for ortustech-com37h3m05dtc/99dtc and sharp-lq070y3dg3b
  2019-06-26 12:40       ` H. Nikolaus Schaller
@ 2019-07-17 17:33         ` H. Nikolaus Schaller
  2019-07-17 18:14           ` Sam Ravnborg
  0 siblings, 1 reply; 21+ messages in thread
From: H. Nikolaus Schaller @ 2019-07-17 17:33 UTC (permalink / raw)
  To: Sam Ravnborg
  Cc: Mark Rutland, devicetree, David Airlie, Belisko Marek,
	Tomi Valkeinen, Linux Kernel Mailing List, dri-devel,
	Rob Herring, Thierry Reding, Linux-OMAP,
	Discussions about the Letux Kernel

Hi Sam,

> Am 26.06.2019 um 14:40 schrieb H. Nikolaus Schaller <hns@goldelico.com>:
> 
> Hi Sam,
> 
>> Am 26.06.2019 um 09:33 schrieb Sam Ravnborg <sam@ravnborg.org>:
>> 
>> Hi Nikolaus.
>> 
>>>> 
>>>> any progress towards merging this somewhere? It did not yet arrive in linux-next.
>>>> 
>>>> BTW: should also be applied to 5.2
>>> The drm bits are reviewed. The DT bits needs OK from DT people.
>>> When we have OK from DT people we can apply them all to drm-misc-next.
>> 
>> I got OK on irc from Rob to process these.
>> All patches are now applied to drm-misc-next.
> 
> Thanks for taking care of this!

I have checked but it seems they are still not merged into linux-next.

BR and thanks,
Nikolaus


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

* Re: [Letux-kernel] [PATCH v3 0/5] drm/panel-simple: Add panel parameters for ortustech-com37h3m05dtc/99dtc and sharp-lq070y3dg3b
  2019-07-17 17:33         ` [Letux-kernel] " H. Nikolaus Schaller
@ 2019-07-17 18:14           ` Sam Ravnborg
  2019-07-23  6:59             ` H. Nikolaus Schaller
  0 siblings, 1 reply; 21+ messages in thread
From: Sam Ravnborg @ 2019-07-17 18:14 UTC (permalink / raw)
  To: H. Nikolaus Schaller
  Cc: Mark Rutland, devicetree, David Airlie, Belisko Marek,
	Tomi Valkeinen, Linux Kernel Mailing List, dri-devel,
	Rob Herring, Thierry Reding, Linux-OMAP,
	Discussions about the Letux Kernel

Hi Nikolaus.

> >>>> BTW: should also be applied to 5.2
> >>> The drm bits are reviewed. The DT bits needs OK from DT people.
> >>> When we have OK from DT people we can apply them all to drm-misc-next.
> >> 
> >> I got OK on irc from Rob to process these.
> >> All patches are now applied to drm-misc-next.
> > 
> > Thanks for taking care of this!
> 
> I have checked but it seems they are still not merged into linux-next.

They will appear in next merge window. They were to late to hit current
merge window, as the cut-of time is around .rc5 in the drm subsystem.
And this is not really a fix so not stable material.

	Sam

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

* Re: [Letux-kernel] [PATCH v3 0/5] drm/panel-simple: Add panel parameters for ortustech-com37h3m05dtc/99dtc and sharp-lq070y3dg3b
  2019-07-17 18:14           ` Sam Ravnborg
@ 2019-07-23  6:59             ` H. Nikolaus Schaller
  0 siblings, 0 replies; 21+ messages in thread
From: H. Nikolaus Schaller @ 2019-07-23  6:59 UTC (permalink / raw)
  To: Sam Ravnborg
  Cc: Mark Rutland, devicetree, David Airlie, Belisko Marek,
	Tomi Valkeinen, Linux Kernel Mailing List, dri-devel,
	Rob Herring, Thierry Reding, Linux-OMAP,
	Discussions about the Letux Kernel

Hi Sam,

> Am 17.07.2019 um 20:14 schrieb Sam Ravnborg <sam@ravnborg.org>:
> 
> Hi Nikolaus.
> 
>>>>>> BTW: should also be applied to 5.2
>>>>> The drm bits are reviewed. The DT bits needs OK from DT people.
>>>>> When we have OK from DT people we can apply them all to drm-misc-next.
>>>> 
>>>> I got OK on irc from Rob to process these.
>>>> All patches are now applied to drm-misc-next.
>>> 
>>> Thanks for taking care of this!
>> 
>> I have checked but it seems they are still not merged into linux-next.
> 
> They will appear in next merge window. They were to late to hit current
> merge window, as the cut-of time is around .rc5 in the drm subsystem.
> And this is not really a fix so not stable material.

have finally arrived. I just wasn't patient enough :)

BR and thanks,
Nikolaus


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

end of thread, other threads:[~2019-07-23  6:59 UTC | newest]

Thread overview: 21+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-06-07 11:11 [PATCH v3 0/5] drm/panel-simple: Add panel parameters for ortustech-com37h3m05dtc/99dtc and sharp-lq070y3dg3b H. Nikolaus Schaller
2019-06-07 11:11 ` [PATCH v3 1/5] drm/panel: simple: Add Sharp LQ070Y3DG3B panel support H. Nikolaus Schaller
2019-06-25 20:39   ` Sam Ravnborg
2019-06-07 11:11 ` [PATCH v3 2/5] drm/panel: simple: Add Ortustech COM37H3M " H. Nikolaus Schaller
2019-06-25 20:40   ` Sam Ravnborg
2019-06-07 11:11 ` [PATCH v3 3/5] dt-bindings: drm/panel: simple: add ortustech,com37h3m05dtc panel H. Nikolaus Schaller
2019-06-25 20:26   ` [PATCH v3 3/5] dt-bindings: drm/panel: simple: add ortustech, com37h3m05dtc panel Sam Ravnborg
2019-07-09  1:57   ` [PATCH v3 3/5] dt-bindings: drm/panel: simple: add ortustech,com37h3m05dtc panel Rob Herring
2019-06-07 11:11 ` [PATCH v3 4/5] dt-bindings: drm/panel: simple: add ortustech,com37h3m99dtc panel H. Nikolaus Schaller
2019-06-25 20:40   ` [PATCH v3 4/5] dt-bindings: drm/panel: simple: add ortustech, com37h3m99dtc panel Sam Ravnborg
2019-07-09  1:58   ` [PATCH v3 4/5] dt-bindings: drm/panel: simple: add ortustech,com37h3m99dtc panel Rob Herring
2019-06-07 11:11 ` [PATCH v3 5/5] dt-bindings: drm/panel: simple: add sharp,lq070y3dg3b panel H. Nikolaus Schaller
2019-06-25 20:41   ` [PATCH v3 5/5] dt-bindings: drm/panel: simple: add sharp, lq070y3dg3b panel Sam Ravnborg
2019-07-09  1:58   ` [PATCH v3 5/5] dt-bindings: drm/panel: simple: add sharp,lq070y3dg3b panel Rob Herring
2019-06-24 18:44 ` [PATCH v3 0/5] drm/panel-simple: Add panel parameters for ortustech-com37h3m05dtc/99dtc and sharp-lq070y3dg3b H. Nikolaus Schaller
2019-06-25 20:43   ` Sam Ravnborg
2019-06-26  7:33     ` Sam Ravnborg
2019-06-26 12:40       ` H. Nikolaus Schaller
2019-07-17 17:33         ` [Letux-kernel] " H. Nikolaus Schaller
2019-07-17 18:14           ` Sam Ravnborg
2019-07-23  6:59             ` H. Nikolaus Schaller

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).