]> git.ipfire.org Git - thirdparty/kernel/linux.git/blame - include/media/v4l2-ctrls.h
s390: correct some inline assembly constraints
[thirdparty/kernel/linux.git] / include / media / v4l2-ctrls.h
CommitLineData
0996517c 1/*
8ec4bee7
MCC
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.
0996517c
HV
15 */
16
17#ifndef _V4L2_CTRLS_H
18#define _V4L2_CTRLS_H
19
20#include <linux/list.h>
a19dec6e 21#include <linux/mutex.h>
01c40c04 22#include <linux/videodev2.h>
52beeddb 23#include <media/media-request.h>
0996517c 24
95140634
HV
25/*
26 * Include the mpeg2 stateless codec compound control definitions.
27 * This will move to the public headers once this API is fully stable.
28 */
29#include <media/mpeg2-ctrls.h>
30
0996517c 31/* forward references */
528f0f78 32struct file;
0996517c 33struct v4l2_ctrl_handler;
eb5b16ef 34struct v4l2_ctrl_helper;
0996517c
HV
35struct v4l2_ctrl;
36struct video_device;
37struct v4l2_subdev;
77068d36 38struct v4l2_subscribed_event;
6e239399 39struct v4l2_fh;
a26243b0 40struct poll_table_struct;
0996517c 41
8c2721d5
MCC
42/**
43 * union v4l2_ctrl_ptr - A pointer to a control value.
c27bb30e
PK
44 * @p_s32: Pointer to a 32-bit signed value.
45 * @p_s64: Pointer to a 64-bit signed value.
46 * @p_u8: Pointer to a 8-bit unsigned value.
47 * @p_u16: Pointer to a 16-bit unsigned value.
48 * @p_u32: Pointer to a 32-bit unsigned value.
49 * @p_char: Pointer to a string.
50 * @p_mpeg2_slice_params: Pointer to a MPEG2 slice parameters structure.
51 * @p_mpeg2_quantization: Pointer to a MPEG2 quantization data structure.
52 * @p: Pointer to a compound value.
0176077a
HV
53 */
54union v4l2_ctrl_ptr {
55 s32 *p_s32;
56 s64 *p_s64;
dda4a4d5
HV
57 u8 *p_u8;
58 u16 *p_u16;
811c5081 59 u32 *p_u32;
0176077a 60 char *p_char;
c27bb30e
PK
61 struct v4l2_ctrl_mpeg2_slice_params *p_mpeg2_slice_params;
62 struct v4l2_ctrl_mpeg2_quantization *p_mpeg2_quantization;
0176077a
HV
63 void *p;
64};
65
8c2721d5
MCC
66/**
67 * struct v4l2_ctrl_ops - The control operations that the driver has to provide.
8ec4bee7 68 *
8c2721d5
MCC
69 * @g_volatile_ctrl: Get a new value for this control. Generally only relevant
70 * for volatile (and usually read-only) controls such as a control
71 * that returns the current signal strength which changes
72 * continuously.
73 * If not set, then the currently cached value will be returned.
74 * @try_ctrl: Test whether the control's value is valid. Only relevant when
75 * the usual min/max/step checks are not sufficient.
76 * @s_ctrl: Actually set the new control value. s_ctrl is compulsory. The
77 * ctrl->handler->lock is held when these ops are called, so no
78 * one else can access controls owned by that handler.
79 */
0996517c
HV
80struct v4l2_ctrl_ops {
81 int (*g_volatile_ctrl)(struct v4l2_ctrl *ctrl);
82 int (*try_ctrl)(struct v4l2_ctrl *ctrl);
83 int (*s_ctrl)(struct v4l2_ctrl *ctrl);
84};
85
8c2721d5
MCC
86/**
87 * struct v4l2_ctrl_type_ops - The control type operations that the driver
8ec4bee7 88 * has to provide.
8c2721d5
MCC
89 *
90 * @equal: return true if both values are equal.
91 * @init: initialize the value.
92 * @log: log the value.
8ec4bee7
MCC
93 * @validate: validate the value. Return 0 on success and a negative value
94 * otherwise.
8c2721d5 95 */
0176077a 96struct v4l2_ctrl_type_ops {
998e7659 97 bool (*equal)(const struct v4l2_ctrl *ctrl, u32 idx,
0176077a
HV
98 union v4l2_ctrl_ptr ptr1,
99 union v4l2_ctrl_ptr ptr2);
998e7659 100 void (*init)(const struct v4l2_ctrl *ctrl, u32 idx,
0176077a
HV
101 union v4l2_ctrl_ptr ptr);
102 void (*log)(const struct v4l2_ctrl *ctrl);
998e7659 103 int (*validate)(const struct v4l2_ctrl *ctrl, u32 idx,
0176077a
HV
104 union v4l2_ctrl_ptr ptr);
105};
106
2257e180
MCC
107/**
108 * typedef v4l2_ctrl_notify_fnc - typedef for a notify argument with a function
109 * that should be called when a control value has changed.
110 *
111 * @ctrl: pointer to struct &v4l2_ctrl
112 * @priv: control private data
113 *
114 * This typedef definition is used as an argument to v4l2_ctrl_notify()
115 * and as an argument at struct &v4l2_ctrl_handler.
116 */
8ac7a949
HV
117typedef void (*v4l2_ctrl_notify_fnc)(struct v4l2_ctrl *ctrl, void *priv);
118
8c2721d5
MCC
119/**
120 * struct v4l2_ctrl - The control structure.
8ec4bee7 121 *
8c2721d5
MCC
122 * @node: The list node.
123 * @ev_subs: The list of control event subscriptions.
124 * @handler: The handler that owns the control.
125 * @cluster: Point to start of cluster array.
126 * @ncontrols: Number of controls in cluster array.
127 * @done: Internal flag: set for each processed control.
128 * @is_new: Set when the user specified a new value for this control. It
8ec4bee7 129 * is also set when called from v4l2_ctrl_handler_setup(). Drivers
8c2721d5
MCC
130 * should never set this flag.
131 * @has_changed: Set when the current value differs from the new value. Drivers
132 * should never use this flag.
133 * @is_private: If set, then this control is private to its handler and it
134 * will not be added to any other handlers. Drivers can set
135 * this flag.
136 * @is_auto: If set, then this control selects whether the other cluster
137 * members are in 'automatic' mode or 'manual' mode. This is
138 * used for autogain/gain type clusters. Drivers should never
139 * set this flag directly.
140 * @is_int: If set, then this control has a simple integer value (i.e. it
141 * uses ctrl->val).
8ec4bee7
MCC
142 * @is_string: If set, then this control has type %V4L2_CTRL_TYPE_STRING.
143 * @is_ptr: If set, then this control is an array and/or has type >=
144 * %V4L2_CTRL_COMPOUND_TYPES
145 * and/or has type %V4L2_CTRL_TYPE_STRING. In other words, &struct
8c2721d5
MCC
146 * v4l2_ext_control uses field p to point to the data.
147 * @is_array: If set, then this control contains an N-dimensional array.
148 * @has_volatiles: If set, then one or more members of the cluster are volatile.
149 * Drivers should never touch this flag.
150 * @call_notify: If set, then call the handler's notify function whenever the
151 * control's value changes.
152 * @manual_mode_value: If the is_auto flag is set, then this is the value
153 * of the auto control that determines if that control is in
154 * manual mode. So if the value of the auto control equals this
155 * value, then the whole cluster is in manual mode. Drivers should
156 * never set this flag directly.
157 * @ops: The control ops.
158 * @type_ops: The control type ops.
159 * @id: The control ID.
160 * @name: The control name.
161 * @type: The control type.
162 * @minimum: The control's minimum value.
163 * @maximum: The control's maximum value.
164 * @default_value: The control's default value.
165 * @step: The control's step value for non-menu controls.
166 * @elems: The number of elements in the N-dimensional array.
167 * @elem_size: The size in bytes of the control.
168 * @dims: The size of each dimension.
169 * @nr_of_dims:The number of dimensions in @dims.
170 * @menu_skip_mask: The control's skip mask for menu controls. This makes it
171 * easy to skip menu items that are not valid. If bit X is set,
172 * then menu item X is skipped. Of course, this only works for
173 * menus with <= 32 menu items. There are no menus that come
174 * close to that number, so this is OK. Should we ever need more,
175 * then this will have to be extended to a u64 or a bit array.
176 * @qmenu: A const char * array for all menu items. Array entries that are
177 * empty strings ("") correspond to non-existing menu items (this
178 * is in addition to the menu_skip_mask above). The last entry
179 * must be NULL.
20139f18
MCC
180 * Used only if the @type is %V4L2_CTRL_TYPE_MENU.
181 * @qmenu_int: A 64-bit integer array for with integer menu items.
182 * The size of array must be equal to the menu size, e. g.:
183 * :math:`ceil(\frac{maximum - minimum}{step}) + 1`.
184 * Used only if the @type is %V4L2_CTRL_TYPE_INTEGER_MENU.
8c2721d5 185 * @flags: The control's flags.
20139f18
MCC
186 * @cur: Structure to store the current value.
187 * @cur.val: The control's current value, if the @type is represented via
188 * a u32 integer (see &enum v4l2_ctrl_type).
8c2721d5 189 * @val: The control's new s32 value.
8c2721d5
MCC
190 * @priv: The control's private pointer. For use by the driver. It is
191 * untouched by the control framework. Note that this pointer is
192 * not freed when the control is deleted. Should this be needed
193 * then a new internal bitfield can be added to tell the framework
194 * to free this pointer.
bf7b7048 195 * @p_cur: The control's current value represented via a union which
7dc87919
MCC
196 * provides a standard way of accessing control types
197 * through a pointer.
bf7b7048 198 * @p_new: The control's new value represented via a union which provides
7dc87919
MCC
199 * a standard way of accessing control types
200 * through a pointer.
8c2721d5 201 */
0996517c
HV
202struct v4l2_ctrl {
203 /* Administrative fields */
204 struct list_head node;
77068d36 205 struct list_head ev_subs;
0996517c
HV
206 struct v4l2_ctrl_handler *handler;
207 struct v4l2_ctrl **cluster;
8ec4bee7
MCC
208 unsigned int ncontrols;
209
0996517c
HV
210 unsigned int done:1;
211
2a863793 212 unsigned int is_new:1;
9ea1b7a4 213 unsigned int has_changed:1;
0996517c 214 unsigned int is_private:1;
72d877ca 215 unsigned int is_auto:1;
d9a25471
HV
216 unsigned int is_int:1;
217 unsigned int is_string:1;
218 unsigned int is_ptr:1;
998e7659 219 unsigned int is_array:1;
5626b8c7 220 unsigned int has_volatiles:1;
8ac7a949 221 unsigned int call_notify:1;
82a7c049 222 unsigned int manual_mode_value:8;
0996517c
HV
223
224 const struct v4l2_ctrl_ops *ops;
0176077a 225 const struct v4l2_ctrl_type_ops *type_ops;
0996517c
HV
226 u32 id;
227 const char *name;
228 enum v4l2_ctrl_type type;
0ba2aeb6 229 s64 minimum, maximum, default_value;
20d88eef 230 u32 elems;
d9a25471 231 u32 elem_size;
20d88eef
HV
232 u32 dims[V4L2_CTRL_MAX_DIMS];
233 u32 nr_of_dims;
0996517c 234 union {
0ba2aeb6
HV
235 u64 step;
236 u64 menu_skip_mask;
0996517c 237 };
ce580fe5
SA
238 union {
239 const char * const *qmenu;
240 const s64 *qmenu_int;
241 };
0996517c 242 unsigned long flags;
d9a25471 243 void *priv;
2a9ec373
HV
244 s32 val;
245 struct {
0996517c 246 s32 val;
d9a25471 247 } cur;
0176077a
HV
248
249 union v4l2_ctrl_ptr p_new;
250 union v4l2_ctrl_ptr p_cur;
0996517c
HV
251};
252
8c2721d5
MCC
253/**
254 * struct v4l2_ctrl_ref - The control reference.
8ec4bee7 255 *
8c2721d5
MCC
256 * @node: List node for the sorted list.
257 * @next: Single-link list node for the hash.
258 * @ctrl: The actual control information.
8ec4bee7 259 * @helper: Pointer to helper struct. Used internally in
fb91161a 260 * ``prepare_ext_ctrls`` function at ``v4l2-ctrl.c``.
da1b1aea
HV
261 * @from_other_dev: If true, then @ctrl was defined in another
262 * device than the &struct v4l2_ctrl_handler.
6fa6f831
HV
263 * @req_done: Internal flag: if the control handler containing this control
264 * reference is bound to a media request, then this is set when
265 * the control has been applied. This prevents applying controls
266 * from a cluster with multiple controls twice (when the first
267 * control of a cluster is applied, they all are).
268 * @req: If set, this refers to another request that sets this control.
52beeddb
HV
269 * @p_req: If the control handler containing this control reference
270 * is bound to a media request, then this points to the
271 * value of the control that should be applied when the request
272 * is executed, or to the value of the control at the time
273 * that the request was completed.
8c2721d5
MCC
274 *
275 * Each control handler has a list of these refs. The list_head is used to
276 * keep a sorted-by-control-ID list of all controls, while the next pointer
277 * is used to link the control in the hash's bucket.
278 */
0996517c
HV
279struct v4l2_ctrl_ref {
280 struct list_head node;
281 struct v4l2_ctrl_ref *next;
282 struct v4l2_ctrl *ctrl;
eb5b16ef 283 struct v4l2_ctrl_helper *helper;
da1b1aea 284 bool from_other_dev;
6fa6f831
HV
285 bool req_done;
286 struct v4l2_ctrl_ref *req;
52beeddb 287 union v4l2_ctrl_ptr p_req;
0996517c
HV
288};
289
8c2721d5
MCC
290/**
291 * struct v4l2_ctrl_handler - The control handler keeps track of all the
8ec4bee7
MCC
292 * controls: both the controls owned by the handler and those inherited
293 * from other handlers.
294 *
8c2721d5
MCC
295 * @_lock: Default for "lock".
296 * @lock: Lock to control access to this handler and its controls.
297 * May be replaced by the user right after init.
298 * @ctrls: The list of controls owned by this handler.
299 * @ctrl_refs: The list of control references.
300 * @cached: The last found control reference. It is common that the same
301 * control is needed multiple times, so this is a simple
302 * optimization.
303 * @buckets: Buckets for the hashing. Allows for quick control lookup.
8ec4bee7
MCC
304 * @notify: A notify callback that is called whenever the control changes
305 * value.
8c2721d5
MCC
306 * Note that the handler's lock is held when the notify function
307 * is called!
308 * @notify_priv: Passed as argument to the v4l2_ctrl notify callback.
309 * @nr_of_buckets: Total number of buckets in the array.
310 * @error: The error code of the first failed control addition.
6fa6f831
HV
311 * @request_is_queued: True if the request was queued.
312 * @requests: List to keep track of open control handler request objects.
313 * For the parent control handler (@req_obj.req == NULL) this
314 * is the list header. When the parent control handler is
315 * removed, it has to unbind and put all these requests since
316 * they refer to the parent.
317 * @requests_queued: List of the queued requests. This determines the order
318 * in which these controls are applied. Once the request is
319 * completed it is removed from this list.
52beeddb
HV
320 * @req_obj: The &struct media_request_object, used to link into a
321 * &struct media_request. This request object has a refcount.
8c2721d5 322 */
0996517c 323struct v4l2_ctrl_handler {
77e7c4e6
SA
324 struct mutex _lock;
325 struct mutex *lock;
0996517c
HV
326 struct list_head ctrls;
327 struct list_head ctrl_refs;
328 struct v4l2_ctrl_ref *cached;
329 struct v4l2_ctrl_ref **buckets;
8ac7a949
HV
330 v4l2_ctrl_notify_fnc notify;
331 void *notify_priv;
0996517c
HV
332 u16 nr_of_buckets;
333 int error;
6fa6f831
HV
334 bool request_is_queued;
335 struct list_head requests;
336 struct list_head requests_queued;
52beeddb 337 struct media_request_object req_obj;
0996517c
HV
338};
339
8c2721d5
MCC
340/**
341 * struct v4l2_ctrl_config - Control configuration structure.
8ec4bee7 342 *
8c2721d5
MCC
343 * @ops: The control ops.
344 * @type_ops: The control type ops. Only needed for compound controls.
345 * @id: The control ID.
346 * @name: The control name.
347 * @type: The control type.
348 * @min: The control's minimum value.
349 * @max: The control's maximum value.
350 * @step: The control's step value for non-menu controls.
8ec4bee7 351 * @def: The control's default value.
8c2721d5
MCC
352 * @dims: The size of each dimension.
353 * @elem_size: The size in bytes of the control.
354 * @flags: The control's flags.
355 * @menu_skip_mask: The control's skip mask for menu controls. This makes it
356 * easy to skip menu items that are not valid. If bit X is set,
357 * then menu item X is skipped. Of course, this only works for
358 * menus with <= 64 menu items. There are no menus that come
359 * close to that number, so this is OK. Should we ever need more,
360 * then this will have to be extended to a bit array.
361 * @qmenu: A const char * array for all menu items. Array entries that are
362 * empty strings ("") correspond to non-existing menu items (this
363 * is in addition to the menu_skip_mask above). The last entry
364 * must be NULL.
7dc87919 365 * @qmenu_int: A const s64 integer array for all menu items of the type
8ec4bee7 366 * V4L2_CTRL_TYPE_INTEGER_MENU.
8c2721d5
MCC
367 * @is_private: If set, then this control is private to its handler and it
368 * will not be added to any other handlers.
369 */
0996517c
HV
370struct v4l2_ctrl_config {
371 const struct v4l2_ctrl_ops *ops;
0176077a 372 const struct v4l2_ctrl_type_ops *type_ops;
0996517c
HV
373 u32 id;
374 const char *name;
375 enum v4l2_ctrl_type type;
0ba2aeb6
HV
376 s64 min;
377 s64 max;
378 u64 step;
379 s64 def;
20d88eef 380 u32 dims[V4L2_CTRL_MAX_DIMS];
d9a25471 381 u32 elem_size;
0996517c 382 u32 flags;
0ba2aeb6 383 u64 menu_skip_mask;
513521ea 384 const char * const *qmenu;
ce580fe5 385 const s64 *qmenu_int;
0996517c 386 unsigned int is_private:1;
0996517c
HV
387};
388
8ec4bee7
MCC
389/**
390 * v4l2_ctrl_fill - Fill in the control fields based on the control ID.
391 *
392 * @id: ID of the control
67c672ec
MCC
393 * @name: pointer to be filled with a string with the name of the control
394 * @type: pointer for storing the type of the control
395 * @min: pointer for storing the minimum value for the control
396 * @max: pointer for storing the maximum value for the control
397 * @step: pointer for storing the control step
398 * @def: pointer for storing the default value for the control
399 * @flags: pointer for storing the flags to be used on the control
8c2721d5
MCC
400 *
401 * This works for all standard V4L2 controls.
402 * For non-standard controls it will only fill in the given arguments
67c672ec 403 * and @name content will be set to %NULL.
8c2721d5
MCC
404 *
405 * This function will overwrite the contents of @name, @type and @flags.
406 * The contents of @min, @max, @step and @def may be modified depending on
407 * the type.
408 *
8ec4bee7
MCC
409 * .. note::
410 *
411 * Do not use in drivers! It is used internally for backwards compatibility
412 * control handling only. Once all drivers are converted to use the new
413 * control framework this function will no longer be exported.
8c2721d5 414 */
0996517c 415void v4l2_ctrl_fill(u32 id, const char **name, enum v4l2_ctrl_type *type,
0ba2aeb6 416 s64 *min, s64 *max, u64 *step, s64 *def, u32 *flags);
0996517c
HV
417
418
8c2721d5
MCC
419/**
420 * v4l2_ctrl_handler_init_class() - Initialize the control handler.
421 * @hdl: The control handler.
422 * @nr_of_controls_hint: A hint of how many controls this handler is
423 * expected to refer to. This is the total number, so including
424 * any inherited controls. It doesn't have to be precise, but if
425 * it is way off, then you either waste memory (too many buckets
426 * are allocated) or the control lookup becomes slower (not enough
427 * buckets are allocated, so there are more slow list lookups).
428 * It will always work, though.
429 * @key: Used by the lock validator if CONFIG_LOCKDEP is set.
430 * @name: Used by the lock validator if CONFIG_LOCKDEP is set.
431 *
2257e180
MCC
432 * .. attention::
433 *
434 * Never use this call directly, always use the v4l2_ctrl_handler_init()
435 * macro that hides the @key and @name arguments.
8c2721d5 436 *
2257e180
MCC
437 * Return: returns an error if the buckets could not be allocated. This
438 * error will also be stored in @hdl->error.
8c2721d5 439 */
6cd247ef 440int v4l2_ctrl_handler_init_class(struct v4l2_ctrl_handler *hdl,
8ec4bee7 441 unsigned int nr_of_controls_hint,
6cd247ef
AW
442 struct lock_class_key *key, const char *name);
443
444#ifdef CONFIG_LOCKDEP
2257e180
MCC
445
446/**
e383ce07
MCC
447 * v4l2_ctrl_handler_init - helper function to create a static struct
448 * &lock_class_key and calls v4l2_ctrl_handler_init_class()
2257e180
MCC
449 *
450 * @hdl: The control handler.
451 * @nr_of_controls_hint: A hint of how many controls this handler is
452 * expected to refer to. This is the total number, so including
453 * any inherited controls. It doesn't have to be precise, but if
454 * it is way off, then you either waste memory (too many buckets
455 * are allocated) or the control lookup becomes slower (not enough
456 * buckets are allocated, so there are more slow list lookups).
457 * It will always work, though.
458 *
459 * This helper function creates a static struct &lock_class_key and
460 * calls v4l2_ctrl_handler_init_class(), providing a proper name for the lock
461 * validador.
462 *
463 * Use this helper function to initialize a control handler.
464 */
6cd247ef
AW
465#define v4l2_ctrl_handler_init(hdl, nr_of_controls_hint) \
466( \
467 ({ \
468 static struct lock_class_key _key; \
469 v4l2_ctrl_handler_init_class(hdl, nr_of_controls_hint, \
470 &_key, \
471 KBUILD_BASENAME ":" \
472 __stringify(__LINE__) ":" \
473 "(" #hdl ")->_lock"); \
474 }) \
475)
476#else
477#define v4l2_ctrl_handler_init(hdl, nr_of_controls_hint) \
478 v4l2_ctrl_handler_init_class(hdl, nr_of_controls_hint, NULL, NULL)
479#endif
0996517c 480
8c2721d5
MCC
481/**
482 * v4l2_ctrl_handler_free() - Free all controls owned by the handler and free
483 * the control list.
484 * @hdl: The control handler.
485 *
486 * Does nothing if @hdl == NULL.
487 */
0996517c
HV
488void v4l2_ctrl_handler_free(struct v4l2_ctrl_handler *hdl);
489
8c2721d5
MCC
490/**
491 * v4l2_ctrl_lock() - Helper function to lock the handler
492 * associated with the control.
493 * @ctrl: The control to lock.
494 */
605b3840
SA
495static inline void v4l2_ctrl_lock(struct v4l2_ctrl *ctrl)
496{
497 mutex_lock(ctrl->handler->lock);
498}
499
8c2721d5
MCC
500/**
501 * v4l2_ctrl_unlock() - Helper function to unlock the handler
502 * associated with the control.
503 * @ctrl: The control to unlock.
504 */
605b3840
SA
505static inline void v4l2_ctrl_unlock(struct v4l2_ctrl *ctrl)
506{
507 mutex_unlock(ctrl->handler->lock);
508}
509
cc0140e2
SA
510/**
511 * __v4l2_ctrl_handler_setup() - Call the s_ctrl op for all controls belonging
512 * to the handler to initialize the hardware to the current control values. The
513 * caller is responsible for acquiring the control handler mutex on behalf of
514 * __v4l2_ctrl_handler_setup().
515 * @hdl: The control handler.
516 *
517 * Button controls will be skipped, as are read-only controls.
518 *
519 * If @hdl == NULL, then this just returns 0.
520 */
521int __v4l2_ctrl_handler_setup(struct v4l2_ctrl_handler *hdl);
522
8c2721d5
MCC
523/**
524 * v4l2_ctrl_handler_setup() - Call the s_ctrl op for all controls belonging
525 * to the handler to initialize the hardware to the current control values.
526 * @hdl: The control handler.
527 *
528 * Button controls will be skipped, as are read-only controls.
529 *
530 * If @hdl == NULL, then this just returns 0.
531 */
0996517c
HV
532int v4l2_ctrl_handler_setup(struct v4l2_ctrl_handler *hdl);
533
8c2721d5
MCC
534/**
535 * v4l2_ctrl_handler_log_status() - Log all controls owned by the handler.
536 * @hdl: The control handler.
537 * @prefix: The prefix to use when logging the control values. If the
538 * prefix does not end with a space, then ": " will be added
539 * after the prefix. If @prefix == NULL, then no prefix will be
540 * used.
541 *
542 * For use with VIDIOC_LOG_STATUS.
543 *
544 * Does nothing if @hdl == NULL.
545 */
0996517c
HV
546void v4l2_ctrl_handler_log_status(struct v4l2_ctrl_handler *hdl,
547 const char *prefix);
548
8c2721d5
MCC
549/**
550 * v4l2_ctrl_new_custom() - Allocate and initialize a new custom V4L2
8ec4bee7
MCC
551 * control.
552 *
8c2721d5
MCC
553 * @hdl: The control handler.
554 * @cfg: The control's configuration data.
555 * @priv: The control's driver-specific private data.
556 *
557 * If the &v4l2_ctrl struct could not be allocated then NULL is returned
558 * and @hdl->error is set to the error code (if it wasn't set already).
559 */
0996517c 560struct v4l2_ctrl *v4l2_ctrl_new_custom(struct v4l2_ctrl_handler *hdl,
8ec4bee7
MCC
561 const struct v4l2_ctrl_config *cfg,
562 void *priv);
0996517c 563
8c2721d5 564/**
8ec4bee7
MCC
565 * v4l2_ctrl_new_std() - Allocate and initialize a new standard V4L2 non-menu
566 * control.
567 *
8c2721d5
MCC
568 * @hdl: The control handler.
569 * @ops: The control ops.
8ec4bee7 570 * @id: The control ID.
8c2721d5
MCC
571 * @min: The control's minimum value.
572 * @max: The control's maximum value.
573 * @step: The control's step value
8ec4bee7 574 * @def: The control's default value.
8c2721d5
MCC
575 *
576 * If the &v4l2_ctrl struct could not be allocated, or the control
577 * ID is not known, then NULL is returned and @hdl->error is set to the
578 * appropriate error code (if it wasn't set already).
579 *
580 * If @id refers to a menu control, then this function will return NULL.
581 *
582 * Use v4l2_ctrl_new_std_menu() when adding menu controls.
583 */
0996517c 584struct v4l2_ctrl *v4l2_ctrl_new_std(struct v4l2_ctrl_handler *hdl,
8ec4bee7
MCC
585 const struct v4l2_ctrl_ops *ops,
586 u32 id, s64 min, s64 max, u64 step,
587 s64 def);
0996517c 588
8c2721d5 589/**
8ec4bee7
MCC
590 * v4l2_ctrl_new_std_menu() - Allocate and initialize a new standard V4L2
591 * menu control.
592 *
8c2721d5
MCC
593 * @hdl: The control handler.
594 * @ops: The control ops.
8ec4bee7 595 * @id: The control ID.
8c2721d5 596 * @max: The control's maximum value.
8ec4bee7 597 * @mask: The control's skip mask for menu controls. This makes it
8c2721d5
MCC
598 * easy to skip menu items that are not valid. If bit X is set,
599 * then menu item X is skipped. Of course, this only works for
600 * menus with <= 64 menu items. There are no menus that come
601 * close to that number, so this is OK. Should we ever need more,
602 * then this will have to be extended to a bit array.
8ec4bee7 603 * @def: The control's default value.
8c2721d5
MCC
604 *
605 * Same as v4l2_ctrl_new_std(), but @min is set to 0 and the @mask value
606 * determines which menu items are to be skipped.
607 *
608 * If @id refers to a non-menu control, then this function will return NULL.
609 */
0996517c 610struct v4l2_ctrl *v4l2_ctrl_new_std_menu(struct v4l2_ctrl_handler *hdl,
8ec4bee7
MCC
611 const struct v4l2_ctrl_ops *ops,
612 u32 id, u8 max, u64 mask, u8 def);
0996517c 613
8c2721d5
MCC
614/**
615 * v4l2_ctrl_new_std_menu_items() - Create a new standard V4L2 menu control
8ec4bee7
MCC
616 * with driver specific menu.
617 *
8c2721d5
MCC
618 * @hdl: The control handler.
619 * @ops: The control ops.
620 * @id: The control ID.
621 * @max: The control's maximum value.
622 * @mask: The control's skip mask for menu controls. This makes it
623 * easy to skip menu items that are not valid. If bit X is set,
624 * then menu item X is skipped. Of course, this only works for
625 * menus with <= 64 menu items. There are no menus that come
626 * close to that number, so this is OK. Should we ever need more,
627 * then this will have to be extended to a bit array.
628 * @def: The control's default value.
629 * @qmenu: The new menu.
630 *
631 * Same as v4l2_ctrl_new_std_menu(), but @qmenu will be the driver specific
632 * menu of this control.
633 *
634 */
117a711a 635struct v4l2_ctrl *v4l2_ctrl_new_std_menu_items(struct v4l2_ctrl_handler *hdl,
8ec4bee7
MCC
636 const struct v4l2_ctrl_ops *ops,
637 u32 id, u8 max,
638 u64 mask, u8 def,
639 const char * const *qmenu);
117a711a 640
8c2721d5
MCC
641/**
642 * v4l2_ctrl_new_int_menu() - Create a new standard V4L2 integer menu control.
8ec4bee7 643 *
8c2721d5
MCC
644 * @hdl: The control handler.
645 * @ops: The control ops.
646 * @id: The control ID.
647 * @max: The control's maximum value.
648 * @def: The control's default value.
649 * @qmenu_int: The control's menu entries.
650 *
e907bf3c 651 * Same as v4l2_ctrl_new_std_menu(), but @mask is set to 0 and it additionally
8c2721d5
MCC
652 * takes as an argument an array of integers determining the menu items.
653 *
8ec4bee7
MCC
654 * If @id refers to a non-integer-menu control, then this function will
655 * return %NULL.
8c2721d5 656 */
515f3287 657struct v4l2_ctrl *v4l2_ctrl_new_int_menu(struct v4l2_ctrl_handler *hdl,
8ec4bee7
MCC
658 const struct v4l2_ctrl_ops *ops,
659 u32 id, u8 max, u8 def,
660 const s64 *qmenu_int);
515f3287 661
2257e180
MCC
662/**
663 * typedef v4l2_ctrl_filter - Typedef to define the filter function to be
664 * used when adding a control handler.
665 *
666 * @ctrl: pointer to struct &v4l2_ctrl.
667 */
668
6d85d7d7
MCC
669typedef bool (*v4l2_ctrl_filter)(const struct v4l2_ctrl *ctrl);
670
8c2721d5
MCC
671/**
672 * v4l2_ctrl_add_handler() - Add all controls from handler @add to
8ec4bee7
MCC
673 * handler @hdl.
674 *
8c2721d5
MCC
675 * @hdl: The control handler.
676 * @add: The control handler whose controls you want to add to
677 * the @hdl control handler.
678 * @filter: This function will filter which controls should be added.
da1b1aea
HV
679 * @from_other_dev: If true, then the controls in @add were defined in another
680 * device than @hdl.
8c2721d5
MCC
681 *
682 * Does nothing if either of the two handlers is a NULL pointer.
683 * If @filter is NULL, then all controls are added. Otherwise only those
684 * controls for which @filter returns true will be added.
685 * In case of an error @hdl->error will be set to the error code (if it
686 * wasn't set already).
687 */
0996517c 688int v4l2_ctrl_add_handler(struct v4l2_ctrl_handler *hdl,
34a6b7d0 689 struct v4l2_ctrl_handler *add,
da1b1aea
HV
690 v4l2_ctrl_filter filter,
691 bool from_other_dev);
0996517c 692
8c2721d5
MCC
693/**
694 * v4l2_ctrl_radio_filter() - Standard filter for radio controls.
8ec4bee7 695 *
8c2721d5
MCC
696 * @ctrl: The control that is filtered.
697 *
698 * This will return true for any controls that are valid for radio device
699 * nodes. Those are all of the V4L2_CID_AUDIO_* user controls and all FM
700 * transmitter class controls.
701 *
702 * This function is to be used with v4l2_ctrl_add_handler().
703 */
34a6b7d0 704bool v4l2_ctrl_radio_filter(const struct v4l2_ctrl *ctrl);
0996517c 705
8c2721d5 706/**
8ec4bee7
MCC
707 * v4l2_ctrl_cluster() - Mark all controls in the cluster as belonging
708 * to that cluster.
709 *
8c2721d5 710 * @ncontrols: The number of controls in this cluster.
8ec4bee7 711 * @controls: The cluster control array of size @ncontrols.
8c2721d5 712 */
8ec4bee7 713void v4l2_ctrl_cluster(unsigned int ncontrols, struct v4l2_ctrl **controls);
0996517c
HV
714
715
8c2721d5 716/**
8ec4bee7
MCC
717 * v4l2_ctrl_auto_cluster() - Mark all controls in the cluster as belonging
718 * to that cluster and set it up for autofoo/foo-type handling.
719 *
8c2721d5
MCC
720 * @ncontrols: The number of controls in this cluster.
721 * @controls: The cluster control array of size @ncontrols. The first control
722 * must be the 'auto' control (e.g. autogain, autoexposure, etc.)
723 * @manual_val: The value for the first control in the cluster that equals the
724 * manual setting.
725 * @set_volatile: If true, then all controls except the first auto control will
726 * be volatile.
727 *
728 * Use for control groups where one control selects some automatic feature and
729 * the other controls are only active whenever the automatic feature is turned
730 * off (manual mode). Typical examples: autogain vs gain, auto-whitebalance vs
731 * red and blue balance, etc.
732 *
733 * The behavior of such controls is as follows:
734 *
735 * When the autofoo control is set to automatic, then any manual controls
736 * are set to inactive and any reads will call g_volatile_ctrl (if the control
737 * was marked volatile).
738 *
739 * When the autofoo control is set to manual, then any manual controls will
740 * be marked active, and any reads will just return the current value without
741 * going through g_volatile_ctrl.
742 *
2257e180
MCC
743 * In addition, this function will set the %V4L2_CTRL_FLAG_UPDATE flag
744 * on the autofoo control and %V4L2_CTRL_FLAG_INACTIVE on the foo control(s)
8c2721d5
MCC
745 * if autofoo is in auto mode.
746 */
8ec4bee7
MCC
747void v4l2_ctrl_auto_cluster(unsigned int ncontrols,
748 struct v4l2_ctrl **controls,
749 u8 manual_val, bool set_volatile);
72d877ca
HV
750
751
8c2721d5
MCC
752/**
753 * v4l2_ctrl_find() - Find a control with the given ID.
8ec4bee7 754 *
8c2721d5
MCC
755 * @hdl: The control handler.
756 * @id: The control ID to find.
757 *
758 * If @hdl == NULL this will return NULL as well. Will lock the handler so
759 * do not use from inside &v4l2_ctrl_ops.
760 */
0996517c
HV
761struct v4l2_ctrl *v4l2_ctrl_find(struct v4l2_ctrl_handler *hdl, u32 id);
762
8c2721d5
MCC
763/**
764 * v4l2_ctrl_activate() - Make the control active or inactive.
765 * @ctrl: The control to (de)activate.
766 * @active: True if the control should become active.
767 *
768 * This sets or clears the V4L2_CTRL_FLAG_INACTIVE flag atomically.
769 * Does nothing if @ctrl == NULL.
770 * This will usually be called from within the s_ctrl op.
771 * The V4L2_EVENT_CTRL event will be generated afterwards.
772 *
773 * This function assumes that the control handler is locked.
774 */
0996517c
HV
775void v4l2_ctrl_activate(struct v4l2_ctrl *ctrl, bool active);
776
7a9b109d
SA
777/**
778 * __v4l2_ctrl_grab() - Unlocked variant of v4l2_ctrl_grab.
779 *
780 * @ctrl: The control to (de)activate.
781 * @grabbed: True if the control should become grabbed.
782 *
783 * This sets or clears the V4L2_CTRL_FLAG_GRABBED flag atomically.
784 * Does nothing if @ctrl == NULL.
785 * The V4L2_EVENT_CTRL event will be generated afterwards.
786 * This will usually be called when starting or stopping streaming in the
787 * driver.
788 *
789 * This function assumes that the control handler is locked by the caller.
790 */
791void __v4l2_ctrl_grab(struct v4l2_ctrl *ctrl, bool grabbed);
792
8c2721d5
MCC
793/**
794 * v4l2_ctrl_grab() - Mark the control as grabbed or not grabbed.
8ec4bee7 795 *
8c2721d5
MCC
796 * @ctrl: The control to (de)activate.
797 * @grabbed: True if the control should become grabbed.
798 *
799 * This sets or clears the V4L2_CTRL_FLAG_GRABBED flag atomically.
800 * Does nothing if @ctrl == NULL.
801 * The V4L2_EVENT_CTRL event will be generated afterwards.
802 * This will usually be called when starting or stopping streaming in the
803 * driver.
804 *
805 * This function assumes that the control handler is not locked and will
806 * take the lock itself.
807 */
7a9b109d
SA
808static inline void v4l2_ctrl_grab(struct v4l2_ctrl *ctrl, bool grabbed)
809{
810 if (!ctrl)
811 return;
812
813 v4l2_ctrl_lock(ctrl);
814 __v4l2_ctrl_grab(ctrl, grabbed);
815 v4l2_ctrl_unlock(ctrl);
816}
0996517c 817
8c2721d5
MCC
818/**
819 *__v4l2_ctrl_modify_range() - Unlocked variant of v4l2_ctrl_modify_range()
820 *
821 * @ctrl: The control to update.
822 * @min: The control's minimum value.
823 * @max: The control's maximum value.
824 * @step: The control's step value
825 * @def: The control's default value.
826 *
827 * Update the range of a control on the fly. This works for control types
828 * INTEGER, BOOLEAN, MENU, INTEGER MENU and BITMASK. For menu controls the
829 * @step value is interpreted as a menu_skip_mask.
830 *
831 * An error is returned if one of the range arguments is invalid for this
832 * control type.
833 *
97eee23a
HV
834 * The caller is responsible for acquiring the control handler mutex on behalf
835 * of __v4l2_ctrl_modify_range().
8c2721d5 836 */
5a573925
SA
837int __v4l2_ctrl_modify_range(struct v4l2_ctrl *ctrl,
838 s64 min, s64 max, u64 step, s64 def);
839
8c2721d5
MCC
840/**
841 * v4l2_ctrl_modify_range() - Update the range of a control.
8ec4bee7 842 *
8c2721d5
MCC
843 * @ctrl: The control to update.
844 * @min: The control's minimum value.
845 * @max: The control's maximum value.
846 * @step: The control's step value
847 * @def: The control's default value.
848 *
849 * Update the range of a control on the fly. This works for control types
850 * INTEGER, BOOLEAN, MENU, INTEGER MENU and BITMASK. For menu controls the
851 * @step value is interpreted as a menu_skip_mask.
852 *
853 * An error is returned if one of the range arguments is invalid for this
854 * control type.
855 *
856 * This function assumes that the control handler is not locked and will
857 * take the lock itself.
858 */
5a573925
SA
859static inline int v4l2_ctrl_modify_range(struct v4l2_ctrl *ctrl,
860 s64 min, s64 max, u64 step, s64 def)
861{
862 int rval;
863
864 v4l2_ctrl_lock(ctrl);
865 rval = __v4l2_ctrl_modify_range(ctrl, min, max, step, def);
866 v4l2_ctrl_unlock(ctrl);
867
868 return rval;
869}
2ccbe779 870
8c2721d5
MCC
871/**
872 * v4l2_ctrl_notify() - Function to set a notify callback for a control.
8ec4bee7 873 *
8c2721d5
MCC
874 * @ctrl: The control.
875 * @notify: The callback function.
876 * @priv: The callback private handle, passed as argument to the callback.
877 *
878 * This function sets a callback function for the control. If @ctrl is NULL,
879 * then it will do nothing. If @notify is NULL, then the notify callback will
880 * be removed.
881 *
882 * There can be only one notify. If another already exists, then a WARN_ON
883 * will be issued and the function will do nothing.
884 */
8ec4bee7
MCC
885void v4l2_ctrl_notify(struct v4l2_ctrl *ctrl, v4l2_ctrl_notify_fnc notify,
886 void *priv);
8ac7a949 887
8c2721d5
MCC
888/**
889 * v4l2_ctrl_get_name() - Get the name of the control
8ec4bee7 890 *
79fbc209
HV
891 * @id: The control ID.
892 *
893 * This function returns the name of the given control ID or NULL if it isn't
894 * a known control.
895 */
896const char *v4l2_ctrl_get_name(u32 id);
897
8c2721d5
MCC
898/**
899 * v4l2_ctrl_get_menu() - Get the menu string array of the control
8ec4bee7 900 *
79fbc209
HV
901 * @id: The control ID.
902 *
903 * This function returns the NULL-terminated menu string array name of the
904 * given control ID or NULL if it isn't a known menu control.
905 */
906const char * const *v4l2_ctrl_get_menu(u32 id);
907
8c2721d5
MCC
908/**
909 * v4l2_ctrl_get_int_menu() - Get the integer menu array of the control
8ec4bee7 910 *
79fbc209
HV
911 * @id: The control ID.
912 * @len: The size of the integer array.
913 *
914 * This function returns the integer array of the given control ID or NULL if it
915 * if it isn't a known integer menu control.
916 */
917const s64 *v4l2_ctrl_get_int_menu(u32 id, u32 *len);
918
8c2721d5 919/**
8ec4bee7
MCC
920 * v4l2_ctrl_g_ctrl() - Helper function to get the control's value from
921 * within a driver.
922 *
8c2721d5
MCC
923 * @ctrl: The control.
924 *
925 * This returns the control's value safely by going through the control
926 * framework. This function will lock the control's handler, so it cannot be
927 * used from within the &v4l2_ctrl_ops functions.
928 *
929 * This function is for integer type controls only.
930 */
0996517c
HV
931s32 v4l2_ctrl_g_ctrl(struct v4l2_ctrl *ctrl);
932
8c2721d5
MCC
933/**
934 * __v4l2_ctrl_s_ctrl() - Unlocked variant of v4l2_ctrl_s_ctrl().
8ec4bee7 935 *
8c2721d5 936 * @ctrl: The control.
8ec4bee7 937 * @val: TheControls name new value.
8c2721d5 938 *
904aef0f
HV
939 * This sets the control's new value safely by going through the control
940 * framework. This function assumes the control's handler is already locked,
941 * allowing it to be used from within the &v4l2_ctrl_ops functions.
8c2721d5
MCC
942 *
943 * This function is for integer type controls only.
944 */
0c4348ad 945int __v4l2_ctrl_s_ctrl(struct v4l2_ctrl *ctrl, s32 val);
8c2721d5 946
8ec4bee7
MCC
947/**
948 * v4l2_ctrl_s_ctrl() - Helper function to set the control's value from
949 * within a driver.
8c2721d5
MCC
950 * @ctrl: The control.
951 * @val: The new value.
952 *
904aef0f 953 * This sets the control's new value safely by going through the control
8c2721d5
MCC
954 * framework. This function will lock the control's handler, so it cannot be
955 * used from within the &v4l2_ctrl_ops functions.
956 *
957 * This function is for integer type controls only.
958 */
0c4348ad
SA
959static inline int v4l2_ctrl_s_ctrl(struct v4l2_ctrl *ctrl, s32 val)
960{
961 int rval;
962
963 v4l2_ctrl_lock(ctrl);
964 rval = __v4l2_ctrl_s_ctrl(ctrl, val);
965 v4l2_ctrl_unlock(ctrl);
966
967 return rval;
968}
0996517c 969
8c2721d5
MCC
970/**
971 * v4l2_ctrl_g_ctrl_int64() - Helper function to get a 64-bit control's value
972 * from within a driver.
8ec4bee7 973 *
8c2721d5
MCC
974 * @ctrl: The control.
975 *
976 * This returns the control's value safely by going through the control
977 * framework. This function will lock the control's handler, so it cannot be
978 * used from within the &v4l2_ctrl_ops functions.
979 *
980 * This function is for 64-bit integer type controls only.
981 */
03d5285b
LP
982s64 v4l2_ctrl_g_ctrl_int64(struct v4l2_ctrl *ctrl);
983
8c2721d5
MCC
984/**
985 * __v4l2_ctrl_s_ctrl_int64() - Unlocked variant of v4l2_ctrl_s_ctrl_int64().
986 *
987 * @ctrl: The control.
988 * @val: The new value.
989 *
904aef0f
HV
990 * This sets the control's new value safely by going through the control
991 * framework. This function assumes the control's handler is already locked,
992 * allowing it to be used from within the &v4l2_ctrl_ops functions.
8c2721d5
MCC
993 *
994 * This function is for 64-bit integer type controls only.
995 */
0c4348ad
SA
996int __v4l2_ctrl_s_ctrl_int64(struct v4l2_ctrl *ctrl, s64 val);
997
8ec4bee7
MCC
998/**
999 * v4l2_ctrl_s_ctrl_int64() - Helper function to set a 64-bit control's value
8c2721d5
MCC
1000 * from within a driver.
1001 *
1002 * @ctrl: The control.
1003 * @val: The new value.
1004 *
904aef0f 1005 * This sets the control's new value safely by going through the control
8c2721d5
MCC
1006 * framework. This function will lock the control's handler, so it cannot be
1007 * used from within the &v4l2_ctrl_ops functions.
1008 *
1009 * This function is for 64-bit integer type controls only.
1010 */
0c4348ad
SA
1011static inline int v4l2_ctrl_s_ctrl_int64(struct v4l2_ctrl *ctrl, s64 val)
1012{
1013 int rval;
1014
1015 v4l2_ctrl_lock(ctrl);
1016 rval = __v4l2_ctrl_s_ctrl_int64(ctrl, val);
1017 v4l2_ctrl_unlock(ctrl);
1018
1019 return rval;
1020}
03d5285b 1021
8ec4bee7
MCC
1022/**
1023 * __v4l2_ctrl_s_ctrl_string() - Unlocked variant of v4l2_ctrl_s_ctrl_string().
8c2721d5
MCC
1024 *
1025 * @ctrl: The control.
1026 * @s: The new string.
1027 *
904aef0f
HV
1028 * This sets the control's new string safely by going through the control
1029 * framework. This function assumes the control's handler is already locked,
1030 * allowing it to be used from within the &v4l2_ctrl_ops functions.
8c2721d5
MCC
1031 *
1032 * This function is for string type controls only.
1033 */
5d0360a4
HV
1034int __v4l2_ctrl_s_ctrl_string(struct v4l2_ctrl *ctrl, const char *s);
1035
8ec4bee7
MCC
1036/**
1037 * v4l2_ctrl_s_ctrl_string() - Helper function to set a control's string value
8c2721d5
MCC
1038 * from within a driver.
1039 *
1040 * @ctrl: The control.
1041 * @s: The new string.
8ec4bee7 1042 *Controls name
904aef0f 1043 * This sets the control's new string safely by going through the control
8c2721d5
MCC
1044 * framework. This function will lock the control's handler, so it cannot be
1045 * used from within the &v4l2_ctrl_ops functions.
1046 *
1047 * This function is for string type controls only.
1048 */
5d0360a4
HV
1049static inline int v4l2_ctrl_s_ctrl_string(struct v4l2_ctrl *ctrl, const char *s)
1050{
1051 int rval;
1052
1053 v4l2_ctrl_lock(ctrl);
1054 rval = __v4l2_ctrl_s_ctrl_string(ctrl, s);
1055 v4l2_ctrl_unlock(ctrl);
1056
1057 return rval;
1058}
1059
ce727574 1060/* Internal helper functions that deal with control events. */
3e366149 1061extern const struct v4l2_subscribed_event_ops v4l2_ctrl_sub_ev_ops;
8ec4bee7
MCC
1062
1063/**
1064 * v4l2_ctrl_replace - Function to be used as a callback to
1065 * &struct v4l2_subscribed_event_ops replace\(\)
1066 *
f8441a43 1067 * @old: pointer to struct &v4l2_event with the reported
8ec4bee7 1068 * event;
f8441a43 1069 * @new: pointer to struct &v4l2_event with the modified
8ec4bee7
MCC
1070 * event;
1071 */
3e366149 1072void v4l2_ctrl_replace(struct v4l2_event *old, const struct v4l2_event *new);
8ec4bee7
MCC
1073
1074/**
1075 * v4l2_ctrl_merge - Function to be used as a callback to
1076 * &struct v4l2_subscribed_event_ops merge(\)
1077 *
f8441a43 1078 * @old: pointer to struct &v4l2_event with the reported
8ec4bee7 1079 * event;
f8441a43 1080 * @new: pointer to struct &v4l2_event with the merged
8ec4bee7
MCC
1081 * event;
1082 */
3e366149 1083void v4l2_ctrl_merge(const struct v4l2_event *old, struct v4l2_event *new);
6e239399 1084
8ec4bee7
MCC
1085/**
1086 * v4l2_ctrl_log_status - helper function to implement %VIDIOC_LOG_STATUS ioctl
1087 *
1088 * @file: pointer to struct file
1089 * @fh: unused. Kept just to be compatible to the arguments expected by
1090 * &struct v4l2_ioctl_ops.vidioc_log_status.
1091 *
1092 * Can be used as a vidioc_log_status function that just dumps all controls
1093 * associated with the filehandle.
1094 */
e2ecb257
HV
1095int v4l2_ctrl_log_status(struct file *file, void *fh);
1096
8ec4bee7
MCC
1097/**
1098 * v4l2_ctrl_subscribe_event - Subscribes to an event
1099 *
1100 *
1101 * @fh: pointer to struct v4l2_fh
1102 * @sub: pointer to &struct v4l2_event_subscription
1103 *
1104 * Can be used as a vidioc_subscribe_event function that just subscribes
1105 * control events.
1106 */
a26243b0 1107int v4l2_ctrl_subscribe_event(struct v4l2_fh *fh,
85f5fe39 1108 const struct v4l2_event_subscription *sub);
a26243b0 1109
8ec4bee7
MCC
1110/**
1111 * v4l2_ctrl_poll - function to be used as a callback to the poll()
1112 * That just polls for control events.
1113 *
1114 * @file: pointer to struct file
1115 * @wait: pointer to struct poll_table_struct
1116 */
c23e0cb8 1117__poll_t v4l2_ctrl_poll(struct file *file, struct poll_table_struct *wait);
a26243b0 1118
6fa6f831
HV
1119/**
1120 * v4l2_ctrl_request_setup - helper function to apply control values in a request
1121 *
1122 * @req: The request
1123 * @parent: The parent control handler ('priv' in media_request_object_find())
1124 *
1125 * This is a helper function to call the control handler's s_ctrl callback with
1126 * the control values contained in the request. Do note that this approach of
1127 * applying control values in a request is only applicable to memory-to-memory
1128 * devices.
1129 */
1130void v4l2_ctrl_request_setup(struct media_request *req,
1131 struct v4l2_ctrl_handler *parent);
1132
1133/**
1134 * v4l2_ctrl_request_complete - Complete a control handler request object
1135 *
1136 * @req: The request
1137 * @parent: The parent control handler ('priv' in media_request_object_find())
1138 *
1139 * This function is to be called on each control handler that may have had a
1140 * request object associated with it, i.e. control handlers of a driver that
1141 * supports requests.
1142 *
1143 * The function first obtains the values of any volatile controls in the control
1144 * handler and attach them to the request. Then, the function completes the
1145 * request object.
1146 */
1147void v4l2_ctrl_request_complete(struct media_request *req,
5f611d74
HV
1148 struct v4l2_ctrl_handler *parent);
1149
1150/**
1151 * v4l2_ctrl_request_hdl_find - Find the control handler in the request
1152 *
1153 * @req: The request
1154 * @parent: The parent control handler ('priv' in media_request_object_find())
1155 *
1156 * This function finds the control handler in the request. It may return
1157 * NULL if not found. When done, you must call v4l2_ctrl_request_put_hdl()
1158 * with the returned handler pointer.
1159 *
1160 * If the request is not in state VALIDATING or QUEUED, then this function
1161 * will always return NULL.
1162 *
1163 * Note that in state VALIDATING the req_queue_mutex is held, so
1164 * no objects can be added or deleted from the request.
1165 *
1166 * In state QUEUED it is the driver that will have to ensure this.
1167 */
1168struct v4l2_ctrl_handler *v4l2_ctrl_request_hdl_find(struct media_request *req,
1169 struct v4l2_ctrl_handler *parent);
1170
1171/**
1172 * v4l2_ctrl_request_hdl_put - Put the control handler
1173 *
1174 * @hdl: Put this control handler
1175 *
1176 * This function released the control handler previously obtained from'
1177 * v4l2_ctrl_request_hdl_find().
1178 */
1179static inline void v4l2_ctrl_request_hdl_put(struct v4l2_ctrl_handler *hdl)
1180{
1181 if (hdl)
1182 media_request_object_put(&hdl->req_obj);
1183}
1184
1185/**
1186 * v4l2_ctrl_request_ctrl_find() - Find a control with the given ID.
1187 *
1188 * @hdl: The control handler from the request.
1189 * @id: The ID of the control to find.
1190 *
1191 * This function returns a pointer to the control if this control is
1192 * part of the request or NULL otherwise.
1193 */
1194struct v4l2_ctrl *
1195v4l2_ctrl_request_hdl_ctrl_find(struct v4l2_ctrl_handler *hdl, u32 id);
6fa6f831 1196
8ec4bee7
MCC
1197/* Helpers for ioctl_ops */
1198
1199/**
1200 * v4l2_queryctrl - Helper function to implement
1201 * :ref:`VIDIOC_QUERYCTRL <vidioc_queryctrl>` ioctl
1202 *
1203 * @hdl: pointer to &struct v4l2_ctrl_handler
1204 * @qc: pointer to &struct v4l2_queryctrl
1205 *
1206 * If hdl == NULL then they will all return -EINVAL.
1207 */
0996517c 1208int v4l2_queryctrl(struct v4l2_ctrl_handler *hdl, struct v4l2_queryctrl *qc);
8ec4bee7
MCC
1209
1210/**
1211 * v4l2_query_ext_ctrl - Helper function to implement
1212 * :ref:`VIDIOC_QUERY_EXT_CTRL <vidioc_queryctrl>` ioctl
1213 *
1214 * @hdl: pointer to &struct v4l2_ctrl_handler
1215 * @qc: pointer to &struct v4l2_query_ext_ctrl
1216 *
1217 * If hdl == NULL then they will all return -EINVAL.
1218 */
1219int v4l2_query_ext_ctrl(struct v4l2_ctrl_handler *hdl,
1220 struct v4l2_query_ext_ctrl *qc);
1221
1222/**
1223 * v4l2_querymenu - Helper function to implement
1224 * :ref:`VIDIOC_QUERYMENU <vidioc_queryctrl>` ioctl
1225 *
1226 * @hdl: pointer to &struct v4l2_ctrl_handler
1227 * @qm: pointer to &struct v4l2_querymenu
1228 *
1229 * If hdl == NULL then they will all return -EINVAL.
1230 */
0996517c 1231int v4l2_querymenu(struct v4l2_ctrl_handler *hdl, struct v4l2_querymenu *qm);
8ec4bee7
MCC
1232
1233/**
1234 * v4l2_g_ctrl - Helper function to implement
1235 * :ref:`VIDIOC_G_CTRL <vidioc_g_ctrl>` ioctl
1236 *
1237 * @hdl: pointer to &struct v4l2_ctrl_handler
1238 * @ctrl: pointer to &struct v4l2_control
1239 *
1240 * If hdl == NULL then they will all return -EINVAL.
1241 */
0996517c 1242int v4l2_g_ctrl(struct v4l2_ctrl_handler *hdl, struct v4l2_control *ctrl);
8ec4bee7
MCC
1243
1244/**
1245 * v4l2_s_ctrl - Helper function to implement
1246 * :ref:`VIDIOC_S_CTRL <vidioc_g_ctrl>` ioctl
1247 *
1248 * @fh: pointer to &struct v4l2_fh
1249 * @hdl: pointer to &struct v4l2_ctrl_handler
1250 *
1251 * @ctrl: pointer to &struct v4l2_control
1252 *
1253 * If hdl == NULL then they will all return -EINVAL.
1254 */
ab892bac 1255int v4l2_s_ctrl(struct v4l2_fh *fh, struct v4l2_ctrl_handler *hdl,
8ec4bee7
MCC
1256 struct v4l2_control *ctrl);
1257
1258/**
1259 * v4l2_g_ext_ctrls - Helper function to implement
1260 * :ref:`VIDIOC_G_EXT_CTRLS <vidioc_g_ext_ctrls>` ioctl
1261 *
1262 * @hdl: pointer to &struct v4l2_ctrl_handler
c41e9cff 1263 * @mdev: pointer to &struct media_device
8ec4bee7
MCC
1264 * @c: pointer to &struct v4l2_ext_controls
1265 *
1266 * If hdl == NULL then they will all return -EINVAL.
1267 */
c41e9cff 1268int v4l2_g_ext_ctrls(struct v4l2_ctrl_handler *hdl, struct media_device *mdev,
8ec4bee7
MCC
1269 struct v4l2_ext_controls *c);
1270
1271/**
1272 * v4l2_try_ext_ctrls - Helper function to implement
1273 * :ref:`VIDIOC_TRY_EXT_CTRLS <vidioc_g_ext_ctrls>` ioctl
1274 *
1275 * @hdl: pointer to &struct v4l2_ctrl_handler
c41e9cff 1276 * @mdev: pointer to &struct media_device
8ec4bee7
MCC
1277 * @c: pointer to &struct v4l2_ext_controls
1278 *
1279 * If hdl == NULL then they will all return -EINVAL.
1280 */
1281int v4l2_try_ext_ctrls(struct v4l2_ctrl_handler *hdl,
c41e9cff 1282 struct media_device *mdev,
8ec4bee7
MCC
1283 struct v4l2_ext_controls *c);
1284
1285/**
1286 * v4l2_s_ext_ctrls - Helper function to implement
1287 * :ref:`VIDIOC_S_EXT_CTRLS <vidioc_g_ext_ctrls>` ioctl
1288 *
1289 * @fh: pointer to &struct v4l2_fh
1290 * @hdl: pointer to &struct v4l2_ctrl_handler
c41e9cff 1291 * @mdev: pointer to &struct media_device
8ec4bee7
MCC
1292 * @c: pointer to &struct v4l2_ext_controls
1293 *
1294 * If hdl == NULL then they will all return -EINVAL.
1295 */
ab892bac 1296int v4l2_s_ext_ctrls(struct v4l2_fh *fh, struct v4l2_ctrl_handler *hdl,
c41e9cff 1297 struct media_device *mdev,
8ec4bee7 1298 struct v4l2_ext_controls *c);
0996517c 1299
8ec4bee7
MCC
1300/**
1301 * v4l2_ctrl_subdev_subscribe_event - Helper function to implement
4a3fad70 1302 * as a &struct v4l2_subdev_core_ops subscribe_event function
8ec4bee7
MCC
1303 * that just subscribes control events.
1304 *
1305 * @sd: pointer to &struct v4l2_subdev
1306 * @fh: pointer to &struct v4l2_fh
1307 * @sub: pointer to &struct v4l2_event_subscription
1308 */
22fa4279
SN
1309int v4l2_ctrl_subdev_subscribe_event(struct v4l2_subdev *sd, struct v4l2_fh *fh,
1310 struct v4l2_event_subscription *sub);
1311
8ec4bee7
MCC
1312/**
1313 * v4l2_ctrl_subdev_log_status - Log all controls owned by subdev's control
1314 * handler.
1315 *
1316 * @sd: pointer to &struct v4l2_subdev
1317 */
ffa9b9f0
SN
1318int v4l2_ctrl_subdev_log_status(struct v4l2_subdev *sd);
1319
0996517c 1320#endif