All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] display: panel: Add KOE tx14d24vm1bpa display support (320x240)
@ 2018-04-12 14:37 Lukasz Majewski
  2018-04-16 19:24   ` Rob Herring
                   ` (5 more replies)
  0 siblings, 6 replies; 35+ messages in thread
From: Lukasz Majewski @ 2018-04-12 14:37 UTC (permalink / raw)
  To: Rob Herring, Mark Rutland, Thierry Reding, David Airlie, Rob Herring
  Cc: dri-devel, devicetree, linux-kernel, Lukasz Majewski

This commit adds support for KOE's 5.7" display.

Signed-off-by: Lukasz Majewski <lukma@denx.de>
---
 .../bindings/display/panel/koe,tx14d24vm1bpa.txt   | 42 ++++++++++++++++++++++
 drivers/gpu/drm/panel/panel-simple.c               | 26 ++++++++++++++
 2 files changed, 68 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/display/panel/koe,tx14d24vm1bpa.txt

diff --git a/Documentation/devicetree/bindings/display/panel/koe,tx14d24vm1bpa.txt b/Documentation/devicetree/bindings/display/panel/koe,tx14d24vm1bpa.txt
new file mode 100644
index 000000000000..be7ac666807b
--- /dev/null
+++ b/Documentation/devicetree/bindings/display/panel/koe,tx14d24vm1bpa.txt
@@ -0,0 +1,42 @@
+Kaohsiung Opto-Electronics Inc. 5.7" QVGA (320 x 240) TFT LCD panel
+
+Required properties:
+- compatible: should be "koe,tx14d24vm1bpa"
+- backlight: phandle of the backlight device attached to the panel
+- power-supply: single regulator to provide the supply voltage
+
+Required nodes:
+- port: Parallel port mapping to connect this display
+
+This panel needs single power supply voltage. Its backlight is conntrolled
+via PWM signal.
+
+Example:
+--------
+
+Example device-tree definition when connected to iMX53 based board
+
+	lcd_panel: lcd-panel {
+		compatible = "koe,tx14d24vm1bpa";
+		backlight = <&backlight_lcd>;
+		power-supply = <&reg_3v3>;
+
+		port {
+			lcd_panel_in: endpoint {
+				remote-endpoint = <&lcd_display_out>;
+			};
+		};
+	};
+
+Then one needs to extend the dispX node:
+
+	lcd_display: disp1 {
+
+		port@1 {
+			reg = <1>;
+
+			lcd_display_out: endpoint {
+				remote-endpoint = <&lcd_panel_in>;
+			};
+		};
+	};
diff --git a/drivers/gpu/drm/panel/panel-simple.c b/drivers/gpu/drm/panel/panel-simple.c
index 62314085b635..45e61af936e0 100644
--- a/drivers/gpu/drm/panel/panel-simple.c
+++ b/drivers/gpu/drm/panel/panel-simple.c
@@ -1245,6 +1245,29 @@ static const struct panel_desc innolux_zj070na_01p = {
 	},
 };
 
+static const struct display_timing koe_tx14d24vm1bpa_timing = {
+	.pixelclock = { 5580000, 5850000, 6200000 },
+	.hactive = { 320, 320, 320 },
+	.hfront_porch = { 30, 30, 30 },
+	.hback_porch = { 30, 30, 30 },
+	.hsync_len = { 1, 5, 17 },
+	.vactive = { 240, 240, 240 },
+	.vfront_porch = { 6, 6, 6 },
+	.vback_porch = { 5, 5, 5 },
+	.vsync_len = { 1, 2, 11 },
+	.flags = DISPLAY_FLAGS_DE_HIGH,
+};
+
+static const struct panel_desc koe_tx14d24vm1bpa = {
+	.timings = &koe_tx14d24vm1bpa_timing,
+	.num_timings = 1,
+	.bpc = 6,
+	.size = {
+		.width = 115,
+		.height = 86,
+	},
+};
+
 static const struct display_timing kyo_tcg121xglp_timing = {
 	.pixelclock = { 52000000, 65000000, 71000000 },
 	.hactive = { 1024, 1024, 1024 },
@@ -2155,6 +2178,9 @@ static const struct of_device_id platform_of_match[] = {
 		.compatible = "innolux,zj070na-01p",
 		.data = &innolux_zj070na_01p,
 	}, {
+		.compatible = "koe,tx14d24vm1bpa",
+		.data = &koe_tx14d24vm1bpa,
+	}, {
 		.compatible = "kyo,tcg121xglp",
 		.data = &kyo_tcg121xglp,
 	}, {
-- 
2.11.0

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

* Re: [PATCH] display: panel: Add KOE tx14d24vm1bpa display support (320x240)
  2018-04-12 14:37 [PATCH] display: panel: Add KOE tx14d24vm1bpa display support (320x240) Lukasz Majewski
@ 2018-04-16 19:24   ` Rob Herring
  2018-05-09 15:43 ` [PATCH RESEND] " Lukasz Majewski
                     ` (4 subsequent siblings)
  5 siblings, 0 replies; 35+ messages in thread
From: Rob Herring @ 2018-04-16 19:24 UTC (permalink / raw)
  To: Lukasz Majewski
  Cc: Mark Rutland, Thierry Reding, David Airlie, dri-devel,
	devicetree, linux-kernel

On Thu, Apr 12, 2018 at 04:37:15PM +0200, Lukasz Majewski wrote:
> This commit adds support for KOE's 5.7" display.
> 
> Signed-off-by: Lukasz Majewski <lukma@denx.de>
> ---
>  .../bindings/display/panel/koe,tx14d24vm1bpa.txt   | 42 ++++++++++++++++++++++
>  drivers/gpu/drm/panel/panel-simple.c               | 26 ++++++++++++++
>  2 files changed, 68 insertions(+)
>  create mode 100644 Documentation/devicetree/bindings/display/panel/koe,tx14d24vm1bpa.txt

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

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

* Re: [PATCH] display: panel: Add KOE tx14d24vm1bpa display support (320x240)
@ 2018-04-16 19:24   ` Rob Herring
  0 siblings, 0 replies; 35+ messages in thread
From: Rob Herring @ 2018-04-16 19:24 UTC (permalink / raw)
  To: Lukasz Majewski
  Cc: Mark Rutland, devicetree, David Airlie, linux-kernel, dri-devel,
	Thierry Reding

On Thu, Apr 12, 2018 at 04:37:15PM +0200, Lukasz Majewski wrote:
> This commit adds support for KOE's 5.7" display.
> 
> Signed-off-by: Lukasz Majewski <lukma@denx.de>
> ---
>  .../bindings/display/panel/koe,tx14d24vm1bpa.txt   | 42 ++++++++++++++++++++++
>  drivers/gpu/drm/panel/panel-simple.c               | 26 ++++++++++++++
>  2 files changed, 68 insertions(+)
>  create mode 100644 Documentation/devicetree/bindings/display/panel/koe,tx14d24vm1bpa.txt

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

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel

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

* Re: [PATCH] display: panel: Add KOE tx14d24vm1bpa display support (320x240)
  2018-04-16 19:24   ` Rob Herring
  (?)
@ 2018-05-04 10:28   ` Lukasz Majewski
  2018-05-10 14:22       ` Rob Herring
  -1 siblings, 1 reply; 35+ messages in thread
From: Lukasz Majewski @ 2018-05-04 10:28 UTC (permalink / raw)
  To: Rob Herring
  Cc: Mark Rutland, Thierry Reding, David Airlie, dri-devel,
	devicetree, linux-kernel

[-- Attachment #1: Type: text/plain, Size: 881 bytes --]

Hi Rob,

> On Thu, Apr 12, 2018 at 04:37:15PM +0200, Lukasz Majewski wrote:
> > This commit adds support for KOE's 5.7" display.
> > 
> > Signed-off-by: Lukasz Majewski <lukma@denx.de>
> > ---
> >  .../bindings/display/panel/koe,tx14d24vm1bpa.txt   | 42
> > ++++++++++++++++++++++
> > drivers/gpu/drm/panel/panel-simple.c               | 26
> > ++++++++++++++ 2 files changed, 68 insertions(+) create mode 100644
> > Documentation/devicetree/bindings/display/panel/koe,tx14d24vm1bpa.txt  
> 
> Reviewed-by: Rob Herring <robh@kernel.org>
> 

Gentle ping on this - as I don't know if this patch been applied.

Best regards,

Lukasz Majewski

--

DENX Software Engineering GmbH,      Managing Director: Wolfgang Denk
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd@denx.de

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

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

* [PATCH RESEND] display: panel: Add KOE tx14d24vm1bpa display support (320x240)
  2018-04-12 14:37 [PATCH] display: panel: Add KOE tx14d24vm1bpa display support (320x240) Lukasz Majewski
  2018-04-16 19:24   ` Rob Herring
@ 2018-05-09 15:43 ` Lukasz Majewski
  2018-05-10 14:24     ` Rob Herring
  2018-05-19 11:05   ` Lukasz Majewski
  2018-05-29 15:05 ` [PATCH v2] " Lukasz Majewski
                   ` (3 subsequent siblings)
  5 siblings, 2 replies; 35+ messages in thread
From: Lukasz Majewski @ 2018-05-09 15:43 UTC (permalink / raw)
  To: Rob Herring, Mark Rutland, Thierry Reding, David Airlie, Rob Herring
  Cc: dri-devel, devicetree, linux-kernel, Lukasz Majewski

This commit adds support for KOE's 5.7" display.

Signed-off-by: Lukasz Majewski <lukma@denx.de>
---
 .../bindings/display/panel/koe,tx14d24vm1bpa.txt   | 42 ++++++++++++++++++++++
 drivers/gpu/drm/panel/panel-simple.c               | 26 ++++++++++++++
 2 files changed, 68 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/display/panel/koe,tx14d24vm1bpa.txt

diff --git a/Documentation/devicetree/bindings/display/panel/koe,tx14d24vm1bpa.txt b/Documentation/devicetree/bindings/display/panel/koe,tx14d24vm1bpa.txt
new file mode 100644
index 000000000000..be7ac666807b
--- /dev/null
+++ b/Documentation/devicetree/bindings/display/panel/koe,tx14d24vm1bpa.txt
@@ -0,0 +1,42 @@
+Kaohsiung Opto-Electronics Inc. 5.7" QVGA (320 x 240) TFT LCD panel
+
+Required properties:
+- compatible: should be "koe,tx14d24vm1bpa"
+- backlight: phandle of the backlight device attached to the panel
+- power-supply: single regulator to provide the supply voltage
+
+Required nodes:
+- port: Parallel port mapping to connect this display
+
+This panel needs single power supply voltage. Its backlight is conntrolled
+via PWM signal.
+
+Example:
+--------
+
+Example device-tree definition when connected to iMX53 based board
+
+	lcd_panel: lcd-panel {
+		compatible = "koe,tx14d24vm1bpa";
+		backlight = <&backlight_lcd>;
+		power-supply = <&reg_3v3>;
+
+		port {
+			lcd_panel_in: endpoint {
+				remote-endpoint = <&lcd_display_out>;
+			};
+		};
+	};
+
+Then one needs to extend the dispX node:
+
+	lcd_display: disp1 {
+
+		port@1 {
+			reg = <1>;
+
+			lcd_display_out: endpoint {
+				remote-endpoint = <&lcd_panel_in>;
+			};
+		};
+	};
diff --git a/drivers/gpu/drm/panel/panel-simple.c b/drivers/gpu/drm/panel/panel-simple.c
index d9984bdb5bb5..103b43ce7dee 100644
--- a/drivers/gpu/drm/panel/panel-simple.c
+++ b/drivers/gpu/drm/panel/panel-simple.c
@@ -1268,6 +1268,29 @@ static const struct panel_desc innolux_zj070na_01p = {
 	},
 };
 
+static const struct display_timing koe_tx14d24vm1bpa_timing = {
+	.pixelclock = { 5580000, 5850000, 6200000 },
+	.hactive = { 320, 320, 320 },
+	.hfront_porch = { 30, 30, 30 },
+	.hback_porch = { 30, 30, 30 },
+	.hsync_len = { 1, 5, 17 },
+	.vactive = { 240, 240, 240 },
+	.vfront_porch = { 6, 6, 6 },
+	.vback_porch = { 5, 5, 5 },
+	.vsync_len = { 1, 2, 11 },
+	.flags = DISPLAY_FLAGS_DE_HIGH,
+};
+
+static const struct panel_desc koe_tx14d24vm1bpa = {
+	.timings = &koe_tx14d24vm1bpa_timing,
+	.num_timings = 1,
+	.bpc = 6,
+	.size = {
+		.width = 115,
+		.height = 86,
+	},
+};
+
 static const struct display_timing koe_tx31d200vm0baa_timing = {
 	.pixelclock = { 39600000, 43200000, 48000000 },
 	.hactive = { 1280, 1280, 1280 },
@@ -2204,6 +2227,9 @@ static const struct of_device_id platform_of_match[] = {
 		.compatible = "innolux,zj070na-01p",
 		.data = &innolux_zj070na_01p,
 	}, {
+		.compatible = "koe,tx14d24vm1bpa",
+		.data = &koe_tx14d24vm1bpa,
+	}, {
 		.compatible = "koe,tx31d200vm0baa",
 		.data = &koe_tx31d200vm0baa,
 	}, {
-- 
2.11.0

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

* Re: [PATCH] display: panel: Add KOE tx14d24vm1bpa display support (320x240)
  2018-05-04 10:28   ` Lukasz Majewski
@ 2018-05-10 14:22       ` Rob Herring
  0 siblings, 0 replies; 35+ messages in thread
From: Rob Herring @ 2018-05-10 14:22 UTC (permalink / raw)
  To: Lukasz Majewski
  Cc: Mark Rutland, Thierry Reding, David Airlie, dri-devel,
	devicetree, linux-kernel

On Fri, May 4, 2018 at 5:28 AM, Lukasz Majewski <lukma@denx.de> wrote:
> Hi Rob,
>
>> On Thu, Apr 12, 2018 at 04:37:15PM +0200, Lukasz Majewski wrote:
>> > This commit adds support for KOE's 5.7" display.
>> >
>> > Signed-off-by: Lukasz Majewski <lukma@denx.de>
>> > ---
>> >  .../bindings/display/panel/koe,tx14d24vm1bpa.txt   | 42
>> > ++++++++++++++++++++++
>> > drivers/gpu/drm/panel/panel-simple.c               | 26
>> > ++++++++++++++ 2 files changed, 68 insertions(+) create mode 100644
>> > Documentation/devicetree/bindings/display/panel/koe,tx14d24vm1bpa.txt
>>
>> Reviewed-by: Rob Herring <robh@kernel.org>
>>
>
> Gentle ping on this - as I don't know if this patch been applied.

This should go thru DRM tree via Thierry.

Rob

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

* Re: [PATCH] display: panel: Add KOE tx14d24vm1bpa display support (320x240)
@ 2018-05-10 14:22       ` Rob Herring
  0 siblings, 0 replies; 35+ messages in thread
From: Rob Herring @ 2018-05-10 14:22 UTC (permalink / raw)
  To: Lukasz Majewski
  Cc: Mark Rutland, devicetree, David Airlie, linux-kernel, dri-devel,
	Thierry Reding

On Fri, May 4, 2018 at 5:28 AM, Lukasz Majewski <lukma@denx.de> wrote:
> Hi Rob,
>
>> On Thu, Apr 12, 2018 at 04:37:15PM +0200, Lukasz Majewski wrote:
>> > This commit adds support for KOE's 5.7" display.
>> >
>> > Signed-off-by: Lukasz Majewski <lukma@denx.de>
>> > ---
>> >  .../bindings/display/panel/koe,tx14d24vm1bpa.txt   | 42
>> > ++++++++++++++++++++++
>> > drivers/gpu/drm/panel/panel-simple.c               | 26
>> > ++++++++++++++ 2 files changed, 68 insertions(+) create mode 100644
>> > Documentation/devicetree/bindings/display/panel/koe,tx14d24vm1bpa.txt
>>
>> Reviewed-by: Rob Herring <robh@kernel.org>
>>
>
> Gentle ping on this - as I don't know if this patch been applied.

This should go thru DRM tree via Thierry.

Rob
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel

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

* Re: [PATCH RESEND] display: panel: Add KOE tx14d24vm1bpa display support (320x240)
  2018-05-09 15:43 ` [PATCH RESEND] " Lukasz Majewski
@ 2018-05-10 14:24     ` Rob Herring
  2018-05-19 11:05   ` Lukasz Majewski
  1 sibling, 0 replies; 35+ messages in thread
From: Rob Herring @ 2018-05-10 14:24 UTC (permalink / raw)
  To: Lukasz Majewski
  Cc: Mark Rutland, Thierry Reding, David Airlie, dri-devel,
	devicetree, linux-kernel

On Wed, May 9, 2018 at 10:43 AM, Lukasz Majewski <lukma@denx.de> wrote:
> This commit adds support for KOE's 5.7" display.
>
> Signed-off-by: Lukasz Majewski <lukma@denx.de>

Please add ack/reviewed-by's when posting new versions.

Rob

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

* Re: [PATCH RESEND] display: panel: Add KOE tx14d24vm1bpa display support (320x240)
@ 2018-05-10 14:24     ` Rob Herring
  0 siblings, 0 replies; 35+ messages in thread
From: Rob Herring @ 2018-05-10 14:24 UTC (permalink / raw)
  To: Lukasz Majewski
  Cc: Mark Rutland, devicetree, David Airlie, linux-kernel, dri-devel,
	Thierry Reding

On Wed, May 9, 2018 at 10:43 AM, Lukasz Majewski <lukma@denx.de> wrote:
> This commit adds support for KOE's 5.7" display.
>
> Signed-off-by: Lukasz Majewski <lukma@denx.de>

Please add ack/reviewed-by's when posting new versions.

Rob
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel

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

* Re: [PATCH] display: panel: Add KOE tx14d24vm1bpa display support (320x240)
  2018-05-10 14:22       ` Rob Herring
  (?)
@ 2018-05-11 15:04       ` Lukasz Majewski
  -1 siblings, 0 replies; 35+ messages in thread
From: Lukasz Majewski @ 2018-05-11 15:04 UTC (permalink / raw)
  To: Rob Herring, Thierry Reding
  Cc: Mark Rutland, David Airlie, dri-devel, devicetree, linux-kernel

[-- Attachment #1: Type: text/plain, Size: 1281 bytes --]

Hi Rob, Thierry

> On Fri, May 4, 2018 at 5:28 AM, Lukasz Majewski <lukma@denx.de> wrote:
> > Hi Rob,
> >  
> >> On Thu, Apr 12, 2018 at 04:37:15PM +0200, Lukasz Majewski wrote:  
> >> > This commit adds support for KOE's 5.7" display.
> >> >
> >> > Signed-off-by: Lukasz Majewski <lukma@denx.de>
> >> > ---
> >> >  .../bindings/display/panel/koe,tx14d24vm1bpa.txt   | 42
> >> > ++++++++++++++++++++++
> >> > drivers/gpu/drm/panel/panel-simple.c               | 26
> >> > ++++++++++++++ 2 files changed, 68 insertions(+) create mode
> >> > 100644
> >> > Documentation/devicetree/bindings/display/panel/koe,tx14d24vm1bpa.txt  
> >>
> >> Reviewed-by: Rob Herring <robh@kernel.org>
> >>  
> >
> > Gentle ping on this - as I don't know if this patch been applied.  
> 
> This should go thru DRM tree via Thierry.

Would it be possible to pull this patch along with:
[PATCH v3] display: panel: Add AUO g070vvn01 display support (800x480)

To your -next tree (as we are now with -rc4) ?

> 
> Rob


Best regards,

Lukasz Majewski

--

DENX Software Engineering GmbH,      Managing Director: Wolfgang Denk
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd@denx.de

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

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

* Re: [PATCH RESEND] display: panel: Add KOE tx14d24vm1bpa display support (320x240)
  2018-05-09 15:43 ` [PATCH RESEND] " Lukasz Majewski
  2018-05-10 14:24     ` Rob Herring
@ 2018-05-19 11:05   ` Lukasz Majewski
  2018-05-28  7:55     ` Lukasz Majewski
  1 sibling, 1 reply; 35+ messages in thread
From: Lukasz Majewski @ 2018-05-19 11:05 UTC (permalink / raw)
  To: Thierry Reding
  Cc: Rob Herring, Mark Rutland, David Airlie, Rob Herring, dri-devel,
	devicetree, linux-kernel

[-- Attachment #1: Type: text/plain, Size: 3701 bytes --]

Hi Thierry,

> This commit adds support for KOE's 5.7" display.
> 

Thierry, shall I perform some more work on this code, or is it
eligible for applying to your tree?

Best regards,
Łukasz

> Signed-off-by: Lukasz Majewski <lukma@denx.de>
> ---
>  .../bindings/display/panel/koe,tx14d24vm1bpa.txt   | 42
> ++++++++++++++++++++++
> drivers/gpu/drm/panel/panel-simple.c               | 26
> ++++++++++++++ 2 files changed, 68 insertions(+) create mode 100644
> Documentation/devicetree/bindings/display/panel/koe,tx14d24vm1bpa.txt
> 
> diff --git
> a/Documentation/devicetree/bindings/display/panel/koe,tx14d24vm1bpa.txt
> b/Documentation/devicetree/bindings/display/panel/koe,tx14d24vm1bpa.txt
> new file mode 100644 index 000000000000..be7ac666807b --- /dev/null
> +++
> b/Documentation/devicetree/bindings/display/panel/koe,tx14d24vm1bpa.txt
> @@ -0,0 +1,42 @@ +Kaohsiung Opto-Electronics Inc. 5.7" QVGA (320 x
> 240) TFT LCD panel +
> +Required properties:
> +- compatible: should be "koe,tx14d24vm1bpa"
> +- backlight: phandle of the backlight device attached to the panel
> +- power-supply: single regulator to provide the supply voltage
> +
> +Required nodes:
> +- port: Parallel port mapping to connect this display
> +
> +This panel needs single power supply voltage. Its backlight is
> conntrolled +via PWM signal.
> +
> +Example:
> +--------
> +
> +Example device-tree definition when connected to iMX53 based board
> +
> +	lcd_panel: lcd-panel {
> +		compatible = "koe,tx14d24vm1bpa";
> +		backlight = <&backlight_lcd>;
> +		power-supply = <&reg_3v3>;
> +
> +		port {
> +			lcd_panel_in: endpoint {
> +				remote-endpoint = <&lcd_display_out>;
> +			};
> +		};
> +	};
> +
> +Then one needs to extend the dispX node:
> +
> +	lcd_display: disp1 {
> +
> +		port@1 {
> +			reg = <1>;
> +
> +			lcd_display_out: endpoint {
> +				remote-endpoint = <&lcd_panel_in>;
> +			};
> +		};
> +	};
> diff --git a/drivers/gpu/drm/panel/panel-simple.c
> b/drivers/gpu/drm/panel/panel-simple.c index
> d9984bdb5bb5..103b43ce7dee 100644 ---
> a/drivers/gpu/drm/panel/panel-simple.c +++
> b/drivers/gpu/drm/panel/panel-simple.c @@ -1268,6 +1268,29 @@ static
> const struct panel_desc innolux_zj070na_01p = { },
>  };
>  
> +static const struct display_timing koe_tx14d24vm1bpa_timing = {
> +	.pixelclock = { 5580000, 5850000, 6200000 },
> +	.hactive = { 320, 320, 320 },
> +	.hfront_porch = { 30, 30, 30 },
> +	.hback_porch = { 30, 30, 30 },
> +	.hsync_len = { 1, 5, 17 },
> +	.vactive = { 240, 240, 240 },
> +	.vfront_porch = { 6, 6, 6 },
> +	.vback_porch = { 5, 5, 5 },
> +	.vsync_len = { 1, 2, 11 },
> +	.flags = DISPLAY_FLAGS_DE_HIGH,
> +};
> +
> +static const struct panel_desc koe_tx14d24vm1bpa = {
> +	.timings = &koe_tx14d24vm1bpa_timing,
> +	.num_timings = 1,
> +	.bpc = 6,
> +	.size = {
> +		.width = 115,
> +		.height = 86,
> +	},
> +};
> +
>  static const struct display_timing koe_tx31d200vm0baa_timing = {
>  	.pixelclock = { 39600000, 43200000, 48000000 },
>  	.hactive = { 1280, 1280, 1280 },
> @@ -2204,6 +2227,9 @@ static const struct of_device_id
> platform_of_match[] = { .compatible = "innolux,zj070na-01p",
>  		.data = &innolux_zj070na_01p,
>  	}, {
> +		.compatible = "koe,tx14d24vm1bpa",
> +		.data = &koe_tx14d24vm1bpa,
> +	}, {
>  		.compatible = "koe,tx31d200vm0baa",
>  		.data = &koe_tx31d200vm0baa,
>  	}, {


Best regards,

Lukasz Majewski

--

DENX Software Engineering GmbH,      Managing Director: Wolfgang Denk
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd@denx.de

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

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

* Re: [PATCH RESEND] display: panel: Add KOE tx14d24vm1bpa display support (320x240)
  2018-05-19 11:05   ` Lukasz Majewski
@ 2018-05-28  7:55     ` Lukasz Majewski
  2018-05-29 14:30         ` Thierry Reding
  0 siblings, 1 reply; 35+ messages in thread
From: Lukasz Majewski @ 2018-05-28  7:55 UTC (permalink / raw)
  To: Thierry Reding
  Cc: Rob Herring, Mark Rutland, David Airlie, Rob Herring, dri-devel,
	devicetree, linux-kernel

[-- Attachment #1: Type: text/plain, Size: 4335 bytes --]

Hi,

> Hi Thierry,
> 
> > This commit adds support for KOE's 5.7" display.
> >   
> 
> Thierry, shall I perform some more work on this code, or is it
> eligible for applying to your tree?

Gentle ping. If Thierry is overworked - maybe there is a co-maintainer
so he/she could apply this patch?

> 
> Best regards,
> Łukasz
> 
> > Signed-off-by: Lukasz Majewski <lukma@denx.de>
> > ---
> >  .../bindings/display/panel/koe,tx14d24vm1bpa.txt   | 42
> > ++++++++++++++++++++++
> > drivers/gpu/drm/panel/panel-simple.c               | 26
> > ++++++++++++++ 2 files changed, 68 insertions(+) create mode 100644
> > Documentation/devicetree/bindings/display/panel/koe,tx14d24vm1bpa.txt
> > 
> > diff --git
> > a/Documentation/devicetree/bindings/display/panel/koe,tx14d24vm1bpa.txt
> > b/Documentation/devicetree/bindings/display/panel/koe,tx14d24vm1bpa.txt
> > new file mode 100644 index 000000000000..be7ac666807b --- /dev/null
> > +++
> > b/Documentation/devicetree/bindings/display/panel/koe,tx14d24vm1bpa.txt
> > @@ -0,0 +1,42 @@ +Kaohsiung Opto-Electronics Inc. 5.7" QVGA (320 x
> > 240) TFT LCD panel +
> > +Required properties:
> > +- compatible: should be "koe,tx14d24vm1bpa"
> > +- backlight: phandle of the backlight device attached to the panel
> > +- power-supply: single regulator to provide the supply voltage
> > +
> > +Required nodes:
> > +- port: Parallel port mapping to connect this display
> > +
> > +This panel needs single power supply voltage. Its backlight is
> > conntrolled +via PWM signal.
> > +
> > +Example:
> > +--------
> > +
> > +Example device-tree definition when connected to iMX53 based board
> > +
> > +	lcd_panel: lcd-panel {
> > +		compatible = "koe,tx14d24vm1bpa";
> > +		backlight = <&backlight_lcd>;
> > +		power-supply = <&reg_3v3>;
> > +
> > +		port {
> > +			lcd_panel_in: endpoint {
> > +				remote-endpoint =
> > <&lcd_display_out>;
> > +			};
> > +		};
> > +	};
> > +
> > +Then one needs to extend the dispX node:
> > +
> > +	lcd_display: disp1 {
> > +
> > +		port@1 {
> > +			reg = <1>;
> > +
> > +			lcd_display_out: endpoint {
> > +				remote-endpoint = <&lcd_panel_in>;
> > +			};
> > +		};
> > +	};
> > diff --git a/drivers/gpu/drm/panel/panel-simple.c
> > b/drivers/gpu/drm/panel/panel-simple.c index
> > d9984bdb5bb5..103b43ce7dee 100644 ---
> > a/drivers/gpu/drm/panel/panel-simple.c +++
> > b/drivers/gpu/drm/panel/panel-simple.c @@ -1268,6 +1268,29 @@ static
> > const struct panel_desc innolux_zj070na_01p = { },
> >  };
> >  
> > +static const struct display_timing koe_tx14d24vm1bpa_timing = {
> > +	.pixelclock = { 5580000, 5850000, 6200000 },
> > +	.hactive = { 320, 320, 320 },
> > +	.hfront_porch = { 30, 30, 30 },
> > +	.hback_porch = { 30, 30, 30 },
> > +	.hsync_len = { 1, 5, 17 },
> > +	.vactive = { 240, 240, 240 },
> > +	.vfront_porch = { 6, 6, 6 },
> > +	.vback_porch = { 5, 5, 5 },
> > +	.vsync_len = { 1, 2, 11 },
> > +	.flags = DISPLAY_FLAGS_DE_HIGH,
> > +};
> > +
> > +static const struct panel_desc koe_tx14d24vm1bpa = {
> > +	.timings = &koe_tx14d24vm1bpa_timing,
> > +	.num_timings = 1,
> > +	.bpc = 6,
> > +	.size = {
> > +		.width = 115,
> > +		.height = 86,
> > +	},
> > +};
> > +
> >  static const struct display_timing koe_tx31d200vm0baa_timing = {
> >  	.pixelclock = { 39600000, 43200000, 48000000 },
> >  	.hactive = { 1280, 1280, 1280 },
> > @@ -2204,6 +2227,9 @@ static const struct of_device_id
> > platform_of_match[] = { .compatible = "innolux,zj070na-01p",
> >  		.data = &innolux_zj070na_01p,
> >  	}, {
> > +		.compatible = "koe,tx14d24vm1bpa",
> > +		.data = &koe_tx14d24vm1bpa,
> > +	}, {
> >  		.compatible = "koe,tx31d200vm0baa",
> >  		.data = &koe_tx31d200vm0baa,
> >  	}, {  
> 
> 
> Best regards,
> 
> Lukasz Majewski
> 
> --
> 
> DENX Software Engineering GmbH,      Managing Director: Wolfgang Denk
> HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
> Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd@denx.de




Best regards,

Lukasz Majewski

--

DENX Software Engineering GmbH,      Managing Director: Wolfgang Denk
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd@denx.de

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

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

* Re: [PATCH RESEND] display: panel: Add KOE tx14d24vm1bpa display support (320x240)
  2018-05-28  7:55     ` Lukasz Majewski
@ 2018-05-29 14:30         ` Thierry Reding
  0 siblings, 0 replies; 35+ messages in thread
From: Thierry Reding @ 2018-05-29 14:30 UTC (permalink / raw)
  To: Lukasz Majewski
  Cc: Rob Herring, Mark Rutland, David Airlie, Rob Herring, dri-devel,
	devicetree, linux-kernel

[-- Attachment #1: Type: text/plain, Size: 576 bytes --]

On Mon, May 28, 2018 at 09:55:19AM +0200, Lukasz Majewski wrote:
> Hi,
> 
> > Hi Thierry,
> > 
> > > This commit adds support for KOE's 5.7" display.
> > >   
> > 
> > Thierry, shall I perform some more work on this code, or is it
> > eligible for applying to your tree?
> 
> Gentle ping. If Thierry is overworked - maybe there is a co-maintainer
> so he/she could apply this patch?

Please use the proper prefix for the commit subject to increase the
chances of this being noticed.

This is also still missing a Reviewed-by or Acked-by from Rob.

Thierry

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

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

* Re: [PATCH RESEND] display: panel: Add KOE tx14d24vm1bpa display support (320x240)
@ 2018-05-29 14:30         ` Thierry Reding
  0 siblings, 0 replies; 35+ messages in thread
From: Thierry Reding @ 2018-05-29 14:30 UTC (permalink / raw)
  To: Lukasz Majewski
  Cc: Mark Rutland, devicetree, David Airlie, linux-kernel, dri-devel,
	Rob Herring


[-- Attachment #1.1: Type: text/plain, Size: 576 bytes --]

On Mon, May 28, 2018 at 09:55:19AM +0200, Lukasz Majewski wrote:
> Hi,
> 
> > Hi Thierry,
> > 
> > > This commit adds support for KOE's 5.7" display.
> > >   
> > 
> > Thierry, shall I perform some more work on this code, or is it
> > eligible for applying to your tree?
> 
> Gentle ping. If Thierry is overworked - maybe there is a co-maintainer
> so he/she could apply this patch?

Please use the proper prefix for the commit subject to increase the
chances of this being noticed.

This is also still missing a Reviewed-by or Acked-by from Rob.

Thierry

[-- Attachment #1.2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

[-- Attachment #2: Type: text/plain, Size: 160 bytes --]

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel

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

* Re: [PATCH RESEND] display: panel: Add KOE tx14d24vm1bpa display support (320x240)
  2018-05-29 14:30         ` Thierry Reding
  (?)
@ 2018-05-29 15:01         ` Lukasz Majewski
  2018-05-29 15:22             ` Thierry Reding
  -1 siblings, 1 reply; 35+ messages in thread
From: Lukasz Majewski @ 2018-05-29 15:01 UTC (permalink / raw)
  To: Thierry Reding
  Cc: Rob Herring, Mark Rutland, David Airlie, Rob Herring, dri-devel,
	devicetree, linux-kernel

[-- Attachment #1: Type: text/plain, Size: 1211 bytes --]

Hi Thierry,

> On Mon, May 28, 2018 at 09:55:19AM +0200, Lukasz Majewski wrote:
> > Hi,
> >   
> > > Hi Thierry,
> > >   
> > > > This commit adds support for KOE's 5.7" display.
> > > >     
> > > 
> > > Thierry, shall I perform some more work on this code, or is it
> > > eligible for applying to your tree?  
> > 
> > Gentle ping. If Thierry is overworked - maybe there is a
> > co-maintainer so he/she could apply this patch?  
> 
> Please use the proper prefix for the commit subject to increase the
> chances of this being noticed.

Ok. Is there any list of prefixes in the kernel repository, so I could
look for them (like get_prefix.py - similar to get_maintainer script)?

I've used "display: panel" prefix, but I should have used "drm/panel"

> 
> This is also still missing a Reviewed-by or Acked-by from Rob.

Rob has already reviewed this patch. I will send v2
with Rob's Reviewed-by tag.

> 
> Thierry




Best regards,

Lukasz Majewski

--

DENX Software Engineering GmbH,      Managing Director: Wolfgang Denk
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd@denx.de

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

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

* [PATCH v2] display: panel: Add KOE tx14d24vm1bpa display support (320x240)
  2018-04-12 14:37 [PATCH] display: panel: Add KOE tx14d24vm1bpa display support (320x240) Lukasz Majewski
  2018-04-16 19:24   ` Rob Herring
  2018-05-09 15:43 ` [PATCH RESEND] " Lukasz Majewski
@ 2018-05-29 15:05 ` Lukasz Majewski
  2018-06-22  8:56   ` Lukasz Majewski
  2019-04-04 11:22 ` [PATCH v3 1/2] dt-bindings: display/panel: Add KOE tx14d24vm1bpa display description Lukasz Majewski
                   ` (2 subsequent siblings)
  5 siblings, 1 reply; 35+ messages in thread
From: Lukasz Majewski @ 2018-05-29 15:05 UTC (permalink / raw)
  To: Rob Herring, Mark Rutland, Thierry Reding, David Airlie, Rob Herring
  Cc: dri-devel, devicetree, linux-kernel, Lukasz Majewski

This commit adds support for KOE's 5.7" display.

Signed-off-by: Lukasz Majewski <lukma@denx.de>
Reviewed-by: Rob Herring <robh@kernel.org>
---
Changes for v2:
- Add Reviewed-by tag

---
 .../bindings/display/panel/koe,tx14d24vm1bpa.txt   | 42 ++++++++++++++++++++++
 drivers/gpu/drm/panel/panel-simple.c               | 26 ++++++++++++++
 2 files changed, 68 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/display/panel/koe,tx14d24vm1bpa.txt

diff --git a/Documentation/devicetree/bindings/display/panel/koe,tx14d24vm1bpa.txt b/Documentation/devicetree/bindings/display/panel/koe,tx14d24vm1bpa.txt
new file mode 100644
index 000000000000..be7ac666807b
--- /dev/null
+++ b/Documentation/devicetree/bindings/display/panel/koe,tx14d24vm1bpa.txt
@@ -0,0 +1,42 @@
+Kaohsiung Opto-Electronics Inc. 5.7" QVGA (320 x 240) TFT LCD panel
+
+Required properties:
+- compatible: should be "koe,tx14d24vm1bpa"
+- backlight: phandle of the backlight device attached to the panel
+- power-supply: single regulator to provide the supply voltage
+
+Required nodes:
+- port: Parallel port mapping to connect this display
+
+This panel needs single power supply voltage. Its backlight is conntrolled
+via PWM signal.
+
+Example:
+--------
+
+Example device-tree definition when connected to iMX53 based board
+
+	lcd_panel: lcd-panel {
+		compatible = "koe,tx14d24vm1bpa";
+		backlight = <&backlight_lcd>;
+		power-supply = <&reg_3v3>;
+
+		port {
+			lcd_panel_in: endpoint {
+				remote-endpoint = <&lcd_display_out>;
+			};
+		};
+	};
+
+Then one needs to extend the dispX node:
+
+	lcd_display: disp1 {
+
+		port@1 {
+			reg = <1>;
+
+			lcd_display_out: endpoint {
+				remote-endpoint = <&lcd_panel_in>;
+			};
+		};
+	};
diff --git a/drivers/gpu/drm/panel/panel-simple.c b/drivers/gpu/drm/panel/panel-simple.c
index d9984bdb5bb5..103b43ce7dee 100644
--- a/drivers/gpu/drm/panel/panel-simple.c
+++ b/drivers/gpu/drm/panel/panel-simple.c
@@ -1268,6 +1268,29 @@ static const struct panel_desc innolux_zj070na_01p = {
 	},
 };
 
+static const struct display_timing koe_tx14d24vm1bpa_timing = {
+	.pixelclock = { 5580000, 5850000, 6200000 },
+	.hactive = { 320, 320, 320 },
+	.hfront_porch = { 30, 30, 30 },
+	.hback_porch = { 30, 30, 30 },
+	.hsync_len = { 1, 5, 17 },
+	.vactive = { 240, 240, 240 },
+	.vfront_porch = { 6, 6, 6 },
+	.vback_porch = { 5, 5, 5 },
+	.vsync_len = { 1, 2, 11 },
+	.flags = DISPLAY_FLAGS_DE_HIGH,
+};
+
+static const struct panel_desc koe_tx14d24vm1bpa = {
+	.timings = &koe_tx14d24vm1bpa_timing,
+	.num_timings = 1,
+	.bpc = 6,
+	.size = {
+		.width = 115,
+		.height = 86,
+	},
+};
+
 static const struct display_timing koe_tx31d200vm0baa_timing = {
 	.pixelclock = { 39600000, 43200000, 48000000 },
 	.hactive = { 1280, 1280, 1280 },
@@ -2204,6 +2227,9 @@ static const struct of_device_id platform_of_match[] = {
 		.compatible = "innolux,zj070na-01p",
 		.data = &innolux_zj070na_01p,
 	}, {
+		.compatible = "koe,tx14d24vm1bpa",
+		.data = &koe_tx14d24vm1bpa,
+	}, {
 		.compatible = "koe,tx31d200vm0baa",
 		.data = &koe_tx31d200vm0baa,
 	}, {
-- 
2.11.0

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

* Re: [PATCH RESEND] display: panel: Add KOE tx14d24vm1bpa display support (320x240)
  2018-05-29 15:01         ` Lukasz Majewski
@ 2018-05-29 15:22             ` Thierry Reding
  0 siblings, 0 replies; 35+ messages in thread
From: Thierry Reding @ 2018-05-29 15:22 UTC (permalink / raw)
  To: Lukasz Majewski
  Cc: Rob Herring, Mark Rutland, David Airlie, Rob Herring, dri-devel,
	devicetree, linux-kernel

[-- Attachment #1: Type: text/plain, Size: 1362 bytes --]

On Tue, May 29, 2018 at 05:01:48PM +0200, Lukasz Majewski wrote:
> Hi Thierry,
> 
> > On Mon, May 28, 2018 at 09:55:19AM +0200, Lukasz Majewski wrote:
> > > Hi,
> > >   
> > > > Hi Thierry,
> > > >   
> > > > > This commit adds support for KOE's 5.7" display.
> > > > >     
> > > > 
> > > > Thierry, shall I perform some more work on this code, or is it
> > > > eligible for applying to your tree?  
> > > 
> > > Gentle ping. If Thierry is overworked - maybe there is a
> > > co-maintainer so he/she could apply this patch?  
> > 
> > Please use the proper prefix for the commit subject to increase the
> > chances of this being noticed.
> 
> Ok. Is there any list of prefixes in the kernel repository, so I could
> look for them (like get_prefix.py - similar to get_maintainer script)?

I don't think there is. A good rule of thumb that I use is to go over
the git log for the last couple of commits and see if there's a clear
pattern. This doesn't work for every subsystem, but drm/panel is very
consistent in this regard, on purpose.

> I've used "display: panel" prefix, but I should have used "drm/panel"
> 
> > 
> > This is also still missing a Reviewed-by or Acked-by from Rob.
> 
> Rob has already reviewed this patch. I will send v2
> with Rob's Reviewed-by tag.

Okay, I'll apply that v2 then.

Thanks,
Thierry

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

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

* Re: [PATCH RESEND] display: panel: Add KOE tx14d24vm1bpa display support (320x240)
@ 2018-05-29 15:22             ` Thierry Reding
  0 siblings, 0 replies; 35+ messages in thread
From: Thierry Reding @ 2018-05-29 15:22 UTC (permalink / raw)
  To: Lukasz Majewski
  Cc: Mark Rutland, devicetree, David Airlie, linux-kernel, dri-devel,
	Rob Herring


[-- Attachment #1.1: Type: text/plain, Size: 1362 bytes --]

On Tue, May 29, 2018 at 05:01:48PM +0200, Lukasz Majewski wrote:
> Hi Thierry,
> 
> > On Mon, May 28, 2018 at 09:55:19AM +0200, Lukasz Majewski wrote:
> > > Hi,
> > >   
> > > > Hi Thierry,
> > > >   
> > > > > This commit adds support for KOE's 5.7" display.
> > > > >     
> > > > 
> > > > Thierry, shall I perform some more work on this code, or is it
> > > > eligible for applying to your tree?  
> > > 
> > > Gentle ping. If Thierry is overworked - maybe there is a
> > > co-maintainer so he/she could apply this patch?  
> > 
> > Please use the proper prefix for the commit subject to increase the
> > chances of this being noticed.
> 
> Ok. Is there any list of prefixes in the kernel repository, so I could
> look for them (like get_prefix.py - similar to get_maintainer script)?

I don't think there is. A good rule of thumb that I use is to go over
the git log for the last couple of commits and see if there's a clear
pattern. This doesn't work for every subsystem, but drm/panel is very
consistent in this regard, on purpose.

> I've used "display: panel" prefix, but I should have used "drm/panel"
> 
> > 
> > This is also still missing a Reviewed-by or Acked-by from Rob.
> 
> Rob has already reviewed this patch. I will send v2
> with Rob's Reviewed-by tag.

Okay, I'll apply that v2 then.

Thanks,
Thierry

[-- Attachment #1.2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

[-- Attachment #2: Type: text/plain, Size: 160 bytes --]

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel

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

* Re: [PATCH RESEND] display: panel: Add KOE tx14d24vm1bpa display support (320x240)
  2018-05-29 15:22             ` Thierry Reding
  (?)
@ 2018-05-29 15:33             ` Lukasz Majewski
  2018-05-29 16:12                 ` Thierry Reding
  -1 siblings, 1 reply; 35+ messages in thread
From: Lukasz Majewski @ 2018-05-29 15:33 UTC (permalink / raw)
  To: Thierry Reding
  Cc: Rob Herring, Mark Rutland, David Airlie, Rob Herring, dri-devel,
	devicetree, linux-kernel

[-- Attachment #1: Type: text/plain, Size: 1957 bytes --]

Hi Thierry,

> On Tue, May 29, 2018 at 05:01:48PM +0200, Lukasz Majewski wrote:
> > Hi Thierry,
> >   
> > > On Mon, May 28, 2018 at 09:55:19AM +0200, Lukasz Majewski wrote:  
> > > > Hi,
> > > >     
> > > > > Hi Thierry,
> > > > >     
> > > > > > This commit adds support for KOE's 5.7" display.
> > > > > >       
> > > > > 
> > > > > Thierry, shall I perform some more work on this code, or is it
> > > > > eligible for applying to your tree?    
> > > > 
> > > > Gentle ping. If Thierry is overworked - maybe there is a
> > > > co-maintainer so he/she could apply this patch?    
> > > 
> > > Please use the proper prefix for the commit subject to increase
> > > the chances of this being noticed.  
> > 
> > Ok. Is there any list of prefixes in the kernel repository, so I
> > could look for them (like get_prefix.py - similar to get_maintainer
> > script)?  
> 
> I don't think there is. A good rule of thumb that I use is to go over
> the git log for the last couple of commits and see if there's a clear
> pattern. This doesn't work for every subsystem, but drm/panel is very
> consistent in this regard, on purpose.

I see.

Is the DRM/panel tree hosted on git.kernel.org?

The tree maintained by you there seems to be:
kernel/git/thierry.reding/linux-pwm.git

IIRC it is hosted elsewhere. Am I right?

> 
> > I've used "display: panel" prefix, but I should have used
> > "drm/panel" 
> > > 
> > > This is also still missing a Reviewed-by or Acked-by from Rob.  
> > 
> > Rob has already reviewed this patch. I will send v2
> > with Rob's Reviewed-by tag.  
> 
> Okay, I'll apply that v2 then.

Thanks.

> 
> Thanks,
> Thierry




Best regards,

Lukasz Majewski

--

DENX Software Engineering GmbH,      Managing Director: Wolfgang Denk
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd@denx.de

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

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

* Re: [PATCH RESEND] display: panel: Add KOE tx14d24vm1bpa display support (320x240)
  2018-05-29 15:33             ` Lukasz Majewski
@ 2018-05-29 16:12                 ` Thierry Reding
  0 siblings, 0 replies; 35+ messages in thread
From: Thierry Reding @ 2018-05-29 16:12 UTC (permalink / raw)
  To: Lukasz Majewski
  Cc: Rob Herring, Mark Rutland, David Airlie, Rob Herring, dri-devel,
	devicetree, linux-kernel

[-- Attachment #1: Type: text/plain, Size: 1588 bytes --]

On Tue, May 29, 2018 at 05:33:38PM +0200, Lukasz Majewski wrote:
> Hi Thierry,
> 
> > On Tue, May 29, 2018 at 05:01:48PM +0200, Lukasz Majewski wrote:
> > > Hi Thierry,
> > >   
> > > > On Mon, May 28, 2018 at 09:55:19AM +0200, Lukasz Majewski wrote:  
> > > > > Hi,
> > > > >     
> > > > > > Hi Thierry,
> > > > > >     
> > > > > > > This commit adds support for KOE's 5.7" display.
> > > > > > >       
> > > > > > 
> > > > > > Thierry, shall I perform some more work on this code, or is it
> > > > > > eligible for applying to your tree?    
> > > > > 
> > > > > Gentle ping. If Thierry is overworked - maybe there is a
> > > > > co-maintainer so he/she could apply this patch?    
> > > > 
> > > > Please use the proper prefix for the commit subject to increase
> > > > the chances of this being noticed.  
> > > 
> > > Ok. Is there any list of prefixes in the kernel repository, so I
> > > could look for them (like get_prefix.py - similar to get_maintainer
> > > script)?  
> > 
> > I don't think there is. A good rule of thumb that I use is to go over
> > the git log for the last couple of commits and see if there's a clear
> > pattern. This doesn't work for every subsystem, but drm/panel is very
> > consistent in this regard, on purpose.
> 
> I see.
> 
> Is the DRM/panel tree hosted on git.kernel.org?
> 
> The tree maintained by you there seems to be:
> kernel/git/thierry.reding/linux-pwm.git
> 
> IIRC it is hosted elsewhere. Am I right?

drm/panel is part of drm-misc:

	https://cgit.freedesktop.org/drm/drm-misc/

Thierry

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

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

* Re: [PATCH RESEND] display: panel: Add KOE tx14d24vm1bpa display support (320x240)
@ 2018-05-29 16:12                 ` Thierry Reding
  0 siblings, 0 replies; 35+ messages in thread
From: Thierry Reding @ 2018-05-29 16:12 UTC (permalink / raw)
  To: Lukasz Majewski
  Cc: Mark Rutland, devicetree, David Airlie, linux-kernel, dri-devel,
	Rob Herring


[-- Attachment #1.1: Type: text/plain, Size: 1588 bytes --]

On Tue, May 29, 2018 at 05:33:38PM +0200, Lukasz Majewski wrote:
> Hi Thierry,
> 
> > On Tue, May 29, 2018 at 05:01:48PM +0200, Lukasz Majewski wrote:
> > > Hi Thierry,
> > >   
> > > > On Mon, May 28, 2018 at 09:55:19AM +0200, Lukasz Majewski wrote:  
> > > > > Hi,
> > > > >     
> > > > > > Hi Thierry,
> > > > > >     
> > > > > > > This commit adds support for KOE's 5.7" display.
> > > > > > >       
> > > > > > 
> > > > > > Thierry, shall I perform some more work on this code, or is it
> > > > > > eligible for applying to your tree?    
> > > > > 
> > > > > Gentle ping. If Thierry is overworked - maybe there is a
> > > > > co-maintainer so he/she could apply this patch?    
> > > > 
> > > > Please use the proper prefix for the commit subject to increase
> > > > the chances of this being noticed.  
> > > 
> > > Ok. Is there any list of prefixes in the kernel repository, so I
> > > could look for them (like get_prefix.py - similar to get_maintainer
> > > script)?  
> > 
> > I don't think there is. A good rule of thumb that I use is to go over
> > the git log for the last couple of commits and see if there's a clear
> > pattern. This doesn't work for every subsystem, but drm/panel is very
> > consistent in this regard, on purpose.
> 
> I see.
> 
> Is the DRM/panel tree hosted on git.kernel.org?
> 
> The tree maintained by you there seems to be:
> kernel/git/thierry.reding/linux-pwm.git
> 
> IIRC it is hosted elsewhere. Am I right?

drm/panel is part of drm-misc:

	https://cgit.freedesktop.org/drm/drm-misc/

Thierry

[-- Attachment #1.2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

[-- Attachment #2: Type: text/plain, Size: 160 bytes --]

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel

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

* Re: [PATCH v2] display: panel: Add KOE tx14d24vm1bpa display support (320x240)
  2018-05-29 15:05 ` [PATCH v2] " Lukasz Majewski
@ 2018-06-22  8:56   ` Lukasz Majewski
  2018-06-29 17:05     ` Lukasz Majewski
  0 siblings, 1 reply; 35+ messages in thread
From: Lukasz Majewski @ 2018-06-22  8:56 UTC (permalink / raw)
  To: Thierry Reding
  Cc: Rob Herring, Mark Rutland, David Airlie, Rob Herring, dri-devel,
	devicetree, linux-kernel

[-- Attachment #1: Type: text/plain, Size: 3752 bytes --]

Hi Thierry,

> This commit adds support for KOE's 5.7" display.
> 
> Signed-off-by: Lukasz Majewski <lukma@denx.de>
> Reviewed-by: Rob Herring <robh@kernel.org>
> ---
> Changes for v2:
> - Add Reviewed-by tag

Could you apply this patch to your tree?

Thanks in advance,
Łukasz

> 
> ---
>  .../bindings/display/panel/koe,tx14d24vm1bpa.txt   | 42
> ++++++++++++++++++++++
> drivers/gpu/drm/panel/panel-simple.c               | 26
> ++++++++++++++ 2 files changed, 68 insertions(+) create mode 100644
> Documentation/devicetree/bindings/display/panel/koe,tx14d24vm1bpa.txt
> 
> diff --git
> a/Documentation/devicetree/bindings/display/panel/koe,tx14d24vm1bpa.txt
> b/Documentation/devicetree/bindings/display/panel/koe,tx14d24vm1bpa.txt
> new file mode 100644 index 000000000000..be7ac666807b --- /dev/null
> +++
> b/Documentation/devicetree/bindings/display/panel/koe,tx14d24vm1bpa.txt
> @@ -0,0 +1,42 @@ +Kaohsiung Opto-Electronics Inc. 5.7" QVGA (320 x
> 240) TFT LCD panel +
> +Required properties:
> +- compatible: should be "koe,tx14d24vm1bpa"
> +- backlight: phandle of the backlight device attached to the panel
> +- power-supply: single regulator to provide the supply voltage
> +
> +Required nodes:
> +- port: Parallel port mapping to connect this display
> +
> +This panel needs single power supply voltage. Its backlight is
> conntrolled +via PWM signal.
> +
> +Example:
> +--------
> +
> +Example device-tree definition when connected to iMX53 based board
> +
> +	lcd_panel: lcd-panel {
> +		compatible = "koe,tx14d24vm1bpa";
> +		backlight = <&backlight_lcd>;
> +		power-supply = <&reg_3v3>;
> +
> +		port {
> +			lcd_panel_in: endpoint {
> +				remote-endpoint = <&lcd_display_out>;
> +			};
> +		};
> +	};
> +
> +Then one needs to extend the dispX node:
> +
> +	lcd_display: disp1 {
> +
> +		port@1 {
> +			reg = <1>;
> +
> +			lcd_display_out: endpoint {
> +				remote-endpoint = <&lcd_panel_in>;
> +			};
> +		};
> +	};
> diff --git a/drivers/gpu/drm/panel/panel-simple.c
> b/drivers/gpu/drm/panel/panel-simple.c index
> d9984bdb5bb5..103b43ce7dee 100644 ---
> a/drivers/gpu/drm/panel/panel-simple.c +++
> b/drivers/gpu/drm/panel/panel-simple.c @@ -1268,6 +1268,29 @@ static
> const struct panel_desc innolux_zj070na_01p = { },
>  };
>  
> +static const struct display_timing koe_tx14d24vm1bpa_timing = {
> +	.pixelclock = { 5580000, 5850000, 6200000 },
> +	.hactive = { 320, 320, 320 },
> +	.hfront_porch = { 30, 30, 30 },
> +	.hback_porch = { 30, 30, 30 },
> +	.hsync_len = { 1, 5, 17 },
> +	.vactive = { 240, 240, 240 },
> +	.vfront_porch = { 6, 6, 6 },
> +	.vback_porch = { 5, 5, 5 },
> +	.vsync_len = { 1, 2, 11 },
> +	.flags = DISPLAY_FLAGS_DE_HIGH,
> +};
> +
> +static const struct panel_desc koe_tx14d24vm1bpa = {
> +	.timings = &koe_tx14d24vm1bpa_timing,
> +	.num_timings = 1,
> +	.bpc = 6,
> +	.size = {
> +		.width = 115,
> +		.height = 86,
> +	},
> +};
> +
>  static const struct display_timing koe_tx31d200vm0baa_timing = {
>  	.pixelclock = { 39600000, 43200000, 48000000 },
>  	.hactive = { 1280, 1280, 1280 },
> @@ -2204,6 +2227,9 @@ static const struct of_device_id
> platform_of_match[] = { .compatible = "innolux,zj070na-01p",
>  		.data = &innolux_zj070na_01p,
>  	}, {
> +		.compatible = "koe,tx14d24vm1bpa",
> +		.data = &koe_tx14d24vm1bpa,
> +	}, {
>  		.compatible = "koe,tx31d200vm0baa",
>  		.data = &koe_tx31d200vm0baa,
>  	}, {




Best regards,

Lukasz Majewski

--

DENX Software Engineering GmbH,      Managing Director: Wolfgang Denk
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd@denx.de

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

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

* Re: [PATCH v2] display: panel: Add KOE tx14d24vm1bpa display support (320x240)
  2018-06-22  8:56   ` Lukasz Majewski
@ 2018-06-29 17:05     ` Lukasz Majewski
  2018-07-08  8:43       ` Lukasz Majewski
  0 siblings, 1 reply; 35+ messages in thread
From: Lukasz Majewski @ 2018-06-29 17:05 UTC (permalink / raw)
  To: Thierry Reding
  Cc: Rob Herring, Mark Rutland, David Airlie, Rob Herring, dri-devel,
	devicetree, linux-kernel

[-- Attachment #1: Type: text/plain, Size: 4396 bytes --]

Hi Thierry,

> Hi Thierry,
> 
> > This commit adds support for KOE's 5.7" display.
> > 
> > Signed-off-by: Lukasz Majewski <lukma@denx.de>
> > Reviewed-by: Rob Herring <robh@kernel.org>
> > ---
> > Changes for v2:
> > - Add Reviewed-by tag  
> 
> Could you apply this patch to your tree?

If I may gentle ping on this patch..... It is quite mature now... :-)

Best regards,
Łukasz

> 
> Thanks in advance,
> Łukasz
> 
> > 
> > ---
> >  .../bindings/display/panel/koe,tx14d24vm1bpa.txt   | 42
> > ++++++++++++++++++++++
> > drivers/gpu/drm/panel/panel-simple.c               | 26
> > ++++++++++++++ 2 files changed, 68 insertions(+) create mode 100644
> > Documentation/devicetree/bindings/display/panel/koe,tx14d24vm1bpa.txt
> > 
> > diff --git
> > a/Documentation/devicetree/bindings/display/panel/koe,tx14d24vm1bpa.txt
> > b/Documentation/devicetree/bindings/display/panel/koe,tx14d24vm1bpa.txt
> > new file mode 100644 index 000000000000..be7ac666807b --- /dev/null
> > +++
> > b/Documentation/devicetree/bindings/display/panel/koe,tx14d24vm1bpa.txt
> > @@ -0,0 +1,42 @@ +Kaohsiung Opto-Electronics Inc. 5.7" QVGA (320 x
> > 240) TFT LCD panel +
> > +Required properties:
> > +- compatible: should be "koe,tx14d24vm1bpa"
> > +- backlight: phandle of the backlight device attached to the panel
> > +- power-supply: single regulator to provide the supply voltage
> > +
> > +Required nodes:
> > +- port: Parallel port mapping to connect this display
> > +
> > +This panel needs single power supply voltage. Its backlight is
> > conntrolled +via PWM signal.
> > +
> > +Example:
> > +--------
> > +
> > +Example device-tree definition when connected to iMX53 based board
> > +
> > +	lcd_panel: lcd-panel {
> > +		compatible = "koe,tx14d24vm1bpa";
> > +		backlight = <&backlight_lcd>;
> > +		power-supply = <&reg_3v3>;
> > +
> > +		port {
> > +			lcd_panel_in: endpoint {
> > +				remote-endpoint =
> > <&lcd_display_out>;
> > +			};
> > +		};
> > +	};
> > +
> > +Then one needs to extend the dispX node:
> > +
> > +	lcd_display: disp1 {
> > +
> > +		port@1 {
> > +			reg = <1>;
> > +
> > +			lcd_display_out: endpoint {
> > +				remote-endpoint = <&lcd_panel_in>;
> > +			};
> > +		};
> > +	};
> > diff --git a/drivers/gpu/drm/panel/panel-simple.c
> > b/drivers/gpu/drm/panel/panel-simple.c index
> > d9984bdb5bb5..103b43ce7dee 100644 ---
> > a/drivers/gpu/drm/panel/panel-simple.c +++
> > b/drivers/gpu/drm/panel/panel-simple.c @@ -1268,6 +1268,29 @@ static
> > const struct panel_desc innolux_zj070na_01p = { },
> >  };
> >  
> > +static const struct display_timing koe_tx14d24vm1bpa_timing = {
> > +	.pixelclock = { 5580000, 5850000, 6200000 },
> > +	.hactive = { 320, 320, 320 },
> > +	.hfront_porch = { 30, 30, 30 },
> > +	.hback_porch = { 30, 30, 30 },
> > +	.hsync_len = { 1, 5, 17 },
> > +	.vactive = { 240, 240, 240 },
> > +	.vfront_porch = { 6, 6, 6 },
> > +	.vback_porch = { 5, 5, 5 },
> > +	.vsync_len = { 1, 2, 11 },
> > +	.flags = DISPLAY_FLAGS_DE_HIGH,
> > +};
> > +
> > +static const struct panel_desc koe_tx14d24vm1bpa = {
> > +	.timings = &koe_tx14d24vm1bpa_timing,
> > +	.num_timings = 1,
> > +	.bpc = 6,
> > +	.size = {
> > +		.width = 115,
> > +		.height = 86,
> > +	},
> > +};
> > +
> >  static const struct display_timing koe_tx31d200vm0baa_timing = {
> >  	.pixelclock = { 39600000, 43200000, 48000000 },
> >  	.hactive = { 1280, 1280, 1280 },
> > @@ -2204,6 +2227,9 @@ static const struct of_device_id
> > platform_of_match[] = { .compatible = "innolux,zj070na-01p",
> >  		.data = &innolux_zj070na_01p,
> >  	}, {
> > +		.compatible = "koe,tx14d24vm1bpa",
> > +		.data = &koe_tx14d24vm1bpa,
> > +	}, {
> >  		.compatible = "koe,tx31d200vm0baa",
> >  		.data = &koe_tx31d200vm0baa,
> >  	}, {  
> 
> 
> 
> 
> Best regards,
> 
> Lukasz Majewski
> 
> --
> 
> DENX Software Engineering GmbH,      Managing Director: Wolfgang Denk
> HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
> Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd@denx.de




Best regards,

Lukasz Majewski

--

DENX Software Engineering GmbH,      Managing Director: Wolfgang Denk
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd@denx.de

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

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

* Re: [PATCH v2] display: panel: Add KOE tx14d24vm1bpa display support (320x240)
  2018-06-29 17:05     ` Lukasz Majewski
@ 2018-07-08  8:43       ` Lukasz Majewski
  0 siblings, 0 replies; 35+ messages in thread
From: Lukasz Majewski @ 2018-07-08  8:43 UTC (permalink / raw)
  To: Thierry Reding
  Cc: Rob Herring, Mark Rutland, David Airlie, Rob Herring, dri-devel,
	devicetree, linux-kernel

[-- Attachment #1: Type: text/plain, Size: 5088 bytes --]

Hi Thierry,

> Hi Thierry,
> 
> > Hi Thierry,
> >   
> > > This commit adds support for KOE's 5.7" display.
> > > 
> > > Signed-off-by: Lukasz Majewski <lukma@denx.de>
> > > Reviewed-by: Rob Herring <robh@kernel.org>
> > > ---
> > > Changes for v2:
> > > - Add Reviewed-by tag    
> > 
> > Could you apply this patch to your tree?  
> 
> If I may gentle ping on this patch..... It is quite mature now... :-)

If I may gentle ping on this patch...

Thanks in advance,
Łukasz Majewski

> 
> Best regards,
> Łukasz
> 
> > 
> > Thanks in advance,
> > Łukasz
> >   
> > > 
> > > ---
> > >  .../bindings/display/panel/koe,tx14d24vm1bpa.txt   | 42
> > > ++++++++++++++++++++++
> > > drivers/gpu/drm/panel/panel-simple.c               | 26
> > > ++++++++++++++ 2 files changed, 68 insertions(+) create mode
> > > 100644
> > > Documentation/devicetree/bindings/display/panel/koe,tx14d24vm1bpa.txt
> > > 
> > > diff --git
> > > a/Documentation/devicetree/bindings/display/panel/koe,tx14d24vm1bpa.txt
> > > b/Documentation/devicetree/bindings/display/panel/koe,tx14d24vm1bpa.txt
> > > new file mode 100644 index 000000000000..be7ac666807b
> > > --- /dev/null +++
> > > b/Documentation/devicetree/bindings/display/panel/koe,tx14d24vm1bpa.txt
> > > @@ -0,0 +1,42 @@ +Kaohsiung Opto-Electronics Inc. 5.7" QVGA (320 x
> > > 240) TFT LCD panel +
> > > +Required properties:
> > > +- compatible: should be "koe,tx14d24vm1bpa"
> > > +- backlight: phandle of the backlight device attached to the
> > > panel +- power-supply: single regulator to provide the supply
> > > voltage +
> > > +Required nodes:
> > > +- port: Parallel port mapping to connect this display
> > > +
> > > +This panel needs single power supply voltage. Its backlight is
> > > conntrolled +via PWM signal.
> > > +
> > > +Example:
> > > +--------
> > > +
> > > +Example device-tree definition when connected to iMX53 based
> > > board +
> > > +	lcd_panel: lcd-panel {
> > > +		compatible = "koe,tx14d24vm1bpa";
> > > +		backlight = <&backlight_lcd>;
> > > +		power-supply = <&reg_3v3>;
> > > +
> > > +		port {
> > > +			lcd_panel_in: endpoint {
> > > +				remote-endpoint =
> > > <&lcd_display_out>;
> > > +			};
> > > +		};
> > > +	};
> > > +
> > > +Then one needs to extend the dispX node:
> > > +
> > > +	lcd_display: disp1 {
> > > +
> > > +		port@1 {
> > > +			reg = <1>;
> > > +
> > > +			lcd_display_out: endpoint {
> > > +				remote-endpoint =
> > > <&lcd_panel_in>;
> > > +			};
> > > +		};
> > > +	};
> > > diff --git a/drivers/gpu/drm/panel/panel-simple.c
> > > b/drivers/gpu/drm/panel/panel-simple.c index
> > > d9984bdb5bb5..103b43ce7dee 100644 ---
> > > a/drivers/gpu/drm/panel/panel-simple.c +++
> > > b/drivers/gpu/drm/panel/panel-simple.c @@ -1268,6 +1268,29 @@
> > > static const struct panel_desc innolux_zj070na_01p = { },
> > >  };
> > >  
> > > +static const struct display_timing koe_tx14d24vm1bpa_timing = {
> > > +	.pixelclock = { 5580000, 5850000, 6200000 },
> > > +	.hactive = { 320, 320, 320 },
> > > +	.hfront_porch = { 30, 30, 30 },
> > > +	.hback_porch = { 30, 30, 30 },
> > > +	.hsync_len = { 1, 5, 17 },
> > > +	.vactive = { 240, 240, 240 },
> > > +	.vfront_porch = { 6, 6, 6 },
> > > +	.vback_porch = { 5, 5, 5 },
> > > +	.vsync_len = { 1, 2, 11 },
> > > +	.flags = DISPLAY_FLAGS_DE_HIGH,
> > > +};
> > > +
> > > +static const struct panel_desc koe_tx14d24vm1bpa = {
> > > +	.timings = &koe_tx14d24vm1bpa_timing,
> > > +	.num_timings = 1,
> > > +	.bpc = 6,
> > > +	.size = {
> > > +		.width = 115,
> > > +		.height = 86,
> > > +	},
> > > +};
> > > +
> > >  static const struct display_timing koe_tx31d200vm0baa_timing = {
> > >  	.pixelclock = { 39600000, 43200000, 48000000 },
> > >  	.hactive = { 1280, 1280, 1280 },
> > > @@ -2204,6 +2227,9 @@ static const struct of_device_id
> > > platform_of_match[] = { .compatible = "innolux,zj070na-01p",
> > >  		.data = &innolux_zj070na_01p,
> > >  	}, {
> > > +		.compatible = "koe,tx14d24vm1bpa",
> > > +		.data = &koe_tx14d24vm1bpa,
> > > +	}, {
> > >  		.compatible = "koe,tx31d200vm0baa",
> > >  		.data = &koe_tx31d200vm0baa,
> > >  	}, {    
> > 
> > 
> > 
> > 
> > Best regards,
> > 
> > Lukasz Majewski
> > 
> > --
> > 
> > DENX Software Engineering GmbH,      Managing Director: Wolfgang
> > Denk HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell,
> > Germany Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email:
> > wd@denx.de  
> 
> 
> 
> 
> Best regards,
> 
> Lukasz Majewski
> 
> --
> 
> DENX Software Engineering GmbH,      Managing Director: Wolfgang Denk
> HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
> Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd@denx.de




Best regards,

Lukasz Majewski

--

DENX Software Engineering GmbH,      Managing Director: Wolfgang Denk
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd@denx.de

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

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

* [PATCH v3 1/2] dt-bindings: display/panel: Add KOE tx14d24vm1bpa display description
  2018-04-12 14:37 [PATCH] display: panel: Add KOE tx14d24vm1bpa display support (320x240) Lukasz Majewski
                   ` (2 preceding siblings ...)
  2018-05-29 15:05 ` [PATCH v2] " Lukasz Majewski
@ 2019-04-04 11:22 ` Lukasz Majewski
  2019-04-04 11:22   ` [PATCH v3 2/2] drm/panel: simple: Add KOE tx14d24vm1bpa display support (320x240) Lukasz Majewski
  2019-04-26 12:29   ` [PATCH v3 1/2] dt-bindings: display/panel: Add KOE tx14d24vm1bpa display description Lukasz Majewski
  2019-05-15 16:04 ` [PATCH v4 " Lukasz Majewski
  2019-05-15 16:06 ` [PATCH v4 2/2] drm/panel: simple: Add KOE tx14d24vm1bpa display support (320x240) Lukasz Majewski
  5 siblings, 2 replies; 35+ messages in thread
From: Lukasz Majewski @ 2019-04-04 11:22 UTC (permalink / raw)
  To: Daniel Vetter, Rob Herring, Mark Rutland, Thierry Reding, David Airlie
  Cc: dri-devel, devicetree, linux-kernel, Lukasz Majewski

This commit adds documentation entry description for KOE's 5.7" display.

Signed-off-by: Lukasz Majewski <lukma@denx.de>

---
Previous discussion (and Rob's Reviewed-by) about this patch
https://patchwork.kernel.org/patch/10339595/

Changes for v3 :
- New patch
---
 .../bindings/display/panel/koe,tx14d24vm1bpa.txt   | 42 ++++++++++++++++++++++
 1 file changed, 42 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/display/panel/koe,tx14d24vm1bpa.txt

diff --git a/Documentation/devicetree/bindings/display/panel/koe,tx14d24vm1bpa.txt b/Documentation/devicetree/bindings/display/panel/koe,tx14d24vm1bpa.txt
new file mode 100644
index 000000000000..be7ac666807b
--- /dev/null
+++ b/Documentation/devicetree/bindings/display/panel/koe,tx14d24vm1bpa.txt
@@ -0,0 +1,42 @@
+Kaohsiung Opto-Electronics Inc. 5.7" QVGA (320 x 240) TFT LCD panel
+
+Required properties:
+- compatible: should be "koe,tx14d24vm1bpa"
+- backlight: phandle of the backlight device attached to the panel
+- power-supply: single regulator to provide the supply voltage
+
+Required nodes:
+- port: Parallel port mapping to connect this display
+
+This panel needs single power supply voltage. Its backlight is conntrolled
+via PWM signal.
+
+Example:
+--------
+
+Example device-tree definition when connected to iMX53 based board
+
+	lcd_panel: lcd-panel {
+		compatible = "koe,tx14d24vm1bpa";
+		backlight = <&backlight_lcd>;
+		power-supply = <&reg_3v3>;
+
+		port {
+			lcd_panel_in: endpoint {
+				remote-endpoint = <&lcd_display_out>;
+			};
+		};
+	};
+
+Then one needs to extend the dispX node:
+
+	lcd_display: disp1 {
+
+		port@1 {
+			reg = <1>;
+
+			lcd_display_out: endpoint {
+				remote-endpoint = <&lcd_panel_in>;
+			};
+		};
+	};
-- 
2.11.0


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

* [PATCH v3 2/2] drm/panel: simple: Add KOE tx14d24vm1bpa display support (320x240)
  2019-04-04 11:22 ` [PATCH v3 1/2] dt-bindings: display/panel: Add KOE tx14d24vm1bpa display description Lukasz Majewski
@ 2019-04-04 11:22   ` Lukasz Majewski
  2019-04-26 12:29     ` Lukasz Majewski
  2019-04-26 12:29   ` [PATCH v3 1/2] dt-bindings: display/panel: Add KOE tx14d24vm1bpa display description Lukasz Majewski
  1 sibling, 1 reply; 35+ messages in thread
From: Lukasz Majewski @ 2019-04-04 11:22 UTC (permalink / raw)
  To: Daniel Vetter, Rob Herring, Mark Rutland, Thierry Reding, David Airlie
  Cc: dri-devel, devicetree, linux-kernel, Lukasz Majewski

This commit adds support for KOE's 5.7" display.

Signed-off-by: Lukasz Majewski <lukma@denx.de>
Reviewed-by: Rob Herring <robh@kernel.org>

---
Previous discussion (and Rob's Reviewed-by) about this patch
https://patchwork.kernel.org/patch/10339595/

It must have been lost during the development process, so
I do resend it now.

Changes for v3 :
- Rebase this patch on top of newest kernel (5.1-rc3):
  SHA1: 145f47c7381d43c789cbad55d4dbfd28fc6c46a4
- Split this patch to have separate Documentation entry
---
 drivers/gpu/drm/panel/panel-simple.c | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)

diff --git a/drivers/gpu/drm/panel/panel-simple.c b/drivers/gpu/drm/panel/panel-simple.c
index 9e8218f6a3f2..196c6adf8168 100644
--- a/drivers/gpu/drm/panel/panel-simple.c
+++ b/drivers/gpu/drm/panel/panel-simple.c
@@ -1549,6 +1549,29 @@ static const struct panel_desc innolux_zj070na_01p = {
 	},
 };
 
+static const struct display_timing koe_tx14d24vm1bpa_timing = {
+	.pixelclock = { 5580000, 5850000, 6200000 },
+	.hactive = { 320, 320, 320 },
+	.hfront_porch = { 30, 30, 30 },
+	.hback_porch = { 30, 30, 30 },
+	.hsync_len = { 1, 5, 17 },
+	.vactive = { 240, 240, 240 },
+	.vfront_porch = { 6, 6, 6 },
+	.vback_porch = { 5, 5, 5 },
+	.vsync_len = { 1, 2, 11 },
+	.flags = DISPLAY_FLAGS_DE_HIGH,
+};
+
+static const struct panel_desc koe_tx14d24vm1bpa = {
+	.timings = &koe_tx14d24vm1bpa_timing,
+	.num_timings = 1,
+	.bpc = 6,
+	.size = {
+		.width = 115,
+		.height = 86,
+	},
+};
+
 static const struct display_timing koe_tx31d200vm0baa_timing = {
 	.pixelclock = { 39600000, 43200000, 48000000 },
 	.hactive = { 1280, 1280, 1280 },
@@ -2680,6 +2703,9 @@ static const struct of_device_id platform_of_match[] = {
 		.compatible = "innolux,zj070na-01p",
 		.data = &innolux_zj070na_01p,
 	}, {
+		.compatible = "koe,tx14d24vm1bpa",
+		.data = &koe_tx14d24vm1bpa,
+	}, {
 		.compatible = "koe,tx31d200vm0baa",
 		.data = &koe_tx31d200vm0baa,
 	}, {
-- 
2.11.0


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

* Re: [PATCH v3 1/2] dt-bindings: display/panel: Add KOE tx14d24vm1bpa display description
  2019-04-04 11:22 ` [PATCH v3 1/2] dt-bindings: display/panel: Add KOE tx14d24vm1bpa display description Lukasz Majewski
  2019-04-04 11:22   ` [PATCH v3 2/2] drm/panel: simple: Add KOE tx14d24vm1bpa display support (320x240) Lukasz Majewski
@ 2019-04-26 12:29   ` Lukasz Majewski
  1 sibling, 0 replies; 35+ messages in thread
From: Lukasz Majewski @ 2019-04-26 12:29 UTC (permalink / raw)
  To: Daniel Vetter, Rob Herring, Mark Rutland, Thierry Reding, David Airlie
  Cc: dri-devel, devicetree, linux-kernel

[-- Attachment #1: Type: text/plain, Size: 2244 bytes --]

Dear All,

> This commit adds documentation entry description for KOE's 5.7"
> display.
> 
> Signed-off-by: Lukasz Majewski <lukma@denx.de>
> 
> ---
> Previous discussion (and Rob's Reviewed-by) about this patch
> https://patchwork.kernel.org/patch/10339595/
> 
> Changes for v3 :
> - New patch

Gentle ping on this patch...

> ---
>  .../bindings/display/panel/koe,tx14d24vm1bpa.txt   | 42
> ++++++++++++++++++++++ 1 file changed, 42 insertions(+)
>  create mode 100644
> Documentation/devicetree/bindings/display/panel/koe,tx14d24vm1bpa.txt
> 
> diff --git
> a/Documentation/devicetree/bindings/display/panel/koe,tx14d24vm1bpa.txt
> b/Documentation/devicetree/bindings/display/panel/koe,tx14d24vm1bpa.txt
> new file mode 100644 index 000000000000..be7ac666807b --- /dev/null
> +++
> b/Documentation/devicetree/bindings/display/panel/koe,tx14d24vm1bpa.txt
> @@ -0,0 +1,42 @@ +Kaohsiung Opto-Electronics Inc. 5.7" QVGA (320 x
> 240) TFT LCD panel +
> +Required properties:
> +- compatible: should be "koe,tx14d24vm1bpa"
> +- backlight: phandle of the backlight device attached to the panel
> +- power-supply: single regulator to provide the supply voltage
> +
> +Required nodes:
> +- port: Parallel port mapping to connect this display
> +
> +This panel needs single power supply voltage. Its backlight is
> conntrolled +via PWM signal.
> +
> +Example:
> +--------
> +
> +Example device-tree definition when connected to iMX53 based board
> +
> +	lcd_panel: lcd-panel {
> +		compatible = "koe,tx14d24vm1bpa";
> +		backlight = <&backlight_lcd>;
> +		power-supply = <&reg_3v3>;
> +
> +		port {
> +			lcd_panel_in: endpoint {
> +				remote-endpoint = <&lcd_display_out>;
> +			};
> +		};
> +	};
> +
> +Then one needs to extend the dispX node:
> +
> +	lcd_display: disp1 {
> +
> +		port@1 {
> +			reg = <1>;
> +
> +			lcd_display_out: endpoint {
> +				remote-endpoint = <&lcd_panel_in>;
> +			};
> +		};
> +	};




Best regards,

Lukasz Majewski

--

DENX Software Engineering GmbH,      Managing Director: Wolfgang Denk
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-59 Fax: (+49)-8142-66989-80 Email: lukma@denx.de

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

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

* Re: [PATCH v3 2/2] drm/panel: simple: Add KOE tx14d24vm1bpa display support (320x240)
  2019-04-04 11:22   ` [PATCH v3 2/2] drm/panel: simple: Add KOE tx14d24vm1bpa display support (320x240) Lukasz Majewski
@ 2019-04-26 12:29     ` Lukasz Majewski
  0 siblings, 0 replies; 35+ messages in thread
From: Lukasz Majewski @ 2019-04-26 12:29 UTC (permalink / raw)
  To: Daniel Vetter, Rob Herring, Mark Rutland, Thierry Reding, David Airlie
  Cc: dri-devel, devicetree, linux-kernel

[-- Attachment #1: Type: text/plain, Size: 2470 bytes --]

Dear All,

> This commit adds support for KOE's 5.7" display.
> 
> Signed-off-by: Lukasz Majewski <lukma@denx.de>
> Reviewed-by: Rob Herring <robh@kernel.org>
> 
> ---
> Previous discussion (and Rob's Reviewed-by) about this patch
> https://patchwork.kernel.org/patch/10339595/
> 
> It must have been lost during the development process, so
> I do resend it now.
> 
> Changes for v3 :
> - Rebase this patch on top of newest kernel (5.1-rc3):
>   SHA1: 145f47c7381d43c789cbad55d4dbfd28fc6c46a4
> - Split this patch to have separate Documentation entry

Gentle ping on this patch...

> ---
>  drivers/gpu/drm/panel/panel-simple.c | 26 ++++++++++++++++++++++++++
>  1 file changed, 26 insertions(+)
> 
> diff --git a/drivers/gpu/drm/panel/panel-simple.c
> b/drivers/gpu/drm/panel/panel-simple.c index
> 9e8218f6a3f2..196c6adf8168 100644 ---
> a/drivers/gpu/drm/panel/panel-simple.c +++
> b/drivers/gpu/drm/panel/panel-simple.c @@ -1549,6 +1549,29 @@ static
> const struct panel_desc innolux_zj070na_01p = { },
>  };
>  
> +static const struct display_timing koe_tx14d24vm1bpa_timing = {
> +	.pixelclock = { 5580000, 5850000, 6200000 },
> +	.hactive = { 320, 320, 320 },
> +	.hfront_porch = { 30, 30, 30 },
> +	.hback_porch = { 30, 30, 30 },
> +	.hsync_len = { 1, 5, 17 },
> +	.vactive = { 240, 240, 240 },
> +	.vfront_porch = { 6, 6, 6 },
> +	.vback_porch = { 5, 5, 5 },
> +	.vsync_len = { 1, 2, 11 },
> +	.flags = DISPLAY_FLAGS_DE_HIGH,
> +};
> +
> +static const struct panel_desc koe_tx14d24vm1bpa = {
> +	.timings = &koe_tx14d24vm1bpa_timing,
> +	.num_timings = 1,
> +	.bpc = 6,
> +	.size = {
> +		.width = 115,
> +		.height = 86,
> +	},
> +};
> +
>  static const struct display_timing koe_tx31d200vm0baa_timing = {
>  	.pixelclock = { 39600000, 43200000, 48000000 },
>  	.hactive = { 1280, 1280, 1280 },
> @@ -2680,6 +2703,9 @@ static const struct of_device_id
> platform_of_match[] = { .compatible = "innolux,zj070na-01p",
>  		.data = &innolux_zj070na_01p,
>  	}, {
> +		.compatible = "koe,tx14d24vm1bpa",
> +		.data = &koe_tx14d24vm1bpa,
> +	}, {
>  		.compatible = "koe,tx31d200vm0baa",
>  		.data = &koe_tx31d200vm0baa,
>  	}, {




Best regards,

Lukasz Majewski

--

DENX Software Engineering GmbH,      Managing Director: Wolfgang Denk
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-59 Fax: (+49)-8142-66989-80 Email: lukma@denx.de

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

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

* [PATCH v4 1/2] dt-bindings: display/panel: Add KOE tx14d24vm1bpa display description
  2018-04-12 14:37 [PATCH] display: panel: Add KOE tx14d24vm1bpa display support (320x240) Lukasz Majewski
                   ` (3 preceding siblings ...)
  2019-04-04 11:22 ` [PATCH v3 1/2] dt-bindings: display/panel: Add KOE tx14d24vm1bpa display description Lukasz Majewski
@ 2019-05-15 16:04 ` Lukasz Majewski
  2019-05-24 21:56     ` Rob Herring
  2019-05-25  6:54   ` Sam Ravnborg
  2019-05-15 16:06 ` [PATCH v4 2/2] drm/panel: simple: Add KOE tx14d24vm1bpa display support (320x240) Lukasz Majewski
  5 siblings, 2 replies; 35+ messages in thread
From: Lukasz Majewski @ 2019-05-15 16:04 UTC (permalink / raw)
  To: Daniel Vetter, Rob Herring, Mark Rutland, Thierry Reding, David Airlie
  Cc: dri-devel, devicetree, linux-kernel, Thierry Reding, Lukasz Majewski

This commit adds documentation entry description for KOE's 5.7" display.

Signed-off-by: Lukasz Majewski <lukma@denx.de>

---
Previous discussion (and Rob's Reviewed-by) about this patch
https://patchwork.kernel.org/patch/10339595/

Changes for v4:
- Rebase on top of newest mainline
SHA1: 5ac94332248ee017964ba368cdda4ce647e3aba7

Changes for v3 :
- New patch
---
 .../bindings/display/panel/koe,tx14d24vm1bpa.txt   | 42 ++++++++++++++++++++++
 1 file changed, 42 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/display/panel/koe,tx14d24vm1bpa.txt

diff --git a/Documentation/devicetree/bindings/display/panel/koe,tx14d24vm1bpa.txt b/Documentation/devicetree/bindings/display/panel/koe,tx14d24vm1bpa.txt
new file mode 100644
index 000000000000..be7ac666807b
--- /dev/null
+++ b/Documentation/devicetree/bindings/display/panel/koe,tx14d24vm1bpa.txt
@@ -0,0 +1,42 @@
+Kaohsiung Opto-Electronics Inc. 5.7" QVGA (320 x 240) TFT LCD panel
+
+Required properties:
+- compatible: should be "koe,tx14d24vm1bpa"
+- backlight: phandle of the backlight device attached to the panel
+- power-supply: single regulator to provide the supply voltage
+
+Required nodes:
+- port: Parallel port mapping to connect this display
+
+This panel needs single power supply voltage. Its backlight is conntrolled
+via PWM signal.
+
+Example:
+--------
+
+Example device-tree definition when connected to iMX53 based board
+
+	lcd_panel: lcd-panel {
+		compatible = "koe,tx14d24vm1bpa";
+		backlight = <&backlight_lcd>;
+		power-supply = <&reg_3v3>;
+
+		port {
+			lcd_panel_in: endpoint {
+				remote-endpoint = <&lcd_display_out>;
+			};
+		};
+	};
+
+Then one needs to extend the dispX node:
+
+	lcd_display: disp1 {
+
+		port@1 {
+			reg = <1>;
+
+			lcd_display_out: endpoint {
+				remote-endpoint = <&lcd_panel_in>;
+			};
+		};
+	};
-- 
2.11.0


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

* [PATCH v4 2/2] drm/panel: simple: Add KOE tx14d24vm1bpa display support (320x240)
  2018-04-12 14:37 [PATCH] display: panel: Add KOE tx14d24vm1bpa display support (320x240) Lukasz Majewski
                   ` (4 preceding siblings ...)
  2019-05-15 16:04 ` [PATCH v4 " Lukasz Majewski
@ 2019-05-15 16:06 ` Lukasz Majewski
  2019-05-25  6:55     ` Sam Ravnborg
  5 siblings, 1 reply; 35+ messages in thread
From: Lukasz Majewski @ 2019-05-15 16:06 UTC (permalink / raw)
  To: Daniel Vetter, Thierry Reding, David Airlie
  Cc: dri-devel, linux-kernel, Thierry Reding, Lukasz Majewski

This commit adds support for KOE's 5.7" display.

Signed-off-by: Lukasz Majewski <lukma@denx.de>
Reviewed-by: Rob Herring <robh@kernel.org>

---
Previous discussion (and Rob's Reviewed-by) about this patch
https://patchwork.kernel.org/patch/10339595/

It must have been lost during the development process, so
I do resend it now.

Changes for v4:
- Rebase on top of newest mainline (no functional changes)
SHA1: 5ac94332248ee017964ba368cdda4ce647e3aba7

Changes for v3 :
- Rebase this patch on top of newest kernel (5.1-rc3):
  SHA1: 145f47c7381d43c789cbad55d4dbfd28fc6c46a4
- Split this patch to have separate Documentation entry
---
 drivers/gpu/drm/panel/panel-simple.c | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)

diff --git a/drivers/gpu/drm/panel/panel-simple.c b/drivers/gpu/drm/panel/panel-simple.c
index 569be4efd8d1..c3e5900b04fa 100644
--- a/drivers/gpu/drm/panel/panel-simple.c
+++ b/drivers/gpu/drm/panel/panel-simple.c
@@ -1549,6 +1549,29 @@ static const struct panel_desc innolux_zj070na_01p = {
 	},
 };
 
+static const struct display_timing koe_tx14d24vm1bpa_timing = {
+	.pixelclock = { 5580000, 5850000, 6200000 },
+	.hactive = { 320, 320, 320 },
+	.hfront_porch = { 30, 30, 30 },
+	.hback_porch = { 30, 30, 30 },
+	.hsync_len = { 1, 5, 17 },
+	.vactive = { 240, 240, 240 },
+	.vfront_porch = { 6, 6, 6 },
+	.vback_porch = { 5, 5, 5 },
+	.vsync_len = { 1, 2, 11 },
+	.flags = DISPLAY_FLAGS_DE_HIGH,
+};
+
+static const struct panel_desc koe_tx14d24vm1bpa = {
+	.timings = &koe_tx14d24vm1bpa_timing,
+	.num_timings = 1,
+	.bpc = 6,
+	.size = {
+		.width = 115,
+		.height = 86,
+	},
+};
+
 static const struct display_timing koe_tx31d200vm0baa_timing = {
 	.pixelclock = { 39600000, 43200000, 48000000 },
 	.hactive = { 1280, 1280, 1280 },
@@ -2706,6 +2729,9 @@ static const struct of_device_id platform_of_match[] = {
 		.compatible = "innolux,zj070na-01p",
 		.data = &innolux_zj070na_01p,
 	}, {
+		.compatible = "koe,tx14d24vm1bpa",
+		.data = &koe_tx14d24vm1bpa,
+	}, {
 		.compatible = "koe,tx31d200vm0baa",
 		.data = &koe_tx31d200vm0baa,
 	}, {
-- 
2.11.0


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

* Re: [PATCH v4 1/2] dt-bindings: display/panel: Add KOE tx14d24vm1bpa display description
  2019-05-15 16:04 ` [PATCH v4 " Lukasz Majewski
@ 2019-05-24 21:56     ` Rob Herring
  2019-05-25  6:54   ` Sam Ravnborg
  1 sibling, 0 replies; 35+ messages in thread
From: Rob Herring @ 2019-05-24 21:56 UTC (permalink / raw)
  To: Lukasz Majewski
  Cc: Daniel Vetter, Mark Rutland, Thierry Reding, David Airlie,
	dri-devel, devicetree, linux-kernel, Thierry Reding,
	Lukasz Majewski

On Wed, 15 May 2019 18:04:28 +0200, Lukasz Majewski wrote:
> This commit adds documentation entry description for KOE's 5.7" display.
> 
> Signed-off-by: Lukasz Majewski <lukma@denx.de>
> 
> ---
> Previous discussion (and Rob's Reviewed-by) about this patch
> https://patchwork.kernel.org/patch/10339595/
> 
> Changes for v4:
> - Rebase on top of newest mainline
> SHA1: 5ac94332248ee017964ba368cdda4ce647e3aba7
> 
> Changes for v3 :
> - New patch
> ---
>  .../bindings/display/panel/koe,tx14d24vm1bpa.txt   | 42 ++++++++++++++++++++++
>  1 file changed, 42 insertions(+)
>  create mode 100644 Documentation/devicetree/bindings/display/panel/koe,tx14d24vm1bpa.txt
> 

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

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

* Re: [PATCH v4 1/2] dt-bindings: display/panel: Add KOE tx14d24vm1bpa display description
@ 2019-05-24 21:56     ` Rob Herring
  0 siblings, 0 replies; 35+ messages in thread
From: Rob Herring @ 2019-05-24 21:56 UTC (permalink / raw)
  Cc: Daniel Vetter, Mark Rutland, Thierry Reding, David Airlie,
	dri-devel, devicetree, linux-kernel, Thierry Reding,
	Lukasz Majewski

On Wed, 15 May 2019 18:04:28 +0200, Lukasz Majewski wrote:
> This commit adds documentation entry description for KOE's 5.7" display.
> 
> Signed-off-by: Lukasz Majewski <lukma@denx.de>
> 
> ---
> Previous discussion (and Rob's Reviewed-by) about this patch
> https://patchwork.kernel.org/patch/10339595/
> 
> Changes for v4:
> - Rebase on top of newest mainline
> SHA1: 5ac94332248ee017964ba368cdda4ce647e3aba7
> 
> Changes for v3 :
> - New patch
> ---
>  .../bindings/display/panel/koe,tx14d24vm1bpa.txt   | 42 ++++++++++++++++++++++
>  1 file changed, 42 insertions(+)
>  create mode 100644 Documentation/devicetree/bindings/display/panel/koe,tx14d24vm1bpa.txt
> 

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

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

* Re: [PATCH v4 1/2] dt-bindings: display/panel: Add KOE tx14d24vm1bpa display description
  2019-05-15 16:04 ` [PATCH v4 " Lukasz Majewski
  2019-05-24 21:56     ` Rob Herring
@ 2019-05-25  6:54   ` Sam Ravnborg
  1 sibling, 0 replies; 35+ messages in thread
From: Sam Ravnborg @ 2019-05-25  6:54 UTC (permalink / raw)
  To: Lukasz Majewski
  Cc: Daniel Vetter, Rob Herring, Mark Rutland, Thierry Reding,
	David Airlie, devicetree, Thierry Reding, linux-kernel,
	dri-devel

On Wed, May 15, 2019 at 06:04:28PM +0200, Lukasz Majewski wrote:
> This commit adds documentation entry description for KOE's 5.7" display.
> 
> Signed-off-by: Lukasz Majewski <lukma@denx.de>

Thanks, applied

	Sam

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

* Re: [PATCH v4 2/2] drm/panel: simple: Add KOE tx14d24vm1bpa display support (320x240)
  2019-05-15 16:06 ` [PATCH v4 2/2] drm/panel: simple: Add KOE tx14d24vm1bpa display support (320x240) Lukasz Majewski
@ 2019-05-25  6:55     ` Sam Ravnborg
  0 siblings, 0 replies; 35+ messages in thread
From: Sam Ravnborg @ 2019-05-25  6:55 UTC (permalink / raw)
  To: Lukasz Majewski
  Cc: Daniel Vetter, Thierry Reding, David Airlie, Thierry Reding,
	linux-kernel, dri-devel

On Wed, May 15, 2019 at 06:06:12PM +0200, Lukasz Majewski wrote:
> This commit adds support for KOE's 5.7" display.
> 
> Signed-off-by: Lukasz Majewski <lukma@denx.de>
> Reviewed-by: Rob Herring <robh@kernel.org>

Thanks, applied.

	Sam

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

* Re: [PATCH v4 2/2] drm/panel: simple: Add KOE tx14d24vm1bpa display support (320x240)
@ 2019-05-25  6:55     ` Sam Ravnborg
  0 siblings, 0 replies; 35+ messages in thread
From: Sam Ravnborg @ 2019-05-25  6:55 UTC (permalink / raw)
  To: Lukasz Majewski
  Cc: David Airlie, linux-kernel, dri-devel, Thierry Reding, Thierry Reding

On Wed, May 15, 2019 at 06:06:12PM +0200, Lukasz Majewski wrote:
> This commit adds support for KOE's 5.7" display.
> 
> Signed-off-by: Lukasz Majewski <lukma@denx.de>
> Reviewed-by: Rob Herring <robh@kernel.org>

Thanks, applied.

	Sam
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel

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

end of thread, other threads:[~2019-05-25  6:55 UTC | newest]

Thread overview: 35+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-04-12 14:37 [PATCH] display: panel: Add KOE tx14d24vm1bpa display support (320x240) Lukasz Majewski
2018-04-16 19:24 ` Rob Herring
2018-04-16 19:24   ` Rob Herring
2018-05-04 10:28   ` Lukasz Majewski
2018-05-10 14:22     ` Rob Herring
2018-05-10 14:22       ` Rob Herring
2018-05-11 15:04       ` Lukasz Majewski
2018-05-09 15:43 ` [PATCH RESEND] " Lukasz Majewski
2018-05-10 14:24   ` Rob Herring
2018-05-10 14:24     ` Rob Herring
2018-05-19 11:05   ` Lukasz Majewski
2018-05-28  7:55     ` Lukasz Majewski
2018-05-29 14:30       ` Thierry Reding
2018-05-29 14:30         ` Thierry Reding
2018-05-29 15:01         ` Lukasz Majewski
2018-05-29 15:22           ` Thierry Reding
2018-05-29 15:22             ` Thierry Reding
2018-05-29 15:33             ` Lukasz Majewski
2018-05-29 16:12               ` Thierry Reding
2018-05-29 16:12                 ` Thierry Reding
2018-05-29 15:05 ` [PATCH v2] " Lukasz Majewski
2018-06-22  8:56   ` Lukasz Majewski
2018-06-29 17:05     ` Lukasz Majewski
2018-07-08  8:43       ` Lukasz Majewski
2019-04-04 11:22 ` [PATCH v3 1/2] dt-bindings: display/panel: Add KOE tx14d24vm1bpa display description Lukasz Majewski
2019-04-04 11:22   ` [PATCH v3 2/2] drm/panel: simple: Add KOE tx14d24vm1bpa display support (320x240) Lukasz Majewski
2019-04-26 12:29     ` Lukasz Majewski
2019-04-26 12:29   ` [PATCH v3 1/2] dt-bindings: display/panel: Add KOE tx14d24vm1bpa display description Lukasz Majewski
2019-05-15 16:04 ` [PATCH v4 " Lukasz Majewski
2019-05-24 21:56   ` Rob Herring
2019-05-24 21:56     ` Rob Herring
2019-05-25  6:54   ` Sam Ravnborg
2019-05-15 16:06 ` [PATCH v4 2/2] drm/panel: simple: Add KOE tx14d24vm1bpa display support (320x240) Lukasz Majewski
2019-05-25  6:55   ` Sam Ravnborg
2019-05-25  6:55     ` Sam Ravnborg

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.