* [PATCH 1/2] dt-bindings: display: simple: Add BOE NV133FHM-N61 @ 2020-04-20 21:57 Bjorn Andersson 2020-04-20 21:57 ` [PATCH 2/2] panel: " Bjorn Andersson 2020-04-25 15:42 ` [PATCH 1/2] dt-bindings: display: " Sam Ravnborg 0 siblings, 2 replies; 4+ messages in thread From: Bjorn Andersson @ 2020-04-20 21:57 UTC (permalink / raw) To: Thierry Reding, Sam Ravnborg, David Airlie, Daniel Vetter, Rob Herring Cc: dri-devel, devicetree, linux-kernel Add the BOE NV133FHM-N61 13.3" FHD (1920x1080) TFT LCD Panel to the compatible list of panel-simple. Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.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 393ffc6acbba..daf86ba18f47 100644 --- a/Documentation/devicetree/bindings/display/panel/panel-simple.yaml +++ b/Documentation/devicetree/bindings/display/panel/panel-simple.yaml @@ -69,6 +69,8 @@ properties: - boe,hv070wsa-100 # BOE OPTOELECTRONICS TECHNOLOGY 10.1" WXGA TFT LCD panel - boe,nv101wxmn51 + # BOE NV133FHM-N61 13.3" FHD (1920x1080) TFT LCD Panel + - boe,nv133fhm-n61 # BOE NV140FHM-N49 14.0" FHD a-Si FT panel - boe,nv140fhmn49 # Boe Corporation 8.0" WUXGA TFT LCD panel -- 2.26.0 ^ permalink raw reply related [flat|nested] 4+ messages in thread
* [PATCH 2/2] panel: simple: Add BOE NV133FHM-N61 2020-04-20 21:57 [PATCH 1/2] dt-bindings: display: simple: Add BOE NV133FHM-N61 Bjorn Andersson @ 2020-04-20 21:57 ` Bjorn Andersson 2020-04-25 15:43 ` Sam Ravnborg 2020-04-25 15:42 ` [PATCH 1/2] dt-bindings: display: " Sam Ravnborg 1 sibling, 1 reply; 4+ messages in thread From: Bjorn Andersson @ 2020-04-20 21:57 UTC (permalink / raw) To: Thierry Reding, Sam Ravnborg, David Airlie, Daniel Vetter Cc: Rob Herring, dri-devel, devicetree, linux-kernel The BOE NV133FHM-N61 panel is a 13.3" 1920x1080 eDP panel, add support for it in panel-simple. Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org> --- 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 3ad828eaefe1..5b92583bccdf 100644 --- a/drivers/gpu/drm/panel/panel-simple.c +++ b/drivers/gpu/drm/panel/panel-simple.c @@ -1124,6 +1124,36 @@ static const struct panel_desc boe_nv140fhmn49 = { .connector_type = DRM_MODE_CONNECTOR_eDP, }; +static const struct drm_display_mode boe_nv133fhm_n61_modes = { + .clock = 147840, + .hdisplay = 1920, + .hsync_start = 1920 + 48, + .hsync_end = 1920 + 48 + 32, + .htotal = 1920 + 48 + 32 + 200, + .vdisplay = 1080, + .vsync_start = 1080 + 3, + .vsync_end = 1080 + 3 + 6, + .vtotal = 1080 + 3 + 6 + 31, + .vrefresh = 60, +}; + +static const struct panel_desc boe_nv133fhm_n61 = { + .modes = &boe_nv133fhm_n61_modes, + .num_modes = 1, + .bpc = 8, + .size = { + .width = 300, + .height = 187, + }, + .delay = { + .hpd_absent_delay = 200, + .unprepare = 500, + }, + .bus_format = MEDIA_BUS_FMT_RGB888_1X24, + .bus_flags = DRM_BUS_FLAG_DATA_MSB_TO_LSB, + .connector_type = DRM_MODE_CONNECTOR_eDP, +}; + static const struct drm_display_mode cdtech_s043wq26h_ct7_mode = { .clock = 9000, .hdisplay = 480, @@ -3478,6 +3508,9 @@ static const struct of_device_id platform_of_match[] = { }, { .compatible = "boe,nv101wxmn51", .data = &boe_nv101wxmn51, + }, { + .compatible = "boe,nv133fhm-n61", + .data = &boe_nv133fhm_n61, }, { .compatible = "boe,nv140fhmn49", .data = &boe_nv140fhmn49, -- 2.26.0 ^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH 2/2] panel: simple: Add BOE NV133FHM-N61 2020-04-20 21:57 ` [PATCH 2/2] panel: " Bjorn Andersson @ 2020-04-25 15:43 ` Sam Ravnborg 0 siblings, 0 replies; 4+ messages in thread From: Sam Ravnborg @ 2020-04-25 15:43 UTC (permalink / raw) To: Bjorn Andersson Cc: Thierry Reding, David Airlie, Daniel Vetter, devicetree, Rob Herring, linux-kernel, dri-devel On Mon, Apr 20, 2020 at 02:57:42PM -0700, Bjorn Andersson wrote: > The BOE NV133FHM-N61 panel is a 13.3" 1920x1080 eDP panel, add support > for it in panel-simple. > > Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org> While applying I fixed so boe_nv133fhm_n61 is defined before boe_nv140fhmn49. Sam > --- > 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 3ad828eaefe1..5b92583bccdf 100644 > --- a/drivers/gpu/drm/panel/panel-simple.c > +++ b/drivers/gpu/drm/panel/panel-simple.c > @@ -1124,6 +1124,36 @@ static const struct panel_desc boe_nv140fhmn49 = { > .connector_type = DRM_MODE_CONNECTOR_eDP, > }; > > +static const struct drm_display_mode boe_nv133fhm_n61_modes = { > + .clock = 147840, > + .hdisplay = 1920, > + .hsync_start = 1920 + 48, > + .hsync_end = 1920 + 48 + 32, > + .htotal = 1920 + 48 + 32 + 200, > + .vdisplay = 1080, > + .vsync_start = 1080 + 3, > + .vsync_end = 1080 + 3 + 6, > + .vtotal = 1080 + 3 + 6 + 31, > + .vrefresh = 60, > +}; > + > +static const struct panel_desc boe_nv133fhm_n61 = { > + .modes = &boe_nv133fhm_n61_modes, > + .num_modes = 1, > + .bpc = 8, > + .size = { > + .width = 300, > + .height = 187, > + }, > + .delay = { > + .hpd_absent_delay = 200, > + .unprepare = 500, > + }, > + .bus_format = MEDIA_BUS_FMT_RGB888_1X24, > + .bus_flags = DRM_BUS_FLAG_DATA_MSB_TO_LSB, > + .connector_type = DRM_MODE_CONNECTOR_eDP, > +}; > + > static const struct drm_display_mode cdtech_s043wq26h_ct7_mode = { > .clock = 9000, > .hdisplay = 480, > @@ -3478,6 +3508,9 @@ static const struct of_device_id platform_of_match[] = { > }, { > .compatible = "boe,nv101wxmn51", > .data = &boe_nv101wxmn51, > + }, { > + .compatible = "boe,nv133fhm-n61", > + .data = &boe_nv133fhm_n61, > }, { > .compatible = "boe,nv140fhmn49", > .data = &boe_nv140fhmn49, > -- > 2.26.0 > > _______________________________________________ > dri-devel mailing list > dri-devel@lists.freedesktop.org > https://lists.freedesktop.org/mailman/listinfo/dri-devel ^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH 1/2] dt-bindings: display: simple: Add BOE NV133FHM-N61 2020-04-20 21:57 [PATCH 1/2] dt-bindings: display: simple: Add BOE NV133FHM-N61 Bjorn Andersson 2020-04-20 21:57 ` [PATCH 2/2] panel: " Bjorn Andersson @ 2020-04-25 15:42 ` Sam Ravnborg 1 sibling, 0 replies; 4+ messages in thread From: Sam Ravnborg @ 2020-04-25 15:42 UTC (permalink / raw) To: Bjorn Andersson Cc: Thierry Reding, David Airlie, Daniel Vetter, Rob Herring, devicetree, linux-kernel, dri-devel On Mon, Apr 20, 2020 at 02:57:41PM -0700, Bjorn Andersson wrote: > Add the BOE NV133FHM-N61 13.3" FHD (1920x1080) TFT LCD Panel to the > compatible list of panel-simple. > > Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org> Applied to drm-misc-next. Sam > --- > .../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 393ffc6acbba..daf86ba18f47 100644 > --- a/Documentation/devicetree/bindings/display/panel/panel-simple.yaml > +++ b/Documentation/devicetree/bindings/display/panel/panel-simple.yaml > @@ -69,6 +69,8 @@ properties: > - boe,hv070wsa-100 > # BOE OPTOELECTRONICS TECHNOLOGY 10.1" WXGA TFT LCD panel > - boe,nv101wxmn51 > + # BOE NV133FHM-N61 13.3" FHD (1920x1080) TFT LCD Panel > + - boe,nv133fhm-n61 > # BOE NV140FHM-N49 14.0" FHD a-Si FT panel > - boe,nv140fhmn49 > # Boe Corporation 8.0" WUXGA TFT LCD panel > -- > 2.26.0 > > _______________________________________________ > dri-devel mailing list > dri-devel@lists.freedesktop.org > https://lists.freedesktop.org/mailman/listinfo/dri-devel ^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2020-04-25 15:44 UTC | newest] Thread overview: 4+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2020-04-20 21:57 [PATCH 1/2] dt-bindings: display: simple: Add BOE NV133FHM-N61 Bjorn Andersson 2020-04-20 21:57 ` [PATCH 2/2] panel: " Bjorn Andersson 2020-04-25 15:43 ` Sam Ravnborg 2020-04-25 15:42 ` [PATCH 1/2] dt-bindings: display: " 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).