* [PATCH 1/2] of: Add vendor prefix for Giantplus Technology Co., Ltd. @ 2014-11-19 9:29 Lucas Stach 2014-11-19 9:29 ` [PATCH 2/2] drm/panel: Add support for Giantplus GPG482739QS5 panel Lucas Stach [not found] ` <1416389395-15152-1-git-send-email-l.stach-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org> 0 siblings, 2 replies; 5+ messages in thread From: Lucas Stach @ 2014-11-19 9:29 UTC (permalink / raw) To: Thierry Reding; +Cc: devicetree, Rob Herring, kernel, dri-devel From: Philipp Zabel <philipp.zabel@gmail.com> Signed-off-by: Philipp Zabel <philipp.zabel@gmail.com> 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 0b2fc732f1f3..c678ee63e91c 100644 --- a/Documentation/devicetree/bindings/vendor-prefixes.txt +++ b/Documentation/devicetree/bindings/vendor-prefixes.txt @@ -59,6 +59,7 @@ fsl Freescale Semiconductor GEFanuc GE Fanuc Intelligent Platforms Embedded Systems, Inc. gef GE Fanuc Intelligent Platforms Embedded Systems, Inc. geniatech Geniatech, Inc. +giantplus Giantplus Technology Co., Ltd. globalscale Globalscale Technologies, Inc. gmt Global Mixed-mode Technology, Inc. google Google, Inc. -- 2.1.1 _______________________________________________ dri-devel mailing list dri-devel@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/dri-devel ^ permalink raw reply related [flat|nested] 5+ messages in thread
* [PATCH 2/2] drm/panel: Add support for Giantplus GPG482739QS5 panel 2014-11-19 9:29 [PATCH 1/2] of: Add vendor prefix for Giantplus Technology Co., Ltd Lucas Stach @ 2014-11-19 9:29 ` Lucas Stach 2014-12-01 11:07 ` Lucas Stach [not found] ` <1416389395-15152-1-git-send-email-l.stach-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org> 1 sibling, 1 reply; 5+ messages in thread From: Lucas Stach @ 2014-11-19 9:29 UTC (permalink / raw) To: Thierry Reding; +Cc: devicetree, Rob Herring, kernel, dri-devel From: Philipp Zabel <philipp.zabel@gmail.com> This patch adds support for the GiantPlus GPG48273QS5 4.3" WQVGA TFT LCD panel to the simple-panel driver. This panel is connected via a parallel bus and uses both HSYNC and VSYNC, whose lengths are unfortunately not clearly defined. The datasheet only specifies the front- and backporch length, but the timing diagram suggests that both sync signals should be asserted for exactly one clock cycle. Signed-off-by: Philipp Zabel <philipp.zabel@gmail.com> Signed-off-by: Lucas Stach <l.stach@pengutronix.de> --- [lst]: rebased on top of drm/panel/for-next + added commit message --- .../bindings/panel/giantplus,gpg482739qs5.txt | 7 ++++++ drivers/gpu/drm/panel/panel-simple.c | 26 ++++++++++++++++++++++ 2 files changed, 33 insertions(+) create mode 100644 Documentation/devicetree/bindings/panel/giantplus,gpg482739qs5.txt diff --git a/Documentation/devicetree/bindings/panel/giantplus,gpg482739qs5.txt b/Documentation/devicetree/bindings/panel/giantplus,gpg482739qs5.txt new file mode 100644 index 000000000000..24b0b624434b --- /dev/null +++ b/Documentation/devicetree/bindings/panel/giantplus,gpg482739qs5.txt @@ -0,0 +1,7 @@ +GiantPlus GPG48273QS5 4.3" (480x272) WQVGA TFT LCD panel + +Required properties: +- compatible: should be "giantplus,gpg48273qs5" + +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 c4b6167a8bf3..1d8ed2062841 100644 --- a/drivers/gpu/drm/panel/panel-simple.c +++ b/drivers/gpu/drm/panel/panel-simple.c @@ -560,6 +560,29 @@ static const struct panel_desc foxlink_fl500wvr00_a0t = { }, }; +static const struct drm_display_mode giantplus_gpg482739qs5_mode = { + .clock = 9000, + .hdisplay = 480, + .hsync_start = 480 + 5, + .hsync_end = 480 + 5 + 1, + .htotal = 480 + 5 + 1 + 40, + .vdisplay = 272, + .vsync_start = 272 + 8, + .vsync_end = 272 + 8 + 1, + .vtotal = 272 + 8 + 1 + 8, + .vrefresh = 60, +}; + +static const struct panel_desc giantplus_gpg482739qs5 = { + .modes = &giantplus_gpg482739qs5_mode, + .num_modes = 1, + .bpc = 8, + .size = { + .width = 95, + .height = 54, + }, +}; + static const struct drm_display_mode hannstar_hsd070pww1_mode = { .clock = 71100, .hdisplay = 1280, @@ -757,6 +780,9 @@ static const struct of_device_id platform_of_match[] = { .compatible = "foxlink,fl500wvr00-a0t", .data = &foxlink_fl500wvr00_a0t, }, { + .compatible = "giantplus,gpg482739qs5", + .data = &giantplus_gpg482739qs5 + }, { .compatible = "hannstar,hsd070pww1", .data = &hannstar_hsd070pww1, }, { -- 2.1.1 _______________________________________________ dri-devel mailing list dri-devel@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/dri-devel ^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH 2/2] drm/panel: Add support for Giantplus GPG482739QS5 panel 2014-11-19 9:29 ` [PATCH 2/2] drm/panel: Add support for Giantplus GPG482739QS5 panel Lucas Stach @ 2014-12-01 11:07 ` Lucas Stach 2014-12-04 13:16 ` Thierry Reding 0 siblings, 1 reply; 5+ messages in thread From: Lucas Stach @ 2014-12-01 11:07 UTC (permalink / raw) To: Thierry Reding; +Cc: devicetree, Rob Herring, kernel, dri-devel Hi Thierry, just a gentle ping for those 2 patches. It would be nice if you could pick them up, so they can go into the next mergewindow. Regards, Lucas Am Mittwoch, den 19.11.2014, 10:29 +0100 schrieb Lucas Stach: > From: Philipp Zabel <philipp.zabel@gmail.com> > > This patch adds support for the GiantPlus GPG48273QS5 4.3" WQVGA TFT LCD panel > to the simple-panel driver. > > This panel is connected via a parallel bus and uses both HSYNC and VSYNC, > whose lengths are unfortunately not clearly defined. The datasheet only > specifies the front- and backporch length, but the timing diagram suggests > that both sync signals should be asserted for exactly one clock cycle. > > Signed-off-by: Philipp Zabel <philipp.zabel@gmail.com> > Signed-off-by: Lucas Stach <l.stach@pengutronix.de> > --- > [lst]: rebased on top of drm/panel/for-next + added commit message > --- > .../bindings/panel/giantplus,gpg482739qs5.txt | 7 ++++++ > drivers/gpu/drm/panel/panel-simple.c | 26 ++++++++++++++++++++++ > 2 files changed, 33 insertions(+) > create mode 100644 Documentation/devicetree/bindings/panel/giantplus,gpg482739qs5.txt > > diff --git a/Documentation/devicetree/bindings/panel/giantplus,gpg482739qs5.txt b/Documentation/devicetree/bindings/panel/giantplus,gpg482739qs5.txt > new file mode 100644 > index 000000000000..24b0b624434b > --- /dev/null > +++ b/Documentation/devicetree/bindings/panel/giantplus,gpg482739qs5.txt > @@ -0,0 +1,7 @@ > +GiantPlus GPG48273QS5 4.3" (480x272) WQVGA TFT LCD panel > + > +Required properties: > +- compatible: should be "giantplus,gpg48273qs5" > + > +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 c4b6167a8bf3..1d8ed2062841 100644 > --- a/drivers/gpu/drm/panel/panel-simple.c > +++ b/drivers/gpu/drm/panel/panel-simple.c > @@ -560,6 +560,29 @@ static const struct panel_desc foxlink_fl500wvr00_a0t = { > }, > }; > > +static const struct drm_display_mode giantplus_gpg482739qs5_mode = { > + .clock = 9000, > + .hdisplay = 480, > + .hsync_start = 480 + 5, > + .hsync_end = 480 + 5 + 1, > + .htotal = 480 + 5 + 1 + 40, > + .vdisplay = 272, > + .vsync_start = 272 + 8, > + .vsync_end = 272 + 8 + 1, > + .vtotal = 272 + 8 + 1 + 8, > + .vrefresh = 60, > +}; > + > +static const struct panel_desc giantplus_gpg482739qs5 = { > + .modes = &giantplus_gpg482739qs5_mode, > + .num_modes = 1, > + .bpc = 8, > + .size = { > + .width = 95, > + .height = 54, > + }, > +}; > + > static const struct drm_display_mode hannstar_hsd070pww1_mode = { > .clock = 71100, > .hdisplay = 1280, > @@ -757,6 +780,9 @@ static const struct of_device_id platform_of_match[] = { > .compatible = "foxlink,fl500wvr00-a0t", > .data = &foxlink_fl500wvr00_a0t, > }, { > + .compatible = "giantplus,gpg482739qs5", > + .data = &giantplus_gpg482739qs5 > + }, { > .compatible = "hannstar,hsd070pww1", > .data = &hannstar_hsd070pww1, > }, { -- Pengutronix e.K. | Lucas Stach | Industrial Linux Solutions | http://www.pengutronix.de/ | _______________________________________________ dri-devel mailing list dri-devel@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/dri-devel ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH 2/2] drm/panel: Add support for Giantplus GPG482739QS5 panel 2014-12-01 11:07 ` Lucas Stach @ 2014-12-04 13:16 ` Thierry Reding 0 siblings, 0 replies; 5+ messages in thread From: Thierry Reding @ 2014-12-04 13:16 UTC (permalink / raw) To: Lucas Stach; +Cc: devicetree, Rob Herring, kernel, dri-devel [-- Attachment #1.1: Type: text/plain, Size: 297 bytes --] On Mon, Dec 01, 2014 at 12:07:38PM +0100, Lucas Stach wrote: > Hi Thierry, > > just a gentle ping for those 2 patches. It would be nice if you could > pick them up, so they can go into the next mergewindow. It's too late to make v3.19, but I've queued these for v3.20, thanks. Thierry [-- Attachment #1.2: Type: application/pgp-signature, Size: 819 bytes --] [-- Attachment #2: Type: text/plain, Size: 159 bytes --] _______________________________________________ dri-devel mailing list dri-devel@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/dri-devel ^ permalink raw reply [flat|nested] 5+ messages in thread
[parent not found: <1416389395-15152-1-git-send-email-l.stach-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org>]
* Re: [PATCH 1/2] of: Add vendor prefix for Giantplus Technology Co., Ltd. [not found] ` <1416389395-15152-1-git-send-email-l.stach-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org> @ 2014-11-19 14:50 ` Rob Herring 0 siblings, 0 replies; 5+ messages in thread From: Rob Herring @ 2014-11-19 14:50 UTC (permalink / raw) To: Lucas Stach Cc: Thierry Reding, Rob Herring, dri-devel-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW, devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, kernel-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org On Wed, Nov 19, 2014 at 3:29 AM, Lucas Stach <l.stach-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org> wrote: > From: Philipp Zabel <philipp.zabel-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> > > Signed-off-by: Philipp Zabel <philipp.zabel-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> > Signed-off-by: Lucas Stach <l.stach-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org> Acked-by: Rob Herring <robh-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.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 0b2fc732f1f3..c678ee63e91c 100644 > --- a/Documentation/devicetree/bindings/vendor-prefixes.txt > +++ b/Documentation/devicetree/bindings/vendor-prefixes.txt > @@ -59,6 +59,7 @@ fsl Freescale Semiconductor > GEFanuc GE Fanuc Intelligent Platforms Embedded Systems, Inc. > gef GE Fanuc Intelligent Platforms Embedded Systems, Inc. > geniatech Geniatech, Inc. > +giantplus Giantplus Technology Co., Ltd. > globalscale Globalscale Technologies, Inc. > gmt Global Mixed-mode Technology, Inc. > google Google, Inc. > -- > 2.1.1 > -- 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] 5+ messages in thread
end of thread, other threads:[~2014-12-04 13:16 UTC | newest] Thread overview: 5+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2014-11-19 9:29 [PATCH 1/2] of: Add vendor prefix for Giantplus Technology Co., Ltd Lucas Stach 2014-11-19 9:29 ` [PATCH 2/2] drm/panel: Add support for Giantplus GPG482739QS5 panel Lucas Stach 2014-12-01 11:07 ` Lucas Stach 2014-12-04 13:16 ` Thierry Reding [not found] ` <1416389395-15152-1-git-send-email-l.stach-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org> 2014-11-19 14:50 ` [PATCH 1/2] of: Add vendor prefix for Giantplus Technology Co., Ltd Rob Herring
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).