]> bbs.cooldavid.org Git - net-next-2.6.git/blame - drivers/usb/atm/speedtch.c
include cleanup: Update gfp.h and slab.h includes to prepare for breaking implicit...
[net-next-2.6.git] / drivers / usb / atm / speedtch.c
CommitLineData
1da177e4
LT
1/******************************************************************************
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 *
48da7267
DS
8 * Based on "modem_run.c", copyright (C) 2001, Benoit Papillault
9 *
1da177e4
LT
10 * 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
48da7267
DS
26#include <asm/page.h>
27#include <linux/device.h>
28#include <linux/errno.h>
29#include <linux/firmware.h>
48da7267 30#include <linux/init.h>
1da177e4 31#include <linux/kernel.h>
48da7267
DS
32#include <linux/module.h>
33#include <linux/moduleparam.h>
1da177e4 34#include <linux/slab.h>
48da7267
DS
35#include <linux/stat.h>
36#include <linux/timer.h>
80aae7a1 37#include <linux/types.h>
5f848137 38#include <linux/usb/ch9.h>
48da7267 39#include <linux/workqueue.h>
1da177e4 40
48da7267 41#include "usbatm.h"
1da177e4
LT
42
43#define DRIVER_AUTHOR "Johan Verrept, Duncan Sands <duncan.sands@free.fr>"
9b0e54ad 44#define DRIVER_VERSION "1.10"
1da177e4
LT
45#define DRIVER_DESC "Alcatel SpeedTouch USB driver version " DRIVER_VERSION
46
47static const char speedtch_driver_name[] = "speedtch";
48
48da7267
DS
49#define CTRL_TIMEOUT 2000 /* milliseconds */
50#define DATA_TIMEOUT 2000 /* milliseconds */
1da177e4 51
48da7267
DS
52#define OFFSET_7 0 /* size 1 */
53#define OFFSET_b 1 /* size 8 */
54#define OFFSET_d 9 /* size 4 */
55#define OFFSET_e 13 /* size 1 */
56#define OFFSET_f 14 /* size 1 */
1da177e4 57
48da7267
DS
58#define SIZE_7 1
59#define SIZE_b 8
60#define SIZE_d 4
61#define SIZE_e 1
62#define SIZE_f 1
1da177e4 63
48da7267
DS
64#define MIN_POLL_DELAY 5000 /* milliseconds */
65#define MAX_POLL_DELAY 60000 /* milliseconds */
1da177e4 66
48da7267 67#define RESUBMIT_DELAY 1000 /* milliseconds */
1da177e4 68
80aae7a1 69#define DEFAULT_BULK_ALTSETTING 1
67c752b4 70#define DEFAULT_ISOC_ALTSETTING 3
48da7267 71#define DEFAULT_DL_512_FIRST 0
80aae7a1 72#define DEFAULT_ENABLE_ISOC 0
48da7267 73#define DEFAULT_SW_BUFFERING 0
1da177e4 74
80aae7a1 75static unsigned int altsetting = 0; /* zero means: use the default */
48da7267 76static int dl_512_first = DEFAULT_DL_512_FIRST;
80aae7a1 77static int enable_isoc = DEFAULT_ENABLE_ISOC;
48da7267 78static int sw_buffering = DEFAULT_SW_BUFFERING;
1da177e4 79
6a4f1b41
DS
80#define DEFAULT_B_MAX_DSL 8128
81#define DEFAULT_MODEM_MODE 11
82#define MODEM_OPTION_LENGTH 16
83static const unsigned char DEFAULT_MODEM_OPTION[MODEM_OPTION_LENGTH] = {
84 0x10, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
85};
86
87static unsigned int BMaxDSL = DEFAULT_B_MAX_DSL;
88static unsigned char ModemMode = DEFAULT_MODEM_MODE;
89static unsigned char ModemOption[MODEM_OPTION_LENGTH];
64a6f950 90static unsigned int num_ModemOption;
6a4f1b41 91
80aae7a1 92module_param(altsetting, uint, S_IRUGO | S_IWUSR);
48da7267 93MODULE_PARM_DESC(altsetting,
80aae7a1
DS
94 "Alternative setting for data interface (bulk_default: "
95 __MODULE_STRING(DEFAULT_BULK_ALTSETTING) "; isoc_default: "
96 __MODULE_STRING(DEFAULT_ISOC_ALTSETTING) ")");
1da177e4 97
48da7267
DS
98module_param(dl_512_first, bool, S_IRUGO | S_IWUSR);
99MODULE_PARM_DESC(dl_512_first,
100 "Read 512 bytes before sending firmware (default: "
101 __MODULE_STRING(DEFAULT_DL_512_FIRST) ")");
1da177e4 102
80aae7a1
DS
103module_param(enable_isoc, bool, S_IRUGO | S_IWUSR);
104MODULE_PARM_DESC(enable_isoc,
105 "Use isochronous transfers if available (default: "
106 __MODULE_STRING(DEFAULT_ENABLE_ISOC) ")");
107
48da7267
DS
108module_param(sw_buffering, bool, S_IRUGO | S_IWUSR);
109MODULE_PARM_DESC(sw_buffering,
110 "Enable software buffering (default: "
111 __MODULE_STRING(DEFAULT_SW_BUFFERING) ")");
1da177e4 112
6a4f1b41
DS
113module_param(BMaxDSL, uint, S_IRUGO | S_IWUSR);
114MODULE_PARM_DESC(BMaxDSL,
115 "default: " __MODULE_STRING(DEFAULT_B_MAX_DSL));
116
117module_param(ModemMode, byte, S_IRUGO | S_IWUSR);
118MODULE_PARM_DESC(ModemMode,
119 "default: " __MODULE_STRING(DEFAULT_MODEM_MODE));
120
121module_param_array(ModemOption, byte, &num_ModemOption, S_IRUGO);
122MODULE_PARM_DESC(ModemOption, "default: 0x10,0x00,0x00,0x00,0x20");
123
6f749475 124#define INTERFACE_DATA 1
48da7267 125#define ENDPOINT_INT 0x81
80aae7a1
DS
126#define ENDPOINT_BULK_DATA 0x07
127#define ENDPOINT_ISOC_DATA 0x07
48da7267 128#define ENDPOINT_FIRMWARE 0x05
1da177e4 129
48da7267 130#define hex2int(c) ( (c >= '0') && (c <= '9') ? (c - '0') : ((c & 0xf) + 9) )
1da177e4 131
6a4f1b41
DS
132struct speedtch_params {
133 unsigned int altsetting;
134 unsigned int BMaxDSL;
135 unsigned char ModemMode;
136 unsigned char ModemOption[MODEM_OPTION_LENGTH];
137};
138
1da177e4 139struct speedtch_instance_data {
48da7267
DS
140 struct usbatm_data *usbatm;
141
6a4f1b41 142 struct speedtch_params params; /* set in probe, constant afterwards */
6f749475 143
c4028958 144 struct delayed_work status_checker;
1da177e4 145
1a7aad15
DS
146 unsigned char last_status;
147
48da7267
DS
148 int poll_delay; /* milliseconds */
149
150 struct timer_list resubmit_timer;
1da177e4
LT
151 struct urb *int_urb;
152 unsigned char int_data[16];
1da177e4 153
6a4f1b41 154 unsigned char scratch_buffer[16];
1da177e4
LT
155};
156
157/***************
158** firmware **
159***************/
160
48da7267 161static void speedtch_set_swbuff(struct speedtch_instance_data *instance, int state)
1da177e4 162{
48da7267
DS
163 struct usbatm_data *usbatm = instance->usbatm;
164 struct usb_device *usb_dev = usbatm->usb_dev;
1da177e4
LT
165 int ret;
166
48da7267
DS
167 ret = usb_control_msg(usb_dev, usb_sndctrlpipe(usb_dev, 0),
168 0x32, 0x40, state ? 0x01 : 0x00, 0x00, NULL, 0, CTRL_TIMEOUT);
169 if (ret < 0)
170 usb_warn(usbatm,
171 "%sabling SW buffering: usb_control_msg returned %d\n",
172 state ? "En" : "Dis", ret);
173 else
174 dbg("speedtch_set_swbuff: %sbled SW buffering", state ? "En" : "Dis");
1da177e4
LT
175}
176
177static void speedtch_test_sequence(struct speedtch_instance_data *instance)
178{
48da7267
DS
179 struct usbatm_data *usbatm = instance->usbatm;
180 struct usb_device *usb_dev = usbatm->usb_dev;
181 unsigned char *buf = instance->scratch_buffer;
1da177e4
LT
182 int ret;
183
184 /* URB 147 */
185 buf[0] = 0x1c;
186 buf[1] = 0x50;
48da7267
DS
187 ret = usb_control_msg(usb_dev, usb_sndctrlpipe(usb_dev, 0),
188 0x01, 0x40, 0x0b, 0x00, buf, 2, CTRL_TIMEOUT);
1da177e4 189 if (ret < 0)
48da7267 190 usb_warn(usbatm, "%s failed on URB147: %d\n", __func__, ret);
1da177e4
LT
191
192 /* URB 148 */
193 buf[0] = 0x32;
194 buf[1] = 0x00;
48da7267
DS
195 ret = usb_control_msg(usb_dev, usb_sndctrlpipe(usb_dev, 0),
196 0x01, 0x40, 0x02, 0x00, buf, 2, CTRL_TIMEOUT);
1da177e4 197 if (ret < 0)
48da7267 198 usb_warn(usbatm, "%s failed on URB148: %d\n", __func__, ret);
1da177e4
LT
199
200 /* URB 149 */
201 buf[0] = 0x01;
202 buf[1] = 0x00;
203 buf[2] = 0x01;
48da7267
DS
204 ret = usb_control_msg(usb_dev, usb_sndctrlpipe(usb_dev, 0),
205 0x01, 0x40, 0x03, 0x00, buf, 3, CTRL_TIMEOUT);
1da177e4 206 if (ret < 0)
48da7267 207 usb_warn(usbatm, "%s failed on URB149: %d\n", __func__, ret);
1da177e4
LT
208
209 /* URB 150 */
210 buf[0] = 0x01;
211 buf[1] = 0x00;
212 buf[2] = 0x01;
48da7267
DS
213 ret = usb_control_msg(usb_dev, usb_sndctrlpipe(usb_dev, 0),
214 0x01, 0x40, 0x04, 0x00, buf, 3, CTRL_TIMEOUT);
1da177e4 215 if (ret < 0)
48da7267 216 usb_warn(usbatm, "%s failed on URB150: %d\n", __func__, ret);
6a4f1b41
DS
217
218 /* Extra initialisation in recent drivers - gives higher speeds */
219
220 /* URBext1 */
221 buf[0] = instance->params.ModemMode;
222 ret = usb_control_msg(usb_dev, usb_sndctrlpipe(usb_dev, 0),
223 0x01, 0x40, 0x11, 0x00, buf, 1, CTRL_TIMEOUT);
224 if (ret < 0)
225 usb_warn(usbatm, "%s failed on URBext1: %d\n", __func__, ret);
226
227 /* URBext2 */
228 /* This seems to be the one which actually triggers the higher sync
229 rate -- it does require the new firmware too, although it works OK
230 with older firmware */
231 ret = usb_control_msg(usb_dev, usb_sndctrlpipe(usb_dev, 0),
232 0x01, 0x40, 0x14, 0x00,
233 instance->params.ModemOption,
234 MODEM_OPTION_LENGTH, CTRL_TIMEOUT);
235 if (ret < 0)
236 usb_warn(usbatm, "%s failed on URBext2: %d\n", __func__, ret);
237
238 /* URBext3 */
239 buf[0] = instance->params.BMaxDSL & 0xff;
240 buf[1] = instance->params.BMaxDSL >> 8;
241 ret = usb_control_msg(usb_dev, usb_sndctrlpipe(usb_dev, 0),
242 0x01, 0x40, 0x12, 0x00, buf, 2, CTRL_TIMEOUT);
243 if (ret < 0)
244 usb_warn(usbatm, "%s failed on URBext3: %d\n", __func__, ret);
1da177e4
LT
245}
246
48da7267
DS
247static int speedtch_upload_firmware(struct speedtch_instance_data *instance,
248 const struct firmware *fw1,
249 const struct firmware *fw2)
1da177e4 250{
48da7267
DS
251 unsigned char *buffer;
252 struct usbatm_data *usbatm = instance->usbatm;
48da7267
DS
253 struct usb_device *usb_dev = usbatm->usb_dev;
254 int actual_length;
255 int ret = 0;
256 int offset;
257
258 usb_dbg(usbatm, "%s entered\n", __func__);
259
260 if (!(buffer = (unsigned char *)__get_free_page(GFP_KERNEL))) {
261 ret = -ENOMEM;
262 usb_dbg(usbatm, "%s: no memory for buffer!\n", __func__);
263 goto out;
264 }
265
011db815 266 if (!usb_ifnum_to_if(usb_dev, 2)) {
48da7267
DS
267 ret = -ENODEV;
268 usb_dbg(usbatm, "%s: interface not found!\n", __func__);
269 goto out_free;
270 }
271
272 /* URB 7 */
273 if (dl_512_first) { /* some modems need a read before writing the firmware */
274 ret = usb_bulk_msg(usb_dev, usb_rcvbulkpipe(usb_dev, ENDPOINT_FIRMWARE),
275 buffer, 0x200, &actual_length, 2000);
276
277 if (ret < 0 && ret != -ETIMEDOUT)
0ec3c7e8 278 usb_warn(usbatm, "%s: read BLOCK0 from modem failed (%d)!\n", __func__, ret);
48da7267
DS
279 else
280 usb_dbg(usbatm, "%s: BLOCK0 downloaded (%d bytes)\n", __func__, ret);
281 }
282
283 /* URB 8 : both leds are static green */
284 for (offset = 0; offset < fw1->size; offset += PAGE_SIZE) {
285 int thislen = min_t(int, PAGE_SIZE, fw1->size - offset);
286 memcpy(buffer, fw1->data + offset, thislen);
287
288 ret = usb_bulk_msg(usb_dev, usb_sndbulkpipe(usb_dev, ENDPOINT_FIRMWARE),
289 buffer, thislen, &actual_length, DATA_TIMEOUT);
290
291 if (ret < 0) {
0ec3c7e8 292 usb_err(usbatm, "%s: write BLOCK1 to modem failed (%d)!\n", __func__, ret);
48da7267
DS
293 goto out_free;
294 }
295 usb_dbg(usbatm, "%s: BLOCK1 uploaded (%zu bytes)\n", __func__, fw1->size);
296 }
297
298 /* USB led blinking green, ADSL led off */
299
300 /* URB 11 */
301 ret = usb_bulk_msg(usb_dev, usb_rcvbulkpipe(usb_dev, ENDPOINT_FIRMWARE),
302 buffer, 0x200, &actual_length, DATA_TIMEOUT);
1da177e4 303
1da177e4 304 if (ret < 0) {
0ec3c7e8 305 usb_err(usbatm, "%s: read BLOCK2 from modem failed (%d)!\n", __func__, ret);
48da7267 306 goto out_free;
1da177e4 307 }
48da7267 308 usb_dbg(usbatm, "%s: BLOCK2 downloaded (%d bytes)\n", __func__, actual_length);
1da177e4 309
48da7267
DS
310 /* URBs 12 to 139 - USB led blinking green, ADSL led off */
311 for (offset = 0; offset < fw2->size; offset += PAGE_SIZE) {
312 int thislen = min_t(int, PAGE_SIZE, fw2->size - offset);
313 memcpy(buffer, fw2->data + offset, thislen);
314
315 ret = usb_bulk_msg(usb_dev, usb_sndbulkpipe(usb_dev, ENDPOINT_FIRMWARE),
316 buffer, thislen, &actual_length, DATA_TIMEOUT);
317
318 if (ret < 0) {
0ec3c7e8 319 usb_err(usbatm, "%s: write BLOCK3 to modem failed (%d)!\n", __func__, ret);
48da7267
DS
320 goto out_free;
321 }
322 }
323 usb_dbg(usbatm, "%s: BLOCK3 uploaded (%zu bytes)\n", __func__, fw2->size);
324
325 /* USB led static green, ADSL led static red */
326
327 /* URB 142 */
328 ret = usb_bulk_msg(usb_dev, usb_rcvbulkpipe(usb_dev, ENDPOINT_FIRMWARE),
329 buffer, 0x200, &actual_length, DATA_TIMEOUT);
330
331 if (ret < 0) {
0ec3c7e8 332 usb_err(usbatm, "%s: read BLOCK4 from modem failed (%d)!\n", __func__, ret);
48da7267
DS
333 goto out_free;
334 }
335
336 /* success */
337 usb_dbg(usbatm, "%s: BLOCK4 downloaded (%d bytes)\n", __func__, actual_length);
338
339 /* Delay to allow firmware to start up. We can do this here
340 because we're in our own kernel thread anyway. */
341 msleep_interruptible(1000);
342
6a4f1b41
DS
343 if ((ret = usb_set_interface(usb_dev, INTERFACE_DATA, instance->params.altsetting)) < 0) {
344 usb_err(usbatm, "%s: setting interface to %d failed (%d)!\n", __func__, instance->params.altsetting, ret);
6f749475
DS
345 goto out_free;
346 }
347
48da7267
DS
348 /* Enable software buffering, if requested */
349 if (sw_buffering)
350 speedtch_set_swbuff(instance, 1);
351
352 /* Magic spell; don't ask us what this does */
353 speedtch_test_sequence(instance);
354
355 ret = 0;
356
357out_free:
358 free_page((unsigned long)buffer);
359out:
360 return ret;
1da177e4
LT
361}
362
0ec3c7e8
DS
363static int speedtch_find_firmware(struct usbatm_data *usbatm, struct usb_interface *intf,
364 int phase, const struct firmware **fw_p)
1da177e4 365{
48da7267
DS
366 struct device *dev = &intf->dev;
367 const u16 bcdDevice = le16_to_cpu(interface_to_usbdev(intf)->descriptor.bcdDevice);
368 const u8 major_revision = bcdDevice >> 8;
369 const u8 minor_revision = bcdDevice & 0xff;
370 char buf[24];
1da177e4 371
48da7267 372 sprintf(buf, "speedtch-%d.bin.%x.%02x", phase, major_revision, minor_revision);
0ec3c7e8 373 usb_dbg(usbatm, "%s: looking for %s\n", __func__, buf);
1da177e4 374
48da7267
DS
375 if (request_firmware(fw_p, buf, dev)) {
376 sprintf(buf, "speedtch-%d.bin.%x", phase, major_revision);
0ec3c7e8 377 usb_dbg(usbatm, "%s: looking for %s\n", __func__, buf);
1da177e4 378
48da7267
DS
379 if (request_firmware(fw_p, buf, dev)) {
380 sprintf(buf, "speedtch-%d.bin", phase);
0ec3c7e8 381 usb_dbg(usbatm, "%s: looking for %s\n", __func__, buf);
48da7267
DS
382
383 if (request_firmware(fw_p, buf, dev)) {
0ec3c7e8 384 usb_err(usbatm, "%s: no stage %d firmware found!\n", __func__, phase);
48da7267
DS
385 return -ENOENT;
386 }
387 }
1da177e4
LT
388 }
389
0ec3c7e8 390 usb_info(usbatm, "found stage %d firmware %s\n", phase, buf);
1da177e4 391
48da7267
DS
392 return 0;
393}
394
395static int speedtch_heavy_init(struct usbatm_data *usbatm, struct usb_interface *intf)
396{
397 const struct firmware *fw1, *fw2;
398 struct speedtch_instance_data *instance = usbatm->driver_data;
399 int ret;
400
0ec3c7e8
DS
401 if ((ret = speedtch_find_firmware(usbatm, intf, 1, &fw1)) < 0)
402 return ret;
48da7267 403
0ec3c7e8 404 if ((ret = speedtch_find_firmware(usbatm, intf, 2, &fw2)) < 0) {
48da7267
DS
405 release_firmware(fw1);
406 return ret;
1da177e4 407 }
1da177e4 408
0ec3c7e8
DS
409 if ((ret = speedtch_upload_firmware(instance, fw1, fw2)) < 0)
410 usb_err(usbatm, "%s: firmware upload failed (%d)!\n", __func__, ret);
48da7267
DS
411
412 release_firmware(fw2);
413 release_firmware(fw1);
1da177e4 414
48da7267 415 return ret;
1da177e4
LT
416}
417
48da7267
DS
418
419/**********
420** ATM **
421**********/
422
423static int speedtch_read_status(struct speedtch_instance_data *instance)
1da177e4 424{
48da7267
DS
425 struct usbatm_data *usbatm = instance->usbatm;
426 struct usb_device *usb_dev = usbatm->usb_dev;
427 unsigned char *buf = instance->scratch_buffer;
1da177e4
LT
428 int ret;
429
6a4f1b41 430 memset(buf, 0, 16);
1da177e4 431
48da7267 432 ret = usb_control_msg(usb_dev, usb_rcvctrlpipe(usb_dev, 0),
1da177e4
LT
433 0x12, 0xc0, 0x07, 0x00, buf + OFFSET_7, SIZE_7,
434 CTRL_TIMEOUT);
435 if (ret < 0) {
48da7267 436 atm_dbg(usbatm, "%s: MSG 7 failed\n", __func__);
1da177e4
LT
437 return ret;
438 }
439
48da7267 440 ret = usb_control_msg(usb_dev, usb_rcvctrlpipe(usb_dev, 0),
1da177e4
LT
441 0x12, 0xc0, 0x0b, 0x00, buf + OFFSET_b, SIZE_b,
442 CTRL_TIMEOUT);
443 if (ret < 0) {
48da7267 444 atm_dbg(usbatm, "%s: MSG B failed\n", __func__);
1da177e4
LT
445 return ret;
446 }
447
48da7267 448 ret = usb_control_msg(usb_dev, usb_rcvctrlpipe(usb_dev, 0),
1da177e4
LT
449 0x12, 0xc0, 0x0d, 0x00, buf + OFFSET_d, SIZE_d,
450 CTRL_TIMEOUT);
451 if (ret < 0) {
48da7267 452 atm_dbg(usbatm, "%s: MSG D failed\n", __func__);
1da177e4
LT
453 return ret;
454 }
455
48da7267 456 ret = usb_control_msg(usb_dev, usb_rcvctrlpipe(usb_dev, 0),
1da177e4
LT
457 0x01, 0xc0, 0x0e, 0x00, buf + OFFSET_e, SIZE_e,
458 CTRL_TIMEOUT);
459 if (ret < 0) {
48da7267 460 atm_dbg(usbatm, "%s: MSG E failed\n", __func__);
1da177e4
LT
461 return ret;
462 }
463
48da7267 464 ret = usb_control_msg(usb_dev, usb_rcvctrlpipe(usb_dev, 0),
1da177e4
LT
465 0x01, 0xc0, 0x0f, 0x00, buf + OFFSET_f, SIZE_f,
466 CTRL_TIMEOUT);
467 if (ret < 0) {
48da7267 468 atm_dbg(usbatm, "%s: MSG F failed\n", __func__);
1da177e4
LT
469 return ret;
470 }
471
472 return 0;
473}
474
48da7267 475static int speedtch_start_synchro(struct speedtch_instance_data *instance)
1da177e4 476{
48da7267
DS
477 struct usbatm_data *usbatm = instance->usbatm;
478 struct usb_device *usb_dev = usbatm->usb_dev;
479 unsigned char *buf = instance->scratch_buffer;
1da177e4
LT
480 int ret;
481
48da7267
DS
482 atm_dbg(usbatm, "%s entered\n", __func__);
483
484 memset(buf, 0, 2);
485
486 ret = usb_control_msg(usb_dev, usb_rcvctrlpipe(usb_dev, 0),
487 0x12, 0xc0, 0x04, 0x00,
488 buf, 2, CTRL_TIMEOUT);
489
490 if (ret < 0)
491 atm_warn(usbatm, "failed to start ADSL synchronisation: %d\n", ret);
492 else
493 atm_dbg(usbatm, "%s: modem prodded. %d bytes returned: %02x %02x\n",
494 __func__, ret, buf[0], buf[1]);
495
496 return ret;
497}
498
c4028958 499static void speedtch_check_status(struct work_struct *work)
48da7267 500{
c4028958
DH
501 struct speedtch_instance_data *instance =
502 container_of(work, struct speedtch_instance_data,
503 status_checker.work);
48da7267
DS
504 struct usbatm_data *usbatm = instance->usbatm;
505 struct atm_dev *atm_dev = usbatm->atm_dev;
506 unsigned char *buf = instance->scratch_buffer;
1a7aad15
DS
507 int down_speed, up_speed, ret;
508 unsigned char status;
48da7267 509
0ec3c7e8 510#ifdef VERBOSE_DEBUG
48da7267 511 atm_dbg(usbatm, "%s entered\n", __func__);
0ec3c7e8 512#endif
48da7267
DS
513
514 ret = speedtch_read_status(instance);
515 if (ret < 0) {
516 atm_warn(usbatm, "error %d fetching device status\n", ret);
cd5c08fb 517 instance->poll_delay = min(2 * instance->poll_delay, MAX_POLL_DELAY);
1da177e4
LT
518 return;
519 }
520
cd5c08fb 521 instance->poll_delay = max(instance->poll_delay / 2, MIN_POLL_DELAY);
48da7267 522
1a7aad15 523 status = buf[OFFSET_7];
1da177e4 524
1a7aad15 525 if ((status != instance->last_status) || !status) {
0ec3c7e8
DS
526 atm_dbg(usbatm, "%s: line state 0x%02x\n", __func__, status);
527
1a7aad15
DS
528 switch (status) {
529 case 0:
48da7267 530 atm_dev->signal = ATM_PHY_SIG_LOST;
1a7aad15 531 if (instance->last_status)
52fbae2a 532 atm_info(usbatm, "ADSL line is down\n");
1a7aad15 533 /* It may never resync again unless we ask it to... */
48da7267 534 ret = speedtch_start_synchro(instance);
1a7aad15 535 break;
1da177e4 536
1a7aad15 537 case 0x08:
48da7267 538 atm_dev->signal = ATM_PHY_SIG_UNKNOWN;
52fbae2a 539 atm_info(usbatm, "ADSL line is blocked?\n");
1a7aad15 540 break;
1da177e4 541
1a7aad15 542 case 0x10:
48da7267 543 atm_dev->signal = ATM_PHY_SIG_LOST;
52fbae2a 544 atm_info(usbatm, "ADSL line is synchronising\n");
1a7aad15 545 break;
1da177e4 546
1a7aad15
DS
547 case 0x20:
548 down_speed = buf[OFFSET_b] | (buf[OFFSET_b + 1] << 8)
1da177e4 549 | (buf[OFFSET_b + 2] << 16) | (buf[OFFSET_b + 3] << 24);
1a7aad15 550 up_speed = buf[OFFSET_b + 4] | (buf[OFFSET_b + 5] << 8)
1da177e4
LT
551 | (buf[OFFSET_b + 6] << 16) | (buf[OFFSET_b + 7] << 24);
552
48da7267 553 if (!(down_speed & 0x0000ffff) && !(up_speed & 0x0000ffff)) {
1da177e4
LT
554 down_speed >>= 16;
555 up_speed >>= 16;
556 }
1da177e4 557
48da7267
DS
558 atm_dev->link_rate = down_speed * 1000 / 424;
559 atm_dev->signal = ATM_PHY_SIG_FOUND;
560
561 atm_info(usbatm,
322a95bc 562 "ADSL line is up (%d kb/s down | %d kb/s up)\n",
48da7267 563 down_speed, up_speed);
1a7aad15 564 break;
1da177e4 565
1a7aad15 566 default:
48da7267 567 atm_dev->signal = ATM_PHY_SIG_UNKNOWN;
0ec3c7e8 568 atm_info(usbatm, "unknown line state %02x\n", status);
1a7aad15 569 break;
1da177e4 570 }
1a7aad15
DS
571
572 instance->last_status = status;
1da177e4
LT
573 }
574}
575
48da7267 576static void speedtch_status_poll(unsigned long data)
1da177e4
LT
577{
578 struct speedtch_instance_data *instance = (void *)data;
579
c4028958 580 schedule_delayed_work(&instance->status_checker, 0);
48da7267
DS
581
582 /* The following check is racy, but the race is harmless */
583 if (instance->poll_delay < MAX_POLL_DELAY)
584 mod_timer(&instance->status_checker.timer, jiffies + msecs_to_jiffies(instance->poll_delay));
585 else
52fbae2a 586 atm_warn(instance->usbatm, "Too many failures - disabling line status polling\n");
1da177e4
LT
587}
588
48da7267 589static void speedtch_resubmit_int(unsigned long data)
1da177e4 590{
48da7267
DS
591 struct speedtch_instance_data *instance = (void *)data;
592 struct urb *int_urb = instance->int_urb;
593 int ret;
1da177e4 594
48da7267 595 atm_dbg(instance->usbatm, "%s entered\n", __func__);
1da177e4 596
48da7267
DS
597 if (int_urb) {
598 ret = usb_submit_urb(int_urb, GFP_ATOMIC);
599 if (!ret)
c4028958 600 schedule_delayed_work(&instance->status_checker, 0);
48da7267
DS
601 else {
602 atm_dbg(instance->usbatm, "%s: usb_submit_urb failed with result %d\n", __func__, ret);
603 mod_timer(&instance->resubmit_timer, jiffies + msecs_to_jiffies(RESUBMIT_DELAY));
1da177e4 604 }
1da177e4 605 }
48da7267 606}
1da177e4 607
7d12e780 608static void speedtch_handle_int(struct urb *int_urb)
48da7267
DS
609{
610 struct speedtch_instance_data *instance = int_urb->context;
611 struct usbatm_data *usbatm = instance->usbatm;
612 unsigned int count = int_urb->actual_length;
9a5a3e95
GKH
613 int status = int_urb->status;
614 int ret;
1da177e4 615
48da7267 616 /* The magic interrupt for "up state" */
3c6bee1d 617 static const unsigned char up_int[6] = { 0xa1, 0x00, 0x01, 0x00, 0x00, 0x00 };
48da7267 618 /* The magic interrupt for "down state" */
3c6bee1d 619 static const unsigned char down_int[6] = { 0xa1, 0x00, 0x00, 0x00, 0x00, 0x00 };
48da7267
DS
620
621 atm_dbg(usbatm, "%s entered\n", __func__);
1da177e4 622
9a5a3e95
GKH
623 if (status < 0) {
624 atm_dbg(usbatm, "%s: nonzero urb status %d!\n", __func__, status);
48da7267 625 goto fail;
1da177e4 626 }
1da177e4 627
48da7267
DS
628 if ((count == 6) && !memcmp(up_int, instance->int_data, 6)) {
629 del_timer(&instance->status_checker.timer);
52fbae2a 630 atm_info(usbatm, "DSL line goes up\n");
48da7267 631 } else if ((count == 6) && !memcmp(down_int, instance->int_data, 6)) {
52fbae2a 632 atm_info(usbatm, "DSL line goes down\n");
48da7267
DS
633 } else {
634 int i;
1da177e4 635
48da7267
DS
636 atm_dbg(usbatm, "%s: unknown interrupt packet of length %d:", __func__, count);
637 for (i = 0; i < count; i++)
638 printk(" %02x", instance->int_data[i]);
639 printk("\n");
640 goto fail;
641 }
1da177e4 642
48da7267
DS
643 if ((int_urb = instance->int_urb)) {
644 ret = usb_submit_urb(int_urb, GFP_ATOMIC);
c4028958 645 schedule_delayed_work(&instance->status_checker, 0);
1da177e4 646 if (ret < 0) {
48da7267
DS
647 atm_dbg(usbatm, "%s: usb_submit_urb failed with result %d\n", __func__, ret);
648 goto fail;
1da177e4
LT
649 }
650 }
1da177e4 651
1da177e4
LT
652 return;
653
48da7267
DS
654fail:
655 if ((int_urb = instance->int_urb))
656 mod_timer(&instance->resubmit_timer, jiffies + msecs_to_jiffies(RESUBMIT_DELAY));
1da177e4
LT
657}
658
48da7267 659static int speedtch_atm_start(struct usbatm_data *usbatm, struct atm_dev *atm_dev)
1da177e4 660{
48da7267
DS
661 struct usb_device *usb_dev = usbatm->usb_dev;
662 struct speedtch_instance_data *instance = usbatm->driver_data;
663 int i, ret;
664 unsigned char mac_str[13];
1da177e4 665
48da7267 666 atm_dbg(usbatm, "%s entered\n", __func__);
1da177e4 667
48da7267
DS
668 /* Set MAC address, it is stored in the serial number */
669 memset(atm_dev->esi, 0, sizeof(atm_dev->esi));
670 if (usb_string(usb_dev, usb_dev->descriptor.iSerialNumber, mac_str, sizeof(mac_str)) == 12) {
671 for (i = 0; i < 6; i++)
672 atm_dev->esi[i] = (hex2int(mac_str[i * 2]) * 16) + (hex2int(mac_str[i * 2 + 1]));
673 }
1da177e4 674
48da7267
DS
675 /* Start modem synchronisation */
676 ret = speedtch_start_synchro(instance);
1da177e4 677
48da7267
DS
678 /* Set up interrupt endpoint */
679 if (instance->int_urb) {
680 ret = usb_submit_urb(instance->int_urb, GFP_KERNEL);
681 if (ret < 0) {
682 /* Doesn't matter; we'll poll anyway */
683 atm_dbg(usbatm, "%s: submission of interrupt URB failed (%d)!\n", __func__, ret);
684 usb_free_urb(instance->int_urb);
685 instance->int_urb = NULL;
1da177e4 686 }
1da177e4
LT
687 }
688
48da7267
DS
689 /* Start status polling */
690 mod_timer(&instance->status_checker.timer, jiffies + msecs_to_jiffies(1000));
1da177e4 691
1da177e4
LT
692 return 0;
693}
1da177e4 694
48da7267 695static void speedtch_atm_stop(struct usbatm_data *usbatm, struct atm_dev *atm_dev)
1da177e4 696{
48da7267
DS
697 struct speedtch_instance_data *instance = usbatm->driver_data;
698 struct urb *int_urb = instance->int_urb;
699
700 atm_dbg(usbatm, "%s entered\n", __func__);
701
702 del_timer_sync(&instance->status_checker.timer);
703
704 /*
705 * Since resubmit_timer and int_urb can schedule themselves and
706 * each other, shutting them down correctly takes some care
707 */
708 instance->int_urb = NULL; /* signal shutdown */
709 mb();
710 usb_kill_urb(int_urb);
711 del_timer_sync(&instance->resubmit_timer);
712 /*
713 * At this point, speedtch_handle_int and speedtch_resubmit_int
714 * can run or be running, but instance->int_urb == NULL means that
715 * they will not reschedule
716 */
717 usb_kill_urb(int_urb);
718 del_timer_sync(&instance->resubmit_timer);
719 usb_free_urb(int_urb);
1da177e4 720
48da7267
DS
721 flush_scheduled_work();
722}
1da177e4 723
8fc7aeab
AS
724static int speedtch_pre_reset(struct usb_interface *intf)
725{
726 return 0;
727}
728
729static int speedtch_post_reset(struct usb_interface *intf)
730{
731 return 0;
732}
733
1da177e4 734
48da7267
DS
735/**********
736** USB **
737**********/
1da177e4 738
48da7267
DS
739static struct usb_device_id speedtch_usb_ids[] = {
740 {USB_DEVICE(0x06b9, 0x4061)},
741 {}
742};
1da177e4 743
48da7267 744MODULE_DEVICE_TABLE(usb, speedtch_usb_ids);
1da177e4 745
48da7267 746static int speedtch_usb_probe(struct usb_interface *, const struct usb_device_id *);
1da177e4 747
48da7267 748static struct usb_driver speedtch_usb_driver = {
48da7267
DS
749 .name = speedtch_driver_name,
750 .probe = speedtch_usb_probe,
751 .disconnect = usbatm_usb_disconnect,
8fc7aeab
AS
752 .pre_reset = speedtch_pre_reset,
753 .post_reset = speedtch_post_reset,
48da7267
DS
754 .id_table = speedtch_usb_ids
755};
1da177e4 756
48da7267
DS
757static void speedtch_release_interfaces(struct usb_device *usb_dev, int num_interfaces) {
758 struct usb_interface *cur_intf;
759 int i;
1da177e4 760
48da7267
DS
761 for(i = 0; i < num_interfaces; i++)
762 if ((cur_intf = usb_ifnum_to_if(usb_dev, i))) {
763 usb_set_intfdata(cur_intf, NULL);
764 usb_driver_release_interface(&speedtch_usb_driver, cur_intf);
765 }
1da177e4
LT
766}
767
48da7267
DS
768static int speedtch_bind(struct usbatm_data *usbatm,
769 struct usb_interface *intf,
35644b0c 770 const struct usb_device_id *id)
1da177e4 771{
48da7267 772 struct usb_device *usb_dev = interface_to_usbdev(intf);
80aae7a1 773 struct usb_interface *cur_intf, *data_intf;
48da7267
DS
774 struct speedtch_instance_data *instance;
775 int ifnum = intf->altsetting->desc.bInterfaceNumber;
776 int num_interfaces = usb_dev->actconfig->desc.bNumInterfaces;
777 int i, ret;
80aae7a1 778 int use_isoc;
1da177e4 779
48da7267 780 usb_dbg(usbatm, "%s entered\n", __func__);
1da177e4 781
0ec3c7e8
DS
782 /* sanity checks */
783
48da7267 784 if (usb_dev->descriptor.bDeviceClass != USB_CLASS_VENDOR_SPEC) {
0ec3c7e8 785 usb_err(usbatm, "%s: wrong device class %d\n", __func__, usb_dev->descriptor.bDeviceClass);
1da177e4
LT
786 return -ENODEV;
787 }
788
80aae7a1
DS
789 if (!(data_intf = usb_ifnum_to_if(usb_dev, INTERFACE_DATA))) {
790 usb_err(usbatm, "%s: data interface not found!\n", __func__);
791 return -ENODEV;
792 }
793
48da7267 794 /* claim all interfaces */
1da177e4 795
48da7267
DS
796 for (i=0; i < num_interfaces; i++) {
797 cur_intf = usb_ifnum_to_if(usb_dev, i);
1da177e4 798
48da7267
DS
799 if ((i != ifnum) && cur_intf) {
800 ret = usb_driver_claim_interface(&speedtch_usb_driver, cur_intf, usbatm);
1da177e4 801
48da7267 802 if (ret < 0) {
0ec3c7e8 803 usb_err(usbatm, "%s: failed to claim interface %2d (%d)!\n", __func__, i, ret);
48da7267
DS
804 speedtch_release_interfaces(usb_dev, i);
805 return ret;
806 }
807 }
808 }
1da177e4 809
9a734efe 810 instance = kzalloc(sizeof(*instance), GFP_KERNEL);
48da7267 811
1da177e4 812 if (!instance) {
0ec3c7e8 813 usb_err(usbatm, "%s: no memory for instance data!\n", __func__);
48da7267
DS
814 ret = -ENOMEM;
815 goto fail_release;
1da177e4
LT
816 }
817
48da7267 818 instance->usbatm = usbatm;
1da177e4 819
6a4f1b41
DS
820 /* module parameters may change at any moment, so take a snapshot */
821 instance->params.altsetting = altsetting;
822 instance->params.BMaxDSL = BMaxDSL;
823 instance->params.ModemMode = ModemMode;
824 memcpy(instance->params.ModemOption, DEFAULT_MODEM_OPTION, MODEM_OPTION_LENGTH);
825 memcpy(instance->params.ModemOption, ModemOption, num_ModemOption);
80aae7a1 826 use_isoc = enable_isoc;
6f749475 827
6a4f1b41
DS
828 if (instance->params.altsetting)
829 if ((ret = usb_set_interface(usb_dev, INTERFACE_DATA, instance->params.altsetting)) < 0) {
830 usb_err(usbatm, "%s: setting interface to %2d failed (%d)!\n", __func__, instance->params.altsetting, ret);
831 instance->params.altsetting = 0; /* fall back to default */
6f749475
DS
832 }
833
6a4f1b41 834 if (!instance->params.altsetting && use_isoc)
80aae7a1
DS
835 if ((ret = usb_set_interface(usb_dev, INTERFACE_DATA, DEFAULT_ISOC_ALTSETTING)) < 0) {
836 usb_dbg(usbatm, "%s: setting interface to %2d failed (%d)!\n", __func__, DEFAULT_ISOC_ALTSETTING, ret);
837 use_isoc = 0; /* fall back to bulk */
6f749475 838 }
80aae7a1
DS
839
840 if (use_isoc) {
841 const struct usb_host_interface *desc = data_intf->cur_altsetting;
842 const __u8 target_address = USB_DIR_IN | usbatm->driver->isoc_in;
80aae7a1
DS
843
844 use_isoc = 0; /* fall back to bulk if endpoint not found */
845
846 for (i=0; i<desc->desc.bNumEndpoints; i++) {
847 const struct usb_endpoint_descriptor *endpoint_desc = &desc->endpoint[i].desc;
848
849 if ((endpoint_desc->bEndpointAddress == target_address)) {
c5dd1f94
LFC
850 use_isoc =
851 usb_endpoint_xfer_isoc(endpoint_desc);
80aae7a1
DS
852 break;
853 }
854 }
855
856 if (!use_isoc)
857 usb_info(usbatm, "isochronous transfer not supported - using bulk\n");
6f749475
DS
858 }
859
6a4f1b41 860 if (!use_isoc && !instance->params.altsetting)
80aae7a1
DS
861 if ((ret = usb_set_interface(usb_dev, INTERFACE_DATA, DEFAULT_BULK_ALTSETTING)) < 0) {
862 usb_err(usbatm, "%s: setting interface to %2d failed (%d)!\n", __func__, DEFAULT_BULK_ALTSETTING, ret);
863 goto fail_free;
864 }
865
6a4f1b41
DS
866 if (!instance->params.altsetting)
867 instance->params.altsetting = use_isoc ? DEFAULT_ISOC_ALTSETTING : DEFAULT_BULK_ALTSETTING;
80aae7a1
DS
868
869 usbatm->flags |= (use_isoc ? UDSL_USE_ISOC : 0);
870
c4028958 871 INIT_DELAYED_WORK(&instance->status_checker, speedtch_check_status);
1da177e4 872
48da7267
DS
873 instance->status_checker.timer.function = speedtch_status_poll;
874 instance->status_checker.timer.data = (unsigned long)instance;
1a7aad15 875 instance->last_status = 0xff;
48da7267 876 instance->poll_delay = MIN_POLL_DELAY;
1da177e4 877
48da7267
DS
878 init_timer(&instance->resubmit_timer);
879 instance->resubmit_timer.function = speedtch_resubmit_int;
880 instance->resubmit_timer.data = (unsigned long)instance;
1da177e4 881
48da7267 882 instance->int_urb = usb_alloc_urb(0, GFP_KERNEL);
1da177e4 883
48da7267
DS
884 if (instance->int_urb)
885 usb_fill_int_urb(instance->int_urb, usb_dev,
886 usb_rcvintpipe(usb_dev, ENDPOINT_INT),
887 instance->int_data, sizeof(instance->int_data),
888 speedtch_handle_int, instance, 50);
889 else
890 usb_dbg(usbatm, "%s: no memory for interrupt urb!\n", __func__);
1da177e4 891
48da7267
DS
892 /* check whether the modem already seems to be alive */
893 ret = usb_control_msg(usb_dev, usb_rcvctrlpipe(usb_dev, 0),
894 0x12, 0xc0, 0x07, 0x00,
895 instance->scratch_buffer + OFFSET_7, SIZE_7, 500);
1da177e4 896
80aae7a1 897 usbatm->flags |= (ret == SIZE_7 ? UDSL_SKIP_HEAVY_INIT : 0);
1da177e4 898
35644b0c 899 usb_dbg(usbatm, "%s: firmware %s loaded\n", __func__, usbatm->flags & UDSL_SKIP_HEAVY_INIT ? "already" : "not");
48da7267 900
35644b0c 901 if (!(usbatm->flags & UDSL_SKIP_HEAVY_INIT))
0ec3c7e8
DS
902 if ((ret = usb_reset_device(usb_dev)) < 0) {
903 usb_err(usbatm, "%s: device reset failed (%d)!\n", __func__, ret);
48da7267 904 goto fail_free;
0ec3c7e8 905 }
1da177e4 906
48da7267 907 usbatm->driver_data = instance;
1da177e4
LT
908
909 return 0;
910
48da7267
DS
911fail_free:
912 usb_free_urb(instance->int_urb);
1da177e4 913 kfree(instance);
48da7267
DS
914fail_release:
915 speedtch_release_interfaces(usb_dev, num_interfaces);
916 return ret;
1da177e4
LT
917}
918
48da7267 919static void speedtch_unbind(struct usbatm_data *usbatm, struct usb_interface *intf)
1da177e4 920{
48da7267
DS
921 struct usb_device *usb_dev = interface_to_usbdev(intf);
922 struct speedtch_instance_data *instance = usbatm->driver_data;
1da177e4 923
48da7267 924 usb_dbg(usbatm, "%s entered\n", __func__);
1da177e4 925
48da7267
DS
926 speedtch_release_interfaces(usb_dev, usb_dev->actconfig->desc.bNumInterfaces);
927 usb_free_urb(instance->int_urb);
928 kfree(instance);
1da177e4
LT
929}
930
48da7267 931
1da177e4
LT
932/***********
933** init **
934***********/
935
48da7267 936static struct usbatm_driver speedtch_usbatm_driver = {
48da7267
DS
937 .driver_name = speedtch_driver_name,
938 .bind = speedtch_bind,
939 .heavy_init = speedtch_heavy_init,
940 .unbind = speedtch_unbind,
941 .atm_start = speedtch_atm_start,
942 .atm_stop = speedtch_atm_stop,
80aae7a1
DS
943 .bulk_in = ENDPOINT_BULK_DATA,
944 .bulk_out = ENDPOINT_BULK_DATA,
945 .isoc_in = ENDPOINT_ISOC_DATA
48da7267
DS
946};
947
948static int speedtch_usb_probe(struct usb_interface *intf, const struct usb_device_id *id)
949{
950 return usbatm_usb_probe(intf, id, &speedtch_usbatm_driver);
951}
952
1da177e4
LT
953static int __init speedtch_usb_init(void)
954{
48da7267 955 dbg("%s: driver version %s", __func__, DRIVER_VERSION);
1da177e4
LT
956
957 return usb_register(&speedtch_usb_driver);
958}
959
960static void __exit speedtch_usb_cleanup(void)
961{
48da7267 962 dbg("%s", __func__);
1da177e4
LT
963
964 usb_deregister(&speedtch_usb_driver);
965}
966
967module_init(speedtch_usb_init);
968module_exit(speedtch_usb_cleanup);
969
970MODULE_AUTHOR(DRIVER_AUTHOR);
971MODULE_DESCRIPTION(DRIVER_DESC);
972MODULE_LICENSE("GPL");
973MODULE_VERSION(DRIVER_VERSION);