dvbdev.c 10.4 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
/*
 * dvbdev.c
 *
 * Copyright (C) 2000 Ralph  Metzler <ralph@convergence.de>
 *                  & Marcus Metzler <marcus@convergence.de>
 *                    for convergence integrated media GmbH
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public License
 * as published by the Free Software Foundation; either version 2.1
 * of the License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 *
 */

#include <linux/types.h>
#include <linux/errno.h>
#include <linux/string.h>
#include <linux/module.h>
#include <linux/kernel.h>
#include <linux/init.h>
#include <linux/slab.h>
#include <linux/device.h>
#include <linux/fs.h>
#include <linux/cdev.h>
34
#include <linux/mutex.h>
35
#include <linux/smp_lock.h>
L
Linus Torvalds 已提交
36 37 38 39 40 41 42 43 44 45
#include "dvbdev.h"

static int dvbdev_debug;

module_param(dvbdev_debug, int, 0644);
MODULE_PARM_DESC(dvbdev_debug, "Turn on/off device debugging (default:off).");

#define dprintk if (dvbdev_debug) printk

static LIST_HEAD(dvb_adapter_list);
46
static DEFINE_MUTEX(dvbdev_register_lock);
L
Linus Torvalds 已提交
47 48

static const char * const dnames[] = {
49
	"video", "audio", "sec", "frontend", "demux", "dvr", "ca",
L
Linus Torvalds 已提交
50 51 52 53 54 55 56
	"net", "osd"
};

#define DVB_MAX_IDS		4
#define nums2minor(num,type,id)	((num << 6) | (id << 4) | type)
#define MAX_DVB_MINORS		(DVB_MAX_ADAPTERS*64)

57
static struct class *dvb_class;
L
Linus Torvalds 已提交
58 59 60

static struct dvb_device* dvbdev_find_device (int minor)
{
61
	struct dvb_adapter *adap;
L
Linus Torvalds 已提交
62

63 64 65
	list_for_each_entry(adap, &dvb_adapter_list, list_head) {
		struct dvb_device *dev;
		list_for_each_entry(dev, &adap->device_list, list_head)
L
Linus Torvalds 已提交
66 67 68 69 70 71 72 73 74 75 76 77
			if (nums2minor(adap->num, dev->type, dev->id) == minor)
				return dev;
	}

	return NULL;
}


static int dvb_device_open(struct inode *inode, struct file *file)
{
	struct dvb_device *dvbdev;

78
	lock_kernel();
L
Linus Torvalds 已提交
79 80 81 82
	dvbdev = dvbdev_find_device (iminor(inode));

	if (dvbdev && dvbdev->fops) {
		int err = 0;
83
		const struct file_operations *old_fops;
L
Linus Torvalds 已提交
84 85 86

		file->private_data = dvbdev;
		old_fops = file->f_op;
87 88
		file->f_op = fops_get(dvbdev->fops);
		if(file->f_op->open)
89
			err = file->f_op->open(inode,file);
90
		if (err) {
91 92
			fops_put(file->f_op);
			file->f_op = fops_get(old_fops);
93 94
		}
		fops_put(old_fops);
95
		unlock_kernel();
96
		return err;
L
Linus Torvalds 已提交
97
	}
98
	unlock_kernel();
L
Linus Torvalds 已提交
99 100 101 102
	return -ENODEV;
}


103
static const struct file_operations dvb_device_fops =
L
Linus Torvalds 已提交
104 105 106 107 108
{
	.owner =	THIS_MODULE,
	.open =		dvb_device_open,
};

109
static struct cdev dvb_device_cdev;
L
Linus Torvalds 已提交
110 111 112

int dvb_generic_open(struct inode *inode, struct file *file)
{
113
	struct dvb_device *dvbdev = file->private_data;
L
Linus Torvalds 已提交
114

115 116
	if (!dvbdev)
		return -ENODEV;
L
Linus Torvalds 已提交
117 118

	if (!dvbdev->users)
119
		return -EBUSY;
L
Linus Torvalds 已提交
120 121

	if ((file->f_flags & O_ACCMODE) == O_RDONLY) {
122 123
		if (!dvbdev->readers)
			return -EBUSY;
L
Linus Torvalds 已提交
124 125
		dvbdev->readers--;
	} else {
126 127
		if (!dvbdev->writers)
			return -EBUSY;
L
Linus Torvalds 已提交
128 129 130 131 132 133 134 135 136 137 138
		dvbdev->writers--;
	}

	dvbdev->users--;
	return 0;
}
EXPORT_SYMBOL(dvb_generic_open);


int dvb_generic_release(struct inode *inode, struct file *file)
{
139
	struct dvb_device *dvbdev = file->private_data;
L
Linus Torvalds 已提交
140 141

	if (!dvbdev)
142
		return -ENODEV;
L
Linus Torvalds 已提交
143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158

	if ((file->f_flags & O_ACCMODE) == O_RDONLY) {
		dvbdev->readers++;
	} else {
		dvbdev->writers++;
	}

	dvbdev->users++;
	return 0;
}
EXPORT_SYMBOL(dvb_generic_release);


int dvb_generic_ioctl(struct inode *inode, struct file *file,
		      unsigned int cmd, unsigned long arg)
{
159
	struct dvb_device *dvbdev = file->private_data;
L
Linus Torvalds 已提交
160

161 162
	if (!dvbdev)
		return -ENODEV;
L
Linus Torvalds 已提交
163 164 165 166 167 168 169 170 171 172 173 174 175 176

	if (!dvbdev->kernel_ioctl)
		return -EINVAL;

	return dvb_usercopy (inode, file, cmd, arg, dvbdev->kernel_ioctl);
}
EXPORT_SYMBOL(dvb_generic_ioctl);


static int dvbdev_get_free_id (struct dvb_adapter *adap, int type)
{
	u32 id = 0;

	while (id < DVB_MAX_IDS) {
177 178
		struct dvb_device *dev;
		list_for_each_entry(dev, &adap->device_list, list_head)
L
Linus Torvalds 已提交
179 180 181 182 183 184 185 186 187 188 189 190 191 192
			if (dev->type == type && dev->id == id)
				goto skip;
		return id;
skip:
		id++;
	}
	return -ENFILE;
}


int dvb_register_device(struct dvb_adapter *adap, struct dvb_device **pdvbdev,
			const struct dvb_device *template, void *priv, int type)
{
	struct dvb_device *dvbdev;
193
	struct file_operations *dvbdevfops;
194
	struct device *clsdev;
L
Linus Torvalds 已提交
195 196
	int id;

197
	mutex_lock(&dvbdev_register_lock);
L
Linus Torvalds 已提交
198

199
	if ((id = dvbdev_get_free_id (adap, type)) < 0){
200
		mutex_unlock(&dvbdev_register_lock);
L
Linus Torvalds 已提交
201
		*pdvbdev = NULL;
202
		printk(KERN_ERR "%s: couldn't find free device id\n", __func__);
L
Linus Torvalds 已提交
203 204 205 206 207
		return -ENFILE;
	}

	*pdvbdev = dvbdev = kmalloc(sizeof(struct dvb_device), GFP_KERNEL);

208 209 210 211 212 213 214 215 216
	if (!dvbdev){
		mutex_unlock(&dvbdev_register_lock);
		return -ENOMEM;
	}

	dvbdevfops = kzalloc(sizeof(struct file_operations), GFP_KERNEL);

	if (!dvbdevfops){
		kfree (dvbdev);
217
		mutex_unlock(&dvbdev_register_lock);
L
Linus Torvalds 已提交
218 219 220 221 222 223 224 225
		return -ENOMEM;
	}

	memcpy(dvbdev, template, sizeof(struct dvb_device));
	dvbdev->type = type;
	dvbdev->id = id;
	dvbdev->adapter = adap;
	dvbdev->priv = priv;
226
	dvbdev->fops = dvbdevfops;
227
	init_waitqueue_head (&dvbdev->wait_queue);
L
Linus Torvalds 已提交
228

229
	memcpy(dvbdev->fops, template->fops, sizeof(struct file_operations));
L
Linus Torvalds 已提交
230 231 232 233
	dvbdev->fops->owner = adap->module;

	list_add_tail (&dvbdev->list_head, &adap->device_list);

234 235
	mutex_unlock(&dvbdev_register_lock);

236
	clsdev = device_create(dvb_class, adap->device,
237
			       MKDEV(DVB_MAJOR, nums2minor(adap->num, type, id)),
238
			       NULL, "dvb%d.%s%d", adap->num, dnames[type], id);
239 240
	if (IS_ERR(clsdev)) {
		printk(KERN_ERR "%s: failed to create device dvb%d.%s%d (%ld)\n",
241
		       __func__, adap->num, dnames[type], id, PTR_ERR(clsdev));
242 243
		return PTR_ERR(clsdev);
	}
L
Linus Torvalds 已提交
244

245
	dprintk(KERN_DEBUG "DVB: register adapter%d/%s%d @ minor: %i (0x%02x)\n",
L
Linus Torvalds 已提交
246 247 248 249 250 251 252 253 254 255 256 257 258
		adap->num, dnames[type], id, nums2minor(adap->num, type, id),
		nums2minor(adap->num, type, id));

	return 0;
}
EXPORT_SYMBOL(dvb_register_device);


void dvb_unregister_device(struct dvb_device *dvbdev)
{
	if (!dvbdev)
		return;

259 260
	device_destroy(dvb_class, MKDEV(DVB_MAJOR, nums2minor(dvbdev->adapter->num,
		       dvbdev->type, dvbdev->id)));
L
Linus Torvalds 已提交
261 262

	list_del (&dvbdev->list_head);
263
	kfree (dvbdev->fops);
L
Linus Torvalds 已提交
264 265 266 267
	kfree (dvbdev);
}
EXPORT_SYMBOL(dvb_unregister_device);

268 269 270 271 272 273 274 275 276 277 278
static int dvbdev_check_free_adapter_num(int num)
{
	struct list_head *entry;
	list_for_each(entry, &dvb_adapter_list) {
		struct dvb_adapter *adap;
		adap = list_entry(entry, struct dvb_adapter, list_head);
		if (adap->num == num)
			return 0;
	}
	return 1;
}
L
Linus Torvalds 已提交
279 280 281 282 283 284

static int dvbdev_get_free_adapter_num (void)
{
	int num = 0;

	while (num < DVB_MAX_ADAPTERS) {
285 286
		if (dvbdev_check_free_adapter_num(num))
			return num;
L
Linus Torvalds 已提交
287 288 289 290 291 292 293
		num++;
	}

	return -ENFILE;
}


294 295 296
int dvb_register_adapter(struct dvb_adapter *adap, const char *name,
			 struct module *module, struct device *device,
			 short *adapter_nums)
L
Linus Torvalds 已提交
297
{
298
	int i, num;
L
Linus Torvalds 已提交
299

300
	mutex_lock(&dvbdev_register_lock);
L
Linus Torvalds 已提交
301

302 303 304 305 306 307 308 309 310 311 312 313 314 315
	for (i = 0; i < DVB_MAX_ADAPTERS; ++i) {
		num = adapter_nums[i];
		if (num >= 0  &&  num < DVB_MAX_ADAPTERS) {
		/* use the one the driver asked for */
			if (dvbdev_check_free_adapter_num(num))
				break;
		} else {
			num = dvbdev_get_free_adapter_num();
			break;
		}
		num = -1;
	}

	if (num < 0) {
316
		mutex_unlock(&dvbdev_register_lock);
L
Linus Torvalds 已提交
317 318 319 320 321 322
		return -ENFILE;
	}

	memset (adap, 0, sizeof(struct dvb_adapter));
	INIT_LIST_HEAD (&adap->device_list);

323
	printk(KERN_INFO "DVB: registering new adapter (%s)\n", name);
L
Linus Torvalds 已提交
324 325 326 327

	adap->num = num;
	adap->name = name;
	adap->module = module;
328
	adap->device = device;
L
Linus Torvalds 已提交
329 330 331

	list_add_tail (&adap->list_head, &dvb_adapter_list);

332
	mutex_unlock(&dvbdev_register_lock);
L
Linus Torvalds 已提交
333 334 335 336 337 338 339 340

	return num;
}
EXPORT_SYMBOL(dvb_register_adapter);


int dvb_unregister_adapter(struct dvb_adapter *adap)
{
341
	mutex_lock(&dvbdev_register_lock);
L
Linus Torvalds 已提交
342
	list_del (&adap->list_head);
343
	mutex_unlock(&dvbdev_register_lock);
L
Linus Torvalds 已提交
344 345 346 347 348 349 350 351 352 353
	return 0;
}
EXPORT_SYMBOL(dvb_unregister_adapter);

/* if the miracle happens and "generic_usercopy()" is included into
   the kernel, then this can vanish. please don't make the mistake and
   define this as video_usercopy(). this will introduce a dependecy
   to the v4l "videodev.o" module, which is unnecessary for some
   cards (ie. the budget dvb-cards don't need the v4l module...) */
int dvb_usercopy(struct inode *inode, struct file *file,
354
		     unsigned int cmd, unsigned long arg,
L
Linus Torvalds 已提交
355 356 357
		     int (*func)(struct inode *inode, struct file *file,
		     unsigned int cmd, void *arg))
{
358 359 360 361 362 363 364 365
	char    sbuf[128];
	void    *mbuf = NULL;
	void    *parg = NULL;
	int     err  = -EINVAL;

	/*  Copy arguments into temp kernel buffer  */
	switch (_IOC_DIR(cmd)) {
	case _IOC_NONE:
L
Linus Torvalds 已提交
366 367 368 369 370 371
		/*
		 * For this command, the pointer is actually an integer
		 * argument.
		 */
		parg = (void *) arg;
		break;
372 373 374 375
	case _IOC_READ: /* some v4l ioctls are marked wrong ... */
	case _IOC_WRITE:
	case (_IOC_WRITE | _IOC_READ):
		if (_IOC_SIZE(cmd) <= sizeof(sbuf)) {
376
			parg = sbuf;
377
		} else {
378 379 380 381 382
			/* too big to allocate from stack */
			mbuf = kmalloc(_IOC_SIZE(cmd),GFP_KERNEL);
			if (NULL == mbuf)
				return -ENOMEM;
			parg = mbuf;
383 384 385 386
		}

		err = -EFAULT;
		if (copy_from_user(parg, (void __user *)arg, _IOC_SIZE(cmd)))
387
			goto out;
388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403
		break;
	}

	/* call driver */
	if ((err = func(inode, file, cmd, parg)) == -ENOIOCTLCMD)
		err = -EINVAL;

	if (err < 0)
		goto out;

	/*  Copy results into user buffer  */
	switch (_IOC_DIR(cmd))
	{
	case _IOC_READ:
	case (_IOC_WRITE | _IOC_READ):
		if (copy_to_user((void __user *)arg, parg, _IOC_SIZE(cmd)))
404
			err = -EFAULT;
405 406
		break;
	}
L
Linus Torvalds 已提交
407 408

out:
409 410
	kfree(mbuf);
	return err;
L
Linus Torvalds 已提交
411 412 413 414 415 416 417 418
}

static int __init init_dvbdev(void)
{
	int retval;
	dev_t dev = MKDEV(DVB_MAJOR, 0);

	if ((retval = register_chrdev_region(dev, MAX_DVB_MINORS, "DVB")) != 0) {
419
		printk(KERN_ERR "dvb-core: unable to get major %d\n", DVB_MAJOR);
L
Linus Torvalds 已提交
420 421 422 423 424
		return retval;
	}

	cdev_init(&dvb_device_cdev, &dvb_device_fops);
	if ((retval = cdev_add(&dvb_device_cdev, dev, MAX_DVB_MINORS)) != 0) {
425
		printk(KERN_ERR "dvb-core: unable register character device\n");
L
Linus Torvalds 已提交
426 427 428
		goto error;
	}

429
	dvb_class = class_create(THIS_MODULE, "dvb");
L
Linus Torvalds 已提交
430 431 432 433 434 435 436 437 438 439 440 441 442 443 444
	if (IS_ERR(dvb_class)) {
		retval = PTR_ERR(dvb_class);
		goto error;
	}
	return 0;

error:
	cdev_del(&dvb_device_cdev);
	unregister_chrdev_region(dev, MAX_DVB_MINORS);
	return retval;
}


static void __exit exit_dvbdev(void)
{
445
	class_destroy(dvb_class);
L
Linus Torvalds 已提交
446
	cdev_del(&dvb_device_cdev);
447
	unregister_chrdev_region(MKDEV(DVB_MAJOR, 0), MAX_DVB_MINORS);
L
Linus Torvalds 已提交
448 449
}

450
subsys_initcall(init_dvbdev);
L
Linus Torvalds 已提交
451 452 453 454 455
module_exit(exit_dvbdev);

MODULE_DESCRIPTION("DVB Core Driver");
MODULE_AUTHOR("Marcus Metzler, Ralph Metzler, Holger Waechtler");
MODULE_LICENSE("GPL");