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