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