From: Sakari Ailus <sakari.ailus@linux.intel.com>
To: Frank Li <Frank.li@oss.nxp.com>
Cc: linux-media@vger.kernel.org, laurent.pinchart@ideasonboard.com,
Dave Stevenson <dave.stevenson@raspberrypi.com>,
Jacopo Mondi <jacopo.mondi@ideasonboard.com>,
Tomi Valkeinen <tomi.valkeinen@ideasonboard.com>,
Jai Luthra <jai.luthra@ideasonboard.com>,
Mehdi Djait <mehdi.djait@linux.intel.com>,
Mattijs Korpershoek <mkorpershoek@kernel.org>
Subject: Re: [PATCH v3 18/29] media: bcm2835-unicam: Remove frame descriptor workaround
Date: Wed, 26 Aug 2026 15:09:08 +0300 [thread overview]
Message-ID: <ao7XZDSq706ZVP9L@kekkonen.localdomain> (raw)
In-Reply-To: <aoyzNT-ILKHt8Vw0@lizhi-Precision-Tower-5810>
Hi Frank,
On Mon, Aug 24, 2026 at 05:10:13PM -0400, Frank Li wrote:
> On Mon, Aug 24, 2026 at 03:14:40PM +0300, Sakari Ailus wrote:
> > As the v4l2_subdev_get_frame_desc() either returns a frame descriptor or
> > returns an error, remove the workaround for drivers that didn't implement
> > the get_frame_desc() pad op. Also handle v4l2_subdev_get_frame_desc()
> > errors.
> >
> > Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com>
> > ---
> > .../media/platform/broadcom/bcm2835-unicam.c | 26 +++++++++----------
> > 1 file changed, 12 insertions(+), 14 deletions(-)
> >
> > diff --git a/drivers/media/platform/broadcom/bcm2835-unicam.c b/drivers/media/platform/broadcom/bcm2835-unicam.c
> > index 2322d3df3915..ba613966c333 100644
> > --- a/drivers/media/platform/broadcom/bcm2835-unicam.c
> > +++ b/drivers/media/platform/broadcom/bcm2835-unicam.c
> > @@ -918,8 +918,8 @@ static int unicam_get_image_vc_dt(struct unicam_device *unicam,
> > return -EINVAL;
> > }
> >
> > -static void unicam_start_rx(struct unicam_device *unicam,
> > - struct v4l2_subdev_state *state)
> > +static int unicam_start_rx(struct unicam_device *unicam,
> > + struct v4l2_subdev_state *state)
> > {
> > struct unicam_node *node = &unicam->node[UNICAM_IMAGE_NODE];
> > const struct unicam_format_info *fmtinfo;
> > @@ -933,7 +933,11 @@ static void unicam_start_rx(struct unicam_device *unicam,
> > fmtinfo = unicam_find_format_by_code(fmt->code,
> > UNICAM_SD_PAD_SOURCE_IMAGE);
> > if (WARN_ON(!fmtinfo))
> > - return;
> > + return -EINVAL;
> > +
> > + ret = unicam_get_image_vc_dt(unicam, state, &vc, &dt);
> > + if (ret)
> > + return ret;
> >
> > /*
> > * Enable lane clocks. The register is structured as follows:
> > @@ -1090,16 +1094,6 @@ static void unicam_start_rx(struct unicam_device *unicam,
> > unicam_wr_dma_addr(node, node->cur_frm);
> > unicam_set_packing_config(unicam, fmtinfo);
> >
> > - ret = unicam_get_image_vc_dt(unicam, state, &vc, &dt);
> > - if (ret) {
> > - /*
> > - * If the source doesn't support frame descriptors, default to
> > - * VC 0 and use the DT corresponding to the format.
> > - */
> > - vc = 0;
> > - dt = fmtinfo->csi_dt;
> > - }
> > -
>
> look likes vc=0, dt=0 change in patch 17 should be in this patch?
It seems like that, yes. The compilers aren't smart enough to figure out
they're not used when not set.
--
Sakari Ailus
next prev parent reply other threads:[~2026-08-26 12:09 UTC|newest]
Thread overview: 90+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-08-24 12:14 [PATCH v3 00/29] Rework frame descriptors Sakari Ailus
2026-08-24 12:14 ` [PATCH v3 01/29] media: v4l2-common: Add helper function media_bus_fmt_to_csi2_(bpp|dt)() Sakari Ailus
2026-08-26 13:18 ` Linus Walleij
2026-08-27 7:45 ` Linus Walleij
2026-08-27 8:50 ` Sakari Ailus
2026-08-27 9:34 ` Sakari Ailus
2026-08-27 22:29 ` Linus Walleij
2026-08-24 12:14 ` [PATCH v3 02/29] media: v4l2-subdev: Align frame descriptor error codes with routing Sakari Ailus
2026-08-27 7:46 ` Linus Walleij
2026-08-24 12:14 ` [PATCH v3 03/29] media: v4l2-subdev: Prepare for changes in getting frame descriptors Sakari Ailus
2026-08-31 12:43 ` Linus Walleij
2026-09-02 11:55 ` Sakari Ailus
2026-08-31 12:44 ` Linus Walleij
2026-09-02 12:00 ` Sakari Ailus
2026-08-24 12:14 ` [PATCH v3 04/29] media: v4l2-subdev: Allow releasing frame descriptors on return Sakari Ailus
2026-08-24 20:34 ` Frank Li
2026-08-31 12:54 ` Linus Walleij
2026-09-02 11:23 ` Sakari Ailus
2026-08-24 12:14 ` [PATCH v3 05/29] media: v4l2-subdev: Allow allocating frame descriptors based on the need Sakari Ailus
2026-08-31 13:18 ` Linus Walleij
2026-09-01 12:30 ` Linus Walleij
2026-08-24 12:14 ` [PATCH v3 06/29] media: v4l2-subdev: Change the maximum number of routes Sakari Ailus
2026-09-01 12:31 ` Linus Walleij
2026-08-24 12:14 ` [PATCH v3 07/29] media: v4l2-subdev: Add frame descriptor passthrough for CSI-2 and DVP Sakari Ailus
2026-08-24 20:43 ` Frank Li
2026-09-01 13:01 ` Linus Walleij
2026-09-02 12:02 ` Sakari Ailus
2026-09-02 13:04 ` Linus Walleij
2026-08-24 12:14 ` [PATCH v3 08/29] media: ds90ub913: Use v4l2_subdev_get_frame_desc_passthrough_csi2() Sakari Ailus
2026-08-24 20:44 ` Frank Li
2026-09-01 13:12 ` Linus Walleij
2026-09-02 12:05 ` Sakari Ailus
2026-08-24 12:14 ` [PATCH v3 09/29] media: ds90ub953: " Sakari Ailus
2026-08-24 20:44 ` Frank Li
2026-09-01 13:17 ` Linus Walleij
2026-08-24 12:14 ` [PATCH v3 10/29] media: nxp: imx8-isi: " Sakari Ailus
2026-08-24 20:44 ` Frank Li
2026-09-01 13:30 ` Linus Walleij
2026-08-24 12:14 ` [PATCH v3 11/29] media: rzg2l-cru: " Sakari Ailus
2026-08-24 20:45 ` Frank Li
2026-09-01 21:18 ` Linus Walleij
2026-09-02 12:22 ` Sakari Ailus
2026-08-24 12:14 ` [PATCH v3 12/29] media: dw-mipi-csi2rx: " Sakari Ailus
2026-08-24 20:46 ` Frank Li
2026-09-01 21:22 ` Linus Walleij
2026-08-24 12:14 ` [PATCH v3 13/29] media: cdn-csi2rc: media: " Sakari Ailus
2026-08-24 20:47 ` Frank Li
2026-08-26 6:41 ` Jai Luthra
2026-09-01 21:43 ` Linus Walleij
2026-08-24 12:14 ` [PATCH v3 14/29] media: v4l2-subdev: Make v4l2_subdev_get_frame_desc_passthrough() static Sakari Ailus
2026-08-24 20:48 ` Frank Li
2026-09-01 22:16 ` Linus Walleij
2026-08-24 12:14 ` [PATCH v3 15/29] media: v4l2-subdev: Return dynamically allocated pass-through routes Sakari Ailus
2026-08-24 21:00 ` Frank Li
2026-08-25 7:36 ` Sakari Ailus
2026-09-02 5:44 ` Linus Walleij
2026-09-02 9:34 ` Linus Walleij
2026-08-24 12:14 ` [PATCH v3 16/29] media: v4l2-subdev: Always return at least one frame descriptor Sakari Ailus
2026-08-24 12:14 ` [PATCH v3 17/29] media: bcm2835-unicam: Use v4l2_subdev_get_frame_desc() Sakari Ailus
2026-08-24 21:07 ` Frank Li
2026-08-25 7:40 ` Sakari Ailus
2026-08-24 12:14 ` [PATCH v3 18/29] media: bcm2835-unicam: Remove frame descriptor workaround Sakari Ailus
2026-08-24 21:10 ` Frank Li
2026-08-26 12:09 ` Sakari Ailus [this message]
2026-08-24 12:14 ` [PATCH v3 19/29] media: nxp: imx8-isi: Use v4l2_subdev_get_frame_desc() Sakari Ailus
2026-08-24 12:14 ` [PATCH v3 20/29] media: raspberrypi: cfe: " Sakari Ailus
2026-08-24 21:11 ` Frank Li
2026-08-24 12:14 ` [PATCH v3 21/29] media: rzg2l-cru: " Sakari Ailus
2026-08-24 21:13 ` Frank Li
2026-08-24 12:14 ` [PATCH v3 22/29] media: rkisp1: " Sakari Ailus
2026-08-24 21:13 ` Frank Li
2026-08-24 12:14 ` [PATCH v3 23/29] media: exynos4-is: " Sakari Ailus
2026-08-24 21:22 ` Frank Li
2026-08-24 12:14 ` [PATCH v3 24/29] media: ti: cal: " Sakari Ailus
2026-08-24 21:26 ` Frank Li
2026-08-25 8:05 ` Sakari Ailus
2026-08-24 12:14 ` [PATCH v3 25/29] media: ipu6: " Sakari Ailus
2026-08-24 21:26 ` Frank Li
2026-08-24 12:14 ` [PATCH v3 26/29] staging: media: ipu7: " Sakari Ailus
2026-08-24 21:27 ` Frank Li
2026-08-24 12:14 ` [PATCH v3 27/29] media: cdns-csi2rc: " Sakari Ailus
2026-08-24 21:29 ` Frank Li
2026-08-26 6:39 ` Jai Luthra
2026-08-24 12:14 ` [PATCH v3 28/29] media: v4l2-subdev: Use v4l2_subdev_get_frame_desc() for passthrough Sakari Ailus
2026-08-24 21:37 ` Frank Li
2026-08-25 7:34 ` Sakari Ailus
2026-08-24 12:14 ` [PATCH v3 29/29] media: j721e-csi2rx: Use v4l2_subdev_get_frame_desc() Sakari Ailus
2026-08-24 21:38 ` Frank Li
2026-08-26 6:36 ` Jai Luthra
2026-08-26 9:58 ` [PATCH v3 00/29] Rework frame descriptors Mattijs Korpershoek
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=ao7XZDSq706ZVP9L@kekkonen.localdomain \
--to=sakari.ailus@linux.intel.com \
--cc=Frank.li@oss.nxp.com \
--cc=dave.stevenson@raspberrypi.com \
--cc=jacopo.mondi@ideasonboard.com \
--cc=jai.luthra@ideasonboard.com \
--cc=laurent.pinchart@ideasonboard.com \
--cc=linux-media@vger.kernel.org \
--cc=mehdi.djait@linux.intel.com \
--cc=mkorpershoek@kernel.org \
--cc=tomi.valkeinen@ideasonboard.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