From: Bjorn Andersson <bjorn.andersson@linaro.org>
To: Sam Ravnborg <sam@ravnborg.org>
Cc: David Airlie <airlied@linux.ie>,
linux-kernel@vger.kernel.org, dri-devel@lists.freedesktop.org,
Thierry Reding <thierry.reding@gmail.com>
Subject: Re: [PATCH] panel: simple: Add Ivo M133NWF4 R0
Date: Thu, 2 Jan 2020 21:34:20 -0800 [thread overview]
Message-ID: <20200103053420.GT549437@yoga> (raw)
In-Reply-To: <20200102085557.GA29446@ravnborg.org>
On Thu 02 Jan 00:55 PST 2020, Sam Ravnborg wrote:
> Hi Bjorn.
>
> On Sat, Dec 28, 2019 at 10:06:58PM -0800, Bjorn Andersson wrote:
> > The InfoVision Optoelectronics M133NWF4 R0 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 | 31 ++++++++++++++++++++++++++++
> > 1 file changed, 31 insertions(+)
> >
> > diff --git a/drivers/gpu/drm/panel/panel-simple.c b/drivers/gpu/drm/panel/panel-simple.c
> > index ba3f85f36c2f..d7ae0ede2b6e 100644
> > --- a/drivers/gpu/drm/panel/panel-simple.c
> > +++ b/drivers/gpu/drm/panel/panel-simple.c
> > @@ -1806,6 +1806,34 @@ static const struct panel_desc innolux_zj070na_01p = {
> > },
> > };
> >
> > +static const struct drm_display_mode ivo_m133nwf4_r0_mode = {
> > + .clock = 138778,
> > + .hdisplay = 1920,
> > + .hsync_start = 1920 + 24,
> > + .hsync_end = 1920 + 24 + 48,
> > + .htotal = 1920 + 24 + 48 + 88,
> > + .vdisplay = 1080,
> > + .vsync_start = 1080 + 3,
> > + .vsync_end = 1080 + 3 + 12,
> > + .vtotal = 1080 + 3 + 12 + 17,
> > + .vrefresh = 60,
> > + .flags = DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC,
> > +};
> > +
> > +static const struct panel_desc ivo_m133nwf4_r0 = {
> > + .modes = &ivo_m133nwf4_r0_mode,
> > + .num_modes = 1,
> > + .bpc = 8,
> > + .size = {
> > + .width = 294,
> > + .height = 165,
> > + },
> > + .delay = {
> > + .hpd_absent_delay = 200,
> > + .unprepare = 500,
> > + },
> > +};
>
> For new bindings - at least add connector_type.
> And consider bus_format and bus_flags too.
>
Sure thing, will update the two patches.
>
> > +
> > static const struct display_timing koe_tx14d24vm1bpa_timing = {
> > .pixelclock = { 5580000, 5850000, 6200000 },
> > .hactive = { 320, 320, 320 },
> > @@ -3266,6 +3294,9 @@ static const struct of_device_id platform_of_match[] = {
> > }, {
> > .compatible = "innolux,zj070na-01p",
> > .data = &innolux_zj070na_01p,
> > + }, {
> > + .compatible = "ivo,m133nwf4-r0",
> Compatible must be documented in a binding file.
> We are discussing a new binding format where it is simple to add
> a new panel. But no final conclusion yet.
>
Okay, will spin some DT bindings for these as well.
Thanks,
Bjorn
> The comments above (in panel_desc and here) also apply for the
> other patch you sent.
>
> Sam
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel
WARNING: multiple messages have this Message-ID (diff)
From: Bjorn Andersson <bjorn.andersson@linaro.org>
To: Sam Ravnborg <sam@ravnborg.org>
Cc: Thierry Reding <thierry.reding@gmail.com>,
David Airlie <airlied@linux.ie>, Daniel Vetter <daniel@ffwll.ch>,
dri-devel@lists.freedesktop.org, linux-kernel@vger.kernel.org,
Rob Clark <robdclark@gmail.com>
Subject: Re: [PATCH] panel: simple: Add Ivo M133NWF4 R0
Date: Thu, 2 Jan 2020 21:34:20 -0800 [thread overview]
Message-ID: <20200103053420.GT549437@yoga> (raw)
In-Reply-To: <20200102085557.GA29446@ravnborg.org>
On Thu 02 Jan 00:55 PST 2020, Sam Ravnborg wrote:
> Hi Bjorn.
>
> On Sat, Dec 28, 2019 at 10:06:58PM -0800, Bjorn Andersson wrote:
> > The InfoVision Optoelectronics M133NWF4 R0 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 | 31 ++++++++++++++++++++++++++++
> > 1 file changed, 31 insertions(+)
> >
> > diff --git a/drivers/gpu/drm/panel/panel-simple.c b/drivers/gpu/drm/panel/panel-simple.c
> > index ba3f85f36c2f..d7ae0ede2b6e 100644
> > --- a/drivers/gpu/drm/panel/panel-simple.c
> > +++ b/drivers/gpu/drm/panel/panel-simple.c
> > @@ -1806,6 +1806,34 @@ static const struct panel_desc innolux_zj070na_01p = {
> > },
> > };
> >
> > +static const struct drm_display_mode ivo_m133nwf4_r0_mode = {
> > + .clock = 138778,
> > + .hdisplay = 1920,
> > + .hsync_start = 1920 + 24,
> > + .hsync_end = 1920 + 24 + 48,
> > + .htotal = 1920 + 24 + 48 + 88,
> > + .vdisplay = 1080,
> > + .vsync_start = 1080 + 3,
> > + .vsync_end = 1080 + 3 + 12,
> > + .vtotal = 1080 + 3 + 12 + 17,
> > + .vrefresh = 60,
> > + .flags = DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC,
> > +};
> > +
> > +static const struct panel_desc ivo_m133nwf4_r0 = {
> > + .modes = &ivo_m133nwf4_r0_mode,
> > + .num_modes = 1,
> > + .bpc = 8,
> > + .size = {
> > + .width = 294,
> > + .height = 165,
> > + },
> > + .delay = {
> > + .hpd_absent_delay = 200,
> > + .unprepare = 500,
> > + },
> > +};
>
> For new bindings - at least add connector_type.
> And consider bus_format and bus_flags too.
>
Sure thing, will update the two patches.
>
> > +
> > static const struct display_timing koe_tx14d24vm1bpa_timing = {
> > .pixelclock = { 5580000, 5850000, 6200000 },
> > .hactive = { 320, 320, 320 },
> > @@ -3266,6 +3294,9 @@ static const struct of_device_id platform_of_match[] = {
> > }, {
> > .compatible = "innolux,zj070na-01p",
> > .data = &innolux_zj070na_01p,
> > + }, {
> > + .compatible = "ivo,m133nwf4-r0",
> Compatible must be documented in a binding file.
> We are discussing a new binding format where it is simple to add
> a new panel. But no final conclusion yet.
>
Okay, will spin some DT bindings for these as well.
Thanks,
Bjorn
> The comments above (in panel_desc and here) also apply for the
> other patch you sent.
>
> Sam
next prev parent reply other threads:[~2020-01-04 11:24 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-12-29 6:06 [PATCH] panel: simple: Add Ivo M133NWF4 R0 Bjorn Andersson
2019-12-29 6:06 ` Bjorn Andersson
2020-01-02 8:55 ` Sam Ravnborg
2020-01-02 8:55 ` Sam Ravnborg
2020-01-03 5:34 ` Bjorn Andersson [this message]
2020-01-03 5:34 ` Bjorn Andersson
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=20200103053420.GT549437@yoga \
--to=bjorn.andersson@linaro.org \
--cc=airlied@linux.ie \
--cc=dri-devel@lists.freedesktop.org \
--cc=linux-kernel@vger.kernel.org \
--cc=sam@ravnborg.org \
--cc=thierry.reding@gmail.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.