blob: 2e3ea0fa28e01768fc4a1291919897b7aa2509c6 [file] [log] [blame]
Johannes Stezenbach776338e2005-06-23 22:02:35 -07001/*
2 * DVB USB library - provides a generic interface for a DVB USB device driver.
3 *
4 * dvb-usb-init.c
5 *
Patrick Boettcher4d43e132006-09-30 06:53:48 -03006 * Copyright (C) 2004-6 Patrick Boettcher (patrick.boettcher@desy.de)
Johannes Stezenbach776338e2005-06-23 22:02:35 -07007 *
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License as published by the Free
10 * Software Foundation, version 2.
11 *
12 * see Documentation/dvb/README.dvb-usb for more information
13 */
14#include "dvb-usb-common.h"
15
16/* debug */
17int dvb_usb_debug;
Dan Carpentercd3172d2010-07-01 01:50:04 -030018module_param_named(debug, dvb_usb_debug, int, 0644);
Patrick Boettcher4d43e132006-09-30 06:53:48 -030019MODULE_PARM_DESC(debug, "set debugging level (1=info,xfer=2,pll=4,ts=8,err=16,rc=32,fw=64,mem=128,uxfer=256 (or-able))." DVB_USB_DEBUG_STATUS);
Johannes Stezenbach776338e2005-06-23 22:02:35 -070020
Patrick Boettcherc9b06fa2005-07-07 17:58:11 -070021int dvb_usb_disable_rc_polling;
22module_param_named(disable_rc_polling, dvb_usb_disable_rc_polling, int, 0644);
23MODULE_PARM_DESC(disable_rc_polling, "disable remote control polling (default: 0).");
24
Patrick Boettcher4d43e132006-09-30 06:53:48 -030025static int dvb_usb_force_pid_filter_usage;
26module_param_named(force_pid_filter_usage, dvb_usb_force_pid_filter_usage, int, 0444);
Michael Mauche927b3f2007-08-18 18:02:31 -030027MODULE_PARM_DESC(force_pid_filter_usage, "force all dvb-usb-devices to use a PID filter, if any (default: 0).");
Patrick Boettcher4d43e132006-09-30 06:53:48 -030028
Janne Grunau78e92002008-04-09 19:13:13 -030029static int dvb_usb_adapter_init(struct dvb_usb_device *d, short *adapter_nrs)
Patrick Boettcher4d43e132006-09-30 06:53:48 -030030{
31 struct dvb_usb_adapter *adap;
Dan Carpentercd3172d2010-07-01 01:50:04 -030032 int ret, n;
Patrick Boettcher4d43e132006-09-30 06:53:48 -030033
34 for (n = 0; n < d->props.num_adapters; n++) {
35 adap = &d->adapter[n];
36 adap->dev = d;
37 adap->id = n;
38
39 memcpy(&adap->props, &d->props.adapter[n], sizeof(struct dvb_usb_adapter_properties));
40
Dan Carpentercd3172d2010-07-01 01:50:04 -030041 /* speed - when running at FULL speed we need a HW PID filter */
Patrick Boettcher4d43e132006-09-30 06:53:48 -030042 if (d->udev->speed == USB_SPEED_FULL && !(adap->props.caps & DVB_USB_ADAP_HAS_PID_FILTER)) {
43 err("This USB2.0 device cannot be run on a USB1.1 port. (it lacks a hardware PID filter)");
44 return -ENODEV;
45 }
46
47 if ((d->udev->speed == USB_SPEED_FULL && adap->props.caps & DVB_USB_ADAP_HAS_PID_FILTER) ||
48 (adap->props.caps & DVB_USB_ADAP_NEED_PID_FILTERING)) {
Dan Carpentercd3172d2010-07-01 01:50:04 -030049 info("will use the device's hardware PID filter (table count: %d).", adap->props.pid_filter_count);
Patrick Boettcher4d43e132006-09-30 06:53:48 -030050 adap->pid_filtering = 1;
51 adap->max_feed_count = adap->props.pid_filter_count;
52 } else {
53 info("will pass the complete MPEG2 transport stream to the software demuxer.");
54 adap->pid_filtering = 0;
55 adap->max_feed_count = 255;
56 }
57
58 if (!adap->pid_filtering &&
59 dvb_usb_force_pid_filter_usage &&
60 adap->props.caps & DVB_USB_ADAP_HAS_PID_FILTER) {
61 info("pid filter enabled by module option.");
62 adap->pid_filtering = 1;
63 adap->max_feed_count = adap->props.pid_filter_count;
64 }
65
66 if (adap->props.size_of_priv > 0) {
Dan Carpentercd3172d2010-07-01 01:50:04 -030067 adap->priv = kzalloc(adap->props.size_of_priv, GFP_KERNEL);
Patrick Boettcher4d43e132006-09-30 06:53:48 -030068 if (adap->priv == NULL) {
Dan Carpentercd3172d2010-07-01 01:50:04 -030069 err("no memory for priv for adapter %d.", n);
Patrick Boettcher4d43e132006-09-30 06:53:48 -030070 return -ENOMEM;
71 }
72 }
73
74 if ((ret = dvb_usb_adapter_stream_init(adap)) ||
Janne Grunau78e92002008-04-09 19:13:13 -030075 (ret = dvb_usb_adapter_dvb_init(adap, adapter_nrs)) ||
Patrick Boettcher4d43e132006-09-30 06:53:48 -030076 (ret = dvb_usb_adapter_frontend_init(adap))) {
77 return ret;
78 }
79
80 d->num_adapters_initialized++;
81 d->state |= DVB_USB_STATE_DVB;
82 }
83
84 /*
85 * when reloading the driver w/o replugging the device
86 * sometimes a timeout occures, this helps
87 */
88 if (d->props.generic_bulk_ctrl_endpoint != 0) {
Dan Carpentercd3172d2010-07-01 01:50:04 -030089 usb_clear_halt(d->udev, usb_sndbulkpipe(d->udev, d->props.generic_bulk_ctrl_endpoint));
90 usb_clear_halt(d->udev, usb_rcvbulkpipe(d->udev, d->props.generic_bulk_ctrl_endpoint));
Patrick Boettcher4d43e132006-09-30 06:53:48 -030091 }
92
93 return 0;
94}
95
96static int dvb_usb_adapter_exit(struct dvb_usb_device *d)
97{
98 int n;
Dan Carpentercd3172d2010-07-01 01:50:04 -030099
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300100 for (n = 0; n < d->num_adapters_initialized; n++) {
101 dvb_usb_adapter_frontend_exit(&d->adapter[n]);
102 dvb_usb_adapter_dvb_exit(&d->adapter[n]);
103 dvb_usb_adapter_stream_exit(&d->adapter[n]);
104 kfree(d->adapter[n].priv);
105 }
106 d->num_adapters_initialized = 0;
107 d->state &= ~DVB_USB_STATE_DVB;
108 return 0;
109}
110
111
Johannes Stezenbach776338e2005-06-23 22:02:35 -0700112/* general initialization functions */
Adrian Bunk15ac8e62005-12-01 00:51:53 -0800113static int dvb_usb_exit(struct dvb_usb_device *d)
Johannes Stezenbach776338e2005-06-23 22:02:35 -0700114{
Dan Carpentercd3172d2010-07-01 01:50:04 -0300115 deb_info("state before exiting everything: %x\n", d->state);
Johannes Stezenbach776338e2005-06-23 22:02:35 -0700116 dvb_usb_remote_exit(d);
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300117 dvb_usb_adapter_exit(d);
Johannes Stezenbach776338e2005-06-23 22:02:35 -0700118 dvb_usb_i2c_exit(d);
Dan Carpentercd3172d2010-07-01 01:50:04 -0300119 deb_info("state should be zero now: %x\n", d->state);
Johannes Stezenbach776338e2005-06-23 22:02:35 -0700120 d->state = DVB_USB_STATE_INIT;
121 kfree(d->priv);
122 kfree(d);
123 return 0;
124}
125
Janne Grunau78e92002008-04-09 19:13:13 -0300126static int dvb_usb_init(struct dvb_usb_device *d, short *adapter_nums)
Johannes Stezenbach776338e2005-06-23 22:02:35 -0700127{
128 int ret = 0;
129
Ingo Molnar3593cab2006-02-07 06:49:14 -0200130 mutex_init(&d->usb_mutex);
131 mutex_init(&d->i2c_mutex);
Johannes Stezenbach776338e2005-06-23 22:02:35 -0700132
133 d->state = DVB_USB_STATE_INIT;
134
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300135 if (d->props.size_of_priv > 0) {
Dan Carpentercd3172d2010-07-01 01:50:04 -0300136 d->priv = kzalloc(d->props.size_of_priv, GFP_KERNEL);
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300137 if (d->priv == NULL) {
138 err("no memory for priv in 'struct dvb_usb_device'");
139 return -ENOMEM;
Patrick Boettchera37ddce2006-09-20 06:06:11 -0300140 }
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300141 }
142
Dan Carpentercd3172d2010-07-01 01:50:04 -0300143 /* check the capabilities and set appropriate variables */
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300144 dvb_usb_device_power_ctrl(d, 1);
Johannes Stezenbach776338e2005-06-23 22:02:35 -0700145
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300146 if ((ret = dvb_usb_i2c_init(d)) ||
Janne Grunau78e92002008-04-09 19:13:13 -0300147 (ret = dvb_usb_adapter_init(d, adapter_nums))) {
Johannes Stezenbach776338e2005-06-23 22:02:35 -0700148 dvb_usb_exit(d);
149 return ret;
150 }
151
152 if ((ret = dvb_usb_remote_init(d)))
153 err("could not initialize remote control.");
154
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300155 dvb_usb_device_power_ctrl(d, 0);
Johannes Stezenbach776338e2005-06-23 22:02:35 -0700156
157 return 0;
158}
159
160/* determine the name and the state of the just found USB device */
Dan Carpentercd3172d2010-07-01 01:50:04 -0300161static struct dvb_usb_device_description *dvb_usb_find_device(struct usb_device *udev, struct dvb_usb_device_properties *props, int *cold)
Johannes Stezenbach776338e2005-06-23 22:02:35 -0700162{
Dan Carpentercd3172d2010-07-01 01:50:04 -0300163 int i, j;
Johannes Stezenbach776338e2005-06-23 22:02:35 -0700164 struct dvb_usb_device_description *desc = NULL;
Dan Carpentercd3172d2010-07-01 01:50:04 -0300165
Johannes Stezenbach776338e2005-06-23 22:02:35 -0700166 *cold = -1;
167
168 for (i = 0; i < props->num_device_descs; i++) {
169
170 for (j = 0; j < DVB_USB_ID_MAX_NUM && props->devices[i].cold_ids[j] != NULL; j++) {
Dan Carpentercd3172d2010-07-01 01:50:04 -0300171 deb_info("check for cold %x %x\n", props->devices[i].cold_ids[j]->idVendor, props->devices[i].cold_ids[j]->idProduct);
Johannes Stezenbach776338e2005-06-23 22:02:35 -0700172 if (props->devices[i].cold_ids[j]->idVendor == le16_to_cpu(udev->descriptor.idVendor) &&
173 props->devices[i].cold_ids[j]->idProduct == le16_to_cpu(udev->descriptor.idProduct)) {
174 *cold = 1;
175 desc = &props->devices[i];
176 break;
177 }
178 }
179
180 if (desc != NULL)
181 break;
182
183 for (j = 0; j < DVB_USB_ID_MAX_NUM && props->devices[i].warm_ids[j] != NULL; j++) {
Dan Carpentercd3172d2010-07-01 01:50:04 -0300184 deb_info("check for warm %x %x\n", props->devices[i].warm_ids[j]->idVendor, props->devices[i].warm_ids[j]->idProduct);
Johannes Stezenbach776338e2005-06-23 22:02:35 -0700185 if (props->devices[i].warm_ids[j]->idVendor == le16_to_cpu(udev->descriptor.idVendor) &&
186 props->devices[i].warm_ids[j]->idProduct == le16_to_cpu(udev->descriptor.idProduct)) {
187 *cold = 0;
188 desc = &props->devices[i];
189 break;
190 }
191 }
192 }
193
194 if (desc != NULL && props->identify_state != NULL)
Dan Carpentercd3172d2010-07-01 01:50:04 -0300195 props->identify_state(udev, props, &desc, cold);
Johannes Stezenbach776338e2005-06-23 22:02:35 -0700196
197 return desc;
198}
199
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300200int dvb_usb_device_power_ctrl(struct dvb_usb_device *d, int onoff)
201{
Patrick Boettchera37ddce2006-09-20 06:06:11 -0300202 if (onoff)
203 d->powered++;
204 else
205 d->powered--;
206
Dan Carpentercd3172d2010-07-01 01:50:04 -0300207 if (d->powered == 0 || (onoff && d->powered == 1)) { /* when switching from 1 to 0 or from 0 to 1 */
Patrick Boettchera37ddce2006-09-20 06:06:11 -0300208 deb_info("power control: %d\n", onoff);
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300209 if (d->props.power_ctrl)
210 return d->props.power_ctrl(d, onoff);
211 }
212 return 0;
213}
214
Johannes Stezenbach776338e2005-06-23 22:02:35 -0700215/*
216 * USB
217 */
Janne Grunau78e92002008-04-09 19:13:13 -0300218int dvb_usb_device_init(struct usb_interface *intf,
219 struct dvb_usb_device_properties *props,
220 struct module *owner, struct dvb_usb_device **du,
221 short *adapter_nums)
Johannes Stezenbach776338e2005-06-23 22:02:35 -0700222{
223 struct usb_device *udev = interface_to_usbdev(intf);
224 struct dvb_usb_device *d = NULL;
225 struct dvb_usb_device_description *desc = NULL;
226
Dan Carpentercd3172d2010-07-01 01:50:04 -0300227 int ret = -ENOMEM, cold = 0;
Johannes Stezenbach776338e2005-06-23 22:02:35 -0700228
Patrick Boettcher6ff5ef22006-01-09 15:25:33 -0200229 if (du != NULL)
230 *du = NULL;
231
Dan Carpentercd3172d2010-07-01 01:50:04 -0300232 if ((desc = dvb_usb_find_device(udev, props, &cold)) == NULL) {
Johannes Stezenbach776338e2005-06-23 22:02:35 -0700233 deb_err("something went very wrong, device was not found in current device list - let's see what comes next.\n");
234 return -ENODEV;
235 }
236
237 if (cold) {
Dan Carpentercd3172d2010-07-01 01:50:04 -0300238 info("found a '%s' in cold state, will try to load a firmware", desc->name);
239 ret = dvb_usb_download_firmware(udev, props);
Patrick Boettcher5bc63602006-09-19 12:51:46 -0300240 if (!props->no_reconnect || ret != 0)
Johannes Stezenbach776338e2005-06-23 22:02:35 -0700241 return ret;
Johannes Stezenbach776338e2005-06-23 22:02:35 -0700242 }
243
Dan Carpentercd3172d2010-07-01 01:50:04 -0300244 info("found a '%s' in warm state.", desc->name);
245 d = kzalloc(sizeof(struct dvb_usb_device), GFP_KERNEL);
Patrick Boettcherd3707ad2006-01-09 15:25:04 -0200246 if (d == NULL) {
247 err("no memory for 'struct dvb_usb_device'");
Roel Kluin407df292010-02-02 11:29:46 -0300248 return -ENOMEM;
Patrick Boettcherd3707ad2006-01-09 15:25:04 -0200249 }
Patrick Boettcherd3707ad2006-01-09 15:25:04 -0200250
251 d->udev = udev;
Dan Carpentercd3172d2010-07-01 01:50:04 -0300252 memcpy(&d->props, props, sizeof(struct dvb_usb_device_properties));
Patrick Boettcherd3707ad2006-01-09 15:25:04 -0200253 d->desc = desc;
254 d->owner = owner;
255
Patrick Boettcherd3707ad2006-01-09 15:25:04 -0200256 usb_set_intfdata(intf, d);
257
258 if (du != NULL)
259 *du = d;
260
Janne Grunau78e92002008-04-09 19:13:13 -0300261 ret = dvb_usb_init(d, adapter_nums);
Patrick Boettcherd3707ad2006-01-09 15:25:04 -0200262
Johannes Stezenbach776338e2005-06-23 22:02:35 -0700263 if (ret == 0)
Dan Carpentercd3172d2010-07-01 01:50:04 -0300264 info("%s successfully initialized and connected.", desc->name);
Johannes Stezenbach776338e2005-06-23 22:02:35 -0700265 else
Dan Carpentercd3172d2010-07-01 01:50:04 -0300266 info("%s error while loading driver (%d)", desc->name, ret);
Johannes Stezenbach776338e2005-06-23 22:02:35 -0700267 return ret;
268}
269EXPORT_SYMBOL(dvb_usb_device_init);
270
271void dvb_usb_device_exit(struct usb_interface *intf)
272{
273 struct dvb_usb_device *d = usb_get_intfdata(intf);
274 const char *name = "generic DVB-USB module";
275
Dan Carpentercd3172d2010-07-01 01:50:04 -0300276 usb_set_intfdata(intf, NULL);
Johannes Stezenbach776338e2005-06-23 22:02:35 -0700277 if (d != NULL && d->desc != NULL) {
278 name = d->desc->name;
279 dvb_usb_exit(d);
280 }
Dan Carpentercd3172d2010-07-01 01:50:04 -0300281 info("%s successfully deinitialized and disconnected.", name);
Johannes Stezenbach776338e2005-06-23 22:02:35 -0700282
283}
284EXPORT_SYMBOL(dvb_usb_device_exit);
285
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300286MODULE_VERSION("1.0");
Johannes Stezenbach776338e2005-06-23 22:02:35 -0700287MODULE_AUTHOR("Patrick Boettcher <patrick.boettcher@desy.de>");
288MODULE_DESCRIPTION("A library module containing commonly used USB and DVB function USB DVB devices");
289MODULE_LICENSE("GPL");