blob: 54d9f168d7ad5d3faaea36a79ea41c63868f2087 [file] [log] [blame]
Mike Iselyd8554972006-06-26 20:58:46 -03001/*
2 *
3 * $Id$
4 *
5 * Copyright (C) 2005 Mike Isely <isely@pobox.com>
6 * Copyright (C) 2004 Aurelien Alleaume <slts@free.fr>
7 *
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
11 *
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.
16 *
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
20 *
21 */
22
Mike Iselyd8554972006-06-26 20:58:46 -030023#include <linux/kernel.h>
24#include <linux/errno.h>
25#include <linux/slab.h>
26#include <linux/module.h>
Mike Iselyd8554972006-06-26 20:58:46 -030027#include <linux/usb.h>
28#include <linux/videodev2.h>
29
30#include "pvrusb2-hdw.h"
Mike Isely989eb152007-11-26 01:53:12 -030031#include "pvrusb2-devattr.h"
Mike Iselyd8554972006-06-26 20:58:46 -030032#include "pvrusb2-context.h"
33#include "pvrusb2-debug.h"
34#include "pvrusb2-v4l2.h"
35#ifdef CONFIG_VIDEO_PVRUSB2_SYSFS
36#include "pvrusb2-sysfs.h"
37#endif /* CONFIG_VIDEO_PVRUSB2_SYSFS */
38
39#define DRIVER_AUTHOR "Mike Isely <isely@pobox.com>"
40#define DRIVER_DESC "Hauppauge WinTV-PVR-USB2 MPEG2 Encoder/Tuner"
41#define DRIVER_VERSION "V4L in-tree version"
42
43#define DEFAULT_DEBUG_MASK (PVR2_TRACE_ERROR_LEGS| \
44 PVR2_TRACE_INFO| \
Mike Isely56585382007-09-08 22:32:12 -030045 PVR2_TRACE_STD| \
Mike Iselyd8554972006-06-26 20:58:46 -030046 PVR2_TRACE_TOLERANCE| \
47 PVR2_TRACE_TRAP| \
Mike Iselyd8554972006-06-26 20:58:46 -030048 0)
49
50int pvrusb2_debug = DEFAULT_DEBUG_MASK;
51
52module_param_named(debug,pvrusb2_debug,int,S_IRUGO|S_IWUSR);
53MODULE_PARM_DESC(debug, "Debug trace mask");
54
55#ifdef CONFIG_VIDEO_PVRUSB2_SYSFS
Mike Iselya0fd1cb2006-06-30 11:35:28 -030056static struct pvr2_sysfs_class *class_ptr = NULL;
Mike Iselyd8554972006-06-26 20:58:46 -030057#endif /* CONFIG_VIDEO_PVRUSB2_SYSFS */
58
59static void pvr_setup_attach(struct pvr2_context *pvr)
60{
61 /* Create association with v4l layer */
62 pvr2_v4l2_create(pvr);
Michael Krufky04910bd2008-02-03 23:46:16 -030063#ifdef CONFIG_VIDEO_PVRUSB2_DVB
64 /* Create association with dvb layer */
Mike Iselyc5317b12008-02-09 19:47:07 -030065 pvr2_dvb_create(pvr);
Michael Krufky04910bd2008-02-03 23:46:16 -030066#endif
Mike Iselyd8554972006-06-26 20:58:46 -030067#ifdef CONFIG_VIDEO_PVRUSB2_SYSFS
68 pvr2_sysfs_create(pvr,class_ptr);
69#endif /* CONFIG_VIDEO_PVRUSB2_SYSFS */
70}
71
72static int pvr_probe(struct usb_interface *intf,
73 const struct usb_device_id *devid)
74{
75 struct pvr2_context *pvr;
76
77 /* Create underlying hardware interface */
78 pvr = pvr2_context_create(intf,devid,pvr_setup_attach);
79 if (!pvr) {
80 pvr2_trace(PVR2_TRACE_ERROR_LEGS,
81 "Failed to create hdw handler");
82 return -ENOMEM;
83 }
84
85 pvr2_trace(PVR2_TRACE_INIT,"pvr_probe(pvr=%p)",pvr);
86
87 usb_set_intfdata(intf, pvr);
88
89 return 0;
90}
91
92/*
93 * pvr_disconnect()
94 *
95 */
96static void pvr_disconnect(struct usb_interface *intf)
97{
98 struct pvr2_context *pvr = usb_get_intfdata(intf);
99
100 pvr2_trace(PVR2_TRACE_INIT,"pvr_disconnect(pvr=%p) BEGIN",pvr);
101
102 usb_set_intfdata (intf, NULL);
103 pvr2_context_disconnect(pvr);
104
105 pvr2_trace(PVR2_TRACE_INIT,"pvr_disconnect(pvr=%p) DONE",pvr);
106
107}
108
109static struct usb_driver pvr_driver = {
Mike Iselya0fd1cb2006-06-30 11:35:28 -0300110 .name = "pvrusb2",
111 .id_table = pvr2_device_table,
112 .probe = pvr_probe,
113 .disconnect = pvr_disconnect
Mike Iselyd8554972006-06-26 20:58:46 -0300114};
115
116/*
117 * pvr_init() / pvr_exit()
118 *
119 * This code is run to initialize/exit the driver.
120 *
121 */
122static int __init pvr_init(void)
123{
124 int ret;
125
126 pvr2_trace(PVR2_TRACE_INIT,"pvr_init");
127
128#ifdef CONFIG_VIDEO_PVRUSB2_SYSFS
129 class_ptr = pvr2_sysfs_class_create();
130#endif /* CONFIG_VIDEO_PVRUSB2_SYSFS */
131
132 ret = usb_register(&pvr_driver);
133
134 if (ret == 0)
135 info(DRIVER_DESC " : " DRIVER_VERSION);
136 if (pvrusb2_debug) info("Debug mask is %d (0x%x)",
137 pvrusb2_debug,pvrusb2_debug);
138
139 return ret;
140}
141
142static void __exit pvr_exit(void)
143{
Mike Iselyd8554972006-06-26 20:58:46 -0300144 pvr2_trace(PVR2_TRACE_INIT,"pvr_exit");
145
Mike Isely4f663bd2007-11-03 00:06:42 -0300146 usb_deregister(&pvr_driver);
147
Mike Iselyd8554972006-06-26 20:58:46 -0300148#ifdef CONFIG_VIDEO_PVRUSB2_SYSFS
149 pvr2_sysfs_class_destroy(class_ptr);
150#endif /* CONFIG_VIDEO_PVRUSB2_SYSFS */
Mike Iselyd8554972006-06-26 20:58:46 -0300151}
152
153module_init(pvr_init);
154module_exit(pvr_exit);
155
Mike Iselyd8554972006-06-26 20:58:46 -0300156MODULE_AUTHOR(DRIVER_AUTHOR);
157MODULE_DESCRIPTION(DRIVER_DESC);
158MODULE_LICENSE("GPL");
159
160
161/*
162 Stuff for Emacs to see, in order to encourage consistent editing style:
163 *** Local Variables: ***
164 *** mode: c ***
165 *** fill-column: 70 ***
166 *** tab-width: 8 ***
167 *** c-basic-offset: 8 ***
168 *** End: ***
169 */