4 * Copyright (C) 2000 Ralph Metzler <ralph@convergence.de>
5 * & Marcus Metzler <marcus@convergence.de>
6 * for convergence integrated media GmbH
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public License
10 * as published by the Free Software Foundation; either version 2.1
11 * of the License, or (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU Lesser General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
24 #include <linux/types.h>
25 #include <linux/errno.h>
26 #include <linux/string.h>
27 #include <linux/module.h>
28 #include <linux/kernel.h>
29 #include <linux/init.h>
30 #include <linux/slab.h>
31 #include <linux/device.h>
33 #include <linux/cdev.h>
34 #include <linux/mutex.h>
37 static int dvbdev_debug;
39 module_param(dvbdev_debug, int, 0644);
40 MODULE_PARM_DESC(dvbdev_debug, "Turn on/off device debugging (default:off).");
42 #define dprintk if (dvbdev_debug) printk
44 static LIST_HEAD(dvb_adapter_list);
45 static DEFINE_MUTEX(dvbdev_register_lock);
47 static const char * const dnames[] = {
48 "video", "audio", "sec", "frontend", "demux", "dvr", "ca",
52 #define DVB_MAX_ADAPTERS 8
54 #define nums2minor(num,type,id) ((num << 6) | (id << 4) | type)
55 #define MAX_DVB_MINORS (DVB_MAX_ADAPTERS*64)
57 static struct class *dvb_class;
59 static struct dvb_device* dvbdev_find_device (int minor)
61 struct list_head *entry;
63 list_for_each (entry, &dvb_adapter_list) {
64 struct list_head *entry0;
65 struct dvb_adapter *adap;
66 adap = list_entry (entry, struct dvb_adapter, list_head);
67 list_for_each (entry0, &adap->device_list) {
68 struct dvb_device *dev;
69 dev = list_entry (entry0, struct dvb_device, list_head);
70 if (nums2minor(adap->num, dev->type, dev->id) == minor)
79 static int dvb_device_open(struct inode *inode, struct file *file)
81 struct dvb_device *dvbdev;
83 dvbdev = dvbdev_find_device (iminor(inode));
85 if (dvbdev && dvbdev->fops) {
87 const struct file_operations *old_fops;
89 file->private_data = dvbdev;
90 old_fops = file->f_op;
91 file->f_op = fops_get(dvbdev->fops);
93 err = file->f_op->open(inode,file);
96 file->f_op = fops_get(old_fops);
105 static struct file_operations dvb_device_fops =
107 .owner = THIS_MODULE,
108 .open = dvb_device_open,
111 static struct cdev dvb_device_cdev = {
112 .kobj = {.name = "dvb", },
113 .owner = THIS_MODULE,
116 int dvb_generic_open(struct inode *inode, struct file *file)
118 struct dvb_device *dvbdev = file->private_data;
126 if ((file->f_flags & O_ACCMODE) == O_RDONLY) {
127 if (!dvbdev->readers)
131 if (!dvbdev->writers)
139 EXPORT_SYMBOL(dvb_generic_open);
142 int dvb_generic_release(struct inode *inode, struct file *file)
144 struct dvb_device *dvbdev = file->private_data;
149 if ((file->f_flags & O_ACCMODE) == O_RDONLY) {
158 EXPORT_SYMBOL(dvb_generic_release);
161 int dvb_generic_ioctl(struct inode *inode, struct file *file,
162 unsigned int cmd, unsigned long arg)
164 struct dvb_device *dvbdev = file->private_data;
169 if (!dvbdev->kernel_ioctl)
172 return dvb_usercopy (inode, file, cmd, arg, dvbdev->kernel_ioctl);
174 EXPORT_SYMBOL(dvb_generic_ioctl);
177 static int dvbdev_get_free_id (struct dvb_adapter *adap, int type)
181 while (id < DVB_MAX_IDS) {
182 struct list_head *entry;
183 list_for_each (entry, &adap->device_list) {
184 struct dvb_device *dev;
185 dev = list_entry (entry, struct dvb_device, list_head);
186 if (dev->type == type && dev->id == id)
197 int dvb_register_device(struct dvb_adapter *adap, struct dvb_device **pdvbdev,
198 const struct dvb_device *template, void *priv, int type)
200 struct dvb_device *dvbdev;
201 struct file_operations *dvbdevfops;
202 struct device *clsdev;
205 mutex_lock(&dvbdev_register_lock);
207 if ((id = dvbdev_get_free_id (adap, type)) < 0){
208 mutex_unlock(&dvbdev_register_lock);
210 printk(KERN_ERR "%s: couldn't find free device id\n", __FUNCTION__);
214 *pdvbdev = dvbdev = kmalloc(sizeof(struct dvb_device), GFP_KERNEL);
217 mutex_unlock(&dvbdev_register_lock);
221 dvbdevfops = kzalloc(sizeof(struct file_operations), GFP_KERNEL);
225 mutex_unlock(&dvbdev_register_lock);
229 memcpy(dvbdev, template, sizeof(struct dvb_device));
232 dvbdev->adapter = adap;
234 dvbdev->fops = dvbdevfops;
235 init_waitqueue_head (&dvbdev->wait_queue);
237 memcpy(dvbdev->fops, template->fops, sizeof(struct file_operations));
238 dvbdev->fops->owner = adap->module;
240 list_add_tail (&dvbdev->list_head, &adap->device_list);
242 mutex_unlock(&dvbdev_register_lock);
244 clsdev = device_create(dvb_class, adap->device,
245 MKDEV(DVB_MAJOR, nums2minor(adap->num, type, id)),
246 "dvb%d.%s%d", adap->num, dnames[type], id);
247 if (IS_ERR(clsdev)) {
248 printk(KERN_ERR "%s: failed to create device dvb%d.%s%d (%ld)\n",
249 __FUNCTION__, adap->num, dnames[type], id, PTR_ERR(clsdev));
250 return PTR_ERR(clsdev);
253 dprintk(KERN_DEBUG "DVB: register adapter%d/%s%d @ minor: %i (0x%02x)\n",
254 adap->num, dnames[type], id, nums2minor(adap->num, type, id),
255 nums2minor(adap->num, type, id));
259 EXPORT_SYMBOL(dvb_register_device);
262 void dvb_unregister_device(struct dvb_device *dvbdev)
267 device_destroy(dvb_class, MKDEV(DVB_MAJOR, nums2minor(dvbdev->adapter->num,
268 dvbdev->type, dvbdev->id)));
270 list_del (&dvbdev->list_head);
271 kfree (dvbdev->fops);
274 EXPORT_SYMBOL(dvb_unregister_device);
277 static int dvbdev_get_free_adapter_num (void)
281 while (num < DVB_MAX_ADAPTERS) {
282 struct list_head *entry;
283 list_for_each (entry, &dvb_adapter_list) {
284 struct dvb_adapter *adap;
285 adap = list_entry (entry, struct dvb_adapter, list_head);
286 if (adap->num == num)
298 int dvb_register_adapter(struct dvb_adapter *adap, const char *name, struct module *module, struct device *device)
302 mutex_lock(&dvbdev_register_lock);
304 if ((num = dvbdev_get_free_adapter_num ()) < 0) {
305 mutex_unlock(&dvbdev_register_lock);
309 memset (adap, 0, sizeof(struct dvb_adapter));
310 INIT_LIST_HEAD (&adap->device_list);
312 printk(KERN_INFO "DVB: registering new adapter (%s)\n", name);
316 adap->module = module;
317 adap->device = device;
319 list_add_tail (&adap->list_head, &dvb_adapter_list);
321 mutex_unlock(&dvbdev_register_lock);
325 EXPORT_SYMBOL(dvb_register_adapter);
328 int dvb_unregister_adapter(struct dvb_adapter *adap)
330 mutex_lock(&dvbdev_register_lock);
331 list_del (&adap->list_head);
332 mutex_unlock(&dvbdev_register_lock);
335 EXPORT_SYMBOL(dvb_unregister_adapter);
337 /* if the miracle happens and "generic_usercopy()" is included into
338 the kernel, then this can vanish. please don't make the mistake and
339 define this as video_usercopy(). this will introduce a dependecy
340 to the v4l "videodev.o" module, which is unnecessary for some
341 cards (ie. the budget dvb-cards don't need the v4l module...) */
342 int dvb_usercopy(struct inode *inode, struct file *file,
343 unsigned int cmd, unsigned long arg,
344 int (*func)(struct inode *inode, struct file *file,
345 unsigned int cmd, void *arg))
352 /* Copy arguments into temp kernel buffer */
353 switch (_IOC_DIR(cmd)) {
356 * For this command, the pointer is actually an integer
361 case _IOC_READ: /* some v4l ioctls are marked wrong ... */
363 case (_IOC_WRITE | _IOC_READ):
364 if (_IOC_SIZE(cmd) <= sizeof(sbuf)) {
367 /* too big to allocate from stack */
368 mbuf = kmalloc(_IOC_SIZE(cmd),GFP_KERNEL);
375 if (copy_from_user(parg, (void __user *)arg, _IOC_SIZE(cmd)))
381 if ((err = func(inode, file, cmd, parg)) == -ENOIOCTLCMD)
387 /* Copy results into user buffer */
388 switch (_IOC_DIR(cmd))
391 case (_IOC_WRITE | _IOC_READ):
392 if (copy_to_user((void __user *)arg, parg, _IOC_SIZE(cmd)))
402 static int __init init_dvbdev(void)
405 dev_t dev = MKDEV(DVB_MAJOR, 0);
407 if ((retval = register_chrdev_region(dev, MAX_DVB_MINORS, "DVB")) != 0) {
408 printk(KERN_ERR "dvb-core: unable to get major %d\n", DVB_MAJOR);
412 cdev_init(&dvb_device_cdev, &dvb_device_fops);
413 if ((retval = cdev_add(&dvb_device_cdev, dev, MAX_DVB_MINORS)) != 0) {
414 printk(KERN_ERR "dvb-core: unable register character device\n");
418 dvb_class = class_create(THIS_MODULE, "dvb");
419 if (IS_ERR(dvb_class)) {
420 retval = PTR_ERR(dvb_class);
426 cdev_del(&dvb_device_cdev);
427 unregister_chrdev_region(dev, MAX_DVB_MINORS);
432 static void __exit exit_dvbdev(void)
434 class_destroy(dvb_class);
435 cdev_del(&dvb_device_cdev);
436 unregister_chrdev_region(MKDEV(DVB_MAJOR, 0), MAX_DVB_MINORS);
439 subsys_initcall(init_dvbdev);
440 module_exit(exit_dvbdev);
442 MODULE_DESCRIPTION("DVB Core Driver");
443 MODULE_AUTHOR("Marcus Metzler, Ralph Metzler, Holger Waechtler");
444 MODULE_LICENSE("GPL");