All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/2] devicetree: add vendor prefix for Kyocera Corporation
@ 2015-12-02 18:41 Lucas Stach
  2015-12-02 18:41 ` [PATCH 2/2] drm/panel: simple: Add support for Kyocera TCG121XGLP panel Lucas Stach
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: Lucas Stach @ 2015-12-02 18:41 UTC (permalink / raw)
  To: Thierry Reding, Rob Herring; +Cc: devicetree, kernel, dri-devel, patchwork-lst

KYO is the stock ticker symbol of Kyocera Corporation.

Signed-off-by: Lucas Stach <l.stach@pengutronix.de>
---
 Documentation/devicetree/bindings/vendor-prefixes.txt | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/devicetree/bindings/vendor-prefixes.txt b/Documentation/devicetree/bindings/vendor-prefixes.txt
index 55df1d444e9f..7c6464c1f9f1 100644
--- a/Documentation/devicetree/bindings/vendor-prefixes.txt
+++ b/Documentation/devicetree/bindings/vendor-prefixes.txt
@@ -123,6 +123,7 @@ jedec	JEDEC Solid State Technology Association
 karo	Ka-Ro electronics GmbH
 keymile	Keymile GmbH
 kinetic Kinetic Technologies
+kyo	Kyocera Corporation
 lacie	LaCie
 lantiq	Lantiq Semiconductor
 lenovo	Lenovo Group Ltd.
-- 
2.6.2

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

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

* [PATCH 2/2] drm/panel: simple: Add support for Kyocera TCG121XGLP panel
  2015-12-02 18:41 [PATCH 1/2] devicetree: add vendor prefix for Kyocera Corporation Lucas Stach
@ 2015-12-02 18:41 ` Lucas Stach
  2015-12-04 14:55   ` Rob Herring
       [not found]   ` <1449081671-25327-2-git-send-email-l.stach-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org>
  2015-12-04 14:54 ` [PATCH 1/2] devicetree: add vendor prefix for Kyocera Corporation Rob Herring
       [not found] ` <1449081671-25327-1-git-send-email-l.stach-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org>
  2 siblings, 2 replies; 6+ messages in thread
From: Lucas Stach @ 2015-12-02 18:41 UTC (permalink / raw)
  To: Thierry Reding, Rob Herring; +Cc: devicetree, kernel, dri-devel, patchwork-lst

The Kyocera TCG121XGLP panel is an XGA LCD TFT panel connected through
LVDS, which can be supported by the simple panel driver.

Signed-off-by: Lucas Stach <l.stach@pengutronix.de>
---
 .../bindings/display/panel/kyo,tcg121xglp.txt      |  7 ++++++
 drivers/gpu/drm/panel/panel-simple.c               | 27 ++++++++++++++++++++++
 2 files changed, 34 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/display/panel/kyo,tcg121xglp.txt

diff --git a/Documentation/devicetree/bindings/display/panel/kyo,tcg121xglp.txt b/Documentation/devicetree/bindings/display/panel/kyo,tcg121xglp.txt
new file mode 100644
index 000000000000..a8e940fe731e
--- /dev/null
+++ b/Documentation/devicetree/bindings/display/panel/kyo,tcg121xglp.txt
@@ -0,0 +1,7 @@
+Kyocera Corporation 12.1" XGA (1024x768) TFT LCD panel
+
+Required properties:
+- compatible: should be "kyo,tcg121xglp"
+
+This binding is compatible with the simple-panel binding, which is specified
+in simple-panel.txt in this directory.
diff --git a/drivers/gpu/drm/panel/panel-simple.c b/drivers/gpu/drm/panel/panel-simple.c
index f97b73ec4713..1476bb90ac14 100644
--- a/drivers/gpu/drm/panel/panel-simple.c
+++ b/drivers/gpu/drm/panel/panel-simple.c
@@ -902,6 +902,30 @@ static const struct panel_desc innolux_zj070na_01p = {
 	},
 };
 
+static const struct display_timing kyo_tcg121xglp_timing = {
+	.pixelclock = { 52000000, 65000000, 71000000 },
+	.hactive = { 1024, 1024, 1024 },
+	.hfront_porch = { 2, 2, 2 },
+	.hback_porch = { 2, 2, 2 },
+	.hsync_len = { 86, 124, 244 },
+	.vactive = { 768, 768, 768 },
+	.vfront_porch = { 2, 2, 2 },
+	.vback_porch = { 2, 2, 2 },
+	.vsync_len = { 6, 34, 73 },
+	.flags = DISPLAY_FLAGS_DE_HIGH,
+};
+
+static const struct panel_desc kyo_tcg121xglp = {
+	.timings = &kyo_tcg121xglp_timing,
+	.num_timings = 1,
+	.bpc = 8,
+	.size = {
+		.width = 246,
+		.height = 184,
+	},
+	.bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
+};
+
 static const struct drm_display_mode lg_lb070wv8_mode = {
 	.clock = 33246,
 	.hdisplay = 800,
@@ -1167,6 +1191,9 @@ static const struct of_device_id platform_of_match[] = {
 		.compatible = "innolux,zj070na-01p",
 		.data = &innolux_zj070na_01p,
 	}, {
+		.compatible = "kyo,tcg121xglp",
+		.data = &kyo_tcg121xglp,
+	}, {
 		.compatible = "lg,lb070wv8",
 		.data = &lg_lb070wv8,
 	}, {
-- 
2.6.2

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

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

* Re: [PATCH 1/2] devicetree: add vendor prefix for Kyocera Corporation
  2015-12-02 18:41 [PATCH 1/2] devicetree: add vendor prefix for Kyocera Corporation Lucas Stach
  2015-12-02 18:41 ` [PATCH 2/2] drm/panel: simple: Add support for Kyocera TCG121XGLP panel Lucas Stach
@ 2015-12-04 14:54 ` Rob Herring
       [not found] ` <1449081671-25327-1-git-send-email-l.stach-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org>
  2 siblings, 0 replies; 6+ messages in thread
From: Rob Herring @ 2015-12-04 14:54 UTC (permalink / raw)
  To: Lucas Stach; +Cc: devicetree, kernel, dri-devel, patchwork-lst

On Wed, Dec 02, 2015 at 07:41:10PM +0100, Lucas Stach wrote:
> KYO is the stock ticker symbol of Kyocera Corporation.
> 
> Signed-off-by: Lucas Stach <l.stach@pengutronix.de>

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

> ---
>  Documentation/devicetree/bindings/vendor-prefixes.txt | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/Documentation/devicetree/bindings/vendor-prefixes.txt b/Documentation/devicetree/bindings/vendor-prefixes.txt
> index 55df1d444e9f..7c6464c1f9f1 100644
> --- a/Documentation/devicetree/bindings/vendor-prefixes.txt
> +++ b/Documentation/devicetree/bindings/vendor-prefixes.txt
> @@ -123,6 +123,7 @@ jedec	JEDEC Solid State Technology Association
>  karo	Ka-Ro electronics GmbH
>  keymile	Keymile GmbH
>  kinetic Kinetic Technologies
> +kyo	Kyocera Corporation
>  lacie	LaCie
>  lantiq	Lantiq Semiconductor
>  lenovo	Lenovo Group Ltd.
> -- 
> 2.6.2
> 
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel

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

* Re: [PATCH 2/2] drm/panel: simple: Add support for Kyocera TCG121XGLP panel
  2015-12-02 18:41 ` [PATCH 2/2] drm/panel: simple: Add support for Kyocera TCG121XGLP panel Lucas Stach
@ 2015-12-04 14:55   ` Rob Herring
       [not found]   ` <1449081671-25327-2-git-send-email-l.stach-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org>
  1 sibling, 0 replies; 6+ messages in thread
From: Rob Herring @ 2015-12-04 14:55 UTC (permalink / raw)
  To: Lucas Stach; +Cc: devicetree, kernel, dri-devel, patchwork-lst

On Wed, Dec 02, 2015 at 07:41:11PM +0100, Lucas Stach wrote:
> The Kyocera TCG121XGLP panel is an XGA LCD TFT panel connected through
> LVDS, which can be supported by the simple panel driver.
> 
> Signed-off-by: Lucas Stach <l.stach@pengutronix.de>

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

> ---
>  .../bindings/display/panel/kyo,tcg121xglp.txt      |  7 ++++++
>  drivers/gpu/drm/panel/panel-simple.c               | 27 ++++++++++++++++++++++
>  2 files changed, 34 insertions(+)
>  create mode 100644 Documentation/devicetree/bindings/display/panel/kyo,tcg121xglp.txt
> 
> diff --git a/Documentation/devicetree/bindings/display/panel/kyo,tcg121xglp.txt b/Documentation/devicetree/bindings/display/panel/kyo,tcg121xglp.txt
> new file mode 100644
> index 000000000000..a8e940fe731e
> --- /dev/null
> +++ b/Documentation/devicetree/bindings/display/panel/kyo,tcg121xglp.txt
> @@ -0,0 +1,7 @@
> +Kyocera Corporation 12.1" XGA (1024x768) TFT LCD panel
> +
> +Required properties:
> +- compatible: should be "kyo,tcg121xglp"
> +
> +This binding is compatible with the simple-panel binding, which is specified
> +in simple-panel.txt in this directory.
> diff --git a/drivers/gpu/drm/panel/panel-simple.c b/drivers/gpu/drm/panel/panel-simple.c
> index f97b73ec4713..1476bb90ac14 100644
> --- a/drivers/gpu/drm/panel/panel-simple.c
> +++ b/drivers/gpu/drm/panel/panel-simple.c
> @@ -902,6 +902,30 @@ static const struct panel_desc innolux_zj070na_01p = {
>  	},
>  };
>  
> +static const struct display_timing kyo_tcg121xglp_timing = {
> +	.pixelclock = { 52000000, 65000000, 71000000 },
> +	.hactive = { 1024, 1024, 1024 },
> +	.hfront_porch = { 2, 2, 2 },
> +	.hback_porch = { 2, 2, 2 },
> +	.hsync_len = { 86, 124, 244 },
> +	.vactive = { 768, 768, 768 },
> +	.vfront_porch = { 2, 2, 2 },
> +	.vback_porch = { 2, 2, 2 },
> +	.vsync_len = { 6, 34, 73 },
> +	.flags = DISPLAY_FLAGS_DE_HIGH,
> +};
> +
> +static const struct panel_desc kyo_tcg121xglp = {
> +	.timings = &kyo_tcg121xglp_timing,
> +	.num_timings = 1,
> +	.bpc = 8,
> +	.size = {
> +		.width = 246,
> +		.height = 184,
> +	},
> +	.bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
> +};
> +
>  static const struct drm_display_mode lg_lb070wv8_mode = {
>  	.clock = 33246,
>  	.hdisplay = 800,
> @@ -1167,6 +1191,9 @@ static const struct of_device_id platform_of_match[] = {
>  		.compatible = "innolux,zj070na-01p",
>  		.data = &innolux_zj070na_01p,
>  	}, {
> +		.compatible = "kyo,tcg121xglp",
> +		.data = &kyo_tcg121xglp,
> +	}, {
>  		.compatible = "lg,lb070wv8",
>  		.data = &lg_lb070wv8,
>  	}, {
> -- 
> 2.6.2
> 
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel

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

* Re: [PATCH 2/2] drm/panel: simple: Add support for Kyocera TCG121XGLP panel
       [not found]   ` <1449081671-25327-2-git-send-email-l.stach-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org>
@ 2015-12-15 17:10     ` Lucas Stach
  0 siblings, 0 replies; 6+ messages in thread
From: Lucas Stach @ 2015-12-15 17:10 UTC (permalink / raw)
  To: Thierry Reding
  Cc: Rob Herring, devicetree-u79uwXL29TY76Z2rM5mHXA,
	kernel-bIcnvbaLZ9MEGnE8C9+IrQ,
	dri-devel-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW,
	patchwork-lst-bIcnvbaLZ9MEGnE8C9+IrQ

This has been on the list for 2 weeks without a reaction, so please
consider this a friendly ping.

Regards,
Lucas

Am Mittwoch, den 02.12.2015, 19:41 +0100 schrieb Lucas Stach:
> The Kyocera TCG121XGLP panel is an XGA LCD TFT panel connected through
> LVDS, which can be supported by the simple panel driver.
> 
> Signed-off-by: Lucas Stach <l.stach-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org>
> ---
>  .../bindings/display/panel/kyo,tcg121xglp.txt      |  7 ++++++
>  drivers/gpu/drm/panel/panel-simple.c               | 27 ++++++++++++++++++++++
>  2 files changed, 34 insertions(+)
>  create mode 100644 Documentation/devicetree/bindings/display/panel/kyo,tcg121xglp.txt
> 
> diff --git a/Documentation/devicetree/bindings/display/panel/kyo,tcg121xglp.txt b/Documentation/devicetree/bindings/display/panel/kyo,tcg121xglp.txt
> new file mode 100644
> index 000000000000..a8e940fe731e
> --- /dev/null
> +++ b/Documentation/devicetree/bindings/display/panel/kyo,tcg121xglp.txt
> @@ -0,0 +1,7 @@
> +Kyocera Corporation 12.1" XGA (1024x768) TFT LCD panel
> +
> +Required properties:
> +- compatible: should be "kyo,tcg121xglp"
> +
> +This binding is compatible with the simple-panel binding, which is specified
> +in simple-panel.txt in this directory.
> diff --git a/drivers/gpu/drm/panel/panel-simple.c b/drivers/gpu/drm/panel/panel-simple.c
> index f97b73ec4713..1476bb90ac14 100644
> --- a/drivers/gpu/drm/panel/panel-simple.c
> +++ b/drivers/gpu/drm/panel/panel-simple.c
> @@ -902,6 +902,30 @@ static const struct panel_desc innolux_zj070na_01p = {
>  	},
>  };
>  
> +static const struct display_timing kyo_tcg121xglp_timing = {
> +	.pixelclock = { 52000000, 65000000, 71000000 },
> +	.hactive = { 1024, 1024, 1024 },
> +	.hfront_porch = { 2, 2, 2 },
> +	.hback_porch = { 2, 2, 2 },
> +	.hsync_len = { 86, 124, 244 },
> +	.vactive = { 768, 768, 768 },
> +	.vfront_porch = { 2, 2, 2 },
> +	.vback_porch = { 2, 2, 2 },
> +	.vsync_len = { 6, 34, 73 },
> +	.flags = DISPLAY_FLAGS_DE_HIGH,
> +};
> +
> +static const struct panel_desc kyo_tcg121xglp = {
> +	.timings = &kyo_tcg121xglp_timing,
> +	.num_timings = 1,
> +	.bpc = 8,
> +	.size = {
> +		.width = 246,
> +		.height = 184,
> +	},
> +	.bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
> +};
> +
>  static const struct drm_display_mode lg_lb070wv8_mode = {
>  	.clock = 33246,
>  	.hdisplay = 800,
> @@ -1167,6 +1191,9 @@ static const struct of_device_id platform_of_match[] = {
>  		.compatible = "innolux,zj070na-01p",
>  		.data = &innolux_zj070na_01p,
>  	}, {
> +		.compatible = "kyo,tcg121xglp",
> +		.data = &kyo_tcg121xglp,
> +	}, {
>  		.compatible = "lg,lb070wv8",
>  		.data = &lg_lb070wv8,
>  	}, {

-- 
Pengutronix e.K.             | Lucas Stach                 |
Industrial Linux Solutions   | http://www.pengutronix.de/  |

--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

* Re: [PATCH 1/2] devicetree: add vendor prefix for Kyocera Corporation
       [not found] ` <1449081671-25327-1-git-send-email-l.stach-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org>
@ 2015-12-16 15:15   ` Thierry Reding
  0 siblings, 0 replies; 6+ messages in thread
From: Thierry Reding @ 2015-12-16 15:15 UTC (permalink / raw)
  To: Lucas Stach
  Cc: Rob Herring, dri-devel-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW,
	devicetree-u79uwXL29TY76Z2rM5mHXA, kernel-bIcnvbaLZ9MEGnE8C9+IrQ,
	patchwork-lst-bIcnvbaLZ9MEGnE8C9+IrQ

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

On Wed, Dec 02, 2015 at 07:41:10PM +0100, Lucas Stach wrote:
> KYO is the stock ticker symbol of Kyocera Corporation.
> 
> Signed-off-by: Lucas Stach <l.stach-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org>
> ---
>  Documentation/devicetree/bindings/vendor-prefixes.txt | 1 +
>  1 file changed, 1 insertion(+)

Both patches applied, thanks.

Thierry

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

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

end of thread, other threads:[~2015-12-16 15:15 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-12-02 18:41 [PATCH 1/2] devicetree: add vendor prefix for Kyocera Corporation Lucas Stach
2015-12-02 18:41 ` [PATCH 2/2] drm/panel: simple: Add support for Kyocera TCG121XGLP panel Lucas Stach
2015-12-04 14:55   ` Rob Herring
     [not found]   ` <1449081671-25327-2-git-send-email-l.stach-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org>
2015-12-15 17:10     ` Lucas Stach
2015-12-04 14:54 ` [PATCH 1/2] devicetree: add vendor prefix for Kyocera Corporation Rob Herring
     [not found] ` <1449081671-25327-1-git-send-email-l.stach-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org>
2015-12-16 15:15   ` Thierry Reding

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.