* [PATCH 1/5] drm/panel: Add bus format for Giantplus GPG482739QS5 panel @ 2015-02-11 17:50 Philipp Zabel 2015-02-11 17:50 ` [PATCH 5/5] drm/panel: Add support for OrtusTech COM43H4M85ULC panel Philipp Zabel [not found] ` <1423677011-17993-1-git-send-email-p.zabel-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org> 0 siblings, 2 replies; 9+ messages in thread From: Philipp Zabel @ 2015-02-11 17:50 UTC (permalink / raw) To: Thierry Reding Cc: Mark Rutland, devicetree, Pawel Moll, Ian Campbell, dri-devel, Rob Herring, kernel, Kumar Gala From: Philipp Zabel <philipp.zabel@gmail.com> This patch adds the bus_format field to the GPG482739QS5 panel structure. Signed-off-by: Philipp Zabel <philipp.zabel@gmail.com> --- drivers/gpu/drm/panel/panel-simple.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/gpu/drm/panel/panel-simple.c b/drivers/gpu/drm/panel/panel-simple.c index 39806c3..1d9cb6f 100644 --- a/drivers/gpu/drm/panel/panel-simple.c +++ b/drivers/gpu/drm/panel/panel-simple.c @@ -615,6 +615,7 @@ static const struct panel_desc giantplus_gpg482739qs5 = { .width = 95, .height = 54, }, + .bus_format = MEDIA_BUS_FMT_RGB888_1X24, }; static const struct drm_display_mode hannstar_hsd070pww1_mode = { -- 2.1.4 _______________________________________________ dri-devel mailing list dri-devel@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/dri-devel ^ permalink raw reply related [flat|nested] 9+ messages in thread
* [PATCH 5/5] drm/panel: Add support for OrtusTech COM43H4M85ULC panel 2015-02-11 17:50 [PATCH 1/5] drm/panel: Add bus format for Giantplus GPG482739QS5 panel Philipp Zabel @ 2015-02-11 17:50 ` Philipp Zabel [not found] ` <1423677011-17993-1-git-send-email-p.zabel-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org> 1 sibling, 0 replies; 9+ messages in thread From: Philipp Zabel @ 2015-02-11 17:50 UTC (permalink / raw) To: Thierry Reding Cc: Mark Rutland, devicetree, Pawel Moll, Ian Campbell, dri-devel, Rob Herring, kernel, Kumar Gala This adds support for the COM43H4M85ULC 3.7" 800x480 panel to the DRM simple panel driver. Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de> --- .../bindings/panel/ortustech,com43h4m85ulc.txt | 7 ++++++ drivers/gpu/drm/panel/panel-simple.c | 27 ++++++++++++++++++++++ 2 files changed, 34 insertions(+) create mode 100644 Documentation/devicetree/bindings/panel/ortustech,com43h4m85ulc.txt diff --git a/Documentation/devicetree/bindings/panel/ortustech,com43h4m85ulc.txt b/Documentation/devicetree/bindings/panel/ortustech,com43h4m85ulc.txt new file mode 100644 index 0000000..de19e93 --- /dev/null +++ b/Documentation/devicetree/bindings/panel/ortustech,com43h4m85ulc.txt @@ -0,0 +1,7 @@ +OrtusTech COM43H4M85ULC Blanview 3.7" TFT-LCD panel + +Required properties: +- compatible: should be "ortustech,com43h4m85ulc" + +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 aac9dc1..da7c8ab 100644 --- a/drivers/gpu/drm/panel/panel-simple.c +++ b/drivers/gpu/drm/panel/panel-simple.c @@ -782,6 +782,30 @@ static const struct panel_desc lg_lp129qe = { }, }; +static const struct drm_display_mode ortustech_com43h4m85ulc_mode = { + .clock = 25000, + .hdisplay = 480, + .hsync_start = 480 + 10, + .hsync_end = 480 + 10 + 10, + .htotal = 480 + 10 + 10 + 15, + .vdisplay = 800, + .vsync_start = 800 + 3, + .vsync_end = 800 + 3 + 3, + .vtotal = 800 + 3 + 3 + 3, + .vrefresh = 60, +}; + +static const struct panel_desc ortustech_com43h4m85ulc = { + .modes = &ortustech_com43h4m85ulc_mode, + .num_modes = 1, + .bpc = 8, + .size = { + .width = 56, + .height = 93, + }, + .bus_format = MEDIA_BUS_FMT_RGB888_1X24, +}; + static const struct drm_display_mode samsung_ltn101nt05_mode = { .clock = 54030, .hdisplay = 1024, @@ -867,6 +891,9 @@ static const struct of_device_id platform_of_match[] = { .compatible = "lg,lp129qe", .data = &lg_lp129qe, }, { + .compatible = "ortustech,com43h4m85ulc", + .data = &ortustech_com43h4m85ulc, + }, { .compatible = "samsung,ltn101nt05", .data = &samsung_ltn101nt05, }, { -- 2.1.4 _______________________________________________ dri-devel mailing list dri-devel@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/dri-devel ^ permalink raw reply related [flat|nested] 9+ messages in thread
[parent not found: <1423677011-17993-1-git-send-email-p.zabel-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org>]
* [PATCH 2/5] of: Add vendor prefix for Ampire Co., Ltd. [not found] ` <1423677011-17993-1-git-send-email-p.zabel-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org> @ 2015-02-11 17:50 ` Philipp Zabel [not found] ` <1423677011-17993-2-git-send-email-p.zabel-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org> 2015-02-11 17:50 ` [PATCH 3/5] drm/panel: Add support for Ampire AM-800480R3TMQW-A1H 800x480 7" panel Philipp Zabel ` (2 subsequent siblings) 3 siblings, 1 reply; 9+ messages in thread From: Philipp Zabel @ 2015-02-11 17:50 UTC (permalink / raw) To: Thierry Reding Cc: Rob Herring, Pawel Moll, Mark Rutland, Ian Campbell, Kumar Gala, dri-devel-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW, devicetree-u79uwXL29TY76Z2rM5mHXA, kernel-bIcnvbaLZ9MEGnE8C9+IrQ, Philipp Zabel Add Ampire Co., Ltd. to the list of device tree vendor prefixes. Signed-off-by: Philipp Zabel <p.zabel-bIcnvbaLZ9MEGnE8C9+IrQ@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 c0333a9..1ca9ea1 100644 --- a/Documentation/devicetree/bindings/vendor-prefixes.txt +++ b/Documentation/devicetree/bindings/vendor-prefixes.txt @@ -15,6 +15,7 @@ altr Altera Corp. amcc Applied Micro Circuits Corporation (APM, formally AMCC) amd Advanced Micro Devices (AMD), Inc. amlogic Amlogic, Inc. +ampire Ampire Co., Ltd. ams AMS AG amstaos AMS-Taos Inc. apm Applied Micro Circuits Corporation (APM) -- 2.1.4 -- 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 related [flat|nested] 9+ messages in thread
[parent not found: <1423677011-17993-2-git-send-email-p.zabel-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org>]
* Re: [PATCH 2/5] of: Add vendor prefix for Ampire Co., Ltd. [not found] ` <1423677011-17993-2-git-send-email-p.zabel-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org> @ 2015-03-24 11:04 ` Thierry Reding [not found] ` <20150324110417.GL18115-AwZRO8vwLAwmlAP/+Wk3EA@public.gmane.org> 0 siblings, 1 reply; 9+ messages in thread From: Thierry Reding @ 2015-03-24 11:04 UTC (permalink / raw) To: Rob Herring Cc: Philipp Zabel, Pawel Moll, Mark Rutland, Ian Campbell, Kumar Gala, dri-devel-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW, devicetree-u79uwXL29TY76Z2rM5mHXA, kernel-bIcnvbaLZ9MEGnE8C9+IrQ [-- Attachment #1: Type: text/plain, Size: 1073 bytes --] On Wed, Feb 11, 2015 at 06:50:08PM +0100, Philipp Zabel wrote: > Add Ampire Co., Ltd. to the list of device tree vendor prefixes. > > Signed-off-by: Philipp Zabel <p.zabel-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org> > --- > Documentation/devicetree/bindings/vendor-prefixes.txt | 1 + > 1 file changed, 1 insertion(+) Hi Rob, You acked patch 4/5 in this series but didn't explicitly ack this patch. Shall I assume that it applies to this as well? Thierry > > diff --git a/Documentation/devicetree/bindings/vendor-prefixes.txt b/Documentation/devicetree/bindings/vendor-prefixes.txt > index c0333a9..1ca9ea1 100644 > --- a/Documentation/devicetree/bindings/vendor-prefixes.txt > +++ b/Documentation/devicetree/bindings/vendor-prefixes.txt > @@ -15,6 +15,7 @@ altr Altera Corp. > amcc Applied Micro Circuits Corporation (APM, formally AMCC) > amd Advanced Micro Devices (AMD), Inc. > amlogic Amlogic, Inc. > +ampire Ampire Co., Ltd. > ams AMS AG > amstaos AMS-Taos Inc. > apm Applied Micro Circuits Corporation (APM) > -- > 2.1.4 > [-- Attachment #2: Type: application/pgp-signature, Size: 819 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
[parent not found: <20150324110417.GL18115-AwZRO8vwLAwmlAP/+Wk3EA@public.gmane.org>]
* Re: [PATCH 2/5] of: Add vendor prefix for Ampire Co., Ltd. [not found] ` <20150324110417.GL18115-AwZRO8vwLAwmlAP/+Wk3EA@public.gmane.org> @ 2015-03-25 15:22 ` Rob Herring 0 siblings, 0 replies; 9+ messages in thread From: Rob Herring @ 2015-03-25 15:22 UTC (permalink / raw) To: Thierry Reding Cc: Rob Herring, Philipp Zabel, Pawel Moll, Mark Rutland, Ian Campbell, Kumar Gala, dri-devel-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW, devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, kernel-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org On Tue, Mar 24, 2015 at 6:04 AM, Thierry Reding <thierry.reding-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: > On Wed, Feb 11, 2015 at 06:50:08PM +0100, Philipp Zabel wrote: >> Add Ampire Co., Ltd. to the list of device tree vendor prefixes. >> >> Signed-off-by: Philipp Zabel <p.zabel-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org> >> --- >> Documentation/devicetree/bindings/vendor-prefixes.txt | 1 + >> 1 file changed, 1 insertion(+) > > Hi Rob, > > You acked patch 4/5 in this series but didn't explicitly ack this patch. > Shall I assume that it applies to this as well? Yes. Acked-by: Rob Herring <robh-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org> Rob > > Thierry > >> >> diff --git a/Documentation/devicetree/bindings/vendor-prefixes.txt b/Documentation/devicetree/bindings/vendor-prefixes.txt >> index c0333a9..1ca9ea1 100644 >> --- a/Documentation/devicetree/bindings/vendor-prefixes.txt >> +++ b/Documentation/devicetree/bindings/vendor-prefixes.txt >> @@ -15,6 +15,7 @@ altr Altera Corp. >> amcc Applied Micro Circuits Corporation (APM, formally AMCC) >> amd Advanced Micro Devices (AMD), Inc. >> amlogic Amlogic, Inc. >> +ampire Ampire Co., Ltd. >> ams AMS AG >> amstaos AMS-Taos Inc. >> apm Applied Micro Circuits Corporation (APM) >> -- >> 2.1.4 >> -- 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] 9+ messages in thread
* [PATCH 3/5] drm/panel: Add support for Ampire AM-800480R3TMQW-A1H 800x480 7" panel [not found] ` <1423677011-17993-1-git-send-email-p.zabel-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org> 2015-02-11 17:50 ` [PATCH 2/5] of: Add vendor prefix for Ampire Co., Ltd Philipp Zabel @ 2015-02-11 17:50 ` Philipp Zabel 2015-02-11 17:50 ` [PATCH 4/5] of: Add vendor prefix for Ortus Technology Co., Ltd Philipp Zabel 2015-03-24 11:08 ` [PATCH 1/5] drm/panel: Add bus format for Giantplus GPG482739QS5 panel Thierry Reding 3 siblings, 0 replies; 9+ messages in thread From: Philipp Zabel @ 2015-02-11 17:50 UTC (permalink / raw) To: Thierry Reding Cc: Rob Herring, Pawel Moll, Mark Rutland, Ian Campbell, Kumar Gala, dri-devel-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW, devicetree-u79uwXL29TY76Z2rM5mHXA, kernel-bIcnvbaLZ9MEGnE8C9+IrQ, Philipp Zabel This adds support for the AM-800480R3TMQW-A1H 7" 800x480 panel to the DRM simple panel driver. Signed-off-by: Philipp Zabel <p.zabel-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org> --- .../bindings/panel/ampire,am800480r3tmqwa1h.txt | 7 ++++++ drivers/gpu/drm/panel/panel-simple.c | 28 ++++++++++++++++++++++ 2 files changed, 35 insertions(+) create mode 100644 Documentation/devicetree/bindings/panel/ampire,am800480r3tmqwa1h.txt diff --git a/Documentation/devicetree/bindings/panel/ampire,am800480r3tmqwa1h.txt b/Documentation/devicetree/bindings/panel/ampire,am800480r3tmqwa1h.txt new file mode 100644 index 0000000..83e2cae --- /dev/null +++ b/Documentation/devicetree/bindings/panel/ampire,am800480r3tmqwa1h.txt @@ -0,0 +1,7 @@ +Ampire AM-800480R3TMQW-A1H 7.0" WVGA TFT LCD panel + +Required properties: +- compatible: should be "ampire,am800480r3tmqwa1h" + +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 1d9cb6f..aac9dc1 100644 --- a/drivers/gpu/drm/panel/panel-simple.c +++ b/drivers/gpu/drm/panel/panel-simple.c @@ -327,6 +327,31 @@ static void panel_simple_shutdown(struct device *dev) panel_simple_disable(&panel->base); } +static const struct drm_display_mode ampire_am800480r3tmqwa1h_mode = { + .clock = 33333, + .hdisplay = 800, + .hsync_start = 800 + 0, + .hsync_end = 800 + 0 + 255, + .htotal = 800 + 0 + 255 + 0, + .vdisplay = 480, + .vsync_start = 480 + 2, + .vsync_end = 480 + 2 + 45, + .vtotal = 480 + 2 + 45 + 0, + .vrefresh = 60, + .flags = DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC, +}; + +static const struct panel_desc ampire_am800480r3tmqwa1h = { + .modes = &ire_am800480r3tmqwa1h_mode, + .num_modes = 1, + .bpc = 6, + .size = { + .width = 152, + .height = 91, + }, + .bus_format = MEDIA_BUS_FMT_RGB666_1X18, +}; + static const struct drm_display_mode auo_b101aw03_mode = { .clock = 51450, .hdisplay = 1024, @@ -782,6 +807,9 @@ static const struct panel_desc samsung_ltn101nt05 = { static const struct of_device_id platform_of_match[] = { { + .compatible = "ampire,am800480r3tmqwa1h", + .data = &ire_am800480r3tmqwa1h, + }, { .compatible = "auo,b101aw03", .data = &auo_b101aw03, }, { -- 2.1.4 -- 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 related [flat|nested] 9+ messages in thread
* [PATCH 4/5] of: Add vendor prefix for Ortus Technology Co., Ltd. [not found] ` <1423677011-17993-1-git-send-email-p.zabel-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org> 2015-02-11 17:50 ` [PATCH 2/5] of: Add vendor prefix for Ampire Co., Ltd Philipp Zabel 2015-02-11 17:50 ` [PATCH 3/5] drm/panel: Add support for Ampire AM-800480R3TMQW-A1H 800x480 7" panel Philipp Zabel @ 2015-02-11 17:50 ` Philipp Zabel [not found] ` <1423677011-17993-4-git-send-email-p.zabel-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org> 2015-03-24 11:08 ` [PATCH 1/5] drm/panel: Add bus format for Giantplus GPG482739QS5 panel Thierry Reding 3 siblings, 1 reply; 9+ messages in thread From: Philipp Zabel @ 2015-02-11 17:50 UTC (permalink / raw) To: Thierry Reding Cc: Rob Herring, Pawel Moll, Mark Rutland, Ian Campbell, Kumar Gala, dri-devel-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW, devicetree-u79uwXL29TY76Z2rM5mHXA, kernel-bIcnvbaLZ9MEGnE8C9+IrQ, Philipp Zabel Add Ortus Technology Co., Ltd. to the list of device tree vendor prefixes. Signed-off-by: Philipp Zabel <p.zabel-bIcnvbaLZ9MEGnE8C9+IrQ@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 1ca9ea1..a698268 100644 --- a/Documentation/devicetree/bindings/vendor-prefixes.txt +++ b/Documentation/devicetree/bindings/vendor-prefixes.txt @@ -121,6 +121,7 @@ nvidia NVIDIA nxp NXP Semiconductors onnn ON Semiconductor Corp. opencores OpenCores.org +ortustech Ortus Technology Co., Ltd. panasonic Panasonic Corporation parade Parade Technologies Inc. pericom Pericom Technology Inc. -- 2.1.4 -- 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 related [flat|nested] 9+ messages in thread
[parent not found: <1423677011-17993-4-git-send-email-p.zabel-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org>]
* Re: [PATCH 4/5] of: Add vendor prefix for Ortus Technology Co., Ltd. [not found] ` <1423677011-17993-4-git-send-email-p.zabel-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org> @ 2015-02-15 22:52 ` Rob Herring 0 siblings, 0 replies; 9+ messages in thread From: Rob Herring @ 2015-02-15 22:52 UTC (permalink / raw) To: Philipp Zabel Cc: Thierry Reding, Rob Herring, Pawel Moll, Mark Rutland, Ian Campbell, Kumar Gala, dri-devel-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW, devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, kernel-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org On Wed, Feb 11, 2015 at 11:50 AM, Philipp Zabel <p.zabel-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org> wrote: > Add Ortus Technology Co., Ltd. to the list of device tree vendor prefixes. > > Signed-off-by: Philipp Zabel <p.zabel-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 1ca9ea1..a698268 100644 > --- a/Documentation/devicetree/bindings/vendor-prefixes.txt > +++ b/Documentation/devicetree/bindings/vendor-prefixes.txt > @@ -121,6 +121,7 @@ nvidia NVIDIA > nxp NXP Semiconductors > onnn ON Semiconductor Corp. > opencores OpenCores.org > +ortustech Ortus Technology Co., Ltd. > panasonic Panasonic Corporation > parade Parade Technologies Inc. > pericom Pericom Technology Inc. > -- > 2.1.4 > -- 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] 9+ messages in thread
* Re: [PATCH 1/5] drm/panel: Add bus format for Giantplus GPG482739QS5 panel [not found] ` <1423677011-17993-1-git-send-email-p.zabel-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org> ` (2 preceding siblings ...) 2015-02-11 17:50 ` [PATCH 4/5] of: Add vendor prefix for Ortus Technology Co., Ltd Philipp Zabel @ 2015-03-24 11:08 ` Thierry Reding 3 siblings, 0 replies; 9+ messages in thread From: Thierry Reding @ 2015-03-24 11:08 UTC (permalink / raw) To: Philipp Zabel Cc: Rob Herring, Pawel Moll, Mark Rutland, Ian Campbell, Kumar Gala, dri-devel-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW, devicetree-u79uwXL29TY76Z2rM5mHXA, kernel-bIcnvbaLZ9MEGnE8C9+IrQ, Philipp Zabel [-- Attachment #1: Type: text/plain, Size: 520 bytes --] On Wed, Feb 11, 2015 at 06:50:07PM +0100, Philipp Zabel wrote: > From: Philipp Zabel <philipp.zabel-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> > > This patch adds the bus_format field to the GPG482739QS5 panel structure. > > Signed-off-by: Philipp Zabel <philipp.zabel-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> > --- > drivers/gpu/drm/panel/panel-simple.c | 1 + > 1 file changed, 1 insertion(+) Applied patches 1, 4 and 5 and awaiting Rob's response to patch 2 before applying 2 and 3. Thanks, Thierry [-- Attachment #2: Type: application/pgp-signature, Size: 819 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2015-03-25 15:22 UTC | newest] Thread overview: 9+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2015-02-11 17:50 [PATCH 1/5] drm/panel: Add bus format for Giantplus GPG482739QS5 panel Philipp Zabel 2015-02-11 17:50 ` [PATCH 5/5] drm/panel: Add support for OrtusTech COM43H4M85ULC panel Philipp Zabel [not found] ` <1423677011-17993-1-git-send-email-p.zabel-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org> 2015-02-11 17:50 ` [PATCH 2/5] of: Add vendor prefix for Ampire Co., Ltd Philipp Zabel [not found] ` <1423677011-17993-2-git-send-email-p.zabel-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org> 2015-03-24 11:04 ` Thierry Reding [not found] ` <20150324110417.GL18115-AwZRO8vwLAwmlAP/+Wk3EA@public.gmane.org> 2015-03-25 15:22 ` Rob Herring 2015-02-11 17:50 ` [PATCH 3/5] drm/panel: Add support for Ampire AM-800480R3TMQW-A1H 800x480 7" panel Philipp Zabel 2015-02-11 17:50 ` [PATCH 4/5] of: Add vendor prefix for Ortus Technology Co., Ltd Philipp Zabel [not found] ` <1423677011-17993-4-git-send-email-p.zabel-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org> 2015-02-15 22:52 ` Rob Herring 2015-03-24 11:08 ` [PATCH 1/5] drm/panel: Add bus format for Giantplus GPG482739QS5 panel Thierry Reding
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).