blob: 33617c365accfeebb127d094e9da1da39fe691de [file] [log] [blame]
Hans Verkuil27a5e6d2008-07-20 08:43:17 -03001/*
2 * Video capture interface for Linux version 2
3 *
4 * A generic video device interface for the LINUX operating system
5 * using a set of device structures/vectors for low level operations.
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version
10 * 2 of the License, or (at your option) any later version.
11 *
Alan Coxd9b01442008-10-27 15:13:47 -030012 * Authors: Alan Cox, <alan@lxorguk.ukuu.org.uk> (version 1)
Hans Verkuil27a5e6d2008-07-20 08:43:17 -030013 * Mauro Carvalho Chehab <mchehab@infradead.org> (version 2)
14 *
15 * Fixes: 20000516 Claudio Matsuoka <claudio@conectiva.com>
16 * - Added procfs support
17 */
18
19#include <linux/module.h>
20#include <linux/types.h>
21#include <linux/kernel.h>
22#include <linux/mm.h>
23#include <linux/string.h>
24#include <linux/errno.h>
25#include <linux/init.h>
26#include <linux/kmod.h>
27#include <linux/slab.h>
Hans Verkuil27a5e6d2008-07-20 08:43:17 -030028#include <asm/uaccess.h>
Hans Verkuil27a5e6d2008-07-20 08:43:17 -030029
30#include <media/v4l2-common.h>
Hans Verkuil9bea3512008-12-23 07:35:17 -030031#include <media/v4l2-device.h>
Hans Verkuilbec43662008-12-30 06:58:20 -030032#include <media/v4l2-ioctl.h>
Hans Verkuil27a5e6d2008-07-20 08:43:17 -030033
34#define VIDEO_NUM_DEVICES 256
35#define VIDEO_NAME "video4linux"
36
37/*
38 * sysfs stuff
39 */
40
Greg Kroah-Hartman13e22372013-07-24 15:05:14 -070041static ssize_t index_show(struct device *cd,
42 struct device_attribute *attr, char *buf)
Hans Verkuil27a5e6d2008-07-20 08:43:17 -030043{
Hans Verkuildc93a702008-12-19 21:28:27 -030044 struct video_device *vdev = to_video_device(cd);
Hans Verkuilbfa8a272008-08-23 07:48:38 -030045
Hans Verkuildc93a702008-12-19 21:28:27 -030046 return sprintf(buf, "%i\n", vdev->index);
Hans Verkuil27a5e6d2008-07-20 08:43:17 -030047}
Greg Kroah-Hartman13e22372013-07-24 15:05:14 -070048static DEVICE_ATTR_RO(index);
Hans Verkuil27a5e6d2008-07-20 08:43:17 -030049
Greg Kroah-Hartman13e22372013-07-24 15:05:14 -070050static ssize_t debug_show(struct device *cd,
51 struct device_attribute *attr, char *buf)
Hans Verkuil80131fe02012-06-22 06:37:38 -030052{
53 struct video_device *vdev = to_video_device(cd);
54
55 return sprintf(buf, "%i\n", vdev->debug);
56}
57
Greg Kroah-Hartman13e22372013-07-24 15:05:14 -070058static ssize_t debug_store(struct device *cd, struct device_attribute *attr,
59 const char *buf, size_t len)
Hans Verkuil80131fe02012-06-22 06:37:38 -030060{
61 struct video_device *vdev = to_video_device(cd);
62 int res = 0;
63 u16 value;
64
65 res = kstrtou16(buf, 0, &value);
66 if (res)
67 return res;
68
69 vdev->debug = value;
70 return len;
71}
Greg Kroah-Hartman13e22372013-07-24 15:05:14 -070072static DEVICE_ATTR_RW(debug);
Hans Verkuil80131fe02012-06-22 06:37:38 -030073
Greg Kroah-Hartman13e22372013-07-24 15:05:14 -070074static ssize_t name_show(struct device *cd,
Hans Verkuil27a5e6d2008-07-20 08:43:17 -030075 struct device_attribute *attr, char *buf)
76{
Hans Verkuildc93a702008-12-19 21:28:27 -030077 struct video_device *vdev = to_video_device(cd);
Hans Verkuilbfa8a272008-08-23 07:48:38 -030078
Hans Verkuildc93a702008-12-19 21:28:27 -030079 return sprintf(buf, "%.*s\n", (int)sizeof(vdev->name), vdev->name);
Hans Verkuil27a5e6d2008-07-20 08:43:17 -030080}
Greg Kroah-Hartman13e22372013-07-24 15:05:14 -070081static DEVICE_ATTR_RO(name);
Hans Verkuil27a5e6d2008-07-20 08:43:17 -030082
Greg Kroah-Hartman13e22372013-07-24 15:05:14 -070083static struct attribute *video_device_attrs[] = {
84 &dev_attr_name.attr,
85 &dev_attr_debug.attr,
86 &dev_attr_index.attr,
87 NULL,
Hans Verkuil27a5e6d2008-07-20 08:43:17 -030088};
Greg Kroah-Hartman13e22372013-07-24 15:05:14 -070089ATTRIBUTE_GROUPS(video_device);
Hans Verkuil27a5e6d2008-07-20 08:43:17 -030090
Hans Verkuil7f8ecfa2008-08-29 17:31:35 -030091/*
92 * Active devices
93 */
94static struct video_device *video_device[VIDEO_NUM_DEVICES];
95static DEFINE_MUTEX(videodev_lock);
Hans Verkuil22e22122009-09-06 07:13:14 -030096static DECLARE_BITMAP(devnode_nums[VFL_TYPE_MAX], VIDEO_NUM_DEVICES);
Hans Verkuil7f8ecfa2008-08-29 17:31:35 -030097
Hans Verkuil5062cb72009-09-07 03:40:24 -030098/* Device node utility functions */
99
100/* Note: these utility functions all assume that vfl_type is in the range
101 [0, VFL_TYPE_MAX-1]. */
102
103#ifdef CONFIG_VIDEO_FIXED_MINOR_RANGES
104/* Return the bitmap corresponding to vfl_type. */
105static inline unsigned long *devnode_bits(int vfl_type)
106{
107 /* Any types not assigned to fixed minor ranges must be mapped to
108 one single bitmap for the purposes of finding a free node number
109 since all those unassigned types use the same minor range. */
Hans Verkuil226c0ee2010-08-06 12:48:00 -0300110 int idx = (vfl_type > VFL_TYPE_RADIO) ? VFL_TYPE_MAX - 1 : vfl_type;
Hans Verkuil5062cb72009-09-07 03:40:24 -0300111
112 return devnode_nums[idx];
113}
114#else
115/* Return the bitmap corresponding to vfl_type. */
116static inline unsigned long *devnode_bits(int vfl_type)
117{
118 return devnode_nums[vfl_type];
119}
120#endif
121
122/* Mark device node number vdev->num as used */
123static inline void devnode_set(struct video_device *vdev)
124{
125 set_bit(vdev->num, devnode_bits(vdev->vfl_type));
126}
127
128/* Mark device node number vdev->num as unused */
129static inline void devnode_clear(struct video_device *vdev)
130{
131 clear_bit(vdev->num, devnode_bits(vdev->vfl_type));
132}
133
134/* Try to find a free device node number in the range [from, to> */
135static inline int devnode_find(struct video_device *vdev, int from, int to)
136{
137 return find_next_zero_bit(devnode_bits(vdev->vfl_type), to, from);
138}
139
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300140struct video_device *video_device_alloc(void)
141{
Hans Verkuilbfa8a272008-08-23 07:48:38 -0300142 return kzalloc(sizeof(struct video_device), GFP_KERNEL);
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300143}
144EXPORT_SYMBOL(video_device_alloc);
145
Hans Verkuildc93a702008-12-19 21:28:27 -0300146void video_device_release(struct video_device *vdev)
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300147{
Hans Verkuildc93a702008-12-19 21:28:27 -0300148 kfree(vdev);
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300149}
150EXPORT_SYMBOL(video_device_release);
151
Hans Verkuildc93a702008-12-19 21:28:27 -0300152void video_device_release_empty(struct video_device *vdev)
Hans Verkuilf9e86b52008-08-23 05:47:41 -0300153{
154 /* Do nothing */
155 /* Only valid when the video_device struct is a static. */
156}
157EXPORT_SYMBOL(video_device_release_empty);
158
Hans Verkuildc93a702008-12-19 21:28:27 -0300159static inline void video_get(struct video_device *vdev)
Hans Verkuil7f8ecfa2008-08-29 17:31:35 -0300160{
Hans Verkuildc93a702008-12-19 21:28:27 -0300161 get_device(&vdev->dev);
162}
163
164static inline void video_put(struct video_device *vdev)
165{
166 put_device(&vdev->dev);
167}
168
169/* Called when the last user of the video device exits. */
170static void v4l2_device_release(struct device *cd)
171{
172 struct video_device *vdev = to_video_device(cd);
Hans Verkuilbedf8bc2011-03-12 06:37:19 -0300173 struct v4l2_device *v4l2_dev = vdev->v4l2_dev;
Hans Verkuil7f8ecfa2008-08-29 17:31:35 -0300174
175 mutex_lock(&videodev_lock);
Guennadi Liakhovetski1fc2b5f2011-12-06 05:33:03 -0300176 if (WARN_ON(video_device[vdev->minor] != vdev)) {
Hans Verkuildc93a702008-12-19 21:28:27 -0300177 /* should not happen */
Guennadi Liakhovetski1fc2b5f2011-12-06 05:33:03 -0300178 mutex_unlock(&videodev_lock);
Hans Verkuil6ea9a182008-08-30 09:40:47 -0300179 return;
180 }
Hans Verkuil7f8ecfa2008-08-29 17:31:35 -0300181
182 /* Free up this device for reuse */
Hans Verkuildc93a702008-12-19 21:28:27 -0300183 video_device[vdev->minor] = NULL;
184
185 /* Delete the cdev on this minor as well */
186 cdev_del(vdev->cdev);
187 /* Just in case some driver tries to access this from
188 the release() callback. */
189 vdev->cdev = NULL;
190
Hans Verkuil22e22122009-09-06 07:13:14 -0300191 /* Mark device node number as free */
Hans Verkuil5062cb72009-09-07 03:40:24 -0300192 devnode_clear(vdev);
Hans Verkuildc93a702008-12-19 21:28:27 -0300193
Hans Verkuil7f8ecfa2008-08-29 17:31:35 -0300194 mutex_unlock(&videodev_lock);
195
Laurent Pinchartc064b8e2011-06-15 05:20:34 -0300196#if defined(CONFIG_MEDIA_CONTROLLER)
Guennadi Liakhovetski1fc2b5f2011-12-06 05:33:03 -0300197 if (v4l2_dev && v4l2_dev->mdev &&
Laurent Pinchartc064b8e2011-06-15 05:20:34 -0300198 vdev->vfl_type != VFL_TYPE_SUBDEV)
199 media_device_unregister_entity(&vdev->entity);
200#endif
201
Hans Verkuil8280b662011-09-06 10:23:18 -0300202 /* Do not call v4l2_device_put if there is no release callback set.
203 * Drivers that have no v4l2_device release callback might free the
204 * v4l2_dev instance in the video_device release callback below, so we
205 * must perform this check here.
206 *
207 * TODO: In the long run all drivers that use v4l2_device should use the
208 * v4l2_device release callback. This check will then be unnecessary.
209 */
Antonio Ospitee58fced2011-10-12 17:59:26 -0300210 if (v4l2_dev && v4l2_dev->release == NULL)
Hans Verkuil8280b662011-09-06 10:23:18 -0300211 v4l2_dev = NULL;
212
Hans Verkuil7f8ecfa2008-08-29 17:31:35 -0300213 /* Release video_device and perform other
214 cleanups as needed. */
Hans Verkuildc93a702008-12-19 21:28:27 -0300215 vdev->release(vdev);
Hans Verkuilbedf8bc2011-03-12 06:37:19 -0300216
217 /* Decrease v4l2_device refcount */
218 if (v4l2_dev)
219 v4l2_device_put(v4l2_dev);
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300220}
221
222static struct class video_class = {
223 .name = VIDEO_NAME,
Greg Kroah-Hartman13e22372013-07-24 15:05:14 -0700224 .dev_groups = video_device_groups,
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300225};
226
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300227struct video_device *video_devdata(struct file *file)
228{
Al Viro496ad9a2013-01-23 17:07:38 -0500229 return video_device[iminor(file_inode(file))];
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300230}
231EXPORT_SYMBOL(video_devdata);
232
Hans Verkuil02265492010-12-29 10:05:02 -0300233
234/* Priority handling */
235
236static inline bool prio_is_valid(enum v4l2_priority prio)
237{
238 return prio == V4L2_PRIORITY_BACKGROUND ||
239 prio == V4L2_PRIORITY_INTERACTIVE ||
240 prio == V4L2_PRIORITY_RECORD;
241}
242
243void v4l2_prio_init(struct v4l2_prio_state *global)
244{
245 memset(global, 0, sizeof(*global));
246}
247EXPORT_SYMBOL(v4l2_prio_init);
248
249int v4l2_prio_change(struct v4l2_prio_state *global, enum v4l2_priority *local,
250 enum v4l2_priority new)
251{
252 if (!prio_is_valid(new))
253 return -EINVAL;
254 if (*local == new)
255 return 0;
256
257 atomic_inc(&global->prios[new]);
258 if (prio_is_valid(*local))
259 atomic_dec(&global->prios[*local]);
260 *local = new;
261 return 0;
262}
263EXPORT_SYMBOL(v4l2_prio_change);
264
265void v4l2_prio_open(struct v4l2_prio_state *global, enum v4l2_priority *local)
266{
267 v4l2_prio_change(global, local, V4L2_PRIORITY_DEFAULT);
268}
269EXPORT_SYMBOL(v4l2_prio_open);
270
271void v4l2_prio_close(struct v4l2_prio_state *global, enum v4l2_priority local)
272{
273 if (prio_is_valid(local))
274 atomic_dec(&global->prios[local]);
275}
276EXPORT_SYMBOL(v4l2_prio_close);
277
278enum v4l2_priority v4l2_prio_max(struct v4l2_prio_state *global)
279{
280 if (atomic_read(&global->prios[V4L2_PRIORITY_RECORD]) > 0)
281 return V4L2_PRIORITY_RECORD;
282 if (atomic_read(&global->prios[V4L2_PRIORITY_INTERACTIVE]) > 0)
283 return V4L2_PRIORITY_INTERACTIVE;
284 if (atomic_read(&global->prios[V4L2_PRIORITY_BACKGROUND]) > 0)
285 return V4L2_PRIORITY_BACKGROUND;
286 return V4L2_PRIORITY_UNSET;
287}
288EXPORT_SYMBOL(v4l2_prio_max);
289
290int v4l2_prio_check(struct v4l2_prio_state *global, enum v4l2_priority local)
291{
292 return (local < v4l2_prio_max(global)) ? -EBUSY : 0;
293}
294EXPORT_SYMBOL(v4l2_prio_check);
295
296
Hans Verkuildc93a702008-12-19 21:28:27 -0300297static ssize_t v4l2_read(struct file *filp, char __user *buf,
298 size_t sz, loff_t *off)
299{
300 struct video_device *vdev = video_devdata(filp);
Hans Verkuil28778422010-11-26 06:43:51 -0300301 int ret = -ENODEV;
Hans Verkuildc93a702008-12-19 21:28:27 -0300302
303 if (!vdev->fops->read)
304 return -EINVAL;
Hans Verkuilee6869a2010-09-26 08:47:38 -0300305 if (video_is_registered(vdev))
306 ret = vdev->fops->read(filp, buf, sz, off);
Hans Verkuilcc4b7e72012-06-09 12:13:29 -0300307 if (vdev->debug)
308 printk(KERN_DEBUG "%s: read: %zd (%d)\n",
309 video_device_node_name(vdev), sz, ret);
Hans Verkuilee6869a2010-09-26 08:47:38 -0300310 return ret;
Hans Verkuildc93a702008-12-19 21:28:27 -0300311}
312
313static ssize_t v4l2_write(struct file *filp, const char __user *buf,
314 size_t sz, loff_t *off)
315{
316 struct video_device *vdev = video_devdata(filp);
Hans Verkuil28778422010-11-26 06:43:51 -0300317 int ret = -ENODEV;
Hans Verkuildc93a702008-12-19 21:28:27 -0300318
319 if (!vdev->fops->write)
320 return -EINVAL;
Hans Verkuilee6869a2010-09-26 08:47:38 -0300321 if (video_is_registered(vdev))
322 ret = vdev->fops->write(filp, buf, sz, off);
Hans Verkuilcc4b7e72012-06-09 12:13:29 -0300323 if (vdev->debug)
324 printk(KERN_DEBUG "%s: write: %zd (%d)\n",
325 video_device_node_name(vdev), sz, ret);
Hans Verkuilee6869a2010-09-26 08:47:38 -0300326 return ret;
Hans Verkuildc93a702008-12-19 21:28:27 -0300327}
328
329static unsigned int v4l2_poll(struct file *filp, struct poll_table_struct *poll)
330{
331 struct video_device *vdev = video_devdata(filp);
Hans Verkuilcf533732012-07-31 04:02:25 -0300332 unsigned int res = POLLERR | POLLHUP;
Hans Verkuildc93a702008-12-19 21:28:27 -0300333
Hans Verkuilee6869a2010-09-26 08:47:38 -0300334 if (!vdev->fops->poll)
Hans Verkuil28778422010-11-26 06:43:51 -0300335 return DEFAULT_POLLMASK;
Hans Verkuilee6869a2010-09-26 08:47:38 -0300336 if (video_is_registered(vdev))
Hans Verkuilcf533732012-07-31 04:02:25 -0300337 res = vdev->fops->poll(filp, poll);
Hans Verkuil57fc8eb2014-03-03 06:47:38 -0300338 if (vdev->debug > 2)
Hans Verkuilcc4b7e72012-06-09 12:13:29 -0300339 printk(KERN_DEBUG "%s: poll: %08x\n",
Hans Verkuilcf533732012-07-31 04:02:25 -0300340 video_device_node_name(vdev), res);
341 return res;
Hans Verkuildc93a702008-12-19 21:28:27 -0300342}
343
Arnd Bergmann86a5ef72010-07-04 00:15:09 +0200344static long v4l2_ioctl(struct file *filp, unsigned int cmd, unsigned long arg)
Hans Verkuildc93a702008-12-19 21:28:27 -0300345{
346 struct video_device *vdev = video_devdata(filp);
Mauro Carvalho Chehab72420632010-10-09 16:43:40 -0300347 int ret = -ENODEV;
Hans Verkuildc93a702008-12-19 21:28:27 -0300348
Arnd Bergmann86a5ef72010-07-04 00:15:09 +0200349 if (vdev->fops->unlocked_ioctl) {
Hans Verkuil5a5adf62012-06-22 07:29:35 -0300350 struct mutex *lock = v4l2_ioctl_get_lock(vdev, cmd);
Hans Verkuil8ab75e32012-05-10 02:51:31 -0300351
Hans Verkuil5a5adf62012-06-22 07:29:35 -0300352 if (lock && mutex_lock_interruptible(lock))
353 return -ERESTARTSYS;
Mauro Carvalho Chehab72420632010-10-09 16:43:40 -0300354 if (video_is_registered(vdev))
355 ret = vdev->fops->unlocked_ioctl(filp, cmd, arg);
Hans Verkuil5a5adf62012-06-22 07:29:35 -0300356 if (lock)
357 mutex_unlock(lock);
Arnd Bergmann86a5ef72010-07-04 00:15:09 +0200358 } else if (vdev->fops->ioctl) {
Hans Verkuil879aa242010-11-26 06:47:28 -0300359 /* This code path is a replacement for the BKL. It is a major
360 * hack but it will have to do for those drivers that are not
361 * yet converted to use unlocked_ioctl.
362 *
363 * There are two options: if the driver implements struct
364 * v4l2_device, then the lock defined there is used to
365 * serialize the ioctls. Otherwise the v4l2 core lock defined
366 * below is used. This lock is really bad since it serializes
367 * completely independent devices.
368 *
369 * Both variants suffer from the same problem: if the driver
370 * sleeps, then it blocks all ioctls since the lock is still
371 * held. This is very common for VIDIOC_DQBUF since that
372 * normally waits for a frame to arrive. As a result any other
373 * ioctl calls will proceed very, very slowly since each call
374 * will have to wait for the VIDIOC_QBUF to finish. Things that
375 * should take 0.01s may now take 10-20 seconds.
376 *
377 * The workaround is to *not* take the lock for VIDIOC_DQBUF.
378 * This actually works OK for videobuf-based drivers, since
379 * videobuf will take its own internal lock.
380 */
Arnd Bergmann0edf2e52010-10-27 09:30:32 -0300381 static DEFINE_MUTEX(v4l2_ioctl_mutex);
Hans Verkuil879aa242010-11-26 06:47:28 -0300382 struct mutex *m = vdev->v4l2_dev ?
383 &vdev->v4l2_dev->ioctl_lock : &v4l2_ioctl_mutex;
Arnd Bergmann0edf2e52010-10-27 09:30:32 -0300384
Hans Verkuil879aa242010-11-26 06:47:28 -0300385 if (cmd != VIDIOC_DQBUF && mutex_lock_interruptible(m))
386 return -ERESTARTSYS;
Mauro Carvalho Chehab72420632010-10-09 16:43:40 -0300387 if (video_is_registered(vdev))
388 ret = vdev->fops->ioctl(filp, cmd, arg);
Hans Verkuil879aa242010-11-26 06:47:28 -0300389 if (cmd != VIDIOC_DQBUF)
390 mutex_unlock(m);
Arnd Bergmann86a5ef72010-07-04 00:15:09 +0200391 } else
392 ret = -ENOTTY;
Hans Verkuildc93a702008-12-19 21:28:27 -0300393
Arnd Bergmann86a5ef72010-07-04 00:15:09 +0200394 return ret;
Hans Verkuildc93a702008-12-19 21:28:27 -0300395}
396
Bob Liuecc65172011-05-06 05:20:09 -0300397#ifdef CONFIG_MMU
398#define v4l2_get_unmapped_area NULL
399#else
400static unsigned long v4l2_get_unmapped_area(struct file *filp,
401 unsigned long addr, unsigned long len, unsigned long pgoff,
402 unsigned long flags)
403{
404 struct video_device *vdev = video_devdata(filp);
Hans Verkuilcc4b7e72012-06-09 12:13:29 -0300405 int ret;
Bob Liuecc65172011-05-06 05:20:09 -0300406
407 if (!vdev->fops->get_unmapped_area)
408 return -ENOSYS;
409 if (!video_is_registered(vdev))
410 return -ENODEV;
Hans Verkuilcc4b7e72012-06-09 12:13:29 -0300411 ret = vdev->fops->get_unmapped_area(filp, addr, len, pgoff, flags);
412 if (vdev->debug)
413 printk(KERN_DEBUG "%s: get_unmapped_area (%d)\n",
414 video_device_node_name(vdev), ret);
415 return ret;
Bob Liuecc65172011-05-06 05:20:09 -0300416}
417#endif
418
Hans Verkuildc93a702008-12-19 21:28:27 -0300419static int v4l2_mmap(struct file *filp, struct vm_area_struct *vm)
420{
421 struct video_device *vdev = video_devdata(filp);
Hans Verkuilee6869a2010-09-26 08:47:38 -0300422 int ret = -ENODEV;
Hans Verkuildc93a702008-12-19 21:28:27 -0300423
Hans Verkuilee6869a2010-09-26 08:47:38 -0300424 if (!vdev->fops->mmap)
Hans Verkuilcf533732012-07-31 04:02:25 -0300425 return -ENODEV;
Hans Verkuilee6869a2010-09-26 08:47:38 -0300426 if (video_is_registered(vdev))
427 ret = vdev->fops->mmap(filp, vm);
Hans Verkuilcc4b7e72012-06-09 12:13:29 -0300428 if (vdev->debug)
429 printk(KERN_DEBUG "%s: mmap (%d)\n",
430 video_device_node_name(vdev), ret);
Hans Verkuilee6869a2010-09-26 08:47:38 -0300431 return ret;
Hans Verkuildc93a702008-12-19 21:28:27 -0300432}
433
434/* Override for the open function */
435static int v4l2_open(struct inode *inode, struct file *filp)
436{
437 struct video_device *vdev;
Hans Verkuil65d9ff92009-03-29 20:19:38 -0300438 int ret = 0;
Hans Verkuildc93a702008-12-19 21:28:27 -0300439
440 /* Check if the video device is available */
441 mutex_lock(&videodev_lock);
442 vdev = video_devdata(filp);
Hans Verkuilee6869a2010-09-26 08:47:38 -0300443 /* return ENODEV if the video device has already been removed. */
Hans Verkuilca9afe62010-11-26 06:54:53 -0300444 if (vdev == NULL || !video_is_registered(vdev)) {
Hans Verkuildc93a702008-12-19 21:28:27 -0300445 mutex_unlock(&videodev_lock);
446 return -ENODEV;
447 }
448 /* and increase the device refcount */
449 video_get(vdev);
450 mutex_unlock(&videodev_lock);
Hans Verkuilee6869a2010-09-26 08:47:38 -0300451 if (vdev->fops->open) {
Hans Verkuilee6869a2010-09-26 08:47:38 -0300452 if (video_is_registered(vdev))
453 ret = vdev->fops->open(filp);
454 else
455 ret = -ENODEV;
Hans Verkuilee6869a2010-09-26 08:47:38 -0300456 }
Hans Verkuil65d9ff92009-03-29 20:19:38 -0300457
Hans Verkuilcc4b7e72012-06-09 12:13:29 -0300458 if (vdev->debug)
459 printk(KERN_DEBUG "%s: open (%d)\n",
460 video_device_node_name(vdev), ret);
Ezequiel García8f695d32012-07-26 07:59:04 -0300461 /* decrease the refcount in case of an error */
462 if (ret)
463 video_put(vdev);
Hans Verkuildc93a702008-12-19 21:28:27 -0300464 return ret;
465}
466
467/* Override for the release function */
468static int v4l2_release(struct inode *inode, struct file *filp)
469{
470 struct video_device *vdev = video_devdata(filp);
Hans Verkuil65d9ff92009-03-29 20:19:38 -0300471 int ret = 0;
472
Hans Verkuilcf533732012-07-31 04:02:25 -0300473 if (vdev->fops->release)
474 ret = vdev->fops->release(filp);
Hans Verkuilcc4b7e72012-06-09 12:13:29 -0300475 if (vdev->debug)
476 printk(KERN_DEBUG "%s: release\n",
477 video_device_node_name(vdev));
Hans Verkuilcf533732012-07-31 04:02:25 -0300478
Ezequiel García8f695d32012-07-26 07:59:04 -0300479 /* decrease the refcount unconditionally since the release()
480 return value is ignored. */
481 video_put(vdev);
Hans Verkuildc93a702008-12-19 21:28:27 -0300482 return ret;
483}
484
Hans Verkuildc93a702008-12-19 21:28:27 -0300485static const struct file_operations v4l2_fops = {
486 .owner = THIS_MODULE,
487 .read = v4l2_read,
488 .write = v4l2_write,
489 .open = v4l2_open,
Bob Liuecc65172011-05-06 05:20:09 -0300490 .get_unmapped_area = v4l2_get_unmapped_area,
Hans Verkuildc93a702008-12-19 21:28:27 -0300491 .mmap = v4l2_mmap,
Arnd Bergmann86a5ef72010-07-04 00:15:09 +0200492 .unlocked_ioctl = v4l2_ioctl,
Hans Verkuildc93a702008-12-19 21:28:27 -0300493#ifdef CONFIG_COMPAT
Hans Verkuil9bb7cde2008-12-30 06:42:40 -0300494 .compat_ioctl = v4l2_compat_ioctl32,
Hans Verkuildc93a702008-12-19 21:28:27 -0300495#endif
496 .release = v4l2_release,
497 .poll = v4l2_poll,
498 .llseek = no_llseek,
499};
500
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300501/**
Hans Verkuil1c1d86a2013-06-12 11:15:12 -0300502 * get_index - assign stream index number based on v4l2_dev
503 * @vdev: video_device to assign index number to, vdev->v4l2_dev should be assigned
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300504 *
Hans Verkuildc93a702008-12-19 21:28:27 -0300505 * Note that when this is called the new device has not yet been registered
Hans Verkuil7ae0cd92009-06-19 11:32:56 -0300506 * in the video_device array, but it was able to obtain a minor number.
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300507 *
Hans Verkuil7ae0cd92009-06-19 11:32:56 -0300508 * This means that we can always obtain a free stream index number since
509 * the worst case scenario is that there are VIDEO_NUM_DEVICES - 1 slots in
510 * use of the video_device array.
511 *
512 * Returns a free index number.
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300513 */
Hans Verkuil7ae0cd92009-06-19 11:32:56 -0300514static int get_index(struct video_device *vdev)
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300515{
Hans Verkuil775a05d2009-02-14 11:31:01 -0300516 /* This can be static since this function is called with the global
517 videodev_lock held. */
518 static DECLARE_BITMAP(used, VIDEO_NUM_DEVICES);
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300519 int i;
520
Hans Verkuil775a05d2009-02-14 11:31:01 -0300521 bitmap_zero(used, VIDEO_NUM_DEVICES);
Hans Verkuil806e5b72008-12-19 09:10:56 -0300522
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300523 for (i = 0; i < VIDEO_NUM_DEVICES; i++) {
524 if (video_device[i] != NULL &&
Hans Verkuil1c1d86a2013-06-12 11:15:12 -0300525 video_device[i]->v4l2_dev == vdev->v4l2_dev) {
Hans Verkuil775a05d2009-02-14 11:31:01 -0300526 set_bit(video_device[i]->index, used);
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300527 }
528 }
529
Hans Verkuil7ae0cd92009-06-19 11:32:56 -0300530 return find_first_zero_bit(used, VIDEO_NUM_DEVICES);
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300531}
532
Hans Verkuil48ea0be2012-05-10 05:36:00 -0300533#define SET_VALID_IOCTL(ops, cmd, op) \
534 if (ops->op) \
535 set_bit(_IOC_NR(cmd), valid_ioctls)
536
537/* This determines which ioctls are actually implemented in the driver.
538 It's a one-time thing which simplifies video_ioctl2 as it can just do
539 a bit test.
540
541 Note that drivers can override this by setting bits to 1 in
542 vdev->valid_ioctls. If an ioctl is marked as 1 when this function is
543 called, then that ioctl will actually be marked as unimplemented.
544
545 It does that by first setting up the local valid_ioctls bitmap, and
546 at the end do a:
547
548 vdev->valid_ioctls = valid_ioctls & ~(vdev->valid_ioctls)
549 */
550static void determine_valid_ioctls(struct video_device *vdev)
551{
552 DECLARE_BITMAP(valid_ioctls, BASE_VIDIOC_PRIVATE);
553 const struct v4l2_ioctl_ops *ops = vdev->ioctl_ops;
Hans Verkuil4b202592012-09-14 07:03:35 -0300554 bool is_vid = vdev->vfl_type == VFL_TYPE_GRABBER;
555 bool is_vbi = vdev->vfl_type == VFL_TYPE_VBI;
Hans Verkuilbfffd742013-12-20 02:32:21 -0300556 bool is_radio = vdev->vfl_type == VFL_TYPE_RADIO;
Antti Palosaari582c52c2013-12-12 13:44:14 -0300557 bool is_sdr = vdev->vfl_type == VFL_TYPE_SDR;
Hans Verkuil4b202592012-09-14 07:03:35 -0300558 bool is_rx = vdev->vfl_dir != VFL_DIR_TX;
559 bool is_tx = vdev->vfl_dir != VFL_DIR_RX;
Hans Verkuil48ea0be2012-05-10 05:36:00 -0300560
561 bitmap_zero(valid_ioctls, BASE_VIDIOC_PRIVATE);
562
Hans Verkuil90d0fc42012-09-14 07:06:08 -0300563 /* vfl_type and vfl_dir independent ioctls */
564
Hans Verkuil48ea0be2012-05-10 05:36:00 -0300565 SET_VALID_IOCTL(ops, VIDIOC_QUERYCAP, vidioc_querycap);
Ramakrishnan Muthukrishnanb7284bb2014-06-19 14:22:57 -0300566 if (ops->vidioc_g_priority)
Hans Verkuil48ea0be2012-05-10 05:36:00 -0300567 set_bit(_IOC_NR(VIDIOC_G_PRIORITY), valid_ioctls);
Ramakrishnan Muthukrishnanb7284bb2014-06-19 14:22:57 -0300568 if (ops->vidioc_s_priority)
Hans Verkuil48ea0be2012-05-10 05:36:00 -0300569 set_bit(_IOC_NR(VIDIOC_S_PRIORITY), valid_ioctls);
Hans Verkuil90d0fc42012-09-14 07:06:08 -0300570 /* Note: the control handler can also be passed through the filehandle,
571 and that can't be tested here. If the bit for these control ioctls
572 is set, then the ioctl is valid. But if it is 0, then it can still
573 be valid if the filehandle passed the control handler. */
574 if (vdev->ctrl_handler || ops->vidioc_queryctrl)
575 set_bit(_IOC_NR(VIDIOC_QUERYCTRL), valid_ioctls);
Hans Verkuile6bee362014-06-10 04:22:06 -0300576 if (vdev->ctrl_handler || ops->vidioc_query_ext_ctrl)
577 set_bit(_IOC_NR(VIDIOC_QUERY_EXT_CTRL), valid_ioctls);
Hans Verkuil90d0fc42012-09-14 07:06:08 -0300578 if (vdev->ctrl_handler || ops->vidioc_g_ctrl || ops->vidioc_g_ext_ctrls)
579 set_bit(_IOC_NR(VIDIOC_G_CTRL), valid_ioctls);
580 if (vdev->ctrl_handler || ops->vidioc_s_ctrl || ops->vidioc_s_ext_ctrls)
581 set_bit(_IOC_NR(VIDIOC_S_CTRL), valid_ioctls);
582 if (vdev->ctrl_handler || ops->vidioc_g_ext_ctrls)
583 set_bit(_IOC_NR(VIDIOC_G_EXT_CTRLS), valid_ioctls);
584 if (vdev->ctrl_handler || ops->vidioc_s_ext_ctrls)
585 set_bit(_IOC_NR(VIDIOC_S_EXT_CTRLS), valid_ioctls);
586 if (vdev->ctrl_handler || ops->vidioc_try_ext_ctrls)
587 set_bit(_IOC_NR(VIDIOC_TRY_EXT_CTRLS), valid_ioctls);
588 if (vdev->ctrl_handler || ops->vidioc_querymenu)
589 set_bit(_IOC_NR(VIDIOC_QUERYMENU), valid_ioctls);
590 SET_VALID_IOCTL(ops, VIDIOC_G_FREQUENCY, vidioc_g_frequency);
591 SET_VALID_IOCTL(ops, VIDIOC_S_FREQUENCY, vidioc_s_frequency);
592 SET_VALID_IOCTL(ops, VIDIOC_LOG_STATUS, vidioc_log_status);
593#ifdef CONFIG_VIDEO_ADV_DEBUG
Hans Verkuil96b03d22013-04-06 06:16:58 -0300594 set_bit(_IOC_NR(VIDIOC_DBG_G_CHIP_INFO), valid_ioctls);
Hans Verkuil79b0c642013-03-18 12:16:34 -0300595 set_bit(_IOC_NR(VIDIOC_DBG_G_REGISTER), valid_ioctls);
596 set_bit(_IOC_NR(VIDIOC_DBG_S_REGISTER), valid_ioctls);
Hans Verkuil90d0fc42012-09-14 07:06:08 -0300597#endif
Hans Verkuil90d0fc42012-09-14 07:06:08 -0300598 /* yes, really vidioc_subscribe_event */
599 SET_VALID_IOCTL(ops, VIDIOC_DQEVENT, vidioc_subscribe_event);
600 SET_VALID_IOCTL(ops, VIDIOC_SUBSCRIBE_EVENT, vidioc_subscribe_event);
601 SET_VALID_IOCTL(ops, VIDIOC_UNSUBSCRIBE_EVENT, vidioc_unsubscribe_event);
Hans Verkuil90d0fc42012-09-14 07:06:08 -0300602 if (ops->vidioc_enum_freq_bands || ops->vidioc_g_tuner || ops->vidioc_g_modulator)
603 set_bit(_IOC_NR(VIDIOC_ENUM_FREQ_BANDS), valid_ioctls);
604
Hans Verkuil4b202592012-09-14 07:03:35 -0300605 if (is_vid) {
Hans Verkuil90d0fc42012-09-14 07:06:08 -0300606 /* video specific ioctls */
Hans Verkuil4b202592012-09-14 07:03:35 -0300607 if ((is_rx && (ops->vidioc_enum_fmt_vid_cap ||
608 ops->vidioc_enum_fmt_vid_cap_mplane ||
609 ops->vidioc_enum_fmt_vid_overlay)) ||
610 (is_tx && (ops->vidioc_enum_fmt_vid_out ||
611 ops->vidioc_enum_fmt_vid_out_mplane)))
612 set_bit(_IOC_NR(VIDIOC_ENUM_FMT), valid_ioctls);
613 if ((is_rx && (ops->vidioc_g_fmt_vid_cap ||
614 ops->vidioc_g_fmt_vid_cap_mplane ||
615 ops->vidioc_g_fmt_vid_overlay)) ||
616 (is_tx && (ops->vidioc_g_fmt_vid_out ||
617 ops->vidioc_g_fmt_vid_out_mplane ||
618 ops->vidioc_g_fmt_vid_out_overlay)))
619 set_bit(_IOC_NR(VIDIOC_G_FMT), valid_ioctls);
620 if ((is_rx && (ops->vidioc_s_fmt_vid_cap ||
621 ops->vidioc_s_fmt_vid_cap_mplane ||
622 ops->vidioc_s_fmt_vid_overlay)) ||
623 (is_tx && (ops->vidioc_s_fmt_vid_out ||
624 ops->vidioc_s_fmt_vid_out_mplane ||
625 ops->vidioc_s_fmt_vid_out_overlay)))
626 set_bit(_IOC_NR(VIDIOC_S_FMT), valid_ioctls);
627 if ((is_rx && (ops->vidioc_try_fmt_vid_cap ||
628 ops->vidioc_try_fmt_vid_cap_mplane ||
629 ops->vidioc_try_fmt_vid_overlay)) ||
630 (is_tx && (ops->vidioc_try_fmt_vid_out ||
631 ops->vidioc_try_fmt_vid_out_mplane ||
632 ops->vidioc_try_fmt_vid_out_overlay)))
633 set_bit(_IOC_NR(VIDIOC_TRY_FMT), valid_ioctls);
Hans Verkuil90d0fc42012-09-14 07:06:08 -0300634 SET_VALID_IOCTL(ops, VIDIOC_OVERLAY, vidioc_overlay);
635 SET_VALID_IOCTL(ops, VIDIOC_G_FBUF, vidioc_g_fbuf);
636 SET_VALID_IOCTL(ops, VIDIOC_S_FBUF, vidioc_s_fbuf);
637 SET_VALID_IOCTL(ops, VIDIOC_G_JPEGCOMP, vidioc_g_jpegcomp);
638 SET_VALID_IOCTL(ops, VIDIOC_S_JPEGCOMP, vidioc_s_jpegcomp);
639 SET_VALID_IOCTL(ops, VIDIOC_G_ENC_INDEX, vidioc_g_enc_index);
640 SET_VALID_IOCTL(ops, VIDIOC_ENCODER_CMD, vidioc_encoder_cmd);
641 SET_VALID_IOCTL(ops, VIDIOC_TRY_ENCODER_CMD, vidioc_try_encoder_cmd);
642 SET_VALID_IOCTL(ops, VIDIOC_DECODER_CMD, vidioc_decoder_cmd);
643 SET_VALID_IOCTL(ops, VIDIOC_TRY_DECODER_CMD, vidioc_try_decoder_cmd);
644 SET_VALID_IOCTL(ops, VIDIOC_ENUM_FRAMESIZES, vidioc_enum_framesizes);
645 SET_VALID_IOCTL(ops, VIDIOC_ENUM_FRAMEINTERVALS, vidioc_enum_frameintervals);
Hans Verkuil4b202592012-09-14 07:03:35 -0300646 } else if (is_vbi) {
Hans Verkuil90d0fc42012-09-14 07:06:08 -0300647 /* vbi specific ioctls */
Hans Verkuil4b202592012-09-14 07:03:35 -0300648 if ((is_rx && (ops->vidioc_g_fmt_vbi_cap ||
649 ops->vidioc_g_fmt_sliced_vbi_cap)) ||
650 (is_tx && (ops->vidioc_g_fmt_vbi_out ||
651 ops->vidioc_g_fmt_sliced_vbi_out)))
652 set_bit(_IOC_NR(VIDIOC_G_FMT), valid_ioctls);
653 if ((is_rx && (ops->vidioc_s_fmt_vbi_cap ||
654 ops->vidioc_s_fmt_sliced_vbi_cap)) ||
655 (is_tx && (ops->vidioc_s_fmt_vbi_out ||
656 ops->vidioc_s_fmt_sliced_vbi_out)))
657 set_bit(_IOC_NR(VIDIOC_S_FMT), valid_ioctls);
658 if ((is_rx && (ops->vidioc_try_fmt_vbi_cap ||
659 ops->vidioc_try_fmt_sliced_vbi_cap)) ||
660 (is_tx && (ops->vidioc_try_fmt_vbi_out ||
661 ops->vidioc_try_fmt_sliced_vbi_out)))
662 set_bit(_IOC_NR(VIDIOC_TRY_FMT), valid_ioctls);
Hans Verkuil90d0fc42012-09-14 07:06:08 -0300663 SET_VALID_IOCTL(ops, VIDIOC_G_SLICED_VBI_CAP, vidioc_g_sliced_vbi_cap);
Antti Palosaari582c52c2013-12-12 13:44:14 -0300664 } else if (is_sdr) {
665 /* SDR specific ioctls */
666 if (ops->vidioc_enum_fmt_sdr_cap)
667 set_bit(_IOC_NR(VIDIOC_ENUM_FMT), valid_ioctls);
668 if (ops->vidioc_g_fmt_sdr_cap)
669 set_bit(_IOC_NR(VIDIOC_G_FMT), valid_ioctls);
670 if (ops->vidioc_s_fmt_sdr_cap)
671 set_bit(_IOC_NR(VIDIOC_S_FMT), valid_ioctls);
672 if (ops->vidioc_try_fmt_sdr_cap)
673 set_bit(_IOC_NR(VIDIOC_TRY_FMT), valid_ioctls);
Hans Verkuil4b202592012-09-14 07:03:35 -0300674 }
Antti Palosaari582c52c2013-12-12 13:44:14 -0300675
676 if (is_vid || is_vbi || is_sdr) {
677 /* ioctls valid for video, vbi or sdr */
Frank Schaefer5815d0c2013-01-22 15:51:55 -0300678 SET_VALID_IOCTL(ops, VIDIOC_REQBUFS, vidioc_reqbufs);
679 SET_VALID_IOCTL(ops, VIDIOC_QUERYBUF, vidioc_querybuf);
680 SET_VALID_IOCTL(ops, VIDIOC_QBUF, vidioc_qbuf);
681 SET_VALID_IOCTL(ops, VIDIOC_EXPBUF, vidioc_expbuf);
682 SET_VALID_IOCTL(ops, VIDIOC_DQBUF, vidioc_dqbuf);
683 SET_VALID_IOCTL(ops, VIDIOC_CREATE_BUFS, vidioc_create_bufs);
684 SET_VALID_IOCTL(ops, VIDIOC_PREPARE_BUF, vidioc_prepare_buf);
Hans Verkuil72be89c2014-07-10 19:51:26 -0300685 SET_VALID_IOCTL(ops, VIDIOC_STREAMON, vidioc_streamon);
686 SET_VALID_IOCTL(ops, VIDIOC_STREAMOFF, vidioc_streamoff);
Antti Palosaari582c52c2013-12-12 13:44:14 -0300687 }
688
689 if (is_vid || is_vbi) {
690 /* ioctls valid for video or vbi */
Hans Verkuil4b202592012-09-14 07:03:35 -0300691 if (ops->vidioc_s_std)
692 set_bit(_IOC_NR(VIDIOC_ENUMSTD), valid_ioctls);
Hans Verkuil4b202592012-09-14 07:03:35 -0300693 SET_VALID_IOCTL(ops, VIDIOC_S_STD, vidioc_s_std);
Hans Verkuilca371572013-06-03 05:36:50 -0300694 SET_VALID_IOCTL(ops, VIDIOC_G_STD, vidioc_g_std);
Hans Verkuil4b202592012-09-14 07:03:35 -0300695 if (is_rx) {
Hans Verkuil90d0fc42012-09-14 07:06:08 -0300696 SET_VALID_IOCTL(ops, VIDIOC_QUERYSTD, vidioc_querystd);
Hans Verkuil4b202592012-09-14 07:03:35 -0300697 SET_VALID_IOCTL(ops, VIDIOC_ENUMINPUT, vidioc_enum_input);
698 SET_VALID_IOCTL(ops, VIDIOC_G_INPUT, vidioc_g_input);
699 SET_VALID_IOCTL(ops, VIDIOC_S_INPUT, vidioc_s_input);
700 SET_VALID_IOCTL(ops, VIDIOC_ENUMAUDIO, vidioc_enumaudio);
701 SET_VALID_IOCTL(ops, VIDIOC_G_AUDIO, vidioc_g_audio);
702 SET_VALID_IOCTL(ops, VIDIOC_S_AUDIO, vidioc_s_audio);
Hans Verkuil90d0fc42012-09-14 07:06:08 -0300703 SET_VALID_IOCTL(ops, VIDIOC_QUERY_DV_TIMINGS, vidioc_query_dv_timings);
Hans Verkuildd519bb2014-03-07 07:18:37 -0300704 SET_VALID_IOCTL(ops, VIDIOC_S_EDID, vidioc_s_edid);
Hans Verkuil4b202592012-09-14 07:03:35 -0300705 }
706 if (is_tx) {
707 SET_VALID_IOCTL(ops, VIDIOC_ENUMOUTPUT, vidioc_enum_output);
708 SET_VALID_IOCTL(ops, VIDIOC_G_OUTPUT, vidioc_g_output);
709 SET_VALID_IOCTL(ops, VIDIOC_S_OUTPUT, vidioc_s_output);
710 SET_VALID_IOCTL(ops, VIDIOC_ENUMAUDOUT, vidioc_enumaudout);
711 SET_VALID_IOCTL(ops, VIDIOC_G_AUDOUT, vidioc_g_audout);
712 SET_VALID_IOCTL(ops, VIDIOC_S_AUDOUT, vidioc_s_audout);
713 }
Hans Verkuil4b202592012-09-14 07:03:35 -0300714 if (ops->vidioc_g_crop || ops->vidioc_g_selection)
715 set_bit(_IOC_NR(VIDIOC_G_CROP), valid_ioctls);
716 if (ops->vidioc_s_crop || ops->vidioc_s_selection)
717 set_bit(_IOC_NR(VIDIOC_S_CROP), valid_ioctls);
718 SET_VALID_IOCTL(ops, VIDIOC_G_SELECTION, vidioc_g_selection);
719 SET_VALID_IOCTL(ops, VIDIOC_S_SELECTION, vidioc_s_selection);
720 if (ops->vidioc_cropcap || ops->vidioc_g_selection)
721 set_bit(_IOC_NR(VIDIOC_CROPCAP), valid_ioctls);
Hans Verkuil4b202592012-09-14 07:03:35 -0300722 if (ops->vidioc_g_parm || (vdev->vfl_type == VFL_TYPE_GRABBER &&
Hans Verkuilca371572013-06-03 05:36:50 -0300723 ops->vidioc_g_std))
Hans Verkuil4b202592012-09-14 07:03:35 -0300724 set_bit(_IOC_NR(VIDIOC_G_PARM), valid_ioctls);
725 SET_VALID_IOCTL(ops, VIDIOC_S_PARM, vidioc_s_parm);
Hans Verkuil4b202592012-09-14 07:03:35 -0300726 SET_VALID_IOCTL(ops, VIDIOC_S_DV_TIMINGS, vidioc_s_dv_timings);
727 SET_VALID_IOCTL(ops, VIDIOC_G_DV_TIMINGS, vidioc_g_dv_timings);
728 SET_VALID_IOCTL(ops, VIDIOC_ENUM_DV_TIMINGS, vidioc_enum_dv_timings);
Hans Verkuil4b202592012-09-14 07:03:35 -0300729 SET_VALID_IOCTL(ops, VIDIOC_DV_TIMINGS_CAP, vidioc_dv_timings_cap);
Hans Verkuildd519bb2014-03-07 07:18:37 -0300730 SET_VALID_IOCTL(ops, VIDIOC_G_EDID, vidioc_g_edid);
Hans Verkuil4b202592012-09-14 07:03:35 -0300731 }
Hans Verkuilbfffd742013-12-20 02:32:21 -0300732 if (is_tx && (is_radio || is_sdr)) {
733 /* radio transmitter only ioctls */
Hans Verkuil90d0fc42012-09-14 07:06:08 -0300734 SET_VALID_IOCTL(ops, VIDIOC_G_MODULATOR, vidioc_g_modulator);
735 SET_VALID_IOCTL(ops, VIDIOC_S_MODULATOR, vidioc_s_modulator);
736 }
737 if (is_rx) {
738 /* receiver only ioctls */
739 SET_VALID_IOCTL(ops, VIDIOC_G_TUNER, vidioc_g_tuner);
740 SET_VALID_IOCTL(ops, VIDIOC_S_TUNER, vidioc_s_tuner);
741 SET_VALID_IOCTL(ops, VIDIOC_S_HW_FREQ_SEEK, vidioc_s_hw_freq_seek);
742 }
743
Hans Verkuil48ea0be2012-05-10 05:36:00 -0300744 bitmap_andnot(vdev->valid_ioctls, valid_ioctls, vdev->valid_ioctls,
745 BASE_VIDIOC_PRIVATE);
746}
747
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300748/**
Laurent Pinchart2096a5d2009-12-09 08:38:49 -0300749 * __video_register_device - register video4linux devices
Hans Verkuildc93a702008-12-19 21:28:27 -0300750 * @vdev: video device structure we want to register
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300751 * @type: type of device to register
Hans Verkuil22e22122009-09-06 07:13:14 -0300752 * @nr: which device node number (0 == /dev/video0, 1 == /dev/video1, ...
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300753 * -1 == first free)
Hans Verkuil6b5270d2009-09-06 07:54:00 -0300754 * @warn_if_nr_in_use: warn if the desired device node number
755 * was already in use and another number was chosen instead.
Laurent Pinchart2096a5d2009-12-09 08:38:49 -0300756 * @owner: module that owns the video device node
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300757 *
Hans Verkuil22e22122009-09-06 07:13:14 -0300758 * The registration code assigns minor numbers and device node numbers
759 * based on the requested type and registers the new device node with
760 * the kernel.
Hans Verkuil46b63372010-12-31 11:47:23 -0300761 *
762 * This function assumes that struct video_device was zeroed when it
763 * was allocated and does not contain any stale date.
764 *
Hans Verkuil22e22122009-09-06 07:13:14 -0300765 * An error is returned if no free minor or device node number could be
766 * found, or if the registration of the device node failed.
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300767 *
768 * Zero is returned on success.
769 *
770 * Valid types are
771 *
772 * %VFL_TYPE_GRABBER - A frame grabber
773 *
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300774 * %VFL_TYPE_VBI - Vertical blank data (undecoded)
775 *
776 * %VFL_TYPE_RADIO - A radio card
Laurent Pinchart2096a5d2009-12-09 08:38:49 -0300777 *
778 * %VFL_TYPE_SUBDEV - A subdevice
Antti Palosaarid42626b2013-12-11 20:03:07 -0300779 *
780 * %VFL_TYPE_SDR - Software Defined Radio
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300781 */
Laurent Pinchart2096a5d2009-12-09 08:38:49 -0300782int __video_register_device(struct video_device *vdev, int type, int nr,
783 int warn_if_nr_in_use, struct module *owner)
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300784{
785 int i = 0;
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300786 int ret;
Hans Verkuildd896012008-10-04 08:36:54 -0300787 int minor_offset = 0;
788 int minor_cnt = VIDEO_NUM_DEVICES;
789 const char *name_base;
Hans Verkuildc93a702008-12-19 21:28:27 -0300790
791 /* A minor value of -1 marks this video device as never
792 having been registered */
Trent Piepho428c8d12009-03-03 18:51:52 -0300793 vdev->minor = -1;
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300794
Hans Verkuild6e74972008-08-23 06:27:59 -0300795 /* the release callback MUST be present */
Guennadi Liakhovetski1fc2b5f2011-12-06 05:33:03 -0300796 if (WARN_ON(!vdev->release))
Henrik Kretzschmaree7aa9f2008-08-22 16:41:03 -0300797 return -EINVAL;
Hans Verkuil1c1d86a2013-06-12 11:15:12 -0300798 /* the v4l2_dev pointer MUST be present */
799 if (WARN_ON(!vdev->v4l2_dev))
800 return -EINVAL;
Henrik Kretzschmaree7aa9f2008-08-22 16:41:03 -0300801
Sakari Ailus1babcb42010-03-23 09:25:26 -0300802 /* v4l2_fh support */
803 spin_lock_init(&vdev->fh_lock);
804 INIT_LIST_HEAD(&vdev->fh_list);
805
Hans Verkuildc93a702008-12-19 21:28:27 -0300806 /* Part 1: check device type */
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300807 switch (type) {
808 case VFL_TYPE_GRABBER:
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300809 name_base = "video";
810 break;
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300811 case VFL_TYPE_VBI:
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300812 name_base = "vbi";
813 break;
814 case VFL_TYPE_RADIO:
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300815 name_base = "radio";
816 break;
Laurent Pinchart2096a5d2009-12-09 08:38:49 -0300817 case VFL_TYPE_SUBDEV:
818 name_base = "v4l-subdev";
819 break;
Antti Palosaarid42626b2013-12-11 20:03:07 -0300820 case VFL_TYPE_SDR:
821 /* Use device name 'swradio' because 'sdr' was already taken. */
822 name_base = "swradio";
823 break;
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300824 default:
825 printk(KERN_ERR "%s called with unknown type: %d\n",
826 __func__, type);
Henrik Kretzschmar46f2c212008-09-03 16:47:39 -0300827 return -EINVAL;
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300828 }
829
Hans Verkuildc93a702008-12-19 21:28:27 -0300830 vdev->vfl_type = type;
831 vdev->cdev = NULL;
Hans Verkuil1c1d86a2013-06-12 11:15:12 -0300832 if (vdev->dev_parent == NULL)
833 vdev->dev_parent = vdev->v4l2_dev->dev;
834 if (vdev->ctrl_handler == NULL)
835 vdev->ctrl_handler = vdev->v4l2_dev->ctrl_handler;
836 /* If the prio state pointer is NULL, then use the v4l2_device
837 prio state. */
838 if (vdev->prio == NULL)
839 vdev->prio = &vdev->v4l2_dev->prio;
Hans Verkuildd896012008-10-04 08:36:54 -0300840
Hans Verkuil22e22122009-09-06 07:13:14 -0300841 /* Part 2: find a free minor, device node number and device index. */
Hans Verkuildd896012008-10-04 08:36:54 -0300842#ifdef CONFIG_VIDEO_FIXED_MINOR_RANGES
843 /* Keep the ranges for the first four types for historical
844 * reasons.
845 * Newer devices (not yet in place) should use the range
846 * of 128-191 and just pick the first free minor there
847 * (new style). */
848 switch (type) {
849 case VFL_TYPE_GRABBER:
850 minor_offset = 0;
851 minor_cnt = 64;
852 break;
853 case VFL_TYPE_RADIO:
854 minor_offset = 64;
855 minor_cnt = 64;
856 break;
Hans Verkuildd896012008-10-04 08:36:54 -0300857 case VFL_TYPE_VBI:
858 minor_offset = 224;
859 minor_cnt = 32;
860 break;
861 default:
862 minor_offset = 128;
863 minor_cnt = 64;
864 break;
865 }
866#endif
867
Hans Verkuil22e22122009-09-06 07:13:14 -0300868 /* Pick a device node number */
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300869 mutex_lock(&videodev_lock);
Hans Verkuil5062cb72009-09-07 03:40:24 -0300870 nr = devnode_find(vdev, nr == -1 ? 0 : nr, minor_cnt);
Hans Verkuildd896012008-10-04 08:36:54 -0300871 if (nr == minor_cnt)
Hans Verkuil5062cb72009-09-07 03:40:24 -0300872 nr = devnode_find(vdev, 0, minor_cnt);
Hans Verkuildd896012008-10-04 08:36:54 -0300873 if (nr == minor_cnt) {
Hans Verkuil22e22122009-09-06 07:13:14 -0300874 printk(KERN_ERR "could not get a free device node number\n");
Hans Verkuildd896012008-10-04 08:36:54 -0300875 mutex_unlock(&videodev_lock);
876 return -ENFILE;
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300877 }
Hans Verkuildd896012008-10-04 08:36:54 -0300878#ifdef CONFIG_VIDEO_FIXED_MINOR_RANGES
Hans Verkuil22e22122009-09-06 07:13:14 -0300879 /* 1-on-1 mapping of device node number to minor number */
Hans Verkuildd896012008-10-04 08:36:54 -0300880 i = nr;
881#else
Hans Verkuil22e22122009-09-06 07:13:14 -0300882 /* The device node number and minor numbers are independent, so
883 we just find the first free minor number. */
Hans Verkuildd896012008-10-04 08:36:54 -0300884 for (i = 0; i < VIDEO_NUM_DEVICES; i++)
885 if (video_device[i] == NULL)
886 break;
887 if (i == VIDEO_NUM_DEVICES) {
888 mutex_unlock(&videodev_lock);
889 printk(KERN_ERR "could not get a free minor\n");
890 return -ENFILE;
891 }
892#endif
Hans Verkuildc93a702008-12-19 21:28:27 -0300893 vdev->minor = i + minor_offset;
894 vdev->num = nr;
Hans Verkuil5062cb72009-09-07 03:40:24 -0300895 devnode_set(vdev);
896
Hans Verkuildc93a702008-12-19 21:28:27 -0300897 /* Should not happen since we thought this minor was free */
898 WARN_ON(video_device[vdev->minor] != NULL);
Hans Verkuil7ae0cd92009-06-19 11:32:56 -0300899 vdev->index = get_index(vdev);
Marek Szyprowski6c3df5d2013-12-03 10:14:29 -0300900 video_device[vdev->minor] = vdev;
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300901 mutex_unlock(&videodev_lock);
902
Hans Verkuil48ea0be2012-05-10 05:36:00 -0300903 if (vdev->ioctl_ops)
904 determine_valid_ioctls(vdev);
905
Hans Verkuildc93a702008-12-19 21:28:27 -0300906 /* Part 3: Initialize the character device */
907 vdev->cdev = cdev_alloc();
908 if (vdev->cdev == NULL) {
909 ret = -ENOMEM;
910 goto cleanup;
911 }
Arnd Bergmann86a5ef72010-07-04 00:15:09 +0200912 vdev->cdev->ops = &v4l2_fops;
Laurent Pinchart2096a5d2009-12-09 08:38:49 -0300913 vdev->cdev->owner = owner;
Hans Verkuildc93a702008-12-19 21:28:27 -0300914 ret = cdev_add(vdev->cdev, MKDEV(VIDEO_MAJOR, vdev->minor), 1);
Hans Verkuil7f8ecfa2008-08-29 17:31:35 -0300915 if (ret < 0) {
916 printk(KERN_ERR "%s: cdev_add failed\n", __func__);
Hans Verkuildc93a702008-12-19 21:28:27 -0300917 kfree(vdev->cdev);
918 vdev->cdev = NULL;
919 goto cleanup;
Hans Verkuil7f8ecfa2008-08-29 17:31:35 -0300920 }
Hans Verkuildc93a702008-12-19 21:28:27 -0300921
922 /* Part 4: register the device with sysfs */
Hans Verkuildc93a702008-12-19 21:28:27 -0300923 vdev->dev.class = &video_class;
924 vdev->dev.devt = MKDEV(VIDEO_MAJOR, vdev->minor);
Hans Verkuil1c1d86a2013-06-12 11:15:12 -0300925 vdev->dev.parent = vdev->dev_parent;
Hans Verkuil22e22122009-09-06 07:13:14 -0300926 dev_set_name(&vdev->dev, "%s%d", name_base, vdev->num);
Hans Verkuildc93a702008-12-19 21:28:27 -0300927 ret = device_register(&vdev->dev);
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300928 if (ret < 0) {
929 printk(KERN_ERR "%s: device_register failed\n", __func__);
Hans Verkuildc93a702008-12-19 21:28:27 -0300930 goto cleanup;
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300931 }
Hans Verkuildc93a702008-12-19 21:28:27 -0300932 /* Register the release callback that will be called when the last
933 reference to the device goes away. */
934 vdev->dev.release = v4l2_device_release;
935
Hans Verkuil6b5270d2009-09-06 07:54:00 -0300936 if (nr != -1 && nr != vdev->num && warn_if_nr_in_use)
Laurent Pincharteac8ea52009-11-27 13:56:50 -0300937 printk(KERN_WARNING "%s: requested %s%d, got %s\n", __func__,
938 name_base, nr, video_device_node_name(vdev));
Hans Verkuilbedf8bc2011-03-12 06:37:19 -0300939
940 /* Increase v4l2_device refcount */
941 if (vdev->v4l2_dev)
942 v4l2_device_get(vdev->v4l2_dev);
943
Laurent Pinchart2c0ab672009-12-09 08:40:10 -0300944#if defined(CONFIG_MEDIA_CONTROLLER)
945 /* Part 5: Register the entity. */
Laurent Pinchartc4f0b782011-04-08 09:04:06 -0300946 if (vdev->v4l2_dev && vdev->v4l2_dev->mdev &&
947 vdev->vfl_type != VFL_TYPE_SUBDEV) {
Laurent Pinchart2c0ab672009-12-09 08:40:10 -0300948 vdev->entity.type = MEDIA_ENT_T_DEVNODE_V4L;
949 vdev->entity.name = vdev->name;
Clemens Ladischfa5034c2011-11-05 18:42:01 -0300950 vdev->entity.info.v4l.major = VIDEO_MAJOR;
951 vdev->entity.info.v4l.minor = vdev->minor;
Laurent Pinchart2c0ab672009-12-09 08:40:10 -0300952 ret = media_device_register_entity(vdev->v4l2_dev->mdev,
953 &vdev->entity);
954 if (ret < 0)
955 printk(KERN_WARNING
956 "%s: media_device_register_entity failed\n",
957 __func__);
958 }
959#endif
960 /* Part 6: Activate this minor. The char device can now be used. */
Laurent Pinchart957b4aa2009-11-27 13:57:22 -0300961 set_bit(V4L2_FL_REGISTERED, &vdev->flags);
Laurent Pinchart2c0ab672009-12-09 08:40:10 -0300962
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300963 return 0;
964
Hans Verkuildc93a702008-12-19 21:28:27 -0300965cleanup:
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300966 mutex_lock(&videodev_lock);
Hans Verkuildc93a702008-12-19 21:28:27 -0300967 if (vdev->cdev)
968 cdev_del(vdev->cdev);
Ricardo Ribalda1056e432013-08-13 11:04:06 -0300969 video_device[vdev->minor] = NULL;
Hans Verkuil5062cb72009-09-07 03:40:24 -0300970 devnode_clear(vdev);
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300971 mutex_unlock(&videodev_lock);
Hans Verkuildc93a702008-12-19 21:28:27 -0300972 /* Mark this video device as never having been registered. */
973 vdev->minor = -1;
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300974 return ret;
975}
Laurent Pinchart2096a5d2009-12-09 08:38:49 -0300976EXPORT_SYMBOL(__video_register_device);
Hans Verkuil6b5270d2009-09-06 07:54:00 -0300977
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300978/**
979 * video_unregister_device - unregister a video4linux device
Hans Verkuildc93a702008-12-19 21:28:27 -0300980 * @vdev: the device to unregister
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300981 *
Hans Verkuildc93a702008-12-19 21:28:27 -0300982 * This unregisters the passed device. Future open calls will
983 * be met with errors.
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300984 */
Hans Verkuildc93a702008-12-19 21:28:27 -0300985void video_unregister_device(struct video_device *vdev)
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300986{
Hans Verkuildc93a702008-12-19 21:28:27 -0300987 /* Check if vdev was ever registered at all */
Laurent Pinchart957b4aa2009-11-27 13:57:22 -0300988 if (!vdev || !video_is_registered(vdev))
Hans Verkuildc93a702008-12-19 21:28:27 -0300989 return;
990
Hans Verkuilca9afe62010-11-26 06:54:53 -0300991 mutex_lock(&videodev_lock);
992 /* This must be in a critical section to prevent a race with v4l2_open.
993 * Once this bit has been cleared video_get may never be called again.
994 */
Laurent Pinchart957b4aa2009-11-27 13:57:22 -0300995 clear_bit(V4L2_FL_REGISTERED, &vdev->flags);
Hans Verkuilca9afe62010-11-26 06:54:53 -0300996 mutex_unlock(&videodev_lock);
Hans Verkuildc93a702008-12-19 21:28:27 -0300997 device_unregister(&vdev->dev);
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300998}
999EXPORT_SYMBOL(video_unregister_device);
1000
1001/*
Hans Verkuil27a5e6d2008-07-20 08:43:17 -03001002 * Initialise video for linux
1003 */
Hans Verkuil27a5e6d2008-07-20 08:43:17 -03001004static int __init videodev_init(void)
1005{
Hans Verkuil7f8ecfa2008-08-29 17:31:35 -03001006 dev_t dev = MKDEV(VIDEO_MAJOR, 0);
Hans Verkuil27a5e6d2008-07-20 08:43:17 -03001007 int ret;
1008
1009 printk(KERN_INFO "Linux video capture interface: v2.00\n");
Hans Verkuil7f8ecfa2008-08-29 17:31:35 -03001010 ret = register_chrdev_region(dev, VIDEO_NUM_DEVICES, VIDEO_NAME);
1011 if (ret < 0) {
1012 printk(KERN_WARNING "videodev: unable to get major %d\n",
1013 VIDEO_MAJOR);
1014 return ret;
Hans Verkuil27a5e6d2008-07-20 08:43:17 -03001015 }
1016
1017 ret = class_register(&video_class);
1018 if (ret < 0) {
Hans Verkuil7f8ecfa2008-08-29 17:31:35 -03001019 unregister_chrdev_region(dev, VIDEO_NUM_DEVICES);
Hans Verkuil27a5e6d2008-07-20 08:43:17 -03001020 printk(KERN_WARNING "video_dev: class_register failed\n");
1021 return -EIO;
1022 }
1023
1024 return 0;
1025}
1026
1027static void __exit videodev_exit(void)
1028{
Hans Verkuil7f8ecfa2008-08-29 17:31:35 -03001029 dev_t dev = MKDEV(VIDEO_MAJOR, 0);
1030
Hans Verkuil27a5e6d2008-07-20 08:43:17 -03001031 class_unregister(&video_class);
Hans Verkuil7f8ecfa2008-08-29 17:31:35 -03001032 unregister_chrdev_region(dev, VIDEO_NUM_DEVICES);
Hans Verkuil27a5e6d2008-07-20 08:43:17 -03001033}
1034
Bhupesh Sharmaee981c62012-03-12 05:09:02 -03001035subsys_initcall(videodev_init);
Hans Verkuil27a5e6d2008-07-20 08:43:17 -03001036module_exit(videodev_exit)
1037
1038MODULE_AUTHOR("Alan Cox, Mauro Carvalho Chehab <mchehab@infradead.org>");
1039MODULE_DESCRIPTION("Device registrar for Video4Linux drivers v2");
1040MODULE_LICENSE("GPL");
Scott James Remnantcbb72b02009-03-02 15:40:57 -03001041MODULE_ALIAS_CHARDEV_MAJOR(VIDEO_MAJOR);
Hans Verkuil27a5e6d2008-07-20 08:43:17 -03001042
1043
1044/*
1045 * Local variables:
1046 * c-basic-offset: 8
1047 * End:
1048 */