Devicetree
 help / color / mirror / Atom feed
From: Vishnu Saini <vishnu.saini@oss.qualcomm.com>
To: Neil Armstrong <neil.armstrong@linaro.org>
Cc: Laurent Pinchart <laurent.pinchart@ideasonboard.com>,
	Jessica Zhang <jesszhan0024@gmail.com>,
	Maarten Lankhorst <maarten.lankhorst@linux.intel.com>,
	Maxime Ripard <mripard@kernel.org>,
	Thomas Zimmermann <tzimmermann@suse.de>,
	David Airlie <airlied@gmail.com>, Simona Vetter <simona@ffwll.ch>,
	Rob Herring <robh@kernel.org>,
	Krzysztof Kozlowski <krzk+dt@kernel.org>,
	Conor Dooley <conor+dt@kernel.org>,
	Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>,
	Thierry Reding <thierry.reding@gmail.com>,
	Liu Ying <victor.liu@nxp.com>, Sam Ravnborg <sam@ravnborg.org>,
	dri-devel@lists.freedesktop.org, devicetree@vger.kernel.org,
	linux-kernel@vger.kernel.org, venkata.valluru@oss.qualcomm.com
Subject: Re: [PATCH v3 2/2] drm/panel: simple: Add BOE DV215FHM-R01 panel
Date: Wed, 2 Sep 2026 20:09:17 +0530	[thread overview]
Message-ID: <apg1FV3HtU0c+hVF@hu-vishsain-blr.qualcomm.com> (raw)
In-Reply-To: <1021133b-454a-4f49-965b-a71e065e556f@linaro.org>

On Wed, Aug 26, 2026 at 12:01:17PM +0200, Neil Armstrong wrote:
> On 8/14/26 07:25, Vishnu Saini wrote:
> > Add the BOE DV215FHM-R01 21.5" FHD (1920x1080) dual-channel
> > LVDS panel.
> > 
> > Signed-off-by: Vishnu Saini <vishnu.saini@oss.qualcomm.com>
> > ---
> >   drivers/gpu/drm/panel/panel-simple.c | 28 ++++++++++++++++++++++++++++
> >   1 file changed, 28 insertions(+)
> > 
> > diff --git a/drivers/gpu/drm/panel/panel-simple.c b/drivers/gpu/drm/panel/panel-simple.c
> > index 5c169fdf265c..d95f842c8980 100644
> > --- a/drivers/gpu/drm/panel/panel-simple.c
> > +++ b/drivers/gpu/drm/panel/panel-simple.c
> > @@ -1563,6 +1563,31 @@ static const struct panel_desc boe_bp101wx1_100 = {
> >   	.connector_type = DRM_MODE_CONNECTOR_LVDS,
> >   };
> > +static const struct display_timing boe_dv215fhm_r01_timing = {
> > +	.pixelclock = { 148500000, 148500000, 148500000 },
> > +	.hactive = { 1920, 1920, 1920 },
> > +	.hfront_porch = { 88, 88, 88 },
> > +	.hback_porch = { 148, 148, 148 },
> > +	.hsync_len = { 44, 44, 44 },
> > +	.vactive = { 1080, 1080, 1080 },
> > +	.vfront_porch = { 4, 4, 4 },
> > +	.vback_porch = { 36, 36, 36 },
> > +	.vsync_len = { 5, 5, 5 },
> > +	.flags = DISPLAY_FLAGS_DE_HIGH,
> > +};
> > +
> > +static const struct panel_desc boe_dv215fhm_r01 = {
> > +	.timings = &boe_dv215fhm_r01_timing,
> > +	.num_timings = 1,
> > +	.bpc = 8,
> > +	.size = {
> > +		.width = 476,
> > +		.height = 268,
> > +	},
> > +	.bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
> > +	.connector_type = DRM_MODE_CONNECTOR_LVDS,
> > +};
> > +
> >   static const struct display_timing boe_ev121wxm_n10_1850_timing = {
> >   	.pixelclock = { 69922000, 71000000, 72293000 },
> >   	.hactive = { 1280, 1280, 1280 },
> > @@ -5726,6 +5751,9 @@ static const struct of_device_id platform_of_match[] = {
> >   	}, {
> >   		.compatible = "boe,bp101wx1-100",
> >   		.data = &boe_bp101wx1_100,
> > +	}, {
> > +		.compatible = "boe,dv215fhm-r01",
> > +		.data = &boe_dv215fhm_r01,
> >   	}, {
> >   		.compatible = "boe,ev121wxm-n10-1850",
> >   		.data = &boe_ev121wxm_n10_1850,
> > 
> 
> Reviewed-by: Neil Armstrong <neil.armstrong@linaro.org>

Thank you, will rebase it and submit next revision. 
> Thanks,
> Neil

      reply	other threads:[~2026-09-02 14:39 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-08-14  5:25 [PATCH v3 0/2] drm/panel: Add BOE DV215FHM-R01 LVDS panel support Vishnu Saini
2026-08-14  5:25 ` [PATCH v3 1/2] dt-bindings: display: simple: Add boe,dv215fhm-r01 compatible Vishnu Saini
2026-08-14  7:22   ` Liu Ying
2026-08-14  5:25 ` [PATCH v3 2/2] drm/panel: simple: Add BOE DV215FHM-R01 panel Vishnu Saini
2026-08-26 10:01   ` Neil Armstrong
2026-09-02 14:39     ` Vishnu Saini [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=apg1FV3HtU0c+hVF@hu-vishsain-blr.qualcomm.com \
    --to=vishnu.saini@oss.qualcomm.com \
    --cc=airlied@gmail.com \
    --cc=conor+dt@kernel.org \
    --cc=devicetree@vger.kernel.org \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=jesszhan0024@gmail.com \
    --cc=krzk+dt@kernel.org \
    --cc=laurent.pinchart@ideasonboard.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=maarten.lankhorst@linux.intel.com \
    --cc=mripard@kernel.org \
    --cc=neil.armstrong@linaro.org \
    --cc=prabhakar.mahadev-lad.rj@bp.renesas.com \
    --cc=robh@kernel.org \
    --cc=sam@ravnborg.org \
    --cc=simona@ffwll.ch \
    --cc=thierry.reding@gmail.com \
    --cc=tzimmermann@suse.de \
    --cc=venkata.valluru@oss.qualcomm.com \
    --cc=victor.liu@nxp.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox