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