From: "Nuno Sá" <noname.nuno@gmail.com>
To: Alexandru Ardelean <alex@shruggie.ro>, Robert Foss <rfoss@kernel.org>
Cc: linux-kernel@vger.kernel.org, dri-devel@lists.freedesktop.org,
bogdan.togorean@analog.com, nuno.sa@analog.com, daniel@ffwll.ch,
airlied@gmail.com, jonas@kwiboo.se,
Laurent.pinchart@ideasonboard.com, neil.armstrong@linaro.org,
andrzej.hajda@intel.com, festevam@gmail.com
Subject: Re: [PATCH v3] drm: adv7511: Fix low refresh rate register for ADV7533/5
Date: Tue, 18 Jul 2023 14:21:19 +0200 [thread overview]
Message-ID: <c39c46dcd8302573334e6dced459c3f146f445b8.camel@gmail.com> (raw)
In-Reply-To: <CAH3L5QoYgU7HVF-Dc2ZJVcK-paoxwh0ZHWWxBhYudm+Mjvt7tA@mail.gmail.com>
On Tue, 2023-07-18 at 14:45 +0300, Alexandru Ardelean wrote:
> On Tue, Jul 18, 2023 at 11:50 AM Robert Foss <rfoss@kernel.org> wrote:
> >
> > On Tue, Jul 18, 2023 at 10:42 AM Alexandru Ardelean <alex@shruggie.ro>
> > wrote:
> > >
> > > From: Bogdan Togorean <bogdan.togorean@analog.com>
> > >
> > > For ADV7533 and ADV7535 low refresh rate is selected using
> > > bits [3:2] of 0x4a main register.
> > > So depending on ADV model write 0xfb or 0x4a register.
> > >
> > > Fixes: 2437e7cd88e8 ("drm/bridge: adv7533: Initial support for ADV7533")
> > > Reviewed-by: Nuno Sa <nuno.sa@analog.com>
> > > Signed-off-by: Bogdan Togorean <bogdan.togorean@analog.com>
> > > Signed-off-by: Alexandru Ardelean <alex@shruggie.ro>
> > > ---
> > >
> > > Changelog v2 -> v3:
> > > *
> > > https://lore.kernel.org/dri-devel/1c3fde3a873b0f948d3c4d37107c5bb67dc9f7bb.camel@gmail.com/T/#u
> > > * Added my S-o-b tag back
> > >
> > > Changelog v1 -> v2:
> > > *
> > > https://lore.kernel.org/dri-devel/20190716131005.761-1-bogdan.togorean@analog.com/
> > > * added Fixes: tag
> > > * added Reviewed-by: tag for Nuno
> > >
> > >
> > > drivers/gpu/drm/bridge/adv7511/adv7511_drv.c | 9 +++++++--
> > > 1 file changed, 7 insertions(+), 2 deletions(-)
> > >
> > > diff --git a/drivers/gpu/drm/bridge/adv7511/adv7511_drv.c
> > > b/drivers/gpu/drm/bridge/adv7511/adv7511_drv.c
> > > index ddceafa7b637..09290a377957 100644
> > > --- a/drivers/gpu/drm/bridge/adv7511/adv7511_drv.c
> > > +++ b/drivers/gpu/drm/bridge/adv7511/adv7511_drv.c
> > > @@ -786,8 +786,13 @@ static void adv7511_mode_set(struct adv7511 *adv7511,
> > > else
> > > low_refresh_rate = ADV7511_LOW_REFRESH_RATE_NONE;
> > >
> > > - regmap_update_bits(adv7511->regmap, 0xfb,
> > > - 0x6, low_refresh_rate << 1);
> > > + if (adv7511->type == ADV7511)
> > > + regmap_update_bits(adv7511->regmap, 0xfb,
> > > + 0x6, low_refresh_rate << 1);
> > > + else
> > > + regmap_update_bits(adv7511->regmap, 0x4a,
> > > + 0xc, low_refresh_rate << 2);
> > > +
> > > regmap_update_bits(adv7511->regmap, 0x17,
> > > 0x60, (vsync_polarity << 6) | (hsync_polarity << 5));
> > >
> > > --
> > > 2.41.0
> > >
> >
> > This looks good, but I'm seeing some checkpatch style warnings, with
> > those fixed feel free to add my r-b.
>
> Thanks.
> Will do.
> May I ask what options you are using for checkpatch.pl?
'--strict' should trigger those CHECKS...
Cool enough (or not) it seems the option is not really there when you type
--help
- Nuno Sá
next prev parent reply other threads:[~2023-07-18 12:18 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-07-16 13:10 [PATCH] " Bogdan Togorean
2023-07-18 6:28 ` [PATCH V2] " Alexandru Ardelean
2023-07-18 7:03 ` Nuno Sá
2023-07-18 8:35 ` Alexandru Ardelean
2023-07-18 8:42 ` [PATCH v3] " Alexandru Ardelean
2023-07-18 8:49 ` Robert Foss
2023-07-18 11:45 ` Alexandru Ardelean
2023-07-18 12:21 ` Nuno Sá [this message]
2023-07-19 6:01 ` [PATCH v4] " Alexandru Ardelean
2023-07-20 7:30 ` Alexandru Ardelean
2023-07-20 7:44 ` Frieder Schrempf
2023-07-21 11:48 ` Robert Foss
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=c39c46dcd8302573334e6dced459c3f146f445b8.camel@gmail.com \
--to=noname.nuno@gmail.com \
--cc=Laurent.pinchart@ideasonboard.com \
--cc=airlied@gmail.com \
--cc=alex@shruggie.ro \
--cc=andrzej.hajda@intel.com \
--cc=bogdan.togorean@analog.com \
--cc=daniel@ffwll.ch \
--cc=dri-devel@lists.freedesktop.org \
--cc=festevam@gmail.com \
--cc=jonas@kwiboo.se \
--cc=linux-kernel@vger.kernel.org \
--cc=neil.armstrong@linaro.org \
--cc=nuno.sa@analog.com \
--cc=rfoss@kernel.org \
/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
all inboxes | Powered by JetHome®