blob: c1d9bb61cd7794765e2709d498c49dfc0de458af [file] [log] [blame]
Mike Iselyd8554972006-06-26 20:58:46 -03001/*
2 *
Mike Iselyd8554972006-06-26 20:58:46 -03003 *
4 * Copyright (C) 2005 Mike Isely <isely@pobox.com>
5 * Copyright (C) 2004 Aurelien Alleaume <slts@free.fr>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 *
20 */
21
Mike Iselyd8554972006-06-26 20:58:46 -030022#include <linux/kernel.h>
23#include <linux/errno.h>
Mike Iselyd8554972006-06-26 20:58:46 -030024#include <linux/module.h>
Mike Iselyd8554972006-06-26 20:58:46 -030025#include <linux/usb.h>
26#include <linux/videodev2.h>
27
28#include "pvrusb2-hdw.h"
Mike Isely989eb152007-11-26 01:53:12 -030029#include "pvrusb2-devattr.h"
Mike Iselyd8554972006-06-26 20:58:46 -030030#include "pvrusb2-context.h"
31#include "pvrusb2-debug.h"
32#include "pvrusb2-v4l2.h"
33#ifdef CONFIG_VIDEO_PVRUSB2_SYSFS
34#include "pvrusb2-sysfs.h"
35#endif /* CONFIG_VIDEO_PVRUSB2_SYSFS */
36
37#define DRIVER_AUTHOR "Mike Isely <isely@pobox.com>"
38#define DRIVER_DESC "Hauppauge WinTV-PVR-USB2 MPEG2 Encoder/Tuner"
39#define DRIVER_VERSION "V4L in-tree version"
40
41#define DEFAULT_DEBUG_MASK (PVR2_TRACE_ERROR_LEGS| \
42 PVR2_TRACE_INFO| \
Mike Isely56585382007-09-08 22:32:12 -030043 PVR2_TRACE_STD| \
Mike Iselyd8554972006-06-26 20:58:46 -030044 PVR2_TRACE_TOLERANCE| \
45 PVR2_TRACE_TRAP| \
Mike Iselyd8554972006-06-26 20:58:46 -030046 0)
47
48int pvrusb2_debug = DEFAULT_DEBUG_MASK;
49
50module_param_named(debug,pvrusb2_debug,int,S_IRUGO|S_IWUSR);
51MODULE_PARM_DESC(debug, "Debug trace mask");
52
53#ifdef CONFIG_VIDEO_PVRUSB2_SYSFS
Mike Iselya0fd1cb2006-06-30 11:35:28 -030054static struct pvr2_sysfs_class *class_ptr = NULL;
Mike Iselyd8554972006-06-26 20:58:46 -030055#endif /* CONFIG_VIDEO_PVRUSB2_SYSFS */
56
57static void pvr_setup_attach(struct pvr2_context *pvr)
58{
59 /* Create association with v4l layer */
60 pvr2_v4l2_create(pvr);
Michael Krufky04910bd2008-02-03 23:46:16 -030061#ifdef CONFIG_VIDEO_PVRUSB2_DVB
62 /* Create association with dvb layer */
Mike Iselyc5317b12008-02-09 19:47:07 -030063 pvr2_dvb_create(pvr);
Michael Krufky04910bd2008-02-03 23:46:16 -030064#endif
Mike Iselyd8554972006-06-26 20:58:46 -030065#ifdef CONFIG_VIDEO_PVRUSB2_SYSFS
66 pvr2_sysfs_create(pvr,class_ptr);
67#endif /* CONFIG_VIDEO_PVRUSB2_SYSFS */
68}
69
70static int pvr_probe(struct usb_interface *intf,
71 const struct usb_device_id *devid)
72{
73 struct pvr2_context *pvr;
74
75 /* Create underlying hardware interface */
76 pvr = pvr2_context_create(intf,devid,pvr_setup_attach);
77 if (!pvr) {
78 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
79 "Failed to create hdw handler");
80 return -ENOMEM;
81 }
82
83 pvr2_trace(PVR2_TRACE_INIT,"pvr_probe(pvr=%p)",pvr);
84
85 usb_set_intfdata(intf, pvr);
86
87 return 0;
88}
89
90/*
91 * pvr_disconnect()
92 *
93 */
94static void pvr_disconnect(struct usb_interface *intf)
95{
96 struct pvr2_context *pvr = usb_get_intfdata(intf);
97
98 pvr2_trace(PVR2_TRACE_INIT,"pvr_disconnect(pvr=%p) BEGIN",pvr);
99
100 usb_set_intfdata (intf, NULL);
101 pvr2_context_disconnect(pvr);
102
103 pvr2_trace(PVR2_TRACE_INIT,"pvr_disconnect(pvr=%p) DONE",pvr);
104
105}
106
107static struct usb_driver pvr_driver = {
Mike Iselya0fd1cb2006-06-30 11:35:28 -0300108 .name = "pvrusb2",
109 .id_table = pvr2_device_table,
110 .probe = pvr_probe,
111 .disconnect = pvr_disconnect
Mike Iselyd8554972006-06-26 20:58:46 -0300112};
113
114/*
115 * pvr_init() / pvr_exit()
116 *
117 * This code is run to initialize/exit the driver.
118 *
119 */
120static int __init pvr_init(void)
121{
122 int ret;
123
124 pvr2_trace(PVR2_TRACE_INIT,"pvr_init");
125
Mike Iselye5be15c2008-04-07 02:22:04 -0300126 ret = pvr2_context_global_init();
127 if (ret != 0) {
128 pvr2_trace(PVR2_TRACE_INIT,"pvr_init failure code=%d",ret);
129 return ret;
130 }
131
Mike Iselyd8554972006-06-26 20:58:46 -0300132#ifdef CONFIG_VIDEO_PVRUSB2_SYSFS
133 class_ptr = pvr2_sysfs_class_create();
134#endif /* CONFIG_VIDEO_PVRUSB2_SYSFS */
135
136 ret = usb_register(&pvr_driver);
137
138 if (ret == 0)
Mike Isely94b5ff92009-01-16 03:09:34 -0300139 printk(KERN_INFO "pvrusb2: " DRIVER_VERSION ":"
Greg Kroah-Hartmana482f322008-10-10 05:08:23 -0300140 DRIVER_DESC "\n");
141 if (pvrusb2_debug)
Mike Isely94b5ff92009-01-16 03:09:34 -0300142 printk(KERN_INFO "pvrusb2: Debug mask is %d (0x%x)\n",
Greg Kroah-Hartmana482f322008-10-10 05:08:23 -0300143 pvrusb2_debug,pvrusb2_debug);
Mike Iselyd8554972006-06-26 20:58:46 -0300144
Mike Iselye5be15c2008-04-07 02:22:04 -0300145 pvr2_trace(PVR2_TRACE_INIT,"pvr_init complete");
146
Mike Iselyd8554972006-06-26 20:58:46 -0300147 return ret;
148}
149
150static void __exit pvr_exit(void)
151{
Mike Iselyd8554972006-06-26 20:58:46 -0300152 pvr2_trace(PVR2_TRACE_INIT,"pvr_exit");
153
Mike Isely4f663bd2007-11-03 00:06:42 -0300154 usb_deregister(&pvr_driver);
155
Mike Iselye3a5ee72010-05-15 00:30:29 -0300156 pvr2_context_global_done();
157
Mike Iselyd8554972006-06-26 20:58:46 -0300158#ifdef CONFIG_VIDEO_PVRUSB2_SYSFS
159 pvr2_sysfs_class_destroy(class_ptr);
160#endif /* CONFIG_VIDEO_PVRUSB2_SYSFS */
Mike Iselye5be15c2008-04-07 02:22:04 -0300161
Mike Iselye5be15c2008-04-07 02:22:04 -0300162 pvr2_trace(PVR2_TRACE_INIT,"pvr_exit complete");
Mike Iselyd8554972006-06-26 20:58:46 -0300163}
164
165module_init(pvr_init);
166module_exit(pvr_exit);
167
Mike Iselyd8554972006-06-26 20:58:46 -0300168MODULE_AUTHOR(DRIVER_AUTHOR);
169MODULE_DESCRIPTION(DRIVER_DESC);
170MODULE_LICENSE("GPL");
Mauro Carvalho Chehab083774d2011-06-25 13:34:24 -0300171MODULE_VERSION("0.9.1");
Mike Iselyd8554972006-06-26 20:58:46 -0300172
173
174/*
175 Stuff for Emacs to see, in order to encourage consistent editing style:
176 *** Local Variables: ***
177 *** mode: c ***
178 *** fill-column: 70 ***
179 *** tab-width: 8 ***
180 *** c-basic-offset: 8 ***
181 *** End: ***
182 */