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
*old_fops
;
79 file
->private_data
= dvbdev
;
80 old_fops
= file
->f_op
;
81 file
->f_op
= fops_get(dvbdev
->fops
);
82 if (file
->f_op
== NULL
) {
83 file
->f_op
= old_fops
;
87 err
= file
->f_op
->open(inode
,file
);
90 file
->f_op
= fops_get(old_fops
);
93 up_read(&minor_rwsem
);
94 mutex_unlock(&dvbdev_mutex
);
98 up_read(&minor_rwsem
);
99 mutex_unlock(&dvbdev_mutex
);
104 static const struct file_operations dvb_device_fops
=
106 .owner
= THIS_MODULE
,
107 .open
= dvb_device_open
,
108 .llseek
= noop_llseek
,
111 static struct cdev dvb_device_cdev
;
113 int dvb_generic_open(struct inode
*inode
, struct file
*file
)
115 struct dvb_device
*dvbdev
= file
->private_data
;
123 if ((file
->f_flags
& O_ACCMODE
) == O_RDONLY
) {
124 if (!dvbdev
->readers
)
128 if (!dvbdev
->writers
)
136 EXPORT_SYMBOL(dvb_generic_open
);
139 int dvb_generic_release(struct inode
*inode
, struct file
*file
)
141 struct dvb_device
*dvbdev
= file
->private_data
;
146 if ((file
->f_flags
& O_ACCMODE
) == O_RDONLY
) {
155 EXPORT_SYMBOL(dvb_generic_release
);
158 long dvb_generic_ioctl(struct file
*file
,
159 unsigned int cmd
, unsigned long arg
)
161 struct dvb_device
*dvbdev
= file
->private_data
;
166 if (!dvbdev
->kernel_ioctl
)
169 return dvb_usercopy(file
, cmd
, arg
, dvbdev
->kernel_ioctl
);
171 EXPORT_SYMBOL(dvb_generic_ioctl
);
174 static int dvbdev_get_free_id (struct dvb_adapter
*adap
, int type
)
178 while (id
< DVB_MAX_IDS
) {
179 struct dvb_device
*dev
;
180 list_for_each_entry(dev
, &adap
->device_list
, list_head
)
181 if (dev
->type
== type
&& dev
->id
== id
)
191 int dvb_register_device(struct dvb_adapter
*adap
, struct dvb_device
**pdvbdev
,
192 const struct dvb_device
*template, void *priv
, int type
)
194 struct dvb_device
*dvbdev
;
195 struct file_operations
*dvbdevfops
;
196 struct device
*clsdev
;
200 mutex_lock(&dvbdev_register_lock
);
202 if ((id
= dvbdev_get_free_id (adap
, type
)) < 0){
203 mutex_unlock(&dvbdev_register_lock
);
205 printk(KERN_ERR
"%s: couldn't find free device id\n", __func__
);
209 *pdvbdev
= dvbdev
= kmalloc(sizeof(struct dvb_device
), GFP_KERNEL
);
212 mutex_unlock(&dvbdev_register_lock
);
216 dvbdevfops
= kzalloc(sizeof(struct file_operations
), GFP_KERNEL
);
220 mutex_unlock(&dvbdev_register_lock
);
224 memcpy(dvbdev
, template, sizeof(struct dvb_device
));
227 dvbdev
->adapter
= adap
;
229 dvbdev
->fops
= dvbdevfops
;
230 init_waitqueue_head (&dvbdev
->wait_queue
);
232 memcpy(dvbdevfops
, template->fops
, sizeof(struct file_operations
));
233 dvbdevfops
->owner
= adap
->module
;
235 list_add_tail (&dvbdev
->list_head
, &adap
->device_list
);
237 down_write(&minor_rwsem
);
238 #ifdef CONFIG_DVB_DYNAMIC_MINORS
239 for (minor
= 0; minor
< MAX_DVB_MINORS
; minor
++)
240 if (dvb_minors
[minor
] == NULL
)
243 if (minor
== MAX_DVB_MINORS
) {
246 mutex_unlock(&dvbdev_register_lock
);
250 minor
= nums2minor(adap
->num
, type
, id
);
253 dvbdev
->minor
= minor
;
254 dvb_minors
[minor
] = dvbdev
;
255 up_write(&minor_rwsem
);
257 mutex_unlock(&dvbdev_register_lock
);
259 clsdev
= device_create(dvb_class
, adap
->device
,
260 MKDEV(DVB_MAJOR
, minor
),
261 dvbdev
, "dvb%d.%s%d", adap
->num
, dnames
[type
], id
);
262 if (IS_ERR(clsdev
)) {
263 printk(KERN_ERR
"%s: failed to create device dvb%d.%s%d (%ld)\n",
264 __func__
, adap
->num
, dnames
[type
], id
, PTR_ERR(clsdev
));
265 return PTR_ERR(clsdev
);
268 dprintk(KERN_DEBUG
"DVB: register adapter%d/%s%d @ minor: %i (0x%02x)\n",
269 adap
->num
, dnames
[type
], id
, minor
, minor
);
273 EXPORT_SYMBOL(dvb_register_device
);
276 void dvb_unregister_device(struct dvb_device
*dvbdev
)
281 down_write(&minor_rwsem
);
282 dvb_minors
[dvbdev
->minor
] = NULL
;
283 up_write(&minor_rwsem
);
285 device_destroy(dvb_class
, MKDEV(DVB_MAJOR
, dvbdev
->minor
));
287 list_del (&dvbdev
->list_head
);
288 kfree (dvbdev
->fops
);
291 EXPORT_SYMBOL(dvb_unregister_device
);
293 static int dvbdev_check_free_adapter_num(int num
)
295 struct list_head
*entry
;
296 list_for_each(entry
, &dvb_adapter_list
) {
297 struct dvb_adapter
*adap
;
298 adap
= list_entry(entry
, struct dvb_adapter
, list_head
);
299 if (adap
->num
== num
)
305 static int dvbdev_get_free_adapter_num (void)
309 while (num
< DVB_MAX_ADAPTERS
) {
310 if (dvbdev_check_free_adapter_num(num
))
319 int dvb_register_adapter(struct dvb_adapter
*adap
, const char *name
,
320 struct module
*module
, struct device
*device
,
325 mutex_lock(&dvbdev_register_lock
);
327 for (i
= 0; i
< DVB_MAX_ADAPTERS
; ++i
) {
328 num
= adapter_nums
[i
];
329 if (num
>= 0 && num
< DVB_MAX_ADAPTERS
) {
330 /* use the one the driver asked for */
331 if (dvbdev_check_free_adapter_num(num
))
334 num
= dvbdev_get_free_adapter_num();
341 mutex_unlock(&dvbdev_register_lock
);
345 memset (adap
, 0, sizeof(struct dvb_adapter
));
346 INIT_LIST_HEAD (&adap
->device_list
);
348 printk(KERN_INFO
"DVB: registering new adapter (%s)\n", name
);
352 adap
->module
= module
;
353 adap
->device
= device
;
354 adap
->mfe_shared
= 0;
355 adap
->mfe_dvbdev
= NULL
;
356 mutex_init (&adap
->mfe_lock
);
358 list_add_tail (&adap
->list_head
, &dvb_adapter_list
);
360 mutex_unlock(&dvbdev_register_lock
);
364 EXPORT_SYMBOL(dvb_register_adapter
);
367 int dvb_unregister_adapter(struct dvb_adapter
*adap
)
369 mutex_lock(&dvbdev_register_lock
);
370 list_del (&adap
->list_head
);
371 mutex_unlock(&dvbdev_register_lock
);
374 EXPORT_SYMBOL(dvb_unregister_adapter
);
376 /* if the miracle happens and "generic_usercopy()" is included into
377 the kernel, then this can vanish. please don't make the mistake and
378 define this as video_usercopy(). this will introduce a dependecy
379 to the v4l "videodev.o" module, which is unnecessary for some
380 cards (ie. the budget dvb-cards don't need the v4l module...) */
381 int dvb_usercopy(struct file
*file
,
382 unsigned int cmd
, unsigned long arg
,
383 int (*func
)(struct file
*file
,
384 unsigned int cmd
, void *arg
))
391 /* Copy arguments into temp kernel buffer */
392 switch (_IOC_DIR(cmd
)) {
395 * For this command, the pointer is actually an integer
400 case _IOC_READ
: /* some v4l ioctls are marked wrong ... */
402 case (_IOC_WRITE
| _IOC_READ
):
403 if (_IOC_SIZE(cmd
) <= sizeof(sbuf
)) {
406 /* too big to allocate from stack */
407 mbuf
= kmalloc(_IOC_SIZE(cmd
),GFP_KERNEL
);
414 if (copy_from_user(parg
, (void __user
*)arg
, _IOC_SIZE(cmd
)))
420 mutex_lock(&dvbdev_mutex
);
421 if ((err
= func(file
, cmd
, parg
)) == -ENOIOCTLCMD
)
423 mutex_unlock(&dvbdev_mutex
);
428 /* Copy results into user buffer */
429 switch (_IOC_DIR(cmd
))
432 case (_IOC_WRITE
| _IOC_READ
):
433 if (copy_to_user((void __user
*)arg
, parg
, _IOC_SIZE(cmd
)))
443 static int dvb_uevent(struct device
*dev
, struct kobj_uevent_env
*env
)
445 struct dvb_device
*dvbdev
= dev_get_drvdata(dev
);
447 add_uevent_var(env
, "DVB_ADAPTER_NUM=%d", dvbdev
->adapter
->num
);
448 add_uevent_var(env
, "DVB_DEVICE_TYPE=%s", dnames
[dvbdev
->type
]);
449 add_uevent_var(env
, "DVB_DEVICE_NUM=%d", dvbdev
->id
);
453 static char *dvb_devnode(struct device
*dev
, umode_t
*mode
)
455 struct dvb_device
*dvbdev
= dev_get_drvdata(dev
);
457 return kasprintf(GFP_KERNEL
, "dvb/adapter%d/%s%d",
458 dvbdev
->adapter
->num
, dnames
[dvbdev
->type
], dvbdev
->id
);
462 static int __init
init_dvbdev(void)
465 dev_t dev
= MKDEV(DVB_MAJOR
, 0);
467 if ((retval
= register_chrdev_region(dev
, MAX_DVB_MINORS
, "DVB")) != 0) {
468 printk(KERN_ERR
"dvb-core: unable to get major %d\n", DVB_MAJOR
);
472 cdev_init(&dvb_device_cdev
, &dvb_device_fops
);
473 if ((retval
= cdev_add(&dvb_device_cdev
, dev
, MAX_DVB_MINORS
)) != 0) {
474 printk(KERN_ERR
"dvb-core: unable register character device\n");
478 dvb_class
= class_create(THIS_MODULE
, "dvb");
479 if (IS_ERR(dvb_class
)) {
480 retval
= PTR_ERR(dvb_class
);
483 dvb_class
->dev_uevent
= dvb_uevent
;
484 dvb_class
->devnode
= dvb_devnode
;
488 cdev_del(&dvb_device_cdev
);
489 unregister_chrdev_region(dev
, MAX_DVB_MINORS
);
494 static void __exit
exit_dvbdev(void)
496 class_destroy(dvb_class
);
497 cdev_del(&dvb_device_cdev
);
498 unregister_chrdev_region(MKDEV(DVB_MAJOR
, 0), MAX_DVB_MINORS
);
501 subsys_initcall(init_dvbdev
);
502 module_exit(exit_dvbdev
);
504 MODULE_DESCRIPTION("DVB Core Driver");
505 MODULE_AUTHOR("Marcus Metzler, Ralph Metzler, Holger Waechtler");
506 MODULE_LICENSE("GPL");