All of lore.kernel.org
 help / color / mirror / Atom feed
From: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
To: Biju Das <biju.das.jz@bp.renesas.com>
Cc: Dan Carpenter <dan.carpenter@linaro.org>,
	"linux-renesas-soc@vger.kernel.org" 
	<linux-renesas-soc@vger.kernel.org>
Subject: Re: [bug report] drm: rcar-du: Add RZ/G2L DSI driver
Date: Thu, 15 Jun 2023 15:37:49 +0300	[thread overview]
Message-ID: <20230615123749.GH741@pendragon.ideasonboard.com> (raw)
In-Reply-To: <OS0PR01MB59229EB7C14790662AA225F1865BA@OS0PR01MB5922.jpnprd01.prod.outlook.com>

Hello,

On Thu, Jun 15, 2023 at 06:22:45AM +0000, Biju Das wrote:
> Hi Dan Carpenter,
> 
> Thanks for the feedback.
> 
> + Laurent.
> 
> It is already validated in [1]
> 
> [1] https://elixir.bootlin.com/linux/latest/source/drivers/gpu/drm/rcar-du/rzg2l_mipi_dsi.c#L619
> 
> So we won't get wrong formats in rzg2l_mipi_dsi_set_display_timing().
> 
> Laurent, Please correct me if I am wrong.

The issue is that static checkers can't know that. You should add a
default statement to the switch, possibly with a comment to explain why.

> > -----Original Message-----
> > From: Dan Carpenter <dan.carpenter@linaro.org>
> > Sent: Thursday, June 15, 2023 7:14 AM
> > To: Biju Das <biju.das.jz@bp.renesas.com>
> > Cc: linux-renesas-soc@vger.kernel.org
> > Subject: [bug report] drm: rcar-du: Add RZ/G2L DSI driver
> > 
> > Hello Biju Das,
> > 
> > The patch 7a043f978ed1: "drm: rcar-du: Add RZ/G2L DSI driver" from Sep 20,
> > 2022, leads to the following Smatch static checker warning:
> > 
> > 	drivers/gpu/drm/renesas/rcar-du/rzg2l_mipi_dsi.c:374 rzg2l_mipi_dsi_set_display_timing()
> > 	error: uninitialized symbol 'vich1ppsetr'.
> > 
> > drivers/gpu/drm/renesas/rcar-du/rzg2l_mipi_dsi.c
> >     347 static void rzg2l_mipi_dsi_set_display_timing(struct rzg2l_mipi_dsi *dsi,
> >     348                                               const struct drm_display_mode *mode)
> >     349 {
> >     350         u32 vich1ppsetr;
> >     351         u32 vich1vssetr;
> >     352         u32 vich1vpsetr;
> >     353         u32 vich1hssetr;
> >     354         u32 vich1hpsetr;
> >     355         int dsi_format;
> >     356         u32 delay[2];
> >     357         u8 index;
> >     358
> >     359         /* Configuration for Pixel Packet */
> >     360         dsi_format = mipi_dsi_pixel_format_to_bpp(dsi->format);
> >     361         switch (dsi_format) {
> >     362         case 24:
> >     363                 vich1ppsetr = VICH1PPSETR_DT_RGB24;
> >     364                 break;
> >     365         case 18:
> >     366                 vich1ppsetr = VICH1PPSETR_DT_RGB18;
> >     367                 break;
> > 
> > mipi_dsi_pixel_format_to_bpp() also returns 16 and -EIVNAL.
> > 
> >     368         }
> >     369
> >     370         if ((dsi->mode_flags & MIPI_DSI_MODE_VIDEO_SYNC_PULSE) &&
> >     371             !(dsi->mode_flags & MIPI_DSI_MODE_VIDEO_BURST))
> >     372                 vich1ppsetr |= VICH1PPSETR_TXESYNC_PULSE;
> >     373
> > --> 374         rzg2l_mipi_dsi_link_write(dsi, VICH1PPSETR, vich1ppsetr);
> >                                                             ^^^^^^^^^^^
> > Static checker uninitialized variable warning.
> > 
> >     375
> >     376         /* Configuration for Video Parameters */
> >     377         vich1vssetr = VICH1VSSETR_VACTIVE(mode->vdisplay) |
> >     378                       VICH1VSSETR_VSA(mode->vsync_end - mode->vsync_start);
> >     379         vich1vssetr |= (mode->flags & DRM_MODE_FLAG_PVSYNC) ?
> > 
> > regards,
> > dan carpenter

-- 
Regards,

Laurent Pinchart

  reply	other threads:[~2023-06-15 12:37 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-06-15  6:14 [bug report] drm: rcar-du: Add RZ/G2L DSI driver Dan Carpenter
2023-06-15  6:22 ` Biju Das
2023-06-15 12:37   ` Laurent Pinchart [this message]
2023-06-15 14:10     ` Dan Carpenter
  -- strict thread matches above, loose matches on Subject: below --
2022-11-18 15:01 Dan Carpenter
2022-11-18 15:01 ` Dan Carpenter
2022-11-18 15:20 ` Biju Das
2022-11-18 15:20   ` Biju Das

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=20230615123749.GH741@pendragon.ideasonboard.com \
    --to=laurent.pinchart@ideasonboard.com \
    --cc=biju.das.jz@bp.renesas.com \
    --cc=dan.carpenter@linaro.org \
    --cc=linux-renesas-soc@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 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.