From: Nick Chan <towinchenmi@gmail.com>
To: Andi Shyti <andi.shyti@kernel.org>
Cc: Krzysztof Kozlowski <krzk@kernel.org>,
Alim Akhtar <alim.akhtar@samsung.com>,
Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
Jiri Slaby <jirislaby@kernel.org>,
linux-arm-kernel@lists.infradead.org,
linux-samsung-soc@vger.kernel.org, linux-kernel@vger.kernel.org,
linux-serial@vger.kernel.org, asahi@lists.linux.dev
Subject: Re: [PATCH v4 1/3] tty: serial: samsung: Use BIT() macro for APPLE_S5L_*
Date: Tue, 10 Sep 2024 22:26:44 +0800 [thread overview]
Message-ID: <a7f7ccb0-1dd2-4df5-a2ad-1fe4c98d67e0@gmail.com> (raw)
In-Reply-To: <lbyvuozxjywyt46w2imk2jvwfas3p43wooj2ioyhufwkyg72da@d6stk7xk4rx4>
On 10/9/2024 20:48, Andi Shyti wrote:
> Hi Nick,
>
> On Mon, Sep 09, 2024 at 04:37:25PM GMT, Nick Chan wrote:
>> New entries using BIT() will be added soon, so change the existing ones
>> for consistency.
>>
>> Signed-off-by: Nick Chan <towinchenmi@gmail.com>
>
> I think this is:
>
> Suggested-by: Krzysztof Kozlowski <krzk@kernel.org>
We will see... Got a bit paranoid after bad things happened with v2 and v3.
>
>> ---
>> include/linux/serial_s3c.h | 12 ++++++------
>> 1 file changed, 6 insertions(+), 6 deletions(-)
>>
>> diff --git a/include/linux/serial_s3c.h b/include/linux/serial_s3c.h
>> index 1672cf0810ef..1e8686695487 100644
>> --- a/include/linux/serial_s3c.h
>> +++ b/include/linux/serial_s3c.h
>> @@ -249,9 +249,9 @@
>> #define APPLE_S5L_UCON_RXTO_ENA 9
>> #define APPLE_S5L_UCON_RXTHRESH_ENA 12
>> #define APPLE_S5L_UCON_TXTHRESH_ENA 13
>> -#define APPLE_S5L_UCON_RXTO_ENA_MSK (1 << APPLE_S5L_UCON_RXTO_ENA)
>> -#define APPLE_S5L_UCON_RXTHRESH_ENA_MSK (1 << APPLE_S5L_UCON_RXTHRESH_ENA)
>> -#define APPLE_S5L_UCON_TXTHRESH_ENA_MSK (1 << APPLE_S5L_UCON_TXTHRESH_ENA)
>> +#define APPLE_S5L_UCON_RXTO_ENA_MSK BIT(APPLE_S5L_UCON_RXTO_ENA)
>> +#define APPLE_S5L_UCON_RXTHRESH_ENA_MSK BIT(APPLE_S5L_UCON_RXTHRESH_ENA)
>> +#define APPLE_S5L_UCON_TXTHRESH_ENA_MSK BIT(APPLE_S5L_UCON_TXTHRESH_ENA)
>>
>> #define APPLE_S5L_UCON_DEFAULT (S3C2410_UCON_TXIRQMODE | \
>> S3C2410_UCON_RXIRQMODE | \
>> @@ -260,9 +260,9 @@
>> APPLE_S5L_UCON_RXTHRESH_ENA_MSK | \
>> APPLE_S5L_UCON_TXTHRESH_ENA_MSK)
>>
>> -#define APPLE_S5L_UTRSTAT_RXTHRESH (1<<4)
>> -#define APPLE_S5L_UTRSTAT_TXTHRESH (1<<5)
>> -#define APPLE_S5L_UTRSTAT_RXTO (1<<9)
>> +#define APPLE_S5L_UTRSTAT_RXTHRESH BIT(4)
>> +#define APPLE_S5L_UTRSTAT_TXTHRESH BIT(5)
>> +#define APPLE_S5L_UTRSTAT_RXTO BIT(9)
>> #define APPLE_S5L_UTRSTAT_ALL_FLAGS (0x3f0)
>
> You could make this GENMASK(0x3f, 4)
Good idea, given the above context I think I may add
Suggested-by: Andi Shyti <andi.shyti@kernel.org>
too. And actually it should be GENMASK(9, 3)
>
> Andi
Nick Chan
next prev parent reply other threads:[~2024-09-10 14:26 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-09-09 8:37 [PATCH v4 0/3] tty: serial: samsung: Serial fixes for Apple A7-A11 SoCs Nick Chan
2024-09-09 8:37 ` [PATCH v4 1/3] tty: serial: samsung: Use BIT() macro for APPLE_S5L_* Nick Chan
2024-09-10 12:48 ` Andi Shyti
2024-09-10 14:26 ` Nick Chan [this message]
2024-09-10 15:33 ` Andi Shyti
2024-09-09 8:37 ` [PATCH v4 2/3] tty: serial: samsung: Fix A7-A11 serial earlycon SError Nick Chan
2024-09-09 8:37 ` [PATCH v4 3/3] tty: serial: samsung: Fix serial rx on Apple A7-A9 Nick Chan
2024-09-09 9:43 ` Kwanghoon Son
2024-09-09 9:51 ` Nick Chan
2024-09-10 1:59 ` Kwanghoon Son
2024-09-10 2:59 ` Nick Chan
2024-09-10 4:15 ` Kwanghoon Son
2024-09-10 12:41 ` Andi Shyti
2024-09-10 12:49 ` Andi Shyti
2024-09-09 13:10 ` [PATCH v4 0/3] tty: serial: samsung: Serial fixes for Apple A7-A11 SoCs Janne Grunau
2024-09-10 12:21 ` Neal Gompa
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=a7f7ccb0-1dd2-4df5-a2ad-1fe4c98d67e0@gmail.com \
--to=towinchenmi@gmail.com \
--cc=alim.akhtar@samsung.com \
--cc=andi.shyti@kernel.org \
--cc=asahi@lists.linux.dev \
--cc=gregkh@linuxfoundation.org \
--cc=jirislaby@kernel.org \
--cc=krzk@kernel.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-samsung-soc@vger.kernel.org \
--cc=linux-serial@vger.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