From: Hans de Goede <johannes.goede@oss.qualcomm.com>
To: Sakari Ailus <sakari.ailus@linux.intel.com>, Kate Hsuan <hpa@redhat.com>
Cc: Mauro Carvalho Chehab <mchehab@kernel.org>,
linux-media@vger.kernel.org, linux-kernel@vger.kernel.org,
Hans de Goede <hansg@kernel.org>
Subject: Re: [PATCH v11] media: Add t4ka3 camera sensor driver
Date: Tue, 17 Mar 2026 13:24:57 +0100 [thread overview]
Message-ID: <a3f89715-b937-4858-9a44-8d8d634cf97a@oss.qualcomm.com> (raw)
In-Reply-To: <abh9evUPzozh40k-@kekkonen.localdomain>
Hi Sakari,
On 16-Mar-26 23:00, Sakari Ailus wrote:
<snip>
>> diff --git a/drivers/media/i2c/t4ka3.c b/drivers/media/i2c/t4ka3.c
>> new file mode 100644
>> index 000000000000..d9af5e51f7a8
>> --- /dev/null
>> +++ b/drivers/media/i2c/t4ka3.c
<snip>
>> +static struct v4l2_mbus_framefmt *t4ka3_get_active_format(struct t4ka3_data *sensor)
>> +{
>> + struct v4l2_subdev_state *active_state =
>> + v4l2_subdev_get_locked_active_state(&sensor->sd);
>> +
>> + return v4l2_subdev_state_get_format(active_state, 0);
>> +}
>> +
>> +static struct v4l2_rect *t4ka3_get_active_crop(struct t4ka3_data *sensor)
>> +{
>> + struct v4l2_subdev_state *active_state =
>> + v4l2_subdev_get_locked_active_state(&sensor->sd);
>> +
>> + return v4l2_subdev_state_get_crop(active_state, 0);
>
> Please avoid adding such helpers.
The problem is that we need to know the active-fmt/-crop in some places
without access to it. E.g. when the vblank ctrl gets set this influences
the range of the exposure control, so we need active_fmt.height to
calculate the values to pass to v4l2_ctrl_modify_range() and we need
this from a v4l2_ctrl_ops.s_ctrl callback which does not get passed
in the (active) fmt.
Since the ctrl lock is used as the main sensor-driver lock too,
we can always safely call v4l2_subdev_get_locked_active_state()
in these cases, since we are always holding the lock.
The alternative would be to store a copy of the active fmt/crop
inside struct t4ka3_data, but I thought that the whole direction
for sensor drivers was to stop having (and needing to update) their
own shadow copy of the active_state and instead direct use
the active_state ?
<snip>
>> +static int t4ka3_s_ctrl(struct v4l2_ctrl *ctrl)
>> +{
>> + struct t4ka3_data *sensor = ctrl_to_t4ka3(ctrl);
>> + struct v4l2_mbus_framefmt *fmt;
>> + int ret;
>> +
>> + /* Update exposure range on vblank changes */
>> + if (ctrl->id == V4L2_CID_VBLANK) {
>> + ret = t4ka3_update_exposure_range(sensor);
>> + if (ret)
>> + return ret;
>> + }
>> +
>> + fmt = t4ka3_get_active_format(sensor);
>
> You could assign this in declaration.
>
>> +
>> + /* Only apply changes to the controls if the device is powered up */
>> + if (!pm_runtime_get_if_in_use(sensor->sd.dev)) {
>> + t4ka3_set_bayer_order(sensor, fmt);
>
> Does this call belong here?
Yes, if the hflip/vflip controls change then fmt->code needs to be
updated to the now changed bayer-order. t4ka3_set_bayer_order()
uses the cached ctrl->val values so it is cheap enough to
always do this instead of checking if the changed ctrl is
vflip or hflip.
In case the sensor is actually streaming and we don't hit this path,
the t4ka3_t_vflip()helper will return -EBUSY since changing
the active fmt while streaming is not a good idea.
Looking at this again, I do think that: t4ka3_t_vflip() should
be renamed to t4ka3_update_hvflip() because the current name
is weird.
Regards,
Hans
next prev parent reply other threads:[~2026-03-17 12:25 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-03-16 8:57 Kate Hsuan
2026-03-16 22:00 ` Sakari Ailus
2026-03-17 12:04 ` Hans de Goede
2026-03-17 12:24 ` Hans de Goede [this message]
2026-03-17 13:26 ` Kate Hsuan
2026-03-17 17:58 ` Sakari Ailus
2026-03-17 19:56 ` Hans de Goede
2026-03-17 22:35 ` Sakari Ailus
2026-03-17 13:24 ` Kate Hsuan
2026-03-17 17:53 ` Sakari Ailus
2026-03-17 20:17 ` Hans de Goede
2026-03-18 7:28 ` Kate Hsuan
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=a3f89715-b937-4858-9a44-8d8d634cf97a@oss.qualcomm.com \
--to=johannes.goede@oss.qualcomm.com \
--cc=hansg@kernel.org \
--cc=hpa@redhat.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-media@vger.kernel.org \
--cc=mchehab@kernel.org \
--cc=sakari.ailus@linux.intel.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
all inboxes | Powered by JetHome®