blob: d33101aaf0b5e6bb51e55baef9b21ba0d53c4e9a [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * dvbdev.c
3 *
4 * Copyright (C) 2000 Ralph Metzler <ralph@convergence.de>
5 * & Marcus Metzler <marcus@convergence.de>
6 * for convergence integrated media GmbH
7 *
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.
12 *
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.
17 *
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.
21 *
22 */
23
24#include <linux/types.h>
25#include <linux/errno.h>
26#include <linux/string.h>
27#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <linux/init.h>
30#include <linux/slab.h>
31#include <linux/device.h>
32#include <linux/fs.h>
33#include <linux/cdev.h>
Ingo Molnar1e4baed2006-01-15 07:52:23 -020034#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include "dvbdev.h"
36
Arnd Bergmann72024f12010-09-11 19:56:45 +020037static DEFINE_MUTEX(dvbdev_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070038static int dvbdev_debug;
39
40module_param(dvbdev_debug, int, 0644);
41MODULE_PARM_DESC(dvbdev_debug, "Turn on/off device debugging (default:off).");
42
43#define dprintk if (dvbdev_debug) printk
44
45static LIST_HEAD(dvb_adapter_list);
Ingo Molnar1e4baed2006-01-15 07:52:23 -020046static DEFINE_MUTEX(dvbdev_register_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
48static const char * const dnames[] = {
Mauro Carvalho Chehabafd1a0c2005-12-12 00:37:27 -080049 "video", "audio", "sec", "frontend", "demux", "dvr", "ca",
Linus Torvalds1da177e2005-04-16 15:20:36 -070050 "net", "osd"
51};
52
Andreas Oberritter5dd3f302008-10-23 12:11:19 -030053#ifdef CONFIG_DVB_DYNAMIC_MINORS
54#define MAX_DVB_MINORS 256
55#define DVB_MAX_IDS MAX_DVB_MINORS
56#else
Linus Torvalds1da177e2005-04-16 15:20:36 -070057#define DVB_MAX_IDS 4
58#define nums2minor(num,type,id) ((num << 6) | (id << 4) | type)
59#define MAX_DVB_MINORS (DVB_MAX_ADAPTERS*64)
Andreas Oberritter5dd3f302008-10-23 12:11:19 -030060#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
gregkh@suse.de56b22932005-03-23 10:01:41 -080062static struct class *dvb_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
Andreas Oberritter5dd3f302008-10-23 12:11:19 -030064static struct dvb_device *dvb_minors[MAX_DVB_MINORS];
65static DECLARE_RWSEM(minor_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
67static int dvb_device_open(struct inode *inode, struct file *file)
68{
69 struct dvb_device *dvbdev;
70
Arnd Bergmann72024f12010-09-11 19:56:45 +020071 mutex_lock(&dvbdev_mutex);
Andreas Oberritter5dd3f302008-10-23 12:11:19 -030072 down_read(&minor_rwsem);
73 dvbdev = dvb_minors[iminor(inode)];
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
75 if (dvbdev && dvbdev->fops) {
76 int err = 0;
Arjan van de Ven99ac48f2006-03-28 01:56:41 -080077 const struct file_operations *old_fops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
79 file->private_data = dvbdev;
80 old_fops = file->f_op;
Mauro Carvalho Chehabafd1a0c2005-12-12 00:37:27 -080081 file->f_op = fops_get(dvbdev->fops);
Laurent Pinchartf41ced82009-01-06 14:40:40 -080082 if (file->f_op == NULL) {
83 file->f_op = old_fops;
84 goto fail;
85 }
Mauro Carvalho Chehabafd1a0c2005-12-12 00:37:27 -080086 if(file->f_op->open)
Michael Krufky50c25ff2006-01-09 15:25:34 -020087 err = file->f_op->open(inode,file);
Mauro Carvalho Chehabafd1a0c2005-12-12 00:37:27 -080088 if (err) {
Michael Krufky50c25ff2006-01-09 15:25:34 -020089 fops_put(file->f_op);
90 file->f_op = fops_get(old_fops);
Mauro Carvalho Chehabafd1a0c2005-12-12 00:37:27 -080091 }
92 fops_put(old_fops);
Andreas Oberritter5dd3f302008-10-23 12:11:19 -030093 up_read(&minor_rwsem);
Arnd Bergmann72024f12010-09-11 19:56:45 +020094 mutex_unlock(&dvbdev_mutex);
Mauro Carvalho Chehabafd1a0c2005-12-12 00:37:27 -080095 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 }
Laurent Pinchartf41ced82009-01-06 14:40:40 -080097fail:
Andreas Oberritter5dd3f302008-10-23 12:11:19 -030098 up_read(&minor_rwsem);
Arnd Bergmann72024f12010-09-11 19:56:45 +020099 mutex_unlock(&dvbdev_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 return -ENODEV;
101}
102
103
Jan Engelhardt27a643b2008-04-22 14:42:01 -0300104static const struct file_operations dvb_device_fops =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105{
106 .owner = THIS_MODULE,
107 .open = dvb_device_open,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200108 .llseek = noop_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109};
110
Greg Kroah-Hartman7e7654a2007-09-12 15:06:57 -0700111static struct cdev dvb_device_cdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112
113int dvb_generic_open(struct inode *inode, struct file *file)
114{
Mauro Carvalho Chehabafd1a0c2005-12-12 00:37:27 -0800115 struct dvb_device *dvbdev = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116
Mauro Carvalho Chehabafd1a0c2005-12-12 00:37:27 -0800117 if (!dvbdev)
118 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
120 if (!dvbdev->users)
Mauro Carvalho Chehabafd1a0c2005-12-12 00:37:27 -0800121 return -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122
123 if ((file->f_flags & O_ACCMODE) == O_RDONLY) {
Mauro Carvalho Chehabafd1a0c2005-12-12 00:37:27 -0800124 if (!dvbdev->readers)
125 return -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 dvbdev->readers--;
127 } else {
Mauro Carvalho Chehabafd1a0c2005-12-12 00:37:27 -0800128 if (!dvbdev->writers)
129 return -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 dvbdev->writers--;
131 }
132
133 dvbdev->users--;
134 return 0;
135}
136EXPORT_SYMBOL(dvb_generic_open);
137
138
139int dvb_generic_release(struct inode *inode, struct file *file)
140{
Mauro Carvalho Chehabafd1a0c2005-12-12 00:37:27 -0800141 struct dvb_device *dvbdev = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142
143 if (!dvbdev)
Mauro Carvalho Chehabafd1a0c2005-12-12 00:37:27 -0800144 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145
146 if ((file->f_flags & O_ACCMODE) == O_RDONLY) {
147 dvbdev->readers++;
148 } else {
149 dvbdev->writers++;
150 }
151
152 dvbdev->users++;
153 return 0;
154}
155EXPORT_SYMBOL(dvb_generic_release);
156
157
Arnd Bergmann16ef8de2010-04-27 00:24:00 +0200158long dvb_generic_ioctl(struct file *file,
159 unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160{
Mauro Carvalho Chehabafd1a0c2005-12-12 00:37:27 -0800161 struct dvb_device *dvbdev = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162
Mauro Carvalho Chehabafd1a0c2005-12-12 00:37:27 -0800163 if (!dvbdev)
164 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165
166 if (!dvbdev->kernel_ioctl)
167 return -EINVAL;
168
Arnd Bergmann72024f12010-09-11 19:56:45 +0200169 return dvb_usercopy(file, cmd, arg, dvbdev->kernel_ioctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170}
171EXPORT_SYMBOL(dvb_generic_ioctl);
172
173
174static int dvbdev_get_free_id (struct dvb_adapter *adap, int type)
175{
176 u32 id = 0;
177
178 while (id < DVB_MAX_IDS) {
Trent Piepho79482612007-10-10 05:37:39 -0300179 struct dvb_device *dev;
180 list_for_each_entry(dev, &adap->device_list, list_head)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 if (dev->type == type && dev->id == id)
182 goto skip;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 return id;
184skip:
185 id++;
186 }
187 return -ENFILE;
188}
189
190
191int dvb_register_device(struct dvb_adapter *adap, struct dvb_device **pdvbdev,
192 const struct dvb_device *template, void *priv, int type)
193{
194 struct dvb_device *dvbdev;
Marcel Siegertb6190102007-02-13 09:46:55 -0300195 struct file_operations *dvbdevfops;
Kay Sievers5f553382007-08-15 14:00:09 -0300196 struct device *clsdev;
Andreas Oberritter5dd3f302008-10-23 12:11:19 -0300197 int minor;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 int id;
199
Simon Arlottc2788502007-03-10 06:21:25 -0300200 mutex_lock(&dvbdev_register_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201
Marcel Siegertb6190102007-02-13 09:46:55 -0300202 if ((id = dvbdev_get_free_id (adap, type)) < 0){
Ingo Molnar1e4baed2006-01-15 07:52:23 -0200203 mutex_unlock(&dvbdev_register_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 *pdvbdev = NULL;
Harvey Harrison46b4f7c2008-04-08 23:20:00 -0300205 printk(KERN_ERR "%s: couldn't find free device id\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 return -ENFILE;
207 }
208
209 *pdvbdev = dvbdev = kmalloc(sizeof(struct dvb_device), GFP_KERNEL);
210
Marcel Siegertb6190102007-02-13 09:46:55 -0300211 if (!dvbdev){
212 mutex_unlock(&dvbdev_register_lock);
213 return -ENOMEM;
214 }
215
216 dvbdevfops = kzalloc(sizeof(struct file_operations), GFP_KERNEL);
217
218 if (!dvbdevfops){
219 kfree (dvbdev);
Ingo Molnar1e4baed2006-01-15 07:52:23 -0200220 mutex_unlock(&dvbdev_register_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 return -ENOMEM;
222 }
223
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 memcpy(dvbdev, template, sizeof(struct dvb_device));
225 dvbdev->type = type;
226 dvbdev->id = id;
227 dvbdev->adapter = adap;
228 dvbdev->priv = priv;
Marcel Siegertb6190102007-02-13 09:46:55 -0300229 dvbdev->fops = dvbdevfops;
Markus Rechbergerca5be9c2007-04-14 10:18:58 -0300230 init_waitqueue_head (&dvbdev->wait_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231
Jan Engelhardt784e29d2009-01-11 06:12:43 -0300232 memcpy(dvbdevfops, template->fops, sizeof(struct file_operations));
233 dvbdevfops->owner = adap->module;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234
235 list_add_tail (&dvbdev->list_head, &adap->device_list);
236
Andreas Oberritter5dd3f302008-10-23 12:11:19 -0300237 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)
241 break;
242
243 if (minor == MAX_DVB_MINORS) {
244 kfree(dvbdevfops);
245 kfree(dvbdev);
Santosh Nayak82163ed2012-06-23 07:59:54 -0300246 up_write(&minor_rwsem);
Andreas Oberritter5dd3f302008-10-23 12:11:19 -0300247 mutex_unlock(&dvbdev_register_lock);
248 return -EINVAL;
249 }
250#else
251 minor = nums2minor(adap->num, type, id);
252#endif
253
254 dvbdev->minor = minor;
255 dvb_minors[minor] = dvbdev;
256 up_write(&minor_rwsem);
257
Andrew de Quinceyf47f4762006-04-04 09:41:47 -0300258 mutex_unlock(&dvbdev_register_lock);
259
Greg Kroah-Hartmana9b12612008-07-21 20:03:34 -0700260 clsdev = device_create(dvb_class, adap->device,
Hans Verkuilb7496782008-11-03 05:38:43 -0300261 MKDEV(DVB_MAJOR, minor),
Kay Sieversa5f4c0c2008-10-27 22:27:37 -0300262 dvbdev, "dvb%d.%s%d", adap->num, dnames[type], id);
Simon Arlott4abdcf92007-05-06 20:56:14 -0300263 if (IS_ERR(clsdev)) {
264 printk(KERN_ERR "%s: failed to create device dvb%d.%s%d (%ld)\n",
Harvey Harrison46b4f7c2008-04-08 23:20:00 -0300265 __func__, adap->num, dnames[type], id, PTR_ERR(clsdev));
Simon Arlott4abdcf92007-05-06 20:56:14 -0300266 return PTR_ERR(clsdev);
267 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268
Simon Arlott900858e2007-05-06 21:06:32 -0300269 dprintk(KERN_DEBUG "DVB: register adapter%d/%s%d @ minor: %i (0x%02x)\n",
Andreas Oberritter5dd3f302008-10-23 12:11:19 -0300270 adap->num, dnames[type], id, minor, minor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271
272 return 0;
273}
274EXPORT_SYMBOL(dvb_register_device);
275
276
277void dvb_unregister_device(struct dvb_device *dvbdev)
278{
279 if (!dvbdev)
280 return;
281
Andreas Oberritter5dd3f302008-10-23 12:11:19 -0300282 down_write(&minor_rwsem);
283 dvb_minors[dvbdev->minor] = NULL;
284 up_write(&minor_rwsem);
285
286 device_destroy(dvb_class, MKDEV(DVB_MAJOR, dvbdev->minor));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287
288 list_del (&dvbdev->list_head);
Marcel Siegertb6190102007-02-13 09:46:55 -0300289 kfree (dvbdev->fops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 kfree (dvbdev);
291}
292EXPORT_SYMBOL(dvb_unregister_device);
293
Janne Grunau78e92002008-04-09 19:13:13 -0300294static int dvbdev_check_free_adapter_num(int num)
295{
296 struct list_head *entry;
297 list_for_each(entry, &dvb_adapter_list) {
298 struct dvb_adapter *adap;
299 adap = list_entry(entry, struct dvb_adapter, list_head);
300 if (adap->num == num)
301 return 0;
302 }
303 return 1;
304}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305
306static int dvbdev_get_free_adapter_num (void)
307{
308 int num = 0;
309
310 while (num < DVB_MAX_ADAPTERS) {
Janne Grunau78e92002008-04-09 19:13:13 -0300311 if (dvbdev_check_free_adapter_num(num))
312 return num;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 num++;
314 }
315
316 return -ENFILE;
317}
318
319
Janne Grunau78e92002008-04-09 19:13:13 -0300320int dvb_register_adapter(struct dvb_adapter *adap, const char *name,
321 struct module *module, struct device *device,
322 short *adapter_nums)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323{
Janne Grunau78e92002008-04-09 19:13:13 -0300324 int i, num;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325
Simon Arlottc2788502007-03-10 06:21:25 -0300326 mutex_lock(&dvbdev_register_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327
Janne Grunau78e92002008-04-09 19:13:13 -0300328 for (i = 0; i < DVB_MAX_ADAPTERS; ++i) {
329 num = adapter_nums[i];
330 if (num >= 0 && num < DVB_MAX_ADAPTERS) {
331 /* use the one the driver asked for */
332 if (dvbdev_check_free_adapter_num(num))
333 break;
334 } else {
335 num = dvbdev_get_free_adapter_num();
336 break;
337 }
338 num = -1;
339 }
340
341 if (num < 0) {
Ingo Molnar1e4baed2006-01-15 07:52:23 -0200342 mutex_unlock(&dvbdev_register_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 return -ENFILE;
344 }
345
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 memset (adap, 0, sizeof(struct dvb_adapter));
347 INIT_LIST_HEAD (&adap->device_list);
348
Simon Arlott900858e2007-05-06 21:06:32 -0300349 printk(KERN_INFO "DVB: registering new adapter (%s)\n", name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 adap->num = num;
352 adap->name = name;
353 adap->module = module;
Andrew de Quinceyd09dbf92006-04-10 09:27:37 -0300354 adap->device = device;
Darron Broad59b18422008-10-11 11:44:05 -0300355 adap->mfe_shared = 0;
356 adap->mfe_dvbdev = NULL;
357 mutex_init (&adap->mfe_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358
359 list_add_tail (&adap->list_head, &dvb_adapter_list);
360
Ingo Molnar1e4baed2006-01-15 07:52:23 -0200361 mutex_unlock(&dvbdev_register_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362
363 return num;
364}
365EXPORT_SYMBOL(dvb_register_adapter);
366
367
368int dvb_unregister_adapter(struct dvb_adapter *adap)
369{
Simon Arlottc2788502007-03-10 06:21:25 -0300370 mutex_lock(&dvbdev_register_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 list_del (&adap->list_head);
Ingo Molnar1e4baed2006-01-15 07:52:23 -0200372 mutex_unlock(&dvbdev_register_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 return 0;
374}
375EXPORT_SYMBOL(dvb_unregister_adapter);
376
377/* if the miracle happens and "generic_usercopy()" is included into
378 the kernel, then this can vanish. please don't make the mistake and
379 define this as video_usercopy(). this will introduce a dependecy
380 to the v4l "videodev.o" module, which is unnecessary for some
381 cards (ie. the budget dvb-cards don't need the v4l module...) */
Arnd Bergmann16ef8de2010-04-27 00:24:00 +0200382int dvb_usercopy(struct file *file,
Mauro Carvalho Chehabafd1a0c2005-12-12 00:37:27 -0800383 unsigned int cmd, unsigned long arg,
Arnd Bergmann16ef8de2010-04-27 00:24:00 +0200384 int (*func)(struct file *file,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 unsigned int cmd, void *arg))
386{
Mauro Carvalho Chehabafd1a0c2005-12-12 00:37:27 -0800387 char sbuf[128];
388 void *mbuf = NULL;
389 void *parg = NULL;
390 int err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391
Mauro Carvalho Chehabafd1a0c2005-12-12 00:37:27 -0800392 /* Copy arguments into temp kernel buffer */
393 switch (_IOC_DIR(cmd)) {
394 case _IOC_NONE:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 /*
396 * For this command, the pointer is actually an integer
397 * argument.
398 */
399 parg = (void *) arg;
400 break;
Mauro Carvalho Chehabafd1a0c2005-12-12 00:37:27 -0800401 case _IOC_READ: /* some v4l ioctls are marked wrong ... */
402 case _IOC_WRITE:
403 case (_IOC_WRITE | _IOC_READ):
404 if (_IOC_SIZE(cmd) <= sizeof(sbuf)) {
Michael Krufky50c25ff2006-01-09 15:25:34 -0200405 parg = sbuf;
Mauro Carvalho Chehabafd1a0c2005-12-12 00:37:27 -0800406 } else {
Michael Krufky50c25ff2006-01-09 15:25:34 -0200407 /* too big to allocate from stack */
408 mbuf = kmalloc(_IOC_SIZE(cmd),GFP_KERNEL);
409 if (NULL == mbuf)
410 return -ENOMEM;
411 parg = mbuf;
Mauro Carvalho Chehabafd1a0c2005-12-12 00:37:27 -0800412 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413
Mauro Carvalho Chehabafd1a0c2005-12-12 00:37:27 -0800414 err = -EFAULT;
415 if (copy_from_user(parg, (void __user *)arg, _IOC_SIZE(cmd)))
Michael Krufky50c25ff2006-01-09 15:25:34 -0200416 goto out;
Mauro Carvalho Chehabafd1a0c2005-12-12 00:37:27 -0800417 break;
418 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419
Mauro Carvalho Chehabafd1a0c2005-12-12 00:37:27 -0800420 /* call driver */
Arnd Bergmann72024f12010-09-11 19:56:45 +0200421 mutex_lock(&dvbdev_mutex);
Arnd Bergmann16ef8de2010-04-27 00:24:00 +0200422 if ((err = func(file, cmd, parg)) == -ENOIOCTLCMD)
Wanlong Gaod9751fd2012-08-27 03:23:14 -0300423 err = -ENOTTY;
Arnd Bergmann72024f12010-09-11 19:56:45 +0200424 mutex_unlock(&dvbdev_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425
Mauro Carvalho Chehabafd1a0c2005-12-12 00:37:27 -0800426 if (err < 0)
427 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428
Mauro Carvalho Chehabafd1a0c2005-12-12 00:37:27 -0800429 /* Copy results into user buffer */
430 switch (_IOC_DIR(cmd))
431 {
432 case _IOC_READ:
433 case (_IOC_WRITE | _IOC_READ):
434 if (copy_to_user((void __user *)arg, parg, _IOC_SIZE(cmd)))
Michael Krufky50c25ff2006-01-09 15:25:34 -0200435 err = -EFAULT;
Mauro Carvalho Chehabafd1a0c2005-12-12 00:37:27 -0800436 break;
437 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438
439out:
Mauro Carvalho Chehabafd1a0c2005-12-12 00:37:27 -0800440 kfree(mbuf);
441 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442}
443
Kay Sieversa5f4c0c2008-10-27 22:27:37 -0300444static int dvb_uevent(struct device *dev, struct kobj_uevent_env *env)
445{
446 struct dvb_device *dvbdev = dev_get_drvdata(dev);
447
Kay Sieversa5f4c0c2008-10-27 22:27:37 -0300448 add_uevent_var(env, "DVB_ADAPTER_NUM=%d", dvbdev->adapter->num);
Kay Sievers763d19b2008-12-31 23:35:24 -0300449 add_uevent_var(env, "DVB_DEVICE_TYPE=%s", dnames[dvbdev->type]);
450 add_uevent_var(env, "DVB_DEVICE_NUM=%d", dvbdev->id);
Kay Sieversa5f4c0c2008-10-27 22:27:37 -0300451 return 0;
452}
453
Al Viro2c9ede52011-07-23 20:24:48 -0400454static char *dvb_devnode(struct device *dev, umode_t *mode)
Kay Sievers8a8bdcc2009-04-30 15:23:42 +0200455{
456 struct dvb_device *dvbdev = dev_get_drvdata(dev);
457
458 return kasprintf(GFP_KERNEL, "dvb/adapter%d/%s%d",
459 dvbdev->adapter->num, dnames[dvbdev->type], dvbdev->id);
460}
461
462
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463static int __init init_dvbdev(void)
464{
465 int retval;
466 dev_t dev = MKDEV(DVB_MAJOR, 0);
467
468 if ((retval = register_chrdev_region(dev, MAX_DVB_MINORS, "DVB")) != 0) {
Simon Arlott900858e2007-05-06 21:06:32 -0300469 printk(KERN_ERR "dvb-core: unable to get major %d\n", DVB_MAJOR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 return retval;
471 }
472
473 cdev_init(&dvb_device_cdev, &dvb_device_fops);
474 if ((retval = cdev_add(&dvb_device_cdev, dev, MAX_DVB_MINORS)) != 0) {
Simon Arlott900858e2007-05-06 21:06:32 -0300475 printk(KERN_ERR "dvb-core: unable register character device\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 goto error;
477 }
478
gregkh@suse.de56b22932005-03-23 10:01:41 -0800479 dvb_class = class_create(THIS_MODULE, "dvb");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 if (IS_ERR(dvb_class)) {
481 retval = PTR_ERR(dvb_class);
482 goto error;
483 }
Kay Sieversa5f4c0c2008-10-27 22:27:37 -0300484 dvb_class->dev_uevent = dvb_uevent;
Kay Sieverse454cea2009-09-18 23:01:12 +0200485 dvb_class->devnode = dvb_devnode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 return 0;
487
488error:
489 cdev_del(&dvb_device_cdev);
490 unregister_chrdev_region(dev, MAX_DVB_MINORS);
491 return retval;
492}
493
494
495static void __exit exit_dvbdev(void)
496{
gregkh@suse.de56b22932005-03-23 10:01:41 -0800497 class_destroy(dvb_class);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 cdev_del(&dvb_device_cdev);
Mauro Carvalho Chehabafd1a0c2005-12-12 00:37:27 -0800499 unregister_chrdev_region(MKDEV(DVB_MAJOR, 0), MAX_DVB_MINORS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500}
501
Simon Arlott4abdcf92007-05-06 20:56:14 -0300502subsys_initcall(init_dvbdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503module_exit(exit_dvbdev);
504
505MODULE_DESCRIPTION("DVB Core Driver");
506MODULE_AUTHOR("Marcus Metzler, Ralph Metzler, Holger Waechtler");
507MODULE_LICENSE("GPL");