5 * Copyright (C) 2005 Mike Isely <isely@pobox.com>
6 * Copyright (C) 2004 Aurelien Alleaume <slts@free.fr>
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23 #include <linux/kernel.h>
24 #include <linux/errno.h>
25 #include <linux/slab.h>
26 #include <linux/module.h>
27 #include <linux/usb.h>
28 #include <linux/videodev2.h>
30 #include "pvrusb2-hdw.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| \
44 PVR2_TRACE_TOLERANCE| \
48 int pvrusb2_debug = DEFAULT_DEBUG_MASK;
50 module_param_named(debug,pvrusb2_debug,int,S_IRUGO|S_IWUSR);
51 MODULE_PARM_DESC(debug, "Debug trace mask");
53 #ifdef CONFIG_VIDEO_PVRUSB2_SYSFS
54 static struct pvr2_sysfs_class *class_ptr = NULL;
55 #endif /* CONFIG_VIDEO_PVRUSB2_SYSFS */
57 static void pvr_setup_attach(struct pvr2_context *pvr)
59 /* Create association with v4l layer */
60 pvr2_v4l2_create(pvr);
61 #ifdef CONFIG_VIDEO_PVRUSB2_SYSFS
62 pvr2_sysfs_create(pvr,class_ptr);
63 #endif /* CONFIG_VIDEO_PVRUSB2_SYSFS */
66 static int pvr_probe(struct usb_interface *intf,
67 const struct usb_device_id *devid)
69 struct pvr2_context *pvr;
71 /* Create underlying hardware interface */
72 pvr = pvr2_context_create(intf,devid,pvr_setup_attach);
74 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
75 "Failed to create hdw handler");
79 pvr2_trace(PVR2_TRACE_INIT,"pvr_probe(pvr=%p)",pvr);
81 usb_set_intfdata(intf, pvr);
90 static void pvr_disconnect(struct usb_interface *intf)
92 struct pvr2_context *pvr = usb_get_intfdata(intf);
94 pvr2_trace(PVR2_TRACE_INIT,"pvr_disconnect(pvr=%p) BEGIN",pvr);
96 usb_set_intfdata (intf, NULL);
97 pvr2_context_disconnect(pvr);
99 pvr2_trace(PVR2_TRACE_INIT,"pvr_disconnect(pvr=%p) DONE",pvr);
103 static struct usb_driver pvr_driver = {
105 .id_table = pvr2_device_table,
107 .disconnect = pvr_disconnect
111 * pvr_init() / pvr_exit()
113 * This code is run to initialize/exit the driver.
116 static int __init pvr_init(void)
120 pvr2_trace(PVR2_TRACE_INIT,"pvr_init");
122 #ifdef CONFIG_VIDEO_PVRUSB2_SYSFS
123 class_ptr = pvr2_sysfs_class_create();
124 #endif /* CONFIG_VIDEO_PVRUSB2_SYSFS */
126 ret = usb_register(&pvr_driver);
129 info(DRIVER_DESC " : " DRIVER_VERSION);
130 if (pvrusb2_debug) info("Debug mask is %d (0x%x)",
131 pvrusb2_debug,pvrusb2_debug);
136 static void __exit pvr_exit(void)
139 pvr2_trace(PVR2_TRACE_INIT,"pvr_exit");
141 #ifdef CONFIG_VIDEO_PVRUSB2_SYSFS
142 pvr2_sysfs_class_destroy(class_ptr);
143 #endif /* CONFIG_VIDEO_PVRUSB2_SYSFS */
145 usb_deregister(&pvr_driver);
148 module_init(pvr_init);
149 module_exit(pvr_exit);
151 /* Mike Isely <mcisely@pobox.com> 11-Mar-2006: See pvrusb2-hdw.c for
152 MODULE_DEVICE_TABLE(). We have to declare that attribute there
153 because that's where the device table actually is now and it seems
154 that certain gcc configurations get angry if MODULE_DEVICE_TABLE()
155 is used on what ends up being an external symbol. */
156 MODULE_AUTHOR(DRIVER_AUTHOR);
157 MODULE_DESCRIPTION(DRIVER_DESC);
158 MODULE_LICENSE("GPL");
162 Stuff for Emacs to see, in order to encourage consistent editing style:
163 *** Local Variables: ***
165 *** fill-column: 70 ***
167 *** c-basic-offset: 8 ***