4 * Copyright (C) 2005 Mike Isely <isely@pobox.com>
5 * Copyright (C) 2004 Aurelien Alleaume <slts@free.fr>
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
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.
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
22 #include <linux/kernel.h>
23 #include <linux/errno.h>
24 #include <linux/slab.h>
25 #include <linux/module.h>
26 #include <linux/usb.h>
27 #include <linux/videodev2.h>
29 #include "pvrusb2-hdw.h"
30 #include "pvrusb2-devattr.h"
31 #include "pvrusb2-context.h"
32 #include "pvrusb2-debug.h"
33 #include "pvrusb2-v4l2.h"
34 #ifdef CONFIG_VIDEO_PVRUSB2_SYSFS
35 #include "pvrusb2-sysfs.h"
36 #endif /* CONFIG_VIDEO_PVRUSB2_SYSFS */
38 #define DRIVER_AUTHOR "Mike Isely <isely@pobox.com>"
39 #define DRIVER_DESC "Hauppauge WinTV-PVR-USB2 MPEG2 Encoder/Tuner"
40 #define DRIVER_VERSION "V4L in-tree version"
42 #define DEFAULT_DEBUG_MASK (PVR2_TRACE_ERROR_LEGS| \
45 PVR2_TRACE_TOLERANCE| \
49 int pvrusb2_debug
= DEFAULT_DEBUG_MASK
;
51 module_param_named(debug
,pvrusb2_debug
,int,S_IRUGO
|S_IWUSR
);
52 MODULE_PARM_DESC(debug
, "Debug trace mask");
54 #ifdef CONFIG_VIDEO_PVRUSB2_SYSFS
55 static struct pvr2_sysfs_class
*class_ptr
= NULL
;
56 #endif /* CONFIG_VIDEO_PVRUSB2_SYSFS */
58 static void pvr_setup_attach(struct pvr2_context
*pvr
)
60 /* Create association with v4l layer */
61 pvr2_v4l2_create(pvr
);
62 #ifdef CONFIG_VIDEO_PVRUSB2_DVB
63 /* Create association with dvb layer */
66 #ifdef CONFIG_VIDEO_PVRUSB2_SYSFS
67 pvr2_sysfs_create(pvr
,class_ptr
);
68 #endif /* CONFIG_VIDEO_PVRUSB2_SYSFS */
71 static int pvr_probe(struct usb_interface
*intf
,
72 const struct usb_device_id
*devid
)
74 struct pvr2_context
*pvr
;
76 /* Create underlying hardware interface */
77 pvr
= pvr2_context_create(intf
,devid
,pvr_setup_attach
);
79 pvr2_trace(PVR2_TRACE_ERROR_LEGS
,
80 "Failed to create hdw handler");
84 pvr2_trace(PVR2_TRACE_INIT
,"pvr_probe(pvr=%p)",pvr
);
86 usb_set_intfdata(intf
, pvr
);
95 static void pvr_disconnect(struct usb_interface
*intf
)
97 struct pvr2_context
*pvr
= usb_get_intfdata(intf
);
99 pvr2_trace(PVR2_TRACE_INIT
,"pvr_disconnect(pvr=%p) BEGIN",pvr
);
101 usb_set_intfdata (intf
, NULL
);
102 pvr2_context_disconnect(pvr
);
104 pvr2_trace(PVR2_TRACE_INIT
,"pvr_disconnect(pvr=%p) DONE",pvr
);
108 static struct usb_driver pvr_driver
= {
110 .id_table
= pvr2_device_table
,
112 .disconnect
= pvr_disconnect
116 * pvr_init() / pvr_exit()
118 * This code is run to initialize/exit the driver.
121 static int __init
pvr_init(void)
125 pvr2_trace(PVR2_TRACE_INIT
,"pvr_init");
127 ret
= pvr2_context_global_init();
129 pvr2_trace(PVR2_TRACE_INIT
,"pvr_init failure code=%d",ret
);
133 #ifdef CONFIG_VIDEO_PVRUSB2_SYSFS
134 class_ptr
= pvr2_sysfs_class_create();
135 #endif /* CONFIG_VIDEO_PVRUSB2_SYSFS */
137 ret
= usb_register(&pvr_driver
);
140 printk(KERN_INFO
"pvrusb2: " DRIVER_VERSION
":"
143 printk(KERN_INFO
"pvrusb2: Debug mask is %d (0x%x)\n",
144 pvrusb2_debug
,pvrusb2_debug
);
146 pvr2_trace(PVR2_TRACE_INIT
,"pvr_init complete");
151 static void __exit
pvr_exit(void)
153 pvr2_trace(PVR2_TRACE_INIT
,"pvr_exit");
155 usb_deregister(&pvr_driver
);
157 #ifdef CONFIG_VIDEO_PVRUSB2_SYSFS
158 pvr2_sysfs_class_destroy(class_ptr
);
159 #endif /* CONFIG_VIDEO_PVRUSB2_SYSFS */
161 pvr2_context_global_done();
163 pvr2_trace(PVR2_TRACE_INIT
,"pvr_exit complete");
166 module_init(pvr_init
);
167 module_exit(pvr_exit
);
169 MODULE_AUTHOR(DRIVER_AUTHOR
);
170 MODULE_DESCRIPTION(DRIVER_DESC
);
171 MODULE_LICENSE("GPL");
175 Stuff for Emacs to see, in order to encourage consistent editing style:
176 *** Local Variables: ***
178 *** fill-column: 70 ***
180 *** c-basic-offset: 8 ***