blob: 4715f08157bcc9c2368e4d32761ed75fe422ec86 [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. */
83 int idx = (vfl_type > VFL_TYPE_VTX) ? VFL_TYPE_MAX - 1 : vfl_type;
84
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);
189
190 if (!vdev->fops->read)
191 return -EINVAL;
192 if (video_is_unregistered(vdev))
193 return -EIO;
194 return vdev->fops->read(filp, buf, sz, off);
195}
196
197static ssize_t v4l2_write(struct file *filp, const char __user *buf,
198 size_t sz, loff_t *off)
199{
200 struct video_device *vdev = video_devdata(filp);
201
202 if (!vdev->fops->write)
203 return -EINVAL;
204 if (video_is_unregistered(vdev))
205 return -EIO;
206 return vdev->fops->write(filp, buf, sz, off);
207}
208
209static unsigned int v4l2_poll(struct file *filp, struct poll_table_struct *poll)
210{
211 struct video_device *vdev = video_devdata(filp);
212
213 if (!vdev->fops->poll || video_is_unregistered(vdev))
214 return DEFAULT_POLLMASK;
215 return vdev->fops->poll(filp, poll);
216}
217
218static int v4l2_ioctl(struct inode *inode, struct file *filp,
219 unsigned int cmd, unsigned long arg)
220{
221 struct video_device *vdev = video_devdata(filp);
222
223 if (!vdev->fops->ioctl)
224 return -ENOTTY;
225 /* Allow ioctl to continue even if the device was unregistered.
226 Things like dequeueing buffers might still be useful. */
Hans Verkuilbec43662008-12-30 06:58:20 -0300227 return vdev->fops->ioctl(filp, cmd, arg);
Hans Verkuildc93a702008-12-19 21:28:27 -0300228}
229
230static long v4l2_unlocked_ioctl(struct file *filp,
231 unsigned int cmd, unsigned long arg)
232{
233 struct video_device *vdev = video_devdata(filp);
234
235 if (!vdev->fops->unlocked_ioctl)
236 return -ENOTTY;
237 /* Allow ioctl to continue even if the device was unregistered.
238 Things like dequeueing buffers might still be useful. */
239 return vdev->fops->unlocked_ioctl(filp, cmd, arg);
240}
241
Daniel Glöcknerc01f1a52009-03-26 11:31:08 -0300242#ifdef CONFIG_MMU
243#define v4l2_get_unmapped_area NULL
244#else
245static unsigned long v4l2_get_unmapped_area(struct file *filp,
246 unsigned long addr, unsigned long len, unsigned long pgoff,
247 unsigned long flags)
248{
249 struct video_device *vdev = video_devdata(filp);
250
251 if (!vdev->fops->get_unmapped_area)
252 return -ENOSYS;
253 if (video_is_unregistered(vdev))
254 return -ENODEV;
255 return vdev->fops->get_unmapped_area(filp, addr, len, pgoff, flags);
256}
257#endif
258
Hans Verkuildc93a702008-12-19 21:28:27 -0300259static int v4l2_mmap(struct file *filp, struct vm_area_struct *vm)
260{
261 struct video_device *vdev = video_devdata(filp);
262
263 if (!vdev->fops->mmap ||
264 video_is_unregistered(vdev))
265 return -ENODEV;
266 return vdev->fops->mmap(filp, vm);
267}
268
269/* Override for the open function */
270static int v4l2_open(struct inode *inode, struct file *filp)
271{
272 struct video_device *vdev;
Hans Verkuil65d9ff92009-03-29 20:19:38 -0300273 int ret = 0;
Hans Verkuildc93a702008-12-19 21:28:27 -0300274
275 /* Check if the video device is available */
276 mutex_lock(&videodev_lock);
277 vdev = video_devdata(filp);
278 /* return ENODEV if the video device has been removed
279 already or if it is not registered anymore. */
280 if (vdev == NULL || video_is_unregistered(vdev)) {
281 mutex_unlock(&videodev_lock);
282 return -ENODEV;
283 }
284 /* and increase the device refcount */
285 video_get(vdev);
286 mutex_unlock(&videodev_lock);
Hans Verkuil65d9ff92009-03-29 20:19:38 -0300287 if (vdev->fops->open)
288 ret = vdev->fops->open(filp);
289
Hans Verkuildc93a702008-12-19 21:28:27 -0300290 /* decrease the refcount in case of an error */
291 if (ret)
292 video_put(vdev);
293 return ret;
294}
295
296/* Override for the release function */
297static int v4l2_release(struct inode *inode, struct file *filp)
298{
299 struct video_device *vdev = video_devdata(filp);
Hans Verkuil65d9ff92009-03-29 20:19:38 -0300300 int ret = 0;
301
302 if (vdev->fops->release)
303 vdev->fops->release(filp);
Hans Verkuildc93a702008-12-19 21:28:27 -0300304
305 /* decrease the refcount unconditionally since the release()
306 return value is ignored. */
307 video_put(vdev);
308 return ret;
309}
310
311static const struct file_operations v4l2_unlocked_fops = {
312 .owner = THIS_MODULE,
313 .read = v4l2_read,
314 .write = v4l2_write,
315 .open = v4l2_open,
Daniel Glöcknerc01f1a52009-03-26 11:31:08 -0300316 .get_unmapped_area = v4l2_get_unmapped_area,
Hans Verkuildc93a702008-12-19 21:28:27 -0300317 .mmap = v4l2_mmap,
318 .unlocked_ioctl = v4l2_unlocked_ioctl,
319#ifdef CONFIG_COMPAT
Hans Verkuil9bb7cde2008-12-30 06:42:40 -0300320 .compat_ioctl = v4l2_compat_ioctl32,
Hans Verkuildc93a702008-12-19 21:28:27 -0300321#endif
322 .release = v4l2_release,
323 .poll = v4l2_poll,
324 .llseek = no_llseek,
325};
326
327static const struct file_operations v4l2_fops = {
328 .owner = THIS_MODULE,
329 .read = v4l2_read,
330 .write = v4l2_write,
331 .open = v4l2_open,
Daniel Glöcknerc01f1a52009-03-26 11:31:08 -0300332 .get_unmapped_area = v4l2_get_unmapped_area,
Hans Verkuildc93a702008-12-19 21:28:27 -0300333 .mmap = v4l2_mmap,
334 .ioctl = v4l2_ioctl,
335#ifdef CONFIG_COMPAT
Hans Verkuil9bb7cde2008-12-30 06:42:40 -0300336 .compat_ioctl = v4l2_compat_ioctl32,
Hans Verkuildc93a702008-12-19 21:28:27 -0300337#endif
338 .release = v4l2_release,
339 .poll = v4l2_poll,
340 .llseek = no_llseek,
341};
342
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300343/**
Hans Verkuil7ae0cd92009-06-19 11:32:56 -0300344 * get_index - assign stream index number based on parent device
Hans Verkuildc93a702008-12-19 21:28:27 -0300345 * @vdev: video_device to assign index number to, vdev->parent should be assigned
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300346 *
Hans Verkuildc93a702008-12-19 21:28:27 -0300347 * Note that when this is called the new device has not yet been registered
Hans Verkuil7ae0cd92009-06-19 11:32:56 -0300348 * in the video_device array, but it was able to obtain a minor number.
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300349 *
Hans Verkuil7ae0cd92009-06-19 11:32:56 -0300350 * This means that we can always obtain a free stream index number since
351 * the worst case scenario is that there are VIDEO_NUM_DEVICES - 1 slots in
352 * use of the video_device array.
353 *
354 * Returns a free index number.
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300355 */
Hans Verkuil7ae0cd92009-06-19 11:32:56 -0300356static int get_index(struct video_device *vdev)
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300357{
Hans Verkuil775a05d2009-02-14 11:31:01 -0300358 /* This can be static since this function is called with the global
359 videodev_lock held. */
360 static DECLARE_BITMAP(used, VIDEO_NUM_DEVICES);
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300361 int i;
362
Hans Verkuil7ae0cd92009-06-19 11:32:56 -0300363 /* Some drivers do not set the parent. In that case always return 0. */
Hans Verkuil806e5b72008-12-19 09:10:56 -0300364 if (vdev->parent == NULL)
Hans Verkuil7ae0cd92009-06-19 11:32:56 -0300365 return 0;
Hans Verkuil775a05d2009-02-14 11:31:01 -0300366
367 bitmap_zero(used, VIDEO_NUM_DEVICES);
Hans Verkuil806e5b72008-12-19 09:10:56 -0300368
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300369 for (i = 0; i < VIDEO_NUM_DEVICES; i++) {
370 if (video_device[i] != NULL &&
Hans Verkuil5e85e732008-07-20 06:31:39 -0300371 video_device[i]->parent == vdev->parent) {
Hans Verkuil775a05d2009-02-14 11:31:01 -0300372 set_bit(video_device[i]->index, used);
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300373 }
374 }
375
Hans Verkuil7ae0cd92009-06-19 11:32:56 -0300376 return find_first_zero_bit(used, VIDEO_NUM_DEVICES);
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300377}
378
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300379/**
Hans Verkuil7ae0cd92009-06-19 11:32:56 -0300380 * video_register_device - register video4linux devices
Hans Verkuildc93a702008-12-19 21:28:27 -0300381 * @vdev: video device structure we want to register
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300382 * @type: type of device to register
Hans Verkuil22e22122009-09-06 07:13:14 -0300383 * @nr: which device node number (0 == /dev/video0, 1 == /dev/video1, ...
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300384 * -1 == first free)
385 *
Hans Verkuil22e22122009-09-06 07:13:14 -0300386 * The registration code assigns minor numbers and device node numbers
387 * based on the requested type and registers the new device node with
388 * the kernel.
389 * An error is returned if no free minor or device node number could be
390 * found, or if the registration of the device node failed.
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300391 *
392 * Zero is returned on success.
393 *
394 * Valid types are
395 *
396 * %VFL_TYPE_GRABBER - A frame grabber
397 *
398 * %VFL_TYPE_VTX - A teletext device
399 *
400 * %VFL_TYPE_VBI - Vertical blank data (undecoded)
401 *
402 * %VFL_TYPE_RADIO - A radio card
403 */
Hans Verkuil7ae0cd92009-06-19 11:32:56 -0300404int video_register_device(struct video_device *vdev, int type, int nr)
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300405{
406 int i = 0;
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300407 int ret;
Hans Verkuildd896012008-10-04 08:36:54 -0300408 int minor_offset = 0;
409 int minor_cnt = VIDEO_NUM_DEVICES;
410 const char *name_base;
Hans Verkuildc93a702008-12-19 21:28:27 -0300411 void *priv = video_get_drvdata(vdev);
412
413 /* A minor value of -1 marks this video device as never
414 having been registered */
Trent Piepho428c8d12009-03-03 18:51:52 -0300415 vdev->minor = -1;
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300416
Hans Verkuild6e74972008-08-23 06:27:59 -0300417 /* the release callback MUST be present */
Trent Piepho428c8d12009-03-03 18:51:52 -0300418 WARN_ON(!vdev->release);
419 if (!vdev->release)
Henrik Kretzschmaree7aa9f2008-08-22 16:41:03 -0300420 return -EINVAL;
421
Hans Verkuildc93a702008-12-19 21:28:27 -0300422 /* Part 1: check device type */
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300423 switch (type) {
424 case VFL_TYPE_GRABBER:
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300425 name_base = "video";
426 break;
427 case VFL_TYPE_VTX:
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300428 name_base = "vtx";
429 break;
430 case VFL_TYPE_VBI:
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300431 name_base = "vbi";
432 break;
433 case VFL_TYPE_RADIO:
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300434 name_base = "radio";
435 break;
436 default:
437 printk(KERN_ERR "%s called with unknown type: %d\n",
438 __func__, type);
Henrik Kretzschmar46f2c212008-09-03 16:47:39 -0300439 return -EINVAL;
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300440 }
441
Hans Verkuildc93a702008-12-19 21:28:27 -0300442 vdev->vfl_type = type;
443 vdev->cdev = NULL;
Hans Verkuil00575962009-03-13 10:03:04 -0300444 if (vdev->v4l2_dev && vdev->v4l2_dev->dev)
Hans Verkuil9bea3512008-12-23 07:35:17 -0300445 vdev->parent = vdev->v4l2_dev->dev;
Hans Verkuildd896012008-10-04 08:36:54 -0300446
Hans Verkuil22e22122009-09-06 07:13:14 -0300447 /* Part 2: find a free minor, device node number and device index. */
Hans Verkuildd896012008-10-04 08:36:54 -0300448#ifdef CONFIG_VIDEO_FIXED_MINOR_RANGES
449 /* Keep the ranges for the first four types for historical
450 * reasons.
451 * Newer devices (not yet in place) should use the range
452 * of 128-191 and just pick the first free minor there
453 * (new style). */
454 switch (type) {
455 case VFL_TYPE_GRABBER:
456 minor_offset = 0;
457 minor_cnt = 64;
458 break;
459 case VFL_TYPE_RADIO:
460 minor_offset = 64;
461 minor_cnt = 64;
462 break;
463 case VFL_TYPE_VTX:
464 minor_offset = 192;
465 minor_cnt = 32;
466 break;
467 case VFL_TYPE_VBI:
468 minor_offset = 224;
469 minor_cnt = 32;
470 break;
471 default:
472 minor_offset = 128;
473 minor_cnt = 64;
474 break;
475 }
476#endif
477
Hans Verkuil22e22122009-09-06 07:13:14 -0300478 /* Pick a device node number */
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300479 mutex_lock(&videodev_lock);
Hans Verkuil5062cb72009-09-07 03:40:24 -0300480 nr = devnode_find(vdev, nr == -1 ? 0 : nr, minor_cnt);
Hans Verkuildd896012008-10-04 08:36:54 -0300481 if (nr == minor_cnt)
Hans Verkuil5062cb72009-09-07 03:40:24 -0300482 nr = devnode_find(vdev, 0, minor_cnt);
Hans Verkuildd896012008-10-04 08:36:54 -0300483 if (nr == minor_cnt) {
Hans Verkuil22e22122009-09-06 07:13:14 -0300484 printk(KERN_ERR "could not get a free device node number\n");
Hans Verkuildd896012008-10-04 08:36:54 -0300485 mutex_unlock(&videodev_lock);
486 return -ENFILE;
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300487 }
Hans Verkuildd896012008-10-04 08:36:54 -0300488#ifdef CONFIG_VIDEO_FIXED_MINOR_RANGES
Hans Verkuil22e22122009-09-06 07:13:14 -0300489 /* 1-on-1 mapping of device node number to minor number */
Hans Verkuildd896012008-10-04 08:36:54 -0300490 i = nr;
491#else
Hans Verkuil22e22122009-09-06 07:13:14 -0300492 /* The device node number and minor numbers are independent, so
493 we just find the first free minor number. */
Hans Verkuildd896012008-10-04 08:36:54 -0300494 for (i = 0; i < VIDEO_NUM_DEVICES; i++)
495 if (video_device[i] == NULL)
496 break;
497 if (i == VIDEO_NUM_DEVICES) {
498 mutex_unlock(&videodev_lock);
499 printk(KERN_ERR "could not get a free minor\n");
500 return -ENFILE;
501 }
502#endif
Hans Verkuildc93a702008-12-19 21:28:27 -0300503 vdev->minor = i + minor_offset;
504 vdev->num = nr;
Hans Verkuil5062cb72009-09-07 03:40:24 -0300505 devnode_set(vdev);
506
Hans Verkuildc93a702008-12-19 21:28:27 -0300507 /* Should not happen since we thought this minor was free */
508 WARN_ON(video_device[vdev->minor] != NULL);
Hans Verkuil7ae0cd92009-06-19 11:32:56 -0300509 vdev->index = get_index(vdev);
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300510 mutex_unlock(&videodev_lock);
511
Hans Verkuildc93a702008-12-19 21:28:27 -0300512 /* Part 3: Initialize the character device */
513 vdev->cdev = cdev_alloc();
514 if (vdev->cdev == NULL) {
515 ret = -ENOMEM;
516 goto cleanup;
517 }
518 if (vdev->fops->unlocked_ioctl)
519 vdev->cdev->ops = &v4l2_unlocked_fops;
520 else
521 vdev->cdev->ops = &v4l2_fops;
522 vdev->cdev->owner = vdev->fops->owner;
523 ret = cdev_add(vdev->cdev, MKDEV(VIDEO_MAJOR, vdev->minor), 1);
Hans Verkuil7f8ecfa2008-08-29 17:31:35 -0300524 if (ret < 0) {
525 printk(KERN_ERR "%s: cdev_add failed\n", __func__);
Hans Verkuildc93a702008-12-19 21:28:27 -0300526 kfree(vdev->cdev);
527 vdev->cdev = NULL;
528 goto cleanup;
Hans Verkuil7f8ecfa2008-08-29 17:31:35 -0300529 }
Hans Verkuildc93a702008-12-19 21:28:27 -0300530
531 /* Part 4: register the device with sysfs */
532 memset(&vdev->dev, 0, sizeof(vdev->dev));
Hans Verkuil9d95af92008-08-24 11:18:47 -0300533 /* The memset above cleared the device's drvdata, so
534 put back the copy we made earlier. */
Hans Verkuildc93a702008-12-19 21:28:27 -0300535 video_set_drvdata(vdev, priv);
536 vdev->dev.class = &video_class;
537 vdev->dev.devt = MKDEV(VIDEO_MAJOR, vdev->minor);
538 if (vdev->parent)
539 vdev->dev.parent = vdev->parent;
Hans Verkuil22e22122009-09-06 07:13:14 -0300540 dev_set_name(&vdev->dev, "%s%d", name_base, vdev->num);
Hans Verkuildc93a702008-12-19 21:28:27 -0300541 ret = device_register(&vdev->dev);
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300542 if (ret < 0) {
543 printk(KERN_ERR "%s: device_register failed\n", __func__);
Hans Verkuildc93a702008-12-19 21:28:27 -0300544 goto cleanup;
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300545 }
Hans Verkuildc93a702008-12-19 21:28:27 -0300546 /* Register the release callback that will be called when the last
547 reference to the device goes away. */
548 vdev->dev.release = v4l2_device_release;
549
550 /* Part 5: Activate this minor. The char device can now be used. */
551 mutex_lock(&videodev_lock);
552 video_device[vdev->minor] = vdev;
553 mutex_unlock(&videodev_lock);
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300554 return 0;
555
Hans Verkuildc93a702008-12-19 21:28:27 -0300556cleanup:
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300557 mutex_lock(&videodev_lock);
Hans Verkuildc93a702008-12-19 21:28:27 -0300558 if (vdev->cdev)
559 cdev_del(vdev->cdev);
Hans Verkuil5062cb72009-09-07 03:40:24 -0300560 devnode_clear(vdev);
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300561 mutex_unlock(&videodev_lock);
Hans Verkuildc93a702008-12-19 21:28:27 -0300562 /* Mark this video device as never having been registered. */
563 vdev->minor = -1;
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300564 return ret;
565}
Hans Verkuil7ae0cd92009-06-19 11:32:56 -0300566EXPORT_SYMBOL(video_register_device);
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300567
568/**
569 * video_unregister_device - unregister a video4linux device
Hans Verkuildc93a702008-12-19 21:28:27 -0300570 * @vdev: the device to unregister
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300571 *
Hans Verkuildc93a702008-12-19 21:28:27 -0300572 * This unregisters the passed device. Future open calls will
573 * be met with errors.
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300574 */
Hans Verkuildc93a702008-12-19 21:28:27 -0300575void video_unregister_device(struct video_device *vdev)
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300576{
Hans Verkuildc93a702008-12-19 21:28:27 -0300577 /* Check if vdev was ever registered at all */
578 if (!vdev || vdev->minor < 0)
579 return;
580
581 mutex_lock(&videodev_lock);
582 set_bit(V4L2_FL_UNREGISTERED, &vdev->flags);
583 mutex_unlock(&videodev_lock);
584 device_unregister(&vdev->dev);
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300585}
586EXPORT_SYMBOL(video_unregister_device);
587
588/*
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300589 * Initialise video for linux
590 */
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300591static int __init videodev_init(void)
592{
Hans Verkuil7f8ecfa2008-08-29 17:31:35 -0300593 dev_t dev = MKDEV(VIDEO_MAJOR, 0);
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300594 int ret;
595
596 printk(KERN_INFO "Linux video capture interface: v2.00\n");
Hans Verkuil7f8ecfa2008-08-29 17:31:35 -0300597 ret = register_chrdev_region(dev, VIDEO_NUM_DEVICES, VIDEO_NAME);
598 if (ret < 0) {
599 printk(KERN_WARNING "videodev: unable to get major %d\n",
600 VIDEO_MAJOR);
601 return ret;
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300602 }
603
604 ret = class_register(&video_class);
605 if (ret < 0) {
Hans Verkuil7f8ecfa2008-08-29 17:31:35 -0300606 unregister_chrdev_region(dev, VIDEO_NUM_DEVICES);
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300607 printk(KERN_WARNING "video_dev: class_register failed\n");
608 return -EIO;
609 }
610
611 return 0;
612}
613
614static void __exit videodev_exit(void)
615{
Hans Verkuil7f8ecfa2008-08-29 17:31:35 -0300616 dev_t dev = MKDEV(VIDEO_MAJOR, 0);
617
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300618 class_unregister(&video_class);
Hans Verkuil7f8ecfa2008-08-29 17:31:35 -0300619 unregister_chrdev_region(dev, VIDEO_NUM_DEVICES);
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300620}
621
622module_init(videodev_init)
623module_exit(videodev_exit)
624
625MODULE_AUTHOR("Alan Cox, Mauro Carvalho Chehab <mchehab@infradead.org>");
626MODULE_DESCRIPTION("Device registrar for Video4Linux drivers v2");
627MODULE_LICENSE("GPL");
Scott James Remnantcbb72b02009-03-02 15:40:57 -0300628MODULE_ALIAS_CHARDEV_MAJOR(VIDEO_MAJOR);
Hans Verkuil27a5e6d2008-07-20 08:43:17 -0300629
630
631/*
632 * Local variables:
633 * c-basic-offset: 8
634 * End:
635 */