From: Michael Riesch <michael.riesch@wolfvision.net>
To: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Cc: Mauro Carvalho Chehab <mchehab@kernel.org>,
libcamera-devel@lists.libcamera.org,
Sakari Ailus <sakari.ailus@linux.intel.com>,
Hans Verkuil <hverkuil-cisco@xs4all.nl>,
Matthias Fend <Matthias.Fend@wolfvision.net>,
Dave Stevenson <dave.stevenson@raspberrypi.com>,
linux-media@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH RFC v2 4/6] media: v4l2-ctrls: add lens group speed controls for zoom and focus
Date: Tue, 13 Jun 2023 09:49:40 +0200 [thread overview]
Message-ID: <64902ea4-e934-2813-2dd2-cb568e1f8030@wolfvision.net> (raw)
In-Reply-To: <20230607070759.GI14101@pendragon.ideasonboard.com>
Hi Laurent,
On 6/7/23 09:07, Laurent Pinchart wrote:
> Hi Michael,
>
> Thank you for the patch.
>
> On Tue, Apr 25, 2023 at 11:45:14AM +0200, Michael Riesch wrote:
>> Add the controls V4L2_CID_FOCUS_SPEED and V4L2_CID_ZOOM_SPEED that set
>> the speed of the zoom lens group and focus lens group, respectively.
>
> Ah, now the UVC relative focus and zoom controls could be implemented
> ;-) They still don't match the definition of the corresponding V4L2
> controls, so I'm still tempted to deprecate both.
There is also V4L2_CID_ZOOM_CONTINUOUS that could be mapped to the UVC
relative zoom, if I am not mistaken. I had a similar
V4L2_CID_FOCUS_CONTINUOUS control in mind briefly, but for our use case
this would not be general enough.
>> Signed-off-by: Michael Riesch <michael.riesch@wolfvision.net>
>> ---
>> Documentation/userspace-api/media/v4l/ext-ctrls-camera.rst | 10 ++++++++++
>> drivers/media/v4l2-core/v4l2-ctrls-defs.c | 2 ++
>> include/uapi/linux/v4l2-controls.h | 2 ++
>> 3 files changed, 14 insertions(+)
>>
>> diff --git a/Documentation/userspace-api/media/v4l/ext-ctrls-camera.rst b/Documentation/userspace-api/media/v4l/ext-ctrls-camera.rst
>> index 3ea4175f9619..a17620ab03b9 100644
>> --- a/Documentation/userspace-api/media/v4l/ext-ctrls-camera.rst
>> +++ b/Documentation/userspace-api/media/v4l/ext-ctrls-camera.rst
>> @@ -174,6 +174,11 @@ enum v4l2_exposure_metering -
>> will not transition from this state until another action is performed
>> by an application.
>>
>> +``V4L2_CID_FOCUS_SPEED (integer)``
>> + Set the speed with which the focus lens group of the camera is moved
>> + (V4L2_CID_FOCUS_ABSOLUTE and V4L2_CID_FOCUS_RELATIVE). The unit is
>> + driver-specific. The value should be a positive integer.
>> +
>
> Could you explain your expected use cases for focus and zoom speed ?
As I outlined in the cover letter, the speed of the lenses can be
adjusted. This can be used e.g., in the autofocus algorithm, where a
coarse scan and a fine grained scan can be implemented using different
speeds.
The adjustable zoom speed control is simply there to give the user the
choice to zoom in/out fast or slow.
Should this go into the documentation?
Best regards,
Michael
>
>> ``V4L2_CID_FOCUS_AUTO (boolean)``
>> Enables continuous automatic focus adjustments. The effect of manual
>> focus adjustments while this feature is enabled is undefined,
>> @@ -287,6 +292,11 @@ enum v4l2_auto_focus_range -
>> not transition from this state until another action is performed by an
>> application.
>>
>> +``V4L2_CID_ZOOM_SPEED (integer)``
>> + Set the speed with which the zoom lens group of the camera is moved
>> + (V4L2_CID_ZOOM_ABSOLUTE and V4L2_CID_ZOOM_RELATIVE). The unit is
>> + driver-specific. The value should be a positive integer.
>> +
>> ``V4L2_CID_IRIS_ABSOLUTE (integer)``
>> This control sets the camera's aperture to the specified value. The
>> unit is undefined. Larger values open the iris wider, smaller values
>> diff --git a/drivers/media/v4l2-core/v4l2-ctrls-defs.c b/drivers/media/v4l2-core/v4l2-ctrls-defs.c
>> index 794ef3ab0c02..3ef465ba73bd 100644
>> --- a/drivers/media/v4l2-core/v4l2-ctrls-defs.c
>> +++ b/drivers/media/v4l2-core/v4l2-ctrls-defs.c
>> @@ -1048,6 +1048,8 @@ const char *v4l2_ctrl_get_name(u32 id)
>> case V4L2_CID_FOCUS_STATUS: return "Focus, Status";
>> case V4L2_CID_ZOOM_CURRENT: return "Zoom, Current";
>> case V4L2_CID_ZOOM_STATUS: return "Zoom, Status";
>> + case V4L2_CID_FOCUS_SPEED: return "Focus, Speed";
>> + case V4L2_CID_ZOOM_SPEED: return "Zoom, Speed";
>>
>> /* FM Radio Modulator controls */
>> /* Keep the order of the 'case's the same as in v4l2-controls.h! */
>> diff --git a/include/uapi/linux/v4l2-controls.h b/include/uapi/linux/v4l2-controls.h
>> index 793ee8c65e87..8d84508d4db8 100644
>> --- a/include/uapi/linux/v4l2-controls.h
>> +++ b/include/uapi/linux/v4l2-controls.h
>> @@ -1001,6 +1001,8 @@ enum v4l2_auto_focus_range {
>> #define V4L2_CID_FOCUS_STATUS (V4L2_CID_CAMERA_CLASS_BASE+38)
>> #define V4L2_CID_ZOOM_CURRENT (V4L2_CID_CAMERA_CLASS_BASE+39)
>> #define V4L2_CID_ZOOM_STATUS (V4L2_CID_CAMERA_CLASS_BASE+40)
>> +#define V4L2_CID_FOCUS_SPEED (V4L2_CID_CAMERA_CLASS_BASE+41)
>> +#define V4L2_CID_ZOOM_SPEED (V4L2_CID_CAMERA_CLASS_BASE+42)
>>
>> /* FM Modulator class control IDs */
>>
>
next prev parent reply other threads:[~2023-06-13 7:50 UTC|newest]
Thread overview: 26+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-04-25 9:45 [PATCH RFC v2 0/6] media: v4l2-ctrls: add controls for complex lens controller devices Michael Riesch
2023-04-25 9:45 ` [PATCH RFC v2 1/6] media: v4l2-ctrls: fix documentation of V4L2_CID_FOCUS_ABSOLUTE unit Michael Riesch
2023-06-06 10:31 ` Hans Verkuil
2023-06-06 10:34 ` Laurent Pinchart
2023-06-07 6:49 ` Laurent Pinchart
2023-04-25 9:45 ` [PATCH RFC v2 2/6] media: v4l2-ctrls: clarify documentation of V4L2_CID_FOCUS_RELATIVE Michael Riesch
2023-06-06 10:36 ` Laurent Pinchart
2023-06-06 13:15 ` Michael Riesch
2023-06-07 6:42 ` Laurent Pinchart
2023-06-07 6:55 ` Laurent Pinchart
2023-06-08 13:41 ` Sakari Ailus
2023-04-25 9:45 ` [PATCH RFC v2 3/6] media: v4l2-ctrls: add lens group status controls for zoom and focus Michael Riesch
2023-06-06 10:20 ` Hans Verkuil
2023-06-07 7:03 ` Laurent Pinchart
2023-06-13 7:36 ` Michael Riesch
2023-04-25 9:45 ` [PATCH RFC v2 4/6] media: v4l2-ctrls: add lens group speed " Michael Riesch
2023-06-07 7:07 ` Laurent Pinchart
2023-06-13 7:49 ` Michael Riesch [this message]
2023-04-25 9:45 ` [PATCH RFC v2 5/6] media: v4l2-ctrls: add lens calibration controls Michael Riesch
2023-06-06 10:25 ` Hans Verkuil
2023-06-06 10:57 ` Dave Stevenson
2023-06-07 7:10 ` Laurent Pinchart
2023-04-25 9:45 ` [PATCH RFC v2 6/6] media: v4l2-ctrls: add controls for individual zoom lenses Michael Riesch
2023-06-06 10:29 ` Hans Verkuil
2023-06-13 9:19 ` Michael Riesch
2023-05-16 19:34 ` [PATCH RFC v2 0/6] media: v4l2-ctrls: add controls for complex lens controller devices Kieran Bingham
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=64902ea4-e934-2813-2dd2-cb568e1f8030@wolfvision.net \
--to=michael.riesch@wolfvision.net \
--cc=Matthias.Fend@wolfvision.net \
--cc=dave.stevenson@raspberrypi.com \
--cc=hverkuil-cisco@xs4all.nl \
--cc=laurent.pinchart@ideasonboard.com \
--cc=libcamera-devel@lists.libcamera.org \
--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