public inbox for linux-media@vger.kernel.org
 help / color / mirror / Atom feed
From: Jammy Huang <jammy_huang@aspeedtech.com>
To: Joel Stanley <joel@jms.id.au>
Cc: Eddie James <eajames@linux.ibm.com>,
	Mauro Carvalho Chehab <mchehab@kernel.org>,
	Andrew Jeffery <andrew@aj.id.au>,
	"linux-media@vger.kernel.org" <linux-media@vger.kernel.org>,
	OpenBMC Maillist <openbmc@lists.ozlabs.org>,
	Linux ARM <linux-arm-kernel@lists.infradead.org>,
	linux-aspeed <linux-aspeed@lists.ozlabs.org>,
	Linux Kernel Mailing List <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH 2/4] media: aspeed: Use FIELD_GET to improve readability
Date: Wed, 22 Dec 2021 14:10:12 +0800	[thread overview]
Message-ID: <203e9233-c32d-1c16-be0e-3d95ef1c3829@aspeedtech.com> (raw)
In-Reply-To: <CACPK8XcmcP=vu8pWVKdiQVokPyh39Tuy0mfmgPSzb0wb0tcJuA@mail.gmail.com>

Hi Joel,

OK, I will update in next patch as you advised.
Thanks for your review.

On 2021/12/22 上午 08:59, Joel Stanley wrote:
> On Fri, 17 Dec 2021 at 09:53, Jammy Huang <jammy_huang@aspeedtech.com> wrote:
>> Use the bitfield macro FIELD_GET, and GENMASK to do the shift and mask in
>> one go for reg values.
>>
>> Signed-off-by: Jammy Huang <jammy_huang@aspeedtech.com>
>> ---
>>   drivers/media/platform/aspeed-video.c | 35 ++++++++++++---------------
>>   1 file changed, 16 insertions(+), 19 deletions(-)
>>
>> diff --git a/drivers/media/platform/aspeed-video.c b/drivers/media/platform/aspeed-video.c
>> index d5f77b205175..581a4261f9b7 100644
>> --- a/drivers/media/platform/aspeed-video.c
>> +++ b/drivers/media/platform/aspeed-video.c
>> @@ -156,26 +156,22 @@
>>   #define  VE_SRC_LR_EDGE_DET_NO_H       BIT(13)
>>   #define  VE_SRC_LR_EDGE_DET_NO_DISP    BIT(14)
>>   #define  VE_SRC_LR_EDGE_DET_NO_CLK     BIT(15)
>> -#define  VE_SRC_LR_EDGE_DET_RT_SHF     16
>> -#define  VE_SRC_LR_EDGE_DET_RT         GENMASK(27, VE_SRC_LR_EDGE_DET_RT_SHF)
>> +#define  VE_SRC_LR_EDGE_DET_RT         GENMASK(27, 16)
>>   #define  VE_SRC_LR_EDGE_DET_INTERLACE  BIT(31)
>>
>>   #define VE_SRC_TB_EDGE_DET             0x094
>>   #define  VE_SRC_TB_EDGE_DET_TOP                GENMASK(12, 0)
>> -#define  VE_SRC_TB_EDGE_DET_BOT_SHF    16
>> -#define  VE_SRC_TB_EDGE_DET_BOT                GENMASK(28, VE_SRC_TB_EDGE_DET_BOT_SHF)
>> +#define  VE_SRC_TB_EDGE_DET_BOT                GENMASK(28, 16)
>>
>>   #define VE_MODE_DETECT_STATUS          0x098
>>   #define  VE_MODE_DETECT_H_PERIOD       GENMASK(11, 0)
>> -#define  VE_MODE_DETECT_V_LINES_SHF    16
>> -#define  VE_MODE_DETECT_V_LINES                GENMASK(27, VE_MODE_DETECT_V_LINES_SHF)
>> +#define  VE_MODE_DETECT_V_LINES                GENMASK(27, 16)
>>   #define  VE_MODE_DETECT_STATUS_VSYNC   BIT(28)
>>   #define  VE_MODE_DETECT_STATUS_HSYNC   BIT(29)
>>
>>   #define VE_SYNC_STATUS                 0x09c
>>   #define  VE_SYNC_STATUS_HSYNC          GENMASK(11, 0)
>> -#define  VE_SYNC_STATUS_VSYNC_SHF      16
>> -#define  VE_SYNC_STATUS_VSYNC          GENMASK(27, VE_SYNC_STATUS_VSYNC_SHF)
>> +#define  VE_SYNC_STATUS_VSYNC          GENMASK(27, 16)
>>
>>   #define VE_H_TOTAL_PIXELS              0x0A0
>>
>> @@ -988,23 +984,24 @@ static void aspeed_video_get_resolution(struct aspeed_video *video)
>>                  sync = aspeed_video_read(video, VE_SYNC_STATUS);
>>                  htotal = aspeed_video_read(video, VE_H_TOTAL_PIXELS);
>>
>> -               video->frame_bottom = (src_tb_edge & VE_SRC_TB_EDGE_DET_BOT) >>
>> -                       VE_SRC_TB_EDGE_DET_BOT_SHF;
>> -               video->frame_top = src_tb_edge & VE_SRC_TB_EDGE_DET_TOP;
>> +               video->frame_bottom = FIELD_GET(VE_SRC_TB_EDGE_DET_BOT,
>> +                                               src_tb_edge);
>> +               video->frame_top = FIELD_GET(VE_SRC_TB_EDGE_DET_TOP,
>> +                                            src_tb_edge);
>>                  det->vfrontporch = video->frame_top;
>> -               det->vbackporch = ((mds & VE_MODE_DETECT_V_LINES) >>
>> -                       VE_MODE_DETECT_V_LINES_SHF) - video->frame_bottom;
>> -               det->vsync = (sync & VE_SYNC_STATUS_VSYNC) >>
>> -                       VE_SYNC_STATUS_VSYNC_SHF;
>> +               det->vbackporch = FIELD_GET(VE_MODE_DETECT_V_LINES, mds) -
>> +                       video->frame_bottom;
>> +               det->vsync = FIELD_GET(VE_SYNC_STATUS_VSYNC, sync);
>>                  if (video->frame_top > video->frame_bottom)
>>                          continue;
>>
>> -               video->frame_right = (src_lr_edge & VE_SRC_LR_EDGE_DET_RT) >>
>> -                       VE_SRC_LR_EDGE_DET_RT_SHF;
>> -               video->frame_left = src_lr_edge & VE_SRC_LR_EDGE_DET_LEFT;
>> +               video->frame_right = FIELD_GET(VE_SRC_LR_EDGE_DET_RT,
>> +                                              src_lr_edge);
>> +               video->frame_left = FIELD_GET(VE_SRC_LR_EDGE_DET_LEFT,
>> +                                             src_lr_edge);
> I suggest putting these on one line to further improve readability:
>
>                 video->frame_right = FIELD_GET(VE_SRC_LR_EDGE_DET_RT,
> src_lr_edge);
>                 video->frame_left = FIELD_GET(VE_SRC_LR_EDGE_DET_LEFT,
> src_lr_edge);
>
> The same for the other lines you've changed above.
>
> And then add:
>
> Reviewed-by: Joel Stanley <joel@jms.id.au>
>
>>                  det->hfrontporch = video->frame_left;
>>                  det->hbackporch = htotal - video->frame_right;
>> -               det->hsync = sync & VE_SYNC_STATUS_HSYNC;
>> +               det->hsync = FIELD_GET(VE_SYNC_STATUS_HSYNC, sync);
>>                  if (video->frame_left > video->frame_right)
>>                          continue;
>>
>> --
>> 2.25.1
>>
-- 
Best Regards
Jammy


  reply	other threads:[~2021-12-22  6:11 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-12-17  9:53 [PATCH 0/4] Correct timing report Jammy Huang
2021-12-17  9:54 ` [PATCH 1/4] media: aspeed: Correct value for h-total-pixels Jammy Huang
2021-12-22  0:54   ` Joel Stanley
2021-12-17  9:54 ` [PATCH 2/4] media: aspeed: Use FIELD_GET to improve readability Jammy Huang
2021-12-22  0:59   ` Joel Stanley
2021-12-22  6:10     ` Jammy Huang [this message]
2021-12-17  9:54 ` [PATCH 3/4] media: aspeed: Correct values for detected timing Jammy Huang
2021-12-22  1:31   ` Joel Stanley
2021-12-22  6:11     ` Jammy Huang
2021-12-17  9:54 ` [PATCH 4/4] media: aspeed: Fix timing polarity incorrect Jammy Huang
2021-12-22  1:22   ` Joel Stanley
2021-12-22  6:10     ` Jammy Huang

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=203e9233-c32d-1c16-be0e-3d95ef1c3829@aspeedtech.com \
    --to=jammy_huang@aspeedtech.com \
    --cc=andrew@aj.id.au \
    --cc=eajames@linux.ibm.com \
    --cc=joel@jms.id.au \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-aspeed@lists.ozlabs.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-media@vger.kernel.org \
    --cc=mchehab@kernel.org \
    --cc=openbmc@lists.ozlabs.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