* [PATCH 1/2] dt-bindings: display: simple: Add Startek KD070WVFPA043-C069A panel @ 2022-04-20 0:56 Fabio Estevam 2022-04-20 0:56 ` [PATCH 2/2] drm/panel: simple: Add Startek KD070WVFPA043-C069A panel support Fabio Estevam 2022-04-22 18:17 ` [PATCH 1/2] dt-bindings: display: simple: Add Startek KD070WVFPA043-C069A panel Sam Ravnborg 0 siblings, 2 replies; 4+ messages in thread From: Fabio Estevam @ 2022-04-20 0:56 UTC (permalink / raw) To: sam; +Cc: robh+dt, hs, dri-devel, devicetree, Fabio Estevam From: Fabio Estevam <festevam@denx.de> Add Startek KD070WVFPA043-C069A 7" TFT LCD panel compatible string. Signed-off-by: Fabio Estevam <festevam@denx.de> --- .../devicetree/bindings/display/panel/panel-simple.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Documentation/devicetree/bindings/display/panel/panel-simple.yaml b/Documentation/devicetree/bindings/display/panel/panel-simple.yaml index 1eb9dd4f8f58..e190eef66872 100644 --- a/Documentation/devicetree/bindings/display/panel/panel-simple.yaml +++ b/Documentation/devicetree/bindings/display/panel/panel-simple.yaml @@ -294,6 +294,8 @@ properties: - starry,kr070pe2t # Starry 12.2" (1920x1200 pixels) TFT LCD panel - starry,kr122ea0sra + # Startek KD070WVFPA043-C069A 7" TFT LCD panel + - startek,kd070wvfpa # Team Source Display Technology TST043015CMHX 4.3" WQVGA TFT LCD panel - team-source-display,tst043015cmhx # Tianma Micro-electronics TM070JDHG30 7.0" WXGA TFT LCD panel -- 2.25.1 ^ permalink raw reply related [flat|nested] 4+ messages in thread
* [PATCH 2/2] drm/panel: simple: Add Startek KD070WVFPA043-C069A panel support 2022-04-20 0:56 [PATCH 1/2] dt-bindings: display: simple: Add Startek KD070WVFPA043-C069A panel Fabio Estevam @ 2022-04-20 0:56 ` Fabio Estevam 2022-04-22 18:20 ` Sam Ravnborg 2022-04-22 18:17 ` [PATCH 1/2] dt-bindings: display: simple: Add Startek KD070WVFPA043-C069A panel Sam Ravnborg 1 sibling, 1 reply; 4+ messages in thread From: Fabio Estevam @ 2022-04-20 0:56 UTC (permalink / raw) To: sam; +Cc: robh+dt, hs, dri-devel, devicetree, Fabio Estevam From: Heiko Schocher <hs@denx.de> Add Startek KD070WVFPA043-C069A 7" TFT LCD panel support. Signed-off-by: Heiko Schocher <hs@denx.de> Signed-off-by: Fabio Estevam <festevam@denx.de> --- drivers/gpu/drm/panel/panel-simple.c | 33 ++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/drivers/gpu/drm/panel/panel-simple.c b/drivers/gpu/drm/panel/panel-simple.c index a34f4198a534..ca8cd017821d 100644 --- a/drivers/gpu/drm/panel/panel-simple.c +++ b/drivers/gpu/drm/panel/panel-simple.c @@ -3311,6 +3311,36 @@ static const struct panel_desc tsd_tst043015cmhx = { .bus_flags = DRM_BUS_FLAG_DE_HIGH | DRM_BUS_FLAG_PIXDATA_SAMPLE_NEGEDGE, }; +static const struct display_timing startek_kd070wvfpa_mode = { + .pixelclock = { 25200000, 27200000, 30500000 }, + .hactive = { 800, 800, 800 }, + .hfront_porch = { 19, 44, 115 }, + .hback_porch = { 5, 16, 101 }, + .hsync_len = { 1, 2, 100 }, + .vactive = { 480, 480, 480 }, + .vfront_porch = { 5, 43, 67 }, + .vback_porch = { 5, 5, 67 }, + .vsync_len = { 1, 2, 66 }, +}; + +static const struct panel_desc startek_kd070wvfpa = { + .timings = &startek_kd070wvfpa_mode, + .num_timings = 1, + .bpc = 8, + .size = { + .width = 152, + .height = 91, + }, + .delay = { + .prepare = 20, + .enable = 200, + .disable = 200, + }, + .bus_flags = DRM_BUS_FLAG_PIXDATA_DRIVE_POSEDGE, + .bus_format = MEDIA_BUS_FMT_RGB888_1X24, + .connector_type = DRM_MODE_CONNECTOR_DPI, +}; + static const struct drm_display_mode tfc_s9700rtwv43tr_01b_mode = { .clock = 30000, .hdisplay = 800, @@ -3990,6 +4020,9 @@ static const struct of_device_id platform_of_match[] = { }, { .compatible = "starry,kr070pe2t", .data = &starry_kr070pe2t, + }, { + .compatible = "startek,kd070wvfpa", + .data = &startek_kd070wvfpa, }, { .compatible = "team-source-display,tst043015cmhx", .data = &tsd_tst043015cmhx, -- 2.25.1 ^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH 2/2] drm/panel: simple: Add Startek KD070WVFPA043-C069A panel support 2022-04-20 0:56 ` [PATCH 2/2] drm/panel: simple: Add Startek KD070WVFPA043-C069A panel support Fabio Estevam @ 2022-04-22 18:20 ` Sam Ravnborg 0 siblings, 0 replies; 4+ messages in thread From: Sam Ravnborg @ 2022-04-22 18:20 UTC (permalink / raw) To: Fabio Estevam; +Cc: robh+dt, hs, dri-devel, devicetree, Fabio Estevam On Tue, Apr 19, 2022 at 09:56:25PM -0300, Fabio Estevam wrote: > From: Heiko Schocher <hs@denx.de> > > Add Startek KD070WVFPA043-C069A 7" TFT LCD panel support. > > Signed-off-by: Heiko Schocher <hs@denx.de> > Signed-off-by: Fabio Estevam <festevam@denx.de> > --- > drivers/gpu/drm/panel/panel-simple.c | 33 ++++++++++++++++++++++++++++ > 1 file changed, 33 insertions(+) > > diff --git a/drivers/gpu/drm/panel/panel-simple.c b/drivers/gpu/drm/panel/panel-simple.c > index a34f4198a534..ca8cd017821d 100644 > --- a/drivers/gpu/drm/panel/panel-simple.c > +++ b/drivers/gpu/drm/panel/panel-simple.c > @@ -3311,6 +3311,36 @@ static const struct panel_desc tsd_tst043015cmhx = { > .bus_flags = DRM_BUS_FLAG_DE_HIGH | DRM_BUS_FLAG_PIXDATA_SAMPLE_NEGEDGE, > }; > > +static const struct display_timing startek_kd070wvfpa_mode = { > + .pixelclock = { 25200000, 27200000, 30500000 }, > + .hactive = { 800, 800, 800 }, > + .hfront_porch = { 19, 44, 115 }, > + .hback_porch = { 5, 16, 101 }, > + .hsync_len = { 1, 2, 100 }, > + .vactive = { 480, 480, 480 }, > + .vfront_porch = { 5, 43, 67 }, > + .vback_porch = { 5, 5, 67 }, > + .vsync_len = { 1, 2, 66 }, > +}; > + > +static const struct panel_desc startek_kd070wvfpa = { > + .timings = &startek_kd070wvfpa_mode, > + .num_timings = 1, > + .bpc = 8, > + .size = { > + .width = 152, > + .height = 91, > + }, > + .delay = { > + .prepare = 20, > + .enable = 200, > + .disable = 200, > + }, > + .bus_flags = DRM_BUS_FLAG_PIXDATA_DRIVE_POSEDGE, > + .bus_format = MEDIA_BUS_FMT_RGB888_1X24, > + .connector_type = DRM_MODE_CONNECTOR_DPI, > +}; Please fix so order of startek_kd070wvfpa is the same order in platform_of_match. startek_kd070wvfpa is after tsd_tst043015cmhx above, but before tsd_tst043015cmhx below. Sam > + > static const struct drm_display_mode tfc_s9700rtwv43tr_01b_mode = { > .clock = 30000, > .hdisplay = 800, > @@ -3990,6 +4020,9 @@ static const struct of_device_id platform_of_match[] = { > }, { > .compatible = "starry,kr070pe2t", > .data = &starry_kr070pe2t, > + }, { > + .compatible = "startek,kd070wvfpa", > + .data = &startek_kd070wvfpa, > }, { > .compatible = "team-source-display,tst043015cmhx", > .data = &tsd_tst043015cmhx, > -- > 2.25.1 ^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH 1/2] dt-bindings: display: simple: Add Startek KD070WVFPA043-C069A panel 2022-04-20 0:56 [PATCH 1/2] dt-bindings: display: simple: Add Startek KD070WVFPA043-C069A panel Fabio Estevam 2022-04-20 0:56 ` [PATCH 2/2] drm/panel: simple: Add Startek KD070WVFPA043-C069A panel support Fabio Estevam @ 2022-04-22 18:17 ` Sam Ravnborg 1 sibling, 0 replies; 4+ messages in thread From: Sam Ravnborg @ 2022-04-22 18:17 UTC (permalink / raw) To: Fabio Estevam; +Cc: robh+dt, hs, dri-devel, devicetree, Fabio Estevam On Tue, Apr 19, 2022 at 09:56:24PM -0300, Fabio Estevam wrote: > From: Fabio Estevam <festevam@denx.de> > > Add Startek KD070WVFPA043-C069A 7" TFT LCD panel compatible string. > > Signed-off-by: Fabio Estevam <festevam@denx.de> Acked-by: Sam Ravnborg <sam@ravnborg.org> > --- > .../devicetree/bindings/display/panel/panel-simple.yaml | 2 ++ > 1 file changed, 2 insertions(+) > > diff --git a/Documentation/devicetree/bindings/display/panel/panel-simple.yaml b/Documentation/devicetree/bindings/display/panel/panel-simple.yaml > index 1eb9dd4f8f58..e190eef66872 100644 > --- a/Documentation/devicetree/bindings/display/panel/panel-simple.yaml > +++ b/Documentation/devicetree/bindings/display/panel/panel-simple.yaml > @@ -294,6 +294,8 @@ properties: > - starry,kr070pe2t > # Starry 12.2" (1920x1200 pixels) TFT LCD panel > - starry,kr122ea0sra > + # Startek KD070WVFPA043-C069A 7" TFT LCD panel > + - startek,kd070wvfpa > # Team Source Display Technology TST043015CMHX 4.3" WQVGA TFT LCD panel > - team-source-display,tst043015cmhx > # Tianma Micro-electronics TM070JDHG30 7.0" WXGA TFT LCD panel > -- > 2.25.1 ^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2022-04-22 22:42 UTC | newest] Thread overview: 4+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2022-04-20 0:56 [PATCH 1/2] dt-bindings: display: simple: Add Startek KD070WVFPA043-C069A panel Fabio Estevam 2022-04-20 0:56 ` [PATCH 2/2] drm/panel: simple: Add Startek KD070WVFPA043-C069A panel support Fabio Estevam 2022-04-22 18:20 ` Sam Ravnborg 2022-04-22 18:17 ` [PATCH 1/2] dt-bindings: display: simple: Add Startek KD070WVFPA043-C069A panel Sam Ravnborg
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).