Skip to content

Commit

Permalink
drivers: video: introduce "GET" sub-operations
Browse files Browse the repository at this point in the history
The video_get_ctrl() API permits to retrieve a value from a device using
standard CIDs from <zephyr/drivers/video-controls.h>. The CIDs do not come
with a range information, and to know which value to apply to a video
driver, knowing the minimum and maximum value before-hand is required.
This prevents building generic layers that handle any video devices, such
as protocols such as USB UVC, GigE Vision, or anything making use of
"zephyr,camera" chosen node.

This commit introduces extra flags added to the CIDs that indicates to the
target device that instead of returning the current value, they should
return the minimum, maximum, or default value instead, with the same type
as the current value.

The GET_CUR operation having a flag of 0x00, this makes all drivers
implicitly support this new API, with an opt-in migration to also support
the extra controls, correctly rejecting the unsupported extra operations by
default.

Signed-off-by: Josuah Demangeon <me@josuah.net>
  • Loading branch information
josuah committed Sep 22, 2024
1 parent 4cc3134 commit 96a0c3e
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions include/zephyr/drivers/video-controls.h
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,31 @@ extern "C" {
* @}
*/

/**
* @name Control Get operations
*
* Extra flags for video controls to inquire about the dimensions of an existing
* control: the minimum, maximum, or default value.
*
* For instance, OR-ing @c VIDEO_CID_CAMERA_EXPOSURE and @c VIDEO_CTRL_GET_MAX
* permits to query the maximum exposure time instead of the current exposure
* time.
*
* If no Control Get flag is added to a CID, the behavior is to fetch the current
* value as with @c VIDEO_CTRL_GET_CUR.
* These must only be used along with the @c video_ctrl_get() API.
*
* @{
*/
#define VIDEO_CTRL_GET_CUR 0x00000000 /**< Get the current value */
#define VIDEO_CTRL_GET_MIN 0x00001000 /**< Get the minimum value */
#define VIDEO_CTRL_GET_MAX 0x00002000 /**< Get the maximum value */
#define VIDEO_CTRL_GET_DEF 0x00003000 /**< Get the default value */
#define VIDEO_CTRL_GET_MASK 0x0000f000 /**< Mask for get operations */
/**

Check notice on line 66 in include/zephyr/drivers/video-controls.h

View workflow job for this annotation

GitHub Actions / Run compliance checks on patch series (PR)

You may want to run clang-format on this change

include/zephyr/drivers/video-controls.h:66 -#define VIDEO_CTRL_GET_CUR 0x00000000 /**< Get the current value */ -#define VIDEO_CTRL_GET_MIN 0x00001000 /**< Get the minimum value */ -#define VIDEO_CTRL_GET_MAX 0x00002000 /**< Get the maximum value */ -#define VIDEO_CTRL_GET_DEF 0x00003000 /**< Get the default value */ -#define VIDEO_CTRL_GET_MASK 0x0000f000 /**< Mask for get operations */ +#define VIDEO_CTRL_GET_CUR 0x00000000 /**< Get the current value */ +#define VIDEO_CTRL_GET_MIN 0x00001000 /**< Get the minimum value */ +#define VIDEO_CTRL_GET_MAX 0x00002000 /**< Get the maximum value */ +#define VIDEO_CTRL_GET_DEF 0x00003000 /**< Get the default value */ +#define VIDEO_CTRL_GET_MASK 0x0000f000 /**< Mask for get operations */
* @}
*/

/**
* @name Generic class control IDs
* @{
Expand Down

0 comments on commit 96a0c3e

Please sign in to comment.