From: Andy Shevchenko <andy.shevchenko@gmail.com>
To: Lech Perczak <lech.perczak@camlingroup.com>
Cc: linux-serial@vger.kernel.org,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
"Greg Kroah-Hartman" <gregkh@linuxfoundation.org>,
"Jiri Slaby" <jirislaby@kernel.org>,
"Hugo Villeneuve" <hvilleneuve@dimonoff.com>,
"Krzysztof Drobiński" <k.drobinski@camlintechnologies.com>,
"Paweł Lenkow" <pawel.lenkow@camlingroup.com>,
"Kirill Yatsenko" <kirill.yatsenko@camlingroup.com>
Subject: Re: [PATCH v3 3/3] serial: sc16is7xx: convert bitmask definitions to use BIT() macro
Date: Mon, 26 Aug 2024 16:04:10 +0300 [thread overview]
Message-ID: <Zsx9SqoWIkAyo7cD@smile.fi.intel.com> (raw)
In-Reply-To: <5d1f5d01-c7ab-49f9-b754-1c32043668c5@camlingroup.com>
On Mon, Aug 26, 2024 at 02:35:37PM +0200, Lech Perczak wrote:
> W dniu 23.08.2024 o 19:58, Andy Shevchenko pisze:
> > On Fri, Aug 23, 2024 at 7:55 PM Lech Perczak
> > <lech.perczak@camlingroup.com> wrote:
...
> >> /* IIR register bits */
> >> -#define SC16IS7XX_IIR_NO_INT_BIT (1 << 0) /* No interrupts pending */
> >> -#define SC16IS7XX_IIR_ID_MASK 0x3e /* Mask for the interrupt ID */
> >> -#define SC16IS7XX_IIR_THRI_SRC 0x02 /* TX holding register empty */
> >> -#define SC16IS7XX_IIR_RDI_SRC 0x04 /* RX data interrupt */
> >> -#define SC16IS7XX_IIR_RLSE_SRC 0x06 /* RX line status error */
> >> -#define SC16IS7XX_IIR_RTOI_SRC 0x0c /* RX time-out interrupt */
> >> -#define SC16IS7XX_IIR_MSI_SRC 0x00 /* Modem status interrupt
> >> - * - only on 75x/76x
> >> - */
> >> -#define SC16IS7XX_IIR_INPIN_SRC 0x30 /* Input pin change of state
> >> - * - only on 75x/76x
> >> - */
> >> -#define SC16IS7XX_IIR_XOFFI_SRC 0x10 /* Received Xoff */
> >> -#define SC16IS7XX_IIR_CTSRTS_SRC 0x20 /* nCTS,nRTS change of state
> >> - * from active (LOW)
> >> - * to inactive (HIGH)
> >> - */
> >> +#define SC16IS7XX_IIR_NO_INT_BIT BIT(0) /* No interrupts pending */
> >> +#define SC16IS7XX_IIR_ID_MASK GENMASK(5,1) /* Mask for the interrupt ID */
This is the only change (one definition / line) makes sense in this block.
> > This is okay, but the rest of the bit combinations are better to have
> > to be plain numbers as usually they are listed in this way in the
> > datasheets. Note as well that 0x00 is a valid value which you can't
> > express using BIT() or GENMASK() (and this is usually the main point
> > to *not* convert them to these macros).
> >
> >> +#define SC16IS7XX_IIR_THRI_SRC BIT(1) /* TX holding register empty */
> >> +#define SC16IS7XX_IIR_RDI_SRC BIT(2) /* RX data interrupt */
> >> +#define SC16IS7XX_IIR_RLSE_SRC GENMASK(2,1) /* RX line status error */
> >> +#define SC16IS7XX_IIR_RTOI_SRC GENMASK(3,2) /* RX time-out interrupt */
> >> +#define SC16IS7XX_IIR_MSI_SRC 0x00 /* Modem status interrupt
> >> + * - only on 75x/76x
> >> + */
> >> +#define SC16IS7XX_IIR_INPIN_SRC GENMASK(5,4) /* Input pin change of state
> >> + * - only on 75x/76x
> >> + */
> >> +#define SC16IS7XX_IIR_XOFFI_SRC BIT(4) /* Received Xoff */
> >> +#define SC16IS7XX_IIR_CTSRTS_SRC BIT(5) /* nCTS,nRTS change of state
> >> + * from active (LOW)
> >> + * to inactive (HIGH)
> >> + */
> >
> Before I send out v4, do I get it right, that I should convert back SC16IS7XX_*_SRC
> (i.e. interrupt source constants), and leave the rest as in v3?
See above. I.o.w. change only _MASK and leave the rest as is.
--
With Best Regards,
Andy Shevchenko
prev parent reply other threads:[~2024-08-26 13:04 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-08-23 16:53 [PATCH v3 0/3] serial: sc16is7xx: cosmetic cleanup Lech Perczak
2024-08-23 16:54 ` [PATCH v3 1/3] serial: sc16is7xx: remove SC16IS7XX_MSR_DELTA_MASK Lech Perczak
2024-08-23 16:54 ` [PATCH v3 2/3] serial: sc16is7xx: fix copy-paste errors in EFR_SWFLOWx_BIT constants Lech Perczak
2024-08-23 16:55 ` [PATCH v3 3/3] serial: sc16is7xx: convert bitmask definitions to use BIT() macro Lech Perczak
2024-08-23 17:58 ` Andy Shevchenko
2024-08-26 12:35 ` Lech Perczak
2024-08-26 13:04 ` Andy Shevchenko [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=Zsx9SqoWIkAyo7cD@smile.fi.intel.com \
--to=andy.shevchenko@gmail.com \
--cc=gregkh@linuxfoundation.org \
--cc=hvilleneuve@dimonoff.com \
--cc=jirislaby@kernel.org \
--cc=k.drobinski@camlintechnologies.com \
--cc=kirill.yatsenko@camlingroup.com \
--cc=lech.perczak@camlingroup.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-serial@vger.kernel.org \
--cc=pawel.lenkow@camlingroup.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;
as well as URLs for NNTP newsgroup(s).