1 /******************************************************************************
2 * speedtch.c - Alcatel SpeedTouch USB xDSL modem driver
4 * Copyright (C) 2001, Alcatel
5 * Copyright (C) 2003, Duncan Sands
6 * Copyright (C) 2004, David Woodhouse
8 * Based on "modem_run.c", copyright (C) 2001, Benoit Papillault
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)
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
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.
24 ******************************************************************************/
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>
33 #include <linux/module.h>
34 #include <linux/moduleparam.h>
35 #include <linux/slab.h>
36 #include <linux/stat.h>
37 #include <linux/timer.h>
38 #include <linux/workqueue.h>
42 #define DRIVER_AUTHOR "Johan Verrept, Duncan Sands <duncan.sands@free.fr>"
43 #define DRIVER_VERSION "1.9"
44 #define DRIVER_DESC "Alcatel SpeedTouch USB driver version " DRIVER_VERSION
46 static const char speedtch_driver_name[] = "speedtch";
48 #define CTRL_TIMEOUT 2000 /* milliseconds */
49 #define DATA_TIMEOUT 2000 /* milliseconds */
51 #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 */
64 #define MIN_POLL_DELAY 5000 /* milliseconds */
65 #define MAX_POLL_DELAY 60000 /* milliseconds */
67 #define RESUBMIT_DELAY 1000 /* milliseconds */
69 #define DEFAULT_ALTSETTING 1
70 #define DEFAULT_DL_512_FIRST 0
71 #define DEFAULT_SW_BUFFERING 0
73 static int altsetting = DEFAULT_ALTSETTING;
74 static int dl_512_first = DEFAULT_DL_512_FIRST;
75 static int sw_buffering = DEFAULT_SW_BUFFERING;
77 module_param(altsetting, int, S_IRUGO | S_IWUSR);
78 MODULE_PARM_DESC(altsetting,
79 "Alternative setting for data interface (default: "
80 __MODULE_STRING(DEFAULT_ALTSETTING) ")");
82 module_param(dl_512_first, bool, S_IRUGO | S_IWUSR);
83 MODULE_PARM_DESC(dl_512_first,
84 "Read 512 bytes before sending firmware (default: "
85 __MODULE_STRING(DEFAULT_DL_512_FIRST) ")");
87 module_param(sw_buffering, bool, S_IRUGO | S_IWUSR);
88 MODULE_PARM_DESC(sw_buffering,
89 "Enable software buffering (default: "
90 __MODULE_STRING(DEFAULT_SW_BUFFERING) ")");
92 #define ENDPOINT_INT 0x81
93 #define ENDPOINT_DATA 0x07
94 #define ENDPOINT_FIRMWARE 0x05
96 #define hex2int(c) ( (c >= '0') && (c <= '9') ? (c - '0') : ((c & 0xf) + 9) )
98 struct speedtch_instance_data {
99 struct usbatm_data *usbatm;
101 struct work_struct status_checker;
103 int poll_delay; /* milliseconds */
105 struct timer_list resubmit_timer;
107 unsigned char int_data[16];
109 unsigned char scratch_buffer[TOTAL];
116 static void speedtch_set_swbuff(struct speedtch_instance_data *instance, int state)
118 struct usbatm_data *usbatm = instance->usbatm;
119 struct usb_device *usb_dev = usbatm->usb_dev;
122 ret = usb_control_msg(usb_dev, usb_sndctrlpipe(usb_dev, 0),
123 0x32, 0x40, state ? 0x01 : 0x00, 0x00, NULL, 0, CTRL_TIMEOUT);
126 "%sabling SW buffering: usb_control_msg returned %d\n",
127 state ? "En" : "Dis", ret);
129 dbg("speedtch_set_swbuff: %sbled SW buffering", state ? "En" : "Dis");
132 static void speedtch_test_sequence(struct speedtch_instance_data *instance)
134 struct usbatm_data *usbatm = instance->usbatm;
135 struct usb_device *usb_dev = usbatm->usb_dev;
136 unsigned char *buf = instance->scratch_buffer;
142 ret = usb_control_msg(usb_dev, usb_sndctrlpipe(usb_dev, 0),
143 0x01, 0x40, 0x0b, 0x00, buf, 2, CTRL_TIMEOUT);
145 usb_warn(usbatm, "%s failed on URB147: %d\n", __func__, ret);
150 ret = usb_control_msg(usb_dev, usb_sndctrlpipe(usb_dev, 0),
151 0x01, 0x40, 0x02, 0x00, buf, 2, CTRL_TIMEOUT);
153 usb_warn(usbatm, "%s failed on URB148: %d\n", __func__, ret);
159 ret = usb_control_msg(usb_dev, usb_sndctrlpipe(usb_dev, 0),
160 0x01, 0x40, 0x03, 0x00, buf, 3, CTRL_TIMEOUT);
162 usb_warn(usbatm, "%s failed on URB149: %d\n", __func__, ret);
168 ret = usb_control_msg(usb_dev, usb_sndctrlpipe(usb_dev, 0),
169 0x01, 0x40, 0x04, 0x00, buf, 3, CTRL_TIMEOUT);
171 usb_warn(usbatm, "%s failed on URB150: %d\n", __func__, ret);
174 static int speedtch_upload_firmware(struct speedtch_instance_data *instance,
175 const struct firmware *fw1,
176 const struct firmware *fw2)
178 unsigned char *buffer;
179 struct usbatm_data *usbatm = instance->usbatm;
180 struct usb_interface *intf;
181 struct usb_device *usb_dev = usbatm->usb_dev;
186 usb_dbg(usbatm, "%s entered\n", __func__);
188 if (!(buffer = (unsigned char *)__get_free_page(GFP_KERNEL))) {
190 usb_dbg(usbatm, "%s: no memory for buffer!\n", __func__);
194 if (!(intf = usb_ifnum_to_if(usb_dev, 2))) {
196 usb_dbg(usbatm, "%s: interface not found!\n", __func__);
201 if (dl_512_first) { /* some modems need a read before writing the firmware */
202 ret = usb_bulk_msg(usb_dev, usb_rcvbulkpipe(usb_dev, ENDPOINT_FIRMWARE),
203 buffer, 0x200, &actual_length, 2000);
205 if (ret < 0 && ret != -ETIMEDOUT)
206 usb_dbg(usbatm, "%s: read BLOCK0 from modem failed (%d)!\n", __func__, ret);
208 usb_dbg(usbatm, "%s: BLOCK0 downloaded (%d bytes)\n", __func__, ret);
211 /* URB 8 : both leds are static green */
212 for (offset = 0; offset < fw1->size; offset += PAGE_SIZE) {
213 int thislen = min_t(int, PAGE_SIZE, fw1->size - offset);
214 memcpy(buffer, fw1->data + offset, thislen);
216 ret = usb_bulk_msg(usb_dev, usb_sndbulkpipe(usb_dev, ENDPOINT_FIRMWARE),
217 buffer, thislen, &actual_length, DATA_TIMEOUT);
220 usb_dbg(usbatm, "%s: write BLOCK1 to modem failed (%d)!\n", __func__, ret);
223 usb_dbg(usbatm, "%s: BLOCK1 uploaded (%zu bytes)\n", __func__, fw1->size);
226 /* USB led blinking green, ADSL led off */
229 ret = usb_bulk_msg(usb_dev, usb_rcvbulkpipe(usb_dev, ENDPOINT_FIRMWARE),
230 buffer, 0x200, &actual_length, DATA_TIMEOUT);
233 usb_dbg(usbatm, "%s: read BLOCK2 from modem failed (%d)!\n", __func__, ret);
236 usb_dbg(usbatm, "%s: BLOCK2 downloaded (%d bytes)\n", __func__, actual_length);
238 /* URBs 12 to 139 - USB led blinking green, ADSL led off */
239 for (offset = 0; offset < fw2->size; offset += PAGE_SIZE) {
240 int thislen = min_t(int, PAGE_SIZE, fw2->size - offset);
241 memcpy(buffer, fw2->data + offset, thislen);
243 ret = usb_bulk_msg(usb_dev, usb_sndbulkpipe(usb_dev, ENDPOINT_FIRMWARE),
244 buffer, thislen, &actual_length, DATA_TIMEOUT);
247 usb_dbg(usbatm, "%s: write BLOCK3 to modem failed (%d)!\n", __func__, ret);
251 usb_dbg(usbatm, "%s: BLOCK3 uploaded (%zu bytes)\n", __func__, fw2->size);
253 /* USB led static green, ADSL led static red */
256 ret = usb_bulk_msg(usb_dev, usb_rcvbulkpipe(usb_dev, ENDPOINT_FIRMWARE),
257 buffer, 0x200, &actual_length, DATA_TIMEOUT);
260 usb_dbg(usbatm, "%s: read BLOCK4 from modem failed (%d)!\n", __func__, ret);
265 usb_dbg(usbatm, "%s: BLOCK4 downloaded (%d bytes)\n", __func__, actual_length);
267 /* Delay to allow firmware to start up. We can do this here
268 because we're in our own kernel thread anyway. */
269 msleep_interruptible(1000);
271 /* Enable software buffering, if requested */
273 speedtch_set_swbuff(instance, 1);
275 /* Magic spell; don't ask us what this does */
276 speedtch_test_sequence(instance);
281 free_page((unsigned long)buffer);
286 static int speedtch_find_firmware(struct usb_interface *intf, int phase,
287 const struct firmware **fw_p)
289 struct device *dev = &intf->dev;
290 const u16 bcdDevice = le16_to_cpu(interface_to_usbdev(intf)->descriptor.bcdDevice);
291 const u8 major_revision = bcdDevice >> 8;
292 const u8 minor_revision = bcdDevice & 0xff;
295 sprintf(buf, "speedtch-%d.bin.%x.%02x", phase, major_revision, minor_revision);
296 dev_dbg(dev, "%s: looking for %s\n", __func__, buf);
298 if (request_firmware(fw_p, buf, dev)) {
299 sprintf(buf, "speedtch-%d.bin.%x", phase, major_revision);
300 dev_dbg(dev, "%s: looking for %s\n", __func__, buf);
302 if (request_firmware(fw_p, buf, dev)) {
303 sprintf(buf, "speedtch-%d.bin", phase);
304 dev_dbg(dev, "%s: looking for %s\n", __func__, buf);
306 if (request_firmware(fw_p, buf, dev)) {
307 dev_warn(dev, "no stage %d firmware found!\n", phase);
313 dev_info(dev, "found stage %d firmware %s\n", phase, buf);
318 static int speedtch_heavy_init(struct usbatm_data *usbatm, struct usb_interface *intf)
320 const struct firmware *fw1, *fw2;
321 struct speedtch_instance_data *instance = usbatm->driver_data;
324 if ((ret = speedtch_find_firmware(intf, 1, &fw1)) < 0)
327 if ((ret = speedtch_find_firmware(intf, 2, &fw2)) < 0) {
328 release_firmware(fw1);
332 ret = speedtch_upload_firmware(instance, fw1, fw2);
334 release_firmware(fw2);
335 release_firmware(fw1);
345 static int speedtch_read_status(struct speedtch_instance_data *instance)
347 struct usbatm_data *usbatm = instance->usbatm;
348 struct usb_device *usb_dev = usbatm->usb_dev;
349 unsigned char *buf = instance->scratch_buffer;
352 memset(buf, 0, TOTAL);
354 ret = usb_control_msg(usb_dev, usb_rcvctrlpipe(usb_dev, 0),
355 0x12, 0xc0, 0x07, 0x00, buf + OFFSET_7, SIZE_7,
358 atm_dbg(usbatm, "%s: MSG 7 failed\n", __func__);
362 ret = usb_control_msg(usb_dev, usb_rcvctrlpipe(usb_dev, 0),
363 0x12, 0xc0, 0x0b, 0x00, buf + OFFSET_b, SIZE_b,
366 atm_dbg(usbatm, "%s: MSG B failed\n", __func__);
370 ret = usb_control_msg(usb_dev, usb_rcvctrlpipe(usb_dev, 0),
371 0x12, 0xc0, 0x0d, 0x00, buf + OFFSET_d, SIZE_d,
374 atm_dbg(usbatm, "%s: MSG D failed\n", __func__);
378 ret = usb_control_msg(usb_dev, usb_rcvctrlpipe(usb_dev, 0),
379 0x01, 0xc0, 0x0e, 0x00, buf + OFFSET_e, SIZE_e,
382 atm_dbg(usbatm, "%s: MSG E failed\n", __func__);
386 ret = usb_control_msg(usb_dev, usb_rcvctrlpipe(usb_dev, 0),
387 0x01, 0xc0, 0x0f, 0x00, buf + OFFSET_f, SIZE_f,
390 atm_dbg(usbatm, "%s: MSG F failed\n", __func__);
397 static int speedtch_start_synchro(struct speedtch_instance_data *instance)
399 struct usbatm_data *usbatm = instance->usbatm;
400 struct usb_device *usb_dev = usbatm->usb_dev;
401 unsigned char *buf = instance->scratch_buffer;
404 atm_dbg(usbatm, "%s entered\n", __func__);
408 ret = usb_control_msg(usb_dev, usb_rcvctrlpipe(usb_dev, 0),
409 0x12, 0xc0, 0x04, 0x00,
410 buf, 2, CTRL_TIMEOUT);
413 atm_warn(usbatm, "failed to start ADSL synchronisation: %d\n", ret);
415 atm_dbg(usbatm, "%s: modem prodded. %d bytes returned: %02x %02x\n",
416 __func__, ret, buf[0], buf[1]);
421 static void speedtch_check_status(struct speedtch_instance_data *instance)
423 struct usbatm_data *usbatm = instance->usbatm;
424 struct atm_dev *atm_dev = usbatm->atm_dev;
425 unsigned char *buf = instance->scratch_buffer;
428 atm_dbg(usbatm, "%s entered\n", __func__);
430 ret = speedtch_read_status(instance);
432 atm_warn(usbatm, "error %d fetching device status\n", ret);
433 if (instance->poll_delay < MAX_POLL_DELAY)
434 instance->poll_delay *= 2;
438 if (instance->poll_delay > MIN_POLL_DELAY)
439 instance->poll_delay /= 2;
441 atm_dbg(usbatm, "%s: line state %02x\n", __func__, buf[OFFSET_7]);
443 switch (buf[OFFSET_7]) {
445 if (atm_dev->signal != ATM_PHY_SIG_LOST) {
446 atm_dev->signal = ATM_PHY_SIG_LOST;
447 atm_info(usbatm, "ADSL line is down\n");
448 /* It'll never resync again unless we ask it to... */
449 ret = speedtch_start_synchro(instance);
454 if (atm_dev->signal != ATM_PHY_SIG_UNKNOWN) {
455 atm_dev->signal = ATM_PHY_SIG_UNKNOWN;
456 atm_info(usbatm, "ADSL line is blocked?\n");
461 if (atm_dev->signal != ATM_PHY_SIG_LOST) {
462 atm_dev->signal = ATM_PHY_SIG_LOST;
463 atm_info(usbatm, "ADSL line is synchronising\n");
468 if (atm_dev->signal != ATM_PHY_SIG_FOUND) {
469 int down_speed = buf[OFFSET_b] | (buf[OFFSET_b + 1] << 8)
470 | (buf[OFFSET_b + 2] << 16) | (buf[OFFSET_b + 3] << 24);
471 int up_speed = buf[OFFSET_b + 4] | (buf[OFFSET_b + 5] << 8)
472 | (buf[OFFSET_b + 6] << 16) | (buf[OFFSET_b + 7] << 24);
474 if (!(down_speed & 0x0000ffff) && !(up_speed & 0x0000ffff)) {
479 atm_dev->link_rate = down_speed * 1000 / 424;
480 atm_dev->signal = ATM_PHY_SIG_FOUND;
483 "ADSL line is up (%d Kib/s down | %d Kib/s up)\n",
484 down_speed, up_speed);
489 if (atm_dev->signal != ATM_PHY_SIG_UNKNOWN) {
490 atm_dev->signal = ATM_PHY_SIG_UNKNOWN;
491 atm_info(usbatm, "Unknown line state %02x\n", buf[OFFSET_7]);
497 static void speedtch_status_poll(unsigned long data)
499 struct speedtch_instance_data *instance = (void *)data;
501 schedule_work(&instance->status_checker);
503 /* The following check is racy, but the race is harmless */
504 if (instance->poll_delay < MAX_POLL_DELAY)
505 mod_timer(&instance->status_checker.timer, jiffies + msecs_to_jiffies(instance->poll_delay));
507 atm_warn(instance->usbatm, "Too many failures - disabling line status polling\n");
510 static void speedtch_resubmit_int(unsigned long data)
512 struct speedtch_instance_data *instance = (void *)data;
513 struct urb *int_urb = instance->int_urb;
516 atm_dbg(instance->usbatm, "%s entered\n", __func__);
519 ret = usb_submit_urb(int_urb, GFP_ATOMIC);
521 schedule_work(&instance->status_checker);
523 atm_dbg(instance->usbatm, "%s: usb_submit_urb failed with result %d\n", __func__, ret);
524 mod_timer(&instance->resubmit_timer, jiffies + msecs_to_jiffies(RESUBMIT_DELAY));
529 static void speedtch_handle_int(struct urb *int_urb, struct pt_regs *regs)
531 struct speedtch_instance_data *instance = int_urb->context;
532 struct usbatm_data *usbatm = instance->usbatm;
533 unsigned int count = int_urb->actual_length;
534 int ret = int_urb->status;
536 /* The magic interrupt for "up state" */
537 const static unsigned char up_int[6] = { 0xa1, 0x00, 0x01, 0x00, 0x00, 0x00 };
538 /* The magic interrupt for "down state" */
539 const static unsigned char down_int[6] = { 0xa1, 0x00, 0x00, 0x00, 0x00, 0x00 };
541 atm_dbg(usbatm, "%s entered\n", __func__);
544 atm_dbg(usbatm, "%s: nonzero urb status %d!\n", __func__, ret);
548 if ((count == 6) && !memcmp(up_int, instance->int_data, 6)) {
549 del_timer(&instance->status_checker.timer);
550 atm_info(usbatm, "DSL line goes up\n");
551 } else if ((count == 6) && !memcmp(down_int, instance->int_data, 6)) {
552 atm_info(usbatm, "DSL line goes down\n");
556 atm_dbg(usbatm, "%s: unknown interrupt packet of length %d:", __func__, count);
557 for (i = 0; i < count; i++)
558 printk(" %02x", instance->int_data[i]);
563 if ((int_urb = instance->int_urb)) {
564 ret = usb_submit_urb(int_urb, GFP_ATOMIC);
565 schedule_work(&instance->status_checker);
567 atm_dbg(usbatm, "%s: usb_submit_urb failed with result %d\n", __func__, ret);
575 if ((int_urb = instance->int_urb))
576 mod_timer(&instance->resubmit_timer, jiffies + msecs_to_jiffies(RESUBMIT_DELAY));
579 static int speedtch_atm_start(struct usbatm_data *usbatm, struct atm_dev *atm_dev)
581 struct usb_device *usb_dev = usbatm->usb_dev;
582 struct speedtch_instance_data *instance = usbatm->driver_data;
584 unsigned char mac_str[13];
586 atm_dbg(usbatm, "%s entered\n", __func__);
588 if ((ret = usb_set_interface(usb_dev, 1, altsetting)) < 0) {
589 atm_dbg(usbatm, "%s: usb_set_interface returned %d!\n", __func__, ret);
593 /* Set MAC address, it is stored in the serial number */
594 memset(atm_dev->esi, 0, sizeof(atm_dev->esi));
595 if (usb_string(usb_dev, usb_dev->descriptor.iSerialNumber, mac_str, sizeof(mac_str)) == 12) {
596 for (i = 0; i < 6; i++)
597 atm_dev->esi[i] = (hex2int(mac_str[i * 2]) * 16) + (hex2int(mac_str[i * 2 + 1]));
600 /* Start modem synchronisation */
601 ret = speedtch_start_synchro(instance);
603 /* Set up interrupt endpoint */
604 if (instance->int_urb) {
605 ret = usb_submit_urb(instance->int_urb, GFP_KERNEL);
607 /* Doesn't matter; we'll poll anyway */
608 atm_dbg(usbatm, "%s: submission of interrupt URB failed (%d)!\n", __func__, ret);
609 usb_free_urb(instance->int_urb);
610 instance->int_urb = NULL;
614 /* Start status polling */
615 mod_timer(&instance->status_checker.timer, jiffies + msecs_to_jiffies(1000));
620 static void speedtch_atm_stop(struct usbatm_data *usbatm, struct atm_dev *atm_dev)
622 struct speedtch_instance_data *instance = usbatm->driver_data;
623 struct urb *int_urb = instance->int_urb;
625 atm_dbg(usbatm, "%s entered\n", __func__);
627 del_timer_sync(&instance->status_checker.timer);
630 * Since resubmit_timer and int_urb can schedule themselves and
631 * each other, shutting them down correctly takes some care
633 instance->int_urb = NULL; /* signal shutdown */
635 usb_kill_urb(int_urb);
636 del_timer_sync(&instance->resubmit_timer);
638 * At this point, speedtch_handle_int and speedtch_resubmit_int
639 * can run or be running, but instance->int_urb == NULL means that
640 * they will not reschedule
642 usb_kill_urb(int_urb);
643 del_timer_sync(&instance->resubmit_timer);
644 usb_free_urb(int_urb);
646 flush_scheduled_work();
654 static struct usb_device_id speedtch_usb_ids[] = {
655 {USB_DEVICE(0x06b9, 0x4061)},
659 MODULE_DEVICE_TABLE(usb, speedtch_usb_ids);
661 static int speedtch_usb_probe(struct usb_interface *, const struct usb_device_id *);
663 static struct usb_driver speedtch_usb_driver = {
664 .owner = THIS_MODULE,
665 .name = speedtch_driver_name,
666 .probe = speedtch_usb_probe,
667 .disconnect = usbatm_usb_disconnect,
668 .id_table = speedtch_usb_ids
671 static void speedtch_release_interfaces(struct usb_device *usb_dev, int num_interfaces) {
672 struct usb_interface *cur_intf;
675 for(i = 0; i < num_interfaces; i++)
676 if ((cur_intf = usb_ifnum_to_if(usb_dev, i))) {
677 usb_set_intfdata(cur_intf, NULL);
678 usb_driver_release_interface(&speedtch_usb_driver, cur_intf);
682 static int speedtch_bind(struct usbatm_data *usbatm,
683 struct usb_interface *intf,
684 const struct usb_device_id *id,
685 int *need_heavy_init)
687 struct usb_device *usb_dev = interface_to_usbdev(intf);
688 struct usb_interface *cur_intf;
689 struct speedtch_instance_data *instance;
690 int ifnum = intf->altsetting->desc.bInterfaceNumber;
691 int num_interfaces = usb_dev->actconfig->desc.bNumInterfaces;
694 usb_dbg(usbatm, "%s entered\n", __func__);
696 if (usb_dev->descriptor.bDeviceClass != USB_CLASS_VENDOR_SPEC) {
697 usb_dbg(usbatm, "%s: wrong device class %d\n", __func__, usb_dev->descriptor.bDeviceClass);
701 /* claim all interfaces */
703 for (i=0; i < num_interfaces; i++) {
704 cur_intf = usb_ifnum_to_if(usb_dev, i);
706 if ((i != ifnum) && cur_intf) {
707 ret = usb_driver_claim_interface(&speedtch_usb_driver, cur_intf, usbatm);
710 usb_dbg(usbatm, "%s: failed to claim interface %d (%d)\n", __func__, i, ret);
711 speedtch_release_interfaces(usb_dev, i);
717 instance = kmalloc(sizeof(*instance), GFP_KERNEL);
720 usb_dbg(usbatm, "%s: no memory for instance data!\n", __func__);
725 memset(instance, 0, sizeof(struct speedtch_instance_data));
727 instance->usbatm = usbatm;
729 INIT_WORK(&instance->status_checker, (void *)speedtch_check_status, instance);
731 instance->status_checker.timer.function = speedtch_status_poll;
732 instance->status_checker.timer.data = (unsigned long)instance;
733 instance->poll_delay = MIN_POLL_DELAY;
735 init_timer(&instance->resubmit_timer);
736 instance->resubmit_timer.function = speedtch_resubmit_int;
737 instance->resubmit_timer.data = (unsigned long)instance;
739 instance->int_urb = usb_alloc_urb(0, GFP_KERNEL);
741 if (instance->int_urb)
742 usb_fill_int_urb(instance->int_urb, usb_dev,
743 usb_rcvintpipe(usb_dev, ENDPOINT_INT),
744 instance->int_data, sizeof(instance->int_data),
745 speedtch_handle_int, instance, 50);
747 usb_dbg(usbatm, "%s: no memory for interrupt urb!\n", __func__);
749 /* check whether the modem already seems to be alive */
750 ret = usb_control_msg(usb_dev, usb_rcvctrlpipe(usb_dev, 0),
751 0x12, 0xc0, 0x07, 0x00,
752 instance->scratch_buffer + OFFSET_7, SIZE_7, 500);
754 *need_heavy_init = (ret != SIZE_7);
756 usb_dbg(usbatm, "%s: firmware %s loaded\n", __func__, need_heavy_init ? "not" : "already");
758 if (*need_heavy_init)
759 if ((ret = usb_reset_device(usb_dev)) < 0)
762 usbatm->driver_data = instance;
767 usb_free_urb(instance->int_urb);
770 speedtch_release_interfaces(usb_dev, num_interfaces);
774 static void speedtch_unbind(struct usbatm_data *usbatm, struct usb_interface *intf)
776 struct usb_device *usb_dev = interface_to_usbdev(intf);
777 struct speedtch_instance_data *instance = usbatm->driver_data;
779 usb_dbg(usbatm, "%s entered\n", __func__);
781 speedtch_release_interfaces(usb_dev, usb_dev->actconfig->desc.bNumInterfaces);
782 usb_free_urb(instance->int_urb);
791 static struct usbatm_driver speedtch_usbatm_driver = {
792 .owner = THIS_MODULE,
793 .driver_name = speedtch_driver_name,
794 .bind = speedtch_bind,
795 .heavy_init = speedtch_heavy_init,
796 .unbind = speedtch_unbind,
797 .atm_start = speedtch_atm_start,
798 .atm_stop = speedtch_atm_stop,
803 static int speedtch_usb_probe(struct usb_interface *intf, const struct usb_device_id *id)
805 return usbatm_usb_probe(intf, id, &speedtch_usbatm_driver);
808 static int __init speedtch_usb_init(void)
810 dbg("%s: driver version %s", __func__, DRIVER_VERSION);
812 return usb_register(&speedtch_usb_driver);
815 static void __exit speedtch_usb_cleanup(void)
819 usb_deregister(&speedtch_usb_driver);
822 module_init(speedtch_usb_init);
823 module_exit(speedtch_usb_cleanup);
825 MODULE_AUTHOR(DRIVER_AUTHOR);
826 MODULE_DESCRIPTION(DRIVER_DESC);
827 MODULE_LICENSE("GPL");
828 MODULE_VERSION(DRIVER_VERSION);