blob: 88f736661c06600df632ed450853d232be7226c6 [file] [log] [blame]
Hans Verkuil09965172010-08-01 14:32:42 -03001/*
2 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.
15
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 */
20
21#ifndef _V4L2_CTRLS_H
22#define _V4L2_CTRLS_H
23
24#include <linux/list.h>
Andrzej Hajdaa19dec62013-06-28 05:44:22 -030025#include <linux/mutex.h>
Laurent Pinchart01c40c02010-11-19 11:20:06 -030026#include <linux/videodev2.h>
Hans Verkuil09965172010-08-01 14:32:42 -030027
28/* forward references */
Laurent Pinchart528f0f72012-04-23 08:20:35 -030029struct file;
Hans Verkuil09965172010-08-01 14:32:42 -030030struct v4l2_ctrl_handler;
Hans Verkuileb5b16e2011-06-14 10:04:06 -030031struct v4l2_ctrl_helper;
Hans Verkuil09965172010-08-01 14:32:42 -030032struct v4l2_ctrl;
33struct video_device;
34struct v4l2_subdev;
Hans Verkuil77068d32011-06-13 18:55:58 -030035struct v4l2_subscribed_event;
Hans Verkuil6e239392011-06-07 11:13:44 -030036struct v4l2_fh;
Hans Verkuila26243b2012-01-27 16:18:42 -030037struct poll_table_struct;
Hans Verkuil09965172010-08-01 14:32:42 -030038
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -030039/**
40 * union v4l2_ctrl_ptr - A pointer to a control value.
Hans Verkuil01760772014-04-27 03:22:17 -030041 * @p_s32: Pointer to a 32-bit signed value.
42 * @p_s64: Pointer to a 64-bit signed value.
Hans Verkuildda4a4d2014-06-10 07:30:04 -030043 * @p_u8: Pointer to a 8-bit unsigned value.
44 * @p_u16: Pointer to a 16-bit unsigned value.
Hans Verkuil811c5082014-07-21 10:45:37 -030045 * @p_u32: Pointer to a 32-bit unsigned value.
Hans Verkuil01760772014-04-27 03:22:17 -030046 * @p_char: Pointer to a string.
47 * @p: Pointer to a compound value.
48 */
49union v4l2_ctrl_ptr {
50 s32 *p_s32;
51 s64 *p_s64;
Hans Verkuildda4a4d2014-06-10 07:30:04 -030052 u8 *p_u8;
53 u16 *p_u16;
Hans Verkuil811c5082014-07-21 10:45:37 -030054 u32 *p_u32;
Hans Verkuil01760772014-04-27 03:22:17 -030055 char *p_char;
56 void *p;
57};
58
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -030059/**
60 * struct v4l2_ctrl_ops - The control operations that the driver has to provide.
61 * @g_volatile_ctrl: Get a new value for this control. Generally only relevant
62 * for volatile (and usually read-only) controls such as a control
63 * that returns the current signal strength which changes
64 * continuously.
65 * If not set, then the currently cached value will be returned.
66 * @try_ctrl: Test whether the control's value is valid. Only relevant when
67 * the usual min/max/step checks are not sufficient.
68 * @s_ctrl: Actually set the new control value. s_ctrl is compulsory. The
69 * ctrl->handler->lock is held when these ops are called, so no
70 * one else can access controls owned by that handler.
71 */
Hans Verkuil09965172010-08-01 14:32:42 -030072struct v4l2_ctrl_ops {
73 int (*g_volatile_ctrl)(struct v4l2_ctrl *ctrl);
74 int (*try_ctrl)(struct v4l2_ctrl *ctrl);
75 int (*s_ctrl)(struct v4l2_ctrl *ctrl);
76};
77
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -030078/**
79 * struct v4l2_ctrl_type_ops - The control type operations that the driver
80 * has to provide.
81 *
82 * @equal: return true if both values are equal.
83 * @init: initialize the value.
84 * @log: log the value.
85 * @validate: validate the value. Return 0 on success and a negative value otherwise.
86 */
Hans Verkuil01760772014-04-27 03:22:17 -030087struct v4l2_ctrl_type_ops {
Hans Verkuil998e7652014-06-10 07:55:00 -030088 bool (*equal)(const struct v4l2_ctrl *ctrl, u32 idx,
Hans Verkuil01760772014-04-27 03:22:17 -030089 union v4l2_ctrl_ptr ptr1,
90 union v4l2_ctrl_ptr ptr2);
Hans Verkuil998e7652014-06-10 07:55:00 -030091 void (*init)(const struct v4l2_ctrl *ctrl, u32 idx,
Hans Verkuil01760772014-04-27 03:22:17 -030092 union v4l2_ctrl_ptr ptr);
93 void (*log)(const struct v4l2_ctrl *ctrl);
Hans Verkuil998e7652014-06-10 07:55:00 -030094 int (*validate)(const struct v4l2_ctrl *ctrl, u32 idx,
Hans Verkuil01760772014-04-27 03:22:17 -030095 union v4l2_ctrl_ptr ptr);
96};
97
Hans Verkuil8ac7a942012-09-07 04:46:39 -030098typedef void (*v4l2_ctrl_notify_fnc)(struct v4l2_ctrl *ctrl, void *priv);
99
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -0300100/**
101 * struct v4l2_ctrl - The control structure.
102 * @node: The list node.
103 * @ev_subs: The list of control event subscriptions.
104 * @handler: The handler that owns the control.
105 * @cluster: Point to start of cluster array.
106 * @ncontrols: Number of controls in cluster array.
107 * @done: Internal flag: set for each processed control.
108 * @is_new: Set when the user specified a new value for this control. It
109 * is also set when called from v4l2_ctrl_handler_setup. Drivers
110 * should never set this flag.
111 * @has_changed: Set when the current value differs from the new value. Drivers
112 * should never use this flag.
113 * @is_private: If set, then this control is private to its handler and it
114 * will not be added to any other handlers. Drivers can set
115 * this flag.
116 * @is_auto: If set, then this control selects whether the other cluster
117 * members are in 'automatic' mode or 'manual' mode. This is
118 * used for autogain/gain type clusters. Drivers should never
119 * set this flag directly.
120 * @is_int: If set, then this control has a simple integer value (i.e. it
121 * uses ctrl->val).
122 * @is_string: If set, then this control has type V4L2_CTRL_TYPE_STRING.
123 * @is_ptr: If set, then this control is an array and/or has type >= V4L2_CTRL_COMPOUND_TYPES
124 * and/or has type V4L2_CTRL_TYPE_STRING. In other words, struct
125 * v4l2_ext_control uses field p to point to the data.
126 * @is_array: If set, then this control contains an N-dimensional array.
127 * @has_volatiles: If set, then one or more members of the cluster are volatile.
128 * Drivers should never touch this flag.
129 * @call_notify: If set, then call the handler's notify function whenever the
130 * control's value changes.
131 * @manual_mode_value: If the is_auto flag is set, then this is the value
132 * of the auto control that determines if that control is in
133 * manual mode. So if the value of the auto control equals this
134 * value, then the whole cluster is in manual mode. Drivers should
135 * never set this flag directly.
136 * @ops: The control ops.
137 * @type_ops: The control type ops.
138 * @id: The control ID.
139 * @name: The control name.
140 * @type: The control type.
141 * @minimum: The control's minimum value.
142 * @maximum: The control's maximum value.
143 * @default_value: The control's default value.
144 * @step: The control's step value for non-menu controls.
145 * @elems: The number of elements in the N-dimensional array.
146 * @elem_size: The size in bytes of the control.
147 * @dims: The size of each dimension.
148 * @nr_of_dims:The number of dimensions in @dims.
149 * @menu_skip_mask: The control's skip mask for menu controls. This makes it
150 * easy to skip menu items that are not valid. If bit X is set,
151 * then menu item X is skipped. Of course, this only works for
152 * menus with <= 32 menu items. There are no menus that come
153 * close to that number, so this is OK. Should we ever need more,
154 * then this will have to be extended to a u64 or a bit array.
155 * @qmenu: A const char * array for all menu items. Array entries that are
156 * empty strings ("") correspond to non-existing menu items (this
157 * is in addition to the menu_skip_mask above). The last entry
158 * must be NULL.
159 * @flags: The control's flags.
160 * @cur: The control's current value.
161 * @val: The control's new s32 value.
162 * @val64: The control's new s64 value.
163 * @priv: The control's private pointer. For use by the driver. It is
164 * untouched by the control framework. Note that this pointer is
165 * not freed when the control is deleted. Should this be needed
166 * then a new internal bitfield can be added to tell the framework
167 * to free this pointer.
168 */
Hans Verkuil09965172010-08-01 14:32:42 -0300169struct v4l2_ctrl {
170 /* Administrative fields */
171 struct list_head node;
Hans Verkuil77068d32011-06-13 18:55:58 -0300172 struct list_head ev_subs;
Hans Verkuil09965172010-08-01 14:32:42 -0300173 struct v4l2_ctrl_handler *handler;
174 struct v4l2_ctrl **cluster;
175 unsigned ncontrols;
Hans Verkuil09965172010-08-01 14:32:42 -0300176 unsigned int done:1;
177
Hans Verkuil2a863792011-01-11 14:45:03 -0300178 unsigned int is_new:1;
Hans Verkuil9ea1b7a2014-01-17 08:25:26 -0300179 unsigned int has_changed:1;
Hans Verkuil09965172010-08-01 14:32:42 -0300180 unsigned int is_private:1;
Hans Verkuil72d877c2011-06-10 05:44:36 -0300181 unsigned int is_auto:1;
Hans Verkuild9a25472014-06-12 07:54:16 -0300182 unsigned int is_int:1;
183 unsigned int is_string:1;
184 unsigned int is_ptr:1;
Hans Verkuil998e7652014-06-10 07:55:00 -0300185 unsigned int is_array:1;
Hans Verkuil5626b8c2011-08-26 07:53:53 -0300186 unsigned int has_volatiles:1;
Hans Verkuil8ac7a942012-09-07 04:46:39 -0300187 unsigned int call_notify:1;
Hans Verkuil82a7c042011-06-28 10:43:13 -0300188 unsigned int manual_mode_value:8;
Hans Verkuil09965172010-08-01 14:32:42 -0300189
190 const struct v4l2_ctrl_ops *ops;
Hans Verkuil01760772014-04-27 03:22:17 -0300191 const struct v4l2_ctrl_type_ops *type_ops;
Hans Verkuil09965172010-08-01 14:32:42 -0300192 u32 id;
193 const char *name;
194 enum v4l2_ctrl_type type;
Hans Verkuil0ba2aeb2014-04-16 09:41:25 -0300195 s64 minimum, maximum, default_value;
Hans Verkuil20d88ee2014-06-12 07:55:21 -0300196 u32 elems;
Hans Verkuild9a25472014-06-12 07:54:16 -0300197 u32 elem_size;
Hans Verkuil20d88ee2014-06-12 07:55:21 -0300198 u32 dims[V4L2_CTRL_MAX_DIMS];
199 u32 nr_of_dims;
Hans Verkuil09965172010-08-01 14:32:42 -0300200 union {
Hans Verkuil0ba2aeb2014-04-16 09:41:25 -0300201 u64 step;
202 u64 menu_skip_mask;
Hans Verkuil09965172010-08-01 14:32:42 -0300203 };
Sakari Ailusce580fe2011-08-04 13:51:11 -0300204 union {
205 const char * const *qmenu;
206 const s64 *qmenu_int;
207 };
Hans Verkuil09965172010-08-01 14:32:42 -0300208 unsigned long flags;
Hans Verkuil09965172010-08-01 14:32:42 -0300209 void *priv;
Hans Verkuil2a9ec372014-04-27 03:38:13 -0300210 s32 val;
211 struct {
Hans Verkuild9a25472014-06-12 07:54:16 -0300212 s32 val;
Hans Verkuild9a25472014-06-12 07:54:16 -0300213 } cur;
Hans Verkuil01760772014-04-27 03:22:17 -0300214
215 union v4l2_ctrl_ptr p_new;
216 union v4l2_ctrl_ptr p_cur;
Hans Verkuil09965172010-08-01 14:32:42 -0300217};
218
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -0300219/**
220 * struct v4l2_ctrl_ref - The control reference.
221 * @node: List node for the sorted list.
222 * @next: Single-link list node for the hash.
223 * @ctrl: The actual control information.
224 * @helper: Pointer to helper struct. Used internally in prepare_ext_ctrls().
225 *
226 * Each control handler has a list of these refs. The list_head is used to
227 * keep a sorted-by-control-ID list of all controls, while the next pointer
228 * is used to link the control in the hash's bucket.
229 */
Hans Verkuil09965172010-08-01 14:32:42 -0300230struct v4l2_ctrl_ref {
231 struct list_head node;
232 struct v4l2_ctrl_ref *next;
233 struct v4l2_ctrl *ctrl;
Hans Verkuileb5b16e2011-06-14 10:04:06 -0300234 struct v4l2_ctrl_helper *helper;
Hans Verkuil09965172010-08-01 14:32:42 -0300235};
236
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -0300237/**
238 * struct v4l2_ctrl_handler - The control handler keeps track of all the
239 * controls: both the controls owned by the handler and those inherited
240 * from other handlers.
241 * @_lock: Default for "lock".
242 * @lock: Lock to control access to this handler and its controls.
243 * May be replaced by the user right after init.
244 * @ctrls: The list of controls owned by this handler.
245 * @ctrl_refs: The list of control references.
246 * @cached: The last found control reference. It is common that the same
247 * control is needed multiple times, so this is a simple
248 * optimization.
249 * @buckets: Buckets for the hashing. Allows for quick control lookup.
250 * @notify: A notify callback that is called whenever the control changes value.
251 * Note that the handler's lock is held when the notify function
252 * is called!
253 * @notify_priv: Passed as argument to the v4l2_ctrl notify callback.
254 * @nr_of_buckets: Total number of buckets in the array.
255 * @error: The error code of the first failed control addition.
256 */
Hans Verkuil09965172010-08-01 14:32:42 -0300257struct v4l2_ctrl_handler {
Sakari Ailus77e7c4e2012-01-24 21:05:34 -0300258 struct mutex _lock;
259 struct mutex *lock;
Hans Verkuil09965172010-08-01 14:32:42 -0300260 struct list_head ctrls;
261 struct list_head ctrl_refs;
262 struct v4l2_ctrl_ref *cached;
263 struct v4l2_ctrl_ref **buckets;
Hans Verkuil8ac7a942012-09-07 04:46:39 -0300264 v4l2_ctrl_notify_fnc notify;
265 void *notify_priv;
Hans Verkuil09965172010-08-01 14:32:42 -0300266 u16 nr_of_buckets;
267 int error;
268};
269
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -0300270/**
271 * struct v4l2_ctrl_config - Control configuration structure.
272 * @ops: The control ops.
273 * @type_ops: The control type ops. Only needed for compound controls.
274 * @id: The control ID.
275 * @name: The control name.
276 * @type: The control type.
277 * @min: The control's minimum value.
278 * @max: The control's maximum value.
279 * @step: The control's step value for non-menu controls.
280 * @def: The control's default value.
281 * @dims: The size of each dimension.
282 * @elem_size: The size in bytes of the control.
283 * @flags: The control's flags.
284 * @menu_skip_mask: The control's skip mask for menu controls. This makes it
285 * easy to skip menu items that are not valid. If bit X is set,
286 * then menu item X is skipped. Of course, this only works for
287 * menus with <= 64 menu items. There are no menus that come
288 * close to that number, so this is OK. Should we ever need more,
289 * then this will have to be extended to a bit array.
290 * @qmenu: A const char * array for all menu items. Array entries that are
291 * empty strings ("") correspond to non-existing menu items (this
292 * is in addition to the menu_skip_mask above). The last entry
293 * must be NULL.
294 * @is_private: If set, then this control is private to its handler and it
295 * will not be added to any other handlers.
296 */
Hans Verkuil09965172010-08-01 14:32:42 -0300297struct v4l2_ctrl_config {
298 const struct v4l2_ctrl_ops *ops;
Hans Verkuil01760772014-04-27 03:22:17 -0300299 const struct v4l2_ctrl_type_ops *type_ops;
Hans Verkuil09965172010-08-01 14:32:42 -0300300 u32 id;
301 const char *name;
302 enum v4l2_ctrl_type type;
Hans Verkuil0ba2aeb2014-04-16 09:41:25 -0300303 s64 min;
304 s64 max;
305 u64 step;
306 s64 def;
Hans Verkuil20d88ee2014-06-12 07:55:21 -0300307 u32 dims[V4L2_CTRL_MAX_DIMS];
Hans Verkuild9a25472014-06-12 07:54:16 -0300308 u32 elem_size;
Hans Verkuil09965172010-08-01 14:32:42 -0300309 u32 flags;
Hans Verkuil0ba2aeb2014-04-16 09:41:25 -0300310 u64 menu_skip_mask;
Hans Verkuil513521e2010-12-29 14:25:52 -0300311 const char * const *qmenu;
Sakari Ailusce580fe2011-08-04 13:51:11 -0300312 const s64 *qmenu_int;
Hans Verkuil09965172010-08-01 14:32:42 -0300313 unsigned int is_private:1;
Hans Verkuil09965172010-08-01 14:32:42 -0300314};
315
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -0300316/**
317 * v4l2_ctrl_fill() - Fill in the control fields based on the control ID.
318 *
319 * This works for all standard V4L2 controls.
320 * For non-standard controls it will only fill in the given arguments
321 * and @name will be NULL.
322 *
323 * This function will overwrite the contents of @name, @type and @flags.
324 * The contents of @min, @max, @step and @def may be modified depending on
325 * the type.
326 *
327 * Do not use in drivers! It is used internally for backwards compatibility
328 * control handling only. Once all drivers are converted to use the new
329 * control framework this function will no longer be exported.
330 */
Hans Verkuil09965172010-08-01 14:32:42 -0300331void v4l2_ctrl_fill(u32 id, const char **name, enum v4l2_ctrl_type *type,
Hans Verkuil0ba2aeb2014-04-16 09:41:25 -0300332 s64 *min, s64 *max, u64 *step, s64 *def, u32 *flags);
Hans Verkuil09965172010-08-01 14:32:42 -0300333
334
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -0300335/**
336 * v4l2_ctrl_handler_init_class() - Initialize the control handler.
337 * @hdl: The control handler.
338 * @nr_of_controls_hint: A hint of how many controls this handler is
339 * expected to refer to. This is the total number, so including
340 * any inherited controls. It doesn't have to be precise, but if
341 * it is way off, then you either waste memory (too many buckets
342 * are allocated) or the control lookup becomes slower (not enough
343 * buckets are allocated, so there are more slow list lookups).
344 * It will always work, though.
345 * @key: Used by the lock validator if CONFIG_LOCKDEP is set.
346 * @name: Used by the lock validator if CONFIG_LOCKDEP is set.
347 *
348 * Returns an error if the buckets could not be allocated. This error will
349 * also be stored in @hdl->error.
350 *
351 * Never use this call directly, always use the v4l2_ctrl_handler_init
352 * macro that hides the @key and @name arguments.
353 */
Andy Walls6cd247e2013-03-09 05:55:11 -0300354int v4l2_ctrl_handler_init_class(struct v4l2_ctrl_handler *hdl,
355 unsigned nr_of_controls_hint,
356 struct lock_class_key *key, const char *name);
357
358#ifdef CONFIG_LOCKDEP
359#define v4l2_ctrl_handler_init(hdl, nr_of_controls_hint) \
360( \
361 ({ \
362 static struct lock_class_key _key; \
363 v4l2_ctrl_handler_init_class(hdl, nr_of_controls_hint, \
364 &_key, \
365 KBUILD_BASENAME ":" \
366 __stringify(__LINE__) ":" \
367 "(" #hdl ")->_lock"); \
368 }) \
369)
370#else
371#define v4l2_ctrl_handler_init(hdl, nr_of_controls_hint) \
372 v4l2_ctrl_handler_init_class(hdl, nr_of_controls_hint, NULL, NULL)
373#endif
Hans Verkuil09965172010-08-01 14:32:42 -0300374
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -0300375/**
376 * v4l2_ctrl_handler_free() - Free all controls owned by the handler and free
377 * the control list.
378 * @hdl: The control handler.
379 *
380 * Does nothing if @hdl == NULL.
381 */
Hans Verkuil09965172010-08-01 14:32:42 -0300382void v4l2_ctrl_handler_free(struct v4l2_ctrl_handler *hdl);
383
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -0300384/**
385 * v4l2_ctrl_lock() - Helper function to lock the handler
386 * associated with the control.
387 * @ctrl: The control to lock.
388 */
Sakari Ailus605b3842014-06-12 13:09:39 -0300389static inline void v4l2_ctrl_lock(struct v4l2_ctrl *ctrl)
390{
391 mutex_lock(ctrl->handler->lock);
392}
393
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -0300394/**
395 * v4l2_ctrl_unlock() - Helper function to unlock the handler
396 * associated with the control.
397 * @ctrl: The control to unlock.
398 */
Sakari Ailus605b3842014-06-12 13:09:39 -0300399static inline void v4l2_ctrl_unlock(struct v4l2_ctrl *ctrl)
400{
401 mutex_unlock(ctrl->handler->lock);
402}
403
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -0300404/**
405 * v4l2_ctrl_handler_setup() - Call the s_ctrl op for all controls belonging
406 * to the handler to initialize the hardware to the current control values.
407 * @hdl: The control handler.
408 *
409 * Button controls will be skipped, as are read-only controls.
410 *
411 * If @hdl == NULL, then this just returns 0.
412 */
Hans Verkuil09965172010-08-01 14:32:42 -0300413int v4l2_ctrl_handler_setup(struct v4l2_ctrl_handler *hdl);
414
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -0300415/**
416 * v4l2_ctrl_handler_log_status() - Log all controls owned by the handler.
417 * @hdl: The control handler.
418 * @prefix: The prefix to use when logging the control values. If the
419 * prefix does not end with a space, then ": " will be added
420 * after the prefix. If @prefix == NULL, then no prefix will be
421 * used.
422 *
423 * For use with VIDIOC_LOG_STATUS.
424 *
425 * Does nothing if @hdl == NULL.
426 */
Hans Verkuil09965172010-08-01 14:32:42 -0300427void v4l2_ctrl_handler_log_status(struct v4l2_ctrl_handler *hdl,
428 const char *prefix);
429
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -0300430/**
431 * v4l2_ctrl_new_custom() - Allocate and initialize a new custom V4L2
432 * control.
433 * @hdl: The control handler.
434 * @cfg: The control's configuration data.
435 * @priv: The control's driver-specific private data.
436 *
437 * If the &v4l2_ctrl struct could not be allocated then NULL is returned
438 * and @hdl->error is set to the error code (if it wasn't set already).
439 */
Hans Verkuil09965172010-08-01 14:32:42 -0300440struct v4l2_ctrl *v4l2_ctrl_new_custom(struct v4l2_ctrl_handler *hdl,
441 const struct v4l2_ctrl_config *cfg, void *priv);
442
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -0300443/**
444 * v4l2_ctrl_new_std() - Allocate and initialize a new standard V4L2 non-menu control.
445 * @hdl: The control handler.
446 * @ops: The control ops.
447 * @id: The control ID.
448 * @min: The control's minimum value.
449 * @max: The control's maximum value.
450 * @step: The control's step value
451 * @def: The control's default value.
452 *
453 * If the &v4l2_ctrl struct could not be allocated, or the control
454 * ID is not known, then NULL is returned and @hdl->error is set to the
455 * appropriate error code (if it wasn't set already).
456 *
457 * If @id refers to a menu control, then this function will return NULL.
458 *
459 * Use v4l2_ctrl_new_std_menu() when adding menu controls.
460 */
Hans Verkuil09965172010-08-01 14:32:42 -0300461struct v4l2_ctrl *v4l2_ctrl_new_std(struct v4l2_ctrl_handler *hdl,
462 const struct v4l2_ctrl_ops *ops,
Hans Verkuil0ba2aeb2014-04-16 09:41:25 -0300463 u32 id, s64 min, s64 max, u64 step, s64 def);
Hans Verkuil09965172010-08-01 14:32:42 -0300464
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -0300465/**
466 * v4l2_ctrl_new_std_menu() - Allocate and initialize a new standard V4L2 menu control.
467 * @hdl: The control handler.
468 * @ops: The control ops.
469 * @id: The control ID.
470 * @max: The control's maximum value.
471 * @mask: The control's skip mask for menu controls. This makes it
472 * easy to skip menu items that are not valid. If bit X is set,
473 * then menu item X is skipped. Of course, this only works for
474 * menus with <= 64 menu items. There are no menus that come
475 * close to that number, so this is OK. Should we ever need more,
476 * then this will have to be extended to a bit array.
477 * @def: The control's default value.
478 *
479 * Same as v4l2_ctrl_new_std(), but @min is set to 0 and the @mask value
480 * determines which menu items are to be skipped.
481 *
482 * If @id refers to a non-menu control, then this function will return NULL.
483 */
Hans Verkuil09965172010-08-01 14:32:42 -0300484struct v4l2_ctrl *v4l2_ctrl_new_std_menu(struct v4l2_ctrl_handler *hdl,
485 const struct v4l2_ctrl_ops *ops,
Hans Verkuil0ba2aeb2014-04-16 09:41:25 -0300486 u32 id, u8 max, u64 mask, u8 def);
Hans Verkuil09965172010-08-01 14:32:42 -0300487
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -0300488/**
489 * v4l2_ctrl_new_std_menu_items() - Create a new standard V4L2 menu control
490 * with driver specific menu.
491 * @hdl: The control handler.
492 * @ops: The control ops.
493 * @id: The control ID.
494 * @max: The control's maximum value.
495 * @mask: The control's skip mask for menu controls. This makes it
496 * easy to skip menu items that are not valid. If bit X is set,
497 * then menu item X is skipped. Of course, this only works for
498 * menus with <= 64 menu items. There are no menus that come
499 * close to that number, so this is OK. Should we ever need more,
500 * then this will have to be extended to a bit array.
501 * @def: The control's default value.
502 * @qmenu: The new menu.
503 *
504 * Same as v4l2_ctrl_new_std_menu(), but @qmenu will be the driver specific
505 * menu of this control.
506 *
507 */
Lad, Prabhakar117a7112012-09-18 15:54:38 -0300508struct v4l2_ctrl *v4l2_ctrl_new_std_menu_items(struct v4l2_ctrl_handler *hdl,
Hans Verkuil0ba2aeb2014-04-16 09:41:25 -0300509 const struct v4l2_ctrl_ops *ops, u32 id, u8 max,
510 u64 mask, u8 def, const char * const *qmenu);
Lad, Prabhakar117a7112012-09-18 15:54:38 -0300511
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -0300512/**
513 * v4l2_ctrl_new_int_menu() - Create a new standard V4L2 integer menu control.
514 * @hdl: The control handler.
515 * @ops: The control ops.
516 * @id: The control ID.
517 * @max: The control's maximum value.
518 * @def: The control's default value.
519 * @qmenu_int: The control's menu entries.
520 *
521 * Same as v4l2_ctrl_new_std_menu(), but @mask is set to 0 and it additionaly
522 * takes as an argument an array of integers determining the menu items.
523 *
524 * If @id refers to a non-integer-menu control, then this function will return NULL.
525 */
Sylwester Nawrocki515f3282012-05-06 15:30:44 -0300526struct v4l2_ctrl *v4l2_ctrl_new_int_menu(struct v4l2_ctrl_handler *hdl,
527 const struct v4l2_ctrl_ops *ops,
Hans Verkuil0ba2aeb2014-04-16 09:41:25 -0300528 u32 id, u8 max, u8 def, const s64 *qmenu_int);
Sylwester Nawrocki515f3282012-05-06 15:30:44 -0300529
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -0300530/**
531 * v4l2_ctrl_add_ctrl() - Add a control from another handler to this handler.
532 * @hdl: The control handler.
533 * @ctrl: The control to add.
534 *
535 * It will return NULL if it was unable to add the control reference.
536 * If the control already belonged to the handler, then it will do
537 * nothing and just return @ctrl.
538 */
Hans Verkuil09965172010-08-01 14:32:42 -0300539struct v4l2_ctrl *v4l2_ctrl_add_ctrl(struct v4l2_ctrl_handler *hdl,
540 struct v4l2_ctrl *ctrl);
541
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -0300542/**
543 * v4l2_ctrl_add_handler() - Add all controls from handler @add to
544 * handler @hdl.
545 * @hdl: The control handler.
546 * @add: The control handler whose controls you want to add to
547 * the @hdl control handler.
548 * @filter: This function will filter which controls should be added.
549 *
550 * Does nothing if either of the two handlers is a NULL pointer.
551 * If @filter is NULL, then all controls are added. Otherwise only those
552 * controls for which @filter returns true will be added.
553 * In case of an error @hdl->error will be set to the error code (if it
554 * wasn't set already).
555 */
Hans Verkuil09965172010-08-01 14:32:42 -0300556int v4l2_ctrl_add_handler(struct v4l2_ctrl_handler *hdl,
Hans Verkuil34a6b7d2012-09-14 07:15:03 -0300557 struct v4l2_ctrl_handler *add,
558 bool (*filter)(const struct v4l2_ctrl *ctrl));
Hans Verkuil09965172010-08-01 14:32:42 -0300559
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -0300560/**
561 * v4l2_ctrl_radio_filter() - Standard filter for radio controls.
562 * @ctrl: The control that is filtered.
563 *
564 * This will return true for any controls that are valid for radio device
565 * nodes. Those are all of the V4L2_CID_AUDIO_* user controls and all FM
566 * transmitter class controls.
567 *
568 * This function is to be used with v4l2_ctrl_add_handler().
569 */
Hans Verkuil34a6b7d2012-09-14 07:15:03 -0300570bool v4l2_ctrl_radio_filter(const struct v4l2_ctrl *ctrl);
Hans Verkuil09965172010-08-01 14:32:42 -0300571
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -0300572/**
573 * v4l2_ctrl_cluster() - Mark all controls in the cluster as belonging to that cluster.
574 * @ncontrols: The number of controls in this cluster.
575 * @controls: The cluster control array of size @ncontrols.
576 */
Hans Verkuil09965172010-08-01 14:32:42 -0300577void v4l2_ctrl_cluster(unsigned ncontrols, struct v4l2_ctrl **controls);
578
579
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -0300580/**
581 * v4l2_ctrl_auto_cluster() - Mark all controls in the cluster as belonging to
582 * that cluster and set it up for autofoo/foo-type handling.
583 * @ncontrols: The number of controls in this cluster.
584 * @controls: The cluster control array of size @ncontrols. The first control
585 * must be the 'auto' control (e.g. autogain, autoexposure, etc.)
586 * @manual_val: The value for the first control in the cluster that equals the
587 * manual setting.
588 * @set_volatile: If true, then all controls except the first auto control will
589 * be volatile.
590 *
591 * Use for control groups where one control selects some automatic feature and
592 * the other controls are only active whenever the automatic feature is turned
593 * off (manual mode). Typical examples: autogain vs gain, auto-whitebalance vs
594 * red and blue balance, etc.
595 *
596 * The behavior of such controls is as follows:
597 *
598 * When the autofoo control is set to automatic, then any manual controls
599 * are set to inactive and any reads will call g_volatile_ctrl (if the control
600 * was marked volatile).
601 *
602 * When the autofoo control is set to manual, then any manual controls will
603 * be marked active, and any reads will just return the current value without
604 * going through g_volatile_ctrl.
605 *
606 * In addition, this function will set the V4L2_CTRL_FLAG_UPDATE flag
607 * on the autofoo control and V4L2_CTRL_FLAG_INACTIVE on the foo control(s)
608 * if autofoo is in auto mode.
609 */
Hans Verkuil72d877c2011-06-10 05:44:36 -0300610void v4l2_ctrl_auto_cluster(unsigned ncontrols, struct v4l2_ctrl **controls,
611 u8 manual_val, bool set_volatile);
612
613
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -0300614/**
615 * v4l2_ctrl_find() - Find a control with the given ID.
616 * @hdl: The control handler.
617 * @id: The control ID to find.
618 *
619 * If @hdl == NULL this will return NULL as well. Will lock the handler so
620 * do not use from inside &v4l2_ctrl_ops.
621 */
Hans Verkuil09965172010-08-01 14:32:42 -0300622struct v4l2_ctrl *v4l2_ctrl_find(struct v4l2_ctrl_handler *hdl, u32 id);
623
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -0300624/**
625 * v4l2_ctrl_activate() - Make the control active or inactive.
626 * @ctrl: The control to (de)activate.
627 * @active: True if the control should become active.
628 *
629 * This sets or clears the V4L2_CTRL_FLAG_INACTIVE flag atomically.
630 * Does nothing if @ctrl == NULL.
631 * This will usually be called from within the s_ctrl op.
632 * The V4L2_EVENT_CTRL event will be generated afterwards.
633 *
634 * This function assumes that the control handler is locked.
635 */
Hans Verkuil09965172010-08-01 14:32:42 -0300636void v4l2_ctrl_activate(struct v4l2_ctrl *ctrl, bool active);
637
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -0300638/**
639 * v4l2_ctrl_grab() - Mark the control as grabbed or not grabbed.
640 * @ctrl: The control to (de)activate.
641 * @grabbed: True if the control should become grabbed.
642 *
643 * This sets or clears the V4L2_CTRL_FLAG_GRABBED flag atomically.
644 * Does nothing if @ctrl == NULL.
645 * The V4L2_EVENT_CTRL event will be generated afterwards.
646 * This will usually be called when starting or stopping streaming in the
647 * driver.
648 *
649 * This function assumes that the control handler is not locked and will
650 * take the lock itself.
651 */
Hans Verkuil09965172010-08-01 14:32:42 -0300652void v4l2_ctrl_grab(struct v4l2_ctrl *ctrl, bool grabbed);
653
Sakari Ailus5a573922014-06-12 13:09:40 -0300654
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -0300655/**
656 *__v4l2_ctrl_modify_range() - Unlocked variant of v4l2_ctrl_modify_range()
657 *
658 * @ctrl: The control to update.
659 * @min: The control's minimum value.
660 * @max: The control's maximum value.
661 * @step: The control's step value
662 * @def: The control's default value.
663 *
664 * Update the range of a control on the fly. This works for control types
665 * INTEGER, BOOLEAN, MENU, INTEGER MENU and BITMASK. For menu controls the
666 * @step value is interpreted as a menu_skip_mask.
667 *
668 * An error is returned if one of the range arguments is invalid for this
669 * control type.
670 *
671 * This function assumes that the control handler is not locked and will
672 * take the lock itself.
673 */
Sakari Ailus5a573922014-06-12 13:09:40 -0300674int __v4l2_ctrl_modify_range(struct v4l2_ctrl *ctrl,
675 s64 min, s64 max, u64 step, s64 def);
676
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -0300677/**
678 * v4l2_ctrl_modify_range() - Update the range of a control.
679 * @ctrl: The control to update.
680 * @min: The control's minimum value.
681 * @max: The control's maximum value.
682 * @step: The control's step value
683 * @def: The control's default value.
684 *
685 * Update the range of a control on the fly. This works for control types
686 * INTEGER, BOOLEAN, MENU, INTEGER MENU and BITMASK. For menu controls the
687 * @step value is interpreted as a menu_skip_mask.
688 *
689 * An error is returned if one of the range arguments is invalid for this
690 * control type.
691 *
692 * This function assumes that the control handler is not locked and will
693 * take the lock itself.
694 */
Sakari Ailus5a573922014-06-12 13:09:40 -0300695static inline int v4l2_ctrl_modify_range(struct v4l2_ctrl *ctrl,
696 s64 min, s64 max, u64 step, s64 def)
697{
698 int rval;
699
700 v4l2_ctrl_lock(ctrl);
701 rval = __v4l2_ctrl_modify_range(ctrl, min, max, step, def);
702 v4l2_ctrl_unlock(ctrl);
703
704 return rval;
705}
Sylwester Nawrocki2ccbe772013-01-19 15:51:55 -0300706
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -0300707/**
708 * v4l2_ctrl_notify() - Function to set a notify callback for a control.
709 * @ctrl: The control.
710 * @notify: The callback function.
711 * @priv: The callback private handle, passed as argument to the callback.
712 *
713 * This function sets a callback function for the control. If @ctrl is NULL,
714 * then it will do nothing. If @notify is NULL, then the notify callback will
715 * be removed.
716 *
717 * There can be only one notify. If another already exists, then a WARN_ON
718 * will be issued and the function will do nothing.
719 */
Hans Verkuil8ac7a942012-09-07 04:46:39 -0300720void v4l2_ctrl_notify(struct v4l2_ctrl *ctrl, v4l2_ctrl_notify_fnc notify, void *priv);
721
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -0300722/**
723 * v4l2_ctrl_get_name() - Get the name of the control
Hans Verkuil79fbc202014-11-23 09:39:54 -0300724 * @id: The control ID.
725 *
726 * This function returns the name of the given control ID or NULL if it isn't
727 * a known control.
728 */
729const char *v4l2_ctrl_get_name(u32 id);
730
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -0300731/**
732 * v4l2_ctrl_get_menu() - Get the menu string array of the control
Hans Verkuil79fbc202014-11-23 09:39:54 -0300733 * @id: The control ID.
734 *
735 * This function returns the NULL-terminated menu string array name of the
736 * given control ID or NULL if it isn't a known menu control.
737 */
738const char * const *v4l2_ctrl_get_menu(u32 id);
739
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -0300740/**
741 * v4l2_ctrl_get_int_menu() - Get the integer menu array of the control
Hans Verkuil79fbc202014-11-23 09:39:54 -0300742 * @id: The control ID.
743 * @len: The size of the integer array.
744 *
745 * This function returns the integer array of the given control ID or NULL if it
746 * if it isn't a known integer menu control.
747 */
748const s64 *v4l2_ctrl_get_int_menu(u32 id, u32 *len);
749
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -0300750/**
751 * v4l2_ctrl_g_ctrl() - Helper function to get the control's value from within a driver.
752 * @ctrl: The control.
753 *
754 * This returns the control's value safely by going through the control
755 * framework. This function will lock the control's handler, so it cannot be
756 * used from within the &v4l2_ctrl_ops functions.
757 *
758 * This function is for integer type controls only.
759 */
Hans Verkuil09965172010-08-01 14:32:42 -0300760s32 v4l2_ctrl_g_ctrl(struct v4l2_ctrl *ctrl);
761
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -0300762/**
763 * __v4l2_ctrl_s_ctrl() - Unlocked variant of v4l2_ctrl_s_ctrl().
764 * @ctrl: The control.
765 * @val: The new value.
766 *
767 * This set the control's new value safely by going through the control
768 * framework. This function will lock the control's handler, so it cannot be
769 * used from within the &v4l2_ctrl_ops functions.
770 *
771 * This function is for integer type controls only.
772 */
Sakari Ailus0c4348a2014-06-12 13:09:42 -0300773int __v4l2_ctrl_s_ctrl(struct v4l2_ctrl *ctrl, s32 val);
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -0300774
Hans Verkuil09965172010-08-01 14:32:42 -0300775/** v4l2_ctrl_s_ctrl() - Helper function to set the control's value from within a driver.
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -0300776 * @ctrl: The control.
777 * @val: The new value.
778 *
779 * This set the control's new value safely by going through the control
780 * framework. This function will lock the control's handler, so it cannot be
781 * used from within the &v4l2_ctrl_ops functions.
782 *
783 * This function is for integer type controls only.
784 */
Sakari Ailus0c4348a2014-06-12 13:09:42 -0300785static inline int v4l2_ctrl_s_ctrl(struct v4l2_ctrl *ctrl, s32 val)
786{
787 int rval;
788
789 v4l2_ctrl_lock(ctrl);
790 rval = __v4l2_ctrl_s_ctrl(ctrl, val);
791 v4l2_ctrl_unlock(ctrl);
792
793 return rval;
794}
Hans Verkuil09965172010-08-01 14:32:42 -0300795
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -0300796/**
797 * v4l2_ctrl_g_ctrl_int64() - Helper function to get a 64-bit control's value
798 * from within a driver.
799 * @ctrl: The control.
800 *
801 * This returns the control's value safely by going through the control
802 * framework. This function will lock the control's handler, so it cannot be
803 * used from within the &v4l2_ctrl_ops functions.
804 *
805 * This function is for 64-bit integer type controls only.
806 */
Laurent Pinchart03d52852012-07-23 09:15:21 -0300807s64 v4l2_ctrl_g_ctrl_int64(struct v4l2_ctrl *ctrl);
808
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -0300809/**
810 * __v4l2_ctrl_s_ctrl_int64() - Unlocked variant of v4l2_ctrl_s_ctrl_int64().
811 *
812 * @ctrl: The control.
813 * @val: The new value.
814 *
815 * This set the control's new value safely by going through the control
816 * framework. This function will lock the control's handler, so it cannot be
817 * used from within the &v4l2_ctrl_ops functions.
818 *
819 * This function is for 64-bit integer type controls only.
820 */
Sakari Ailus0c4348a2014-06-12 13:09:42 -0300821int __v4l2_ctrl_s_ctrl_int64(struct v4l2_ctrl *ctrl, s64 val);
822
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -0300823/** v4l2_ctrl_s_ctrl_int64() - Helper function to set a 64-bit control's value
824 * from within a driver.
825 *
826 * @ctrl: The control.
827 * @val: The new value.
828 *
829 * This set the control's new value safely by going through the control
830 * framework. This function will lock the control's handler, so it cannot be
831 * used from within the &v4l2_ctrl_ops functions.
832 *
833 * This function is for 64-bit integer type controls only.
834 */
Sakari Ailus0c4348a2014-06-12 13:09:42 -0300835static inline int v4l2_ctrl_s_ctrl_int64(struct v4l2_ctrl *ctrl, s64 val)
836{
837 int rval;
838
839 v4l2_ctrl_lock(ctrl);
840 rval = __v4l2_ctrl_s_ctrl_int64(ctrl, val);
841 v4l2_ctrl_unlock(ctrl);
842
843 return rval;
844}
Laurent Pinchart03d52852012-07-23 09:15:21 -0300845
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -0300846/** __v4l2_ctrl_s_ctrl_string() - Unlocked variant of v4l2_ctrl_s_ctrl_string().
847 *
848 * @ctrl: The control.
849 * @s: The new string.
850 *
851 * This set the control's new string safely by going through the control
852 * framework. This function will lock the control's handler, so it cannot be
853 * used from within the &v4l2_ctrl_ops functions.
854 *
855 * This function is for string type controls only.
856 */
Hans Verkuil5d0360a2014-07-21 10:45:42 -0300857int __v4l2_ctrl_s_ctrl_string(struct v4l2_ctrl *ctrl, const char *s);
858
Mauro Carvalho Chehab8c2721d2015-08-22 08:03:49 -0300859/** v4l2_ctrl_s_ctrl_string() - Helper function to set a control's string value
860 * from within a driver.
861 *
862 * @ctrl: The control.
863 * @s: The new string.
864 *
865 * This set the control's new string safely by going through the control
866 * framework. This function will lock the control's handler, so it cannot be
867 * used from within the &v4l2_ctrl_ops functions.
868 *
869 * This function is for string type controls only.
870 */
Hans Verkuil5d0360a2014-07-21 10:45:42 -0300871static inline int v4l2_ctrl_s_ctrl_string(struct v4l2_ctrl *ctrl, const char *s)
872{
873 int rval;
874
875 v4l2_ctrl_lock(ctrl);
876 rval = __v4l2_ctrl_s_ctrl_string(ctrl, s);
877 v4l2_ctrl_unlock(ctrl);
878
879 return rval;
880}
881
Hans Verkuilce727572011-06-10 05:56:39 -0300882/* Internal helper functions that deal with control events. */
Hans de Goede3e3661492012-04-08 12:59:47 -0300883extern const struct v4l2_subscribed_event_ops v4l2_ctrl_sub_ev_ops;
884void v4l2_ctrl_replace(struct v4l2_event *old, const struct v4l2_event *new);
885void v4l2_ctrl_merge(const struct v4l2_event *old, struct v4l2_event *new);
Hans Verkuil6e239392011-06-07 11:13:44 -0300886
Hans Verkuile2ecb252012-02-02 08:20:53 -0300887/* Can be used as a vidioc_log_status function that just dumps all controls
888 associated with the filehandle. */
889int v4l2_ctrl_log_status(struct file *file, void *fh);
890
Hans Verkuila26243b2012-01-27 16:18:42 -0300891/* Can be used as a vidioc_subscribe_event function that just subscribes
892 control events. */
893int v4l2_ctrl_subscribe_event(struct v4l2_fh *fh,
Hans Verkuil85f5fe32012-09-04 11:46:09 -0300894 const struct v4l2_event_subscription *sub);
Hans Verkuila26243b2012-01-27 16:18:42 -0300895
896/* Can be used as a poll function that just polls for control events. */
897unsigned int v4l2_ctrl_poll(struct file *file, struct poll_table_struct *wait);
898
Hans Verkuil09965172010-08-01 14:32:42 -0300899/* Helpers for ioctl_ops. If hdl == NULL then they will all return -EINVAL. */
900int v4l2_queryctrl(struct v4l2_ctrl_handler *hdl, struct v4l2_queryctrl *qc);
Hans Verkuild9a25472014-06-12 07:54:16 -0300901int v4l2_query_ext_ctrl(struct v4l2_ctrl_handler *hdl, struct v4l2_query_ext_ctrl *qc);
Hans Verkuil09965172010-08-01 14:32:42 -0300902int v4l2_querymenu(struct v4l2_ctrl_handler *hdl, struct v4l2_querymenu *qm);
903int v4l2_g_ctrl(struct v4l2_ctrl_handler *hdl, struct v4l2_control *ctrl);
Hans Verkuilab892ba2011-06-07 06:47:18 -0300904int v4l2_s_ctrl(struct v4l2_fh *fh, struct v4l2_ctrl_handler *hdl,
905 struct v4l2_control *ctrl);
Hans Verkuil09965172010-08-01 14:32:42 -0300906int v4l2_g_ext_ctrls(struct v4l2_ctrl_handler *hdl, struct v4l2_ext_controls *c);
907int v4l2_try_ext_ctrls(struct v4l2_ctrl_handler *hdl, struct v4l2_ext_controls *c);
Hans Verkuilab892ba2011-06-07 06:47:18 -0300908int v4l2_s_ext_ctrls(struct v4l2_fh *fh, struct v4l2_ctrl_handler *hdl,
909 struct v4l2_ext_controls *c);
Hans Verkuil09965172010-08-01 14:32:42 -0300910
911/* Helpers for subdevices. If the associated ctrl_handler == NULL then they
912 will all return -EINVAL. */
913int v4l2_subdev_queryctrl(struct v4l2_subdev *sd, struct v4l2_queryctrl *qc);
914int v4l2_subdev_querymenu(struct v4l2_subdev *sd, struct v4l2_querymenu *qm);
915int v4l2_subdev_g_ext_ctrls(struct v4l2_subdev *sd, struct v4l2_ext_controls *cs);
916int v4l2_subdev_try_ext_ctrls(struct v4l2_subdev *sd, struct v4l2_ext_controls *cs);
917int v4l2_subdev_s_ext_ctrls(struct v4l2_subdev *sd, struct v4l2_ext_controls *cs);
918int v4l2_subdev_g_ctrl(struct v4l2_subdev *sd, struct v4l2_control *ctrl);
919int v4l2_subdev_s_ctrl(struct v4l2_subdev *sd, struct v4l2_control *ctrl);
920
Sylwester Nawrocki22fa4272013-01-22 19:00:23 -0300921/* Can be used as a subscribe_event function that just subscribes control
922 events. */
923int v4l2_ctrl_subdev_subscribe_event(struct v4l2_subdev *sd, struct v4l2_fh *fh,
924 struct v4l2_event_subscription *sub);
925
Sylwester Nawrockiffa9b9f2013-01-22 19:01:02 -0300926/* Log all controls owned by subdev's control handler. */
927int v4l2_ctrl_subdev_log_status(struct v4l2_subdev *sd);
928
Hans Verkuil09965172010-08-01 14:32:42 -0300929#endif