* [PATCH 1/2] dt-bindings: display: simple: Add boe,bp101wx1-100 panel
@ 2023-11-27 5:15 Tony Lindgren
2023-11-27 5:15 ` [PATCH 2/2] drm/panel: simple: Add BOE BP101WX1-100 panel Tony Lindgren
` (2 more replies)
0 siblings, 3 replies; 5+ messages in thread
From: Tony Lindgren @ 2023-11-27 5:15 UTC (permalink / raw)
To: Neil Armstrong, Jessica Zhang, Sam Ravnborg, Maarten Lankhorst,
Maxime Ripard, Thomas Zimmermann, David Airlie, Daniel Vetter,
Rob Herring, Krzysztof Kozlowski, Conor Dooley, Thierry Reding
Cc: Carl Philipp Klemm, Ivaylo Dimitrov, Merlijn Wajer, Pavel Machek,
Sebastian Reichel, dri-devel, devicetree
This panel is found on Motorola mapphone tablets mz615 to mz617.
Signed-off-by: Tony Lindgren <tony@atomide.com>
---
.../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
--- a/Documentation/devicetree/bindings/display/panel/panel-simple.yaml
+++ b/Documentation/devicetree/bindings/display/panel/panel-simple.yaml
@@ -73,6 +73,8 @@ properties:
- auo,t215hvn01
# Shanghai AVIC Optoelectronics 7" 1024x600 color TFT-LCD panel
- avic,tm070ddh03
+ # BOE BP101WX1-100 10.1" WXGA (1280x800) LVDS panel
+ - boe,bp101wx1-100
# BOE EV121WXM-N10-1850 12.1" WXGA (1280x800) TFT LCD panel
- boe,ev121wxm-n10-1850
# BOE HV070WSA-100 7.01" WSVGA TFT LCD panel
--
2.42.1
^ permalink raw reply [flat|nested] 5+ messages in thread* [PATCH 2/2] drm/panel: simple: Add BOE BP101WX1-100 panel 2023-11-27 5:15 [PATCH 1/2] dt-bindings: display: simple: Add boe,bp101wx1-100 panel Tony Lindgren @ 2023-11-27 5:15 ` Tony Lindgren 2023-12-05 8:12 ` Neil Armstrong 2023-11-27 9:29 ` [PATCH 1/2] dt-bindings: display: simple: Add boe,bp101wx1-100 panel Krzysztof Kozlowski 2023-12-05 8:26 ` Neil Armstrong 2 siblings, 1 reply; 5+ messages in thread From: Tony Lindgren @ 2023-11-27 5:15 UTC (permalink / raw) To: Neil Armstrong, Jessica Zhang, Sam Ravnborg, Maarten Lankhorst, Maxime Ripard, Thomas Zimmermann, David Airlie, Daniel Vetter Cc: Carl Philipp Klemm, Ivaylo Dimitrov, Merlijn Wajer, Pavel Machek, Sebastian Reichel, Thierry Reding, dri-devel, devicetree This panel is found on Motorola mapphone tablets from mz615 to mz617. Signed-off-by: Tony Lindgren <tony@atomide.com> --- drivers/gpu/drm/panel/panel-simple.c | 32 ++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/drivers/gpu/drm/panel/panel-simple.c b/drivers/gpu/drm/panel/panel-simple.c --- a/drivers/gpu/drm/panel/panel-simple.c +++ b/drivers/gpu/drm/panel/panel-simple.c @@ -1324,6 +1324,35 @@ static const struct panel_desc bananapi_s070wv20_ct16 = { }, }; +static const struct drm_display_mode boe_bp101wx1_100_mode = { + .clock = 78945, + .hdisplay = 1280, + .hsync_start = 1280 + 0, + .hsync_end = 1280 + 0 + 2, + .htotal = 1280 + 62 + 0 + 2, + .vdisplay = 800, + .vsync_start = 800 + 8, + .vsync_end = 800 + 8 + 2, + .vtotal = 800 + 6 + 8 + 2, +}; + +static const struct panel_desc boe_bp101wx1_100 = { + .modes = &boe_bp101wx1_100_mode, + .num_modes = 1, + .bpc = 8, + .size = { + .width = 217, + .height = 136, + }, + .delay = { + .enable = 50, + .disable = 50, + }, + .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_JEIDA, + .bus_flags = DRM_BUS_FLAG_DE_HIGH, + .connector_type = DRM_MODE_CONNECTOR_LVDS, +}; + static const struct display_timing boe_ev121wxm_n10_1850_timing = { .pixelclock = { 69922000, 71000000, 72293000 }, .hactive = { 1280, 1280, 1280 }, @@ -4252,6 +4281,9 @@ static const struct of_device_id platform_of_match[] = { }, { .compatible = "bananapi,s070wv20-ct16", .data = &bananapi_s070wv20_ct16, + }, { + .compatible = "boe,bp101wx1-100", + .data = &boe_bp101wx1_100, }, { .compatible = "boe,ev121wxm-n10-1850", .data = &boe_ev121wxm_n10_1850, -- 2.42.1 ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH 2/2] drm/panel: simple: Add BOE BP101WX1-100 panel 2023-11-27 5:15 ` [PATCH 2/2] drm/panel: simple: Add BOE BP101WX1-100 panel Tony Lindgren @ 2023-12-05 8:12 ` Neil Armstrong 0 siblings, 0 replies; 5+ messages in thread From: Neil Armstrong @ 2023-12-05 8:12 UTC (permalink / raw) To: Tony Lindgren, Jessica Zhang, Sam Ravnborg, Maarten Lankhorst, Maxime Ripard, Thomas Zimmermann, David Airlie, Daniel Vetter Cc: Carl Philipp Klemm, Ivaylo Dimitrov, Merlijn Wajer, Pavel Machek, Sebastian Reichel, Thierry Reding, dri-devel, devicetree On 27/11/2023 06:15, Tony Lindgren wrote: > This panel is found on Motorola mapphone tablets from mz615 to mz617. > > Signed-off-by: Tony Lindgren <tony@atomide.com> > --- > drivers/gpu/drm/panel/panel-simple.c | 32 ++++++++++++++++++++++++++++ > 1 file changed, 32 insertions(+) > > diff --git a/drivers/gpu/drm/panel/panel-simple.c b/drivers/gpu/drm/panel/panel-simple.c > --- a/drivers/gpu/drm/panel/panel-simple.c > +++ b/drivers/gpu/drm/panel/panel-simple.c > @@ -1324,6 +1324,35 @@ static const struct panel_desc bananapi_s070wv20_ct16 = { > }, > }; > > +static const struct drm_display_mode boe_bp101wx1_100_mode = { > + .clock = 78945, > + .hdisplay = 1280, > + .hsync_start = 1280 + 0, > + .hsync_end = 1280 + 0 + 2, > + .htotal = 1280 + 62 + 0 + 2, > + .vdisplay = 800, > + .vsync_start = 800 + 8, > + .vsync_end = 800 + 8 + 2, > + .vtotal = 800 + 6 + 8 + 2, > +}; > + > +static const struct panel_desc boe_bp101wx1_100 = { > + .modes = &boe_bp101wx1_100_mode, > + .num_modes = 1, > + .bpc = 8, > + .size = { > + .width = 217, > + .height = 136, > + }, > + .delay = { > + .enable = 50, > + .disable = 50, > + }, > + .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_JEIDA, > + .bus_flags = DRM_BUS_FLAG_DE_HIGH, > + .connector_type = DRM_MODE_CONNECTOR_LVDS, > +}; > + > static const struct display_timing boe_ev121wxm_n10_1850_timing = { > .pixelclock = { 69922000, 71000000, 72293000 }, > .hactive = { 1280, 1280, 1280 }, > @@ -4252,6 +4281,9 @@ static const struct of_device_id platform_of_match[] = { > }, { > .compatible = "bananapi,s070wv20-ct16", > .data = &bananapi_s070wv20_ct16, > + }, { > + .compatible = "boe,bp101wx1-100", > + .data = &boe_bp101wx1_100, > }, { > .compatible = "boe,ev121wxm-n10-1850", > .data = &boe_ev121wxm_n10_1850, Reviewed-by: Neil Armstrong <neil.armstrong@linaro.org> ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH 1/2] dt-bindings: display: simple: Add boe,bp101wx1-100 panel 2023-11-27 5:15 [PATCH 1/2] dt-bindings: display: simple: Add boe,bp101wx1-100 panel Tony Lindgren 2023-11-27 5:15 ` [PATCH 2/2] drm/panel: simple: Add BOE BP101WX1-100 panel Tony Lindgren @ 2023-11-27 9:29 ` Krzysztof Kozlowski 2023-12-05 8:26 ` Neil Armstrong 2 siblings, 0 replies; 5+ messages in thread From: Krzysztof Kozlowski @ 2023-11-27 9:29 UTC (permalink / raw) To: Tony Lindgren, Neil Armstrong, Jessica Zhang, Sam Ravnborg, Maarten Lankhorst, Maxime Ripard, Thomas Zimmermann, David Airlie, Daniel Vetter, Rob Herring, Krzysztof Kozlowski, Conor Dooley, Thierry Reding Cc: Carl Philipp Klemm, Ivaylo Dimitrov, Merlijn Wajer, Pavel Machek, Sebastian Reichel, dri-devel, devicetree On 27/11/2023 06:15, Tony Lindgren wrote: > This panel is found on Motorola mapphone tablets mz615 to mz617. > > Signed-off-by: Tony Lindgren <tony@atomide.com> Acked-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org> Best regards, Krzysztof ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH 1/2] dt-bindings: display: simple: Add boe,bp101wx1-100 panel 2023-11-27 5:15 [PATCH 1/2] dt-bindings: display: simple: Add boe,bp101wx1-100 panel Tony Lindgren 2023-11-27 5:15 ` [PATCH 2/2] drm/panel: simple: Add BOE BP101WX1-100 panel Tony Lindgren 2023-11-27 9:29 ` [PATCH 1/2] dt-bindings: display: simple: Add boe,bp101wx1-100 panel Krzysztof Kozlowski @ 2023-12-05 8:26 ` Neil Armstrong 2 siblings, 0 replies; 5+ messages in thread From: Neil Armstrong @ 2023-12-05 8:26 UTC (permalink / raw) To: Jessica Zhang, Sam Ravnborg, Maarten Lankhorst, Maxime Ripard, Thomas Zimmermann, David Airlie, Daniel Vetter, Rob Herring, Krzysztof Kozlowski, Conor Dooley, Thierry Reding, Tony Lindgren Cc: Carl Philipp Klemm, Ivaylo Dimitrov, Merlijn Wajer, Pavel Machek, Sebastian Reichel, dri-devel, devicetree Hi, On Mon, 27 Nov 2023 07:15:43 +0200, Tony Lindgren wrote: > This panel is found on Motorola mapphone tablets mz615 to mz617. > > Thanks, Applied to https://anongit.freedesktop.org/git/drm/drm-misc.git (drm-misc-next) [1/2] dt-bindings: display: simple: Add boe,bp101wx1-100 panel https://cgit.freedesktop.org/drm/drm-misc/commit/?id=4777dded21717c31d2d8471bccaf7c0ff58feaa4 [2/2] drm/panel: simple: Add BOE BP101WX1-100 panel https://cgit.freedesktop.org/drm/drm-misc/commit/?id=eeaddab4c14beb02157db5ca8f9e074066759bfd -- Neil ^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2023-12-05 8:26 UTC | newest] Thread overview: 5+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-11-27 5:15 [PATCH 1/2] dt-bindings: display: simple: Add boe,bp101wx1-100 panel Tony Lindgren 2023-11-27 5:15 ` [PATCH 2/2] drm/panel: simple: Add BOE BP101WX1-100 panel Tony Lindgren 2023-12-05 8:12 ` Neil Armstrong 2023-11-27 9:29 ` [PATCH 1/2] dt-bindings: display: simple: Add boe,bp101wx1-100 panel Krzysztof Kozlowski 2023-12-05 8:26 ` Neil Armstrong
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).