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 DEFINE_MUTEX(dvbdev_mutex
);
38 static int dvbdev_debug
;
40 module_param(dvbdev_debug
, int, 0644);
41 MODULE_PARM_DESC(dvbdev_debug
, "Turn on/off device debugging (default:off).");
43 #define dprintk if (dvbdev_debug) printk
45 static LIST_HEAD(dvb_adapter_list
);
46 static DEFINE_MUTEX(dvbdev_register_lock
);
48 static const char * const dnames
[] = {
49 "video", "audio", "sec", "frontend", "demux", "dvr", "ca",
53 #ifdef CONFIG_DVB_DYNAMIC_MINORS
54 #define MAX_DVB_MINORS 256
55 #define DVB_MAX_IDS MAX_DVB_MINORS
58 #define nums2minor(num,type,id) ((num << 6) | (id << 4) | type)
59 #define MAX_DVB_MINORS (DVB_MAX_ADAPTERS*64)
62 static struct class *dvb_class
;
64 static struct dvb_device
*dvb_minors
[MAX_DVB_MINORS
];
65 static DECLARE_RWSEM(minor_rwsem
);
67 static int dvb_device_open(struct inode
*inode
, struct file
*file
)
69 struct dvb_device
*dvbdev
;
71 mutex_lock(&dvbdev_mutex
);
72 down_read(&minor_rwsem
);
73 dvbdev
= dvb_minors
[iminor(inode
)];
75 if (dvbdev
&& dvbdev
->fops
) {
77 const struct file_operations
*new_fops
;
79 new_fops
= fops_get(dvbdev
->fops
);
82 file
->private_data
= dvbdev
;
83 replace_fops(file
, new_fops
);
85 err
= file
->f_op
->open(inode
,file
);
86 up_read(&minor_rwsem
);
87 mutex_unlock(&dvbdev_mutex
);
91 up_read(&minor_rwsem
);
92 mutex_unlock(&dvbdev_mutex
);
97 static const struct file_operations dvb_device_fops
=
100 .open
= dvb_device_open
,
101 .llseek
= noop_llseek
,
104 static struct cdev dvb_device_cdev
;
106 int dvb_generic_open(struct inode
*inode
, struct file
*file
)
108 struct dvb_device
*dvbdev
= file
->private_data
;
116 if ((file
->f_flags
& O_ACCMODE
) == O_RDONLY
) {
117 if (!dvbdev
->readers
)
121 if (!dvbdev
->writers
)
129 EXPORT_SYMBOL(dvb_generic_open
);
132 int dvb_generic_release(struct inode
*inode
, struct file
*file
)
134 struct dvb_device
*dvbdev
= file
->private_data
;
139 if ((file
->f_flags
& O_ACCMODE
) == O_RDONLY
) {
148 EXPORT_SYMBOL(dvb_generic_release
);
151 long dvb_generic_ioctl(struct file
*file
,
152 unsigned int cmd
, unsigned long arg
)
154 struct dvb_device
*dvbdev
= file
->private_data
;
159 if (!dvbdev
->kernel_ioctl
)
162 return dvb_usercopy(file
, cmd
, arg
, dvbdev
->kernel_ioctl
);
164 EXPORT_SYMBOL(dvb_generic_ioctl
);
167 static int dvbdev_get_free_id (struct dvb_adapter
*adap
, int type
)
171 while (id
< DVB_MAX_IDS
) {
172 struct dvb_device
*dev
;
173 list_for_each_entry(dev
, &adap
->device_list
, list_head
)
174 if (dev
->type
== type
&& dev
->id
== id
)
183 static void dvb_register_media_device(struct dvb_device
*dvbdev
,
186 #if defined(CONFIG_MEDIA_CONTROLLER_DVB)
189 if (!dvbdev
->adapter
->mdev
)
192 dvbdev
->entity
= kzalloc(sizeof(*dvbdev
->entity
), GFP_KERNEL
);
196 dvbdev
->entity
->info
.dev
.major
= DVB_MAJOR
;
197 dvbdev
->entity
->info
.dev
.minor
= minor
;
198 dvbdev
->entity
->name
= dvbdev
->name
;
202 case DVB_DEVICE_DEMUX
:
203 case DVB_DEVICE_FRONTEND
:
214 dvbdev
->pads
= kcalloc(npads
, sizeof(*dvbdev
->pads
),
217 kfree(dvbdev
->entity
);
223 case DVB_DEVICE_FRONTEND
:
224 dvbdev
->entity
->type
= MEDIA_ENT_T_DEVNODE_DVB_FE
;
225 dvbdev
->pads
[0].flags
= MEDIA_PAD_FL_SINK
;
226 dvbdev
->pads
[1].flags
= MEDIA_PAD_FL_SOURCE
;
228 case DVB_DEVICE_DEMUX
:
229 dvbdev
->entity
->type
= MEDIA_ENT_T_DEVNODE_DVB_DEMUX
;
230 dvbdev
->pads
[0].flags
= MEDIA_PAD_FL_SINK
;
231 dvbdev
->pads
[1].flags
= MEDIA_PAD_FL_SOURCE
;
234 dvbdev
->entity
->type
= MEDIA_ENT_T_DEVNODE_DVB_DVR
;
235 dvbdev
->pads
[0].flags
= MEDIA_PAD_FL_SINK
;
238 dvbdev
->entity
->type
= MEDIA_ENT_T_DEVNODE_DVB_CA
;
239 dvbdev
->pads
[0].flags
= MEDIA_PAD_FL_SINK
;
240 dvbdev
->pads
[1].flags
= MEDIA_PAD_FL_SOURCE
;
243 dvbdev
->entity
->type
= MEDIA_ENT_T_DEVNODE_DVB_NET
;
246 kfree(dvbdev
->entity
);
247 dvbdev
->entity
= NULL
;
252 ret
= media_entity_init(dvbdev
->entity
, npads
, dvbdev
->pads
, 0);
254 ret
= media_device_register_entity(dvbdev
->adapter
->mdev
,
258 "%s: media_device_register_entity failed for %s\n",
259 __func__
, dvbdev
->entity
->name
);
261 kfree(dvbdev
->entity
);
262 dvbdev
->entity
= NULL
;
266 printk(KERN_DEBUG
"%s: media device '%s' registered.\n",
267 __func__
, dvbdev
->entity
->name
);
271 int dvb_register_device(struct dvb_adapter
*adap
, struct dvb_device
**pdvbdev
,
272 const struct dvb_device
*template, void *priv
, int type
)
274 struct dvb_device
*dvbdev
;
275 struct file_operations
*dvbdevfops
;
276 struct device
*clsdev
;
280 mutex_lock(&dvbdev_register_lock
);
282 if ((id
= dvbdev_get_free_id (adap
, type
)) < 0){
283 mutex_unlock(&dvbdev_register_lock
);
285 printk(KERN_ERR
"%s: couldn't find free device id\n", __func__
);
289 *pdvbdev
= dvbdev
= kmalloc(sizeof(struct dvb_device
), GFP_KERNEL
);
292 mutex_unlock(&dvbdev_register_lock
);
296 dvbdevfops
= kzalloc(sizeof(struct file_operations
), GFP_KERNEL
);
300 mutex_unlock(&dvbdev_register_lock
);
304 memcpy(dvbdev
, template, sizeof(struct dvb_device
));
307 dvbdev
->adapter
= adap
;
309 dvbdev
->fops
= dvbdevfops
;
310 init_waitqueue_head (&dvbdev
->wait_queue
);
312 memcpy(dvbdevfops
, template->fops
, sizeof(struct file_operations
));
313 dvbdevfops
->owner
= adap
->module
;
315 list_add_tail (&dvbdev
->list_head
, &adap
->device_list
);
317 down_write(&minor_rwsem
);
318 #ifdef CONFIG_DVB_DYNAMIC_MINORS
319 for (minor
= 0; minor
< MAX_DVB_MINORS
; minor
++)
320 if (dvb_minors
[minor
] == NULL
)
323 if (minor
== MAX_DVB_MINORS
) {
326 up_write(&minor_rwsem
);
327 mutex_unlock(&dvbdev_register_lock
);
331 minor
= nums2minor(adap
->num
, type
, id
);
334 dvbdev
->minor
= minor
;
335 dvb_minors
[minor
] = dvbdev
;
336 up_write(&minor_rwsem
);
338 mutex_unlock(&dvbdev_register_lock
);
340 clsdev
= device_create(dvb_class
, adap
->device
,
341 MKDEV(DVB_MAJOR
, minor
),
342 dvbdev
, "dvb%d.%s%d", adap
->num
, dnames
[type
], id
);
343 if (IS_ERR(clsdev
)) {
344 printk(KERN_ERR
"%s: failed to create device dvb%d.%s%d (%ld)\n",
345 __func__
, adap
->num
, dnames
[type
], id
, PTR_ERR(clsdev
));
346 return PTR_ERR(clsdev
);
348 dprintk(KERN_DEBUG
"DVB: register adapter%d/%s%d @ minor: %i (0x%02x)\n",
349 adap
->num
, dnames
[type
], id
, minor
, minor
);
351 dvb_register_media_device(dvbdev
, type
, minor
);
355 EXPORT_SYMBOL(dvb_register_device
);
358 void dvb_unregister_device(struct dvb_device
*dvbdev
)
363 down_write(&minor_rwsem
);
364 dvb_minors
[dvbdev
->minor
] = NULL
;
365 up_write(&minor_rwsem
);
367 device_destroy(dvb_class
, MKDEV(DVB_MAJOR
, dvbdev
->minor
));
369 #if defined(CONFIG_MEDIA_CONTROLLER_DVB)
370 if (dvbdev
->entity
) {
371 media_device_unregister_entity(dvbdev
->entity
);
372 kfree(dvbdev
->entity
);
377 list_del (&dvbdev
->list_head
);
378 kfree (dvbdev
->fops
);
381 EXPORT_SYMBOL(dvb_unregister_device
);
384 #ifdef CONFIG_MEDIA_CONTROLLER_DVB
385 void dvb_create_media_graph(struct dvb_adapter
*adap
)
387 struct media_device
*mdev
= adap
->mdev
;
388 struct media_entity
*entity
, *tuner
= NULL
, *fe
= NULL
;
389 struct media_entity
*demux
= NULL
, *dvr
= NULL
, *ca
= NULL
;
394 media_device_for_each_entity(entity
, mdev
) {
395 switch (entity
->type
) {
396 case MEDIA_ENT_T_V4L2_SUBDEV_TUNER
:
399 case MEDIA_ENT_T_DEVNODE_DVB_FE
:
402 case MEDIA_ENT_T_DEVNODE_DVB_DEMUX
:
405 case MEDIA_ENT_T_DEVNODE_DVB_DVR
:
408 case MEDIA_ENT_T_DEVNODE_DVB_CA
:
415 media_entity_create_link(tuner
, 0, fe
, 0, 0);
418 media_entity_create_link(fe
, 1, demux
, 0, MEDIA_LNK_FL_ENABLED
);
421 media_entity_create_link(demux
, 1, dvr
, 0, MEDIA_LNK_FL_ENABLED
);
424 media_entity_create_link(demux
, 1, ca
, 0, MEDIA_LNK_FL_ENABLED
);
426 EXPORT_SYMBOL_GPL(dvb_create_media_graph
);
429 static int dvbdev_check_free_adapter_num(int num
)
431 struct list_head
*entry
;
432 list_for_each(entry
, &dvb_adapter_list
) {
433 struct dvb_adapter
*adap
;
434 adap
= list_entry(entry
, struct dvb_adapter
, list_head
);
435 if (adap
->num
== num
)
441 static int dvbdev_get_free_adapter_num (void)
445 while (num
< DVB_MAX_ADAPTERS
) {
446 if (dvbdev_check_free_adapter_num(num
))
455 int dvb_register_adapter(struct dvb_adapter
*adap
, const char *name
,
456 struct module
*module
, struct device
*device
,
461 mutex_lock(&dvbdev_register_lock
);
463 for (i
= 0; i
< DVB_MAX_ADAPTERS
; ++i
) {
464 num
= adapter_nums
[i
];
465 if (num
>= 0 && num
< DVB_MAX_ADAPTERS
) {
466 /* use the one the driver asked for */
467 if (dvbdev_check_free_adapter_num(num
))
470 num
= dvbdev_get_free_adapter_num();
477 mutex_unlock(&dvbdev_register_lock
);
481 memset (adap
, 0, sizeof(struct dvb_adapter
));
482 INIT_LIST_HEAD (&adap
->device_list
);
484 printk(KERN_INFO
"DVB: registering new adapter (%s)\n", name
);
488 adap
->module
= module
;
489 adap
->device
= device
;
490 adap
->mfe_shared
= 0;
491 adap
->mfe_dvbdev
= NULL
;
492 mutex_init (&adap
->mfe_lock
);
494 list_add_tail (&adap
->list_head
, &dvb_adapter_list
);
496 mutex_unlock(&dvbdev_register_lock
);
500 EXPORT_SYMBOL(dvb_register_adapter
);
503 int dvb_unregister_adapter(struct dvb_adapter
*adap
)
505 mutex_lock(&dvbdev_register_lock
);
506 list_del (&adap
->list_head
);
507 mutex_unlock(&dvbdev_register_lock
);
510 EXPORT_SYMBOL(dvb_unregister_adapter
);
512 /* if the miracle happens and "generic_usercopy()" is included into
513 the kernel, then this can vanish. please don't make the mistake and
514 define this as video_usercopy(). this will introduce a dependecy
515 to the v4l "videodev.o" module, which is unnecessary for some
516 cards (ie. the budget dvb-cards don't need the v4l module...) */
517 int dvb_usercopy(struct file
*file
,
518 unsigned int cmd
, unsigned long arg
,
519 int (*func
)(struct file
*file
,
520 unsigned int cmd
, void *arg
))
527 /* Copy arguments into temp kernel buffer */
528 switch (_IOC_DIR(cmd
)) {
531 * For this command, the pointer is actually an integer
536 case _IOC_READ
: /* some v4l ioctls are marked wrong ... */
538 case (_IOC_WRITE
| _IOC_READ
):
539 if (_IOC_SIZE(cmd
) <= sizeof(sbuf
)) {
542 /* too big to allocate from stack */
543 mbuf
= kmalloc(_IOC_SIZE(cmd
),GFP_KERNEL
);
550 if (copy_from_user(parg
, (void __user
*)arg
, _IOC_SIZE(cmd
)))
556 if ((err
= func(file
, cmd
, parg
)) == -ENOIOCTLCMD
)
562 /* Copy results into user buffer */
563 switch (_IOC_DIR(cmd
))
566 case (_IOC_WRITE
| _IOC_READ
):
567 if (copy_to_user((void __user
*)arg
, parg
, _IOC_SIZE(cmd
)))
577 static int dvb_uevent(struct device
*dev
, struct kobj_uevent_env
*env
)
579 struct dvb_device
*dvbdev
= dev_get_drvdata(dev
);
581 add_uevent_var(env
, "DVB_ADAPTER_NUM=%d", dvbdev
->adapter
->num
);
582 add_uevent_var(env
, "DVB_DEVICE_TYPE=%s", dnames
[dvbdev
->type
]);
583 add_uevent_var(env
, "DVB_DEVICE_NUM=%d", dvbdev
->id
);
587 static char *dvb_devnode(struct device
*dev
, umode_t
*mode
)
589 struct dvb_device
*dvbdev
= dev_get_drvdata(dev
);
591 return kasprintf(GFP_KERNEL
, "dvb/adapter%d/%s%d",
592 dvbdev
->adapter
->num
, dnames
[dvbdev
->type
], dvbdev
->id
);
596 static int __init
init_dvbdev(void)
599 dev_t dev
= MKDEV(DVB_MAJOR
, 0);
601 if ((retval
= register_chrdev_region(dev
, MAX_DVB_MINORS
, "DVB")) != 0) {
602 printk(KERN_ERR
"dvb-core: unable to get major %d\n", DVB_MAJOR
);
606 cdev_init(&dvb_device_cdev
, &dvb_device_fops
);
607 if ((retval
= cdev_add(&dvb_device_cdev
, dev
, MAX_DVB_MINORS
)) != 0) {
608 printk(KERN_ERR
"dvb-core: unable register character device\n");
612 dvb_class
= class_create(THIS_MODULE
, "dvb");
613 if (IS_ERR(dvb_class
)) {
614 retval
= PTR_ERR(dvb_class
);
617 dvb_class
->dev_uevent
= dvb_uevent
;
618 dvb_class
->devnode
= dvb_devnode
;
622 cdev_del(&dvb_device_cdev
);
623 unregister_chrdev_region(dev
, MAX_DVB_MINORS
);
628 static void __exit
exit_dvbdev(void)
630 class_destroy(dvb_class
);
631 cdev_del(&dvb_device_cdev
);
632 unregister_chrdev_region(MKDEV(DVB_MAJOR
, 0), MAX_DVB_MINORS
);
635 subsys_initcall(init_dvbdev
);
636 module_exit(exit_dvbdev
);
638 MODULE_DESCRIPTION("DVB Core Driver");
639 MODULE_AUTHOR("Marcus Metzler, Ralph Metzler, Holger Waechtler");
640 MODULE_LICENSE("GPL");