* [PATCH 1/2] dt-bindings: display: simple: Add boe,bp082wx1-100 8.2" panel
@ 2023-12-02 8:11 Tony Lindgren
2023-12-02 8:11 ` [PATCH 2/2] drm/panel: simple: Add BOE BP082WX1-100 " Tony Lindgren
2023-12-03 11:21 ` [PATCH 1/2] dt-bindings: display: simple: Add boe,bp082wx1-100 " Conor Dooley
0 siblings, 2 replies; 4+ messages in thread
From: Tony Lindgren @ 2023-12-02 8:11 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 mz607 to mz609.
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 BP082WX1-100 8.2" WXGA (1280x800) LVDS panel
+ - boe,bp082wx1-100
# BOE BP101WX1-100 10.1" WXGA (1280x800) LVDS panel
- boe,bp101wx1-100
# BOE EV121WXM-N10-1850 12.1" WXGA (1280x800) TFT LCD panel
--
2.43.0
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH 2/2] drm/panel: simple: Add BOE BP082WX1-100 8.2" panel
2023-12-02 8:11 [PATCH 1/2] dt-bindings: display: simple: Add boe,bp082wx1-100 8.2" panel Tony Lindgren
@ 2023-12-02 8:11 ` Tony Lindgren
2023-12-03 23:30 ` Dmitry Baryshkov
2023-12-03 11:21 ` [PATCH 1/2] dt-bindings: display: simple: Add boe,bp082wx1-100 " Conor Dooley
1 sibling, 1 reply; 4+ messages in thread
From: Tony Lindgren @ 2023-12-02 8:11 UTC (permalink / raw)
To: Neil Armstrong, Jessica Zhang, Sam Ravnborg, David Airlie,
Daniel Vetter, Maarten Lankhorst, Maxime Ripard,
Thomas Zimmermann, Rob Herring, Krzysztof Kozlowski, Conor Dooley,
Thierry Reding
Cc: Carl Philipp Klemm, Ivaylo Dimitrov, Merlijn Wajer, Pavel Machek,
Sebastian Reichel, dri-devel, devicetree
The BOE BP082WX1-100 is a 8.2" panel similar to the 10.1" panel
BP101WX1-100. Both panels use the same timings.
Signed-off-by: Tony Lindgren <tony@atomide.com>
---
drivers/gpu/drm/panel/panel-simple.c | 20 ++++++++++++++++++++
1 file changed, 20 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
@@ -1336,6 +1336,23 @@ static const struct drm_display_mode boe_bp101wx1_100_mode = {
.vtotal = 800 + 6 + 8 + 2,
};
+static const struct panel_desc boe_bp082wx1_100 = {
+ .modes = &boe_bp101wx1_100_mode,
+ .num_modes = 1,
+ .bpc = 8,
+ .size = {
+ .width = 180,
+ .height = 114,
+ },
+ .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 panel_desc boe_bp101wx1_100 = {
.modes = &boe_bp101wx1_100_mode,
.num_modes = 1,
@@ -4281,6 +4298,9 @@ static const struct of_device_id platform_of_match[] = {
}, {
.compatible = "bananapi,s070wv20-ct16",
.data = &bananapi_s070wv20_ct16,
+ }, {
+ .compatible = "boe,bp082wx1-100",
+ .data = &boe_bp082wx1_100,
}, {
.compatible = "boe,bp101wx1-100",
.data = &boe_bp101wx1_100,
--
2.43.0
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH 1/2] dt-bindings: display: simple: Add boe,bp082wx1-100 8.2" panel
2023-12-02 8:11 [PATCH 1/2] dt-bindings: display: simple: Add boe,bp082wx1-100 8.2" panel Tony Lindgren
2023-12-02 8:11 ` [PATCH 2/2] drm/panel: simple: Add BOE BP082WX1-100 " Tony Lindgren
@ 2023-12-03 11:21 ` Conor Dooley
1 sibling, 0 replies; 4+ messages in thread
From: Conor Dooley @ 2023-12-03 11:21 UTC (permalink / raw)
To: Tony Lindgren
Cc: Neil Armstrong, Jessica Zhang, Sam Ravnborg, Maarten Lankhorst,
Maxime Ripard, Thomas Zimmermann, David Airlie, Daniel Vetter,
Rob Herring, Krzysztof Kozlowski, Conor Dooley, Thierry Reding,
Carl Philipp Klemm, Ivaylo Dimitrov, Merlijn Wajer, Pavel Machek,
Sebastian Reichel, dri-devel, devicetree
[-- Attachment #1: Type: text/plain, Size: 1120 bytes --]
On Sat, Dec 02, 2023 at 10:11:52AM +0200, Tony Lindgren wrote:
> This panel is found on Motorola mapphone tablets mz607 to mz609.
Acked-by: Conor Dooley <conor.dooley@microchip.com>
Cheers,
Conor.
>
> 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 BP082WX1-100 8.2" WXGA (1280x800) LVDS panel
> + - boe,bp082wx1-100
> # BOE BP101WX1-100 10.1" WXGA (1280x800) LVDS panel
> - boe,bp101wx1-100
> # BOE EV121WXM-N10-1850 12.1" WXGA (1280x800) TFT LCD panel
> --
> 2.43.0
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 228 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH 2/2] drm/panel: simple: Add BOE BP082WX1-100 8.2" panel
2023-12-02 8:11 ` [PATCH 2/2] drm/panel: simple: Add BOE BP082WX1-100 " Tony Lindgren
@ 2023-12-03 23:30 ` Dmitry Baryshkov
0 siblings, 0 replies; 4+ messages in thread
From: Dmitry Baryshkov @ 2023-12-03 23:30 UTC (permalink / raw)
To: Tony Lindgren
Cc: Neil Armstrong, Jessica Zhang, Sam Ravnborg, David Airlie,
Daniel Vetter, Maarten Lankhorst, Maxime Ripard,
Thomas Zimmermann, Rob Herring, Krzysztof Kozlowski, Conor Dooley,
Thierry Reding, Carl Philipp Klemm, devicetree, Ivaylo Dimitrov,
Merlijn Wajer, Sebastian Reichel, dri-devel, Pavel Machek
On Sat, 2 Dec 2023 at 10:13, Tony Lindgren <tony@atomide.com> wrote:
>
> The BOE BP082WX1-100 is a 8.2" panel similar to the 10.1" panel
> BP101WX1-100. Both panels use the same timings.
>
> Signed-off-by: Tony Lindgren <tony@atomide.com>
Reviewed-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
> ---
> drivers/gpu/drm/panel/panel-simple.c | 20 ++++++++++++++++++++
> 1 file changed, 20 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
> @@ -1336,6 +1336,23 @@ static const struct drm_display_mode boe_bp101wx1_100_mode = {
> .vtotal = 800 + 6 + 8 + 2,
> };
>
> +static const struct panel_desc boe_bp082wx1_100 = {
> + .modes = &boe_bp101wx1_100_mode,
> + .num_modes = 1,
> + .bpc = 8,
> + .size = {
> + .width = 180,
> + .height = 114,
Nit: Panelook gives following dimensions: 176.64(W)×110.4(H) mm
> + },
> + .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 panel_desc boe_bp101wx1_100 = {
> .modes = &boe_bp101wx1_100_mode,
> .num_modes = 1,
> @@ -4281,6 +4298,9 @@ static const struct of_device_id platform_of_match[] = {
> }, {
> .compatible = "bananapi,s070wv20-ct16",
> .data = &bananapi_s070wv20_ct16,
> + }, {
> + .compatible = "boe,bp082wx1-100",
> + .data = &boe_bp082wx1_100,
> }, {
> .compatible = "boe,bp101wx1-100",
> .data = &boe_bp101wx1_100,
> --
> 2.43.0
--
With best wishes
Dmitry
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2023-12-03 23:31 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-12-02 8:11 [PATCH 1/2] dt-bindings: display: simple: Add boe,bp082wx1-100 8.2" panel Tony Lindgren
2023-12-02 8:11 ` [PATCH 2/2] drm/panel: simple: Add BOE BP082WX1-100 " Tony Lindgren
2023-12-03 23:30 ` Dmitry Baryshkov
2023-12-03 11:21 ` [PATCH 1/2] dt-bindings: display: simple: Add boe,bp082wx1-100 " Conor Dooley
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox