blob: c1b47d74e206a468fdc9c2bce7792d19740256e1 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/******************************************************************************
2 * speedtch.c - Alcatel SpeedTouch USB xDSL modem driver
3 *
4 * Copyright (C) 2001, Alcatel
5 * Copyright (C) 2003, Duncan Sands
6 * Copyright (C) 2004, David Woodhouse
7 *
Duncan Sands48da7262005-05-11 20:20:40 +02008 * Based on "modem_run.c", copyright (C) 2001, Benoit Papillault
9 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 * This program is free software; you can redistribute it and/or modify it
11 * under the terms of the GNU General Public License as published by the Free
12 * Software Foundation; either version 2 of the License, or (at your option)
13 * any later version.
14 *
15 * This program is distributed in the hope that it will be useful, but WITHOUT
16 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
17 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
18 * more details.
19 *
20 * You should have received a copy of the GNU General Public License along with
21 * this program; if not, write to the Free Software Foundation, Inc., 59
22 * Temple Place - Suite 330, Boston, MA 02111-1307, USA.
23 *
24 ******************************************************************************/
25
Duncan Sands48da7262005-05-11 20:20:40 +020026#include <asm/page.h>
27#include <linux/device.h>
28#include <linux/errno.h>
29#include <linux/firmware.h>
30#include <linux/gfp.h>
31#include <linux/init.h>
32#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <linux/module.h>
34#include <linux/moduleparam.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <linux/slab.h>
Duncan Sands48da7262005-05-11 20:20:40 +020036#include <linux/stat.h>
37#include <linux/timer.h>
38#include <linux/workqueue.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
Duncan Sands48da7262005-05-11 20:20:40 +020040#include "usbatm.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
42#define DRIVER_AUTHOR "Johan Verrept, Duncan Sands <duncan.sands@free.fr>"
Duncan Sands48da7262005-05-11 20:20:40 +020043#define DRIVER_VERSION "1.9"
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#define DRIVER_DESC "Alcatel SpeedTouch USB driver version " DRIVER_VERSION
45
46static const char speedtch_driver_name[] = "speedtch";
47
Duncan Sands48da7262005-05-11 20:20:40 +020048#define CTRL_TIMEOUT 2000 /* milliseconds */
49#define DATA_TIMEOUT 2000 /* milliseconds */
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
Duncan Sands48da7262005-05-11 20:20:40 +020051#define OFFSET_7 0 /* size 1 */
52#define OFFSET_b 1 /* size 8 */
53#define OFFSET_d 9 /* size 4 */
54#define OFFSET_e 13 /* size 1 */
55#define OFFSET_f 14 /* size 1 */
56#define TOTAL 15
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
Duncan Sands48da7262005-05-11 20:20:40 +020058#define SIZE_7 1
59#define SIZE_b 8
60#define SIZE_d 4
61#define SIZE_e 1
62#define SIZE_f 1
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
Duncan Sands48da7262005-05-11 20:20:40 +020064#define MIN_POLL_DELAY 5000 /* milliseconds */
65#define MAX_POLL_DELAY 60000 /* milliseconds */
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
Duncan Sands48da7262005-05-11 20:20:40 +020067#define RESUBMIT_DELAY 1000 /* milliseconds */
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
Duncan Sands48da7262005-05-11 20:20:40 +020069#define DEFAULT_ALTSETTING 1
70#define DEFAULT_DL_512_FIRST 0
71#define DEFAULT_SW_BUFFERING 0
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
Duncan Sands48da7262005-05-11 20:20:40 +020073static int altsetting = DEFAULT_ALTSETTING;
74static int dl_512_first = DEFAULT_DL_512_FIRST;
75static int sw_buffering = DEFAULT_SW_BUFFERING;
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
Duncan Sands48da7262005-05-11 20:20:40 +020077module_param(altsetting, int, S_IRUGO | S_IWUSR);
78MODULE_PARM_DESC(altsetting,
79 "Alternative setting for data interface (default: "
80 __MODULE_STRING(DEFAULT_ALTSETTING) ")");
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
Duncan Sands48da7262005-05-11 20:20:40 +020082module_param(dl_512_first, bool, S_IRUGO | S_IWUSR);
83MODULE_PARM_DESC(dl_512_first,
84 "Read 512 bytes before sending firmware (default: "
85 __MODULE_STRING(DEFAULT_DL_512_FIRST) ")");
86
87module_param(sw_buffering, bool, S_IRUGO | S_IWUSR);
88MODULE_PARM_DESC(sw_buffering,
89 "Enable software buffering (default: "
90 __MODULE_STRING(DEFAULT_SW_BUFFERING) ")");
91
92#define ENDPOINT_INT 0x81
93#define ENDPOINT_DATA 0x07
94#define ENDPOINT_FIRMWARE 0x05
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
96#define hex2int(c) ( (c >= '0') && (c <= '9') ? (c - '0') : ((c & 0xf) + 9) )
97
Linus Torvalds1da177e2005-04-16 15:20:36 -070098struct speedtch_instance_data {
Duncan Sands48da7262005-05-11 20:20:40 +020099 struct usbatm_data *usbatm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100
Duncan Sands48da7262005-05-11 20:20:40 +0200101 struct work_struct status_checker;
102
Duncan Sands1a7aad12005-06-23 09:37:56 +0200103 unsigned char last_status;
104
Duncan Sands48da7262005-05-11 20:20:40 +0200105 int poll_delay; /* milliseconds */
106
107 struct timer_list resubmit_timer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 struct urb *int_urb;
109 unsigned char int_data[16];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
Duncan Sands48da7262005-05-11 20:20:40 +0200111 unsigned char scratch_buffer[TOTAL];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112};
113
114/***************
115** firmware **
116***************/
117
Duncan Sands48da7262005-05-11 20:20:40 +0200118static void speedtch_set_swbuff(struct speedtch_instance_data *instance, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119{
Duncan Sands48da7262005-05-11 20:20:40 +0200120 struct usbatm_data *usbatm = instance->usbatm;
121 struct usb_device *usb_dev = usbatm->usb_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 int ret;
123
Duncan Sands48da7262005-05-11 20:20:40 +0200124 ret = usb_control_msg(usb_dev, usb_sndctrlpipe(usb_dev, 0),
125 0x32, 0x40, state ? 0x01 : 0x00, 0x00, NULL, 0, CTRL_TIMEOUT);
126 if (ret < 0)
127 usb_warn(usbatm,
128 "%sabling SW buffering: usb_control_msg returned %d\n",
129 state ? "En" : "Dis", ret);
130 else
131 dbg("speedtch_set_swbuff: %sbled SW buffering", state ? "En" : "Dis");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132}
133
134static void speedtch_test_sequence(struct speedtch_instance_data *instance)
135{
Duncan Sands48da7262005-05-11 20:20:40 +0200136 struct usbatm_data *usbatm = instance->usbatm;
137 struct usb_device *usb_dev = usbatm->usb_dev;
138 unsigned char *buf = instance->scratch_buffer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 int ret;
140
141 /* URB 147 */
142 buf[0] = 0x1c;
143 buf[1] = 0x50;
Duncan Sands48da7262005-05-11 20:20:40 +0200144 ret = usb_control_msg(usb_dev, usb_sndctrlpipe(usb_dev, 0),
145 0x01, 0x40, 0x0b, 0x00, buf, 2, CTRL_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 if (ret < 0)
Duncan Sands48da7262005-05-11 20:20:40 +0200147 usb_warn(usbatm, "%s failed on URB147: %d\n", __func__, ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
149 /* URB 148 */
150 buf[0] = 0x32;
151 buf[1] = 0x00;
Duncan Sands48da7262005-05-11 20:20:40 +0200152 ret = usb_control_msg(usb_dev, usb_sndctrlpipe(usb_dev, 0),
153 0x01, 0x40, 0x02, 0x00, buf, 2, CTRL_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 if (ret < 0)
Duncan Sands48da7262005-05-11 20:20:40 +0200155 usb_warn(usbatm, "%s failed on URB148: %d\n", __func__, ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156
157 /* URB 149 */
158 buf[0] = 0x01;
159 buf[1] = 0x00;
160 buf[2] = 0x01;
Duncan Sands48da7262005-05-11 20:20:40 +0200161 ret = usb_control_msg(usb_dev, usb_sndctrlpipe(usb_dev, 0),
162 0x01, 0x40, 0x03, 0x00, buf, 3, CTRL_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 if (ret < 0)
Duncan Sands48da7262005-05-11 20:20:40 +0200164 usb_warn(usbatm, "%s failed on URB149: %d\n", __func__, ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165
166 /* URB 150 */
167 buf[0] = 0x01;
168 buf[1] = 0x00;
169 buf[2] = 0x01;
Duncan Sands48da7262005-05-11 20:20:40 +0200170 ret = usb_control_msg(usb_dev, usb_sndctrlpipe(usb_dev, 0),
171 0x01, 0x40, 0x04, 0x00, buf, 3, CTRL_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 if (ret < 0)
Duncan Sands48da7262005-05-11 20:20:40 +0200173 usb_warn(usbatm, "%s failed on URB150: %d\n", __func__, ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174}
175
Duncan Sands48da7262005-05-11 20:20:40 +0200176static int speedtch_upload_firmware(struct speedtch_instance_data *instance,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 const struct firmware *fw1,
178 const struct firmware *fw2)
179{
180 unsigned char *buffer;
Duncan Sands48da7262005-05-11 20:20:40 +0200181 struct usbatm_data *usbatm = instance->usbatm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 struct usb_interface *intf;
Duncan Sands48da7262005-05-11 20:20:40 +0200183 struct usb_device *usb_dev = usbatm->usb_dev;
184 int actual_length;
185 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 int offset;
187
Duncan Sands48da7262005-05-11 20:20:40 +0200188 usb_dbg(usbatm, "%s entered\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189
190 if (!(buffer = (unsigned char *)__get_free_page(GFP_KERNEL))) {
Duncan Sands48da7262005-05-11 20:20:40 +0200191 ret = -ENOMEM;
192 usb_dbg(usbatm, "%s: no memory for buffer!\n", __func__);
193 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 }
195
Duncan Sands48da7262005-05-11 20:20:40 +0200196 if (!(intf = usb_ifnum_to_if(usb_dev, 2))) {
197 ret = -ENODEV;
198 usb_dbg(usbatm, "%s: interface not found!\n", __func__);
199 goto out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 }
201
202 /* URB 7 */
203 if (dl_512_first) { /* some modems need a read before writing the firmware */
Duncan Sands48da7262005-05-11 20:20:40 +0200204 ret = usb_bulk_msg(usb_dev, usb_rcvbulkpipe(usb_dev, ENDPOINT_FIRMWARE),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 buffer, 0x200, &actual_length, 2000);
206
207 if (ret < 0 && ret != -ETIMEDOUT)
Duncan Sands48da7262005-05-11 20:20:40 +0200208 usb_dbg(usbatm, "%s: read BLOCK0 from modem failed (%d)!\n", __func__, ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 else
Duncan Sands48da7262005-05-11 20:20:40 +0200210 usb_dbg(usbatm, "%s: BLOCK0 downloaded (%d bytes)\n", __func__, ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 }
212
213 /* URB 8 : both leds are static green */
214 for (offset = 0; offset < fw1->size; offset += PAGE_SIZE) {
215 int thislen = min_t(int, PAGE_SIZE, fw1->size - offset);
216 memcpy(buffer, fw1->data + offset, thislen);
217
Duncan Sands48da7262005-05-11 20:20:40 +0200218 ret = usb_bulk_msg(usb_dev, usb_sndbulkpipe(usb_dev, ENDPOINT_FIRMWARE),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 buffer, thislen, &actual_length, DATA_TIMEOUT);
220
221 if (ret < 0) {
Duncan Sands48da7262005-05-11 20:20:40 +0200222 usb_dbg(usbatm, "%s: write BLOCK1 to modem failed (%d)!\n", __func__, ret);
223 goto out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 }
Duncan Sands48da7262005-05-11 20:20:40 +0200225 usb_dbg(usbatm, "%s: BLOCK1 uploaded (%zu bytes)\n", __func__, fw1->size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 }
227
228 /* USB led blinking green, ADSL led off */
229
230 /* URB 11 */
Duncan Sands48da7262005-05-11 20:20:40 +0200231 ret = usb_bulk_msg(usb_dev, usb_rcvbulkpipe(usb_dev, ENDPOINT_FIRMWARE),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 buffer, 0x200, &actual_length, DATA_TIMEOUT);
233
234 if (ret < 0) {
Duncan Sands48da7262005-05-11 20:20:40 +0200235 usb_dbg(usbatm, "%s: read BLOCK2 from modem failed (%d)!\n", __func__, ret);
236 goto out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 }
Duncan Sands48da7262005-05-11 20:20:40 +0200238 usb_dbg(usbatm, "%s: BLOCK2 downloaded (%d bytes)\n", __func__, actual_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239
240 /* URBs 12 to 139 - USB led blinking green, ADSL led off */
241 for (offset = 0; offset < fw2->size; offset += PAGE_SIZE) {
242 int thislen = min_t(int, PAGE_SIZE, fw2->size - offset);
243 memcpy(buffer, fw2->data + offset, thislen);
244
Duncan Sands48da7262005-05-11 20:20:40 +0200245 ret = usb_bulk_msg(usb_dev, usb_sndbulkpipe(usb_dev, ENDPOINT_FIRMWARE),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 buffer, thislen, &actual_length, DATA_TIMEOUT);
247
248 if (ret < 0) {
Duncan Sands48da7262005-05-11 20:20:40 +0200249 usb_dbg(usbatm, "%s: write BLOCK3 to modem failed (%d)!\n", __func__, ret);
250 goto out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 }
252 }
Duncan Sands48da7262005-05-11 20:20:40 +0200253 usb_dbg(usbatm, "%s: BLOCK3 uploaded (%zu bytes)\n", __func__, fw2->size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254
255 /* USB led static green, ADSL led static red */
256
257 /* URB 142 */
Duncan Sands48da7262005-05-11 20:20:40 +0200258 ret = usb_bulk_msg(usb_dev, usb_rcvbulkpipe(usb_dev, ENDPOINT_FIRMWARE),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 buffer, 0x200, &actual_length, DATA_TIMEOUT);
260
261 if (ret < 0) {
Duncan Sands48da7262005-05-11 20:20:40 +0200262 usb_dbg(usbatm, "%s: read BLOCK4 from modem failed (%d)!\n", __func__, ret);
263 goto out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 }
265
266 /* success */
Duncan Sands48da7262005-05-11 20:20:40 +0200267 usb_dbg(usbatm, "%s: BLOCK4 downloaded (%d bytes)\n", __func__, actual_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268
269 /* Delay to allow firmware to start up. We can do this here
270 because we're in our own kernel thread anyway. */
Duncan Sands48da7262005-05-11 20:20:40 +0200271 msleep_interruptible(1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272
273 /* Enable software buffering, if requested */
274 if (sw_buffering)
275 speedtch_set_swbuff(instance, 1);
276
277 /* Magic spell; don't ask us what this does */
278 speedtch_test_sequence(instance);
279
Duncan Sands48da7262005-05-11 20:20:40 +0200280 ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281
Duncan Sands48da7262005-05-11 20:20:40 +0200282out_free:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 free_page((unsigned long)buffer);
Duncan Sands48da7262005-05-11 20:20:40 +0200284out:
285 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286}
287
Duncan Sands48da7262005-05-11 20:20:40 +0200288static int speedtch_find_firmware(struct usb_interface *intf, int phase,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 const struct firmware **fw_p)
290{
Duncan Sands48da7262005-05-11 20:20:40 +0200291 struct device *dev = &intf->dev;
292 const u16 bcdDevice = le16_to_cpu(interface_to_usbdev(intf)->descriptor.bcdDevice);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 const u8 major_revision = bcdDevice >> 8;
294 const u8 minor_revision = bcdDevice & 0xff;
Duncan Sands48da7262005-05-11 20:20:40 +0200295 char buf[24];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296
297 sprintf(buf, "speedtch-%d.bin.%x.%02x", phase, major_revision, minor_revision);
Duncan Sands48da7262005-05-11 20:20:40 +0200298 dev_dbg(dev, "%s: looking for %s\n", __func__, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299
Duncan Sands48da7262005-05-11 20:20:40 +0200300 if (request_firmware(fw_p, buf, dev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 sprintf(buf, "speedtch-%d.bin.%x", phase, major_revision);
Duncan Sands48da7262005-05-11 20:20:40 +0200302 dev_dbg(dev, "%s: looking for %s\n", __func__, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303
Duncan Sands48da7262005-05-11 20:20:40 +0200304 if (request_firmware(fw_p, buf, dev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 sprintf(buf, "speedtch-%d.bin", phase);
Duncan Sands48da7262005-05-11 20:20:40 +0200306 dev_dbg(dev, "%s: looking for %s\n", __func__, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307
Duncan Sands48da7262005-05-11 20:20:40 +0200308 if (request_firmware(fw_p, buf, dev)) {
309 dev_warn(dev, "no stage %d firmware found!\n", phase);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 return -ENOENT;
311 }
312 }
313 }
314
Duncan Sands48da7262005-05-11 20:20:40 +0200315 dev_info(dev, "found stage %d firmware %s\n", phase, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316
317 return 0;
318}
319
Duncan Sands48da7262005-05-11 20:20:40 +0200320static int speedtch_heavy_init(struct usbatm_data *usbatm, struct usb_interface *intf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321{
322 const struct firmware *fw1, *fw2;
Duncan Sands48da7262005-05-11 20:20:40 +0200323 struct speedtch_instance_data *instance = usbatm->driver_data;
324 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325
Duncan Sands48da7262005-05-11 20:20:40 +0200326 if ((ret = speedtch_find_firmware(intf, 1, &fw1)) < 0)
327 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328
Duncan Sands48da7262005-05-11 20:20:40 +0200329 if ((ret = speedtch_find_firmware(intf, 2, &fw2)) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 release_firmware(fw1);
Duncan Sands48da7262005-05-11 20:20:40 +0200331 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 }
333
Duncan Sands48da7262005-05-11 20:20:40 +0200334 ret = speedtch_upload_firmware(instance, fw1, fw2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335
Duncan Sands48da7262005-05-11 20:20:40 +0200336 release_firmware(fw2);
337 release_firmware(fw1);
338
339 return ret;
340}
341
342
343/**********
344** ATM **
345**********/
346
347static int speedtch_read_status(struct speedtch_instance_data *instance)
348{
349 struct usbatm_data *usbatm = instance->usbatm;
350 struct usb_device *usb_dev = usbatm->usb_dev;
351 unsigned char *buf = instance->scratch_buffer;
352 int ret;
353
354 memset(buf, 0, TOTAL);
355
356 ret = usb_control_msg(usb_dev, usb_rcvctrlpipe(usb_dev, 0),
357 0x12, 0xc0, 0x07, 0x00, buf + OFFSET_7, SIZE_7,
358 CTRL_TIMEOUT);
359 if (ret < 0) {
360 atm_dbg(usbatm, "%s: MSG 7 failed\n", __func__);
361 return ret;
362 }
363
364 ret = usb_control_msg(usb_dev, usb_rcvctrlpipe(usb_dev, 0),
365 0x12, 0xc0, 0x0b, 0x00, buf + OFFSET_b, SIZE_b,
366 CTRL_TIMEOUT);
367 if (ret < 0) {
368 atm_dbg(usbatm, "%s: MSG B failed\n", __func__);
369 return ret;
370 }
371
372 ret = usb_control_msg(usb_dev, usb_rcvctrlpipe(usb_dev, 0),
373 0x12, 0xc0, 0x0d, 0x00, buf + OFFSET_d, SIZE_d,
374 CTRL_TIMEOUT);
375 if (ret < 0) {
376 atm_dbg(usbatm, "%s: MSG D failed\n", __func__);
377 return ret;
378 }
379
380 ret = usb_control_msg(usb_dev, usb_rcvctrlpipe(usb_dev, 0),
381 0x01, 0xc0, 0x0e, 0x00, buf + OFFSET_e, SIZE_e,
382 CTRL_TIMEOUT);
383 if (ret < 0) {
384 atm_dbg(usbatm, "%s: MSG E failed\n", __func__);
385 return ret;
386 }
387
388 ret = usb_control_msg(usb_dev, usb_rcvctrlpipe(usb_dev, 0),
389 0x01, 0xc0, 0x0f, 0x00, buf + OFFSET_f, SIZE_f,
390 CTRL_TIMEOUT);
391 if (ret < 0) {
392 atm_dbg(usbatm, "%s: MSG F failed\n", __func__);
393 return ret;
394 }
395
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 return 0;
397}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398
Duncan Sands48da7262005-05-11 20:20:40 +0200399static int speedtch_start_synchro(struct speedtch_instance_data *instance)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400{
Duncan Sands48da7262005-05-11 20:20:40 +0200401 struct usbatm_data *usbatm = instance->usbatm;
402 struct usb_device *usb_dev = usbatm->usb_dev;
403 unsigned char *buf = instance->scratch_buffer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405
Duncan Sands48da7262005-05-11 20:20:40 +0200406 atm_dbg(usbatm, "%s entered\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407
Duncan Sands48da7262005-05-11 20:20:40 +0200408 memset(buf, 0, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409
Duncan Sands48da7262005-05-11 20:20:40 +0200410 ret = usb_control_msg(usb_dev, usb_rcvctrlpipe(usb_dev, 0),
411 0x12, 0xc0, 0x04, 0x00,
412 buf, 2, CTRL_TIMEOUT);
413
414 if (ret < 0)
415 atm_warn(usbatm, "failed to start ADSL synchronisation: %d\n", ret);
416 else
417 atm_dbg(usbatm, "%s: modem prodded. %d bytes returned: %02x %02x\n",
418 __func__, ret, buf[0], buf[1]);
419
420 return ret;
421}
422
423static void speedtch_check_status(struct speedtch_instance_data *instance)
424{
425 struct usbatm_data *usbatm = instance->usbatm;
426 struct atm_dev *atm_dev = usbatm->atm_dev;
427 unsigned char *buf = instance->scratch_buffer;
Duncan Sands1a7aad12005-06-23 09:37:56 +0200428 int down_speed, up_speed, ret;
429 unsigned char status;
Duncan Sands48da7262005-05-11 20:20:40 +0200430
431 atm_dbg(usbatm, "%s entered\n", __func__);
432
433 ret = speedtch_read_status(instance);
434 if (ret < 0) {
435 atm_warn(usbatm, "error %d fetching device status\n", ret);
Duncan Sandscd5c08f2005-06-23 09:23:10 +0200436 instance->poll_delay = min(2 * instance->poll_delay, MAX_POLL_DELAY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 return;
438 }
439
Duncan Sandscd5c08f2005-06-23 09:23:10 +0200440 instance->poll_delay = max(instance->poll_delay / 2, MIN_POLL_DELAY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441
Duncan Sands1a7aad12005-06-23 09:37:56 +0200442 status = buf[OFFSET_7];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443
Duncan Sands1a7aad12005-06-23 09:37:56 +0200444 atm_dbg(usbatm, "%s: line state %02x\n", __func__, status);
445
446 if ((status != instance->last_status) || !status) {
447 switch (status) {
448 case 0:
Duncan Sands48da7262005-05-11 20:20:40 +0200449 atm_dev->signal = ATM_PHY_SIG_LOST;
Duncan Sands1a7aad12005-06-23 09:37:56 +0200450 if (instance->last_status)
David S. Miller52fbae22005-07-25 19:54:35 -0700451 atm_info(usbatm, "ADSL line is down\n");
Duncan Sands1a7aad12005-06-23 09:37:56 +0200452 /* It may never resync again unless we ask it to... */
Duncan Sands48da7262005-05-11 20:20:40 +0200453 ret = speedtch_start_synchro(instance);
Duncan Sands1a7aad12005-06-23 09:37:56 +0200454 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455
Duncan Sands1a7aad12005-06-23 09:37:56 +0200456 case 0x08:
Duncan Sands48da7262005-05-11 20:20:40 +0200457 atm_dev->signal = ATM_PHY_SIG_UNKNOWN;
David S. Miller52fbae22005-07-25 19:54:35 -0700458 atm_info(usbatm, "ADSL line is blocked?\n");
Duncan Sands1a7aad12005-06-23 09:37:56 +0200459 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460
Duncan Sands1a7aad12005-06-23 09:37:56 +0200461 case 0x10:
Duncan Sands48da7262005-05-11 20:20:40 +0200462 atm_dev->signal = ATM_PHY_SIG_LOST;
David S. Miller52fbae22005-07-25 19:54:35 -0700463 atm_info(usbatm, "ADSL line is synchronising\n");
Duncan Sands1a7aad12005-06-23 09:37:56 +0200464 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465
Duncan Sands1a7aad12005-06-23 09:37:56 +0200466 case 0x20:
467 down_speed = buf[OFFSET_b] | (buf[OFFSET_b + 1] << 8)
Duncan Sands48da7262005-05-11 20:20:40 +0200468 | (buf[OFFSET_b + 2] << 16) | (buf[OFFSET_b + 3] << 24);
Duncan Sands1a7aad12005-06-23 09:37:56 +0200469 up_speed = buf[OFFSET_b + 4] | (buf[OFFSET_b + 5] << 8)
Duncan Sands48da7262005-05-11 20:20:40 +0200470 | (buf[OFFSET_b + 6] << 16) | (buf[OFFSET_b + 7] << 24);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471
Duncan Sands48da7262005-05-11 20:20:40 +0200472 if (!(down_speed & 0x0000ffff) && !(up_speed & 0x0000ffff)) {
473 down_speed >>= 16;
474 up_speed >>= 16;
475 }
476
477 atm_dev->link_rate = down_speed * 1000 / 424;
478 atm_dev->signal = ATM_PHY_SIG_FOUND;
479
480 atm_info(usbatm,
Duncan Sands322a95b2005-06-23 09:20:50 +0200481 "ADSL line is up (%d kb/s down | %d kb/s up)\n",
Duncan Sands48da7262005-05-11 20:20:40 +0200482 down_speed, up_speed);
Duncan Sands1a7aad12005-06-23 09:37:56 +0200483 break;
Duncan Sands48da7262005-05-11 20:20:40 +0200484
Duncan Sands1a7aad12005-06-23 09:37:56 +0200485 default:
Duncan Sands48da7262005-05-11 20:20:40 +0200486 atm_dev->signal = ATM_PHY_SIG_UNKNOWN;
Duncan Sands1a7aad12005-06-23 09:37:56 +0200487 atm_info(usbatm, "Unknown line state %02x\n", status);
488 break;
Duncan Sands48da7262005-05-11 20:20:40 +0200489 }
Duncan Sands1a7aad12005-06-23 09:37:56 +0200490
491 instance->last_status = status;
Duncan Sands48da7262005-05-11 20:20:40 +0200492 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493}
494
Duncan Sands48da7262005-05-11 20:20:40 +0200495static void speedtch_status_poll(unsigned long data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496{
Duncan Sands48da7262005-05-11 20:20:40 +0200497 struct speedtch_instance_data *instance = (void *)data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498
Duncan Sands48da7262005-05-11 20:20:40 +0200499 schedule_work(&instance->status_checker);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500
Duncan Sands48da7262005-05-11 20:20:40 +0200501 /* The following check is racy, but the race is harmless */
502 if (instance->poll_delay < MAX_POLL_DELAY)
503 mod_timer(&instance->status_checker.timer, jiffies + msecs_to_jiffies(instance->poll_delay));
504 else
David S. Miller52fbae22005-07-25 19:54:35 -0700505 atm_warn(instance->usbatm, "Too many failures - disabling line status polling\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506}
507
Duncan Sands48da7262005-05-11 20:20:40 +0200508static void speedtch_resubmit_int(unsigned long data)
509{
510 struct speedtch_instance_data *instance = (void *)data;
511 struct urb *int_urb = instance->int_urb;
512 int ret;
513
514 atm_dbg(instance->usbatm, "%s entered\n", __func__);
515
516 if (int_urb) {
517 ret = usb_submit_urb(int_urb, GFP_ATOMIC);
518 if (!ret)
519 schedule_work(&instance->status_checker);
520 else {
521 atm_dbg(instance->usbatm, "%s: usb_submit_urb failed with result %d\n", __func__, ret);
522 mod_timer(&instance->resubmit_timer, jiffies + msecs_to_jiffies(RESUBMIT_DELAY));
523 }
524 }
525}
526
527static void speedtch_handle_int(struct urb *int_urb, struct pt_regs *regs)
528{
529 struct speedtch_instance_data *instance = int_urb->context;
530 struct usbatm_data *usbatm = instance->usbatm;
531 unsigned int count = int_urb->actual_length;
532 int ret = int_urb->status;
533
534 /* The magic interrupt for "up state" */
Jesper Juhl3c6bee12006-01-09 20:54:01 -0800535 static const unsigned char up_int[6] = { 0xa1, 0x00, 0x01, 0x00, 0x00, 0x00 };
Duncan Sands48da7262005-05-11 20:20:40 +0200536 /* The magic interrupt for "down state" */
Jesper Juhl3c6bee12006-01-09 20:54:01 -0800537 static const unsigned char down_int[6] = { 0xa1, 0x00, 0x00, 0x00, 0x00, 0x00 };
Duncan Sands48da7262005-05-11 20:20:40 +0200538
539 atm_dbg(usbatm, "%s entered\n", __func__);
540
541 if (ret < 0) {
542 atm_dbg(usbatm, "%s: nonzero urb status %d!\n", __func__, ret);
543 goto fail;
544 }
545
546 if ((count == 6) && !memcmp(up_int, instance->int_data, 6)) {
547 del_timer(&instance->status_checker.timer);
David S. Miller52fbae22005-07-25 19:54:35 -0700548 atm_info(usbatm, "DSL line goes up\n");
Duncan Sands48da7262005-05-11 20:20:40 +0200549 } else if ((count == 6) && !memcmp(down_int, instance->int_data, 6)) {
David S. Miller52fbae22005-07-25 19:54:35 -0700550 atm_info(usbatm, "DSL line goes down\n");
Duncan Sands48da7262005-05-11 20:20:40 +0200551 } else {
552 int i;
553
554 atm_dbg(usbatm, "%s: unknown interrupt packet of length %d:", __func__, count);
555 for (i = 0; i < count; i++)
556 printk(" %02x", instance->int_data[i]);
557 printk("\n");
558 goto fail;
559 }
560
561 if ((int_urb = instance->int_urb)) {
562 ret = usb_submit_urb(int_urb, GFP_ATOMIC);
563 schedule_work(&instance->status_checker);
564 if (ret < 0) {
565 atm_dbg(usbatm, "%s: usb_submit_urb failed with result %d\n", __func__, ret);
566 goto fail;
567 }
568 }
569
570 return;
571
572fail:
573 if ((int_urb = instance->int_urb))
574 mod_timer(&instance->resubmit_timer, jiffies + msecs_to_jiffies(RESUBMIT_DELAY));
575}
576
577static int speedtch_atm_start(struct usbatm_data *usbatm, struct atm_dev *atm_dev)
578{
579 struct usb_device *usb_dev = usbatm->usb_dev;
580 struct speedtch_instance_data *instance = usbatm->driver_data;
581 int i, ret;
582 unsigned char mac_str[13];
583
584 atm_dbg(usbatm, "%s entered\n", __func__);
585
586 if ((ret = usb_set_interface(usb_dev, 1, altsetting)) < 0) {
587 atm_dbg(usbatm, "%s: usb_set_interface returned %d!\n", __func__, ret);
588 return ret;
589 }
590
591 /* Set MAC address, it is stored in the serial number */
592 memset(atm_dev->esi, 0, sizeof(atm_dev->esi));
593 if (usb_string(usb_dev, usb_dev->descriptor.iSerialNumber, mac_str, sizeof(mac_str)) == 12) {
594 for (i = 0; i < 6; i++)
595 atm_dev->esi[i] = (hex2int(mac_str[i * 2]) * 16) + (hex2int(mac_str[i * 2 + 1]));
596 }
597
598 /* Start modem synchronisation */
599 ret = speedtch_start_synchro(instance);
600
601 /* Set up interrupt endpoint */
602 if (instance->int_urb) {
603 ret = usb_submit_urb(instance->int_urb, GFP_KERNEL);
604 if (ret < 0) {
605 /* Doesn't matter; we'll poll anyway */
606 atm_dbg(usbatm, "%s: submission of interrupt URB failed (%d)!\n", __func__, ret);
607 usb_free_urb(instance->int_urb);
608 instance->int_urb = NULL;
609 }
610 }
611
612 /* Start status polling */
613 mod_timer(&instance->status_checker.timer, jiffies + msecs_to_jiffies(1000));
614
615 return 0;
616}
617
618static void speedtch_atm_stop(struct usbatm_data *usbatm, struct atm_dev *atm_dev)
619{
620 struct speedtch_instance_data *instance = usbatm->driver_data;
621 struct urb *int_urb = instance->int_urb;
622
623 atm_dbg(usbatm, "%s entered\n", __func__);
624
625 del_timer_sync(&instance->status_checker.timer);
626
627 /*
628 * Since resubmit_timer and int_urb can schedule themselves and
629 * each other, shutting them down correctly takes some care
630 */
631 instance->int_urb = NULL; /* signal shutdown */
632 mb();
633 usb_kill_urb(int_urb);
634 del_timer_sync(&instance->resubmit_timer);
635 /*
636 * At this point, speedtch_handle_int and speedtch_resubmit_int
637 * can run or be running, but instance->int_urb == NULL means that
638 * they will not reschedule
639 */
640 usb_kill_urb(int_urb);
641 del_timer_sync(&instance->resubmit_timer);
642 usb_free_urb(int_urb);
643
644 flush_scheduled_work();
645}
646
647
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648/**********
649** USB **
650**********/
651
Duncan Sands48da7262005-05-11 20:20:40 +0200652static struct usb_device_id speedtch_usb_ids[] = {
653 {USB_DEVICE(0x06b9, 0x4061)},
654 {}
655};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656
Duncan Sands48da7262005-05-11 20:20:40 +0200657MODULE_DEVICE_TABLE(usb, speedtch_usb_ids);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658
Duncan Sands48da7262005-05-11 20:20:40 +0200659static int speedtch_usb_probe(struct usb_interface *, const struct usb_device_id *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660
Duncan Sands48da7262005-05-11 20:20:40 +0200661static struct usb_driver speedtch_usb_driver = {
Duncan Sands48da7262005-05-11 20:20:40 +0200662 .name = speedtch_driver_name,
663 .probe = speedtch_usb_probe,
664 .disconnect = usbatm_usb_disconnect,
665 .id_table = speedtch_usb_ids
666};
667
668static void speedtch_release_interfaces(struct usb_device *usb_dev, int num_interfaces) {
669 struct usb_interface *cur_intf;
670 int i;
671
672 for(i = 0; i < num_interfaces; i++)
673 if ((cur_intf = usb_ifnum_to_if(usb_dev, i))) {
674 usb_set_intfdata(cur_intf, NULL);
675 usb_driver_release_interface(&speedtch_usb_driver, cur_intf);
676 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677}
678
Duncan Sands48da7262005-05-11 20:20:40 +0200679static int speedtch_bind(struct usbatm_data *usbatm,
680 struct usb_interface *intf,
681 const struct usb_device_id *id,
682 int *need_heavy_init)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683{
Duncan Sands48da7262005-05-11 20:20:40 +0200684 struct usb_device *usb_dev = interface_to_usbdev(intf);
685 struct usb_interface *cur_intf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 struct speedtch_instance_data *instance;
Duncan Sands48da7262005-05-11 20:20:40 +0200687 int ifnum = intf->altsetting->desc.bInterfaceNumber;
688 int num_interfaces = usb_dev->actconfig->desc.bNumInterfaces;
689 int i, ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690
Duncan Sands48da7262005-05-11 20:20:40 +0200691 usb_dbg(usbatm, "%s entered\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692
Duncan Sands48da7262005-05-11 20:20:40 +0200693 if (usb_dev->descriptor.bDeviceClass != USB_CLASS_VENDOR_SPEC) {
694 usb_dbg(usbatm, "%s: wrong device class %d\n", __func__, usb_dev->descriptor.bDeviceClass);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 return -ENODEV;
Duncan Sands48da7262005-05-11 20:20:40 +0200696 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697
Duncan Sands48da7262005-05-11 20:20:40 +0200698 /* claim all interfaces */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699
Duncan Sands48da7262005-05-11 20:20:40 +0200700 for (i=0; i < num_interfaces; i++) {
701 cur_intf = usb_ifnum_to_if(usb_dev, i);
702
703 if ((i != ifnum) && cur_intf) {
704 ret = usb_driver_claim_interface(&speedtch_usb_driver, cur_intf, usbatm);
705
706 if (ret < 0) {
707 usb_dbg(usbatm, "%s: failed to claim interface %d (%d)\n", __func__, i, ret);
708 speedtch_release_interfaces(usb_dev, i);
709 return ret;
710 }
711 }
712 }
713
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 instance = kmalloc(sizeof(*instance), GFP_KERNEL);
Duncan Sands48da7262005-05-11 20:20:40 +0200715
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 if (!instance) {
Duncan Sands48da7262005-05-11 20:20:40 +0200717 usb_dbg(usbatm, "%s: no memory for instance data!\n", __func__);
718 ret = -ENOMEM;
719 goto fail_release;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 }
721
722 memset(instance, 0, sizeof(struct speedtch_instance_data));
723
Duncan Sands48da7262005-05-11 20:20:40 +0200724 instance->usbatm = usbatm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725
Duncan Sands48da7262005-05-11 20:20:40 +0200726 INIT_WORK(&instance->status_checker, (void *)speedtch_check_status, instance);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727
Duncan Sands48da7262005-05-11 20:20:40 +0200728 instance->status_checker.timer.function = speedtch_status_poll;
729 instance->status_checker.timer.data = (unsigned long)instance;
Duncan Sands1a7aad12005-06-23 09:37:56 +0200730 instance->last_status = 0xff;
Duncan Sands48da7262005-05-11 20:20:40 +0200731 instance->poll_delay = MIN_POLL_DELAY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732
Duncan Sands48da7262005-05-11 20:20:40 +0200733 init_timer(&instance->resubmit_timer);
734 instance->resubmit_timer.function = speedtch_resubmit_int;
735 instance->resubmit_timer.data = (unsigned long)instance;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736
Duncan Sands48da7262005-05-11 20:20:40 +0200737 instance->int_urb = usb_alloc_urb(0, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738
Duncan Sands48da7262005-05-11 20:20:40 +0200739 if (instance->int_urb)
740 usb_fill_int_urb(instance->int_urb, usb_dev,
741 usb_rcvintpipe(usb_dev, ENDPOINT_INT),
742 instance->int_data, sizeof(instance->int_data),
743 speedtch_handle_int, instance, 50);
744 else
745 usb_dbg(usbatm, "%s: no memory for interrupt urb!\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746
Duncan Sands48da7262005-05-11 20:20:40 +0200747 /* check whether the modem already seems to be alive */
748 ret = usb_control_msg(usb_dev, usb_rcvctrlpipe(usb_dev, 0),
749 0x12, 0xc0, 0x07, 0x00,
750 instance->scratch_buffer + OFFSET_7, SIZE_7, 500);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751
Duncan Sands48da7262005-05-11 20:20:40 +0200752 *need_heavy_init = (ret != SIZE_7);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753
Duncan Sands48da7262005-05-11 20:20:40 +0200754 usb_dbg(usbatm, "%s: firmware %s loaded\n", __func__, need_heavy_init ? "not" : "already");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755
Duncan Sands48da7262005-05-11 20:20:40 +0200756 if (*need_heavy_init)
757 if ((ret = usb_reset_device(usb_dev)) < 0)
758 goto fail_free;
759
760 usbatm->driver_data = instance;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761
762 return 0;
763
Duncan Sands48da7262005-05-11 20:20:40 +0200764fail_free:
765 usb_free_urb(instance->int_urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 kfree(instance);
Duncan Sands48da7262005-05-11 20:20:40 +0200767fail_release:
768 speedtch_release_interfaces(usb_dev, num_interfaces);
769 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770}
771
Duncan Sands48da7262005-05-11 20:20:40 +0200772static void speedtch_unbind(struct usbatm_data *usbatm, struct usb_interface *intf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773{
Duncan Sands48da7262005-05-11 20:20:40 +0200774 struct usb_device *usb_dev = interface_to_usbdev(intf);
775 struct speedtch_instance_data *instance = usbatm->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776
Duncan Sands48da7262005-05-11 20:20:40 +0200777 usb_dbg(usbatm, "%s entered\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778
Duncan Sands48da7262005-05-11 20:20:40 +0200779 speedtch_release_interfaces(usb_dev, usb_dev->actconfig->desc.bNumInterfaces);
780 usb_free_urb(instance->int_urb);
781 kfree(instance);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782}
783
Duncan Sands48da7262005-05-11 20:20:40 +0200784
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785/***********
786** init **
787***********/
788
Duncan Sands48da7262005-05-11 20:20:40 +0200789static struct usbatm_driver speedtch_usbatm_driver = {
790 .owner = THIS_MODULE,
791 .driver_name = speedtch_driver_name,
792 .bind = speedtch_bind,
793 .heavy_init = speedtch_heavy_init,
794 .unbind = speedtch_unbind,
795 .atm_start = speedtch_atm_start,
796 .atm_stop = speedtch_atm_stop,
797 .in = ENDPOINT_DATA,
798 .out = ENDPOINT_DATA
799};
800
801static int speedtch_usb_probe(struct usb_interface *intf, const struct usb_device_id *id)
802{
803 return usbatm_usb_probe(intf, id, &speedtch_usbatm_driver);
804}
805
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806static int __init speedtch_usb_init(void)
807{
Duncan Sands48da7262005-05-11 20:20:40 +0200808 dbg("%s: driver version %s", __func__, DRIVER_VERSION);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809
810 return usb_register(&speedtch_usb_driver);
811}
812
813static void __exit speedtch_usb_cleanup(void)
814{
Duncan Sands48da7262005-05-11 20:20:40 +0200815 dbg("%s", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816
817 usb_deregister(&speedtch_usb_driver);
818}
819
820module_init(speedtch_usb_init);
821module_exit(speedtch_usb_cleanup);
822
823MODULE_AUTHOR(DRIVER_AUTHOR);
824MODULE_DESCRIPTION(DRIVER_DESC);
825MODULE_LICENSE("GPL");
826MODULE_VERSION(DRIVER_VERSION);