blob: 359e23290a7e99ae0301a6d6844a445343cb900e [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>
29#include <asm/system.h>
30
31#include <media/v4l2-common.h>
Hans Verkuil9bea3512008-12-23 07:35:17 -030032#include <media/v4l2-device.h>
Hans Verkuilbec43662008-12-30 06:58:20 -030033#include <media/v4l2-ioctl.h>
Hans Verkuil27a5e6d2008-07-20 08:43:17 -030034
35#define VIDEO_NUM_DEVICES 256
36#define VIDEO_NAME "video4linux"
37
38/*
39 * sysfs stuff
40 */
41
42static ssize_t show_index(struct device *cd,
43 struct device_attribute *attr, char *buf)
44{
Hans Verkuildc93a702008-12-19 21:28:27 -030045 struct video_device *vdev = to_video_device(cd);
Hans Verkuilbfa8a272008-08-23 07:48:38 -030046
Hans Verkuildc93a702008-12-19 21:28:27 -030047 return sprintf(buf, "%i\n", vdev->index);
Hans Verkuil27a5e6d2008-07-20 08:43:17 -030048}
49
50static ssize_t show_name(struct device *cd,
51 struct device_attribute *attr, char *buf)
52{
Hans Verkuildc93a702008-12-19 21:28:27 -030053 struct video_device *vdev = to_video_device(cd);
Hans Verkuilbfa8a272008-08-23 07:48:38 -030054
Hans Verkuildc93a702008-12-19 21:28:27 -030055 return sprintf(buf, "%.*s\n", (int)sizeof(vdev->name), vdev->name);
Hans Verkuil27a5e6d2008-07-20 08:43:17 -030056}
57
58static struct device_attribute video_device_attrs[] = {
59 __ATTR(name, S_IRUGO, show_name, NULL),
60 __ATTR(index, S_IRUGO, show_index, NULL),
61 __ATTR_NULL
62};
63
Hans Verkuil7f8ecfa2008-08-29 17:31:35 -030064/*
65 * Active devices
66 */
67static struct video_device *video_device[VIDEO_NUM_DEVICES];
68static DEFINE_MUTEX(videodev_lock);
Hans Verkuil22e22122009-09-06 07:13:14 -030069static DECLARE_BITMAP(devnode_nums[VFL_TYPE_MAX], VIDEO_NUM_DEVICES);
Hans Verkuil7f8ecfa2008-08-29 17:31:35 -030070
Hans Verkuil5062cb72009-09-07 03:40:24 -030071/* Device node utility functions */
72
73/* Note: these utility functions all assume that vfl_type is in the range
74 [0, VFL_TYPE_MAX-1]. */
75
76#ifdef CONFIG_VIDEO_FIXED_MINOR_RANGES
77/* Return the bitmap corresponding to vfl_type. */
78static inline unsigned long *devnode_bits(int vfl_type)
79{
80 /* Any types not assigned to fixed minor ranges must be mapped to
81 one single bitmap for the purposes of finding a free node number
82 since all those unassigned types use the same minor range. */
Hans Verkuil226c0ee2010-08-06 12:48:00 -030083 int idx = (vfl_type > VFL_TYPE_RADIO) ? VFL_TYPE_MAX - 1 : vfl_type;
Hans Verkuil5062cb72009-09-07 03:40:24 -030084
85 return devnode_nums[idx];
86}
87#else
88/* Return the bitmap corresponding to vfl_type. */
89static inline unsigned long *devnode_bits(int vfl_type)
90{
91 return devnode_nums[vfl_type];
92}
93#endif
94
95/* Mark device node number vdev->num as used */
96static inline void devnode_set(struct video_device *vdev)
97{
98 set_bit(vdev->num, devnode_bits(vdev->vfl_type));
99}
100
101/* Mark device node number vdev->num as unused */
102static inline void devnode_clear(struct video_device *vdev)
103{
104 clear_bit(vdev->num, devnode_bits(vdev->vfl_type));
105}
106
107/* Try to find a free device node number in the range [from, to> */
108static inline int devnode_find(struct video_device *vdev, int from, int to)
109{
110 return find_next_zero_bit(devnode_bits(vdev->vfl_type), to, from);
111}
112
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300113struct video_device *video_device_alloc(void)
114{
Hans Verkuilbfa8a272008-08-23 07:48:38 -0300115 return kzalloc(sizeof(struct video_device), GFP_KERNEL);
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300116}
117EXPORT_SYMBOL(video_device_alloc);
118
Hans Verkuildc93a702008-12-19 21:28:27 -0300119void video_device_release(struct video_device *vdev)
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300120{
Hans Verkuildc93a702008-12-19 21:28:27 -0300121 kfree(vdev);
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300122}
123EXPORT_SYMBOL(video_device_release);
124
Hans Verkuildc93a702008-12-19 21:28:27 -0300125void video_device_release_empty(struct video_device *vdev)
Hans Verkuilf9e86b52008-08-23 05:47:41 -0300126{
127 /* Do nothing */
128 /* Only valid when the video_device struct is a static. */
129}
130EXPORT_SYMBOL(video_device_release_empty);
131
Hans Verkuildc93a702008-12-19 21:28:27 -0300132static inline void video_get(struct video_device *vdev)
Hans Verkuil7f8ecfa2008-08-29 17:31:35 -0300133{
Hans Verkuildc93a702008-12-19 21:28:27 -0300134 get_device(&vdev->dev);
135}
136
137static inline void video_put(struct video_device *vdev)
138{
139 put_device(&vdev->dev);
140}
141
142/* Called when the last user of the video device exits. */
143static void v4l2_device_release(struct device *cd)
144{
145 struct video_device *vdev = to_video_device(cd);
Hans Verkuil7f8ecfa2008-08-29 17:31:35 -0300146
147 mutex_lock(&videodev_lock);
Hans Verkuildc93a702008-12-19 21:28:27 -0300148 if (video_device[vdev->minor] != vdev) {
Hans Verkuil6ea9a182008-08-30 09:40:47 -0300149 mutex_unlock(&videodev_lock);
Hans Verkuildc93a702008-12-19 21:28:27 -0300150 /* should not happen */
151 WARN_ON(1);
Hans Verkuil6ea9a182008-08-30 09:40:47 -0300152 return;
153 }
Hans Verkuil7f8ecfa2008-08-29 17:31:35 -0300154
155 /* Free up this device for reuse */
Hans Verkuildc93a702008-12-19 21:28:27 -0300156 video_device[vdev->minor] = NULL;
157
158 /* Delete the cdev on this minor as well */
159 cdev_del(vdev->cdev);
160 /* Just in case some driver tries to access this from
161 the release() callback. */
162 vdev->cdev = NULL;
163
Hans Verkuil22e22122009-09-06 07:13:14 -0300164 /* Mark device node number as free */
Hans Verkuil5062cb72009-09-07 03:40:24 -0300165 devnode_clear(vdev);
Hans Verkuildc93a702008-12-19 21:28:27 -0300166
Hans Verkuil7f8ecfa2008-08-29 17:31:35 -0300167 mutex_unlock(&videodev_lock);
168
Hans Verkuil7f8ecfa2008-08-29 17:31:35 -0300169 /* Release video_device and perform other
170 cleanups as needed. */
Hans Verkuildc93a702008-12-19 21:28:27 -0300171 vdev->release(vdev);
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300172}
173
174static struct class video_class = {
175 .name = VIDEO_NAME,
176 .dev_attrs = video_device_attrs,
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300177};
178
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300179struct video_device *video_devdata(struct file *file)
180{
181 return video_device[iminor(file->f_path.dentry->d_inode)];
182}
183EXPORT_SYMBOL(video_devdata);
184
Hans Verkuildc93a702008-12-19 21:28:27 -0300185static ssize_t v4l2_read(struct file *filp, char __user *buf,
186 size_t sz, loff_t *off)
187{
188 struct video_device *vdev = video_devdata(filp);
Hans Verkuil28778422010-11-26 06:43:51 -0300189 int ret = -ENODEV;
Hans Verkuildc93a702008-12-19 21:28:27 -0300190
191 if (!vdev->fops->read)
192 return -EINVAL;
Hans Verkuil28778422010-11-26 06:43:51 -0300193 if (vdev->lock && mutex_lock_interruptible(vdev->lock))
194 return -ERESTARTSYS;
Hans Verkuilee6869a2010-09-26 08:47:38 -0300195 if (video_is_registered(vdev))
196 ret = vdev->fops->read(filp, buf, sz, off);
197 if (vdev->lock)
198 mutex_unlock(vdev->lock);
199 return ret;
Hans Verkuildc93a702008-12-19 21:28:27 -0300200}
201
202static ssize_t v4l2_write(struct file *filp, const char __user *buf,
203 size_t sz, loff_t *off)
204{
205 struct video_device *vdev = video_devdata(filp);
Hans Verkuil28778422010-11-26 06:43:51 -0300206 int ret = -ENODEV;
Hans Verkuildc93a702008-12-19 21:28:27 -0300207
208 if (!vdev->fops->write)
209 return -EINVAL;
Hans Verkuil28778422010-11-26 06:43:51 -0300210 if (vdev->lock && mutex_lock_interruptible(vdev->lock))
211 return -ERESTARTSYS;
Hans Verkuilee6869a2010-09-26 08:47:38 -0300212 if (video_is_registered(vdev))
213 ret = vdev->fops->write(filp, buf, sz, off);
214 if (vdev->lock)
215 mutex_unlock(vdev->lock);
216 return ret;
Hans Verkuildc93a702008-12-19 21:28:27 -0300217}
218
219static unsigned int v4l2_poll(struct file *filp, struct poll_table_struct *poll)
220{
221 struct video_device *vdev = video_devdata(filp);
Hans Verkuil28778422010-11-26 06:43:51 -0300222 int ret = POLLERR | POLLHUP;
Hans Verkuildc93a702008-12-19 21:28:27 -0300223
Hans Verkuilee6869a2010-09-26 08:47:38 -0300224 if (!vdev->fops->poll)
Hans Verkuil28778422010-11-26 06:43:51 -0300225 return DEFAULT_POLLMASK;
Hans Verkuilee6869a2010-09-26 08:47:38 -0300226 if (vdev->lock)
227 mutex_lock(vdev->lock);
228 if (video_is_registered(vdev))
229 ret = vdev->fops->poll(filp, poll);
230 if (vdev->lock)
231 mutex_unlock(vdev->lock);
232 return ret;
Hans Verkuildc93a702008-12-19 21:28:27 -0300233}
234
Arnd Bergmann86a5ef72010-07-04 00:15:09 +0200235static long v4l2_ioctl(struct file *filp, unsigned int cmd, unsigned long arg)
Hans Verkuildc93a702008-12-19 21:28:27 -0300236{
237 struct video_device *vdev = video_devdata(filp);
Mauro Carvalho Chehab72420632010-10-09 16:43:40 -0300238 int ret = -ENODEV;
Hans Verkuildc93a702008-12-19 21:28:27 -0300239
Arnd Bergmann86a5ef72010-07-04 00:15:09 +0200240 if (vdev->fops->unlocked_ioctl) {
Hans Verkuil28778422010-11-26 06:43:51 -0300241 if (vdev->lock && mutex_lock_interruptible(vdev->lock))
242 return -ERESTARTSYS;
Mauro Carvalho Chehab72420632010-10-09 16:43:40 -0300243 if (video_is_registered(vdev))
244 ret = vdev->fops->unlocked_ioctl(filp, cmd, arg);
Hans Verkuilee6869a2010-09-26 08:47:38 -0300245 if (vdev->lock)
246 mutex_unlock(vdev->lock);
Arnd Bergmann86a5ef72010-07-04 00:15:09 +0200247 } else if (vdev->fops->ioctl) {
Hans Verkuil879aa242010-11-26 06:47:28 -0300248 /* This code path is a replacement for the BKL. It is a major
249 * hack but it will have to do for those drivers that are not
250 * yet converted to use unlocked_ioctl.
251 *
252 * There are two options: if the driver implements struct
253 * v4l2_device, then the lock defined there is used to
254 * serialize the ioctls. Otherwise the v4l2 core lock defined
255 * below is used. This lock is really bad since it serializes
256 * completely independent devices.
257 *
258 * Both variants suffer from the same problem: if the driver
259 * sleeps, then it blocks all ioctls since the lock is still
260 * held. This is very common for VIDIOC_DQBUF since that
261 * normally waits for a frame to arrive. As a result any other
262 * ioctl calls will proceed very, very slowly since each call
263 * will have to wait for the VIDIOC_QBUF to finish. Things that
264 * should take 0.01s may now take 10-20 seconds.
265 *
266 * The workaround is to *not* take the lock for VIDIOC_DQBUF.
267 * This actually works OK for videobuf-based drivers, since
268 * videobuf will take its own internal lock.
269 */
Arnd Bergmann0edf2e52010-10-27 09:30:32 -0300270 static DEFINE_MUTEX(v4l2_ioctl_mutex);
Hans Verkuil879aa242010-11-26 06:47:28 -0300271 struct mutex *m = vdev->v4l2_dev ?
272 &vdev->v4l2_dev->ioctl_lock : &v4l2_ioctl_mutex;
Arnd Bergmann0edf2e52010-10-27 09:30:32 -0300273
Hans Verkuil879aa242010-11-26 06:47:28 -0300274 if (cmd != VIDIOC_DQBUF && mutex_lock_interruptible(m))
275 return -ERESTARTSYS;
Mauro Carvalho Chehab72420632010-10-09 16:43:40 -0300276 if (video_is_registered(vdev))
277 ret = vdev->fops->ioctl(filp, cmd, arg);
Hans Verkuil879aa242010-11-26 06:47:28 -0300278 if (cmd != VIDIOC_DQBUF)
279 mutex_unlock(m);
Arnd Bergmann86a5ef72010-07-04 00:15:09 +0200280 } else
281 ret = -ENOTTY;
Hans Verkuildc93a702008-12-19 21:28:27 -0300282
Arnd Bergmann86a5ef72010-07-04 00:15:09 +0200283 return ret;
Hans Verkuildc93a702008-12-19 21:28:27 -0300284}
285
Hans Verkuildc93a702008-12-19 21:28:27 -0300286static int v4l2_mmap(struct file *filp, struct vm_area_struct *vm)
287{
288 struct video_device *vdev = video_devdata(filp);
Hans Verkuilee6869a2010-09-26 08:47:38 -0300289 int ret = -ENODEV;
Hans Verkuildc93a702008-12-19 21:28:27 -0300290
Hans Verkuilee6869a2010-09-26 08:47:38 -0300291 if (!vdev->fops->mmap)
292 return ret;
Hans Verkuil28778422010-11-26 06:43:51 -0300293 if (vdev->lock && mutex_lock_interruptible(vdev->lock))
294 return -ERESTARTSYS;
Hans Verkuilee6869a2010-09-26 08:47:38 -0300295 if (video_is_registered(vdev))
296 ret = vdev->fops->mmap(filp, vm);
297 if (vdev->lock)
298 mutex_unlock(vdev->lock);
299 return ret;
Hans Verkuildc93a702008-12-19 21:28:27 -0300300}
301
302/* Override for the open function */
303static int v4l2_open(struct inode *inode, struct file *filp)
304{
305 struct video_device *vdev;
Hans Verkuil65d9ff92009-03-29 20:19:38 -0300306 int ret = 0;
Hans Verkuildc93a702008-12-19 21:28:27 -0300307
308 /* Check if the video device is available */
309 mutex_lock(&videodev_lock);
310 vdev = video_devdata(filp);
Hans Verkuilee6869a2010-09-26 08:47:38 -0300311 /* return ENODEV if the video device has already been removed. */
Hans Verkuilca9afe62010-11-26 06:54:53 -0300312 if (vdev == NULL || !video_is_registered(vdev)) {
Hans Verkuildc93a702008-12-19 21:28:27 -0300313 mutex_unlock(&videodev_lock);
314 return -ENODEV;
315 }
316 /* and increase the device refcount */
317 video_get(vdev);
318 mutex_unlock(&videodev_lock);
Hans Verkuilee6869a2010-09-26 08:47:38 -0300319 if (vdev->fops->open) {
Hans Verkuil28778422010-11-26 06:43:51 -0300320 if (vdev->lock && mutex_lock_interruptible(vdev->lock)) {
321 ret = -ERESTARTSYS;
322 goto err;
323 }
Hans Verkuilee6869a2010-09-26 08:47:38 -0300324 if (video_is_registered(vdev))
325 ret = vdev->fops->open(filp);
326 else
327 ret = -ENODEV;
328 if (vdev->lock)
329 mutex_unlock(vdev->lock);
330 }
Hans Verkuil65d9ff92009-03-29 20:19:38 -0300331
Hans Verkuil28778422010-11-26 06:43:51 -0300332err:
Hans Verkuildc93a702008-12-19 21:28:27 -0300333 /* decrease the refcount in case of an error */
334 if (ret)
335 video_put(vdev);
336 return ret;
337}
338
339/* Override for the release function */
340static int v4l2_release(struct inode *inode, struct file *filp)
341{
342 struct video_device *vdev = video_devdata(filp);
Hans Verkuil65d9ff92009-03-29 20:19:38 -0300343 int ret = 0;
344
Hans Verkuilee6869a2010-09-26 08:47:38 -0300345 if (vdev->fops->release) {
346 if (vdev->lock)
347 mutex_lock(vdev->lock);
Hans Verkuil65d9ff92009-03-29 20:19:38 -0300348 vdev->fops->release(filp);
Hans Verkuilee6869a2010-09-26 08:47:38 -0300349 if (vdev->lock)
350 mutex_unlock(vdev->lock);
351 }
Hans Verkuildc93a702008-12-19 21:28:27 -0300352
353 /* decrease the refcount unconditionally since the release()
354 return value is ignored. */
355 video_put(vdev);
356 return ret;
357}
358
Hans Verkuildc93a702008-12-19 21:28:27 -0300359static const struct file_operations v4l2_fops = {
360 .owner = THIS_MODULE,
361 .read = v4l2_read,
362 .write = v4l2_write,
363 .open = v4l2_open,
364 .mmap = v4l2_mmap,
Arnd Bergmann86a5ef72010-07-04 00:15:09 +0200365 .unlocked_ioctl = v4l2_ioctl,
Hans Verkuildc93a702008-12-19 21:28:27 -0300366#ifdef CONFIG_COMPAT
Hans Verkuil9bb7cde2008-12-30 06:42:40 -0300367 .compat_ioctl = v4l2_compat_ioctl32,
Hans Verkuildc93a702008-12-19 21:28:27 -0300368#endif
369 .release = v4l2_release,
370 .poll = v4l2_poll,
371 .llseek = no_llseek,
372};
373
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300374/**
Hans Verkuil7ae0cd92009-06-19 11:32:56 -0300375 * get_index - assign stream index number based on parent device
Hans Verkuildc93a702008-12-19 21:28:27 -0300376 * @vdev: video_device to assign index number to, vdev->parent should be assigned
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300377 *
Hans Verkuildc93a702008-12-19 21:28:27 -0300378 * Note that when this is called the new device has not yet been registered
Hans Verkuil7ae0cd92009-06-19 11:32:56 -0300379 * in the video_device array, but it was able to obtain a minor number.
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300380 *
Hans Verkuil7ae0cd92009-06-19 11:32:56 -0300381 * This means that we can always obtain a free stream index number since
382 * the worst case scenario is that there are VIDEO_NUM_DEVICES - 1 slots in
383 * use of the video_device array.
384 *
385 * Returns a free index number.
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300386 */
Hans Verkuil7ae0cd92009-06-19 11:32:56 -0300387static int get_index(struct video_device *vdev)
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300388{
Hans Verkuil775a05d2009-02-14 11:31:01 -0300389 /* This can be static since this function is called with the global
390 videodev_lock held. */
391 static DECLARE_BITMAP(used, VIDEO_NUM_DEVICES);
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300392 int i;
393
Hans Verkuil7ae0cd92009-06-19 11:32:56 -0300394 /* Some drivers do not set the parent. In that case always return 0. */
Hans Verkuil806e5b72008-12-19 09:10:56 -0300395 if (vdev->parent == NULL)
Hans Verkuil7ae0cd92009-06-19 11:32:56 -0300396 return 0;
Hans Verkuil775a05d2009-02-14 11:31:01 -0300397
398 bitmap_zero(used, VIDEO_NUM_DEVICES);
Hans Verkuil806e5b72008-12-19 09:10:56 -0300399
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300400 for (i = 0; i < VIDEO_NUM_DEVICES; i++) {
401 if (video_device[i] != NULL &&
Hans Verkuil5e85e732008-07-20 06:31:39 -0300402 video_device[i]->parent == vdev->parent) {
Hans Verkuil775a05d2009-02-14 11:31:01 -0300403 set_bit(video_device[i]->index, used);
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300404 }
405 }
406
Hans Verkuil7ae0cd92009-06-19 11:32:56 -0300407 return find_first_zero_bit(used, VIDEO_NUM_DEVICES);
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300408}
409
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300410/**
Hans Verkuil7ae0cd92009-06-19 11:32:56 -0300411 * video_register_device - register video4linux devices
Hans Verkuildc93a702008-12-19 21:28:27 -0300412 * @vdev: video device structure we want to register
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300413 * @type: type of device to register
Hans Verkuil22e22122009-09-06 07:13:14 -0300414 * @nr: which device node number (0 == /dev/video0, 1 == /dev/video1, ...
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300415 * -1 == first free)
Hans Verkuil6b5270d2009-09-06 07:54:00 -0300416 * @warn_if_nr_in_use: warn if the desired device node number
417 * was already in use and another number was chosen instead.
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300418 *
Hans Verkuil22e22122009-09-06 07:13:14 -0300419 * The registration code assigns minor numbers and device node numbers
420 * based on the requested type and registers the new device node with
421 * the kernel.
422 * An error is returned if no free minor or device node number could be
423 * found, or if the registration of the device node failed.
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300424 *
425 * Zero is returned on success.
426 *
427 * Valid types are
428 *
429 * %VFL_TYPE_GRABBER - A frame grabber
430 *
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300431 * %VFL_TYPE_VBI - Vertical blank data (undecoded)
432 *
433 * %VFL_TYPE_RADIO - A radio card
434 */
Hans Verkuil6b5270d2009-09-06 07:54:00 -0300435static int __video_register_device(struct video_device *vdev, int type, int nr,
436 int warn_if_nr_in_use)
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300437{
438 int i = 0;
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300439 int ret;
Hans Verkuildd896012008-10-04 08:36:54 -0300440 int minor_offset = 0;
441 int minor_cnt = VIDEO_NUM_DEVICES;
442 const char *name_base;
Anatolij Gustschin1bb64192010-07-01 14:21:39 -0300443 void *priv = vdev->dev.p;
Hans Verkuildc93a702008-12-19 21:28:27 -0300444
445 /* A minor value of -1 marks this video device as never
446 having been registered */
Trent Piepho428c8d12009-03-03 18:51:52 -0300447 vdev->minor = -1;
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300448
Hans Verkuild6e74972008-08-23 06:27:59 -0300449 /* the release callback MUST be present */
Trent Piepho428c8d12009-03-03 18:51:52 -0300450 WARN_ON(!vdev->release);
451 if (!vdev->release)
Henrik Kretzschmaree7aa9f2008-08-22 16:41:03 -0300452 return -EINVAL;
453
Sakari Ailus1babcb42010-03-23 09:25:26 -0300454 /* v4l2_fh support */
455 spin_lock_init(&vdev->fh_lock);
456 INIT_LIST_HEAD(&vdev->fh_list);
457
Hans Verkuildc93a702008-12-19 21:28:27 -0300458 /* Part 1: check device type */
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300459 switch (type) {
460 case VFL_TYPE_GRABBER:
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300461 name_base = "video";
462 break;
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300463 case VFL_TYPE_VBI:
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300464 name_base = "vbi";
465 break;
466 case VFL_TYPE_RADIO:
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300467 name_base = "radio";
468 break;
469 default:
470 printk(KERN_ERR "%s called with unknown type: %d\n",
471 __func__, type);
Henrik Kretzschmar46f2c212008-09-03 16:47:39 -0300472 return -EINVAL;
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300473 }
474
Hans Verkuildc93a702008-12-19 21:28:27 -0300475 vdev->vfl_type = type;
476 vdev->cdev = NULL;
Hans Verkuil11bbc1c2010-05-16 09:24:06 -0300477 if (vdev->v4l2_dev) {
478 if (vdev->v4l2_dev->dev)
479 vdev->parent = vdev->v4l2_dev->dev;
480 if (vdev->ctrl_handler == NULL)
481 vdev->ctrl_handler = vdev->v4l2_dev->ctrl_handler;
482 }
Hans Verkuildd896012008-10-04 08:36:54 -0300483
Hans Verkuil22e22122009-09-06 07:13:14 -0300484 /* Part 2: find a free minor, device node number and device index. */
Hans Verkuildd896012008-10-04 08:36:54 -0300485#ifdef CONFIG_VIDEO_FIXED_MINOR_RANGES
486 /* Keep the ranges for the first four types for historical
487 * reasons.
488 * Newer devices (not yet in place) should use the range
489 * of 128-191 and just pick the first free minor there
490 * (new style). */
491 switch (type) {
492 case VFL_TYPE_GRABBER:
493 minor_offset = 0;
494 minor_cnt = 64;
495 break;
496 case VFL_TYPE_RADIO:
497 minor_offset = 64;
498 minor_cnt = 64;
499 break;
Hans Verkuildd896012008-10-04 08:36:54 -0300500 case VFL_TYPE_VBI:
501 minor_offset = 224;
502 minor_cnt = 32;
503 break;
504 default:
505 minor_offset = 128;
506 minor_cnt = 64;
507 break;
508 }
509#endif
510
Hans Verkuil22e22122009-09-06 07:13:14 -0300511 /* Pick a device node number */
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300512 mutex_lock(&videodev_lock);
Hans Verkuil5062cb72009-09-07 03:40:24 -0300513 nr = devnode_find(vdev, nr == -1 ? 0 : nr, minor_cnt);
Hans Verkuildd896012008-10-04 08:36:54 -0300514 if (nr == minor_cnt)
Hans Verkuil5062cb72009-09-07 03:40:24 -0300515 nr = devnode_find(vdev, 0, minor_cnt);
Hans Verkuildd896012008-10-04 08:36:54 -0300516 if (nr == minor_cnt) {
Hans Verkuil22e22122009-09-06 07:13:14 -0300517 printk(KERN_ERR "could not get a free device node number\n");
Hans Verkuildd896012008-10-04 08:36:54 -0300518 mutex_unlock(&videodev_lock);
519 return -ENFILE;
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300520 }
Hans Verkuildd896012008-10-04 08:36:54 -0300521#ifdef CONFIG_VIDEO_FIXED_MINOR_RANGES
Hans Verkuil22e22122009-09-06 07:13:14 -0300522 /* 1-on-1 mapping of device node number to minor number */
Hans Verkuildd896012008-10-04 08:36:54 -0300523 i = nr;
524#else
Hans Verkuil22e22122009-09-06 07:13:14 -0300525 /* The device node number and minor numbers are independent, so
526 we just find the first free minor number. */
Hans Verkuildd896012008-10-04 08:36:54 -0300527 for (i = 0; i < VIDEO_NUM_DEVICES; i++)
528 if (video_device[i] == NULL)
529 break;
530 if (i == VIDEO_NUM_DEVICES) {
531 mutex_unlock(&videodev_lock);
532 printk(KERN_ERR "could not get a free minor\n");
533 return -ENFILE;
534 }
535#endif
Hans Verkuildc93a702008-12-19 21:28:27 -0300536 vdev->minor = i + minor_offset;
537 vdev->num = nr;
Hans Verkuil5062cb72009-09-07 03:40:24 -0300538 devnode_set(vdev);
539
Hans Verkuildc93a702008-12-19 21:28:27 -0300540 /* Should not happen since we thought this minor was free */
541 WARN_ON(video_device[vdev->minor] != NULL);
Hans Verkuil7ae0cd92009-06-19 11:32:56 -0300542 vdev->index = get_index(vdev);
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300543 mutex_unlock(&videodev_lock);
544
Hans Verkuildc93a702008-12-19 21:28:27 -0300545 /* Part 3: Initialize the character device */
546 vdev->cdev = cdev_alloc();
547 if (vdev->cdev == NULL) {
548 ret = -ENOMEM;
549 goto cleanup;
550 }
Arnd Bergmann86a5ef72010-07-04 00:15:09 +0200551 vdev->cdev->ops = &v4l2_fops;
Hans Verkuildc93a702008-12-19 21:28:27 -0300552 vdev->cdev->owner = vdev->fops->owner;
553 ret = cdev_add(vdev->cdev, MKDEV(VIDEO_MAJOR, vdev->minor), 1);
Hans Verkuil7f8ecfa2008-08-29 17:31:35 -0300554 if (ret < 0) {
555 printk(KERN_ERR "%s: cdev_add failed\n", __func__);
Hans Verkuildc93a702008-12-19 21:28:27 -0300556 kfree(vdev->cdev);
557 vdev->cdev = NULL;
558 goto cleanup;
Hans Verkuil7f8ecfa2008-08-29 17:31:35 -0300559 }
Hans Verkuildc93a702008-12-19 21:28:27 -0300560
561 /* Part 4: register the device with sysfs */
562 memset(&vdev->dev, 0, sizeof(vdev->dev));
Anatolij Gustschin1bb64192010-07-01 14:21:39 -0300563 /* The memset above cleared the device's device_private, so
Hans Verkuil9d95af92008-08-24 11:18:47 -0300564 put back the copy we made earlier. */
Anatolij Gustschin1bb64192010-07-01 14:21:39 -0300565 vdev->dev.p = priv;
Hans Verkuildc93a702008-12-19 21:28:27 -0300566 vdev->dev.class = &video_class;
567 vdev->dev.devt = MKDEV(VIDEO_MAJOR, vdev->minor);
568 if (vdev->parent)
569 vdev->dev.parent = vdev->parent;
Hans Verkuil22e22122009-09-06 07:13:14 -0300570 dev_set_name(&vdev->dev, "%s%d", name_base, vdev->num);
Hans Verkuildc93a702008-12-19 21:28:27 -0300571 ret = device_register(&vdev->dev);
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300572 if (ret < 0) {
573 printk(KERN_ERR "%s: device_register failed\n", __func__);
Hans Verkuildc93a702008-12-19 21:28:27 -0300574 goto cleanup;
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300575 }
Hans Verkuildc93a702008-12-19 21:28:27 -0300576 /* Register the release callback that will be called when the last
577 reference to the device goes away. */
578 vdev->dev.release = v4l2_device_release;
579
Hans Verkuil6b5270d2009-09-06 07:54:00 -0300580 if (nr != -1 && nr != vdev->num && warn_if_nr_in_use)
Laurent Pincharteac8ea52009-11-27 13:56:50 -0300581 printk(KERN_WARNING "%s: requested %s%d, got %s\n", __func__,
582 name_base, nr, video_device_node_name(vdev));
Hans Verkuil6b5270d2009-09-06 07:54:00 -0300583
Hans Verkuildc93a702008-12-19 21:28:27 -0300584 /* Part 5: Activate this minor. The char device can now be used. */
Laurent Pinchart957b4aa2009-11-27 13:57:22 -0300585 set_bit(V4L2_FL_REGISTERED, &vdev->flags);
Hans Verkuildc93a702008-12-19 21:28:27 -0300586 mutex_lock(&videodev_lock);
587 video_device[vdev->minor] = vdev;
588 mutex_unlock(&videodev_lock);
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300589 return 0;
590
Hans Verkuildc93a702008-12-19 21:28:27 -0300591cleanup:
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300592 mutex_lock(&videodev_lock);
Hans Verkuildc93a702008-12-19 21:28:27 -0300593 if (vdev->cdev)
594 cdev_del(vdev->cdev);
Hans Verkuil5062cb72009-09-07 03:40:24 -0300595 devnode_clear(vdev);
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300596 mutex_unlock(&videodev_lock);
Hans Verkuildc93a702008-12-19 21:28:27 -0300597 /* Mark this video device as never having been registered. */
598 vdev->minor = -1;
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300599 return ret;
600}
Hans Verkuil6b5270d2009-09-06 07:54:00 -0300601
602int video_register_device(struct video_device *vdev, int type, int nr)
603{
604 return __video_register_device(vdev, type, nr, 1);
605}
Hans Verkuil7ae0cd92009-06-19 11:32:56 -0300606EXPORT_SYMBOL(video_register_device);
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300607
Hans Verkuil6b5270d2009-09-06 07:54:00 -0300608int video_register_device_no_warn(struct video_device *vdev, int type, int nr)
609{
610 return __video_register_device(vdev, type, nr, 0);
611}
612EXPORT_SYMBOL(video_register_device_no_warn);
613
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300614/**
615 * video_unregister_device - unregister a video4linux device
Hans Verkuildc93a702008-12-19 21:28:27 -0300616 * @vdev: the device to unregister
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300617 *
Hans Verkuildc93a702008-12-19 21:28:27 -0300618 * This unregisters the passed device. Future open calls will
619 * be met with errors.
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300620 */
Hans Verkuildc93a702008-12-19 21:28:27 -0300621void video_unregister_device(struct video_device *vdev)
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300622{
Hans Verkuildc93a702008-12-19 21:28:27 -0300623 /* Check if vdev was ever registered at all */
Laurent Pinchart957b4aa2009-11-27 13:57:22 -0300624 if (!vdev || !video_is_registered(vdev))
Hans Verkuildc93a702008-12-19 21:28:27 -0300625 return;
626
Hans Verkuilca9afe62010-11-26 06:54:53 -0300627 mutex_lock(&videodev_lock);
628 /* This must be in a critical section to prevent a race with v4l2_open.
629 * Once this bit has been cleared video_get may never be called again.
630 */
Laurent Pinchart957b4aa2009-11-27 13:57:22 -0300631 clear_bit(V4L2_FL_REGISTERED, &vdev->flags);
Hans Verkuilca9afe62010-11-26 06:54:53 -0300632 mutex_unlock(&videodev_lock);
Hans Verkuildc93a702008-12-19 21:28:27 -0300633 device_unregister(&vdev->dev);
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300634}
635EXPORT_SYMBOL(video_unregister_device);
636
637/*
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300638 * Initialise video for linux
639 */
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300640static int __init videodev_init(void)
641{
Hans Verkuil7f8ecfa2008-08-29 17:31:35 -0300642 dev_t dev = MKDEV(VIDEO_MAJOR, 0);
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300643 int ret;
644
645 printk(KERN_INFO "Linux video capture interface: v2.00\n");
Hans Verkuil7f8ecfa2008-08-29 17:31:35 -0300646 ret = register_chrdev_region(dev, VIDEO_NUM_DEVICES, VIDEO_NAME);
647 if (ret < 0) {
648 printk(KERN_WARNING "videodev: unable to get major %d\n",
649 VIDEO_MAJOR);
650 return ret;
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300651 }
652
653 ret = class_register(&video_class);
654 if (ret < 0) {
Hans Verkuil7f8ecfa2008-08-29 17:31:35 -0300655 unregister_chrdev_region(dev, VIDEO_NUM_DEVICES);
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300656 printk(KERN_WARNING "video_dev: class_register failed\n");
657 return -EIO;
658 }
659
660 return 0;
661}
662
663static void __exit videodev_exit(void)
664{
Hans Verkuil7f8ecfa2008-08-29 17:31:35 -0300665 dev_t dev = MKDEV(VIDEO_MAJOR, 0);
666
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300667 class_unregister(&video_class);
Hans Verkuil7f8ecfa2008-08-29 17:31:35 -0300668 unregister_chrdev_region(dev, VIDEO_NUM_DEVICES);
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300669}
670
671module_init(videodev_init)
672module_exit(videodev_exit)
673
674MODULE_AUTHOR("Alan Cox, Mauro Carvalho Chehab <mchehab@infradead.org>");
675MODULE_DESCRIPTION("Device registrar for Video4Linux drivers v2");
676MODULE_LICENSE("GPL");
Scott James Remnantcbb72b02009-03-02 15:40:57 -0300677MODULE_ALIAS_CHARDEV_MAJOR(VIDEO_MAJOR);
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300678
679
680/*
681 * Local variables:
682 * c-basic-offset: 8
683 * End:
684 */