blob: b1f0923212e61798628fa245b69af4fcce211c8f [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
41static ssize_t show_index(struct device *cd,
42 struct device_attribute *attr, char *buf)
43{
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}
48
49static ssize_t show_name(struct device *cd,
50 struct device_attribute *attr, char *buf)
51{
Hans Verkuildc93a702008-12-19 21:28:27 -030052 struct video_device *vdev = to_video_device(cd);
Hans Verkuilbfa8a272008-08-23 07:48:38 -030053
Hans Verkuildc93a702008-12-19 21:28:27 -030054 return sprintf(buf, "%.*s\n", (int)sizeof(vdev->name), vdev->name);
Hans Verkuil27a5e6d2008-07-20 08:43:17 -030055}
56
57static struct device_attribute video_device_attrs[] = {
58 __ATTR(name, S_IRUGO, show_name, NULL),
59 __ATTR(index, S_IRUGO, show_index, NULL),
60 __ATTR_NULL
61};
62
Hans Verkuil7f8ecfa2008-08-29 17:31:35 -030063/*
64 * Active devices
65 */
66static struct video_device *video_device[VIDEO_NUM_DEVICES];
67static DEFINE_MUTEX(videodev_lock);
Hans Verkuil22e22122009-09-06 07:13:14 -030068static DECLARE_BITMAP(devnode_nums[VFL_TYPE_MAX], VIDEO_NUM_DEVICES);
Hans Verkuil7f8ecfa2008-08-29 17:31:35 -030069
Hans Verkuil5062cb72009-09-07 03:40:24 -030070/* Device node utility functions */
71
72/* Note: these utility functions all assume that vfl_type is in the range
73 [0, VFL_TYPE_MAX-1]. */
74
75#ifdef CONFIG_VIDEO_FIXED_MINOR_RANGES
76/* Return the bitmap corresponding to vfl_type. */
77static inline unsigned long *devnode_bits(int vfl_type)
78{
79 /* Any types not assigned to fixed minor ranges must be mapped to
80 one single bitmap for the purposes of finding a free node number
81 since all those unassigned types use the same minor range. */
Hans Verkuil226c0ee2010-08-06 12:48:00 -030082 int idx = (vfl_type > VFL_TYPE_RADIO) ? VFL_TYPE_MAX - 1 : vfl_type;
Hans Verkuil5062cb72009-09-07 03:40:24 -030083
84 return devnode_nums[idx];
85}
86#else
87/* Return the bitmap corresponding to vfl_type. */
88static inline unsigned long *devnode_bits(int vfl_type)
89{
90 return devnode_nums[vfl_type];
91}
92#endif
93
94/* Mark device node number vdev->num as used */
95static inline void devnode_set(struct video_device *vdev)
96{
97 set_bit(vdev->num, devnode_bits(vdev->vfl_type));
98}
99
100/* Mark device node number vdev->num as unused */
101static inline void devnode_clear(struct video_device *vdev)
102{
103 clear_bit(vdev->num, devnode_bits(vdev->vfl_type));
104}
105
106/* Try to find a free device node number in the range [from, to> */
107static inline int devnode_find(struct video_device *vdev, int from, int to)
108{
109 return find_next_zero_bit(devnode_bits(vdev->vfl_type), to, from);
110}
111
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300112struct video_device *video_device_alloc(void)
113{
Hans Verkuilbfa8a272008-08-23 07:48:38 -0300114 return kzalloc(sizeof(struct video_device), GFP_KERNEL);
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300115}
116EXPORT_SYMBOL(video_device_alloc);
117
Hans Verkuildc93a702008-12-19 21:28:27 -0300118void video_device_release(struct video_device *vdev)
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300119{
Hans Verkuildc93a702008-12-19 21:28:27 -0300120 kfree(vdev);
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300121}
122EXPORT_SYMBOL(video_device_release);
123
Hans Verkuildc93a702008-12-19 21:28:27 -0300124void video_device_release_empty(struct video_device *vdev)
Hans Verkuilf9e86b52008-08-23 05:47:41 -0300125{
126 /* Do nothing */
127 /* Only valid when the video_device struct is a static. */
128}
129EXPORT_SYMBOL(video_device_release_empty);
130
Hans Verkuildc93a702008-12-19 21:28:27 -0300131static inline void video_get(struct video_device *vdev)
Hans Verkuil7f8ecfa2008-08-29 17:31:35 -0300132{
Hans Verkuildc93a702008-12-19 21:28:27 -0300133 get_device(&vdev->dev);
134}
135
136static inline void video_put(struct video_device *vdev)
137{
138 put_device(&vdev->dev);
139}
140
141/* Called when the last user of the video device exits. */
142static void v4l2_device_release(struct device *cd)
143{
144 struct video_device *vdev = to_video_device(cd);
Hans Verkuilbedf8bc2011-03-12 06:37:19 -0300145 struct v4l2_device *v4l2_dev = vdev->v4l2_dev;
Hans Verkuil7f8ecfa2008-08-29 17:31:35 -0300146
147 mutex_lock(&videodev_lock);
Guennadi Liakhovetski1fc2b5f2011-12-06 05:33:03 -0300148 if (WARN_ON(video_device[vdev->minor] != vdev)) {
Hans Verkuildc93a702008-12-19 21:28:27 -0300149 /* should not happen */
Guennadi Liakhovetski1fc2b5f2011-12-06 05:33:03 -0300150 mutex_unlock(&videodev_lock);
Hans Verkuil6ea9a182008-08-30 09:40:47 -0300151 return;
152 }
Hans Verkuil7f8ecfa2008-08-29 17:31:35 -0300153
154 /* Free up this device for reuse */
Hans Verkuildc93a702008-12-19 21:28:27 -0300155 video_device[vdev->minor] = NULL;
156
157 /* Delete the cdev on this minor as well */
158 cdev_del(vdev->cdev);
159 /* Just in case some driver tries to access this from
160 the release() callback. */
161 vdev->cdev = NULL;
162
Hans Verkuil22e22122009-09-06 07:13:14 -0300163 /* Mark device node number as free */
Hans Verkuil5062cb72009-09-07 03:40:24 -0300164 devnode_clear(vdev);
Hans Verkuildc93a702008-12-19 21:28:27 -0300165
Hans Verkuil7f8ecfa2008-08-29 17:31:35 -0300166 mutex_unlock(&videodev_lock);
167
Laurent Pinchartc064b8e2011-06-15 05:20:34 -0300168#if defined(CONFIG_MEDIA_CONTROLLER)
Guennadi Liakhovetski1fc2b5f2011-12-06 05:33:03 -0300169 if (v4l2_dev && v4l2_dev->mdev &&
Laurent Pinchartc064b8e2011-06-15 05:20:34 -0300170 vdev->vfl_type != VFL_TYPE_SUBDEV)
171 media_device_unregister_entity(&vdev->entity);
172#endif
173
Hans Verkuil8280b662011-09-06 10:23:18 -0300174 /* Do not call v4l2_device_put if there is no release callback set.
175 * Drivers that have no v4l2_device release callback might free the
176 * v4l2_dev instance in the video_device release callback below, so we
177 * must perform this check here.
178 *
179 * TODO: In the long run all drivers that use v4l2_device should use the
180 * v4l2_device release callback. This check will then be unnecessary.
181 */
Antonio Ospitee58fced2011-10-12 17:59:26 -0300182 if (v4l2_dev && v4l2_dev->release == NULL)
Hans Verkuil8280b662011-09-06 10:23:18 -0300183 v4l2_dev = NULL;
184
Hans Verkuil7f8ecfa2008-08-29 17:31:35 -0300185 /* Release video_device and perform other
186 cleanups as needed. */
Hans Verkuildc93a702008-12-19 21:28:27 -0300187 vdev->release(vdev);
Hans Verkuilbedf8bc2011-03-12 06:37:19 -0300188
189 /* Decrease v4l2_device refcount */
190 if (v4l2_dev)
191 v4l2_device_put(v4l2_dev);
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300192}
193
194static struct class video_class = {
195 .name = VIDEO_NAME,
196 .dev_attrs = video_device_attrs,
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300197};
198
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300199struct video_device *video_devdata(struct file *file)
200{
201 return video_device[iminor(file->f_path.dentry->d_inode)];
202}
203EXPORT_SYMBOL(video_devdata);
204
Hans Verkuil02265492010-12-29 10:05:02 -0300205
206/* Priority handling */
207
208static inline bool prio_is_valid(enum v4l2_priority prio)
209{
210 return prio == V4L2_PRIORITY_BACKGROUND ||
211 prio == V4L2_PRIORITY_INTERACTIVE ||
212 prio == V4L2_PRIORITY_RECORD;
213}
214
215void v4l2_prio_init(struct v4l2_prio_state *global)
216{
217 memset(global, 0, sizeof(*global));
218}
219EXPORT_SYMBOL(v4l2_prio_init);
220
221int v4l2_prio_change(struct v4l2_prio_state *global, enum v4l2_priority *local,
222 enum v4l2_priority new)
223{
224 if (!prio_is_valid(new))
225 return -EINVAL;
226 if (*local == new)
227 return 0;
228
229 atomic_inc(&global->prios[new]);
230 if (prio_is_valid(*local))
231 atomic_dec(&global->prios[*local]);
232 *local = new;
233 return 0;
234}
235EXPORT_SYMBOL(v4l2_prio_change);
236
237void v4l2_prio_open(struct v4l2_prio_state *global, enum v4l2_priority *local)
238{
239 v4l2_prio_change(global, local, V4L2_PRIORITY_DEFAULT);
240}
241EXPORT_SYMBOL(v4l2_prio_open);
242
243void v4l2_prio_close(struct v4l2_prio_state *global, enum v4l2_priority local)
244{
245 if (prio_is_valid(local))
246 atomic_dec(&global->prios[local]);
247}
248EXPORT_SYMBOL(v4l2_prio_close);
249
250enum v4l2_priority v4l2_prio_max(struct v4l2_prio_state *global)
251{
252 if (atomic_read(&global->prios[V4L2_PRIORITY_RECORD]) > 0)
253 return V4L2_PRIORITY_RECORD;
254 if (atomic_read(&global->prios[V4L2_PRIORITY_INTERACTIVE]) > 0)
255 return V4L2_PRIORITY_INTERACTIVE;
256 if (atomic_read(&global->prios[V4L2_PRIORITY_BACKGROUND]) > 0)
257 return V4L2_PRIORITY_BACKGROUND;
258 return V4L2_PRIORITY_UNSET;
259}
260EXPORT_SYMBOL(v4l2_prio_max);
261
262int v4l2_prio_check(struct v4l2_prio_state *global, enum v4l2_priority local)
263{
264 return (local < v4l2_prio_max(global)) ? -EBUSY : 0;
265}
266EXPORT_SYMBOL(v4l2_prio_check);
267
268
Hans Verkuildc93a702008-12-19 21:28:27 -0300269static ssize_t v4l2_read(struct file *filp, char __user *buf,
270 size_t sz, loff_t *off)
271{
272 struct video_device *vdev = video_devdata(filp);
Hans Verkuil28778422010-11-26 06:43:51 -0300273 int ret = -ENODEV;
Hans Verkuildc93a702008-12-19 21:28:27 -0300274
275 if (!vdev->fops->read)
276 return -EINVAL;
Hans Verkuil28778422010-11-26 06:43:51 -0300277 if (vdev->lock && mutex_lock_interruptible(vdev->lock))
278 return -ERESTARTSYS;
Hans Verkuilee6869a2010-09-26 08:47:38 -0300279 if (video_is_registered(vdev))
280 ret = vdev->fops->read(filp, buf, sz, off);
281 if (vdev->lock)
282 mutex_unlock(vdev->lock);
283 return ret;
Hans Verkuildc93a702008-12-19 21:28:27 -0300284}
285
286static ssize_t v4l2_write(struct file *filp, const char __user *buf,
287 size_t sz, loff_t *off)
288{
289 struct video_device *vdev = video_devdata(filp);
Hans Verkuil28778422010-11-26 06:43:51 -0300290 int ret = -ENODEV;
Hans Verkuildc93a702008-12-19 21:28:27 -0300291
292 if (!vdev->fops->write)
293 return -EINVAL;
Hans Verkuil28778422010-11-26 06:43:51 -0300294 if (vdev->lock && mutex_lock_interruptible(vdev->lock))
295 return -ERESTARTSYS;
Hans Verkuilee6869a2010-09-26 08:47:38 -0300296 if (video_is_registered(vdev))
297 ret = vdev->fops->write(filp, buf, sz, off);
298 if (vdev->lock)
299 mutex_unlock(vdev->lock);
300 return ret;
Hans Verkuildc93a702008-12-19 21:28:27 -0300301}
302
303static unsigned int v4l2_poll(struct file *filp, struct poll_table_struct *poll)
304{
305 struct video_device *vdev = video_devdata(filp);
Hans Verkuil28778422010-11-26 06:43:51 -0300306 int ret = POLLERR | POLLHUP;
Hans Verkuildc93a702008-12-19 21:28:27 -0300307
Hans Verkuilee6869a2010-09-26 08:47:38 -0300308 if (!vdev->fops->poll)
Hans Verkuil28778422010-11-26 06:43:51 -0300309 return DEFAULT_POLLMASK;
Hans Verkuilee6869a2010-09-26 08:47:38 -0300310 if (vdev->lock)
311 mutex_lock(vdev->lock);
312 if (video_is_registered(vdev))
313 ret = vdev->fops->poll(filp, poll);
314 if (vdev->lock)
315 mutex_unlock(vdev->lock);
316 return ret;
Hans Verkuildc93a702008-12-19 21:28:27 -0300317}
318
Arnd Bergmann86a5ef72010-07-04 00:15:09 +0200319static long v4l2_ioctl(struct file *filp, unsigned int cmd, unsigned long arg)
Hans Verkuildc93a702008-12-19 21:28:27 -0300320{
321 struct video_device *vdev = video_devdata(filp);
Mauro Carvalho Chehab72420632010-10-09 16:43:40 -0300322 int ret = -ENODEV;
Hans Verkuildc93a702008-12-19 21:28:27 -0300323
Arnd Bergmann86a5ef72010-07-04 00:15:09 +0200324 if (vdev->fops->unlocked_ioctl) {
Hans Verkuil8ab75e32012-05-10 02:51:31 -0300325 bool locked = false;
326
327 if (vdev->lock) {
328 /* always lock unless the cmd is marked as "don't use lock" */
329 locked = !v4l2_is_known_ioctl(cmd) ||
330 !test_bit(_IOC_NR(cmd), vdev->dont_use_lock);
331
332 if (locked && mutex_lock_interruptible(vdev->lock))
333 return -ERESTARTSYS;
334 }
Mauro Carvalho Chehab72420632010-10-09 16:43:40 -0300335 if (video_is_registered(vdev))
336 ret = vdev->fops->unlocked_ioctl(filp, cmd, arg);
Hans Verkuil8ab75e32012-05-10 02:51:31 -0300337 if (locked)
Hans Verkuilee6869a2010-09-26 08:47:38 -0300338 mutex_unlock(vdev->lock);
Arnd Bergmann86a5ef72010-07-04 00:15:09 +0200339 } else if (vdev->fops->ioctl) {
Hans Verkuil879aa242010-11-26 06:47:28 -0300340 /* This code path is a replacement for the BKL. It is a major
341 * hack but it will have to do for those drivers that are not
342 * yet converted to use unlocked_ioctl.
343 *
344 * There are two options: if the driver implements struct
345 * v4l2_device, then the lock defined there is used to
346 * serialize the ioctls. Otherwise the v4l2 core lock defined
347 * below is used. This lock is really bad since it serializes
348 * completely independent devices.
349 *
350 * Both variants suffer from the same problem: if the driver
351 * sleeps, then it blocks all ioctls since the lock is still
352 * held. This is very common for VIDIOC_DQBUF since that
353 * normally waits for a frame to arrive. As a result any other
354 * ioctl calls will proceed very, very slowly since each call
355 * will have to wait for the VIDIOC_QBUF to finish. Things that
356 * should take 0.01s may now take 10-20 seconds.
357 *
358 * The workaround is to *not* take the lock for VIDIOC_DQBUF.
359 * This actually works OK for videobuf-based drivers, since
360 * videobuf will take its own internal lock.
361 */
Arnd Bergmann0edf2e52010-10-27 09:30:32 -0300362 static DEFINE_MUTEX(v4l2_ioctl_mutex);
Hans Verkuil879aa242010-11-26 06:47:28 -0300363 struct mutex *m = vdev->v4l2_dev ?
364 &vdev->v4l2_dev->ioctl_lock : &v4l2_ioctl_mutex;
Arnd Bergmann0edf2e52010-10-27 09:30:32 -0300365
Hans Verkuil879aa242010-11-26 06:47:28 -0300366 if (cmd != VIDIOC_DQBUF && mutex_lock_interruptible(m))
367 return -ERESTARTSYS;
Mauro Carvalho Chehab72420632010-10-09 16:43:40 -0300368 if (video_is_registered(vdev))
369 ret = vdev->fops->ioctl(filp, cmd, arg);
Hans Verkuil879aa242010-11-26 06:47:28 -0300370 if (cmd != VIDIOC_DQBUF)
371 mutex_unlock(m);
Arnd Bergmann86a5ef72010-07-04 00:15:09 +0200372 } else
373 ret = -ENOTTY;
Hans Verkuildc93a702008-12-19 21:28:27 -0300374
Arnd Bergmann86a5ef72010-07-04 00:15:09 +0200375 return ret;
Hans Verkuildc93a702008-12-19 21:28:27 -0300376}
377
Bob Liuecc65172011-05-06 05:20:09 -0300378#ifdef CONFIG_MMU
379#define v4l2_get_unmapped_area NULL
380#else
381static unsigned long v4l2_get_unmapped_area(struct file *filp,
382 unsigned long addr, unsigned long len, unsigned long pgoff,
383 unsigned long flags)
384{
385 struct video_device *vdev = video_devdata(filp);
386
387 if (!vdev->fops->get_unmapped_area)
388 return -ENOSYS;
389 if (!video_is_registered(vdev))
390 return -ENODEV;
391 return vdev->fops->get_unmapped_area(filp, addr, len, pgoff, flags);
392}
393#endif
394
Hans Verkuildc93a702008-12-19 21:28:27 -0300395static int v4l2_mmap(struct file *filp, struct vm_area_struct *vm)
396{
397 struct video_device *vdev = video_devdata(filp);
Hans Verkuilee6869a2010-09-26 08:47:38 -0300398 int ret = -ENODEV;
Hans Verkuildc93a702008-12-19 21:28:27 -0300399
Hans Verkuilee6869a2010-09-26 08:47:38 -0300400 if (!vdev->fops->mmap)
401 return ret;
Hans Verkuil28778422010-11-26 06:43:51 -0300402 if (vdev->lock && mutex_lock_interruptible(vdev->lock))
403 return -ERESTARTSYS;
Hans Verkuilee6869a2010-09-26 08:47:38 -0300404 if (video_is_registered(vdev))
405 ret = vdev->fops->mmap(filp, vm);
406 if (vdev->lock)
407 mutex_unlock(vdev->lock);
408 return ret;
Hans Verkuildc93a702008-12-19 21:28:27 -0300409}
410
411/* Override for the open function */
412static int v4l2_open(struct inode *inode, struct file *filp)
413{
414 struct video_device *vdev;
Hans Verkuil65d9ff92009-03-29 20:19:38 -0300415 int ret = 0;
Hans Verkuildc93a702008-12-19 21:28:27 -0300416
417 /* Check if the video device is available */
418 mutex_lock(&videodev_lock);
419 vdev = video_devdata(filp);
Hans Verkuilee6869a2010-09-26 08:47:38 -0300420 /* return ENODEV if the video device has already been removed. */
Hans Verkuilca9afe62010-11-26 06:54:53 -0300421 if (vdev == NULL || !video_is_registered(vdev)) {
Hans Verkuildc93a702008-12-19 21:28:27 -0300422 mutex_unlock(&videodev_lock);
423 return -ENODEV;
424 }
425 /* and increase the device refcount */
426 video_get(vdev);
427 mutex_unlock(&videodev_lock);
Hans Verkuilee6869a2010-09-26 08:47:38 -0300428 if (vdev->fops->open) {
Hans Verkuil28778422010-11-26 06:43:51 -0300429 if (vdev->lock && mutex_lock_interruptible(vdev->lock)) {
430 ret = -ERESTARTSYS;
431 goto err;
432 }
Hans Verkuilee6869a2010-09-26 08:47:38 -0300433 if (video_is_registered(vdev))
434 ret = vdev->fops->open(filp);
435 else
436 ret = -ENODEV;
437 if (vdev->lock)
438 mutex_unlock(vdev->lock);
439 }
Hans Verkuil65d9ff92009-03-29 20:19:38 -0300440
Hans Verkuil28778422010-11-26 06:43:51 -0300441err:
Hans Verkuildc93a702008-12-19 21:28:27 -0300442 /* decrease the refcount in case of an error */
Laurent Pinchartc064b8e2011-06-15 05:20:34 -0300443 if (ret)
Hans Verkuildc93a702008-12-19 21:28:27 -0300444 video_put(vdev);
445 return ret;
446}
447
448/* Override for the release function */
449static int v4l2_release(struct inode *inode, struct file *filp)
450{
451 struct video_device *vdev = video_devdata(filp);
Hans Verkuil65d9ff92009-03-29 20:19:38 -0300452 int ret = 0;
453
Hans Verkuilee6869a2010-09-26 08:47:38 -0300454 if (vdev->fops->release) {
455 if (vdev->lock)
456 mutex_lock(vdev->lock);
Hans Verkuil65d9ff92009-03-29 20:19:38 -0300457 vdev->fops->release(filp);
Hans Verkuilee6869a2010-09-26 08:47:38 -0300458 if (vdev->lock)
459 mutex_unlock(vdev->lock);
460 }
Hans Verkuildc93a702008-12-19 21:28:27 -0300461 /* decrease the refcount unconditionally since the release()
462 return value is ignored. */
463 video_put(vdev);
464 return ret;
465}
466
Hans Verkuildc93a702008-12-19 21:28:27 -0300467static const struct file_operations v4l2_fops = {
468 .owner = THIS_MODULE,
469 .read = v4l2_read,
470 .write = v4l2_write,
471 .open = v4l2_open,
Bob Liuecc65172011-05-06 05:20:09 -0300472 .get_unmapped_area = v4l2_get_unmapped_area,
Hans Verkuildc93a702008-12-19 21:28:27 -0300473 .mmap = v4l2_mmap,
Arnd Bergmann86a5ef72010-07-04 00:15:09 +0200474 .unlocked_ioctl = v4l2_ioctl,
Hans Verkuildc93a702008-12-19 21:28:27 -0300475#ifdef CONFIG_COMPAT
Hans Verkuil9bb7cde2008-12-30 06:42:40 -0300476 .compat_ioctl = v4l2_compat_ioctl32,
Hans Verkuildc93a702008-12-19 21:28:27 -0300477#endif
478 .release = v4l2_release,
479 .poll = v4l2_poll,
480 .llseek = no_llseek,
481};
482
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300483/**
Hans Verkuil7ae0cd92009-06-19 11:32:56 -0300484 * get_index - assign stream index number based on parent device
Hans Verkuildc93a702008-12-19 21:28:27 -0300485 * @vdev: video_device to assign index number to, vdev->parent should be assigned
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300486 *
Hans Verkuildc93a702008-12-19 21:28:27 -0300487 * Note that when this is called the new device has not yet been registered
Hans Verkuil7ae0cd92009-06-19 11:32:56 -0300488 * in the video_device array, but it was able to obtain a minor number.
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300489 *
Hans Verkuil7ae0cd92009-06-19 11:32:56 -0300490 * This means that we can always obtain a free stream index number since
491 * the worst case scenario is that there are VIDEO_NUM_DEVICES - 1 slots in
492 * use of the video_device array.
493 *
494 * Returns a free index number.
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300495 */
Hans Verkuil7ae0cd92009-06-19 11:32:56 -0300496static int get_index(struct video_device *vdev)
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300497{
Hans Verkuil775a05d2009-02-14 11:31:01 -0300498 /* This can be static since this function is called with the global
499 videodev_lock held. */
500 static DECLARE_BITMAP(used, VIDEO_NUM_DEVICES);
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300501 int i;
502
Hans Verkuil7ae0cd92009-06-19 11:32:56 -0300503 /* Some drivers do not set the parent. In that case always return 0. */
Hans Verkuil806e5b72008-12-19 09:10:56 -0300504 if (vdev->parent == NULL)
Hans Verkuil7ae0cd92009-06-19 11:32:56 -0300505 return 0;
Hans Verkuil775a05d2009-02-14 11:31:01 -0300506
507 bitmap_zero(used, VIDEO_NUM_DEVICES);
Hans Verkuil806e5b72008-12-19 09:10:56 -0300508
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300509 for (i = 0; i < VIDEO_NUM_DEVICES; i++) {
510 if (video_device[i] != NULL &&
Hans Verkuil5e85e732008-07-20 06:31:39 -0300511 video_device[i]->parent == vdev->parent) {
Hans Verkuil775a05d2009-02-14 11:31:01 -0300512 set_bit(video_device[i]->index, used);
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300513 }
514 }
515
Hans Verkuil7ae0cd92009-06-19 11:32:56 -0300516 return find_first_zero_bit(used, VIDEO_NUM_DEVICES);
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300517}
518
Hans Verkuil48ea0be2012-05-10 05:36:00 -0300519#define SET_VALID_IOCTL(ops, cmd, op) \
520 if (ops->op) \
521 set_bit(_IOC_NR(cmd), valid_ioctls)
522
523/* This determines which ioctls are actually implemented in the driver.
524 It's a one-time thing which simplifies video_ioctl2 as it can just do
525 a bit test.
526
527 Note that drivers can override this by setting bits to 1 in
528 vdev->valid_ioctls. If an ioctl is marked as 1 when this function is
529 called, then that ioctl will actually be marked as unimplemented.
530
531 It does that by first setting up the local valid_ioctls bitmap, and
532 at the end do a:
533
534 vdev->valid_ioctls = valid_ioctls & ~(vdev->valid_ioctls)
535 */
536static void determine_valid_ioctls(struct video_device *vdev)
537{
538 DECLARE_BITMAP(valid_ioctls, BASE_VIDIOC_PRIVATE);
539 const struct v4l2_ioctl_ops *ops = vdev->ioctl_ops;
540
541 bitmap_zero(valid_ioctls, BASE_VIDIOC_PRIVATE);
542
543 SET_VALID_IOCTL(ops, VIDIOC_QUERYCAP, vidioc_querycap);
544 if (ops->vidioc_g_priority ||
545 test_bit(V4L2_FL_USE_FH_PRIO, &vdev->flags))
546 set_bit(_IOC_NR(VIDIOC_G_PRIORITY), valid_ioctls);
547 if (ops->vidioc_s_priority ||
548 test_bit(V4L2_FL_USE_FH_PRIO, &vdev->flags))
549 set_bit(_IOC_NR(VIDIOC_S_PRIORITY), valid_ioctls);
550 if (ops->vidioc_enum_fmt_vid_cap ||
551 ops->vidioc_enum_fmt_vid_out ||
552 ops->vidioc_enum_fmt_vid_cap_mplane ||
553 ops->vidioc_enum_fmt_vid_out_mplane ||
554 ops->vidioc_enum_fmt_vid_overlay ||
555 ops->vidioc_enum_fmt_type_private)
556 set_bit(_IOC_NR(VIDIOC_ENUM_FMT), valid_ioctls);
557 if (ops->vidioc_g_fmt_vid_cap ||
558 ops->vidioc_g_fmt_vid_out ||
559 ops->vidioc_g_fmt_vid_cap_mplane ||
560 ops->vidioc_g_fmt_vid_out_mplane ||
561 ops->vidioc_g_fmt_vid_overlay ||
562 ops->vidioc_g_fmt_vbi_cap ||
563 ops->vidioc_g_fmt_vid_out_overlay ||
564 ops->vidioc_g_fmt_vbi_out ||
565 ops->vidioc_g_fmt_sliced_vbi_cap ||
566 ops->vidioc_g_fmt_sliced_vbi_out ||
567 ops->vidioc_g_fmt_type_private)
568 set_bit(_IOC_NR(VIDIOC_G_FMT), valid_ioctls);
569 if (ops->vidioc_s_fmt_vid_cap ||
570 ops->vidioc_s_fmt_vid_out ||
571 ops->vidioc_s_fmt_vid_cap_mplane ||
572 ops->vidioc_s_fmt_vid_out_mplane ||
573 ops->vidioc_s_fmt_vid_overlay ||
574 ops->vidioc_s_fmt_vbi_cap ||
575 ops->vidioc_s_fmt_vid_out_overlay ||
576 ops->vidioc_s_fmt_vbi_out ||
577 ops->vidioc_s_fmt_sliced_vbi_cap ||
578 ops->vidioc_s_fmt_sliced_vbi_out ||
579 ops->vidioc_s_fmt_type_private)
580 set_bit(_IOC_NR(VIDIOC_S_FMT), valid_ioctls);
581 if (ops->vidioc_try_fmt_vid_cap ||
582 ops->vidioc_try_fmt_vid_out ||
583 ops->vidioc_try_fmt_vid_cap_mplane ||
584 ops->vidioc_try_fmt_vid_out_mplane ||
585 ops->vidioc_try_fmt_vid_overlay ||
586 ops->vidioc_try_fmt_vbi_cap ||
587 ops->vidioc_try_fmt_vid_out_overlay ||
588 ops->vidioc_try_fmt_vbi_out ||
589 ops->vidioc_try_fmt_sliced_vbi_cap ||
590 ops->vidioc_try_fmt_sliced_vbi_out ||
591 ops->vidioc_try_fmt_type_private)
592 set_bit(_IOC_NR(VIDIOC_TRY_FMT), valid_ioctls);
593 SET_VALID_IOCTL(ops, VIDIOC_REQBUFS, vidioc_reqbufs);
594 SET_VALID_IOCTL(ops, VIDIOC_QUERYBUF, vidioc_querybuf);
595 SET_VALID_IOCTL(ops, VIDIOC_QBUF, vidioc_qbuf);
596 SET_VALID_IOCTL(ops, VIDIOC_DQBUF, vidioc_dqbuf);
597 SET_VALID_IOCTL(ops, VIDIOC_OVERLAY, vidioc_overlay);
598 SET_VALID_IOCTL(ops, VIDIOC_G_FBUF, vidioc_g_fbuf);
599 SET_VALID_IOCTL(ops, VIDIOC_S_FBUF, vidioc_s_fbuf);
600 SET_VALID_IOCTL(ops, VIDIOC_STREAMON, vidioc_streamon);
601 SET_VALID_IOCTL(ops, VIDIOC_STREAMOFF, vidioc_streamoff);
602 if (vdev->tvnorms)
603 set_bit(_IOC_NR(VIDIOC_ENUMSTD), valid_ioctls);
604 if (ops->vidioc_g_std || vdev->current_norm)
605 set_bit(_IOC_NR(VIDIOC_G_STD), valid_ioctls);
606 SET_VALID_IOCTL(ops, VIDIOC_S_STD, vidioc_s_std);
607 SET_VALID_IOCTL(ops, VIDIOC_QUERYSTD, vidioc_querystd);
608 SET_VALID_IOCTL(ops, VIDIOC_ENUMINPUT, vidioc_enum_input);
609 SET_VALID_IOCTL(ops, VIDIOC_G_INPUT, vidioc_g_input);
610 SET_VALID_IOCTL(ops, VIDIOC_S_INPUT, vidioc_s_input);
611 SET_VALID_IOCTL(ops, VIDIOC_ENUMOUTPUT, vidioc_enum_output);
612 SET_VALID_IOCTL(ops, VIDIOC_G_OUTPUT, vidioc_g_output);
613 SET_VALID_IOCTL(ops, VIDIOC_S_OUTPUT, vidioc_s_output);
614 /* Note: the control handler can also be passed through the filehandle,
615 and that can't be tested here. If the bit for these control ioctls
616 is set, then the ioctl is valid. But if it is 0, then it can still
617 be valid if the filehandle passed the control handler. */
618 if (vdev->ctrl_handler || ops->vidioc_queryctrl)
619 set_bit(_IOC_NR(VIDIOC_QUERYCTRL), valid_ioctls);
620 if (vdev->ctrl_handler || ops->vidioc_g_ctrl || ops->vidioc_g_ext_ctrls)
621 set_bit(_IOC_NR(VIDIOC_G_CTRL), valid_ioctls);
622 if (vdev->ctrl_handler || ops->vidioc_s_ctrl || ops->vidioc_s_ext_ctrls)
623 set_bit(_IOC_NR(VIDIOC_S_CTRL), valid_ioctls);
624 if (vdev->ctrl_handler || ops->vidioc_g_ext_ctrls)
625 set_bit(_IOC_NR(VIDIOC_G_EXT_CTRLS), valid_ioctls);
626 if (vdev->ctrl_handler || ops->vidioc_s_ext_ctrls)
627 set_bit(_IOC_NR(VIDIOC_S_EXT_CTRLS), valid_ioctls);
628 if (vdev->ctrl_handler || ops->vidioc_try_ext_ctrls)
629 set_bit(_IOC_NR(VIDIOC_TRY_EXT_CTRLS), valid_ioctls);
630 if (vdev->ctrl_handler || ops->vidioc_querymenu)
631 set_bit(_IOC_NR(VIDIOC_QUERYMENU), valid_ioctls);
632 SET_VALID_IOCTL(ops, VIDIOC_ENUMAUDIO, vidioc_enumaudio);
633 SET_VALID_IOCTL(ops, VIDIOC_G_AUDIO, vidioc_g_audio);
634 SET_VALID_IOCTL(ops, VIDIOC_S_AUDIO, vidioc_s_audio);
635 SET_VALID_IOCTL(ops, VIDIOC_ENUMAUDOUT, vidioc_enumaudout);
636 SET_VALID_IOCTL(ops, VIDIOC_G_AUDOUT, vidioc_g_audout);
637 SET_VALID_IOCTL(ops, VIDIOC_S_AUDOUT, vidioc_s_audout);
638 SET_VALID_IOCTL(ops, VIDIOC_G_MODULATOR, vidioc_g_modulator);
639 SET_VALID_IOCTL(ops, VIDIOC_S_MODULATOR, vidioc_s_modulator);
640 if (ops->vidioc_g_crop || ops->vidioc_g_selection)
641 set_bit(_IOC_NR(VIDIOC_G_CROP), valid_ioctls);
642 if (ops->vidioc_s_crop || ops->vidioc_s_selection)
643 set_bit(_IOC_NR(VIDIOC_S_CROP), valid_ioctls);
644 SET_VALID_IOCTL(ops, VIDIOC_G_SELECTION, vidioc_g_selection);
645 SET_VALID_IOCTL(ops, VIDIOC_S_SELECTION, vidioc_s_selection);
646 if (ops->vidioc_cropcap || ops->vidioc_g_selection)
647 set_bit(_IOC_NR(VIDIOC_CROPCAP), valid_ioctls);
648 SET_VALID_IOCTL(ops, VIDIOC_G_JPEGCOMP, vidioc_g_jpegcomp);
649 SET_VALID_IOCTL(ops, VIDIOC_S_JPEGCOMP, vidioc_s_jpegcomp);
650 SET_VALID_IOCTL(ops, VIDIOC_G_ENC_INDEX, vidioc_g_enc_index);
651 SET_VALID_IOCTL(ops, VIDIOC_ENCODER_CMD, vidioc_encoder_cmd);
652 SET_VALID_IOCTL(ops, VIDIOC_TRY_ENCODER_CMD, vidioc_try_encoder_cmd);
653 SET_VALID_IOCTL(ops, VIDIOC_DECODER_CMD, vidioc_decoder_cmd);
654 SET_VALID_IOCTL(ops, VIDIOC_TRY_DECODER_CMD, vidioc_try_decoder_cmd);
655 if (ops->vidioc_g_parm || vdev->current_norm)
656 set_bit(_IOC_NR(VIDIOC_G_PARM), valid_ioctls);
657 SET_VALID_IOCTL(ops, VIDIOC_S_PARM, vidioc_s_parm);
658 SET_VALID_IOCTL(ops, VIDIOC_G_TUNER, vidioc_g_tuner);
659 SET_VALID_IOCTL(ops, VIDIOC_S_TUNER, vidioc_s_tuner);
660 SET_VALID_IOCTL(ops, VIDIOC_G_FREQUENCY, vidioc_g_frequency);
661 SET_VALID_IOCTL(ops, VIDIOC_S_FREQUENCY, vidioc_s_frequency);
662 SET_VALID_IOCTL(ops, VIDIOC_G_SLICED_VBI_CAP, vidioc_g_sliced_vbi_cap);
663 SET_VALID_IOCTL(ops, VIDIOC_LOG_STATUS, vidioc_log_status);
664#ifdef CONFIG_VIDEO_ADV_DEBUG
665 SET_VALID_IOCTL(ops, VIDIOC_DBG_G_REGISTER, vidioc_g_register);
666 SET_VALID_IOCTL(ops, VIDIOC_DBG_S_REGISTER, vidioc_s_register);
667#endif
668 SET_VALID_IOCTL(ops, VIDIOC_DBG_G_CHIP_IDENT, vidioc_g_chip_ident);
669 SET_VALID_IOCTL(ops, VIDIOC_S_HW_FREQ_SEEK, vidioc_s_hw_freq_seek);
670 SET_VALID_IOCTL(ops, VIDIOC_ENUM_FRAMESIZES, vidioc_enum_framesizes);
671 SET_VALID_IOCTL(ops, VIDIOC_ENUM_FRAMEINTERVALS, vidioc_enum_frameintervals);
672 SET_VALID_IOCTL(ops, VIDIOC_ENUM_DV_PRESETS, vidioc_enum_dv_presets);
673 SET_VALID_IOCTL(ops, VIDIOC_S_DV_PRESET, vidioc_s_dv_preset);
674 SET_VALID_IOCTL(ops, VIDIOC_G_DV_PRESET, vidioc_g_dv_preset);
675 SET_VALID_IOCTL(ops, VIDIOC_QUERY_DV_PRESET, vidioc_query_dv_preset);
676 SET_VALID_IOCTL(ops, VIDIOC_S_DV_TIMINGS, vidioc_s_dv_timings);
677 SET_VALID_IOCTL(ops, VIDIOC_G_DV_TIMINGS, vidioc_g_dv_timings);
678 /* yes, really vidioc_subscribe_event */
679 SET_VALID_IOCTL(ops, VIDIOC_DQEVENT, vidioc_subscribe_event);
680 SET_VALID_IOCTL(ops, VIDIOC_SUBSCRIBE_EVENT, vidioc_subscribe_event);
681 SET_VALID_IOCTL(ops, VIDIOC_UNSUBSCRIBE_EVENT, vidioc_unsubscribe_event);
682 SET_VALID_IOCTL(ops, VIDIOC_CREATE_BUFS, vidioc_create_bufs);
683 SET_VALID_IOCTL(ops, VIDIOC_PREPARE_BUF, vidioc_prepare_buf);
684 bitmap_andnot(vdev->valid_ioctls, valid_ioctls, vdev->valid_ioctls,
685 BASE_VIDIOC_PRIVATE);
686}
687
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300688/**
Laurent Pinchart2096a5d2009-12-09 08:38:49 -0300689 * __video_register_device - register video4linux devices
Hans Verkuildc93a702008-12-19 21:28:27 -0300690 * @vdev: video device structure we want to register
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300691 * @type: type of device to register
Hans Verkuil22e22122009-09-06 07:13:14 -0300692 * @nr: which device node number (0 == /dev/video0, 1 == /dev/video1, ...
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300693 * -1 == first free)
Hans Verkuil6b5270d2009-09-06 07:54:00 -0300694 * @warn_if_nr_in_use: warn if the desired device node number
695 * was already in use and another number was chosen instead.
Laurent Pinchart2096a5d2009-12-09 08:38:49 -0300696 * @owner: module that owns the video device node
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300697 *
Hans Verkuil22e22122009-09-06 07:13:14 -0300698 * The registration code assigns minor numbers and device node numbers
699 * based on the requested type and registers the new device node with
700 * the kernel.
Hans Verkuil46b63372010-12-31 11:47:23 -0300701 *
702 * This function assumes that struct video_device was zeroed when it
703 * was allocated and does not contain any stale date.
704 *
Hans Verkuil22e22122009-09-06 07:13:14 -0300705 * An error is returned if no free minor or device node number could be
706 * found, or if the registration of the device node failed.
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300707 *
708 * Zero is returned on success.
709 *
710 * Valid types are
711 *
712 * %VFL_TYPE_GRABBER - A frame grabber
713 *
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300714 * %VFL_TYPE_VBI - Vertical blank data (undecoded)
715 *
716 * %VFL_TYPE_RADIO - A radio card
Laurent Pinchart2096a5d2009-12-09 08:38:49 -0300717 *
718 * %VFL_TYPE_SUBDEV - A subdevice
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300719 */
Laurent Pinchart2096a5d2009-12-09 08:38:49 -0300720int __video_register_device(struct video_device *vdev, int type, int nr,
721 int warn_if_nr_in_use, struct module *owner)
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300722{
723 int i = 0;
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300724 int ret;
Hans Verkuildd896012008-10-04 08:36:54 -0300725 int minor_offset = 0;
726 int minor_cnt = VIDEO_NUM_DEVICES;
727 const char *name_base;
Hans Verkuildc93a702008-12-19 21:28:27 -0300728
729 /* A minor value of -1 marks this video device as never
730 having been registered */
Trent Piepho428c8d12009-03-03 18:51:52 -0300731 vdev->minor = -1;
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300732
Hans Verkuild6e74972008-08-23 06:27:59 -0300733 /* the release callback MUST be present */
Guennadi Liakhovetski1fc2b5f2011-12-06 05:33:03 -0300734 if (WARN_ON(!vdev->release))
Henrik Kretzschmaree7aa9f2008-08-22 16:41:03 -0300735 return -EINVAL;
736
Sakari Ailus1babcb42010-03-23 09:25:26 -0300737 /* v4l2_fh support */
738 spin_lock_init(&vdev->fh_lock);
739 INIT_LIST_HEAD(&vdev->fh_list);
740
Hans Verkuildc93a702008-12-19 21:28:27 -0300741 /* Part 1: check device type */
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300742 switch (type) {
743 case VFL_TYPE_GRABBER:
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300744 name_base = "video";
745 break;
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300746 case VFL_TYPE_VBI:
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300747 name_base = "vbi";
748 break;
749 case VFL_TYPE_RADIO:
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300750 name_base = "radio";
751 break;
Laurent Pinchart2096a5d2009-12-09 08:38:49 -0300752 case VFL_TYPE_SUBDEV:
753 name_base = "v4l-subdev";
754 break;
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300755 default:
756 printk(KERN_ERR "%s called with unknown type: %d\n",
757 __func__, type);
Henrik Kretzschmar46f2c212008-09-03 16:47:39 -0300758 return -EINVAL;
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300759 }
760
Hans Verkuildc93a702008-12-19 21:28:27 -0300761 vdev->vfl_type = type;
762 vdev->cdev = NULL;
Hans Verkuil11bbc1c2010-05-16 09:24:06 -0300763 if (vdev->v4l2_dev) {
764 if (vdev->v4l2_dev->dev)
765 vdev->parent = vdev->v4l2_dev->dev;
766 if (vdev->ctrl_handler == NULL)
767 vdev->ctrl_handler = vdev->v4l2_dev->ctrl_handler;
Hans Verkuilb1a873a2011-03-22 10:14:07 -0300768 /* If the prio state pointer is NULL, then use the v4l2_device
769 prio state. */
770 if (vdev->prio == NULL)
Hans Verkuil0f62fd62011-02-24 10:42:24 -0300771 vdev->prio = &vdev->v4l2_dev->prio;
Hans Verkuil11bbc1c2010-05-16 09:24:06 -0300772 }
Hans Verkuildd896012008-10-04 08:36:54 -0300773
Hans Verkuil22e22122009-09-06 07:13:14 -0300774 /* Part 2: find a free minor, device node number and device index. */
Hans Verkuildd896012008-10-04 08:36:54 -0300775#ifdef CONFIG_VIDEO_FIXED_MINOR_RANGES
776 /* Keep the ranges for the first four types for historical
777 * reasons.
778 * Newer devices (not yet in place) should use the range
779 * of 128-191 and just pick the first free minor there
780 * (new style). */
781 switch (type) {
782 case VFL_TYPE_GRABBER:
783 minor_offset = 0;
784 minor_cnt = 64;
785 break;
786 case VFL_TYPE_RADIO:
787 minor_offset = 64;
788 minor_cnt = 64;
789 break;
Hans Verkuildd896012008-10-04 08:36:54 -0300790 case VFL_TYPE_VBI:
791 minor_offset = 224;
792 minor_cnt = 32;
793 break;
794 default:
795 minor_offset = 128;
796 minor_cnt = 64;
797 break;
798 }
799#endif
800
Hans Verkuil22e22122009-09-06 07:13:14 -0300801 /* Pick a device node number */
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300802 mutex_lock(&videodev_lock);
Hans Verkuil5062cb72009-09-07 03:40:24 -0300803 nr = devnode_find(vdev, nr == -1 ? 0 : nr, minor_cnt);
Hans Verkuildd896012008-10-04 08:36:54 -0300804 if (nr == minor_cnt)
Hans Verkuil5062cb72009-09-07 03:40:24 -0300805 nr = devnode_find(vdev, 0, minor_cnt);
Hans Verkuildd896012008-10-04 08:36:54 -0300806 if (nr == minor_cnt) {
Hans Verkuil22e22122009-09-06 07:13:14 -0300807 printk(KERN_ERR "could not get a free device node number\n");
Hans Verkuildd896012008-10-04 08:36:54 -0300808 mutex_unlock(&videodev_lock);
809 return -ENFILE;
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300810 }
Hans Verkuildd896012008-10-04 08:36:54 -0300811#ifdef CONFIG_VIDEO_FIXED_MINOR_RANGES
Hans Verkuil22e22122009-09-06 07:13:14 -0300812 /* 1-on-1 mapping of device node number to minor number */
Hans Verkuildd896012008-10-04 08:36:54 -0300813 i = nr;
814#else
Hans Verkuil22e22122009-09-06 07:13:14 -0300815 /* The device node number and minor numbers are independent, so
816 we just find the first free minor number. */
Hans Verkuildd896012008-10-04 08:36:54 -0300817 for (i = 0; i < VIDEO_NUM_DEVICES; i++)
818 if (video_device[i] == NULL)
819 break;
820 if (i == VIDEO_NUM_DEVICES) {
821 mutex_unlock(&videodev_lock);
822 printk(KERN_ERR "could not get a free minor\n");
823 return -ENFILE;
824 }
825#endif
Hans Verkuildc93a702008-12-19 21:28:27 -0300826 vdev->minor = i + minor_offset;
827 vdev->num = nr;
Hans Verkuil5062cb72009-09-07 03:40:24 -0300828 devnode_set(vdev);
829
Hans Verkuildc93a702008-12-19 21:28:27 -0300830 /* Should not happen since we thought this minor was free */
831 WARN_ON(video_device[vdev->minor] != NULL);
Hans Verkuil7ae0cd92009-06-19 11:32:56 -0300832 vdev->index = get_index(vdev);
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300833 mutex_unlock(&videodev_lock);
834
Hans Verkuil48ea0be2012-05-10 05:36:00 -0300835 if (vdev->ioctl_ops)
836 determine_valid_ioctls(vdev);
837
Hans Verkuildc93a702008-12-19 21:28:27 -0300838 /* Part 3: Initialize the character device */
839 vdev->cdev = cdev_alloc();
840 if (vdev->cdev == NULL) {
841 ret = -ENOMEM;
842 goto cleanup;
843 }
Arnd Bergmann86a5ef72010-07-04 00:15:09 +0200844 vdev->cdev->ops = &v4l2_fops;
Laurent Pinchart2096a5d2009-12-09 08:38:49 -0300845 vdev->cdev->owner = owner;
Hans Verkuildc93a702008-12-19 21:28:27 -0300846 ret = cdev_add(vdev->cdev, MKDEV(VIDEO_MAJOR, vdev->minor), 1);
Hans Verkuil7f8ecfa2008-08-29 17:31:35 -0300847 if (ret < 0) {
848 printk(KERN_ERR "%s: cdev_add failed\n", __func__);
Hans Verkuildc93a702008-12-19 21:28:27 -0300849 kfree(vdev->cdev);
850 vdev->cdev = NULL;
851 goto cleanup;
Hans Verkuil7f8ecfa2008-08-29 17:31:35 -0300852 }
Hans Verkuildc93a702008-12-19 21:28:27 -0300853
854 /* Part 4: register the device with sysfs */
Hans Verkuildc93a702008-12-19 21:28:27 -0300855 vdev->dev.class = &video_class;
856 vdev->dev.devt = MKDEV(VIDEO_MAJOR, vdev->minor);
857 if (vdev->parent)
858 vdev->dev.parent = vdev->parent;
Hans Verkuil22e22122009-09-06 07:13:14 -0300859 dev_set_name(&vdev->dev, "%s%d", name_base, vdev->num);
Hans Verkuildc93a702008-12-19 21:28:27 -0300860 ret = device_register(&vdev->dev);
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300861 if (ret < 0) {
862 printk(KERN_ERR "%s: device_register failed\n", __func__);
Hans Verkuildc93a702008-12-19 21:28:27 -0300863 goto cleanup;
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300864 }
Hans Verkuildc93a702008-12-19 21:28:27 -0300865 /* Register the release callback that will be called when the last
866 reference to the device goes away. */
867 vdev->dev.release = v4l2_device_release;
868
Hans Verkuil6b5270d2009-09-06 07:54:00 -0300869 if (nr != -1 && nr != vdev->num && warn_if_nr_in_use)
Laurent Pincharteac8ea52009-11-27 13:56:50 -0300870 printk(KERN_WARNING "%s: requested %s%d, got %s\n", __func__,
871 name_base, nr, video_device_node_name(vdev));
Hans Verkuilbedf8bc2011-03-12 06:37:19 -0300872
873 /* Increase v4l2_device refcount */
874 if (vdev->v4l2_dev)
875 v4l2_device_get(vdev->v4l2_dev);
876
Laurent Pinchart2c0ab672009-12-09 08:40:10 -0300877#if defined(CONFIG_MEDIA_CONTROLLER)
878 /* Part 5: Register the entity. */
Laurent Pinchartc4f0b782011-04-08 09:04:06 -0300879 if (vdev->v4l2_dev && vdev->v4l2_dev->mdev &&
880 vdev->vfl_type != VFL_TYPE_SUBDEV) {
Laurent Pinchart2c0ab672009-12-09 08:40:10 -0300881 vdev->entity.type = MEDIA_ENT_T_DEVNODE_V4L;
882 vdev->entity.name = vdev->name;
Clemens Ladischfa5034c2011-11-05 18:42:01 -0300883 vdev->entity.info.v4l.major = VIDEO_MAJOR;
884 vdev->entity.info.v4l.minor = vdev->minor;
Laurent Pinchart2c0ab672009-12-09 08:40:10 -0300885 ret = media_device_register_entity(vdev->v4l2_dev->mdev,
886 &vdev->entity);
887 if (ret < 0)
888 printk(KERN_WARNING
889 "%s: media_device_register_entity failed\n",
890 __func__);
891 }
892#endif
893 /* Part 6: Activate this minor. The char device can now be used. */
Laurent Pinchart957b4aa2009-11-27 13:57:22 -0300894 set_bit(V4L2_FL_REGISTERED, &vdev->flags);
Hans Verkuildc93a702008-12-19 21:28:27 -0300895 mutex_lock(&videodev_lock);
896 video_device[vdev->minor] = vdev;
897 mutex_unlock(&videodev_lock);
Laurent Pinchart2c0ab672009-12-09 08:40:10 -0300898
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300899 return 0;
900
Hans Verkuildc93a702008-12-19 21:28:27 -0300901cleanup:
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300902 mutex_lock(&videodev_lock);
Hans Verkuildc93a702008-12-19 21:28:27 -0300903 if (vdev->cdev)
904 cdev_del(vdev->cdev);
Hans Verkuil5062cb72009-09-07 03:40:24 -0300905 devnode_clear(vdev);
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300906 mutex_unlock(&videodev_lock);
Hans Verkuildc93a702008-12-19 21:28:27 -0300907 /* Mark this video device as never having been registered. */
908 vdev->minor = -1;
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300909 return ret;
910}
Laurent Pinchart2096a5d2009-12-09 08:38:49 -0300911EXPORT_SYMBOL(__video_register_device);
Hans Verkuil6b5270d2009-09-06 07:54:00 -0300912
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300913/**
914 * video_unregister_device - unregister a video4linux device
Hans Verkuildc93a702008-12-19 21:28:27 -0300915 * @vdev: the device to unregister
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300916 *
Hans Verkuildc93a702008-12-19 21:28:27 -0300917 * This unregisters the passed device. Future open calls will
918 * be met with errors.
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300919 */
Hans Verkuildc93a702008-12-19 21:28:27 -0300920void video_unregister_device(struct video_device *vdev)
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300921{
Hans Verkuildc93a702008-12-19 21:28:27 -0300922 /* Check if vdev was ever registered at all */
Laurent Pinchart957b4aa2009-11-27 13:57:22 -0300923 if (!vdev || !video_is_registered(vdev))
Hans Verkuildc93a702008-12-19 21:28:27 -0300924 return;
925
Hans Verkuilca9afe62010-11-26 06:54:53 -0300926 mutex_lock(&videodev_lock);
927 /* This must be in a critical section to prevent a race with v4l2_open.
928 * Once this bit has been cleared video_get may never be called again.
929 */
Laurent Pinchart957b4aa2009-11-27 13:57:22 -0300930 clear_bit(V4L2_FL_REGISTERED, &vdev->flags);
Hans Verkuilca9afe62010-11-26 06:54:53 -0300931 mutex_unlock(&videodev_lock);
Hans Verkuildc93a702008-12-19 21:28:27 -0300932 device_unregister(&vdev->dev);
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300933}
934EXPORT_SYMBOL(video_unregister_device);
935
936/*
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300937 * Initialise video for linux
938 */
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300939static int __init videodev_init(void)
940{
Hans Verkuil7f8ecfa2008-08-29 17:31:35 -0300941 dev_t dev = MKDEV(VIDEO_MAJOR, 0);
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300942 int ret;
943
944 printk(KERN_INFO "Linux video capture interface: v2.00\n");
Hans Verkuil7f8ecfa2008-08-29 17:31:35 -0300945 ret = register_chrdev_region(dev, VIDEO_NUM_DEVICES, VIDEO_NAME);
946 if (ret < 0) {
947 printk(KERN_WARNING "videodev: unable to get major %d\n",
948 VIDEO_MAJOR);
949 return ret;
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300950 }
951
952 ret = class_register(&video_class);
953 if (ret < 0) {
Hans Verkuil7f8ecfa2008-08-29 17:31:35 -0300954 unregister_chrdev_region(dev, VIDEO_NUM_DEVICES);
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300955 printk(KERN_WARNING "video_dev: class_register failed\n");
956 return -EIO;
957 }
958
959 return 0;
960}
961
962static void __exit videodev_exit(void)
963{
Hans Verkuil7f8ecfa2008-08-29 17:31:35 -0300964 dev_t dev = MKDEV(VIDEO_MAJOR, 0);
965
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300966 class_unregister(&video_class);
Hans Verkuil7f8ecfa2008-08-29 17:31:35 -0300967 unregister_chrdev_region(dev, VIDEO_NUM_DEVICES);
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300968}
969
Bhupesh Sharmaee981c62012-03-12 05:09:02 -0300970subsys_initcall(videodev_init);
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300971module_exit(videodev_exit)
972
973MODULE_AUTHOR("Alan Cox, Mauro Carvalho Chehab <mchehab@infradead.org>");
974MODULE_DESCRIPTION("Device registrar for Video4Linux drivers v2");
975MODULE_LICENSE("GPL");
Scott James Remnantcbb72b02009-03-02 15:40:57 -0300976MODULE_ALIAS_CHARDEV_MAJOR(VIDEO_MAJOR);
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300977
978
979/*
980 * Local variables:
981 * c-basic-offset: 8
982 * End:
983 */