blob: fa99f6f66712d9158c5198e25f01267267fe24f9 [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 Chehab401998f2006-06-04 10:06:18 -030024#define VFL_TYPE_GRABBER 0
25#define VFL_TYPE_VBI 1
26#define VFL_TYPE_RADIO 2
Laurent Pinchart2096a5d2009-12-09 08:38:49 -030027#define VFL_TYPE_SUBDEV 3
Antti Palosaarid42626b2013-12-11 20:03:07 -030028#define VFL_TYPE_SDR 4
Nick Dyerb2fe22d2016-07-18 18:10:30 -030029#define VFL_TYPE_TOUCH 5
30#define VFL_TYPE_MAX 6
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -030031
Hans Verkuil5c778792012-09-05 05:33:21 -030032/* Is this a receiver, transmitter or mem-to-mem? */
33/* Ignored for VFL_TYPE_SUBDEV. */
34#define VFL_DIR_RX 0
35#define VFL_DIR_TX 1
36#define VFL_DIR_M2M 2
37
Hans Verkuila3998102008-07-21 02:57:38 -030038struct v4l2_ioctl_callbacks;
Hans Verkuilbec43662008-12-30 06:58:20 -030039struct video_device;
Hans Verkuil9bea3512008-12-23 07:35:17 -030040struct v4l2_device;
Hans Verkuil09965172010-08-01 14:32:42 -030041struct v4l2_ctrl_handler;
Hans Verkuila3998102008-07-21 02:57:38 -030042
Laurent Pinchart957b4aa2009-11-27 13:57:22 -030043/* Flag to mark the video_device struct as registered.
44 Drivers can clear this flag if they want to block all future
45 device access. It is cleared by video_unregister_device. */
46#define V4L2_FL_REGISTERED (0)
Hans Verkuilb1a873a2011-03-22 10:14:07 -030047/* file->private_data points to struct v4l2_fh */
Sakari Ailus1babcb42010-03-23 09:25:26 -030048#define V4L2_FL_USES_V4L2_FH (1)
Hans Verkuildc93a702008-12-19 21:28:27 -030049
Hans Verkuil02265492010-12-29 10:05:02 -030050/* Priority helper functions */
51
Mauro Carvalho Chehabd9d3d172016-07-21 15:30:20 -030052/**
53 * struct v4l2_prio_state - stores the priority states
54 *
55 * @prios: array with elements to store the array priorities
56 *
57 *
58 * .. note::
59 * The size of @prios array matches the number of priority types defined
Mauro Carvalho Chehabffa04412016-08-29 18:40:21 -030060 * by enum &v4l2_priority.
Mauro Carvalho Chehabd9d3d172016-07-21 15:30:20 -030061 */
Hans Verkuil02265492010-12-29 10:05:02 -030062struct v4l2_prio_state {
63 atomic_t prios[4];
64};
65
Mauro Carvalho Chehabd9d3d172016-07-21 15:30:20 -030066/**
67 * v4l2_prio_init - initializes a struct v4l2_prio_state
68 *
69 * @global: pointer to &struct v4l2_prio_state
70 */
Hans Verkuil02265492010-12-29 10:05:02 -030071void v4l2_prio_init(struct v4l2_prio_state *global);
Mauro Carvalho Chehabd9d3d172016-07-21 15:30:20 -030072
73/**
74 * v4l2_prio_change - changes the v4l2 file handler priority
75 *
76 * @global: pointer to the &struct v4l2_prio_state of the device node.
Mauro Carvalho Chehabffa04412016-08-29 18:40:21 -030077 * @local: pointer to the desired priority, as defined by enum &v4l2_priority
78 * @new: Priority type requested, as defined by enum &v4l2_priority.
Mauro Carvalho Chehabd9d3d172016-07-21 15:30:20 -030079 *
80 * .. note::
81 * This function should be used only by the V4L2 core.
82 */
Hans Verkuil02265492010-12-29 10:05:02 -030083int v4l2_prio_change(struct v4l2_prio_state *global, enum v4l2_priority *local,
84 enum v4l2_priority new);
Mauro Carvalho Chehabd9d3d172016-07-21 15:30:20 -030085
86/**
87 * v4l2_prio_open - Implements the priority logic for a file handler open
88 *
89 * @global: pointer to the &struct v4l2_prio_state of the device node.
Mauro Carvalho Chehabffa04412016-08-29 18:40:21 -030090 * @local: pointer to the desired priority, 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 -030095void v4l2_prio_open(struct v4l2_prio_state *global, enum v4l2_priority *local);
Mauro Carvalho Chehabd9d3d172016-07-21 15:30:20 -030096
97/**
98 * v4l2_prio_close - Implements the priority logic for a file handler close
99 *
100 * @global: pointer to the &struct v4l2_prio_state of the device node.
Mauro Carvalho Chehabffa04412016-08-29 18:40:21 -0300101 * @local: priority to be released, as defined by enum &v4l2_priority
Mauro Carvalho Chehabd9d3d172016-07-21 15:30:20 -0300102 *
103 * .. note::
104 * This function should be used only by the V4L2 core.
105 */
Hans Verkuil02265492010-12-29 10:05:02 -0300106void v4l2_prio_close(struct v4l2_prio_state *global, enum v4l2_priority local);
Mauro Carvalho Chehabd9d3d172016-07-21 15:30:20 -0300107
108/**
109 * v4l2_prio_max - Return the maximum priority, as stored at the @global array.
110 *
111 * @global: pointer to the &struct v4l2_prio_state of the device node.
112 *
113 * .. note::
114 * This function should be used only by the V4L2 core.
115 */
Hans Verkuil02265492010-12-29 10:05:02 -0300116enum v4l2_priority v4l2_prio_max(struct v4l2_prio_state *global);
Mauro Carvalho Chehabd9d3d172016-07-21 15:30:20 -0300117
118/**
Mauro Carvalho Chehabe383ce02016-09-22 07:59:03 -0300119 * v4l2_prio_check - Implements the priority logic for a file handler close
Mauro Carvalho Chehabd9d3d172016-07-21 15:30:20 -0300120 *
121 * @global: pointer to the &struct v4l2_prio_state of the device node.
Mauro Carvalho Chehabffa04412016-08-29 18:40:21 -0300122 * @local: desired priority, as defined by enum &v4l2_priority local
Mauro Carvalho Chehabd9d3d172016-07-21 15:30:20 -0300123 *
124 * .. note::
125 * This function should be used only by the V4L2 core.
126 */
Hans Verkuil02265492010-12-29 10:05:02 -0300127int v4l2_prio_check(struct v4l2_prio_state *global, enum v4l2_priority local);
128
Mauro Carvalho Chehabd9d3d172016-07-21 15:30:20 -0300129/**
130 * struct v4l2_file_operations - fs operations used by a V4L2 device
131 *
132 * @owner: pointer to struct module
133 * @read: operations needed to implement the read() syscall
134 * @write: operations needed to implement the write() syscall
135 * @poll: operations needed to implement the poll() syscall
136 * @unlocked_ioctl: operations needed to implement the ioctl() syscall
137 * @compat_ioctl32: operations needed to implement the ioctl() syscall for
138 * the special case where the Kernel uses 64 bits instructions, but
139 * the userspace uses 32 bits.
140 * @get_unmapped_area: called by the mmap() syscall, used when %!CONFIG_MMU
141 * @mmap: operations needed to implement the mmap() syscall
142 * @open: operations needed to implement the open() syscall
143 * @release: operations needed to implement the release() syscall
144 *
145 * .. note::
146 *
147 * Those operations are used to implemente the fs struct file_operations
148 * at the V4L2 drivers. The V4L2 core overrides the fs ops with some
149 * extra logic needed by the subsystem.
150 */
Hans Verkuilbec43662008-12-30 06:58:20 -0300151struct v4l2_file_operations {
152 struct module *owner;
153 ssize_t (*read) (struct file *, char __user *, size_t, loff_t *);
154 ssize_t (*write) (struct file *, const char __user *, size_t, loff_t *);
Al Viroa3f86832017-07-02 22:22:01 -0400155 __poll_t (*poll) (struct file *, struct poll_table_struct *);
Hans Verkuilbec43662008-12-30 06:58:20 -0300156 long (*unlocked_ioctl) (struct file *, unsigned int, unsigned long);
Laurent Pinchartb9d0aa62011-12-18 20:41:19 -0300157#ifdef CONFIG_COMPAT
158 long (*compat_ioctl32) (struct file *, unsigned int, unsigned long);
159#endif
Bob Liuecc65172011-05-06 05:20:09 -0300160 unsigned long (*get_unmapped_area) (struct file *, unsigned long,
161 unsigned long, unsigned long, unsigned long);
Hans Verkuilbec43662008-12-30 06:58:20 -0300162 int (*mmap) (struct file *, struct vm_area_struct *);
163 int (*open) (struct file *);
164 int (*release) (struct file *);
165};
166
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -0300167/*
168 * Newer version of video_device, handled by videodev2.c
169 * This version moves redundant code from video device code to
170 * the common handler
171 */
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -0300172
Mauro Carvalho Chehabd9d3d172016-07-21 15:30:20 -0300173/**
174 * struct video_device - Structure used to create and manage the V4L2 device
175 * nodes.
176 *
177 * @entity: &struct media_entity
178 * @intf_devnode: pointer to &struct media_intf_devnode
179 * @pipe: &struct media_pipeline
180 * @fops: pointer to &struct v4l2_file_operations for the video device
181 * @device_caps: device capabilities as used in v4l2_capabilities
182 * @dev: &struct device for the video device
183 * @cdev: character device
184 * @v4l2_dev: pointer to &struct v4l2_device parent
185 * @dev_parent: pointer to &struct device parent
186 * @ctrl_handler: Control handler associated with this device node.
187 * May be NULL.
188 * @queue: &struct vb2_queue associated with this device node. May be NULL.
189 * @prio: pointer to &struct v4l2_prio_state with device's Priority state.
190 * If NULL, then v4l2_dev->prio will be used.
191 * @name: video device name
192 * @vfl_type: V4L device type
193 * @vfl_dir: V4L receiver, transmitter or m2m
194 * @minor: device node 'minor'. It is set to -1 if the registration failed
195 * @num: number of the video device node
196 * @flags: video device flags. Use bitops to set/clear/test flags
197 * @index: attribute to differentiate multiple indices on one physical device
198 * @fh_lock: Lock for all v4l2_fhs
199 * @fh_list: List of &struct v4l2_fh
200 * @dev_debug: Internal device debug flags, not for use by drivers
201 * @tvnorms: Supported tv norms
202 *
203 * @release: video device release() callback
204 * @ioctl_ops: pointer to &struct v4l2_ioctl_ops with ioctl callbacks
205 *
206 * @valid_ioctls: bitmap with the valid ioctls for this device
207 * @disable_locking: bitmap with the ioctls that don't require locking
208 * @lock: pointer to &struct mutex serialization lock
209 *
210 * .. note::
211 * Only set @dev_parent if that can't be deduced from @v4l2_dev.
212 */
213
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -0300214struct video_device
215{
Laurent Pinchart2c0ab672009-12-09 08:40:10 -0300216#if defined(CONFIG_MEDIA_CONTROLLER)
217 struct media_entity entity;
Mauro Carvalho Chehabd9c21e32015-08-24 08:47:54 -0300218 struct media_intf_devnode *intf_devnode;
Shuah Khand0a164f2016-02-11 21:41:25 -0200219 struct media_pipeline pipe;
Laurent Pinchart2c0ab672009-12-09 08:40:10 -0300220#endif
Hans Verkuilbec43662008-12-30 06:58:20 -0300221 const struct v4l2_file_operations *fops;
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -0300222
Hans Verkuil7bbe7812016-03-01 11:57:23 -0300223 u32 device_caps;
224
Kay Sievers54bd5b62007-10-08 16:26:13 -0300225 /* sysfs */
Mauro Carvalho Chehabd9d3d172016-07-21 15:30:20 -0300226 struct device dev;
227 struct cdev *cdev;
Hans Verkuil9bea3512008-12-23 07:35:17 -0300228
Mauro Carvalho Chehabd9d3d172016-07-21 15:30:20 -0300229 struct v4l2_device *v4l2_dev;
230 struct device *dev_parent;
Kay Sievers54bd5b62007-10-08 16:26:13 -0300231
Hans Verkuil09965172010-08-01 14:32:42 -0300232 struct v4l2_ctrl_handler *ctrl_handler;
233
Hans Verkuil5a5adf62012-06-22 07:29:35 -0300234 struct vb2_queue *queue;
235
Hans Verkuil0f62fd62011-02-24 10:42:24 -0300236 struct v4l2_prio_state *prio;
237
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -0300238 /* device info */
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -0300239 char name[32];
Mauro Carvalho Chehabd9d3d172016-07-21 15:30:20 -0300240 int vfl_type;
241 int vfl_dir;
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -0300242 int minor;
Hans Verkuildd896012008-10-04 08:36:54 -0300243 u16 num;
Hans Verkuildc93a702008-12-19 21:28:27 -0300244 unsigned long flags;
brandon@ifup.org539a7552008-06-20 22:58:53 -0300245 int index;
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -0300246
Sakari Ailus1babcb42010-03-23 09:25:26 -0300247 /* V4L2 file handles */
Mauro Carvalho Chehabd9d3d172016-07-21 15:30:20 -0300248 spinlock_t fh_lock;
249 struct list_head fh_list;
Sakari Ailus1babcb42010-03-23 09:25:26 -0300250
Hans Verkuil17028cd2014-12-01 10:10:44 -0300251 int dev_debug;
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -0300252
Mauro Carvalho Chehabd9d3d172016-07-21 15:30:20 -0300253 v4l2_std_id tvnorms;
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -0300254
255 /* callbacks */
Hans Verkuildc93a702008-12-19 21:28:27 -0300256 void (*release)(struct video_device *vdev);
Hans Verkuila3998102008-07-21 02:57:38 -0300257 const struct v4l2_ioctl_ops *ioctl_ops;
Hans Verkuil48ea0be2012-05-10 05:36:00 -0300258 DECLARE_BITMAP(valid_ioctls, BASE_VIDIOC_PRIVATE);
Hans Verkuilee6869a2010-09-26 08:47:38 -0300259
Hans Verkuil152a3a72012-05-14 11:32:48 -0300260 DECLARE_BITMAP(disable_locking, BASE_VIDIOC_PRIVATE);
Hans Verkuilee6869a2010-09-26 08:47:38 -0300261 struct mutex *lock;
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -0300262};
263
Laurent Pinchart6e3ea0e2011-05-02 16:21:03 -0300264#define media_entity_to_video_device(__e) \
265 container_of(__e, struct video_device, entity)
Hans Verkuilbfa8a272008-08-23 07:48:38 -0300266/* dev to video-device */
Hans Verkuil22a04f12008-07-20 06:35:02 -0300267#define to_video_device(cd) container_of(cd, struct video_device, dev)
Linus Torvaldse90ff922007-09-13 21:09:01 -0300268
Mauro Carvalho Chehabd9d3d172016-07-21 15:30:20 -0300269/**
270 * __video_register_device - register video4linux devices
271 *
272 * @vdev: struct video_device to register
273 * @type: type of device to register
274 * @nr: which device node number is desired:
275 * (0 == /dev/video0, 1 == /dev/video1, ..., -1 == first free)
276 * @warn_if_nr_in_use: warn if the desired device node number
277 * was already in use and another number was chosen instead.
278 * @owner: module that owns the video device node
279 *
280 * The registration code assigns minor numbers and device node numbers
281 * based on the requested type and registers the new device node with
282 * the kernel.
283 *
284 * This function assumes that struct video_device was zeroed when it
285 * was allocated and does not contain any stale date.
286 *
287 * An error is returned if no free minor or device node number could be
288 * found, or if the registration of the device node failed.
289 *
290 * Returns 0 on success.
291 *
292 * Valid values for @type are:
293 *
294 * - %VFL_TYPE_GRABBER - A frame grabber
295 * - %VFL_TYPE_VBI - Vertical blank data (undecoded)
296 * - %VFL_TYPE_RADIO - A radio card
297 * - %VFL_TYPE_SUBDEV - A subdevice
298 * - %VFL_TYPE_SDR - Software Defined Radio
Nick Dyerb2fe22d2016-07-18 18:10:30 -0300299 * - %VFL_TYPE_TOUCH - A touch sensor
Mauro Carvalho Chehabd9d3d172016-07-21 15:30:20 -0300300 *
301 * .. note::
302 *
303 * This function is meant to be used only inside the V4L2 core.
304 * Drivers should use video_register_device() or
305 * video_register_device_no_warn().
306 */
Laurent Pinchart2096a5d2009-12-09 08:38:49 -0300307int __must_check __video_register_device(struct video_device *vdev, int type,
308 int nr, int warn_if_nr_in_use, struct module *owner);
309
Mauro Carvalho Chehabd9d3d172016-07-21 15:30:20 -0300310/**
311 * video_register_device - register video4linux devices
312 *
313 * @vdev: struct video_device to register
314 * @type: type of device to register
315 * @nr: which device node number is desired:
316 * (0 == /dev/video0, 1 == /dev/video1, ..., -1 == first free)
317 *
318 * Internally, it calls __video_register_device(). Please see its
319 * documentation for more details.
320 *
321 * .. note::
322 * if video_register_device fails, the release() callback of
323 * &struct video_device structure is *not* called, so the caller
324 * is responsible for freeing any data. Usually that means that
325 * you video_device_release() should be called on failure.
326 */
Laurent Pinchart2096a5d2009-12-09 08:38:49 -0300327static inline int __must_check video_register_device(struct video_device *vdev,
328 int type, int nr)
329{
330 return __video_register_device(vdev, type, nr, 1, vdev->fops->owner);
331}
Hans Verkuildc93a702008-12-19 21:28:27 -0300332
Mauro Carvalho Chehabd9d3d172016-07-21 15:30:20 -0300333/**
334 * video_register_device_no_warn - register video4linux devices
335 *
336 * @vdev: struct video_device to register
337 * @type: type of device to register
338 * @nr: which device node number is desired:
339 * (0 == /dev/video0, 1 == /dev/video1, ..., -1 == first free)
340 *
341 * This function is identical to video_register_device() except that no
342 * warning is issued if the desired device node number was already in use.
343 *
344 * Internally, it calls __video_register_device(). Please see its
345 * documentation for more details.
346 *
347 * .. note::
348 * if video_register_device fails, the release() callback of
349 * &struct video_device structure is *not* called, so the caller
350 * is responsible for freeing any data. Usually that means that
351 * you video_device_release() should be called on failure.
352 */
Laurent Pinchart2096a5d2009-12-09 08:38:49 -0300353static inline int __must_check video_register_device_no_warn(
354 struct video_device *vdev, int type, int nr)
355{
356 return __video_register_device(vdev, type, nr, 0, vdev->fops->owner);
357}
Hans Verkuil6b5270d2009-09-06 07:54:00 -0300358
Mauro Carvalho Chehabd9d3d172016-07-21 15:30:20 -0300359/**
360 * video_unregister_device - Unregister video devices.
361 *
362 * @vdev: &struct video_device to register
363 *
364 * Does nothing if vdev == NULL or if video_is_registered() returns false.
365 */
Hans Verkuildc93a702008-12-19 21:28:27 -0300366void video_unregister_device(struct video_device *vdev);
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -0300367
Mauro Carvalho Chehabd9d3d172016-07-21 15:30:20 -0300368/**
369 * video_device_alloc - helper function to alloc &struct video_device
370 *
371 * Returns NULL if %-ENOMEM or a &struct video_device on success.
372 */
Hans Verkuile138c592008-08-23 06:38:11 -0300373struct video_device * __must_check video_device_alloc(void);
Hans Verkuilbfa8a272008-08-23 07:48:38 -0300374
Mauro Carvalho Chehabd9d3d172016-07-21 15:30:20 -0300375/**
376 * video_device_release - helper function to release &struct video_device
377 *
378 * @vdev: pointer to &struct video_device
379 *
Mauro Carvalho Chehab564aaf62016-07-23 07:12:03 -0300380 * Can also be used for video_device->release\(\).
Mauro Carvalho Chehabd9d3d172016-07-21 15:30:20 -0300381 */
Hans Verkuildc93a702008-12-19 21:28:27 -0300382void video_device_release(struct video_device *vdev);
Hans Verkuilbfa8a272008-08-23 07:48:38 -0300383
Mauro Carvalho Chehabd9d3d172016-07-21 15:30:20 -0300384/**
385 * video_device_release_empty - helper function to implement the
Mauro Carvalho Chehab564aaf62016-07-23 07:12:03 -0300386 * video_device->release\(\) callback.
Mauro Carvalho Chehabd9d3d172016-07-21 15:30:20 -0300387 *
388 * @vdev: pointer to &struct video_device
389 *
390 * This release function does nothing.
391 *
392 * It should be used when the video_device is a static global struct.
393 *
394 * .. note::
395 * Having a static video_device is a dubious construction at best.
396 */
Hans Verkuildc93a702008-12-19 21:28:27 -0300397void video_device_release_empty(struct video_device *vdev);
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -0300398
Mauro Carvalho Chehabd9d3d172016-07-21 15:30:20 -0300399/**
400 * v4l2_is_known_ioctl - Checks if a given cmd is a known V4L ioctl
401 *
402 * @cmd: ioctl command
403 *
404 * returns true if cmd is a known V4L2 ioctl
405 */
Hans Verkuil8ab75e32012-05-10 02:51:31 -0300406bool v4l2_is_known_ioctl(unsigned int cmd);
407
Mauro Carvalho Chehabd9d3d172016-07-21 15:30:20 -0300408/** v4l2_disable_ioctl_locking - mark that a given command
409 * shouldn't use core locking
410 *
411 * @vdev: pointer to &struct video_device
412 * @cmd: ioctl command
413 */
414static inline void v4l2_disable_ioctl_locking(struct video_device *vdev,
415 unsigned int cmd)
Hans Verkuil8ab75e32012-05-10 02:51:31 -0300416{
417 if (_IOC_NR(cmd) < BASE_VIDIOC_PRIVATE)
Hans Verkuil152a3a72012-05-14 11:32:48 -0300418 set_bit(_IOC_NR(cmd), vdev->disable_locking);
Hans Verkuil8ab75e32012-05-10 02:51:31 -0300419}
420
Mauro Carvalho Chehabd9d3d172016-07-21 15:30:20 -0300421/**
422 * v4l2_disable_ioctl- mark that a given command isn't implemented.
423 * shouldn't use core locking
424 *
425 * @vdev: pointer to &struct video_device
426 * @cmd: ioctl command
427 *
428 * This function allows drivers to provide just one v4l2_ioctl_ops struct, but
429 * disable ioctls based on the specific card that is actually found.
430 *
431 * .. note::
432 *
433 * This must be called before video_register_device.
434 * See also the comments for determine_valid_ioctls().
435 */
436static inline void v4l2_disable_ioctl(struct video_device *vdev,
437 unsigned int cmd)
Hans Verkuil48ea0be2012-05-10 05:36:00 -0300438{
439 if (_IOC_NR(cmd) < BASE_VIDIOC_PRIVATE)
440 set_bit(_IOC_NR(cmd), vdev->valid_ioctls);
441}
442
Mauro Carvalho Chehabd9d3d172016-07-21 15:30:20 -0300443/**
444 * video_get_drvdata - gets private data from &struct video_device.
445 *
446 * @vdev: pointer to &struct video_device
447 *
448 * returns a pointer to the private data
449 */
Hans Verkuildc93a702008-12-19 21:28:27 -0300450static inline void *video_get_drvdata(struct video_device *vdev)
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -0300451{
Hans Verkuildc93a702008-12-19 21:28:27 -0300452 return dev_get_drvdata(&vdev->dev);
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -0300453}
454
Mauro Carvalho Chehabd9d3d172016-07-21 15:30:20 -0300455/**
456 * video_set_drvdata - sets private data from &struct video_device.
457 *
458 * @vdev: pointer to &struct video_device
459 * @data: private data pointer
460 */
Hans Verkuildc93a702008-12-19 21:28:27 -0300461static inline void video_set_drvdata(struct video_device *vdev, void *data)
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -0300462{
Hans Verkuildc93a702008-12-19 21:28:27 -0300463 dev_set_drvdata(&vdev->dev, data);
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -0300464}
Mauro Carvalho Chehab38ee04f2006-08-08 09:10:01 -0300465
Mauro Carvalho Chehabd9d3d172016-07-21 15:30:20 -0300466/**
467 * video_devdata - gets &struct video_device from struct file.
468 *
469 * @file: pointer to struct file
470 */
Hans Verkuilbfa8a272008-08-23 07:48:38 -0300471struct video_device *video_devdata(struct file *file);
472
Mauro Carvalho Chehabd9d3d172016-07-21 15:30:20 -0300473/**
474 * video_drvdata - gets private data from &struct video_device using the
475 * struct file.
476 *
477 * @file: pointer to struct file
478 *
479 * This is function combines both video_get_drvdata() and video_devdata()
480 * as this is used very often.
481 */
Hans Verkuilbfa8a272008-08-23 07:48:38 -0300482static inline void *video_drvdata(struct file *file)
483{
484 return video_get_drvdata(video_devdata(file));
485}
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -0300486
Mauro Carvalho Chehabd9d3d172016-07-21 15:30:20 -0300487/**
488 * video_device_node_name - returns the video device name
489 *
490 * @vdev: pointer to &struct video_device
491 *
492 * Returns the device name string
493 */
Laurent Pincharteac8ea52009-11-27 13:56:50 -0300494static inline const char *video_device_node_name(struct video_device *vdev)
495{
496 return dev_name(&vdev->dev);
497}
498
Mauro Carvalho Chehabd9d3d172016-07-21 15:30:20 -0300499/**
500 * video_is_registered - returns true if the &struct video_device is registered.
501 *
502 *
503 * @vdev: pointer to &struct video_device
504 */
Laurent Pinchart957b4aa2009-11-27 13:57:22 -0300505static inline int video_is_registered(struct video_device *vdev)
Hans Verkuildc93a702008-12-19 21:28:27 -0300506{
Laurent Pinchart957b4aa2009-11-27 13:57:22 -0300507 return test_bit(V4L2_FL_REGISTERED, &vdev->flags);
Hans Verkuildc93a702008-12-19 21:28:27 -0300508}
509
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -0300510#endif /* _V4L2_DEV_H */