blob: ecd79332d7716b4808b69f138e7f1eeb1521b295 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -03002/*
3 *
4 * V 4 L 2 D R I V E R H E L P E R A P I
5 *
6 * Moved from videodev2.h
7 *
8 * Some commonly needed functions for drivers (v4l2-common.o module)
9 */
10#ifndef _V4L2_DEV_H
11#define _V4L2_DEV_H
12
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -030013#include <linux/poll.h>
14#include <linux/fs.h>
15#include <linux/device.h>
Hans Verkuil7f8ecfa2008-08-29 17:31:35 -030016#include <linux/cdev.h>
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -030017#include <linux/mutex.h>
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -030018#include <linux/videodev2.h>
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -030019
Laurent Pinchart2c0ab672009-12-09 08:40:10 -030020#include <media/media-entity.h>
21
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -030022#define VIDEO_MAJOR 81
Hans Verkuilbfa8a272008-08-23 07:48:38 -030023
Mauro Carvalho Chehab4839c582017-09-28 18:39:32 -040024/**
25 * enum vfl_devnode_type - type of V4L2 device node
26 *
27 * @VFL_TYPE_GRABBER: for video input/output devices
28 * @VFL_TYPE_VBI: for vertical blank data (i.e. closed captions, teletext)
29 * @VFL_TYPE_RADIO: for radio tuners
30 * @VFL_TYPE_SUBDEV: for V4L2 subdevices
31 * @VFL_TYPE_SDR: for Software Defined Radio tuners
32 * @VFL_TYPE_TOUCH: for touch sensors
33 */
34enum vfl_devnode_type {
35 VFL_TYPE_GRABBER = 0,
36 VFL_TYPE_VBI = 1,
37 VFL_TYPE_RADIO = 2,
38 VFL_TYPE_SUBDEV = 3,
39 VFL_TYPE_SDR = 4,
40 VFL_TYPE_TOUCH = 5,
41};
42#define VFL_TYPE_MAX VFL_TYPE_TOUCH
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -030043
Hans Verkuil5c778792012-09-05 05:33:21 -030044/* Is this a receiver, transmitter or mem-to-mem? */
45/* Ignored for VFL_TYPE_SUBDEV. */
46#define VFL_DIR_RX 0
47#define VFL_DIR_TX 1
48#define VFL_DIR_M2M 2
49
Hans Verkuila3998102008-07-21 02:57:38 -030050struct v4l2_ioctl_callbacks;
Hans Verkuilbec43662008-12-30 06:58:20 -030051struct video_device;
Hans Verkuil9bea3512008-12-23 07:35:17 -030052struct v4l2_device;
Hans Verkuil09965172010-08-01 14:32:42 -030053struct v4l2_ctrl_handler;
Hans Verkuila3998102008-07-21 02:57:38 -030054
Laurent Pinchart957b4aa2009-11-27 13:57:22 -030055/* Flag to mark the video_device struct as registered.
56 Drivers can clear this flag if they want to block all future
57 device access. It is cleared by video_unregister_device. */
58#define V4L2_FL_REGISTERED (0)
Hans Verkuilb1a873a2011-03-22 10:14:07 -030059/* file->private_data points to struct v4l2_fh */
Sakari Ailus1babcb42010-03-23 09:25:26 -030060#define V4L2_FL_USES_V4L2_FH (1)
Hans Verkuildc93a702008-12-19 21:28:27 -030061
Hans Verkuil02265492010-12-29 10:05:02 -030062/* Priority helper functions */
63
Mauro Carvalho Chehabd9d3d172016-07-21 15:30:20 -030064/**
65 * struct v4l2_prio_state - stores the priority states
66 *
67 * @prios: array with elements to store the array priorities
68 *
69 *
70 * .. note::
71 * The size of @prios array matches the number of priority types defined
Mauro Carvalho Chehabffa04412016-08-29 18:40:21 -030072 * by enum &v4l2_priority.
Mauro Carvalho Chehabd9d3d172016-07-21 15:30:20 -030073 */
Hans Verkuil02265492010-12-29 10:05:02 -030074struct v4l2_prio_state {
75 atomic_t prios[4];
76};
77
Mauro Carvalho Chehabd9d3d172016-07-21 15:30:20 -030078/**
79 * v4l2_prio_init - initializes a struct v4l2_prio_state
80 *
81 * @global: pointer to &struct v4l2_prio_state
82 */
Hans Verkuil02265492010-12-29 10:05:02 -030083void v4l2_prio_init(struct v4l2_prio_state *global);
Mauro Carvalho Chehabd9d3d172016-07-21 15:30:20 -030084
85/**
86 * v4l2_prio_change - changes the v4l2 file handler priority
87 *
88 * @global: pointer to the &struct v4l2_prio_state of the device node.
Mauro Carvalho Chehabffa04412016-08-29 18:40:21 -030089 * @local: pointer to the desired priority, as defined by enum &v4l2_priority
90 * @new: Priority type requested, as defined by enum &v4l2_priority.
Mauro Carvalho Chehabd9d3d172016-07-21 15:30:20 -030091 *
92 * .. note::
93 * This function should be used only by the V4L2 core.
94 */
Hans Verkuil02265492010-12-29 10:05:02 -030095int v4l2_prio_change(struct v4l2_prio_state *global, enum v4l2_priority *local,
96 enum v4l2_priority new);
Mauro Carvalho Chehabd9d3d172016-07-21 15:30:20 -030097
98/**
99 * v4l2_prio_open - Implements the priority logic for a file handler open
100 *
101 * @global: pointer to the &struct v4l2_prio_state of the device node.
Mauro Carvalho Chehabffa04412016-08-29 18:40:21 -0300102 * @local: pointer to the desired priority, as defined by enum &v4l2_priority
Mauro Carvalho Chehabd9d3d172016-07-21 15:30:20 -0300103 *
104 * .. note::
105 * This function should be used only by the V4L2 core.
106 */
Hans Verkuil02265492010-12-29 10:05:02 -0300107void v4l2_prio_open(struct v4l2_prio_state *global, enum v4l2_priority *local);
Mauro Carvalho Chehabd9d3d172016-07-21 15:30:20 -0300108
109/**
110 * v4l2_prio_close - Implements the priority logic for a file handler close
111 *
112 * @global: pointer to the &struct v4l2_prio_state of the device node.
Mauro Carvalho Chehabffa04412016-08-29 18:40:21 -0300113 * @local: priority to be released, as defined by enum &v4l2_priority
Mauro Carvalho Chehabd9d3d172016-07-21 15:30:20 -0300114 *
115 * .. note::
116 * This function should be used only by the V4L2 core.
117 */
Hans Verkuil02265492010-12-29 10:05:02 -0300118void v4l2_prio_close(struct v4l2_prio_state *global, enum v4l2_priority local);
Mauro Carvalho Chehabd9d3d172016-07-21 15:30:20 -0300119
120/**
121 * v4l2_prio_max - Return the maximum priority, as stored at the @global array.
122 *
123 * @global: pointer to the &struct v4l2_prio_state of the device node.
124 *
125 * .. note::
126 * This function should be used only by the V4L2 core.
127 */
Hans Verkuil02265492010-12-29 10:05:02 -0300128enum v4l2_priority v4l2_prio_max(struct v4l2_prio_state *global);
Mauro Carvalho Chehabd9d3d172016-07-21 15:30:20 -0300129
130/**
Mauro Carvalho Chehabe383ce02016-09-22 07:59:03 -0300131 * v4l2_prio_check - Implements the priority logic for a file handler close
Mauro Carvalho Chehabd9d3d172016-07-21 15:30:20 -0300132 *
133 * @global: pointer to the &struct v4l2_prio_state of the device node.
Mauro Carvalho Chehabffa04412016-08-29 18:40:21 -0300134 * @local: desired priority, as defined by enum &v4l2_priority local
Mauro Carvalho Chehabd9d3d172016-07-21 15:30:20 -0300135 *
136 * .. note::
137 * This function should be used only by the V4L2 core.
138 */
Hans Verkuil02265492010-12-29 10:05:02 -0300139int v4l2_prio_check(struct v4l2_prio_state *global, enum v4l2_priority local);
140
Mauro Carvalho Chehabd9d3d172016-07-21 15:30:20 -0300141/**
142 * struct v4l2_file_operations - fs operations used by a V4L2 device
143 *
144 * @owner: pointer to struct module
145 * @read: operations needed to implement the read() syscall
146 * @write: operations needed to implement the write() syscall
147 * @poll: operations needed to implement the poll() syscall
148 * @unlocked_ioctl: operations needed to implement the ioctl() syscall
149 * @compat_ioctl32: operations needed to implement the ioctl() syscall for
150 * the special case where the Kernel uses 64 bits instructions, but
151 * the userspace uses 32 bits.
152 * @get_unmapped_area: called by the mmap() syscall, used when %!CONFIG_MMU
153 * @mmap: operations needed to implement the mmap() syscall
154 * @open: operations needed to implement the open() syscall
155 * @release: operations needed to implement the release() syscall
156 *
157 * .. note::
158 *
159 * Those operations are used to implemente the fs struct file_operations
160 * at the V4L2 drivers. The V4L2 core overrides the fs ops with some
161 * extra logic needed by the subsystem.
162 */
Hans Verkuilbec43662008-12-30 06:58:20 -0300163struct v4l2_file_operations {
164 struct module *owner;
165 ssize_t (*read) (struct file *, char __user *, size_t, loff_t *);
166 ssize_t (*write) (struct file *, const char __user *, size_t, loff_t *);
167 unsigned int (*poll) (struct file *, struct poll_table_struct *);
Hans Verkuilbec43662008-12-30 06:58:20 -0300168 long (*unlocked_ioctl) (struct file *, unsigned int, unsigned long);
Laurent Pinchartb9d0aa62011-12-18 20:41:19 -0300169#ifdef CONFIG_COMPAT
170 long (*compat_ioctl32) (struct file *, unsigned int, unsigned long);
171#endif
Bob Liuecc65172011-05-06 05:20:09 -0300172 unsigned long (*get_unmapped_area) (struct file *, unsigned long,
173 unsigned long, unsigned long, unsigned long);
Hans Verkuilbec43662008-12-30 06:58:20 -0300174 int (*mmap) (struct file *, struct vm_area_struct *);
175 int (*open) (struct file *);
176 int (*release) (struct file *);
177};
178
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -0300179/*
180 * Newer version of video_device, handled by videodev2.c
181 * This version moves redundant code from video device code to
182 * the common handler
183 */
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -0300184
Mauro Carvalho Chehabd9d3d172016-07-21 15:30:20 -0300185/**
186 * struct video_device - Structure used to create and manage the V4L2 device
187 * nodes.
188 *
189 * @entity: &struct media_entity
190 * @intf_devnode: pointer to &struct media_intf_devnode
191 * @pipe: &struct media_pipeline
192 * @fops: pointer to &struct v4l2_file_operations for the video device
193 * @device_caps: device capabilities as used in v4l2_capabilities
194 * @dev: &struct device for the video device
195 * @cdev: character device
196 * @v4l2_dev: pointer to &struct v4l2_device parent
197 * @dev_parent: pointer to &struct device parent
198 * @ctrl_handler: Control handler associated with this device node.
199 * May be NULL.
200 * @queue: &struct vb2_queue associated with this device node. May be NULL.
201 * @prio: pointer to &struct v4l2_prio_state with device's Priority state.
202 * If NULL, then v4l2_dev->prio will be used.
203 * @name: video device name
Mauro Carvalho Chehab4839c582017-09-28 18:39:32 -0400204 * @vfl_type: V4L device type, as defined by &enum vfl_devnode_type
Mauro Carvalho Chehabd9d3d172016-07-21 15:30:20 -0300205 * @vfl_dir: V4L receiver, transmitter or m2m
206 * @minor: device node 'minor'. It is set to -1 if the registration failed
207 * @num: number of the video device node
208 * @flags: video device flags. Use bitops to set/clear/test flags
209 * @index: attribute to differentiate multiple indices on one physical device
210 * @fh_lock: Lock for all v4l2_fhs
211 * @fh_list: List of &struct v4l2_fh
212 * @dev_debug: Internal device debug flags, not for use by drivers
213 * @tvnorms: Supported tv norms
214 *
215 * @release: video device release() callback
216 * @ioctl_ops: pointer to &struct v4l2_ioctl_ops with ioctl callbacks
217 *
218 * @valid_ioctls: bitmap with the valid ioctls for this device
219 * @disable_locking: bitmap with the ioctls that don't require locking
220 * @lock: pointer to &struct mutex serialization lock
221 *
222 * .. note::
223 * Only set @dev_parent if that can't be deduced from @v4l2_dev.
224 */
225
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -0300226struct video_device
227{
Laurent Pinchart2c0ab672009-12-09 08:40:10 -0300228#if defined(CONFIG_MEDIA_CONTROLLER)
229 struct media_entity entity;
Mauro Carvalho Chehabd9c21e32015-08-24 08:47:54 -0300230 struct media_intf_devnode *intf_devnode;
Shuah Khand0a164f2016-02-11 21:41:25 -0200231 struct media_pipeline pipe;
Laurent Pinchart2c0ab672009-12-09 08:40:10 -0300232#endif
Hans Verkuilbec43662008-12-30 06:58:20 -0300233 const struct v4l2_file_operations *fops;
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -0300234
Hans Verkuil7bbe7812016-03-01 11:57:23 -0300235 u32 device_caps;
236
Kay Sievers54bd5b62007-10-08 16:26:13 -0300237 /* sysfs */
Mauro Carvalho Chehabd9d3d172016-07-21 15:30:20 -0300238 struct device dev;
239 struct cdev *cdev;
Hans Verkuil9bea3512008-12-23 07:35:17 -0300240
Mauro Carvalho Chehabd9d3d172016-07-21 15:30:20 -0300241 struct v4l2_device *v4l2_dev;
242 struct device *dev_parent;
Kay Sievers54bd5b62007-10-08 16:26:13 -0300243
Hans Verkuil09965172010-08-01 14:32:42 -0300244 struct v4l2_ctrl_handler *ctrl_handler;
245
Hans Verkuil5a5adf62012-06-22 07:29:35 -0300246 struct vb2_queue *queue;
247
Hans Verkuil0f62fd62011-02-24 10:42:24 -0300248 struct v4l2_prio_state *prio;
249
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -0300250 /* device info */
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -0300251 char name[32];
Mauro Carvalho Chehab4839c582017-09-28 18:39:32 -0400252 enum vfl_devnode_type vfl_type;
Mauro Carvalho Chehabd9d3d172016-07-21 15:30:20 -0300253 int vfl_dir;
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -0300254 int minor;
Hans Verkuildd896012008-10-04 08:36:54 -0300255 u16 num;
Hans Verkuildc93a702008-12-19 21:28:27 -0300256 unsigned long flags;
brandon@ifup.org539a7552008-06-20 22:58:53 -0300257 int index;
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -0300258
Sakari Ailus1babcb42010-03-23 09:25:26 -0300259 /* V4L2 file handles */
Mauro Carvalho Chehabd9d3d172016-07-21 15:30:20 -0300260 spinlock_t fh_lock;
261 struct list_head fh_list;
Sakari Ailus1babcb42010-03-23 09:25:26 -0300262
Hans Verkuil17028cd2014-12-01 10:10:44 -0300263 int dev_debug;
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -0300264
Mauro Carvalho Chehabd9d3d172016-07-21 15:30:20 -0300265 v4l2_std_id tvnorms;
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -0300266
267 /* callbacks */
Hans Verkuildc93a702008-12-19 21:28:27 -0300268 void (*release)(struct video_device *vdev);
Hans Verkuila3998102008-07-21 02:57:38 -0300269 const struct v4l2_ioctl_ops *ioctl_ops;
Hans Verkuil48ea0be2012-05-10 05:36:00 -0300270 DECLARE_BITMAP(valid_ioctls, BASE_VIDIOC_PRIVATE);
Hans Verkuilee6869a2010-09-26 08:47:38 -0300271
Hans Verkuil152a3a72012-05-14 11:32:48 -0300272 DECLARE_BITMAP(disable_locking, BASE_VIDIOC_PRIVATE);
Hans Verkuilee6869a2010-09-26 08:47:38 -0300273 struct mutex *lock;
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -0300274};
275
Mauro Carvalho Chehab69b925c2017-09-28 09:34:54 -0400276/**
277 * media_entity_to_video_device - Returns a &struct video_device from
278 * the &struct media_entity embedded on it.
279 *
280 * @entity: pointer to &struct media_entity
281 */
282#define media_entity_to_video_device(entity) \
283 container_of(entity, struct video_device, entity)
284
285/**
286 * to_video_device - Returns a &struct video_device from the
287 * &struct device embedded on it.
288 *
289 * @cd: pointer to &struct device
290 */
Hans Verkuil22a04f12008-07-20 06:35:02 -0300291#define to_video_device(cd) container_of(cd, struct video_device, dev)
Linus Torvaldse90ff922007-09-13 21:09:01 -0300292
Mauro Carvalho Chehabd9d3d172016-07-21 15:30:20 -0300293/**
294 * __video_register_device - register video4linux devices
295 *
296 * @vdev: struct video_device to register
Mauro Carvalho Chehab4839c582017-09-28 18:39:32 -0400297 * @type: type of device to register, as defined by &enum vfl_devnode_type
Mauro Carvalho Chehabd9d3d172016-07-21 15:30:20 -0300298 * @nr: which device node number is desired:
299 * (0 == /dev/video0, 1 == /dev/video1, ..., -1 == first free)
300 * @warn_if_nr_in_use: warn if the desired device node number
301 * was already in use and another number was chosen instead.
302 * @owner: module that owns the video device node
303 *
304 * The registration code assigns minor numbers and device node numbers
305 * based on the requested type and registers the new device node with
306 * the kernel.
307 *
308 * This function assumes that struct video_device was zeroed when it
309 * was allocated and does not contain any stale date.
310 *
311 * An error is returned if no free minor or device node number could be
312 * found, or if the registration of the device node failed.
313 *
314 * Returns 0 on success.
315 *
Mauro Carvalho Chehabd9d3d172016-07-21 15:30:20 -0300316 * .. note::
317 *
318 * This function is meant to be used only inside the V4L2 core.
319 * Drivers should use video_register_device() or
320 * video_register_device_no_warn().
321 */
Mauro Carvalho Chehab4839c582017-09-28 18:39:32 -0400322int __must_check __video_register_device(struct video_device *vdev,
323 enum vfl_devnode_type type,
324 int nr, int warn_if_nr_in_use,
325 struct module *owner);
Laurent Pinchart2096a5d2009-12-09 08:38:49 -0300326
Mauro Carvalho Chehabd9d3d172016-07-21 15:30:20 -0300327/**
328 * video_register_device - register video4linux devices
329 *
330 * @vdev: struct video_device to register
Mauro Carvalho Chehab4839c582017-09-28 18:39:32 -0400331 * @type: type of device to register, as defined by &enum vfl_devnode_type
Mauro Carvalho Chehabd9d3d172016-07-21 15:30:20 -0300332 * @nr: which device node number is desired:
333 * (0 == /dev/video0, 1 == /dev/video1, ..., -1 == first free)
334 *
335 * Internally, it calls __video_register_device(). Please see its
336 * documentation for more details.
337 *
338 * .. note::
339 * if video_register_device fails, the release() callback of
340 * &struct video_device structure is *not* called, so the caller
341 * is responsible for freeing any data. Usually that means that
342 * you video_device_release() should be called on failure.
343 */
Laurent Pinchart2096a5d2009-12-09 08:38:49 -0300344static inline int __must_check video_register_device(struct video_device *vdev,
Mauro Carvalho Chehab4839c582017-09-28 18:39:32 -0400345 enum vfl_devnode_type type,
346 int nr)
Laurent Pinchart2096a5d2009-12-09 08:38:49 -0300347{
348 return __video_register_device(vdev, type, nr, 1, vdev->fops->owner);
349}
Hans Verkuildc93a702008-12-19 21:28:27 -0300350
Mauro Carvalho Chehabd9d3d172016-07-21 15:30:20 -0300351/**
352 * video_register_device_no_warn - register video4linux devices
353 *
354 * @vdev: struct video_device to register
Mauro Carvalho Chehab4839c582017-09-28 18:39:32 -0400355 * @type: type of device to register, as defined by &enum vfl_devnode_type
Mauro Carvalho Chehabd9d3d172016-07-21 15:30:20 -0300356 * @nr: which device node number is desired:
357 * (0 == /dev/video0, 1 == /dev/video1, ..., -1 == first free)
358 *
359 * This function is identical to video_register_device() except that no
360 * warning is issued if the desired device node number was already in use.
361 *
362 * Internally, it calls __video_register_device(). Please see its
363 * documentation for more details.
364 *
365 * .. note::
366 * if video_register_device fails, the release() callback of
367 * &struct video_device structure is *not* called, so the caller
368 * is responsible for freeing any data. Usually that means that
369 * you video_device_release() should be called on failure.
370 */
Mauro Carvalho Chehab4839c582017-09-28 18:39:32 -0400371static inline int __must_check
372video_register_device_no_warn(struct video_device *vdev,
373 enum vfl_devnode_type type, int nr)
Laurent Pinchart2096a5d2009-12-09 08:38:49 -0300374{
375 return __video_register_device(vdev, type, nr, 0, vdev->fops->owner);
376}
Hans Verkuil6b5270d2009-09-06 07:54:00 -0300377
Mauro Carvalho Chehabd9d3d172016-07-21 15:30:20 -0300378/**
379 * video_unregister_device - Unregister video devices.
380 *
381 * @vdev: &struct video_device to register
382 *
383 * Does nothing if vdev == NULL or if video_is_registered() returns false.
384 */
Hans Verkuildc93a702008-12-19 21:28:27 -0300385void video_unregister_device(struct video_device *vdev);
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -0300386
Mauro Carvalho Chehabd9d3d172016-07-21 15:30:20 -0300387/**
388 * video_device_alloc - helper function to alloc &struct video_device
389 *
390 * Returns NULL if %-ENOMEM or a &struct video_device on success.
391 */
Hans Verkuile138c592008-08-23 06:38:11 -0300392struct video_device * __must_check video_device_alloc(void);
Hans Verkuilbfa8a272008-08-23 07:48:38 -0300393
Mauro Carvalho Chehabd9d3d172016-07-21 15:30:20 -0300394/**
395 * video_device_release - helper function to release &struct video_device
396 *
397 * @vdev: pointer to &struct video_device
398 *
Mauro Carvalho Chehab564aaf62016-07-23 07:12:03 -0300399 * Can also be used for video_device->release\(\).
Mauro Carvalho Chehabd9d3d172016-07-21 15:30:20 -0300400 */
Hans Verkuildc93a702008-12-19 21:28:27 -0300401void video_device_release(struct video_device *vdev);
Hans Verkuilbfa8a272008-08-23 07:48:38 -0300402
Mauro Carvalho Chehabd9d3d172016-07-21 15:30:20 -0300403/**
404 * video_device_release_empty - helper function to implement the
Mauro Carvalho Chehab564aaf62016-07-23 07:12:03 -0300405 * video_device->release\(\) callback.
Mauro Carvalho Chehabd9d3d172016-07-21 15:30:20 -0300406 *
407 * @vdev: pointer to &struct video_device
408 *
409 * This release function does nothing.
410 *
411 * It should be used when the video_device is a static global struct.
412 *
413 * .. note::
414 * Having a static video_device is a dubious construction at best.
415 */
Hans Verkuildc93a702008-12-19 21:28:27 -0300416void video_device_release_empty(struct video_device *vdev);
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -0300417
Mauro Carvalho Chehabd9d3d172016-07-21 15:30:20 -0300418/**
419 * v4l2_is_known_ioctl - Checks if a given cmd is a known V4L ioctl
420 *
421 * @cmd: ioctl command
422 *
423 * returns true if cmd is a known V4L2 ioctl
424 */
Hans Verkuil8ab75e32012-05-10 02:51:31 -0300425bool v4l2_is_known_ioctl(unsigned int cmd);
426
Mauro Carvalho Chehabd9d3d172016-07-21 15:30:20 -0300427/** v4l2_disable_ioctl_locking - mark that a given command
428 * shouldn't use core locking
429 *
430 * @vdev: pointer to &struct video_device
431 * @cmd: ioctl command
432 */
433static inline void v4l2_disable_ioctl_locking(struct video_device *vdev,
434 unsigned int cmd)
Hans Verkuil8ab75e32012-05-10 02:51:31 -0300435{
436 if (_IOC_NR(cmd) < BASE_VIDIOC_PRIVATE)
Hans Verkuil152a3a72012-05-14 11:32:48 -0300437 set_bit(_IOC_NR(cmd), vdev->disable_locking);
Hans Verkuil8ab75e32012-05-10 02:51:31 -0300438}
439
Mauro Carvalho Chehabd9d3d172016-07-21 15:30:20 -0300440/**
441 * v4l2_disable_ioctl- mark that a given command isn't implemented.
442 * shouldn't use core locking
443 *
444 * @vdev: pointer to &struct video_device
445 * @cmd: ioctl command
446 *
447 * This function allows drivers to provide just one v4l2_ioctl_ops struct, but
448 * disable ioctls based on the specific card that is actually found.
449 *
450 * .. note::
451 *
452 * This must be called before video_register_device.
453 * See also the comments for determine_valid_ioctls().
454 */
455static inline void v4l2_disable_ioctl(struct video_device *vdev,
456 unsigned int cmd)
Hans Verkuil48ea0be2012-05-10 05:36:00 -0300457{
458 if (_IOC_NR(cmd) < BASE_VIDIOC_PRIVATE)
459 set_bit(_IOC_NR(cmd), vdev->valid_ioctls);
460}
461
Mauro Carvalho Chehabd9d3d172016-07-21 15:30:20 -0300462/**
463 * video_get_drvdata - gets private data from &struct video_device.
464 *
465 * @vdev: pointer to &struct video_device
466 *
467 * returns a pointer to the private data
468 */
Hans Verkuildc93a702008-12-19 21:28:27 -0300469static inline void *video_get_drvdata(struct video_device *vdev)
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -0300470{
Hans Verkuildc93a702008-12-19 21:28:27 -0300471 return dev_get_drvdata(&vdev->dev);
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -0300472}
473
Mauro Carvalho Chehabd9d3d172016-07-21 15:30:20 -0300474/**
475 * video_set_drvdata - sets private data from &struct video_device.
476 *
477 * @vdev: pointer to &struct video_device
478 * @data: private data pointer
479 */
Hans Verkuildc93a702008-12-19 21:28:27 -0300480static inline void video_set_drvdata(struct video_device *vdev, void *data)
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -0300481{
Hans Verkuildc93a702008-12-19 21:28:27 -0300482 dev_set_drvdata(&vdev->dev, data);
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -0300483}
Mauro Carvalho Chehab38ee04f2006-08-08 09:10:01 -0300484
Mauro Carvalho Chehabd9d3d172016-07-21 15:30:20 -0300485/**
486 * video_devdata - gets &struct video_device from struct file.
487 *
488 * @file: pointer to struct file
489 */
Hans Verkuilbfa8a272008-08-23 07:48:38 -0300490struct video_device *video_devdata(struct file *file);
491
Mauro Carvalho Chehabd9d3d172016-07-21 15:30:20 -0300492/**
493 * video_drvdata - gets private data from &struct video_device using the
494 * struct file.
495 *
496 * @file: pointer to struct file
497 *
498 * This is function combines both video_get_drvdata() and video_devdata()
499 * as this is used very often.
500 */
Hans Verkuilbfa8a272008-08-23 07:48:38 -0300501static inline void *video_drvdata(struct file *file)
502{
503 return video_get_drvdata(video_devdata(file));
504}
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -0300505
Mauro Carvalho Chehabd9d3d172016-07-21 15:30:20 -0300506/**
507 * video_device_node_name - returns the video device name
508 *
509 * @vdev: pointer to &struct video_device
510 *
511 * Returns the device name string
512 */
Laurent Pincharteac8ea52009-11-27 13:56:50 -0300513static inline const char *video_device_node_name(struct video_device *vdev)
514{
515 return dev_name(&vdev->dev);
516}
517
Mauro Carvalho Chehabd9d3d172016-07-21 15:30:20 -0300518/**
519 * video_is_registered - returns true if the &struct video_device is registered.
520 *
521 *
522 * @vdev: pointer to &struct video_device
523 */
Laurent Pinchart957b4aa2009-11-27 13:57:22 -0300524static inline int video_is_registered(struct video_device *vdev)
Hans Verkuildc93a702008-12-19 21:28:27 -0300525{
Laurent Pinchart957b4aa2009-11-27 13:57:22 -0300526 return test_bit(V4L2_FL_REGISTERED, &vdev->flags);
Hans Verkuildc93a702008-12-19 21:28:27 -0300527}
528
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -0300529#endif /* _V4L2_DEV_H */