blob: 83ce0593b275c7462ff787a98156d59d6f6833e0 [file] [log] [blame]
Hans Verkuil09965172010-08-01 14:32:42 -03001/*
Mauro Carvalho Chehab8ec4bee2016-07-22 13:57:29 -03002 * V4L2 controls support header.
3 *
4 * Copyright (C) 2010 Hans Verkuil <hverkuil@xs4all.nl>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
Hans Verkuil09965172010-08-01 14:32:42 -030015 */
16
17#ifndef _V4L2_CTRLS_H
18#define _V4L2_CTRLS_H
19
20#include <linux/list.h>
Andrzej Hajdaa19dec62013-06-28 05:44:22 -030021#include <linux/mutex.h>
Laurent Pinchart01c40c02010-11-19 11:20:06 -030022#include <linux/videodev2.h>
Hans Verkuil52beedd2018-05-21 04:54:37 -040023#include <media/media-request.h>
Hans Verkuil09965172010-08-01 14:32:42 -030024
25/* forward references */
Laurent Pinchart528f0f72012-04-23 08:20:35 -030026struct file;
Hans Verkuil09965172010-08-01 14:32:42 -030027struct v4l2_ctrl_handler;
Hans Verkuileb5b16e2011-06-14 10:04:06 -030028struct v4l2_ctrl_helper;
Hans Verkuil09965172010-08-01 14:32:42 -030029struct v4l2_ctrl;
30struct video_device;
31struct v4l2_subdev;
Hans Verkuil77068d32011-06-13 18:55:58 -030032struct v4l2_subscribed_event;
Hans Verkuil6e239392011-06-07 11:13:44 -030033struct v4l2_fh;
Hans Verkuila26243b2012-01-27 16:18:42 -030034struct poll_table_struct;
Hans Verkuil09965172010-08-01 14:32:42 -030035
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -030036/**
37 * union v4l2_ctrl_ptr - A pointer to a control value.
Paul Kocialkowskic27bb302018-09-13 10:51:52 -040038 * @p_s32: Pointer to a 32-bit signed value.
39 * @p_s64: Pointer to a 64-bit signed value.
40 * @p_u8: Pointer to a 8-bit unsigned value.
41 * @p_u16: Pointer to a 16-bit unsigned value.
42 * @p_u32: Pointer to a 32-bit unsigned value.
43 * @p_char: Pointer to a string.
44 * @p_mpeg2_slice_params: Pointer to a MPEG2 slice parameters structure.
45 * @p_mpeg2_quantization: Pointer to a MPEG2 quantization data structure.
46 * @p: Pointer to a compound value.
Hans Verkuil01760772014-04-27 03:22:17 -030047 */
48union v4l2_ctrl_ptr {
49 s32 *p_s32;
50 s64 *p_s64;
Hans Verkuildda4a4d2014-06-10 07:30:04 -030051 u8 *p_u8;
52 u16 *p_u16;
Hans Verkuil811c5082014-07-21 10:45:37 -030053 u32 *p_u32;
Hans Verkuil01760772014-04-27 03:22:17 -030054 char *p_char;
Paul Kocialkowskic27bb302018-09-13 10:51:52 -040055 struct v4l2_ctrl_mpeg2_slice_params *p_mpeg2_slice_params;
56 struct v4l2_ctrl_mpeg2_quantization *p_mpeg2_quantization;
Hans Verkuil01760772014-04-27 03:22:17 -030057 void *p;
58};
59
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -030060/**
61 * struct v4l2_ctrl_ops - The control operations that the driver has to provide.
Mauro Carvalho Chehab8ec4bee2016-07-22 13:57:29 -030062 *
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -030063 * @g_volatile_ctrl: Get a new value for this control. Generally only relevant
64 * for volatile (and usually read-only) controls such as a control
65 * that returns the current signal strength which changes
66 * continuously.
67 * If not set, then the currently cached value will be returned.
68 * @try_ctrl: Test whether the control's value is valid. Only relevant when
69 * the usual min/max/step checks are not sufficient.
70 * @s_ctrl: Actually set the new control value. s_ctrl is compulsory. The
71 * ctrl->handler->lock is held when these ops are called, so no
72 * one else can access controls owned by that handler.
73 */
Hans Verkuil09965172010-08-01 14:32:42 -030074struct v4l2_ctrl_ops {
75 int (*g_volatile_ctrl)(struct v4l2_ctrl *ctrl);
76 int (*try_ctrl)(struct v4l2_ctrl *ctrl);
77 int (*s_ctrl)(struct v4l2_ctrl *ctrl);
78};
79
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -030080/**
81 * struct v4l2_ctrl_type_ops - The control type operations that the driver
Mauro Carvalho Chehab8ec4bee2016-07-22 13:57:29 -030082 * has to provide.
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -030083 *
84 * @equal: return true if both values are equal.
85 * @init: initialize the value.
86 * @log: log the value.
Mauro Carvalho Chehab8ec4bee2016-07-22 13:57:29 -030087 * @validate: validate the value. Return 0 on success and a negative value
88 * otherwise.
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -030089 */
Hans Verkuil01760772014-04-27 03:22:17 -030090struct v4l2_ctrl_type_ops {
Hans Verkuil998e7652014-06-10 07:55:00 -030091 bool (*equal)(const struct v4l2_ctrl *ctrl, u32 idx,
Hans Verkuil01760772014-04-27 03:22:17 -030092 union v4l2_ctrl_ptr ptr1,
93 union v4l2_ctrl_ptr ptr2);
Hans Verkuil998e7652014-06-10 07:55:00 -030094 void (*init)(const struct v4l2_ctrl *ctrl, u32 idx,
Hans Verkuil01760772014-04-27 03:22:17 -030095 union v4l2_ctrl_ptr ptr);
96 void (*log)(const struct v4l2_ctrl *ctrl);
Hans Verkuil998e7652014-06-10 07:55:00 -030097 int (*validate)(const struct v4l2_ctrl *ctrl, u32 idx,
Hans Verkuil01760772014-04-27 03:22:17 -030098 union v4l2_ctrl_ptr ptr);
99};
100
Mauro Carvalho Chehab2257e182016-08-29 17:26:15 -0300101/**
102 * typedef v4l2_ctrl_notify_fnc - typedef for a notify argument with a function
103 * that should be called when a control value has changed.
104 *
105 * @ctrl: pointer to struct &v4l2_ctrl
106 * @priv: control private data
107 *
108 * This typedef definition is used as an argument to v4l2_ctrl_notify()
109 * and as an argument at struct &v4l2_ctrl_handler.
110 */
Hans Verkuil8ac7a942012-09-07 04:46:39 -0300111typedef void (*v4l2_ctrl_notify_fnc)(struct v4l2_ctrl *ctrl, void *priv);
112
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -0300113/**
114 * struct v4l2_ctrl - The control structure.
Mauro Carvalho Chehab8ec4bee2016-07-22 13:57:29 -0300115 *
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -0300116 * @node: The list node.
117 * @ev_subs: The list of control event subscriptions.
118 * @handler: The handler that owns the control.
119 * @cluster: Point to start of cluster array.
120 * @ncontrols: Number of controls in cluster array.
121 * @done: Internal flag: set for each processed control.
122 * @is_new: Set when the user specified a new value for this control. It
Mauro Carvalho Chehab8ec4bee2016-07-22 13:57:29 -0300123 * is also set when called from v4l2_ctrl_handler_setup(). Drivers
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -0300124 * should never set this flag.
125 * @has_changed: Set when the current value differs from the new value. Drivers
126 * should never use this flag.
127 * @is_private: If set, then this control is private to its handler and it
128 * will not be added to any other handlers. Drivers can set
129 * this flag.
130 * @is_auto: If set, then this control selects whether the other cluster
131 * members are in 'automatic' mode or 'manual' mode. This is
132 * used for autogain/gain type clusters. Drivers should never
133 * set this flag directly.
134 * @is_int: If set, then this control has a simple integer value (i.e. it
135 * uses ctrl->val).
Mauro Carvalho Chehab8ec4bee2016-07-22 13:57:29 -0300136 * @is_string: If set, then this control has type %V4L2_CTRL_TYPE_STRING.
137 * @is_ptr: If set, then this control is an array and/or has type >=
138 * %V4L2_CTRL_COMPOUND_TYPES
139 * and/or has type %V4L2_CTRL_TYPE_STRING. In other words, &struct
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -0300140 * v4l2_ext_control uses field p to point to the data.
141 * @is_array: If set, then this control contains an N-dimensional array.
142 * @has_volatiles: If set, then one or more members of the cluster are volatile.
143 * Drivers should never touch this flag.
144 * @call_notify: If set, then call the handler's notify function whenever the
145 * control's value changes.
146 * @manual_mode_value: If the is_auto flag is set, then this is the value
147 * of the auto control that determines if that control is in
148 * manual mode. So if the value of the auto control equals this
149 * value, then the whole cluster is in manual mode. Drivers should
150 * never set this flag directly.
151 * @ops: The control ops.
152 * @type_ops: The control type ops.
153 * @id: The control ID.
154 * @name: The control name.
155 * @type: The control type.
156 * @minimum: The control's minimum value.
157 * @maximum: The control's maximum value.
158 * @default_value: The control's default value.
159 * @step: The control's step value for non-menu controls.
160 * @elems: The number of elements in the N-dimensional array.
161 * @elem_size: The size in bytes of the control.
162 * @dims: The size of each dimension.
163 * @nr_of_dims:The number of dimensions in @dims.
164 * @menu_skip_mask: The control's skip mask for menu controls. This makes it
165 * easy to skip menu items that are not valid. If bit X is set,
166 * then menu item X is skipped. Of course, this only works for
167 * menus with <= 32 menu items. There are no menus that come
168 * close to that number, so this is OK. Should we ever need more,
169 * then this will have to be extended to a u64 or a bit array.
170 * @qmenu: A const char * array for all menu items. Array entries that are
171 * empty strings ("") correspond to non-existing menu items (this
172 * is in addition to the menu_skip_mask above). The last entry
173 * must be NULL.
Mauro Carvalho Chehab20139f12017-09-27 12:25:21 -0400174 * Used only if the @type is %V4L2_CTRL_TYPE_MENU.
175 * @qmenu_int: A 64-bit integer array for with integer menu items.
176 * The size of array must be equal to the menu size, e. g.:
177 * :math:`ceil(\frac{maximum - minimum}{step}) + 1`.
178 * Used only if the @type is %V4L2_CTRL_TYPE_INTEGER_MENU.
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -0300179 * @flags: The control's flags.
Mauro Carvalho Chehab20139f12017-09-27 12:25:21 -0400180 * @cur: Structure to store the current value.
181 * @cur.val: The control's current value, if the @type is represented via
182 * a u32 integer (see &enum v4l2_ctrl_type).
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -0300183 * @val: The control's new s32 value.
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -0300184 * @priv: The control's private pointer. For use by the driver. It is
185 * untouched by the control framework. Note that this pointer is
186 * not freed when the control is deleted. Should this be needed
187 * then a new internal bitfield can be added to tell the framework
188 * to free this pointer.
Baruch Siachbf7b7042018-07-05 05:38:00 -0400189 * @p_cur: The control's current value represented via a union which
Mauro Carvalho Chehab7dc87912015-08-22 08:22:03 -0300190 * provides a standard way of accessing control types
191 * through a pointer.
Baruch Siachbf7b7042018-07-05 05:38:00 -0400192 * @p_new: The control's new value represented via a union which provides
Mauro Carvalho Chehab7dc87912015-08-22 08:22:03 -0300193 * a standard way of accessing control types
194 * through a pointer.
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -0300195 */
Hans Verkuil09965172010-08-01 14:32:42 -0300196struct v4l2_ctrl {
197 /* Administrative fields */
198 struct list_head node;
Hans Verkuil77068d32011-06-13 18:55:58 -0300199 struct list_head ev_subs;
Hans Verkuil09965172010-08-01 14:32:42 -0300200 struct v4l2_ctrl_handler *handler;
201 struct v4l2_ctrl **cluster;
Mauro Carvalho Chehab8ec4bee2016-07-22 13:57:29 -0300202 unsigned int ncontrols;
203
Hans Verkuil09965172010-08-01 14:32:42 -0300204 unsigned int done:1;
205
Hans Verkuil2a863792011-01-11 14:45:03 -0300206 unsigned int is_new:1;
Hans Verkuil9ea1b7a2014-01-17 08:25:26 -0300207 unsigned int has_changed:1;
Hans Verkuil09965172010-08-01 14:32:42 -0300208 unsigned int is_private:1;
Hans Verkuil72d877c2011-06-10 05:44:36 -0300209 unsigned int is_auto:1;
Hans Verkuild9a25472014-06-12 07:54:16 -0300210 unsigned int is_int:1;
211 unsigned int is_string:1;
212 unsigned int is_ptr:1;
Hans Verkuil998e7652014-06-10 07:55:00 -0300213 unsigned int is_array:1;
Hans Verkuil5626b8c2011-08-26 07:53:53 -0300214 unsigned int has_volatiles:1;
Hans Verkuil8ac7a942012-09-07 04:46:39 -0300215 unsigned int call_notify:1;
Hans Verkuil82a7c042011-06-28 10:43:13 -0300216 unsigned int manual_mode_value:8;
Hans Verkuil09965172010-08-01 14:32:42 -0300217
218 const struct v4l2_ctrl_ops *ops;
Hans Verkuil01760772014-04-27 03:22:17 -0300219 const struct v4l2_ctrl_type_ops *type_ops;
Hans Verkuil09965172010-08-01 14:32:42 -0300220 u32 id;
221 const char *name;
222 enum v4l2_ctrl_type type;
Hans Verkuil0ba2aeb2014-04-16 09:41:25 -0300223 s64 minimum, maximum, default_value;
Hans Verkuil20d88ee2014-06-12 07:55:21 -0300224 u32 elems;
Hans Verkuild9a25472014-06-12 07:54:16 -0300225 u32 elem_size;
Hans Verkuil20d88ee2014-06-12 07:55:21 -0300226 u32 dims[V4L2_CTRL_MAX_DIMS];
227 u32 nr_of_dims;
Hans Verkuil09965172010-08-01 14:32:42 -0300228 union {
Hans Verkuil0ba2aeb2014-04-16 09:41:25 -0300229 u64 step;
230 u64 menu_skip_mask;
Hans Verkuil09965172010-08-01 14:32:42 -0300231 };
Sakari Ailusce580fe2011-08-04 13:51:11 -0300232 union {
233 const char * const *qmenu;
234 const s64 *qmenu_int;
235 };
Hans Verkuil09965172010-08-01 14:32:42 -0300236 unsigned long flags;
Hans Verkuil09965172010-08-01 14:32:42 -0300237 void *priv;
Hans Verkuil2a9ec372014-04-27 03:38:13 -0300238 s32 val;
239 struct {
Hans Verkuild9a25472014-06-12 07:54:16 -0300240 s32 val;
Hans Verkuild9a25472014-06-12 07:54:16 -0300241 } cur;
Hans Verkuil01760772014-04-27 03:22:17 -0300242
243 union v4l2_ctrl_ptr p_new;
244 union v4l2_ctrl_ptr p_cur;
Hans Verkuil09965172010-08-01 14:32:42 -0300245};
246
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -0300247/**
248 * struct v4l2_ctrl_ref - The control reference.
Mauro Carvalho Chehab8ec4bee2016-07-22 13:57:29 -0300249 *
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -0300250 * @node: List node for the sorted list.
251 * @next: Single-link list node for the hash.
252 * @ctrl: The actual control information.
Mauro Carvalho Chehab8ec4bee2016-07-22 13:57:29 -0300253 * @helper: Pointer to helper struct. Used internally in
Mauro Carvalho Chehabfb911612016-08-29 18:43:02 -0300254 * ``prepare_ext_ctrls`` function at ``v4l2-ctrl.c``.
Hans Verkuilda1b1ae2018-05-21 04:54:36 -0400255 * @from_other_dev: If true, then @ctrl was defined in another
256 * device than the &struct v4l2_ctrl_handler.
Hans Verkuil6fa6f832018-05-21 04:54:40 -0400257 * @req_done: Internal flag: if the control handler containing this control
258 * reference is bound to a media request, then this is set when
259 * the control has been applied. This prevents applying controls
260 * from a cluster with multiple controls twice (when the first
261 * control of a cluster is applied, they all are).
262 * @req: If set, this refers to another request that sets this control.
Hans Verkuil52beedd2018-05-21 04:54:37 -0400263 * @p_req: If the control handler containing this control reference
264 * is bound to a media request, then this points to the
265 * value of the control that should be applied when the request
266 * is executed, or to the value of the control at the time
267 * that the request was completed.
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -0300268 *
269 * Each control handler has a list of these refs. The list_head is used to
270 * keep a sorted-by-control-ID list of all controls, while the next pointer
271 * is used to link the control in the hash's bucket.
272 */
Hans Verkuil09965172010-08-01 14:32:42 -0300273struct v4l2_ctrl_ref {
274 struct list_head node;
275 struct v4l2_ctrl_ref *next;
276 struct v4l2_ctrl *ctrl;
Hans Verkuileb5b16e2011-06-14 10:04:06 -0300277 struct v4l2_ctrl_helper *helper;
Hans Verkuilda1b1ae2018-05-21 04:54:36 -0400278 bool from_other_dev;
Hans Verkuil6fa6f832018-05-21 04:54:40 -0400279 bool req_done;
280 struct v4l2_ctrl_ref *req;
Hans Verkuil52beedd2018-05-21 04:54:37 -0400281 union v4l2_ctrl_ptr p_req;
Hans Verkuil09965172010-08-01 14:32:42 -0300282};
283
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -0300284/**
285 * struct v4l2_ctrl_handler - The control handler keeps track of all the
Mauro Carvalho Chehab8ec4bee2016-07-22 13:57:29 -0300286 * controls: both the controls owned by the handler and those inherited
287 * from other handlers.
288 *
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -0300289 * @_lock: Default for "lock".
290 * @lock: Lock to control access to this handler and its controls.
291 * May be replaced by the user right after init.
292 * @ctrls: The list of controls owned by this handler.
293 * @ctrl_refs: The list of control references.
294 * @cached: The last found control reference. It is common that the same
295 * control is needed multiple times, so this is a simple
296 * optimization.
297 * @buckets: Buckets for the hashing. Allows for quick control lookup.
Mauro Carvalho Chehab8ec4bee2016-07-22 13:57:29 -0300298 * @notify: A notify callback that is called whenever the control changes
299 * value.
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -0300300 * Note that the handler's lock is held when the notify function
301 * is called!
302 * @notify_priv: Passed as argument to the v4l2_ctrl notify callback.
303 * @nr_of_buckets: Total number of buckets in the array.
304 * @error: The error code of the first failed control addition.
Hans Verkuil6fa6f832018-05-21 04:54:40 -0400305 * @request_is_queued: True if the request was queued.
306 * @requests: List to keep track of open control handler request objects.
307 * For the parent control handler (@req_obj.req == NULL) this
308 * is the list header. When the parent control handler is
309 * removed, it has to unbind and put all these requests since
310 * they refer to the parent.
311 * @requests_queued: List of the queued requests. This determines the order
312 * in which these controls are applied. Once the request is
313 * completed it is removed from this list.
Hans Verkuil52beedd2018-05-21 04:54:37 -0400314 * @req_obj: The &struct media_request_object, used to link into a
315 * &struct media_request. This request object has a refcount.
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -0300316 */
Hans Verkuil09965172010-08-01 14:32:42 -0300317struct v4l2_ctrl_handler {
Sakari Ailus77e7c4e2012-01-24 21:05:34 -0300318 struct mutex _lock;
319 struct mutex *lock;
Hans Verkuil09965172010-08-01 14:32:42 -0300320 struct list_head ctrls;
321 struct list_head ctrl_refs;
322 struct v4l2_ctrl_ref *cached;
323 struct v4l2_ctrl_ref **buckets;
Hans Verkuil8ac7a942012-09-07 04:46:39 -0300324 v4l2_ctrl_notify_fnc notify;
325 void *notify_priv;
Hans Verkuil09965172010-08-01 14:32:42 -0300326 u16 nr_of_buckets;
327 int error;
Hans Verkuil6fa6f832018-05-21 04:54:40 -0400328 bool request_is_queued;
329 struct list_head requests;
330 struct list_head requests_queued;
Hans Verkuil52beedd2018-05-21 04:54:37 -0400331 struct media_request_object req_obj;
Hans Verkuil09965172010-08-01 14:32:42 -0300332};
333
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -0300334/**
335 * struct v4l2_ctrl_config - Control configuration structure.
Mauro Carvalho Chehab8ec4bee2016-07-22 13:57:29 -0300336 *
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -0300337 * @ops: The control ops.
338 * @type_ops: The control type ops. Only needed for compound controls.
339 * @id: The control ID.
340 * @name: The control name.
341 * @type: The control type.
342 * @min: The control's minimum value.
343 * @max: The control's maximum value.
344 * @step: The control's step value for non-menu controls.
Mauro Carvalho Chehab8ec4bee2016-07-22 13:57:29 -0300345 * @def: The control's default value.
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -0300346 * @dims: The size of each dimension.
347 * @elem_size: The size in bytes of the control.
348 * @flags: The control's flags.
349 * @menu_skip_mask: The control's skip mask for menu controls. This makes it
350 * easy to skip menu items that are not valid. If bit X is set,
351 * then menu item X is skipped. Of course, this only works for
352 * menus with <= 64 menu items. There are no menus that come
353 * close to that number, so this is OK. Should we ever need more,
354 * then this will have to be extended to a bit array.
355 * @qmenu: A const char * array for all menu items. Array entries that are
356 * empty strings ("") correspond to non-existing menu items (this
357 * is in addition to the menu_skip_mask above). The last entry
358 * must be NULL.
Mauro Carvalho Chehab7dc87912015-08-22 08:22:03 -0300359 * @qmenu_int: A const s64 integer array for all menu items of the type
Mauro Carvalho Chehab8ec4bee2016-07-22 13:57:29 -0300360 * V4L2_CTRL_TYPE_INTEGER_MENU.
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -0300361 * @is_private: If set, then this control is private to its handler and it
362 * will not be added to any other handlers.
363 */
Hans Verkuil09965172010-08-01 14:32:42 -0300364struct v4l2_ctrl_config {
365 const struct v4l2_ctrl_ops *ops;
Hans Verkuil01760772014-04-27 03:22:17 -0300366 const struct v4l2_ctrl_type_ops *type_ops;
Hans Verkuil09965172010-08-01 14:32:42 -0300367 u32 id;
368 const char *name;
369 enum v4l2_ctrl_type type;
Hans Verkuil0ba2aeb2014-04-16 09:41:25 -0300370 s64 min;
371 s64 max;
372 u64 step;
373 s64 def;
Hans Verkuil20d88ee2014-06-12 07:55:21 -0300374 u32 dims[V4L2_CTRL_MAX_DIMS];
Hans Verkuild9a25472014-06-12 07:54:16 -0300375 u32 elem_size;
Hans Verkuil09965172010-08-01 14:32:42 -0300376 u32 flags;
Hans Verkuil0ba2aeb2014-04-16 09:41:25 -0300377 u64 menu_skip_mask;
Hans Verkuil513521e2010-12-29 14:25:52 -0300378 const char * const *qmenu;
Sakari Ailusce580fe2011-08-04 13:51:11 -0300379 const s64 *qmenu_int;
Hans Verkuil09965172010-08-01 14:32:42 -0300380 unsigned int is_private:1;
Hans Verkuil09965172010-08-01 14:32:42 -0300381};
382
Mauro Carvalho Chehab8ec4bee2016-07-22 13:57:29 -0300383/**
384 * v4l2_ctrl_fill - Fill in the control fields based on the control ID.
385 *
386 * @id: ID of the control
Mauro Carvalho Chehab67c672e2017-08-12 05:57:05 -0400387 * @name: pointer to be filled with a string with the name of the control
388 * @type: pointer for storing the type of the control
389 * @min: pointer for storing the minimum value for the control
390 * @max: pointer for storing the maximum value for the control
391 * @step: pointer for storing the control step
392 * @def: pointer for storing the default value for the control
393 * @flags: pointer for storing the flags to be used on the control
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -0300394 *
395 * This works for all standard V4L2 controls.
396 * For non-standard controls it will only fill in the given arguments
Mauro Carvalho Chehab67c672e2017-08-12 05:57:05 -0400397 * and @name content will be set to %NULL.
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -0300398 *
399 * This function will overwrite the contents of @name, @type and @flags.
400 * The contents of @min, @max, @step and @def may be modified depending on
401 * the type.
402 *
Mauro Carvalho Chehab8ec4bee2016-07-22 13:57:29 -0300403 * .. note::
404 *
405 * Do not use in drivers! It is used internally for backwards compatibility
406 * control handling only. Once all drivers are converted to use the new
407 * control framework this function will no longer be exported.
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -0300408 */
Hans Verkuil09965172010-08-01 14:32:42 -0300409void v4l2_ctrl_fill(u32 id, const char **name, enum v4l2_ctrl_type *type,
Hans Verkuil0ba2aeb2014-04-16 09:41:25 -0300410 s64 *min, s64 *max, u64 *step, s64 *def, u32 *flags);
Hans Verkuil09965172010-08-01 14:32:42 -0300411
412
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -0300413/**
414 * v4l2_ctrl_handler_init_class() - Initialize the control handler.
415 * @hdl: The control handler.
416 * @nr_of_controls_hint: A hint of how many controls this handler is
417 * expected to refer to. This is the total number, so including
418 * any inherited controls. It doesn't have to be precise, but if
419 * it is way off, then you either waste memory (too many buckets
420 * are allocated) or the control lookup becomes slower (not enough
421 * buckets are allocated, so there are more slow list lookups).
422 * It will always work, though.
423 * @key: Used by the lock validator if CONFIG_LOCKDEP is set.
424 * @name: Used by the lock validator if CONFIG_LOCKDEP is set.
425 *
Mauro Carvalho Chehab2257e182016-08-29 17:26:15 -0300426 * .. attention::
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -0300427 *
Mauro Carvalho Chehab2257e182016-08-29 17:26:15 -0300428 * Never use this call directly, always use the v4l2_ctrl_handler_init()
429 * macro that hides the @key and @name arguments.
430 *
431 * Return: returns an error if the buckets could not be allocated. This
432 * error will also be stored in @hdl->error.
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -0300433 */
Andy Walls6cd247e2013-03-09 05:55:11 -0300434int v4l2_ctrl_handler_init_class(struct v4l2_ctrl_handler *hdl,
Mauro Carvalho Chehab8ec4bee2016-07-22 13:57:29 -0300435 unsigned int nr_of_controls_hint,
Andy Walls6cd247e2013-03-09 05:55:11 -0300436 struct lock_class_key *key, const char *name);
437
438#ifdef CONFIG_LOCKDEP
Mauro Carvalho Chehab2257e182016-08-29 17:26:15 -0300439
440/**
Mauro Carvalho Chehabe383ce02016-09-22 07:59:03 -0300441 * v4l2_ctrl_handler_init - helper function to create a static struct
442 * &lock_class_key and calls v4l2_ctrl_handler_init_class()
Mauro Carvalho Chehab2257e182016-08-29 17:26:15 -0300443 *
444 * @hdl: The control handler.
445 * @nr_of_controls_hint: A hint of how many controls this handler is
446 * expected to refer to. This is the total number, so including
447 * any inherited controls. It doesn't have to be precise, but if
448 * it is way off, then you either waste memory (too many buckets
449 * are allocated) or the control lookup becomes slower (not enough
450 * buckets are allocated, so there are more slow list lookups).
451 * It will always work, though.
452 *
453 * This helper function creates a static struct &lock_class_key and
454 * calls v4l2_ctrl_handler_init_class(), providing a proper name for the lock
455 * validador.
456 *
457 * Use this helper function to initialize a control handler.
458 */
Andy Walls6cd247e2013-03-09 05:55:11 -0300459#define v4l2_ctrl_handler_init(hdl, nr_of_controls_hint) \
460( \
461 ({ \
462 static struct lock_class_key _key; \
463 v4l2_ctrl_handler_init_class(hdl, nr_of_controls_hint, \
464 &_key, \
465 KBUILD_BASENAME ":" \
466 __stringify(__LINE__) ":" \
467 "(" #hdl ")->_lock"); \
468 }) \
469)
470#else
471#define v4l2_ctrl_handler_init(hdl, nr_of_controls_hint) \
472 v4l2_ctrl_handler_init_class(hdl, nr_of_controls_hint, NULL, NULL)
473#endif
Hans Verkuil09965172010-08-01 14:32:42 -0300474
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -0300475/**
476 * v4l2_ctrl_handler_free() - Free all controls owned by the handler and free
477 * the control list.
478 * @hdl: The control handler.
479 *
480 * Does nothing if @hdl == NULL.
481 */
Hans Verkuil09965172010-08-01 14:32:42 -0300482void v4l2_ctrl_handler_free(struct v4l2_ctrl_handler *hdl);
483
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -0300484/**
485 * v4l2_ctrl_lock() - Helper function to lock the handler
486 * associated with the control.
487 * @ctrl: The control to lock.
488 */
Sakari Ailus605b3842014-06-12 13:09:39 -0300489static inline void v4l2_ctrl_lock(struct v4l2_ctrl *ctrl)
490{
491 mutex_lock(ctrl->handler->lock);
492}
493
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -0300494/**
495 * v4l2_ctrl_unlock() - Helper function to unlock the handler
496 * associated with the control.
497 * @ctrl: The control to unlock.
498 */
Sakari Ailus605b3842014-06-12 13:09:39 -0300499static inline void v4l2_ctrl_unlock(struct v4l2_ctrl *ctrl)
500{
501 mutex_unlock(ctrl->handler->lock);
502}
503
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -0300504/**
Sakari Ailuscc0140e2017-05-26 05:21:37 -0300505 * __v4l2_ctrl_handler_setup() - Call the s_ctrl op for all controls belonging
506 * to the handler to initialize the hardware to the current control values. The
507 * caller is responsible for acquiring the control handler mutex on behalf of
508 * __v4l2_ctrl_handler_setup().
509 * @hdl: The control handler.
510 *
511 * Button controls will be skipped, as are read-only controls.
512 *
513 * If @hdl == NULL, then this just returns 0.
514 */
515int __v4l2_ctrl_handler_setup(struct v4l2_ctrl_handler *hdl);
516
517/**
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -0300518 * v4l2_ctrl_handler_setup() - Call the s_ctrl op for all controls belonging
519 * to the handler to initialize the hardware to the current control values.
520 * @hdl: The control handler.
521 *
522 * Button controls will be skipped, as are read-only controls.
523 *
524 * If @hdl == NULL, then this just returns 0.
525 */
Hans Verkuil09965172010-08-01 14:32:42 -0300526int v4l2_ctrl_handler_setup(struct v4l2_ctrl_handler *hdl);
527
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -0300528/**
529 * v4l2_ctrl_handler_log_status() - Log all controls owned by the handler.
530 * @hdl: The control handler.
531 * @prefix: The prefix to use when logging the control values. If the
532 * prefix does not end with a space, then ": " will be added
533 * after the prefix. If @prefix == NULL, then no prefix will be
534 * used.
535 *
536 * For use with VIDIOC_LOG_STATUS.
537 *
538 * Does nothing if @hdl == NULL.
539 */
Hans Verkuil09965172010-08-01 14:32:42 -0300540void v4l2_ctrl_handler_log_status(struct v4l2_ctrl_handler *hdl,
541 const char *prefix);
542
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -0300543/**
544 * v4l2_ctrl_new_custom() - Allocate and initialize a new custom V4L2
Mauro Carvalho Chehab8ec4bee2016-07-22 13:57:29 -0300545 * control.
546 *
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -0300547 * @hdl: The control handler.
548 * @cfg: The control's configuration data.
549 * @priv: The control's driver-specific private data.
550 *
551 * If the &v4l2_ctrl struct could not be allocated then NULL is returned
552 * and @hdl->error is set to the error code (if it wasn't set already).
553 */
Hans Verkuil09965172010-08-01 14:32:42 -0300554struct v4l2_ctrl *v4l2_ctrl_new_custom(struct v4l2_ctrl_handler *hdl,
Mauro Carvalho Chehab8ec4bee2016-07-22 13:57:29 -0300555 const struct v4l2_ctrl_config *cfg,
556 void *priv);
Hans Verkuil09965172010-08-01 14:32:42 -0300557
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -0300558/**
Mauro Carvalho Chehab8ec4bee2016-07-22 13:57:29 -0300559 * v4l2_ctrl_new_std() - Allocate and initialize a new standard V4L2 non-menu
560 * control.
561 *
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -0300562 * @hdl: The control handler.
563 * @ops: The control ops.
Mauro Carvalho Chehab8ec4bee2016-07-22 13:57:29 -0300564 * @id: The control ID.
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -0300565 * @min: The control's minimum value.
566 * @max: The control's maximum value.
567 * @step: The control's step value
Mauro Carvalho Chehab8ec4bee2016-07-22 13:57:29 -0300568 * @def: The control's default value.
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -0300569 *
570 * If the &v4l2_ctrl struct could not be allocated, or the control
571 * ID is not known, then NULL is returned and @hdl->error is set to the
572 * appropriate error code (if it wasn't set already).
573 *
574 * If @id refers to a menu control, then this function will return NULL.
575 *
576 * Use v4l2_ctrl_new_std_menu() when adding menu controls.
577 */
Hans Verkuil09965172010-08-01 14:32:42 -0300578struct v4l2_ctrl *v4l2_ctrl_new_std(struct v4l2_ctrl_handler *hdl,
Mauro Carvalho Chehab8ec4bee2016-07-22 13:57:29 -0300579 const struct v4l2_ctrl_ops *ops,
580 u32 id, s64 min, s64 max, u64 step,
581 s64 def);
Hans Verkuil09965172010-08-01 14:32:42 -0300582
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -0300583/**
Mauro Carvalho Chehab8ec4bee2016-07-22 13:57:29 -0300584 * v4l2_ctrl_new_std_menu() - Allocate and initialize a new standard V4L2
585 * menu control.
586 *
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -0300587 * @hdl: The control handler.
588 * @ops: The control ops.
Mauro Carvalho Chehab8ec4bee2016-07-22 13:57:29 -0300589 * @id: The control ID.
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -0300590 * @max: The control's maximum value.
Mauro Carvalho Chehab8ec4bee2016-07-22 13:57:29 -0300591 * @mask: The control's skip mask for menu controls. This makes it
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -0300592 * easy to skip menu items that are not valid. If bit X is set,
593 * then menu item X is skipped. Of course, this only works for
594 * menus with <= 64 menu items. There are no menus that come
595 * close to that number, so this is OK. Should we ever need more,
596 * then this will have to be extended to a bit array.
Mauro Carvalho Chehab8ec4bee2016-07-22 13:57:29 -0300597 * @def: The control's default value.
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -0300598 *
599 * Same as v4l2_ctrl_new_std(), but @min is set to 0 and the @mask value
600 * determines which menu items are to be skipped.
601 *
602 * If @id refers to a non-menu control, then this function will return NULL.
603 */
Hans Verkuil09965172010-08-01 14:32:42 -0300604struct v4l2_ctrl *v4l2_ctrl_new_std_menu(struct v4l2_ctrl_handler *hdl,
Mauro Carvalho Chehab8ec4bee2016-07-22 13:57:29 -0300605 const struct v4l2_ctrl_ops *ops,
606 u32 id, u8 max, u64 mask, u8 def);
Hans Verkuil09965172010-08-01 14:32:42 -0300607
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -0300608/**
609 * v4l2_ctrl_new_std_menu_items() - Create a new standard V4L2 menu control
Mauro Carvalho Chehab8ec4bee2016-07-22 13:57:29 -0300610 * with driver specific menu.
611 *
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -0300612 * @hdl: The control handler.
613 * @ops: The control ops.
614 * @id: The control ID.
615 * @max: The control's maximum value.
616 * @mask: The control's skip mask for menu controls. This makes it
617 * easy to skip menu items that are not valid. If bit X is set,
618 * then menu item X is skipped. Of course, this only works for
619 * menus with <= 64 menu items. There are no menus that come
620 * close to that number, so this is OK. Should we ever need more,
621 * then this will have to be extended to a bit array.
622 * @def: The control's default value.
623 * @qmenu: The new menu.
624 *
625 * Same as v4l2_ctrl_new_std_menu(), but @qmenu will be the driver specific
626 * menu of this control.
627 *
628 */
Lad, Prabhakar117a7112012-09-18 15:54:38 -0300629struct v4l2_ctrl *v4l2_ctrl_new_std_menu_items(struct v4l2_ctrl_handler *hdl,
Mauro Carvalho Chehab8ec4bee2016-07-22 13:57:29 -0300630 const struct v4l2_ctrl_ops *ops,
631 u32 id, u8 max,
632 u64 mask, u8 def,
633 const char * const *qmenu);
Lad, Prabhakar117a7112012-09-18 15:54:38 -0300634
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -0300635/**
636 * v4l2_ctrl_new_int_menu() - Create a new standard V4L2 integer menu control.
Mauro Carvalho Chehab8ec4bee2016-07-22 13:57:29 -0300637 *
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -0300638 * @hdl: The control handler.
639 * @ops: The control ops.
640 * @id: The control ID.
641 * @max: The control's maximum value.
642 * @def: The control's default value.
643 * @qmenu_int: The control's menu entries.
644 *
645 * Same as v4l2_ctrl_new_std_menu(), but @mask is set to 0 and it additionaly
646 * takes as an argument an array of integers determining the menu items.
647 *
Mauro Carvalho Chehab8ec4bee2016-07-22 13:57:29 -0300648 * If @id refers to a non-integer-menu control, then this function will
649 * return %NULL.
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -0300650 */
Sylwester Nawrocki515f3282012-05-06 15:30:44 -0300651struct v4l2_ctrl *v4l2_ctrl_new_int_menu(struct v4l2_ctrl_handler *hdl,
Mauro Carvalho Chehab8ec4bee2016-07-22 13:57:29 -0300652 const struct v4l2_ctrl_ops *ops,
653 u32 id, u8 max, u8 def,
654 const s64 *qmenu_int);
Sylwester Nawrocki515f3282012-05-06 15:30:44 -0300655
Mauro Carvalho Chehab2257e182016-08-29 17:26:15 -0300656/**
657 * typedef v4l2_ctrl_filter - Typedef to define the filter function to be
658 * used when adding a control handler.
659 *
660 * @ctrl: pointer to struct &v4l2_ctrl.
661 */
662
Mauro Carvalho Chehab6d85d7d2016-07-22 10:58:03 -0300663typedef bool (*v4l2_ctrl_filter)(const struct v4l2_ctrl *ctrl);
664
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -0300665/**
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -0300666 * v4l2_ctrl_add_handler() - Add all controls from handler @add to
Mauro Carvalho Chehab8ec4bee2016-07-22 13:57:29 -0300667 * handler @hdl.
668 *
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -0300669 * @hdl: The control handler.
670 * @add: The control handler whose controls you want to add to
671 * the @hdl control handler.
672 * @filter: This function will filter which controls should be added.
Hans Verkuilda1b1ae2018-05-21 04:54:36 -0400673 * @from_other_dev: If true, then the controls in @add were defined in another
674 * device than @hdl.
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -0300675 *
676 * Does nothing if either of the two handlers is a NULL pointer.
677 * If @filter is NULL, then all controls are added. Otherwise only those
678 * controls for which @filter returns true will be added.
679 * In case of an error @hdl->error will be set to the error code (if it
680 * wasn't set already).
681 */
Hans Verkuil09965172010-08-01 14:32:42 -0300682int v4l2_ctrl_add_handler(struct v4l2_ctrl_handler *hdl,
Hans Verkuil34a6b7d2012-09-14 07:15:03 -0300683 struct v4l2_ctrl_handler *add,
Hans Verkuilda1b1ae2018-05-21 04:54:36 -0400684 v4l2_ctrl_filter filter,
685 bool from_other_dev);
Hans Verkuil09965172010-08-01 14:32:42 -0300686
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -0300687/**
688 * v4l2_ctrl_radio_filter() - Standard filter for radio controls.
Mauro Carvalho Chehab8ec4bee2016-07-22 13:57:29 -0300689 *
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -0300690 * @ctrl: The control that is filtered.
691 *
692 * This will return true for any controls that are valid for radio device
693 * nodes. Those are all of the V4L2_CID_AUDIO_* user controls and all FM
694 * transmitter class controls.
695 *
696 * This function is to be used with v4l2_ctrl_add_handler().
697 */
Hans Verkuil34a6b7d2012-09-14 07:15:03 -0300698bool v4l2_ctrl_radio_filter(const struct v4l2_ctrl *ctrl);
Hans Verkuil09965172010-08-01 14:32:42 -0300699
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -0300700/**
Mauro Carvalho Chehab8ec4bee2016-07-22 13:57:29 -0300701 * v4l2_ctrl_cluster() - Mark all controls in the cluster as belonging
702 * to that cluster.
703 *
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -0300704 * @ncontrols: The number of controls in this cluster.
Mauro Carvalho Chehab8ec4bee2016-07-22 13:57:29 -0300705 * @controls: The cluster control array of size @ncontrols.
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -0300706 */
Mauro Carvalho Chehab8ec4bee2016-07-22 13:57:29 -0300707void v4l2_ctrl_cluster(unsigned int ncontrols, struct v4l2_ctrl **controls);
Hans Verkuil09965172010-08-01 14:32:42 -0300708
709
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -0300710/**
Mauro Carvalho Chehab8ec4bee2016-07-22 13:57:29 -0300711 * v4l2_ctrl_auto_cluster() - Mark all controls in the cluster as belonging
712 * to that cluster and set it up for autofoo/foo-type handling.
713 *
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -0300714 * @ncontrols: The number of controls in this cluster.
715 * @controls: The cluster control array of size @ncontrols. The first control
716 * must be the 'auto' control (e.g. autogain, autoexposure, etc.)
717 * @manual_val: The value for the first control in the cluster that equals the
718 * manual setting.
719 * @set_volatile: If true, then all controls except the first auto control will
720 * be volatile.
721 *
722 * Use for control groups where one control selects some automatic feature and
723 * the other controls are only active whenever the automatic feature is turned
724 * off (manual mode). Typical examples: autogain vs gain, auto-whitebalance vs
725 * red and blue balance, etc.
726 *
727 * The behavior of such controls is as follows:
728 *
729 * When the autofoo control is set to automatic, then any manual controls
730 * are set to inactive and any reads will call g_volatile_ctrl (if the control
731 * was marked volatile).
732 *
733 * When the autofoo control is set to manual, then any manual controls will
734 * be marked active, and any reads will just return the current value without
735 * going through g_volatile_ctrl.
736 *
Mauro Carvalho Chehab2257e182016-08-29 17:26:15 -0300737 * In addition, this function will set the %V4L2_CTRL_FLAG_UPDATE flag
738 * on the autofoo control and %V4L2_CTRL_FLAG_INACTIVE on the foo control(s)
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -0300739 * if autofoo is in auto mode.
740 */
Mauro Carvalho Chehab8ec4bee2016-07-22 13:57:29 -0300741void v4l2_ctrl_auto_cluster(unsigned int ncontrols,
742 struct v4l2_ctrl **controls,
743 u8 manual_val, bool set_volatile);
Hans Verkuil72d877c2011-06-10 05:44:36 -0300744
745
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -0300746/**
747 * v4l2_ctrl_find() - Find a control with the given ID.
Mauro Carvalho Chehab8ec4bee2016-07-22 13:57:29 -0300748 *
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -0300749 * @hdl: The control handler.
750 * @id: The control ID to find.
751 *
752 * If @hdl == NULL this will return NULL as well. Will lock the handler so
753 * do not use from inside &v4l2_ctrl_ops.
754 */
Hans Verkuil09965172010-08-01 14:32:42 -0300755struct v4l2_ctrl *v4l2_ctrl_find(struct v4l2_ctrl_handler *hdl, u32 id);
756
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -0300757/**
758 * v4l2_ctrl_activate() - Make the control active or inactive.
759 * @ctrl: The control to (de)activate.
760 * @active: True if the control should become active.
761 *
762 * This sets or clears the V4L2_CTRL_FLAG_INACTIVE flag atomically.
763 * Does nothing if @ctrl == NULL.
764 * This will usually be called from within the s_ctrl op.
765 * The V4L2_EVENT_CTRL event will be generated afterwards.
766 *
767 * This function assumes that the control handler is locked.
768 */
Hans Verkuil09965172010-08-01 14:32:42 -0300769void v4l2_ctrl_activate(struct v4l2_ctrl *ctrl, bool active);
770
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -0300771/**
Sakari Ailus7a9b1092018-07-19 07:11:40 -0400772 * __v4l2_ctrl_grab() - Unlocked variant of v4l2_ctrl_grab.
773 *
774 * @ctrl: The control to (de)activate.
775 * @grabbed: True if the control should become grabbed.
776 *
777 * This sets or clears the V4L2_CTRL_FLAG_GRABBED flag atomically.
778 * Does nothing if @ctrl == NULL.
779 * The V4L2_EVENT_CTRL event will be generated afterwards.
780 * This will usually be called when starting or stopping streaming in the
781 * driver.
782 *
783 * This function assumes that the control handler is locked by the caller.
784 */
785void __v4l2_ctrl_grab(struct v4l2_ctrl *ctrl, bool grabbed);
786
787/**
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -0300788 * v4l2_ctrl_grab() - Mark the control as grabbed or not grabbed.
Mauro Carvalho Chehab8ec4bee2016-07-22 13:57:29 -0300789 *
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -0300790 * @ctrl: The control to (de)activate.
791 * @grabbed: True if the control should become grabbed.
792 *
793 * This sets or clears the V4L2_CTRL_FLAG_GRABBED flag atomically.
794 * Does nothing if @ctrl == NULL.
795 * The V4L2_EVENT_CTRL event will be generated afterwards.
796 * This will usually be called when starting or stopping streaming in the
797 * driver.
798 *
799 * This function assumes that the control handler is not locked and will
800 * take the lock itself.
801 */
Sakari Ailus7a9b1092018-07-19 07:11:40 -0400802static inline void v4l2_ctrl_grab(struct v4l2_ctrl *ctrl, bool grabbed)
803{
804 if (!ctrl)
805 return;
806
807 v4l2_ctrl_lock(ctrl);
808 __v4l2_ctrl_grab(ctrl, grabbed);
809 v4l2_ctrl_unlock(ctrl);
810}
Hans Verkuil09965172010-08-01 14:32:42 -0300811
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -0300812/**
813 *__v4l2_ctrl_modify_range() - Unlocked variant of v4l2_ctrl_modify_range()
814 *
815 * @ctrl: The control to update.
816 * @min: The control's minimum value.
817 * @max: The control's maximum value.
818 * @step: The control's step value
819 * @def: The control's default value.
820 *
821 * Update the range of a control on the fly. This works for control types
822 * INTEGER, BOOLEAN, MENU, INTEGER MENU and BITMASK. For menu controls the
823 * @step value is interpreted as a menu_skip_mask.
824 *
825 * An error is returned if one of the range arguments is invalid for this
826 * control type.
827 *
Hans Verkuil97eee232018-02-03 08:18:14 -0500828 * The caller is responsible for acquiring the control handler mutex on behalf
829 * of __v4l2_ctrl_modify_range().
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -0300830 */
Sakari Ailus5a573922014-06-12 13:09:40 -0300831int __v4l2_ctrl_modify_range(struct v4l2_ctrl *ctrl,
832 s64 min, s64 max, u64 step, s64 def);
833
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -0300834/**
835 * v4l2_ctrl_modify_range() - Update the range of a control.
Mauro Carvalho Chehab8ec4bee2016-07-22 13:57:29 -0300836 *
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -0300837 * @ctrl: The control to update.
838 * @min: The control's minimum value.
839 * @max: The control's maximum value.
840 * @step: The control's step value
841 * @def: The control's default value.
842 *
843 * Update the range of a control on the fly. This works for control types
844 * INTEGER, BOOLEAN, MENU, INTEGER MENU and BITMASK. For menu controls the
845 * @step value is interpreted as a menu_skip_mask.
846 *
847 * An error is returned if one of the range arguments is invalid for this
848 * control type.
849 *
850 * This function assumes that the control handler is not locked and will
851 * take the lock itself.
852 */
Sakari Ailus5a573922014-06-12 13:09:40 -0300853static inline int v4l2_ctrl_modify_range(struct v4l2_ctrl *ctrl,
854 s64 min, s64 max, u64 step, s64 def)
855{
856 int rval;
857
858 v4l2_ctrl_lock(ctrl);
859 rval = __v4l2_ctrl_modify_range(ctrl, min, max, step, def);
860 v4l2_ctrl_unlock(ctrl);
861
862 return rval;
863}
Sylwester Nawrocki2ccbe772013-01-19 15:51:55 -0300864
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -0300865/**
866 * v4l2_ctrl_notify() - Function to set a notify callback for a control.
Mauro Carvalho Chehab8ec4bee2016-07-22 13:57:29 -0300867 *
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -0300868 * @ctrl: The control.
869 * @notify: The callback function.
870 * @priv: The callback private handle, passed as argument to the callback.
871 *
872 * This function sets a callback function for the control. If @ctrl is NULL,
873 * then it will do nothing. If @notify is NULL, then the notify callback will
874 * be removed.
875 *
876 * There can be only one notify. If another already exists, then a WARN_ON
877 * will be issued and the function will do nothing.
878 */
Mauro Carvalho Chehab8ec4bee2016-07-22 13:57:29 -0300879void v4l2_ctrl_notify(struct v4l2_ctrl *ctrl, v4l2_ctrl_notify_fnc notify,
880 void *priv);
Hans Verkuil8ac7a942012-09-07 04:46:39 -0300881
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -0300882/**
883 * v4l2_ctrl_get_name() - Get the name of the control
Mauro Carvalho Chehab8ec4bee2016-07-22 13:57:29 -0300884 *
Hans Verkuil79fbc202014-11-23 09:39:54 -0300885 * @id: The control ID.
886 *
887 * This function returns the name of the given control ID or NULL if it isn't
888 * a known control.
889 */
890const char *v4l2_ctrl_get_name(u32 id);
891
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -0300892/**
893 * v4l2_ctrl_get_menu() - Get the menu string array of the control
Mauro Carvalho Chehab8ec4bee2016-07-22 13:57:29 -0300894 *
Hans Verkuil79fbc202014-11-23 09:39:54 -0300895 * @id: The control ID.
896 *
897 * This function returns the NULL-terminated menu string array name of the
898 * given control ID or NULL if it isn't a known menu control.
899 */
900const char * const *v4l2_ctrl_get_menu(u32 id);
901
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -0300902/**
903 * v4l2_ctrl_get_int_menu() - Get the integer menu array of the control
Mauro Carvalho Chehab8ec4bee2016-07-22 13:57:29 -0300904 *
Hans Verkuil79fbc202014-11-23 09:39:54 -0300905 * @id: The control ID.
906 * @len: The size of the integer array.
907 *
908 * This function returns the integer array of the given control ID or NULL if it
909 * if it isn't a known integer menu control.
910 */
911const s64 *v4l2_ctrl_get_int_menu(u32 id, u32 *len);
912
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -0300913/**
Mauro Carvalho Chehab8ec4bee2016-07-22 13:57:29 -0300914 * v4l2_ctrl_g_ctrl() - Helper function to get the control's value from
915 * within a driver.
916 *
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -0300917 * @ctrl: The control.
918 *
919 * This returns the control's value safely by going through the control
920 * framework. This function will lock the control's handler, so it cannot be
921 * used from within the &v4l2_ctrl_ops functions.
922 *
923 * This function is for integer type controls only.
924 */
Hans Verkuil09965172010-08-01 14:32:42 -0300925s32 v4l2_ctrl_g_ctrl(struct v4l2_ctrl *ctrl);
926
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -0300927/**
928 * __v4l2_ctrl_s_ctrl() - Unlocked variant of v4l2_ctrl_s_ctrl().
Mauro Carvalho Chehab8ec4bee2016-07-22 13:57:29 -0300929 *
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -0300930 * @ctrl: The control.
Mauro Carvalho Chehab8ec4bee2016-07-22 13:57:29 -0300931 * @val: TheControls name new value.
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -0300932 *
Hans Verkuil904aef02016-06-15 09:57:48 -0300933 * This sets the control's new value safely by going through the control
934 * framework. This function assumes the control's handler is already locked,
935 * allowing it to be used from within the &v4l2_ctrl_ops functions.
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -0300936 *
937 * This function is for integer type controls only.
938 */
Sakari Ailus0c4348a2014-06-12 13:09:42 -0300939int __v4l2_ctrl_s_ctrl(struct v4l2_ctrl *ctrl, s32 val);
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -0300940
Mauro Carvalho Chehab8ec4bee2016-07-22 13:57:29 -0300941/**
942 * v4l2_ctrl_s_ctrl() - Helper function to set the control's value from
943 * within a driver.
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -0300944 * @ctrl: The control.
945 * @val: The new value.
946 *
Hans Verkuil904aef02016-06-15 09:57:48 -0300947 * This sets the control's new value safely by going through the control
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -0300948 * framework. This function will lock the control's handler, so it cannot be
949 * used from within the &v4l2_ctrl_ops functions.
950 *
951 * This function is for integer type controls only.
952 */
Sakari Ailus0c4348a2014-06-12 13:09:42 -0300953static inline int v4l2_ctrl_s_ctrl(struct v4l2_ctrl *ctrl, s32 val)
954{
955 int rval;
956
957 v4l2_ctrl_lock(ctrl);
958 rval = __v4l2_ctrl_s_ctrl(ctrl, val);
959 v4l2_ctrl_unlock(ctrl);
960
961 return rval;
962}
Hans Verkuil09965172010-08-01 14:32:42 -0300963
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -0300964/**
965 * v4l2_ctrl_g_ctrl_int64() - Helper function to get a 64-bit control's value
966 * from within a driver.
Mauro Carvalho Chehab8ec4bee2016-07-22 13:57:29 -0300967 *
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -0300968 * @ctrl: The control.
969 *
970 * This returns the control's value safely by going through the control
971 * framework. This function will lock the control's handler, so it cannot be
972 * used from within the &v4l2_ctrl_ops functions.
973 *
974 * This function is for 64-bit integer type controls only.
975 */
Laurent Pinchart03d52852012-07-23 09:15:21 -0300976s64 v4l2_ctrl_g_ctrl_int64(struct v4l2_ctrl *ctrl);
977
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -0300978/**
979 * __v4l2_ctrl_s_ctrl_int64() - Unlocked variant of v4l2_ctrl_s_ctrl_int64().
980 *
981 * @ctrl: The control.
982 * @val: The new value.
983 *
Hans Verkuil904aef02016-06-15 09:57:48 -0300984 * This sets the control's new value safely by going through the control
985 * framework. This function assumes the control's handler is already locked,
986 * allowing it to be used from within the &v4l2_ctrl_ops functions.
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -0300987 *
988 * This function is for 64-bit integer type controls only.
989 */
Sakari Ailus0c4348a2014-06-12 13:09:42 -0300990int __v4l2_ctrl_s_ctrl_int64(struct v4l2_ctrl *ctrl, s64 val);
991
Mauro Carvalho Chehab8ec4bee2016-07-22 13:57:29 -0300992/**
993 * v4l2_ctrl_s_ctrl_int64() - Helper function to set a 64-bit control's value
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -0300994 * from within a driver.
995 *
996 * @ctrl: The control.
997 * @val: The new value.
998 *
Hans Verkuil904aef02016-06-15 09:57:48 -0300999 * This sets the control's new value safely by going through the control
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -03001000 * framework. This function will lock the control's handler, so it cannot be
1001 * used from within the &v4l2_ctrl_ops functions.
1002 *
1003 * This function is for 64-bit integer type controls only.
1004 */
Sakari Ailus0c4348a2014-06-12 13:09:42 -03001005static inline int v4l2_ctrl_s_ctrl_int64(struct v4l2_ctrl *ctrl, s64 val)
1006{
1007 int rval;
1008
1009 v4l2_ctrl_lock(ctrl);
1010 rval = __v4l2_ctrl_s_ctrl_int64(ctrl, val);
1011 v4l2_ctrl_unlock(ctrl);
1012
1013 return rval;
1014}
Laurent Pinchart03d52852012-07-23 09:15:21 -03001015
Mauro Carvalho Chehab8ec4bee2016-07-22 13:57:29 -03001016/**
1017 * __v4l2_ctrl_s_ctrl_string() - Unlocked variant of v4l2_ctrl_s_ctrl_string().
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -03001018 *
1019 * @ctrl: The control.
1020 * @s: The new string.
1021 *
Hans Verkuil904aef02016-06-15 09:57:48 -03001022 * This sets the control's new string safely by going through the control
1023 * framework. This function assumes the control's handler is already locked,
1024 * allowing it to be used from within the &v4l2_ctrl_ops functions.
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -03001025 *
1026 * This function is for string type controls only.
1027 */
Hans Verkuil5d0360a2014-07-21 10:45:42 -03001028int __v4l2_ctrl_s_ctrl_string(struct v4l2_ctrl *ctrl, const char *s);
1029
Mauro Carvalho Chehab8ec4bee2016-07-22 13:57:29 -03001030/**
1031 * v4l2_ctrl_s_ctrl_string() - Helper function to set a control's string value
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -03001032 * from within a driver.
1033 *
1034 * @ctrl: The control.
1035 * @s: The new string.
Mauro Carvalho Chehab8ec4bee2016-07-22 13:57:29 -03001036 *Controls name
Hans Verkuil904aef02016-06-15 09:57:48 -03001037 * This sets the control's new string safely by going through the control
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -03001038 * framework. This function will lock the control's handler, so it cannot be
1039 * used from within the &v4l2_ctrl_ops functions.
1040 *
1041 * This function is for string type controls only.
1042 */
Hans Verkuil5d0360a2014-07-21 10:45:42 -03001043static inline int v4l2_ctrl_s_ctrl_string(struct v4l2_ctrl *ctrl, const char *s)
1044{
1045 int rval;
1046
1047 v4l2_ctrl_lock(ctrl);
1048 rval = __v4l2_ctrl_s_ctrl_string(ctrl, s);
1049 v4l2_ctrl_unlock(ctrl);
1050
1051 return rval;
1052}
1053
Hans Verkuilce727572011-06-10 05:56:39 -03001054/* Internal helper functions that deal with control events. */
Hans de Goede3e3661492012-04-08 12:59:47 -03001055extern const struct v4l2_subscribed_event_ops v4l2_ctrl_sub_ev_ops;
Mauro Carvalho Chehab8ec4bee2016-07-22 13:57:29 -03001056
1057/**
1058 * v4l2_ctrl_replace - Function to be used as a callback to
1059 * &struct v4l2_subscribed_event_ops replace\(\)
1060 *
Mauro Carvalho Chehabf8441a42016-08-29 19:29:58 -03001061 * @old: pointer to struct &v4l2_event with the reported
Mauro Carvalho Chehab8ec4bee2016-07-22 13:57:29 -03001062 * event;
Mauro Carvalho Chehabf8441a42016-08-29 19:29:58 -03001063 * @new: pointer to struct &v4l2_event with the modified
Mauro Carvalho Chehab8ec4bee2016-07-22 13:57:29 -03001064 * event;
1065 */
Hans de Goede3e3661492012-04-08 12:59:47 -03001066void v4l2_ctrl_replace(struct v4l2_event *old, const struct v4l2_event *new);
Mauro Carvalho Chehab8ec4bee2016-07-22 13:57:29 -03001067
1068/**
1069 * v4l2_ctrl_merge - Function to be used as a callback to
1070 * &struct v4l2_subscribed_event_ops merge(\)
1071 *
Mauro Carvalho Chehabf8441a42016-08-29 19:29:58 -03001072 * @old: pointer to struct &v4l2_event with the reported
Mauro Carvalho Chehab8ec4bee2016-07-22 13:57:29 -03001073 * event;
Mauro Carvalho Chehabf8441a42016-08-29 19:29:58 -03001074 * @new: pointer to struct &v4l2_event with the merged
Mauro Carvalho Chehab8ec4bee2016-07-22 13:57:29 -03001075 * event;
1076 */
Hans de Goede3e3661492012-04-08 12:59:47 -03001077void v4l2_ctrl_merge(const struct v4l2_event *old, struct v4l2_event *new);
Hans Verkuil6e239392011-06-07 11:13:44 -03001078
Mauro Carvalho Chehab8ec4bee2016-07-22 13:57:29 -03001079/**
1080 * v4l2_ctrl_log_status - helper function to implement %VIDIOC_LOG_STATUS ioctl
1081 *
1082 * @file: pointer to struct file
1083 * @fh: unused. Kept just to be compatible to the arguments expected by
1084 * &struct v4l2_ioctl_ops.vidioc_log_status.
1085 *
1086 * Can be used as a vidioc_log_status function that just dumps all controls
1087 * associated with the filehandle.
1088 */
Hans Verkuile2ecb252012-02-02 08:20:53 -03001089int v4l2_ctrl_log_status(struct file *file, void *fh);
1090
Mauro Carvalho Chehab8ec4bee2016-07-22 13:57:29 -03001091/**
1092 * v4l2_ctrl_subscribe_event - Subscribes to an event
1093 *
1094 *
1095 * @fh: pointer to struct v4l2_fh
1096 * @sub: pointer to &struct v4l2_event_subscription
1097 *
1098 * Can be used as a vidioc_subscribe_event function that just subscribes
1099 * control events.
1100 */
Hans Verkuila26243b2012-01-27 16:18:42 -03001101int v4l2_ctrl_subscribe_event(struct v4l2_fh *fh,
Hans Verkuil85f5fe32012-09-04 11:46:09 -03001102 const struct v4l2_event_subscription *sub);
Hans Verkuila26243b2012-01-27 16:18:42 -03001103
Mauro Carvalho Chehab8ec4bee2016-07-22 13:57:29 -03001104/**
1105 * v4l2_ctrl_poll - function to be used as a callback to the poll()
1106 * That just polls for control events.
1107 *
1108 * @file: pointer to struct file
1109 * @wait: pointer to struct poll_table_struct
1110 */
Al Viroc23e0cb2017-07-03 03:02:56 -04001111__poll_t v4l2_ctrl_poll(struct file *file, struct poll_table_struct *wait);
Hans Verkuila26243b2012-01-27 16:18:42 -03001112
Hans Verkuil6fa6f832018-05-21 04:54:40 -04001113/**
1114 * v4l2_ctrl_request_setup - helper function to apply control values in a request
1115 *
1116 * @req: The request
1117 * @parent: The parent control handler ('priv' in media_request_object_find())
1118 *
1119 * This is a helper function to call the control handler's s_ctrl callback with
1120 * the control values contained in the request. Do note that this approach of
1121 * applying control values in a request is only applicable to memory-to-memory
1122 * devices.
1123 */
1124void v4l2_ctrl_request_setup(struct media_request *req,
1125 struct v4l2_ctrl_handler *parent);
1126
1127/**
1128 * v4l2_ctrl_request_complete - Complete a control handler request object
1129 *
1130 * @req: The request
1131 * @parent: The parent control handler ('priv' in media_request_object_find())
1132 *
1133 * This function is to be called on each control handler that may have had a
1134 * request object associated with it, i.e. control handlers of a driver that
1135 * supports requests.
1136 *
1137 * The function first obtains the values of any volatile controls in the control
1138 * handler and attach them to the request. Then, the function completes the
1139 * request object.
1140 */
1141void v4l2_ctrl_request_complete(struct media_request *req,
Hans Verkuil5f611d72018-07-10 04:00:53 -04001142 struct v4l2_ctrl_handler *parent);
1143
1144/**
1145 * v4l2_ctrl_request_hdl_find - Find the control handler in the request
1146 *
1147 * @req: The request
1148 * @parent: The parent control handler ('priv' in media_request_object_find())
1149 *
1150 * This function finds the control handler in the request. It may return
1151 * NULL if not found. When done, you must call v4l2_ctrl_request_put_hdl()
1152 * with the returned handler pointer.
1153 *
1154 * If the request is not in state VALIDATING or QUEUED, then this function
1155 * will always return NULL.
1156 *
1157 * Note that in state VALIDATING the req_queue_mutex is held, so
1158 * no objects can be added or deleted from the request.
1159 *
1160 * In state QUEUED it is the driver that will have to ensure this.
1161 */
1162struct v4l2_ctrl_handler *v4l2_ctrl_request_hdl_find(struct media_request *req,
1163 struct v4l2_ctrl_handler *parent);
1164
1165/**
1166 * v4l2_ctrl_request_hdl_put - Put the control handler
1167 *
1168 * @hdl: Put this control handler
1169 *
1170 * This function released the control handler previously obtained from'
1171 * v4l2_ctrl_request_hdl_find().
1172 */
1173static inline void v4l2_ctrl_request_hdl_put(struct v4l2_ctrl_handler *hdl)
1174{
1175 if (hdl)
1176 media_request_object_put(&hdl->req_obj);
1177}
1178
1179/**
1180 * v4l2_ctrl_request_ctrl_find() - Find a control with the given ID.
1181 *
1182 * @hdl: The control handler from the request.
1183 * @id: The ID of the control to find.
1184 *
1185 * This function returns a pointer to the control if this control is
1186 * part of the request or NULL otherwise.
1187 */
1188struct v4l2_ctrl *
1189v4l2_ctrl_request_hdl_ctrl_find(struct v4l2_ctrl_handler *hdl, u32 id);
Hans Verkuil6fa6f832018-05-21 04:54:40 -04001190
Mauro Carvalho Chehab8ec4bee2016-07-22 13:57:29 -03001191/* Helpers for ioctl_ops */
Hans Verkuil09965172010-08-01 14:32:42 -03001192
Mauro Carvalho Chehab8ec4bee2016-07-22 13:57:29 -03001193/**
1194 * v4l2_queryctrl - Helper function to implement
1195 * :ref:`VIDIOC_QUERYCTRL <vidioc_queryctrl>` ioctl
1196 *
1197 * @hdl: pointer to &struct v4l2_ctrl_handler
1198 * @qc: pointer to &struct v4l2_queryctrl
1199 *
1200 * If hdl == NULL then they will all return -EINVAL.
1201 */
1202int v4l2_queryctrl(struct v4l2_ctrl_handler *hdl, struct v4l2_queryctrl *qc);
1203
1204/**
1205 * v4l2_query_ext_ctrl - Helper function to implement
1206 * :ref:`VIDIOC_QUERY_EXT_CTRL <vidioc_queryctrl>` ioctl
1207 *
1208 * @hdl: pointer to &struct v4l2_ctrl_handler
1209 * @qc: pointer to &struct v4l2_query_ext_ctrl
1210 *
1211 * If hdl == NULL then they will all return -EINVAL.
1212 */
1213int v4l2_query_ext_ctrl(struct v4l2_ctrl_handler *hdl,
1214 struct v4l2_query_ext_ctrl *qc);
1215
1216/**
1217 * v4l2_querymenu - Helper function to implement
1218 * :ref:`VIDIOC_QUERYMENU <vidioc_queryctrl>` ioctl
1219 *
1220 * @hdl: pointer to &struct v4l2_ctrl_handler
1221 * @qm: pointer to &struct v4l2_querymenu
1222 *
1223 * If hdl == NULL then they will all return -EINVAL.
1224 */
1225int v4l2_querymenu(struct v4l2_ctrl_handler *hdl, struct v4l2_querymenu *qm);
1226
1227/**
1228 * v4l2_g_ctrl - Helper function to implement
1229 * :ref:`VIDIOC_G_CTRL <vidioc_g_ctrl>` ioctl
1230 *
1231 * @hdl: pointer to &struct v4l2_ctrl_handler
1232 * @ctrl: pointer to &struct v4l2_control
1233 *
1234 * If hdl == NULL then they will all return -EINVAL.
1235 */
1236int v4l2_g_ctrl(struct v4l2_ctrl_handler *hdl, struct v4l2_control *ctrl);
1237
1238/**
1239 * v4l2_s_ctrl - Helper function to implement
1240 * :ref:`VIDIOC_S_CTRL <vidioc_g_ctrl>` ioctl
1241 *
1242 * @fh: pointer to &struct v4l2_fh
1243 * @hdl: pointer to &struct v4l2_ctrl_handler
1244 *
1245 * @ctrl: pointer to &struct v4l2_control
1246 *
1247 * If hdl == NULL then they will all return -EINVAL.
1248 */
1249int v4l2_s_ctrl(struct v4l2_fh *fh, struct v4l2_ctrl_handler *hdl,
1250 struct v4l2_control *ctrl);
1251
1252/**
1253 * v4l2_g_ext_ctrls - Helper function to implement
1254 * :ref:`VIDIOC_G_EXT_CTRLS <vidioc_g_ext_ctrls>` ioctl
1255 *
1256 * @hdl: pointer to &struct v4l2_ctrl_handler
Hans Verkuilc41e9cf2018-05-21 04:54:42 -04001257 * @mdev: pointer to &struct media_device
Mauro Carvalho Chehab8ec4bee2016-07-22 13:57:29 -03001258 * @c: pointer to &struct v4l2_ext_controls
1259 *
1260 * If hdl == NULL then they will all return -EINVAL.
1261 */
Hans Verkuilc41e9cf2018-05-21 04:54:42 -04001262int v4l2_g_ext_ctrls(struct v4l2_ctrl_handler *hdl, struct media_device *mdev,
Mauro Carvalho Chehab8ec4bee2016-07-22 13:57:29 -03001263 struct v4l2_ext_controls *c);
1264
1265/**
1266 * v4l2_try_ext_ctrls - Helper function to implement
1267 * :ref:`VIDIOC_TRY_EXT_CTRLS <vidioc_g_ext_ctrls>` ioctl
1268 *
1269 * @hdl: pointer to &struct v4l2_ctrl_handler
Hans Verkuilc41e9cf2018-05-21 04:54:42 -04001270 * @mdev: pointer to &struct media_device
Mauro Carvalho Chehab8ec4bee2016-07-22 13:57:29 -03001271 * @c: pointer to &struct v4l2_ext_controls
1272 *
1273 * If hdl == NULL then they will all return -EINVAL.
1274 */
1275int v4l2_try_ext_ctrls(struct v4l2_ctrl_handler *hdl,
Hans Verkuilc41e9cf2018-05-21 04:54:42 -04001276 struct media_device *mdev,
Mauro Carvalho Chehab8ec4bee2016-07-22 13:57:29 -03001277 struct v4l2_ext_controls *c);
1278
1279/**
1280 * v4l2_s_ext_ctrls - Helper function to implement
1281 * :ref:`VIDIOC_S_EXT_CTRLS <vidioc_g_ext_ctrls>` ioctl
1282 *
1283 * @fh: pointer to &struct v4l2_fh
1284 * @hdl: pointer to &struct v4l2_ctrl_handler
Hans Verkuilc41e9cf2018-05-21 04:54:42 -04001285 * @mdev: pointer to &struct media_device
Mauro Carvalho Chehab8ec4bee2016-07-22 13:57:29 -03001286 * @c: pointer to &struct v4l2_ext_controls
1287 *
1288 * If hdl == NULL then they will all return -EINVAL.
1289 */
1290int v4l2_s_ext_ctrls(struct v4l2_fh *fh, struct v4l2_ctrl_handler *hdl,
Hans Verkuilc41e9cf2018-05-21 04:54:42 -04001291 struct media_device *mdev,
Mauro Carvalho Chehab8ec4bee2016-07-22 13:57:29 -03001292 struct v4l2_ext_controls *c);
1293
1294/**
1295 * v4l2_ctrl_subdev_subscribe_event - Helper function to implement
Mauro Carvalho Chehab4a3fad72018-01-04 06:47:28 -05001296 * as a &struct v4l2_subdev_core_ops subscribe_event function
Mauro Carvalho Chehab8ec4bee2016-07-22 13:57:29 -03001297 * that just subscribes control events.
1298 *
1299 * @sd: pointer to &struct v4l2_subdev
1300 * @fh: pointer to &struct v4l2_fh
1301 * @sub: pointer to &struct v4l2_event_subscription
1302 */
Sylwester Nawrocki22fa4272013-01-22 19:00:23 -03001303int v4l2_ctrl_subdev_subscribe_event(struct v4l2_subdev *sd, struct v4l2_fh *fh,
1304 struct v4l2_event_subscription *sub);
1305
Mauro Carvalho Chehab8ec4bee2016-07-22 13:57:29 -03001306/**
1307 * v4l2_ctrl_subdev_log_status - Log all controls owned by subdev's control
1308 * handler.
1309 *
1310 * @sd: pointer to &struct v4l2_subdev
1311 */
Sylwester Nawrockiffa9b9f2013-01-22 19:01:02 -03001312int v4l2_ctrl_subdev_log_status(struct v4l2_subdev *sd);
1313
Hans Verkuil09965172010-08-01 14:32:42 -03001314#endif