blob: 12731982ad4edf744a7b6bc14404e200e5d9017a [file] [log] [blame]
xjb04a4022021-11-25 15:01:52 +08001/*
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
17#ifndef _V4L2_CTRLS_H
18#define _V4L2_CTRLS_H
19
20#include <linux/list.h>
21#include <linux/mutex.h>
22#include <linux/videodev2.h>
23#include <media/media-request.h>
24
25/* forward references */
26struct file;
27struct v4l2_ctrl_handler;
28struct v4l2_ctrl_helper;
29struct v4l2_ctrl;
30struct video_device;
31struct v4l2_subdev;
32struct v4l2_subscribed_event;
33struct v4l2_fh;
34struct poll_table_struct;
35
36/**
37 * union v4l2_ctrl_ptr - A pointer to a control value.
38 * @p_s32: Pointer to a 32-bit signed value.
39 * @p_s64: Pointer to a 64-bit signed value.
40 * @p_u8: Pointer to a 8-bit unsigned value.
41 * @p_u16: Pointer to a 16-bit unsigned value.
42 * @p_u32: Pointer to a 32-bit unsigned value.
43 * @p_char: Pointer to a string.
44 * @p_h264_sps: Pointer to a struct v4l2_ctrl_h264_sps.
45 * @p_h264_pps: Pointer to a struct v4l2_ctrl_h264_pps.
46 * @p_h264_scal_mtrx: Pointer to a struct v4l2_ctrl_h264_scaling_matrix.
47 * @p_h264_slice_param: Pointer to a struct v4l2_ctrl_h264_slice_param.
48 * @p_h264_decode_param: Pointer to a struct v4l2_ctrl_h264_decode_param.
49 * @p: Pointer to a compound value.
50 */
51union v4l2_ctrl_ptr {
52 s32 *p_s32;
53 s64 *p_s64;
54 u8 *p_u8;
55 u16 *p_u16;
56 u32 *p_u32;
57 char *p_char;
58 struct v4l2_ctrl_h264_sps *p_h264_sps;
59 struct v4l2_ctrl_h264_pps *p_h264_pps;
60 struct v4l2_ctrl_h264_scaling_matrix *p_h264_scal_mtrx;
61 struct v4l2_ctrl_h264_slice_param *p_h264_slice_param;
62 struct v4l2_ctrl_h264_decode_param *p_h264_decode_param;
63 void *p;
64};
65
66/**
67 * struct v4l2_ctrl_ops - The control operations that the driver has to provide.
68 *
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 */
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
86/**
87 * struct v4l2_ctrl_type_ops - The control type operations that the driver
88 * has to provide.
89 *
90 * @equal: return true if both values are equal.
91 * @init: initialize the value.
92 * @log: log the value.
93 * @validate: validate the value. Return 0 on success and a negative value
94 * otherwise.
95 */
96struct v4l2_ctrl_type_ops {
97 bool (*equal)(const struct v4l2_ctrl *ctrl, u32 idx,
98 union v4l2_ctrl_ptr ptr1,
99 union v4l2_ctrl_ptr ptr2);
100 void (*init)(const struct v4l2_ctrl *ctrl, u32 idx,
101 union v4l2_ctrl_ptr ptr);
102 void (*log)(const struct v4l2_ctrl *ctrl);
103 int (*validate)(const struct v4l2_ctrl *ctrl, u32 idx,
104 union v4l2_ctrl_ptr ptr);
105};
106
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 */
117typedef void (*v4l2_ctrl_notify_fnc)(struct v4l2_ctrl *ctrl, void *priv);
118
119/**
120 * struct v4l2_ctrl - The control structure.
121 *
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
129 * is also set when called from v4l2_ctrl_handler_setup(). Drivers
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).
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
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.
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.
185 * @flags: The control's flags.
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).
189 * @val: The control's new s32 value.
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.
195 * @p_cur: The control's current value represented via a union which
196 * provides a standard way of accessing control types
197 * through a pointer.
198 * @p_new: The control's new value represented via a union which provides
199 * a standard way of accessing control types
200 * through a pointer.
201 */
202struct v4l2_ctrl {
203 /* Administrative fields */
204 struct list_head node;
205 struct list_head ev_subs;
206 struct v4l2_ctrl_handler *handler;
207 struct v4l2_ctrl **cluster;
208 unsigned int ncontrols;
209
210 unsigned int done:1;
211
212 unsigned int is_new:1;
213 unsigned int has_changed:1;
214 unsigned int is_private:1;
215 unsigned int is_auto:1;
216 unsigned int is_int:1;
217 unsigned int is_string:1;
218 unsigned int is_ptr:1;
219 unsigned int is_array:1;
220 unsigned int has_volatiles:1;
221 unsigned int call_notify:1;
222 unsigned int manual_mode_value:8;
223
224 const struct v4l2_ctrl_ops *ops;
225 const struct v4l2_ctrl_type_ops *type_ops;
226 u32 id;
227 const char *name;
228 enum v4l2_ctrl_type type;
229 s64 minimum, maximum, default_value;
230 u32 elems;
231 u32 elem_size;
232 u32 dims[V4L2_CTRL_MAX_DIMS];
233 u32 nr_of_dims;
234 union {
235 u64 step;
236 u64 menu_skip_mask;
237 };
238 union {
239 const char * const *qmenu;
240 const s64 *qmenu_int;
241 };
242 unsigned long flags;
243 void *priv;
244 s32 val;
245 struct {
246 s32 val;
247 } cur;
248
249 union v4l2_ctrl_ptr p_new;
250 union v4l2_ctrl_ptr p_cur;
251};
252
253/**
254 * struct v4l2_ctrl_ref - The control reference.
255 *
256 * @node: List node for the sorted list.
257 * @next: Single-link list node for the hash.
258 * @ctrl: The actual control information.
259 * @helper: Pointer to helper struct. Used internally in
260 * ``prepare_ext_ctrls`` function at ``v4l2-ctrl.c``.
261 * @from_other_dev: If true, then @ctrl was defined in another
262 * device than the &struct v4l2_ctrl_handler.
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.
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.
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 */
279struct v4l2_ctrl_ref {
280 struct list_head node;
281 struct v4l2_ctrl_ref *next;
282 struct v4l2_ctrl *ctrl;
283 struct v4l2_ctrl_helper *helper;
284 bool from_other_dev;
285 bool req_done;
286 struct v4l2_ctrl_ref *req;
287 union v4l2_ctrl_ptr p_req;
288};
289
290/**
291 * struct v4l2_ctrl_handler - The control handler keeps track of all the
292 * controls: both the controls owned by the handler and those inherited
293 * from other handlers.
294 *
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.
304 * @notify: A notify callback that is called whenever the control changes
305 * value.
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.
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.
320 * @req_obj: The &struct media_request_object, used to link into a
321 * &struct media_request. This request object has a refcount.
322 */
323struct v4l2_ctrl_handler {
324 struct mutex _lock;
325 struct mutex *lock;
326 struct list_head ctrls;
327 struct list_head ctrl_refs;
328 struct v4l2_ctrl_ref *cached;
329 struct v4l2_ctrl_ref **buckets;
330 v4l2_ctrl_notify_fnc notify;
331 void *notify_priv;
332 u16 nr_of_buckets;
333 int error;
334 bool request_is_queued;
335 struct list_head requests;
336 struct list_head requests_queued;
337 struct media_request_object req_obj;
338};
339
340/**
341 * struct v4l2_ctrl_config - Control configuration structure.
342 *
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.
351 * @def: The control's default value.
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.
365 * @qmenu_int: A const s64 integer array for all menu items of the type
366 * V4L2_CTRL_TYPE_INTEGER_MENU.
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 */
370struct v4l2_ctrl_config {
371 const struct v4l2_ctrl_ops *ops;
372 const struct v4l2_ctrl_type_ops *type_ops;
373 u32 id;
374 const char *name;
375 enum v4l2_ctrl_type type;
376 s64 min;
377 s64 max;
378 u64 step;
379 s64 def;
380 u32 dims[V4L2_CTRL_MAX_DIMS];
381 u32 elem_size;
382 u32 flags;
383 u64 menu_skip_mask;
384 const char * const *qmenu;
385 const s64 *qmenu_int;
386 unsigned int is_private:1;
387};
388
389/**
390 * v4l2_ctrl_fill - Fill in the control fields based on the control ID.
391 *
392 * @id: ID of the control
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
400 *
401 * This works for all standard V4L2 controls.
402 * For non-standard controls it will only fill in the given arguments
403 * and @name content will be set to %NULL.
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 *
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.
414 */
415void v4l2_ctrl_fill(u32 id, const char **name, enum v4l2_ctrl_type *type,
416 s64 *min, s64 *max, u64 *step, s64 *def, u32 *flags);
417
418
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 *
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.
436 *
437 * Return: returns an error if the buckets could not be allocated. This
438 * error will also be stored in @hdl->error.
439 */
440int v4l2_ctrl_handler_init_class(struct v4l2_ctrl_handler *hdl,
441 unsigned int nr_of_controls_hint,
442 struct lock_class_key *key, const char *name);
443
444#ifdef CONFIG_LOCKDEP
445
446/**
447 * v4l2_ctrl_handler_init - helper function to create a static struct
448 * &lock_class_key and calls v4l2_ctrl_handler_init_class()
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 */
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
480
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 */
488void v4l2_ctrl_handler_free(struct v4l2_ctrl_handler *hdl);
489
490/**
491 * v4l2_ctrl_lock() - Helper function to lock the handler
492 * associated with the control.
493 * @ctrl: The control to lock.
494 */
495static inline void v4l2_ctrl_lock(struct v4l2_ctrl *ctrl)
496{
497 mutex_lock(ctrl->handler->lock);
498}
499
500/**
501 * v4l2_ctrl_unlock() - Helper function to unlock the handler
502 * associated with the control.
503 * @ctrl: The control to unlock.
504 */
505static inline void v4l2_ctrl_unlock(struct v4l2_ctrl *ctrl)
506{
507 mutex_unlock(ctrl->handler->lock);
508}
509
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
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 */
532int v4l2_ctrl_handler_setup(struct v4l2_ctrl_handler *hdl);
533
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 */
546void v4l2_ctrl_handler_log_status(struct v4l2_ctrl_handler *hdl,
547 const char *prefix);
548
549/**
550 * v4l2_ctrl_new_custom() - Allocate and initialize a new custom V4L2
551 * control.
552 *
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 */
560struct v4l2_ctrl *v4l2_ctrl_new_custom(struct v4l2_ctrl_handler *hdl,
561 const struct v4l2_ctrl_config *cfg,
562 void *priv);
563
564/**
565 * v4l2_ctrl_new_std() - Allocate and initialize a new standard V4L2 non-menu
566 * control.
567 *
568 * @hdl: The control handler.
569 * @ops: The control ops.
570 * @id: The control ID.
571 * @min: The control's minimum value.
572 * @max: The control's maximum value.
573 * @step: The control's step value
574 * @def: The control's default value.
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 */
584struct v4l2_ctrl *v4l2_ctrl_new_std(struct v4l2_ctrl_handler *hdl,
585 const struct v4l2_ctrl_ops *ops,
586 u32 id, s64 min, s64 max, u64 step,
587 s64 def);
588
589/**
590 * v4l2_ctrl_new_std_menu() - Allocate and initialize a new standard V4L2
591 * menu control.
592 *
593 * @hdl: The control handler.
594 * @ops: The control ops.
595 * @id: The control ID.
596 * @max: The control's maximum value.
597 * @mask: The control's skip mask for menu controls. This makes it
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.
603 * @def: The control's default value.
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 */
610struct v4l2_ctrl *v4l2_ctrl_new_std_menu(struct v4l2_ctrl_handler *hdl,
611 const struct v4l2_ctrl_ops *ops,
612 u32 id, u8 max, u64 mask, u8 def);
613
614/**
615 * v4l2_ctrl_new_std_menu_items() - Create a new standard V4L2 menu control
616 * with driver specific menu.
617 *
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 */
635struct v4l2_ctrl *v4l2_ctrl_new_std_menu_items(struct v4l2_ctrl_handler *hdl,
636 const struct v4l2_ctrl_ops *ops,
637 u32 id, u8 max,
638 u64 mask, u8 def,
639 const char * const *qmenu);
640
641/**
642 * v4l2_ctrl_new_int_menu() - Create a new standard V4L2 integer menu control.
643 *
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 *
651 * Same as v4l2_ctrl_new_std_menu(), but @mask is set to 0 and it additionaly
652 * takes as an argument an array of integers determining the menu items.
653 *
654 * If @id refers to a non-integer-menu control, then this function will
655 * return %NULL.
656 */
657struct v4l2_ctrl *v4l2_ctrl_new_int_menu(struct v4l2_ctrl_handler *hdl,
658 const struct v4l2_ctrl_ops *ops,
659 u32 id, u8 max, u8 def,
660 const s64 *qmenu_int);
661
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
669typedef bool (*v4l2_ctrl_filter)(const struct v4l2_ctrl *ctrl);
670
671/**
672 * v4l2_ctrl_add_handler() - Add all controls from handler @add to
673 * handler @hdl.
674 *
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.
679 * @from_other_dev: If true, then the controls in @add were defined in another
680 * device than @hdl.
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 */
688int v4l2_ctrl_add_handler(struct v4l2_ctrl_handler *hdl,
689 struct v4l2_ctrl_handler *add,
690 v4l2_ctrl_filter filter,
691 bool from_other_dev);
692
693/**
694 * v4l2_ctrl_radio_filter() - Standard filter for radio controls.
695 *
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 */
704bool v4l2_ctrl_radio_filter(const struct v4l2_ctrl *ctrl);
705
706/**
707 * v4l2_ctrl_cluster() - Mark all controls in the cluster as belonging
708 * to that cluster.
709 *
710 * @ncontrols: The number of controls in this cluster.
711 * @controls: The cluster control array of size @ncontrols.
712 */
713void v4l2_ctrl_cluster(unsigned int ncontrols, struct v4l2_ctrl **controls);
714
715
716/**
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 *
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 *
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)
745 * if autofoo is in auto mode.
746 */
747void v4l2_ctrl_auto_cluster(unsigned int ncontrols,
748 struct v4l2_ctrl **controls,
749 u8 manual_val, bool set_volatile);
750
751
752/**
753 * v4l2_ctrl_find() - Find a control with the given ID.
754 *
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 */
761struct v4l2_ctrl *v4l2_ctrl_find(struct v4l2_ctrl_handler *hdl, u32 id);
762
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 */
775void v4l2_ctrl_activate(struct v4l2_ctrl *ctrl, bool active);
776
777/**
778 * v4l2_ctrl_grab() - Mark the control as grabbed or not grabbed.
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 not locked and will
790 * take the lock itself.
791 */
792void v4l2_ctrl_grab(struct v4l2_ctrl *ctrl, bool grabbed);
793
794/**
795 *__v4l2_ctrl_modify_range() - Unlocked variant of v4l2_ctrl_modify_range()
796 *
797 * @ctrl: The control to update.
798 * @min: The control's minimum value.
799 * @max: The control's maximum value.
800 * @step: The control's step value
801 * @def: The control's default value.
802 *
803 * Update the range of a control on the fly. This works for control types
804 * INTEGER, BOOLEAN, MENU, INTEGER MENU and BITMASK. For menu controls the
805 * @step value is interpreted as a menu_skip_mask.
806 *
807 * An error is returned if one of the range arguments is invalid for this
808 * control type.
809 *
810 * The caller is responsible for acquiring the control handler mutex on behalf
811 * of __v4l2_ctrl_modify_range().
812 */
813int __v4l2_ctrl_modify_range(struct v4l2_ctrl *ctrl,
814 s64 min, s64 max, u64 step, s64 def);
815
816/**
817 * v4l2_ctrl_modify_range() - Update the range of a control.
818 *
819 * @ctrl: The control to update.
820 * @min: The control's minimum value.
821 * @max: The control's maximum value.
822 * @step: The control's step value
823 * @def: The control's default value.
824 *
825 * Update the range of a control on the fly. This works for control types
826 * INTEGER, BOOLEAN, MENU, INTEGER MENU and BITMASK. For menu controls the
827 * @step value is interpreted as a menu_skip_mask.
828 *
829 * An error is returned if one of the range arguments is invalid for this
830 * control type.
831 *
832 * This function assumes that the control handler is not locked and will
833 * take the lock itself.
834 */
835static inline int v4l2_ctrl_modify_range(struct v4l2_ctrl *ctrl,
836 s64 min, s64 max, u64 step, s64 def)
837{
838 int rval;
839
840 v4l2_ctrl_lock(ctrl);
841 rval = __v4l2_ctrl_modify_range(ctrl, min, max, step, def);
842 v4l2_ctrl_unlock(ctrl);
843
844 return rval;
845}
846
847/**
848 * v4l2_ctrl_notify() - Function to set a notify callback for a control.
849 *
850 * @ctrl: The control.
851 * @notify: The callback function.
852 * @priv: The callback private handle, passed as argument to the callback.
853 *
854 * This function sets a callback function for the control. If @ctrl is NULL,
855 * then it will do nothing. If @notify is NULL, then the notify callback will
856 * be removed.
857 *
858 * There can be only one notify. If another already exists, then a WARN_ON
859 * will be issued and the function will do nothing.
860 */
861void v4l2_ctrl_notify(struct v4l2_ctrl *ctrl, v4l2_ctrl_notify_fnc notify,
862 void *priv);
863
864/**
865 * v4l2_ctrl_get_name() - Get the name of the control
866 *
867 * @id: The control ID.
868 *
869 * This function returns the name of the given control ID or NULL if it isn't
870 * a known control.
871 */
872const char *v4l2_ctrl_get_name(u32 id);
873
874/**
875 * v4l2_ctrl_get_menu() - Get the menu string array of the control
876 *
877 * @id: The control ID.
878 *
879 * This function returns the NULL-terminated menu string array name of the
880 * given control ID or NULL if it isn't a known menu control.
881 */
882const char * const *v4l2_ctrl_get_menu(u32 id);
883
884/**
885 * v4l2_ctrl_get_int_menu() - Get the integer menu array of the control
886 *
887 * @id: The control ID.
888 * @len: The size of the integer array.
889 *
890 * This function returns the integer array of the given control ID or NULL if it
891 * if it isn't a known integer menu control.
892 */
893const s64 *v4l2_ctrl_get_int_menu(u32 id, u32 *len);
894
895/**
896 * v4l2_ctrl_g_ctrl() - Helper function to get the control's value from
897 * within a driver.
898 *
899 * @ctrl: The control.
900 *
901 * This returns the control's value safely by going through the control
902 * framework. This function will lock the control's handler, so it cannot be
903 * used from within the &v4l2_ctrl_ops functions.
904 *
905 * This function is for integer type controls only.
906 */
907s32 v4l2_ctrl_g_ctrl(struct v4l2_ctrl *ctrl);
908
909/**
910 * __v4l2_ctrl_s_ctrl() - Unlocked variant of v4l2_ctrl_s_ctrl().
911 *
912 * @ctrl: The control.
913 * @val: TheControls name new value.
914 *
915 * This sets the control's new value safely by going through the control
916 * framework. This function assumes the control's handler is already locked,
917 * allowing it to be used from within the &v4l2_ctrl_ops functions.
918 *
919 * This function is for integer type controls only.
920 */
921int __v4l2_ctrl_s_ctrl(struct v4l2_ctrl *ctrl, s32 val);
922
923/**
924 * v4l2_ctrl_s_ctrl() - Helper function to set the control's value from
925 * within a driver.
926 * @ctrl: The control.
927 * @val: The new value.
928 *
929 * This sets the control's new value safely by going through the control
930 * framework. This function will lock the control's handler, so it cannot be
931 * used from within the &v4l2_ctrl_ops functions.
932 *
933 * This function is for integer type controls only.
934 */
935static inline int v4l2_ctrl_s_ctrl(struct v4l2_ctrl *ctrl, s32 val)
936{
937 int rval;
938
939 v4l2_ctrl_lock(ctrl);
940 rval = __v4l2_ctrl_s_ctrl(ctrl, val);
941 v4l2_ctrl_unlock(ctrl);
942
943 return rval;
944}
945
946/**
947 * v4l2_ctrl_g_ctrl_int64() - Helper function to get a 64-bit control's value
948 * from within a driver.
949 *
950 * @ctrl: The control.
951 *
952 * This returns the control's value safely by going through the control
953 * framework. This function will lock the control's handler, so it cannot be
954 * used from within the &v4l2_ctrl_ops functions.
955 *
956 * This function is for 64-bit integer type controls only.
957 */
958s64 v4l2_ctrl_g_ctrl_int64(struct v4l2_ctrl *ctrl);
959
960/**
961 * __v4l2_ctrl_s_ctrl_int64() - Unlocked variant of v4l2_ctrl_s_ctrl_int64().
962 *
963 * @ctrl: The control.
964 * @val: The new value.
965 *
966 * This sets the control's new value safely by going through the control
967 * framework. This function assumes the control's handler is already locked,
968 * allowing it to be used from within the &v4l2_ctrl_ops functions.
969 *
970 * This function is for 64-bit integer type controls only.
971 */
972int __v4l2_ctrl_s_ctrl_int64(struct v4l2_ctrl *ctrl, s64 val);
973
974/**
975 * v4l2_ctrl_s_ctrl_int64() - Helper function to set a 64-bit control's value
976 * from within a driver.
977 *
978 * @ctrl: The control.
979 * @val: The new value.
980 *
981 * This sets the control's new value safely by going through the control
982 * framework. This function will lock the control's handler, so it cannot be
983 * used from within the &v4l2_ctrl_ops functions.
984 *
985 * This function is for 64-bit integer type controls only.
986 */
987static inline int v4l2_ctrl_s_ctrl_int64(struct v4l2_ctrl *ctrl, s64 val)
988{
989 int rval;
990
991 v4l2_ctrl_lock(ctrl);
992 rval = __v4l2_ctrl_s_ctrl_int64(ctrl, val);
993 v4l2_ctrl_unlock(ctrl);
994
995 return rval;
996}
997
998/**
999 * __v4l2_ctrl_s_ctrl_string() - Unlocked variant of v4l2_ctrl_s_ctrl_string().
1000 *
1001 * @ctrl: The control.
1002 * @s: The new string.
1003 *
1004 * This sets the control's new string safely by going through the control
1005 * framework. This function assumes the control's handler is already locked,
1006 * allowing it to be used from within the &v4l2_ctrl_ops functions.
1007 *
1008 * This function is for string type controls only.
1009 */
1010int __v4l2_ctrl_s_ctrl_string(struct v4l2_ctrl *ctrl, const char *s);
1011
1012/**
1013 * v4l2_ctrl_s_ctrl_string() - Helper function to set a control's string value
1014 * from within a driver.
1015 *
1016 * @ctrl: The control.
1017 * @s: The new string.
1018 *Controls name
1019 * This sets the control's new string safely by going through the control
1020 * framework. This function will lock the control's handler, so it cannot be
1021 * used from within the &v4l2_ctrl_ops functions.
1022 *
1023 * This function is for string type controls only.
1024 */
1025static inline int v4l2_ctrl_s_ctrl_string(struct v4l2_ctrl *ctrl, const char *s)
1026{
1027 int rval;
1028
1029 v4l2_ctrl_lock(ctrl);
1030 rval = __v4l2_ctrl_s_ctrl_string(ctrl, s);
1031 v4l2_ctrl_unlock(ctrl);
1032
1033 return rval;
1034}
1035
1036/* Internal helper functions that deal with control events. */
1037extern const struct v4l2_subscribed_event_ops v4l2_ctrl_sub_ev_ops;
1038
1039/**
1040 * v4l2_ctrl_replace - Function to be used as a callback to
1041 * &struct v4l2_subscribed_event_ops replace\(\)
1042 *
1043 * @old: pointer to struct &v4l2_event with the reported
1044 * event;
1045 * @new: pointer to struct &v4l2_event with the modified
1046 * event;
1047 */
1048void v4l2_ctrl_replace(struct v4l2_event *old, const struct v4l2_event *new);
1049
1050/**
1051 * v4l2_ctrl_merge - Function to be used as a callback to
1052 * &struct v4l2_subscribed_event_ops merge(\)
1053 *
1054 * @old: pointer to struct &v4l2_event with the reported
1055 * event;
1056 * @new: pointer to struct &v4l2_event with the merged
1057 * event;
1058 */
1059void v4l2_ctrl_merge(const struct v4l2_event *old, struct v4l2_event *new);
1060
1061/**
1062 * v4l2_ctrl_log_status - helper function to implement %VIDIOC_LOG_STATUS ioctl
1063 *
1064 * @file: pointer to struct file
1065 * @fh: unused. Kept just to be compatible to the arguments expected by
1066 * &struct v4l2_ioctl_ops.vidioc_log_status.
1067 *
1068 * Can be used as a vidioc_log_status function that just dumps all controls
1069 * associated with the filehandle.
1070 */
1071int v4l2_ctrl_log_status(struct file *file, void *fh);
1072
1073/**
1074 * v4l2_ctrl_subscribe_event - Subscribes to an event
1075 *
1076 *
1077 * @fh: pointer to struct v4l2_fh
1078 * @sub: pointer to &struct v4l2_event_subscription
1079 *
1080 * Can be used as a vidioc_subscribe_event function that just subscribes
1081 * control events.
1082 */
1083int v4l2_ctrl_subscribe_event(struct v4l2_fh *fh,
1084 const struct v4l2_event_subscription *sub);
1085
1086/**
1087 * v4l2_ctrl_poll - function to be used as a callback to the poll()
1088 * That just polls for control events.
1089 *
1090 * @file: pointer to struct file
1091 * @wait: pointer to struct poll_table_struct
1092 */
1093__poll_t v4l2_ctrl_poll(struct file *file, struct poll_table_struct *wait);
1094
1095/**
1096 * v4l2_ctrl_request_setup - helper function to apply control values in a request
1097 *
1098 * @req: The request
1099 * @parent: The parent control handler ('priv' in media_request_object_find())
1100 *
1101 * This is a helper function to call the control handler's s_ctrl callback with
1102 * the control values contained in the request. Do note that this approach of
1103 * applying control values in a request is only applicable to memory-to-memory
1104 * devices.
1105 */
1106void v4l2_ctrl_request_setup(struct media_request *req,
1107 struct v4l2_ctrl_handler *parent);
1108
1109/**
1110 * v4l2_ctrl_request_complete - Complete a control handler request object
1111 *
1112 * @req: The request
1113 * @parent: The parent control handler ('priv' in media_request_object_find())
1114 *
1115 * This function is to be called on each control handler that may have had a
1116 * request object associated with it, i.e. control handlers of a driver that
1117 * supports requests.
1118 *
1119 * The function first obtains the values of any volatile controls in the control
1120 * handler and attach them to the request. Then, the function completes the
1121 * request object.
1122 */
1123void v4l2_ctrl_request_complete(struct media_request *req,
1124 struct v4l2_ctrl_handler *parent);
1125
1126/**
1127 * v4l2_ctrl_request_hdl_find - Find the control handler in the request
1128 *
1129 * @req: The request
1130 * @parent: The parent control handler ('priv' in media_request_object_find())
1131 *
1132 * This function finds the control handler in the request. It may return
1133 * NULL if not found. When done, you must call v4l2_ctrl_request_put_hdl()
1134 * with the returned handler pointer.
1135 *
1136 * If the request is not in state VALIDATING or QUEUED, then this function
1137 * will always return NULL.
1138 *
1139 * Note that in state VALIDATING the req_queue_mutex is held, so
1140 * no objects can be added or deleted from the request.
1141 *
1142 * In state QUEUED it is the driver that will have to ensure this.
1143 */
1144struct v4l2_ctrl_handler *v4l2_ctrl_request_hdl_find(struct media_request *req,
1145 struct v4l2_ctrl_handler *parent);
1146
1147/**
1148 * v4l2_ctrl_request_hdl_put - Put the control handler
1149 *
1150 * @hdl: Put this control handler
1151 *
1152 * This function released the control handler previously obtained from'
1153 * v4l2_ctrl_request_hdl_find().
1154 */
1155static inline void v4l2_ctrl_request_hdl_put(struct v4l2_ctrl_handler *hdl)
1156{
1157 if (hdl)
1158 media_request_object_put(&hdl->req_obj);
1159}
1160
1161/**
1162 * v4l2_ctrl_request_ctrl_find() - Find a control with the given ID.
1163 *
1164 * @hdl: The control handler from the request.
1165 * @id: The ID of the control to find.
1166 *
1167 * This function returns a pointer to the control if this control is
1168 * part of the request or NULL otherwise.
1169 */
1170struct v4l2_ctrl *
1171v4l2_ctrl_request_hdl_ctrl_find(struct v4l2_ctrl_handler *hdl, u32 id);
1172
1173/* Helpers for ioctl_ops */
1174
1175/**
1176 * v4l2_queryctrl - Helper function to implement
1177 * :ref:`VIDIOC_QUERYCTRL <vidioc_queryctrl>` ioctl
1178 *
1179 * @hdl: pointer to &struct v4l2_ctrl_handler
1180 * @qc: pointer to &struct v4l2_queryctrl
1181 *
1182 * If hdl == NULL then they will all return -EINVAL.
1183 */
1184int v4l2_queryctrl(struct v4l2_ctrl_handler *hdl, struct v4l2_queryctrl *qc);
1185
1186/**
1187 * v4l2_query_ext_ctrl - Helper function to implement
1188 * :ref:`VIDIOC_QUERY_EXT_CTRL <vidioc_queryctrl>` ioctl
1189 *
1190 * @hdl: pointer to &struct v4l2_ctrl_handler
1191 * @qc: pointer to &struct v4l2_query_ext_ctrl
1192 *
1193 * If hdl == NULL then they will all return -EINVAL.
1194 */
1195int v4l2_query_ext_ctrl(struct v4l2_ctrl_handler *hdl,
1196 struct v4l2_query_ext_ctrl *qc);
1197
1198/**
1199 * v4l2_querymenu - Helper function to implement
1200 * :ref:`VIDIOC_QUERYMENU <vidioc_queryctrl>` ioctl
1201 *
1202 * @hdl: pointer to &struct v4l2_ctrl_handler
1203 * @qm: pointer to &struct v4l2_querymenu
1204 *
1205 * If hdl == NULL then they will all return -EINVAL.
1206 */
1207int v4l2_querymenu(struct v4l2_ctrl_handler *hdl, struct v4l2_querymenu *qm);
1208
1209/**
1210 * v4l2_g_ctrl - Helper function to implement
1211 * :ref:`VIDIOC_G_CTRL <vidioc_g_ctrl>` ioctl
1212 *
1213 * @hdl: pointer to &struct v4l2_ctrl_handler
1214 * @ctrl: pointer to &struct v4l2_control
1215 *
1216 * If hdl == NULL then they will all return -EINVAL.
1217 */
1218int v4l2_g_ctrl(struct v4l2_ctrl_handler *hdl, struct v4l2_control *ctrl);
1219
1220/**
1221 * v4l2_s_ctrl - Helper function to implement
1222 * :ref:`VIDIOC_S_CTRL <vidioc_g_ctrl>` ioctl
1223 *
1224 * @fh: pointer to &struct v4l2_fh
1225 * @hdl: pointer to &struct v4l2_ctrl_handler
1226 *
1227 * @ctrl: pointer to &struct v4l2_control
1228 *
1229 * If hdl == NULL then they will all return -EINVAL.
1230 */
1231int v4l2_s_ctrl(struct v4l2_fh *fh, struct v4l2_ctrl_handler *hdl,
1232 struct v4l2_control *ctrl);
1233
1234/**
1235 * v4l2_g_ext_ctrls - Helper function to implement
1236 * :ref:`VIDIOC_G_EXT_CTRLS <vidioc_g_ext_ctrls>` ioctl
1237 *
1238 * @hdl: pointer to &struct v4l2_ctrl_handler
1239 * @mdev: pointer to &struct media_device
1240 * @c: pointer to &struct v4l2_ext_controls
1241 *
1242 * If hdl == NULL then they will all return -EINVAL.
1243 */
1244int v4l2_g_ext_ctrls(struct v4l2_ctrl_handler *hdl, struct media_device *mdev,
1245 struct v4l2_ext_controls *c);
1246
1247/**
1248 * v4l2_try_ext_ctrls - Helper function to implement
1249 * :ref:`VIDIOC_TRY_EXT_CTRLS <vidioc_g_ext_ctrls>` ioctl
1250 *
1251 * @hdl: pointer to &struct v4l2_ctrl_handler
1252 * @mdev: pointer to &struct media_device
1253 * @c: pointer to &struct v4l2_ext_controls
1254 *
1255 * If hdl == NULL then they will all return -EINVAL.
1256 */
1257int v4l2_try_ext_ctrls(struct v4l2_ctrl_handler *hdl,
1258 struct media_device *mdev,
1259 struct v4l2_ext_controls *c);
1260
1261/**
1262 * v4l2_s_ext_ctrls - Helper function to implement
1263 * :ref:`VIDIOC_S_EXT_CTRLS <vidioc_g_ext_ctrls>` ioctl
1264 *
1265 * @fh: pointer to &struct v4l2_fh
1266 * @hdl: pointer to &struct v4l2_ctrl_handler
1267 * @mdev: pointer to &struct media_device
1268 * @c: pointer to &struct v4l2_ext_controls
1269 *
1270 * If hdl == NULL then they will all return -EINVAL.
1271 */
1272int v4l2_s_ext_ctrls(struct v4l2_fh *fh, struct v4l2_ctrl_handler *hdl,
1273 struct media_device *mdev,
1274 struct v4l2_ext_controls *c);
1275
1276/**
1277 * v4l2_ctrl_subdev_subscribe_event - Helper function to implement
1278 * as a &struct v4l2_subdev_core_ops subscribe_event function
1279 * that just subscribes control events.
1280 *
1281 * @sd: pointer to &struct v4l2_subdev
1282 * @fh: pointer to &struct v4l2_fh
1283 * @sub: pointer to &struct v4l2_event_subscription
1284 */
1285int v4l2_ctrl_subdev_subscribe_event(struct v4l2_subdev *sd, struct v4l2_fh *fh,
1286 struct v4l2_event_subscription *sub);
1287
1288/**
1289 * v4l2_ctrl_subdev_log_status - Log all controls owned by subdev's control
1290 * handler.
1291 *
1292 * @sd: pointer to &struct v4l2_subdev
1293 */
1294int v4l2_ctrl_subdev_log_status(struct v4l2_subdev *sd);
1295
1296#endif