Daniel Drake | 66bb42f | 2007-11-19 16:20:12 +0000 | [diff] [blame] | 1 | /* ZD1211 USB-WLAN driver for Linux |
| 2 | * |
| 3 | * Copyright (C) 2005-2007 Ulrich Kunitz <kune@deine-taler.de> |
| 4 | * Copyright (C) 2006-2007 Daniel Drake <dsd@gentoo.org> |
| 5 | * Copyright (C) 2006-2007 Michael Wu <flamingice@sourmilk.net> |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 6 | * |
| 7 | * This program is free software; you can redistribute it and/or modify |
| 8 | * it under the terms of the GNU General Public License as published by |
| 9 | * the Free Software Foundation; either version 2 of the License, or |
| 10 | * (at your option) any later version. |
| 11 | * |
| 12 | * This program is distributed in the hope that it will be useful, |
| 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 15 | * GNU General Public License for more details. |
| 16 | * |
| 17 | * You should have received a copy of the GNU General Public License |
| 18 | * along with this program; if not, write to the Free Software |
| 19 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 20 | */ |
| 21 | |
Daniel Drake | d066c21 | 2006-08-12 17:59:59 +0100 | [diff] [blame] | 22 | #include <linux/kernel.h> |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 23 | #include <linux/init.h> |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 24 | #include <linux/firmware.h> |
| 25 | #include <linux/device.h> |
| 26 | #include <linux/errno.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 27 | #include <linux/slab.h> |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 28 | #include <linux/skbuff.h> |
| 29 | #include <linux/usb.h> |
Ulrich Kunitz | bc5f06a | 2006-09-13 02:42:12 +0100 | [diff] [blame] | 30 | #include <linux/workqueue.h> |
Daniel Drake | 459c51a | 2007-11-19 15:00:29 +0000 | [diff] [blame] | 31 | #include <net/mac80211.h> |
Al Viro | c248725 | 2007-07-15 21:00:21 +0100 | [diff] [blame] | 32 | #include <asm/unaligned.h> |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 33 | |
| 34 | #include "zd_def.h" |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 35 | #include "zd_mac.h" |
| 36 | #include "zd_usb.h" |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 37 | |
| 38 | static struct usb_device_id usb_ids[] = { |
| 39 | /* ZD1211 */ |
Hin-Tak Leung | 3bfbe80 | 2009-06-18 03:53:26 +0100 | [diff] [blame] | 40 | { USB_DEVICE(0x0105, 0x145f), .driver_info = DEVICE_ZD1211 }, |
| 41 | { USB_DEVICE(0x0586, 0x3401), .driver_info = DEVICE_ZD1211 }, |
| 42 | { USB_DEVICE(0x0586, 0x3402), .driver_info = DEVICE_ZD1211 }, |
| 43 | { USB_DEVICE(0x0586, 0x3407), .driver_info = DEVICE_ZD1211 }, |
| 44 | { USB_DEVICE(0x0586, 0x3409), .driver_info = DEVICE_ZD1211 }, |
| 45 | { USB_DEVICE(0x079b, 0x004a), .driver_info = DEVICE_ZD1211 }, |
| 46 | { USB_DEVICE(0x07b8, 0x6001), .driver_info = DEVICE_ZD1211 }, |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 47 | { USB_DEVICE(0x0ace, 0x1211), .driver_info = DEVICE_ZD1211 }, |
Hin-Tak Leung | 14990c6 | 2009-02-08 02:13:56 +0000 | [diff] [blame] | 48 | { USB_DEVICE(0x0ace, 0xa211), .driver_info = DEVICE_ZD1211 }, |
Hin-Tak Leung | 3bfbe80 | 2009-06-18 03:53:26 +0100 | [diff] [blame] | 49 | { USB_DEVICE(0x0b05, 0x170c), .driver_info = DEVICE_ZD1211 }, |
| 50 | { USB_DEVICE(0x0b3b, 0x1630), .driver_info = DEVICE_ZD1211 }, |
| 51 | { USB_DEVICE(0x0b3b, 0x5630), .driver_info = DEVICE_ZD1211 }, |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 52 | { USB_DEVICE(0x0df6, 0x9071), .driver_info = DEVICE_ZD1211 }, |
Matthew Davidson | aa1d3a1 | 2007-05-01 17:14:30 +0100 | [diff] [blame] | 53 | { USB_DEVICE(0x0df6, 0x9075), .driver_info = DEVICE_ZD1211 }, |
Hin-Tak Leung | 3bfbe80 | 2009-06-18 03:53:26 +0100 | [diff] [blame] | 54 | { USB_DEVICE(0x126f, 0xa006), .driver_info = DEVICE_ZD1211 }, |
Ulrich Kunitz | ababda0 | 2007-09-01 22:40:32 +0100 | [diff] [blame] | 55 | { USB_DEVICE(0x129b, 0x1666), .driver_info = DEVICE_ZD1211 }, |
Hin-Tak Leung | 3bfbe80 | 2009-06-18 03:53:26 +0100 | [diff] [blame] | 56 | { USB_DEVICE(0x13b1, 0x001e), .driver_info = DEVICE_ZD1211 }, |
| 57 | { USB_DEVICE(0x1435, 0x0711), .driver_info = DEVICE_ZD1211 }, |
maximilian attems | 8cecc90 | 2010-11-02 23:10:12 +0100 | [diff] [blame] | 58 | { USB_DEVICE(0x14ea, 0xab10), .driver_info = DEVICE_ZD1211 }, |
Hin-Tak Leung | 3bfbe80 | 2009-06-18 03:53:26 +0100 | [diff] [blame] | 59 | { USB_DEVICE(0x14ea, 0xab13), .driver_info = DEVICE_ZD1211 }, |
Daniel Drake | 269fca0 | 2007-11-19 15:29:24 +0000 | [diff] [blame] | 60 | { USB_DEVICE(0x157e, 0x300a), .driver_info = DEVICE_ZD1211 }, |
Hin-Tak Leung | 3bfbe80 | 2009-06-18 03:53:26 +0100 | [diff] [blame] | 61 | { USB_DEVICE(0x157e, 0x300b), .driver_info = DEVICE_ZD1211 }, |
| 62 | { USB_DEVICE(0x157e, 0x3204), .driver_info = DEVICE_ZD1211 }, |
Tõnu Samuel | 9011cd2 | 2011-03-12 11:29:25 +0200 | [diff] [blame] | 63 | { USB_DEVICE(0x157e, 0x3207), .driver_info = DEVICE_ZD1211 }, |
Hin-Tak Leung | 3bfbe80 | 2009-06-18 03:53:26 +0100 | [diff] [blame] | 64 | { USB_DEVICE(0x1740, 0x2000), .driver_info = DEVICE_ZD1211 }, |
| 65 | { USB_DEVICE(0x6891, 0xa727), .driver_info = DEVICE_ZD1211 }, |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 66 | /* ZD1211B */ |
Ulrich Kunitz | 019a675 | 2007-05-01 17:13:51 +0100 | [diff] [blame] | 67 | { USB_DEVICE(0x0053, 0x5301), .driver_info = DEVICE_ZD1211B }, |
Hin-Tak Leung | ad580db | 2010-01-18 01:24:11 +0000 | [diff] [blame] | 68 | { USB_DEVICE(0x0409, 0x0248), .driver_info = DEVICE_ZD1211B }, |
Daniel Drake | 93f510b | 2007-07-01 18:22:21 +0100 | [diff] [blame] | 69 | { USB_DEVICE(0x0411, 0x00da), .driver_info = DEVICE_ZD1211B }, |
Hin-Tak Leung | 3bfbe80 | 2009-06-18 03:53:26 +0100 | [diff] [blame] | 70 | { USB_DEVICE(0x0471, 0x1236), .driver_info = DEVICE_ZD1211B }, |
Daniel Drake | 61ef606 | 2007-10-07 16:24:26 +0100 | [diff] [blame] | 71 | { USB_DEVICE(0x0471, 0x1237), .driver_info = DEVICE_ZD1211B }, |
Hin-Tak Leung | 3bfbe80 | 2009-06-18 03:53:26 +0100 | [diff] [blame] | 72 | { USB_DEVICE(0x050d, 0x705c), .driver_info = DEVICE_ZD1211B }, |
| 73 | { USB_DEVICE(0x054c, 0x0257), .driver_info = DEVICE_ZD1211B }, |
| 74 | { USB_DEVICE(0x0586, 0x340a), .driver_info = DEVICE_ZD1211B }, |
| 75 | { USB_DEVICE(0x0586, 0x340f), .driver_info = DEVICE_ZD1211B }, |
| 76 | { USB_DEVICE(0x0586, 0x3410), .driver_info = DEVICE_ZD1211B }, |
| 77 | { USB_DEVICE(0x0586, 0x3412), .driver_info = DEVICE_ZD1211B }, |
| 78 | { USB_DEVICE(0x0586, 0x3413), .driver_info = DEVICE_ZD1211B }, |
| 79 | { USB_DEVICE(0x079b, 0x0062), .driver_info = DEVICE_ZD1211B }, |
Pascal Terjan | b4b223c | 2009-06-18 17:54:03 +0200 | [diff] [blame] | 80 | { USB_DEVICE(0x07b8, 0x6001), .driver_info = DEVICE_ZD1211B }, |
Hin-Tak Leung | 3bfbe80 | 2009-06-18 03:53:26 +0100 | [diff] [blame] | 81 | { USB_DEVICE(0x07fa, 0x1196), .driver_info = DEVICE_ZD1211B }, |
| 82 | { USB_DEVICE(0x083a, 0x4505), .driver_info = DEVICE_ZD1211B }, |
Hin-Tak Leung | 8f75e07 | 2009-07-13 23:20:37 +0100 | [diff] [blame] | 83 | { USB_DEVICE(0x083a, 0xe501), .driver_info = DEVICE_ZD1211B }, |
Hin-Tak Leung | 3bfbe80 | 2009-06-18 03:53:26 +0100 | [diff] [blame] | 84 | { USB_DEVICE(0x083a, 0xe503), .driver_info = DEVICE_ZD1211B }, |
| 85 | { USB_DEVICE(0x083a, 0xe506), .driver_info = DEVICE_ZD1211B }, |
| 86 | { USB_DEVICE(0x0ace, 0x1215), .driver_info = DEVICE_ZD1211B }, |
| 87 | { USB_DEVICE(0x0ace, 0xb215), .driver_info = DEVICE_ZD1211B }, |
| 88 | { USB_DEVICE(0x0b05, 0x171b), .driver_info = DEVICE_ZD1211B }, |
| 89 | { USB_DEVICE(0x0baf, 0x0121), .driver_info = DEVICE_ZD1211B }, |
| 90 | { USB_DEVICE(0x0cde, 0x001a), .driver_info = DEVICE_ZD1211B }, |
| 91 | { USB_DEVICE(0x0df6, 0x0036), .driver_info = DEVICE_ZD1211B }, |
| 92 | { USB_DEVICE(0x129b, 0x1667), .driver_info = DEVICE_ZD1211B }, |
| 93 | { USB_DEVICE(0x13b1, 0x0024), .driver_info = DEVICE_ZD1211B }, |
| 94 | { USB_DEVICE(0x157e, 0x300d), .driver_info = DEVICE_ZD1211B }, |
| 95 | { USB_DEVICE(0x1582, 0x6003), .driver_info = DEVICE_ZD1211B }, |
| 96 | { USB_DEVICE(0x2019, 0x5303), .driver_info = DEVICE_ZD1211B }, |
maximilian attems | 8cecc90 | 2010-11-02 23:10:12 +0100 | [diff] [blame] | 97 | { USB_DEVICE(0x2019, 0xed01), .driver_info = DEVICE_ZD1211B }, |
Daniel Drake | a1030e9 | 2006-08-13 12:15:29 +0100 | [diff] [blame] | 98 | /* "Driverless" devices that need ejecting */ |
| 99 | { USB_DEVICE(0x0ace, 0x2011), .driver_info = DEVICE_INSTALLER }, |
Matthew Davidson | aa1d3a1 | 2007-05-01 17:14:30 +0100 | [diff] [blame] | 100 | { USB_DEVICE(0x0ace, 0x20ff), .driver_info = DEVICE_INSTALLER }, |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 101 | {} |
| 102 | }; |
| 103 | |
| 104 | MODULE_LICENSE("GPL"); |
| 105 | MODULE_DESCRIPTION("USB driver for devices with the ZD1211 chip."); |
| 106 | MODULE_AUTHOR("Ulrich Kunitz"); |
| 107 | MODULE_AUTHOR("Daniel Drake"); |
| 108 | MODULE_VERSION("1.0"); |
| 109 | MODULE_DEVICE_TABLE(usb, usb_ids); |
| 110 | |
| 111 | #define FW_ZD1211_PREFIX "zd1211/zd1211_" |
| 112 | #define FW_ZD1211B_PREFIX "zd1211/zd1211b_" |
| 113 | |
Jussi Kivilinna | c900eff | 2011-06-20 14:42:44 +0300 | [diff] [blame] | 114 | static bool check_read_regs(struct zd_usb *usb, struct usb_req_read_regs *req, |
| 115 | unsigned int count); |
| 116 | |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 117 | /* USB device initialization */ |
Luis Carlos Cobo | 72e77a8 | 2008-03-03 12:32:15 -0800 | [diff] [blame] | 118 | static void int_urb_complete(struct urb *urb); |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 119 | |
| 120 | static int request_fw_file( |
| 121 | const struct firmware **fw, const char *name, struct device *device) |
| 122 | { |
| 123 | int r; |
| 124 | |
| 125 | dev_dbg_f(device, "fw name %s\n", name); |
| 126 | |
| 127 | r = request_firmware(fw, name, device); |
| 128 | if (r) |
| 129 | dev_err(device, |
| 130 | "Could not load firmware file %s. Error number %d\n", |
| 131 | name, r); |
| 132 | return r; |
| 133 | } |
| 134 | |
| 135 | static inline u16 get_bcdDevice(const struct usb_device *udev) |
| 136 | { |
| 137 | return le16_to_cpu(udev->descriptor.bcdDevice); |
| 138 | } |
| 139 | |
| 140 | enum upload_code_flags { |
| 141 | REBOOT = 1, |
| 142 | }; |
| 143 | |
| 144 | /* Ensures that MAX_TRANSFER_SIZE is even. */ |
| 145 | #define MAX_TRANSFER_SIZE (USB_MAX_TRANSFER_SIZE & ~1) |
| 146 | |
| 147 | static int upload_code(struct usb_device *udev, |
| 148 | const u8 *data, size_t size, u16 code_offset, int flags) |
| 149 | { |
| 150 | u8 *p; |
| 151 | int r; |
| 152 | |
| 153 | /* USB request blocks need "kmalloced" buffers. |
| 154 | */ |
| 155 | p = kmalloc(MAX_TRANSFER_SIZE, GFP_KERNEL); |
| 156 | if (!p) { |
| 157 | dev_err(&udev->dev, "out of memory\n"); |
| 158 | r = -ENOMEM; |
| 159 | goto error; |
| 160 | } |
| 161 | |
| 162 | size &= ~1; |
| 163 | while (size > 0) { |
| 164 | size_t transfer_size = size <= MAX_TRANSFER_SIZE ? |
| 165 | size : MAX_TRANSFER_SIZE; |
| 166 | |
| 167 | dev_dbg_f(&udev->dev, "transfer size %zu\n", transfer_size); |
| 168 | |
| 169 | memcpy(p, data, transfer_size); |
| 170 | r = usb_control_msg(udev, usb_sndctrlpipe(udev, 0), |
| 171 | USB_REQ_FIRMWARE_DOWNLOAD, |
| 172 | USB_DIR_OUT | USB_TYPE_VENDOR, |
| 173 | code_offset, 0, p, transfer_size, 1000 /* ms */); |
| 174 | if (r < 0) { |
| 175 | dev_err(&udev->dev, |
| 176 | "USB control request for firmware upload" |
| 177 | " failed. Error number %d\n", r); |
| 178 | goto error; |
| 179 | } |
| 180 | transfer_size = r & ~1; |
| 181 | |
| 182 | size -= transfer_size; |
| 183 | data += transfer_size; |
| 184 | code_offset += transfer_size/sizeof(u16); |
| 185 | } |
| 186 | |
| 187 | if (flags & REBOOT) { |
| 188 | u8 ret; |
| 189 | |
Atsushi Nemoto | a8c4ea7 | 2008-05-16 17:27:05 +0900 | [diff] [blame] | 190 | /* Use "DMA-aware" buffer. */ |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 191 | r = usb_control_msg(udev, usb_rcvctrlpipe(udev, 0), |
| 192 | USB_REQ_FIRMWARE_CONFIRM, |
| 193 | USB_DIR_IN | USB_TYPE_VENDOR, |
Atsushi Nemoto | a8c4ea7 | 2008-05-16 17:27:05 +0900 | [diff] [blame] | 194 | 0, 0, p, sizeof(ret), 5000 /* ms */); |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 195 | if (r != sizeof(ret)) { |
| 196 | dev_err(&udev->dev, |
| 197 | "control request firmeware confirmation failed." |
| 198 | " Return value %d\n", r); |
| 199 | if (r >= 0) |
| 200 | r = -ENODEV; |
| 201 | goto error; |
| 202 | } |
Atsushi Nemoto | a8c4ea7 | 2008-05-16 17:27:05 +0900 | [diff] [blame] | 203 | ret = p[0]; |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 204 | if (ret & 0x80) { |
| 205 | dev_err(&udev->dev, |
| 206 | "Internal error while downloading." |
| 207 | " Firmware confirm return value %#04x\n", |
| 208 | (unsigned int)ret); |
| 209 | r = -ENODEV; |
| 210 | goto error; |
| 211 | } |
| 212 | dev_dbg_f(&udev->dev, "firmware confirm return value %#04x\n", |
| 213 | (unsigned int)ret); |
| 214 | } |
| 215 | |
| 216 | r = 0; |
| 217 | error: |
| 218 | kfree(p); |
| 219 | return r; |
| 220 | } |
| 221 | |
| 222 | static u16 get_word(const void *data, u16 offset) |
| 223 | { |
| 224 | const __le16 *p = data; |
| 225 | return le16_to_cpu(p[offset]); |
| 226 | } |
| 227 | |
Daniel Drake | 74553ae | 2007-07-01 18:22:32 +0100 | [diff] [blame] | 228 | static char *get_fw_name(struct zd_usb *usb, char *buffer, size_t size, |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 229 | const char* postfix) |
| 230 | { |
| 231 | scnprintf(buffer, size, "%s%s", |
Daniel Drake | 74553ae | 2007-07-01 18:22:32 +0100 | [diff] [blame] | 232 | usb->is_zd1211b ? |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 233 | FW_ZD1211B_PREFIX : FW_ZD1211_PREFIX, |
| 234 | postfix); |
| 235 | return buffer; |
| 236 | } |
| 237 | |
Daniel Drake | 74553ae | 2007-07-01 18:22:32 +0100 | [diff] [blame] | 238 | static int handle_version_mismatch(struct zd_usb *usb, |
Daniel Drake | d066c21 | 2006-08-12 17:59:59 +0100 | [diff] [blame] | 239 | const struct firmware *ub_fw) |
| 240 | { |
Daniel Drake | 74553ae | 2007-07-01 18:22:32 +0100 | [diff] [blame] | 241 | struct usb_device *udev = zd_usb_to_usbdev(usb); |
Daniel Drake | d066c21 | 2006-08-12 17:59:59 +0100 | [diff] [blame] | 242 | const struct firmware *ur_fw = NULL; |
| 243 | int offset; |
| 244 | int r = 0; |
| 245 | char fw_name[128]; |
| 246 | |
| 247 | r = request_fw_file(&ur_fw, |
Daniel Drake | 74553ae | 2007-07-01 18:22:32 +0100 | [diff] [blame] | 248 | get_fw_name(usb, fw_name, sizeof(fw_name), "ur"), |
Daniel Drake | d066c21 | 2006-08-12 17:59:59 +0100 | [diff] [blame] | 249 | &udev->dev); |
| 250 | if (r) |
| 251 | goto error; |
| 252 | |
Daniel Drake | ee30276 | 2006-12-12 01:25:52 +0000 | [diff] [blame] | 253 | r = upload_code(udev, ur_fw->data, ur_fw->size, FW_START, REBOOT); |
Daniel Drake | d066c21 | 2006-08-12 17:59:59 +0100 | [diff] [blame] | 254 | if (r) |
| 255 | goto error; |
| 256 | |
Daniel Drake | ee30276 | 2006-12-12 01:25:52 +0000 | [diff] [blame] | 257 | offset = (E2P_BOOT_CODE_OFFSET * sizeof(u16)); |
Daniel Drake | d066c21 | 2006-08-12 17:59:59 +0100 | [diff] [blame] | 258 | r = upload_code(udev, ub_fw->data + offset, ub_fw->size - offset, |
Daniel Drake | ee30276 | 2006-12-12 01:25:52 +0000 | [diff] [blame] | 259 | E2P_START + E2P_BOOT_CODE_OFFSET, REBOOT); |
Daniel Drake | d066c21 | 2006-08-12 17:59:59 +0100 | [diff] [blame] | 260 | |
| 261 | /* At this point, the vendor driver downloads the whole firmware |
| 262 | * image, hacks around with version IDs, and uploads it again, |
| 263 | * completely overwriting the boot code. We do not do this here as |
| 264 | * it is not required on any tested devices, and it is suspected to |
| 265 | * cause problems. */ |
| 266 | error: |
| 267 | release_firmware(ur_fw); |
| 268 | return r; |
| 269 | } |
| 270 | |
Daniel Drake | 74553ae | 2007-07-01 18:22:32 +0100 | [diff] [blame] | 271 | static int upload_firmware(struct zd_usb *usb) |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 272 | { |
| 273 | int r; |
| 274 | u16 fw_bcdDevice; |
| 275 | u16 bcdDevice; |
Daniel Drake | 74553ae | 2007-07-01 18:22:32 +0100 | [diff] [blame] | 276 | struct usb_device *udev = zd_usb_to_usbdev(usb); |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 277 | const struct firmware *ub_fw = NULL; |
| 278 | const struct firmware *uph_fw = NULL; |
| 279 | char fw_name[128]; |
| 280 | |
| 281 | bcdDevice = get_bcdDevice(udev); |
| 282 | |
| 283 | r = request_fw_file(&ub_fw, |
Daniel Drake | 74553ae | 2007-07-01 18:22:32 +0100 | [diff] [blame] | 284 | get_fw_name(usb, fw_name, sizeof(fw_name), "ub"), |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 285 | &udev->dev); |
| 286 | if (r) |
| 287 | goto error; |
| 288 | |
Daniel Drake | ee30276 | 2006-12-12 01:25:52 +0000 | [diff] [blame] | 289 | fw_bcdDevice = get_word(ub_fw->data, E2P_DATA_OFFSET); |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 290 | |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 291 | if (fw_bcdDevice != bcdDevice) { |
| 292 | dev_info(&udev->dev, |
Daniel Drake | d066c21 | 2006-08-12 17:59:59 +0100 | [diff] [blame] | 293 | "firmware version %#06x and device bootcode version " |
| 294 | "%#06x differ\n", fw_bcdDevice, bcdDevice); |
| 295 | if (bcdDevice <= 0x4313) |
| 296 | dev_warn(&udev->dev, "device has old bootcode, please " |
| 297 | "report success or failure\n"); |
| 298 | |
Daniel Drake | 74553ae | 2007-07-01 18:22:32 +0100 | [diff] [blame] | 299 | r = handle_version_mismatch(usb, ub_fw); |
Daniel Drake | d066c21 | 2006-08-12 17:59:59 +0100 | [diff] [blame] | 300 | if (r) |
| 301 | goto error; |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 302 | } else { |
| 303 | dev_dbg_f(&udev->dev, |
| 304 | "firmware device id %#06x is equal to the " |
| 305 | "actual device id\n", fw_bcdDevice); |
| 306 | } |
| 307 | |
| 308 | |
| 309 | r = request_fw_file(&uph_fw, |
Daniel Drake | 74553ae | 2007-07-01 18:22:32 +0100 | [diff] [blame] | 310 | get_fw_name(usb, fw_name, sizeof(fw_name), "uphr"), |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 311 | &udev->dev); |
| 312 | if (r) |
| 313 | goto error; |
| 314 | |
Daniel Drake | ee30276 | 2006-12-12 01:25:52 +0000 | [diff] [blame] | 315 | r = upload_code(udev, uph_fw->data, uph_fw->size, FW_START, REBOOT); |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 316 | if (r) { |
| 317 | dev_err(&udev->dev, |
| 318 | "Could not upload firmware code uph. Error number %d\n", |
| 319 | r); |
| 320 | } |
| 321 | |
| 322 | /* FALL-THROUGH */ |
| 323 | error: |
| 324 | release_firmware(ub_fw); |
| 325 | release_firmware(uph_fw); |
| 326 | return r; |
| 327 | } |
| 328 | |
Ben Hutchings | 3e8b4d0 | 2009-11-07 22:03:22 +0000 | [diff] [blame] | 329 | MODULE_FIRMWARE(FW_ZD1211B_PREFIX "ur"); |
| 330 | MODULE_FIRMWARE(FW_ZD1211_PREFIX "ur"); |
| 331 | MODULE_FIRMWARE(FW_ZD1211B_PREFIX "ub"); |
| 332 | MODULE_FIRMWARE(FW_ZD1211_PREFIX "ub"); |
| 333 | MODULE_FIRMWARE(FW_ZD1211B_PREFIX "uphr"); |
| 334 | MODULE_FIRMWARE(FW_ZD1211_PREFIX "uphr"); |
| 335 | |
Daniel Drake | 74553ae | 2007-07-01 18:22:32 +0100 | [diff] [blame] | 336 | /* Read data from device address space using "firmware interface" which does |
| 337 | * not require firmware to be loaded. */ |
| 338 | int zd_usb_read_fw(struct zd_usb *usb, zd_addr_t addr, u8 *data, u16 len) |
| 339 | { |
| 340 | int r; |
| 341 | struct usb_device *udev = zd_usb_to_usbdev(usb); |
Atsushi Nemoto | a8c4ea7 | 2008-05-16 17:27:05 +0900 | [diff] [blame] | 342 | u8 *buf; |
Daniel Drake | 74553ae | 2007-07-01 18:22:32 +0100 | [diff] [blame] | 343 | |
Atsushi Nemoto | a8c4ea7 | 2008-05-16 17:27:05 +0900 | [diff] [blame] | 344 | /* Use "DMA-aware" buffer. */ |
| 345 | buf = kmalloc(len, GFP_KERNEL); |
| 346 | if (!buf) |
| 347 | return -ENOMEM; |
Daniel Drake | 74553ae | 2007-07-01 18:22:32 +0100 | [diff] [blame] | 348 | r = usb_control_msg(udev, usb_rcvctrlpipe(udev, 0), |
| 349 | USB_REQ_FIRMWARE_READ_DATA, USB_DIR_IN | 0x40, addr, 0, |
Atsushi Nemoto | a8c4ea7 | 2008-05-16 17:27:05 +0900 | [diff] [blame] | 350 | buf, len, 5000); |
Daniel Drake | 74553ae | 2007-07-01 18:22:32 +0100 | [diff] [blame] | 351 | if (r < 0) { |
| 352 | dev_err(&udev->dev, |
| 353 | "read over firmware interface failed: %d\n", r); |
Atsushi Nemoto | a8c4ea7 | 2008-05-16 17:27:05 +0900 | [diff] [blame] | 354 | goto exit; |
Daniel Drake | 74553ae | 2007-07-01 18:22:32 +0100 | [diff] [blame] | 355 | } else if (r != len) { |
| 356 | dev_err(&udev->dev, |
| 357 | "incomplete read over firmware interface: %d/%d\n", |
| 358 | r, len); |
Atsushi Nemoto | a8c4ea7 | 2008-05-16 17:27:05 +0900 | [diff] [blame] | 359 | r = -EIO; |
| 360 | goto exit; |
Daniel Drake | 74553ae | 2007-07-01 18:22:32 +0100 | [diff] [blame] | 361 | } |
Atsushi Nemoto | a8c4ea7 | 2008-05-16 17:27:05 +0900 | [diff] [blame] | 362 | r = 0; |
| 363 | memcpy(data, buf, len); |
| 364 | exit: |
| 365 | kfree(buf); |
| 366 | return r; |
Daniel Drake | 74553ae | 2007-07-01 18:22:32 +0100 | [diff] [blame] | 367 | } |
| 368 | |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 369 | #define urb_dev(urb) (&(urb)->dev->dev) |
| 370 | |
Jussi Kivilinna | c900eff | 2011-06-20 14:42:44 +0300 | [diff] [blame] | 371 | static inline void handle_regs_int_override(struct urb *urb) |
| 372 | { |
| 373 | struct zd_usb *usb = urb->context; |
| 374 | struct zd_usb_interrupt *intr = &usb->intr; |
| 375 | |
| 376 | spin_lock(&intr->lock); |
| 377 | if (atomic_read(&intr->read_regs_enabled)) { |
| 378 | atomic_set(&intr->read_regs_enabled, 0); |
| 379 | intr->read_regs_int_overridden = 1; |
| 380 | complete(&intr->read_regs.completion); |
| 381 | } |
| 382 | spin_unlock(&intr->lock); |
| 383 | } |
| 384 | |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 385 | static inline void handle_regs_int(struct urb *urb) |
| 386 | { |
| 387 | struct zd_usb *usb = urb->context; |
| 388 | struct zd_usb_interrupt *intr = &usb->intr; |
| 389 | int len; |
Luis Carlos Cobo | 72e77a8 | 2008-03-03 12:32:15 -0800 | [diff] [blame] | 390 | u16 int_num; |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 391 | |
| 392 | ZD_ASSERT(in_interrupt()); |
| 393 | spin_lock(&intr->lock); |
| 394 | |
Al Viro | d63ddce | 2008-05-21 01:34:30 +0100 | [diff] [blame] | 395 | int_num = le16_to_cpu(*(__le16 *)(urb->transfer_buffer+2)); |
Luis Carlos Cobo | 72e77a8 | 2008-03-03 12:32:15 -0800 | [diff] [blame] | 396 | if (int_num == CR_INTERRUPT) { |
| 397 | struct zd_mac *mac = zd_hw_mac(zd_usb_to_hw(urb->context)); |
Jussi Kivilinna | 8b17f75 | 2011-01-31 20:47:27 +0200 | [diff] [blame] | 398 | spin_lock(&mac->lock); |
Luis Carlos Cobo | 72e77a8 | 2008-03-03 12:32:15 -0800 | [diff] [blame] | 399 | memcpy(&mac->intr_buffer, urb->transfer_buffer, |
| 400 | USB_MAX_EP_INT_BUFFER); |
Jussi Kivilinna | 8b17f75 | 2011-01-31 20:47:27 +0200 | [diff] [blame] | 401 | spin_unlock(&mac->lock); |
Luis Carlos Cobo | 72e77a8 | 2008-03-03 12:32:15 -0800 | [diff] [blame] | 402 | schedule_work(&mac->process_intr); |
Jussi Kivilinna | c900eff | 2011-06-20 14:42:44 +0300 | [diff] [blame] | 403 | } else if (atomic_read(&intr->read_regs_enabled)) { |
| 404 | len = urb->actual_length; |
| 405 | intr->read_regs.length = urb->actual_length; |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 406 | if (len > sizeof(intr->read_regs.buffer)) |
| 407 | len = sizeof(intr->read_regs.buffer); |
Jussi Kivilinna | c900eff | 2011-06-20 14:42:44 +0300 | [diff] [blame] | 408 | |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 409 | memcpy(intr->read_regs.buffer, urb->transfer_buffer, len); |
Jussi Kivilinna | c900eff | 2011-06-20 14:42:44 +0300 | [diff] [blame] | 410 | |
| 411 | /* Sometimes USB_INT_ID_REGS is not overridden, but comes after |
| 412 | * USB_INT_ID_RETRY_FAILED. Read-reg retry then gets this |
| 413 | * delayed USB_INT_ID_REGS, but leaves USB_INT_ID_REGS of |
| 414 | * retry unhandled. Next read-reg command then might catch |
| 415 | * this wrong USB_INT_ID_REGS. Fix by ignoring wrong reads. |
| 416 | */ |
| 417 | if (!check_read_regs(usb, intr->read_regs.req, |
| 418 | intr->read_regs.req_count)) |
| 419 | goto out; |
| 420 | |
| 421 | atomic_set(&intr->read_regs_enabled, 0); |
| 422 | intr->read_regs_int_overridden = 0; |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 423 | complete(&intr->read_regs.completion); |
Jussi Kivilinna | c900eff | 2011-06-20 14:42:44 +0300 | [diff] [blame] | 424 | |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 425 | goto out; |
| 426 | } |
| 427 | |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 428 | out: |
| 429 | spin_unlock(&intr->lock); |
Jussi Kivilinna | c900eff | 2011-06-20 14:42:44 +0300 | [diff] [blame] | 430 | |
| 431 | /* CR_INTERRUPT might override read_reg too. */ |
| 432 | if (int_num == CR_INTERRUPT && atomic_read(&intr->read_regs_enabled)) |
| 433 | handle_regs_int_override(urb); |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 434 | } |
| 435 | |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 436 | static void int_urb_complete(struct urb *urb) |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 437 | { |
| 438 | int r; |
| 439 | struct usb_int_header *hdr; |
Jussi Kivilinna | c900eff | 2011-06-20 14:42:44 +0300 | [diff] [blame] | 440 | struct zd_usb *usb; |
| 441 | struct zd_usb_interrupt *intr; |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 442 | |
| 443 | switch (urb->status) { |
| 444 | case 0: |
| 445 | break; |
| 446 | case -ESHUTDOWN: |
| 447 | case -EINVAL: |
| 448 | case -ENODEV: |
| 449 | case -ENOENT: |
| 450 | case -ECONNRESET: |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 451 | case -EPIPE: |
Jussi Kivilinna | 24d24c6 | 2011-01-31 20:50:31 +0200 | [diff] [blame] | 452 | dev_dbg_f(urb_dev(urb), "urb %p error %d\n", urb, urb->status); |
Jussi Kivilinna | 4a3b087 | 2011-01-31 20:49:24 +0200 | [diff] [blame] | 453 | return; |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 454 | default: |
Jussi Kivilinna | 24d24c6 | 2011-01-31 20:50:31 +0200 | [diff] [blame] | 455 | dev_dbg_f(urb_dev(urb), "urb %p error %d\n", urb, urb->status); |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 456 | goto resubmit; |
| 457 | } |
| 458 | |
| 459 | if (urb->actual_length < sizeof(hdr)) { |
| 460 | dev_dbg_f(urb_dev(urb), "error: urb %p to small\n", urb); |
| 461 | goto resubmit; |
| 462 | } |
| 463 | |
| 464 | hdr = urb->transfer_buffer; |
| 465 | if (hdr->type != USB_INT_TYPE) { |
| 466 | dev_dbg_f(urb_dev(urb), "error: urb %p wrong type\n", urb); |
| 467 | goto resubmit; |
| 468 | } |
| 469 | |
Jussi Kivilinna | c900eff | 2011-06-20 14:42:44 +0300 | [diff] [blame] | 470 | /* USB_INT_ID_RETRY_FAILED triggered by tx-urb submit can override |
| 471 | * pending USB_INT_ID_REGS causing read command timeout. |
| 472 | */ |
| 473 | usb = urb->context; |
| 474 | intr = &usb->intr; |
| 475 | if (hdr->id != USB_INT_ID_REGS && atomic_read(&intr->read_regs_enabled)) |
| 476 | handle_regs_int_override(urb); |
| 477 | |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 478 | switch (hdr->id) { |
| 479 | case USB_INT_ID_REGS: |
| 480 | handle_regs_int(urb); |
| 481 | break; |
| 482 | case USB_INT_ID_RETRY_FAILED: |
Benoit PAPILLAULT | 7f4013f | 2009-10-22 12:04:52 +0200 | [diff] [blame] | 483 | zd_mac_tx_failed(urb); |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 484 | break; |
| 485 | default: |
| 486 | dev_dbg_f(urb_dev(urb), "error: urb %p unknown id %x\n", urb, |
| 487 | (unsigned int)hdr->id); |
| 488 | goto resubmit; |
| 489 | } |
| 490 | |
| 491 | resubmit: |
| 492 | r = usb_submit_urb(urb, GFP_ATOMIC); |
| 493 | if (r) { |
Jussi Kivilinna | 4a3b087 | 2011-01-31 20:49:24 +0200 | [diff] [blame] | 494 | dev_dbg_f(urb_dev(urb), "error: resubmit urb %p err code %d\n", |
| 495 | urb, r); |
| 496 | /* TODO: add worker to reset intr->urb */ |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 497 | } |
| 498 | return; |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 499 | } |
| 500 | |
| 501 | static inline int int_urb_interval(struct usb_device *udev) |
| 502 | { |
| 503 | switch (udev->speed) { |
| 504 | case USB_SPEED_HIGH: |
| 505 | return 4; |
| 506 | case USB_SPEED_LOW: |
| 507 | return 10; |
| 508 | case USB_SPEED_FULL: |
| 509 | default: |
| 510 | return 1; |
| 511 | } |
| 512 | } |
| 513 | |
| 514 | static inline int usb_int_enabled(struct zd_usb *usb) |
| 515 | { |
| 516 | unsigned long flags; |
| 517 | struct zd_usb_interrupt *intr = &usb->intr; |
| 518 | struct urb *urb; |
| 519 | |
| 520 | spin_lock_irqsave(&intr->lock, flags); |
| 521 | urb = intr->urb; |
| 522 | spin_unlock_irqrestore(&intr->lock, flags); |
| 523 | return urb != NULL; |
| 524 | } |
| 525 | |
| 526 | int zd_usb_enable_int(struct zd_usb *usb) |
| 527 | { |
| 528 | int r; |
Jussi Kivilinna | 4a3b087 | 2011-01-31 20:49:24 +0200 | [diff] [blame] | 529 | struct usb_device *udev = zd_usb_to_usbdev(usb); |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 530 | struct zd_usb_interrupt *intr = &usb->intr; |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 531 | struct urb *urb; |
| 532 | |
| 533 | dev_dbg_f(zd_usb_dev(usb), "\n"); |
| 534 | |
Ulrich Kunitz | 35c3404 | 2007-02-18 20:28:23 +0000 | [diff] [blame] | 535 | urb = usb_alloc_urb(0, GFP_KERNEL); |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 536 | if (!urb) { |
| 537 | r = -ENOMEM; |
| 538 | goto out; |
| 539 | } |
| 540 | |
| 541 | ZD_ASSERT(!irqs_disabled()); |
| 542 | spin_lock_irq(&intr->lock); |
| 543 | if (intr->urb) { |
| 544 | spin_unlock_irq(&intr->lock); |
| 545 | r = 0; |
| 546 | goto error_free_urb; |
| 547 | } |
| 548 | intr->urb = urb; |
| 549 | spin_unlock_irq(&intr->lock); |
| 550 | |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 551 | r = -ENOMEM; |
Jussi Kivilinna | 4a3b087 | 2011-01-31 20:49:24 +0200 | [diff] [blame] | 552 | intr->buffer = usb_alloc_coherent(udev, USB_MAX_EP_INT_BUFFER, |
| 553 | GFP_KERNEL, &intr->buffer_dma); |
| 554 | if (!intr->buffer) { |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 555 | dev_dbg_f(zd_usb_dev(usb), |
| 556 | "couldn't allocate transfer_buffer\n"); |
| 557 | goto error_set_urb_null; |
| 558 | } |
| 559 | |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 560 | usb_fill_int_urb(urb, udev, usb_rcvintpipe(udev, EP_INT_IN), |
Jussi Kivilinna | 4a3b087 | 2011-01-31 20:49:24 +0200 | [diff] [blame] | 561 | intr->buffer, USB_MAX_EP_INT_BUFFER, |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 562 | int_urb_complete, usb, |
| 563 | intr->interval); |
Jussi Kivilinna | 4a3b087 | 2011-01-31 20:49:24 +0200 | [diff] [blame] | 564 | urb->transfer_dma = intr->buffer_dma; |
| 565 | urb->transfer_flags |= URB_NO_TRANSFER_DMA_MAP; |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 566 | |
| 567 | dev_dbg_f(zd_usb_dev(usb), "submit urb %p\n", intr->urb); |
Ulrich Kunitz | 35c3404 | 2007-02-18 20:28:23 +0000 | [diff] [blame] | 568 | r = usb_submit_urb(urb, GFP_KERNEL); |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 569 | if (r) { |
| 570 | dev_dbg_f(zd_usb_dev(usb), |
| 571 | "Couldn't submit urb. Error number %d\n", r); |
| 572 | goto error; |
| 573 | } |
| 574 | |
| 575 | return 0; |
| 576 | error: |
Jussi Kivilinna | 4a3b087 | 2011-01-31 20:49:24 +0200 | [diff] [blame] | 577 | usb_free_coherent(udev, USB_MAX_EP_INT_BUFFER, |
| 578 | intr->buffer, intr->buffer_dma); |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 579 | error_set_urb_null: |
| 580 | spin_lock_irq(&intr->lock); |
| 581 | intr->urb = NULL; |
| 582 | spin_unlock_irq(&intr->lock); |
| 583 | error_free_urb: |
| 584 | usb_free_urb(urb); |
| 585 | out: |
| 586 | return r; |
| 587 | } |
| 588 | |
| 589 | void zd_usb_disable_int(struct zd_usb *usb) |
| 590 | { |
| 591 | unsigned long flags; |
Jussi Kivilinna | 4a3b087 | 2011-01-31 20:49:24 +0200 | [diff] [blame] | 592 | struct usb_device *udev = zd_usb_to_usbdev(usb); |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 593 | struct zd_usb_interrupt *intr = &usb->intr; |
| 594 | struct urb *urb; |
Jussi Kivilinna | 4a3b087 | 2011-01-31 20:49:24 +0200 | [diff] [blame] | 595 | void *buffer; |
| 596 | dma_addr_t buffer_dma; |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 597 | |
| 598 | spin_lock_irqsave(&intr->lock, flags); |
| 599 | urb = intr->urb; |
| 600 | if (!urb) { |
| 601 | spin_unlock_irqrestore(&intr->lock, flags); |
| 602 | return; |
| 603 | } |
| 604 | intr->urb = NULL; |
Jussi Kivilinna | 4a3b087 | 2011-01-31 20:49:24 +0200 | [diff] [blame] | 605 | buffer = intr->buffer; |
| 606 | buffer_dma = intr->buffer_dma; |
| 607 | intr->buffer = NULL; |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 608 | spin_unlock_irqrestore(&intr->lock, flags); |
| 609 | |
| 610 | usb_kill_urb(urb); |
| 611 | dev_dbg_f(zd_usb_dev(usb), "urb %p killed\n", urb); |
| 612 | usb_free_urb(urb); |
Jussi Kivilinna | 4a3b087 | 2011-01-31 20:49:24 +0200 | [diff] [blame] | 613 | |
| 614 | if (buffer) |
| 615 | usb_free_coherent(udev, USB_MAX_EP_INT_BUFFER, |
| 616 | buffer, buffer_dma); |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 617 | } |
| 618 | |
| 619 | static void handle_rx_packet(struct zd_usb *usb, const u8 *buffer, |
| 620 | unsigned int length) |
| 621 | { |
| 622 | int i; |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 623 | const struct rx_length_info *length_info; |
| 624 | |
| 625 | if (length < sizeof(struct rx_length_info)) { |
| 626 | /* It's not a complete packet anyhow. */ |
Jussi Kivilinna | b405e1b | 2011-06-20 14:42:33 +0300 | [diff] [blame] | 627 | dev_dbg_f(zd_usb_dev(usb), "invalid, small RX packet : %d\n", |
| 628 | length); |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 629 | return; |
| 630 | } |
| 631 | length_info = (struct rx_length_info *) |
| 632 | (buffer + length - sizeof(struct rx_length_info)); |
| 633 | |
| 634 | /* It might be that three frames are merged into a single URB |
| 635 | * transaction. We have to check for the length info tag. |
| 636 | * |
| 637 | * While testing we discovered that length_info might be unaligned, |
| 638 | * because if USB transactions are merged, the last packet will not |
| 639 | * be padded. Unaligned access might also happen if the length_info |
| 640 | * structure is not present. |
| 641 | */ |
Harvey Harrison | 533dd1b | 2008-04-29 01:03:36 -0700 | [diff] [blame] | 642 | if (get_unaligned_le16(&length_info->tag) == RX_LENGTH_INFO_TAG) |
Ulrich Kunitz | b269825 | 2006-08-01 23:43:34 +0200 | [diff] [blame] | 643 | { |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 644 | unsigned int l, k, n; |
| 645 | for (i = 0, l = 0;; i++) { |
Harvey Harrison | 533dd1b | 2008-04-29 01:03:36 -0700 | [diff] [blame] | 646 | k = get_unaligned_le16(&length_info->length[i]); |
Ulrich Kunitz | 850c211 | 2006-11-22 00:06:19 +0000 | [diff] [blame] | 647 | if (k == 0) |
| 648 | return; |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 649 | n = l+k; |
| 650 | if (n > length) |
| 651 | return; |
Daniel Drake | 459c51a | 2007-11-19 15:00:29 +0000 | [diff] [blame] | 652 | zd_mac_rx(zd_usb_to_hw(usb), buffer+l, k); |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 653 | if (i >= 2) |
| 654 | return; |
| 655 | l = (n+3) & ~3; |
| 656 | } |
| 657 | } else { |
Daniel Drake | 459c51a | 2007-11-19 15:00:29 +0000 | [diff] [blame] | 658 | zd_mac_rx(zd_usb_to_hw(usb), buffer, length); |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 659 | } |
| 660 | } |
| 661 | |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 662 | static void rx_urb_complete(struct urb *urb) |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 663 | { |
Jussi Kivilinna | 24d24c6 | 2011-01-31 20:50:31 +0200 | [diff] [blame] | 664 | int r; |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 665 | struct zd_usb *usb; |
| 666 | struct zd_usb_rx *rx; |
| 667 | const u8 *buffer; |
| 668 | unsigned int length; |
| 669 | |
| 670 | switch (urb->status) { |
| 671 | case 0: |
| 672 | break; |
| 673 | case -ESHUTDOWN: |
| 674 | case -EINVAL: |
| 675 | case -ENODEV: |
| 676 | case -ENOENT: |
| 677 | case -ECONNRESET: |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 678 | case -EPIPE: |
Jussi Kivilinna | 24d24c6 | 2011-01-31 20:50:31 +0200 | [diff] [blame] | 679 | dev_dbg_f(urb_dev(urb), "urb %p error %d\n", urb, urb->status); |
Daniel Drake | b312d79 | 2006-07-05 15:57:39 +0100 | [diff] [blame] | 680 | return; |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 681 | default: |
| 682 | dev_dbg_f(urb_dev(urb), "urb %p error %d\n", urb, urb->status); |
| 683 | goto resubmit; |
| 684 | } |
| 685 | |
| 686 | buffer = urb->transfer_buffer; |
| 687 | length = urb->actual_length; |
| 688 | usb = urb->context; |
| 689 | rx = &usb->rx; |
| 690 | |
Jussi Kivilinna | 0235357 | 2011-04-01 19:34:16 +0300 | [diff] [blame] | 691 | tasklet_schedule(&rx->reset_timer_tasklet); |
Jussi Kivilinna | 1f6cccc | 2011-01-31 20:50:12 +0200 | [diff] [blame] | 692 | |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 693 | if (length%rx->usb_packet_size > rx->usb_packet_size-4) { |
| 694 | /* If there is an old first fragment, we don't care. */ |
| 695 | dev_dbg_f(urb_dev(urb), "*** first fragment ***\n"); |
| 696 | ZD_ASSERT(length <= ARRAY_SIZE(rx->fragment)); |
| 697 | spin_lock(&rx->lock); |
| 698 | memcpy(rx->fragment, buffer, length); |
| 699 | rx->fragment_length = length; |
| 700 | spin_unlock(&rx->lock); |
| 701 | goto resubmit; |
| 702 | } |
| 703 | |
| 704 | spin_lock(&rx->lock); |
| 705 | if (rx->fragment_length > 0) { |
| 706 | /* We are on a second fragment, we believe */ |
| 707 | ZD_ASSERT(length + rx->fragment_length <= |
| 708 | ARRAY_SIZE(rx->fragment)); |
| 709 | dev_dbg_f(urb_dev(urb), "*** second fragment ***\n"); |
| 710 | memcpy(rx->fragment+rx->fragment_length, buffer, length); |
| 711 | handle_rx_packet(usb, rx->fragment, |
| 712 | rx->fragment_length + length); |
| 713 | rx->fragment_length = 0; |
| 714 | spin_unlock(&rx->lock); |
| 715 | } else { |
| 716 | spin_unlock(&rx->lock); |
| 717 | handle_rx_packet(usb, buffer, length); |
| 718 | } |
| 719 | |
| 720 | resubmit: |
Jussi Kivilinna | 24d24c6 | 2011-01-31 20:50:31 +0200 | [diff] [blame] | 721 | r = usb_submit_urb(urb, GFP_ATOMIC); |
| 722 | if (r) |
| 723 | dev_dbg_f(urb_dev(urb), "urb %p resubmit error %d\n", urb, r); |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 724 | } |
| 725 | |
Daniel Drake | 459c51a | 2007-11-19 15:00:29 +0000 | [diff] [blame] | 726 | static struct urb *alloc_rx_urb(struct zd_usb *usb) |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 727 | { |
| 728 | struct usb_device *udev = zd_usb_to_usbdev(usb); |
| 729 | struct urb *urb; |
| 730 | void *buffer; |
| 731 | |
Ulrich Kunitz | 35c3404 | 2007-02-18 20:28:23 +0000 | [diff] [blame] | 732 | urb = usb_alloc_urb(0, GFP_KERNEL); |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 733 | if (!urb) |
| 734 | return NULL; |
Daniel Mack | 997ea58 | 2010-04-12 13:17:25 +0200 | [diff] [blame] | 735 | buffer = usb_alloc_coherent(udev, USB_MAX_RX_SIZE, GFP_KERNEL, |
| 736 | &urb->transfer_dma); |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 737 | if (!buffer) { |
| 738 | usb_free_urb(urb); |
| 739 | return NULL; |
| 740 | } |
| 741 | |
| 742 | usb_fill_bulk_urb(urb, udev, usb_rcvbulkpipe(udev, EP_DATA_IN), |
Daniel Mack | 997ea58 | 2010-04-12 13:17:25 +0200 | [diff] [blame] | 743 | buffer, USB_MAX_RX_SIZE, |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 744 | rx_urb_complete, usb); |
| 745 | urb->transfer_flags |= URB_NO_TRANSFER_DMA_MAP; |
| 746 | |
| 747 | return urb; |
| 748 | } |
| 749 | |
Daniel Drake | 459c51a | 2007-11-19 15:00:29 +0000 | [diff] [blame] | 750 | static void free_rx_urb(struct urb *urb) |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 751 | { |
| 752 | if (!urb) |
| 753 | return; |
Daniel Mack | 997ea58 | 2010-04-12 13:17:25 +0200 | [diff] [blame] | 754 | usb_free_coherent(urb->dev, urb->transfer_buffer_length, |
| 755 | urb->transfer_buffer, urb->transfer_dma); |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 756 | usb_free_urb(urb); |
| 757 | } |
| 758 | |
Jussi Kivilinna | 1f6cccc | 2011-01-31 20:50:12 +0200 | [diff] [blame] | 759 | static int __zd_usb_enable_rx(struct zd_usb *usb) |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 760 | { |
| 761 | int i, r; |
| 762 | struct zd_usb_rx *rx = &usb->rx; |
| 763 | struct urb **urbs; |
| 764 | |
| 765 | dev_dbg_f(zd_usb_dev(usb), "\n"); |
| 766 | |
| 767 | r = -ENOMEM; |
Daniel Drake | 459c51a | 2007-11-19 15:00:29 +0000 | [diff] [blame] | 768 | urbs = kcalloc(RX_URBS_COUNT, sizeof(struct urb *), GFP_KERNEL); |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 769 | if (!urbs) |
| 770 | goto error; |
Daniel Drake | 459c51a | 2007-11-19 15:00:29 +0000 | [diff] [blame] | 771 | for (i = 0; i < RX_URBS_COUNT; i++) { |
| 772 | urbs[i] = alloc_rx_urb(usb); |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 773 | if (!urbs[i]) |
| 774 | goto error; |
| 775 | } |
| 776 | |
| 777 | ZD_ASSERT(!irqs_disabled()); |
| 778 | spin_lock_irq(&rx->lock); |
| 779 | if (rx->urbs) { |
| 780 | spin_unlock_irq(&rx->lock); |
| 781 | r = 0; |
| 782 | goto error; |
| 783 | } |
| 784 | rx->urbs = urbs; |
Daniel Drake | 459c51a | 2007-11-19 15:00:29 +0000 | [diff] [blame] | 785 | rx->urbs_count = RX_URBS_COUNT; |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 786 | spin_unlock_irq(&rx->lock); |
| 787 | |
Daniel Drake | 459c51a | 2007-11-19 15:00:29 +0000 | [diff] [blame] | 788 | for (i = 0; i < RX_URBS_COUNT; i++) { |
Ulrich Kunitz | 35c3404 | 2007-02-18 20:28:23 +0000 | [diff] [blame] | 789 | r = usb_submit_urb(urbs[i], GFP_KERNEL); |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 790 | if (r) |
| 791 | goto error_submit; |
| 792 | } |
| 793 | |
| 794 | return 0; |
| 795 | error_submit: |
Daniel Drake | 459c51a | 2007-11-19 15:00:29 +0000 | [diff] [blame] | 796 | for (i = 0; i < RX_URBS_COUNT; i++) { |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 797 | usb_kill_urb(urbs[i]); |
| 798 | } |
| 799 | spin_lock_irq(&rx->lock); |
| 800 | rx->urbs = NULL; |
| 801 | rx->urbs_count = 0; |
| 802 | spin_unlock_irq(&rx->lock); |
| 803 | error: |
| 804 | if (urbs) { |
Daniel Drake | 459c51a | 2007-11-19 15:00:29 +0000 | [diff] [blame] | 805 | for (i = 0; i < RX_URBS_COUNT; i++) |
| 806 | free_rx_urb(urbs[i]); |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 807 | } |
| 808 | return r; |
| 809 | } |
| 810 | |
Jussi Kivilinna | 1f6cccc | 2011-01-31 20:50:12 +0200 | [diff] [blame] | 811 | int zd_usb_enable_rx(struct zd_usb *usb) |
| 812 | { |
| 813 | int r; |
| 814 | struct zd_usb_rx *rx = &usb->rx; |
| 815 | |
| 816 | mutex_lock(&rx->setup_mutex); |
| 817 | r = __zd_usb_enable_rx(usb); |
| 818 | mutex_unlock(&rx->setup_mutex); |
| 819 | |
| 820 | zd_usb_reset_rx_idle_timer(usb); |
| 821 | |
| 822 | return r; |
| 823 | } |
| 824 | |
| 825 | static void __zd_usb_disable_rx(struct zd_usb *usb) |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 826 | { |
| 827 | int i; |
| 828 | unsigned long flags; |
| 829 | struct urb **urbs; |
| 830 | unsigned int count; |
| 831 | struct zd_usb_rx *rx = &usb->rx; |
| 832 | |
| 833 | spin_lock_irqsave(&rx->lock, flags); |
| 834 | urbs = rx->urbs; |
| 835 | count = rx->urbs_count; |
| 836 | spin_unlock_irqrestore(&rx->lock, flags); |
| 837 | if (!urbs) |
| 838 | return; |
| 839 | |
| 840 | for (i = 0; i < count; i++) { |
| 841 | usb_kill_urb(urbs[i]); |
Daniel Drake | 459c51a | 2007-11-19 15:00:29 +0000 | [diff] [blame] | 842 | free_rx_urb(urbs[i]); |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 843 | } |
| 844 | kfree(urbs); |
| 845 | |
| 846 | spin_lock_irqsave(&rx->lock, flags); |
| 847 | rx->urbs = NULL; |
| 848 | rx->urbs_count = 0; |
| 849 | spin_unlock_irqrestore(&rx->lock, flags); |
| 850 | } |
| 851 | |
Jussi Kivilinna | 1f6cccc | 2011-01-31 20:50:12 +0200 | [diff] [blame] | 852 | void zd_usb_disable_rx(struct zd_usb *usb) |
| 853 | { |
| 854 | struct zd_usb_rx *rx = &usb->rx; |
| 855 | |
| 856 | mutex_lock(&rx->setup_mutex); |
| 857 | __zd_usb_disable_rx(usb); |
| 858 | mutex_unlock(&rx->setup_mutex); |
| 859 | |
Jussi Kivilinna | 0235357 | 2011-04-01 19:34:16 +0300 | [diff] [blame] | 860 | tasklet_kill(&rx->reset_timer_tasklet); |
Jussi Kivilinna | 1f6cccc | 2011-01-31 20:50:12 +0200 | [diff] [blame] | 861 | cancel_delayed_work_sync(&rx->idle_work); |
| 862 | } |
| 863 | |
| 864 | static void zd_usb_reset_rx(struct zd_usb *usb) |
| 865 | { |
| 866 | bool do_reset; |
| 867 | struct zd_usb_rx *rx = &usb->rx; |
| 868 | unsigned long flags; |
| 869 | |
| 870 | mutex_lock(&rx->setup_mutex); |
| 871 | |
| 872 | spin_lock_irqsave(&rx->lock, flags); |
| 873 | do_reset = rx->urbs != NULL; |
| 874 | spin_unlock_irqrestore(&rx->lock, flags); |
| 875 | |
| 876 | if (do_reset) { |
| 877 | __zd_usb_disable_rx(usb); |
| 878 | __zd_usb_enable_rx(usb); |
| 879 | } |
| 880 | |
| 881 | mutex_unlock(&rx->setup_mutex); |
| 882 | |
| 883 | if (do_reset) |
| 884 | zd_usb_reset_rx_idle_timer(usb); |
| 885 | } |
| 886 | |
Daniel Drake | 459c51a | 2007-11-19 15:00:29 +0000 | [diff] [blame] | 887 | /** |
| 888 | * zd_usb_disable_tx - disable transmission |
| 889 | * @usb: the zd1211rw-private USB structure |
| 890 | * |
| 891 | * Frees all URBs in the free list and marks the transmission as disabled. |
| 892 | */ |
| 893 | void zd_usb_disable_tx(struct zd_usb *usb) |
| 894 | { |
| 895 | struct zd_usb_tx *tx = &usb->tx; |
| 896 | unsigned long flags; |
Jussi Kivilinna | 78fc800 | 2011-01-31 20:47:08 +0200 | [diff] [blame] | 897 | |
| 898 | atomic_set(&tx->enabled, 0); |
| 899 | |
| 900 | /* kill all submitted tx-urbs */ |
| 901 | usb_kill_anchored_urbs(&tx->submitted); |
Daniel Drake | 459c51a | 2007-11-19 15:00:29 +0000 | [diff] [blame] | 902 | |
| 903 | spin_lock_irqsave(&tx->lock, flags); |
Jussi Kivilinna | a0fd751 | 2011-01-31 20:49:52 +0200 | [diff] [blame] | 904 | WARN_ON(!skb_queue_empty(&tx->submitted_skbs)); |
Jussi Kivilinna | 78fc800 | 2011-01-31 20:47:08 +0200 | [diff] [blame] | 905 | WARN_ON(tx->submitted_urbs != 0); |
Daniel Drake | 459c51a | 2007-11-19 15:00:29 +0000 | [diff] [blame] | 906 | tx->submitted_urbs = 0; |
Jussi Kivilinna | 78fc800 | 2011-01-31 20:47:08 +0200 | [diff] [blame] | 907 | spin_unlock_irqrestore(&tx->lock, flags); |
| 908 | |
Daniel Drake | 459c51a | 2007-11-19 15:00:29 +0000 | [diff] [blame] | 909 | /* The stopped state is ignored, relying on ieee80211_wake_queues() |
| 910 | * in a potentionally following zd_usb_enable_tx(). |
| 911 | */ |
Daniel Drake | 459c51a | 2007-11-19 15:00:29 +0000 | [diff] [blame] | 912 | } |
| 913 | |
| 914 | /** |
| 915 | * zd_usb_enable_tx - enables transmission |
| 916 | * @usb: a &struct zd_usb pointer |
| 917 | * |
| 918 | * This function enables transmission and prepares the &zd_usb_tx data |
| 919 | * structure. |
| 920 | */ |
| 921 | void zd_usb_enable_tx(struct zd_usb *usb) |
| 922 | { |
| 923 | unsigned long flags; |
| 924 | struct zd_usb_tx *tx = &usb->tx; |
| 925 | |
| 926 | spin_lock_irqsave(&tx->lock, flags); |
Jussi Kivilinna | 78fc800 | 2011-01-31 20:47:08 +0200 | [diff] [blame] | 927 | atomic_set(&tx->enabled, 1); |
Daniel Drake | 459c51a | 2007-11-19 15:00:29 +0000 | [diff] [blame] | 928 | tx->submitted_urbs = 0; |
| 929 | ieee80211_wake_queues(zd_usb_to_hw(usb)); |
| 930 | tx->stopped = 0; |
| 931 | spin_unlock_irqrestore(&tx->lock, flags); |
| 932 | } |
| 933 | |
Daniel Drake | 459c51a | 2007-11-19 15:00:29 +0000 | [diff] [blame] | 934 | static void tx_dec_submitted_urbs(struct zd_usb *usb) |
| 935 | { |
| 936 | struct zd_usb_tx *tx = &usb->tx; |
| 937 | unsigned long flags; |
| 938 | |
| 939 | spin_lock_irqsave(&tx->lock, flags); |
| 940 | --tx->submitted_urbs; |
| 941 | if (tx->stopped && tx->submitted_urbs <= ZD_USB_TX_LOW) { |
| 942 | ieee80211_wake_queues(zd_usb_to_hw(usb)); |
| 943 | tx->stopped = 0; |
| 944 | } |
| 945 | spin_unlock_irqrestore(&tx->lock, flags); |
| 946 | } |
| 947 | |
| 948 | static void tx_inc_submitted_urbs(struct zd_usb *usb) |
| 949 | { |
| 950 | struct zd_usb_tx *tx = &usb->tx; |
| 951 | unsigned long flags; |
| 952 | |
| 953 | spin_lock_irqsave(&tx->lock, flags); |
| 954 | ++tx->submitted_urbs; |
| 955 | if (!tx->stopped && tx->submitted_urbs > ZD_USB_TX_HIGH) { |
| 956 | ieee80211_stop_queues(zd_usb_to_hw(usb)); |
| 957 | tx->stopped = 1; |
| 958 | } |
| 959 | spin_unlock_irqrestore(&tx->lock, flags); |
| 960 | } |
| 961 | |
| 962 | /** |
| 963 | * tx_urb_complete - completes the execution of an URB |
| 964 | * @urb: a URB |
| 965 | * |
| 966 | * This function is called if the URB has been transferred to a device or an |
| 967 | * error has happened. |
| 968 | */ |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 969 | static void tx_urb_complete(struct urb *urb) |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 970 | { |
| 971 | int r; |
Daniel Drake | 459c51a | 2007-11-19 15:00:29 +0000 | [diff] [blame] | 972 | struct sk_buff *skb; |
Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 973 | struct ieee80211_tx_info *info; |
Daniel Drake | 459c51a | 2007-11-19 15:00:29 +0000 | [diff] [blame] | 974 | struct zd_usb *usb; |
Jussi Kivilinna | 78fc800 | 2011-01-31 20:47:08 +0200 | [diff] [blame] | 975 | struct zd_usb_tx *tx; |
| 976 | |
| 977 | skb = (struct sk_buff *)urb->context; |
| 978 | info = IEEE80211_SKB_CB(skb); |
| 979 | /* |
| 980 | * grab 'usb' pointer before handing off the skb (since |
| 981 | * it might be freed by zd_mac_tx_to_dev or mac80211) |
| 982 | */ |
| 983 | usb = &zd_hw_mac(info->rate_driver_data[0])->chip.usb; |
| 984 | tx = &usb->tx; |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 985 | |
| 986 | switch (urb->status) { |
| 987 | case 0: |
| 988 | break; |
| 989 | case -ESHUTDOWN: |
| 990 | case -EINVAL: |
| 991 | case -ENODEV: |
| 992 | case -ENOENT: |
| 993 | case -ECONNRESET: |
Daniel Drake | b312d79 | 2006-07-05 15:57:39 +0100 | [diff] [blame] | 994 | case -EPIPE: |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 995 | dev_dbg_f(urb_dev(urb), "urb %p error %d\n", urb, urb->status); |
| 996 | break; |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 997 | default: |
| 998 | dev_dbg_f(urb_dev(urb), "urb %p error %d\n", urb, urb->status); |
| 999 | goto resubmit; |
| 1000 | } |
| 1001 | free_urb: |
Jussi Kivilinna | a0fd751 | 2011-01-31 20:49:52 +0200 | [diff] [blame] | 1002 | skb_unlink(skb, &usb->tx.submitted_skbs); |
Johannes Berg | dbabad0 | 2008-05-08 01:43:59 +0200 | [diff] [blame] | 1003 | zd_mac_tx_to_dev(skb, urb->status); |
Jussi Kivilinna | 78fc800 | 2011-01-31 20:47:08 +0200 | [diff] [blame] | 1004 | usb_free_urb(urb); |
Daniel Drake | 459c51a | 2007-11-19 15:00:29 +0000 | [diff] [blame] | 1005 | tx_dec_submitted_urbs(usb); |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 1006 | return; |
| 1007 | resubmit: |
Jussi Kivilinna | 78fc800 | 2011-01-31 20:47:08 +0200 | [diff] [blame] | 1008 | usb_anchor_urb(urb, &tx->submitted); |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 1009 | r = usb_submit_urb(urb, GFP_ATOMIC); |
| 1010 | if (r) { |
Jussi Kivilinna | 78fc800 | 2011-01-31 20:47:08 +0200 | [diff] [blame] | 1011 | usb_unanchor_urb(urb); |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 1012 | dev_dbg_f(urb_dev(urb), "error resubmit urb %p %d\n", urb, r); |
| 1013 | goto free_urb; |
| 1014 | } |
| 1015 | } |
| 1016 | |
Daniel Drake | 459c51a | 2007-11-19 15:00:29 +0000 | [diff] [blame] | 1017 | /** |
| 1018 | * zd_usb_tx: initiates transfer of a frame of the device |
| 1019 | * |
| 1020 | * @usb: the zd1211rw-private USB structure |
| 1021 | * @skb: a &struct sk_buff pointer |
| 1022 | * |
| 1023 | * This function tranmits a frame to the device. It doesn't wait for |
| 1024 | * completion. The frame must contain the control set and have all the |
| 1025 | * control set information available. |
| 1026 | * |
| 1027 | * The function returns 0 if the transfer has been successfully initiated. |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 1028 | */ |
Daniel Drake | 459c51a | 2007-11-19 15:00:29 +0000 | [diff] [blame] | 1029 | int zd_usb_tx(struct zd_usb *usb, struct sk_buff *skb) |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 1030 | { |
| 1031 | int r; |
Jussi Kivilinna | a0fd751 | 2011-01-31 20:49:52 +0200 | [diff] [blame] | 1032 | struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb); |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 1033 | struct usb_device *udev = zd_usb_to_usbdev(usb); |
| 1034 | struct urb *urb; |
Jussi Kivilinna | 78fc800 | 2011-01-31 20:47:08 +0200 | [diff] [blame] | 1035 | struct zd_usb_tx *tx = &usb->tx; |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 1036 | |
Jussi Kivilinna | 78fc800 | 2011-01-31 20:47:08 +0200 | [diff] [blame] | 1037 | if (!atomic_read(&tx->enabled)) { |
| 1038 | r = -ENOENT; |
| 1039 | goto out; |
| 1040 | } |
| 1041 | |
| 1042 | urb = usb_alloc_urb(0, GFP_ATOMIC); |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 1043 | if (!urb) { |
| 1044 | r = -ENOMEM; |
| 1045 | goto out; |
| 1046 | } |
| 1047 | |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 1048 | usb_fill_bulk_urb(urb, udev, usb_sndbulkpipe(udev, EP_DATA_OUT), |
Daniel Drake | 459c51a | 2007-11-19 15:00:29 +0000 | [diff] [blame] | 1049 | skb->data, skb->len, tx_urb_complete, skb); |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 1050 | |
Jussi Kivilinna | a0fd751 | 2011-01-31 20:49:52 +0200 | [diff] [blame] | 1051 | info->rate_driver_data[1] = (void *)jiffies; |
| 1052 | skb_queue_tail(&tx->submitted_skbs, skb); |
Jussi Kivilinna | 78fc800 | 2011-01-31 20:47:08 +0200 | [diff] [blame] | 1053 | usb_anchor_urb(urb, &tx->submitted); |
Jussi Kivilinna | a0fd751 | 2011-01-31 20:49:52 +0200 | [diff] [blame] | 1054 | |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 1055 | r = usb_submit_urb(urb, GFP_ATOMIC); |
Jussi Kivilinna | 78fc800 | 2011-01-31 20:47:08 +0200 | [diff] [blame] | 1056 | if (r) { |
Jussi Kivilinna | 24d24c6 | 2011-01-31 20:50:31 +0200 | [diff] [blame] | 1057 | dev_dbg_f(zd_usb_dev(usb), "error submit urb %p %d\n", urb, r); |
Jussi Kivilinna | 78fc800 | 2011-01-31 20:47:08 +0200 | [diff] [blame] | 1058 | usb_unanchor_urb(urb); |
Jussi Kivilinna | a0fd751 | 2011-01-31 20:49:52 +0200 | [diff] [blame] | 1059 | skb_unlink(skb, &tx->submitted_skbs); |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 1060 | goto error; |
Jussi Kivilinna | 78fc800 | 2011-01-31 20:47:08 +0200 | [diff] [blame] | 1061 | } |
Daniel Drake | 459c51a | 2007-11-19 15:00:29 +0000 | [diff] [blame] | 1062 | tx_inc_submitted_urbs(usb); |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 1063 | return 0; |
| 1064 | error: |
Jussi Kivilinna | 78fc800 | 2011-01-31 20:47:08 +0200 | [diff] [blame] | 1065 | usb_free_urb(urb); |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 1066 | out: |
| 1067 | return r; |
| 1068 | } |
| 1069 | |
Jussi Kivilinna | a0fd751 | 2011-01-31 20:49:52 +0200 | [diff] [blame] | 1070 | static bool zd_tx_timeout(struct zd_usb *usb) |
| 1071 | { |
| 1072 | struct zd_usb_tx *tx = &usb->tx; |
| 1073 | struct sk_buff_head *q = &tx->submitted_skbs; |
| 1074 | struct sk_buff *skb, *skbnext; |
| 1075 | struct ieee80211_tx_info *info; |
| 1076 | unsigned long flags, trans_start; |
| 1077 | bool have_timedout = false; |
| 1078 | |
| 1079 | spin_lock_irqsave(&q->lock, flags); |
| 1080 | skb_queue_walk_safe(q, skb, skbnext) { |
| 1081 | info = IEEE80211_SKB_CB(skb); |
| 1082 | trans_start = (unsigned long)info->rate_driver_data[1]; |
| 1083 | |
| 1084 | if (time_is_before_jiffies(trans_start + ZD_TX_TIMEOUT)) { |
| 1085 | have_timedout = true; |
| 1086 | break; |
| 1087 | } |
| 1088 | } |
| 1089 | spin_unlock_irqrestore(&q->lock, flags); |
| 1090 | |
| 1091 | return have_timedout; |
| 1092 | } |
| 1093 | |
| 1094 | static void zd_tx_watchdog_handler(struct work_struct *work) |
| 1095 | { |
| 1096 | struct zd_usb *usb = |
| 1097 | container_of(work, struct zd_usb, tx.watchdog_work.work); |
| 1098 | struct zd_usb_tx *tx = &usb->tx; |
| 1099 | |
| 1100 | if (!atomic_read(&tx->enabled) || !tx->watchdog_enabled) |
| 1101 | goto out; |
| 1102 | if (!zd_tx_timeout(usb)) |
| 1103 | goto out; |
| 1104 | |
| 1105 | /* TX halted, try reset */ |
| 1106 | dev_warn(zd_usb_dev(usb), "TX-stall detected, reseting device..."); |
| 1107 | |
| 1108 | usb_queue_reset_device(usb->intf); |
| 1109 | |
| 1110 | /* reset will stop this worker, don't rearm */ |
| 1111 | return; |
| 1112 | out: |
| 1113 | queue_delayed_work(zd_workqueue, &tx->watchdog_work, |
| 1114 | ZD_TX_WATCHDOG_INTERVAL); |
| 1115 | } |
| 1116 | |
| 1117 | void zd_tx_watchdog_enable(struct zd_usb *usb) |
| 1118 | { |
| 1119 | struct zd_usb_tx *tx = &usb->tx; |
| 1120 | |
| 1121 | if (!tx->watchdog_enabled) { |
| 1122 | dev_dbg_f(zd_usb_dev(usb), "\n"); |
| 1123 | queue_delayed_work(zd_workqueue, &tx->watchdog_work, |
| 1124 | ZD_TX_WATCHDOG_INTERVAL); |
| 1125 | tx->watchdog_enabled = 1; |
| 1126 | } |
| 1127 | } |
| 1128 | |
| 1129 | void zd_tx_watchdog_disable(struct zd_usb *usb) |
| 1130 | { |
| 1131 | struct zd_usb_tx *tx = &usb->tx; |
| 1132 | |
| 1133 | if (tx->watchdog_enabled) { |
| 1134 | dev_dbg_f(zd_usb_dev(usb), "\n"); |
| 1135 | tx->watchdog_enabled = 0; |
| 1136 | cancel_delayed_work_sync(&tx->watchdog_work); |
| 1137 | } |
| 1138 | } |
| 1139 | |
Jussi Kivilinna | 1f6cccc | 2011-01-31 20:50:12 +0200 | [diff] [blame] | 1140 | static void zd_rx_idle_timer_handler(struct work_struct *work) |
| 1141 | { |
| 1142 | struct zd_usb *usb = |
| 1143 | container_of(work, struct zd_usb, rx.idle_work.work); |
| 1144 | struct zd_mac *mac = zd_usb_to_mac(usb); |
| 1145 | |
| 1146 | if (!test_bit(ZD_DEVICE_RUNNING, &mac->flags)) |
| 1147 | return; |
| 1148 | |
| 1149 | dev_dbg_f(zd_usb_dev(usb), "\n"); |
| 1150 | |
| 1151 | /* 30 seconds since last rx, reset rx */ |
| 1152 | zd_usb_reset_rx(usb); |
| 1153 | } |
| 1154 | |
Jussi Kivilinna | 0235357 | 2011-04-01 19:34:16 +0300 | [diff] [blame] | 1155 | static void zd_usb_reset_rx_idle_timer_tasklet(unsigned long param) |
| 1156 | { |
| 1157 | struct zd_usb *usb = (struct zd_usb *)param; |
| 1158 | |
| 1159 | zd_usb_reset_rx_idle_timer(usb); |
| 1160 | } |
| 1161 | |
Jussi Kivilinna | 1f6cccc | 2011-01-31 20:50:12 +0200 | [diff] [blame] | 1162 | void zd_usb_reset_rx_idle_timer(struct zd_usb *usb) |
| 1163 | { |
| 1164 | struct zd_usb_rx *rx = &usb->rx; |
| 1165 | |
| 1166 | cancel_delayed_work(&rx->idle_work); |
| 1167 | queue_delayed_work(zd_workqueue, &rx->idle_work, ZD_RX_IDLE_INTERVAL); |
| 1168 | } |
| 1169 | |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 1170 | static inline void init_usb_interrupt(struct zd_usb *usb) |
| 1171 | { |
| 1172 | struct zd_usb_interrupt *intr = &usb->intr; |
| 1173 | |
| 1174 | spin_lock_init(&intr->lock); |
| 1175 | intr->interval = int_urb_interval(zd_usb_to_usbdev(usb)); |
| 1176 | init_completion(&intr->read_regs.completion); |
Jussi Kivilinna | c900eff | 2011-06-20 14:42:44 +0300 | [diff] [blame] | 1177 | atomic_set(&intr->read_regs_enabled, 0); |
Daniel Drake | 0ce34bc | 2006-12-12 01:26:11 +0000 | [diff] [blame] | 1178 | intr->read_regs.cr_int_addr = cpu_to_le16((u16)CR_INTERRUPT); |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 1179 | } |
| 1180 | |
| 1181 | static inline void init_usb_rx(struct zd_usb *usb) |
| 1182 | { |
| 1183 | struct zd_usb_rx *rx = &usb->rx; |
Jussi Kivilinna | 0235357 | 2011-04-01 19:34:16 +0300 | [diff] [blame] | 1184 | |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 1185 | spin_lock_init(&rx->lock); |
Jussi Kivilinna | 1f6cccc | 2011-01-31 20:50:12 +0200 | [diff] [blame] | 1186 | mutex_init(&rx->setup_mutex); |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 1187 | if (interface_to_usbdev(usb->intf)->speed == USB_SPEED_HIGH) { |
| 1188 | rx->usb_packet_size = 512; |
| 1189 | } else { |
| 1190 | rx->usb_packet_size = 64; |
| 1191 | } |
| 1192 | ZD_ASSERT(rx->fragment_length == 0); |
Jussi Kivilinna | 1f6cccc | 2011-01-31 20:50:12 +0200 | [diff] [blame] | 1193 | INIT_DELAYED_WORK(&rx->idle_work, zd_rx_idle_timer_handler); |
Jussi Kivilinna | 0235357 | 2011-04-01 19:34:16 +0300 | [diff] [blame] | 1194 | rx->reset_timer_tasklet.func = zd_usb_reset_rx_idle_timer_tasklet; |
| 1195 | rx->reset_timer_tasklet.data = (unsigned long)usb; |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 1196 | } |
| 1197 | |
| 1198 | static inline void init_usb_tx(struct zd_usb *usb) |
| 1199 | { |
Daniel Drake | 459c51a | 2007-11-19 15:00:29 +0000 | [diff] [blame] | 1200 | struct zd_usb_tx *tx = &usb->tx; |
Jussi Kivilinna | 0235357 | 2011-04-01 19:34:16 +0300 | [diff] [blame] | 1201 | |
Daniel Drake | 459c51a | 2007-11-19 15:00:29 +0000 | [diff] [blame] | 1202 | spin_lock_init(&tx->lock); |
Jussi Kivilinna | 78fc800 | 2011-01-31 20:47:08 +0200 | [diff] [blame] | 1203 | atomic_set(&tx->enabled, 0); |
Daniel Drake | 459c51a | 2007-11-19 15:00:29 +0000 | [diff] [blame] | 1204 | tx->stopped = 0; |
Jussi Kivilinna | a0fd751 | 2011-01-31 20:49:52 +0200 | [diff] [blame] | 1205 | skb_queue_head_init(&tx->submitted_skbs); |
Jussi Kivilinna | 78fc800 | 2011-01-31 20:47:08 +0200 | [diff] [blame] | 1206 | init_usb_anchor(&tx->submitted); |
Daniel Drake | 459c51a | 2007-11-19 15:00:29 +0000 | [diff] [blame] | 1207 | tx->submitted_urbs = 0; |
Jussi Kivilinna | a0fd751 | 2011-01-31 20:49:52 +0200 | [diff] [blame] | 1208 | tx->watchdog_enabled = 0; |
| 1209 | INIT_DELAYED_WORK(&tx->watchdog_work, zd_tx_watchdog_handler); |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 1210 | } |
| 1211 | |
Daniel Drake | 459c51a | 2007-11-19 15:00:29 +0000 | [diff] [blame] | 1212 | void zd_usb_init(struct zd_usb *usb, struct ieee80211_hw *hw, |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 1213 | struct usb_interface *intf) |
| 1214 | { |
| 1215 | memset(usb, 0, sizeof(*usb)); |
| 1216 | usb->intf = usb_get_intf(intf); |
Daniel Drake | 459c51a | 2007-11-19 15:00:29 +0000 | [diff] [blame] | 1217 | usb_set_intfdata(usb->intf, hw); |
Jussi Kivilinna | eefdbec | 2011-02-12 20:43:32 +0200 | [diff] [blame] | 1218 | init_usb_anchor(&usb->submitted_cmds); |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 1219 | init_usb_interrupt(usb); |
| 1220 | init_usb_tx(usb); |
| 1221 | init_usb_rx(usb); |
| 1222 | } |
| 1223 | |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 1224 | void zd_usb_clear(struct zd_usb *usb) |
| 1225 | { |
| 1226 | usb_set_intfdata(usb->intf, NULL); |
| 1227 | usb_put_intf(usb->intf); |
Ulrich Kunitz | c48cf12 | 2006-08-12 18:00:17 +0100 | [diff] [blame] | 1228 | ZD_MEMCLEAR(usb, sizeof(*usb)); |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 1229 | /* FIXME: usb_interrupt, usb_tx, usb_rx? */ |
| 1230 | } |
| 1231 | |
| 1232 | static const char *speed(enum usb_device_speed speed) |
| 1233 | { |
| 1234 | switch (speed) { |
| 1235 | case USB_SPEED_LOW: |
| 1236 | return "low"; |
| 1237 | case USB_SPEED_FULL: |
| 1238 | return "full"; |
| 1239 | case USB_SPEED_HIGH: |
| 1240 | return "high"; |
| 1241 | default: |
| 1242 | return "unknown speed"; |
| 1243 | } |
| 1244 | } |
| 1245 | |
| 1246 | static int scnprint_id(struct usb_device *udev, char *buffer, size_t size) |
| 1247 | { |
| 1248 | return scnprintf(buffer, size, "%04hx:%04hx v%04hx %s", |
| 1249 | le16_to_cpu(udev->descriptor.idVendor), |
| 1250 | le16_to_cpu(udev->descriptor.idProduct), |
| 1251 | get_bcdDevice(udev), |
| 1252 | speed(udev->speed)); |
| 1253 | } |
| 1254 | |
| 1255 | int zd_usb_scnprint_id(struct zd_usb *usb, char *buffer, size_t size) |
| 1256 | { |
| 1257 | struct usb_device *udev = interface_to_usbdev(usb->intf); |
| 1258 | return scnprint_id(udev, buffer, size); |
| 1259 | } |
| 1260 | |
| 1261 | #ifdef DEBUG |
| 1262 | static void print_id(struct usb_device *udev) |
| 1263 | { |
| 1264 | char buffer[40]; |
| 1265 | |
| 1266 | scnprint_id(udev, buffer, sizeof(buffer)); |
| 1267 | buffer[sizeof(buffer)-1] = 0; |
| 1268 | dev_dbg_f(&udev->dev, "%s\n", buffer); |
| 1269 | } |
| 1270 | #else |
| 1271 | #define print_id(udev) do { } while (0) |
| 1272 | #endif |
| 1273 | |
Daniel Drake | a1030e9 | 2006-08-13 12:15:29 +0100 | [diff] [blame] | 1274 | static int eject_installer(struct usb_interface *intf) |
| 1275 | { |
| 1276 | struct usb_device *udev = interface_to_usbdev(intf); |
| 1277 | struct usb_host_interface *iface_desc = &intf->altsetting[0]; |
| 1278 | struct usb_endpoint_descriptor *endpoint; |
| 1279 | unsigned char *cmd; |
| 1280 | u8 bulk_out_ep; |
| 1281 | int r; |
| 1282 | |
| 1283 | /* Find bulk out endpoint */ |
Stefan Seyfried | 11466f1 | 2009-12-08 15:21:35 +0100 | [diff] [blame] | 1284 | for (r = 1; r >= 0; r--) { |
| 1285 | endpoint = &iface_desc->endpoint[r].desc; |
| 1286 | if (usb_endpoint_dir_out(endpoint) && |
| 1287 | usb_endpoint_xfer_bulk(endpoint)) { |
| 1288 | bulk_out_ep = endpoint->bEndpointAddress; |
| 1289 | break; |
| 1290 | } |
| 1291 | } |
| 1292 | if (r == -1) { |
Daniel Drake | a1030e9 | 2006-08-13 12:15:29 +0100 | [diff] [blame] | 1293 | dev_err(&udev->dev, |
| 1294 | "zd1211rw: Could not find bulk out endpoint\n"); |
| 1295 | return -ENODEV; |
| 1296 | } |
| 1297 | |
| 1298 | cmd = kzalloc(31, GFP_KERNEL); |
| 1299 | if (cmd == NULL) |
| 1300 | return -ENODEV; |
| 1301 | |
| 1302 | /* USB bulk command block */ |
| 1303 | cmd[0] = 0x55; /* bulk command signature */ |
| 1304 | cmd[1] = 0x53; /* bulk command signature */ |
| 1305 | cmd[2] = 0x42; /* bulk command signature */ |
| 1306 | cmd[3] = 0x43; /* bulk command signature */ |
| 1307 | cmd[14] = 6; /* command length */ |
| 1308 | |
| 1309 | cmd[15] = 0x1b; /* SCSI command: START STOP UNIT */ |
| 1310 | cmd[19] = 0x2; /* eject disc */ |
| 1311 | |
| 1312 | dev_info(&udev->dev, "Ejecting virtual installer media...\n"); |
| 1313 | r = usb_bulk_msg(udev, usb_sndbulkpipe(udev, bulk_out_ep), |
| 1314 | cmd, 31, NULL, 2000); |
| 1315 | kfree(cmd); |
| 1316 | if (r) |
| 1317 | return r; |
| 1318 | |
| 1319 | /* At this point, the device disconnects and reconnects with the real |
| 1320 | * ID numbers. */ |
| 1321 | |
| 1322 | usb_set_intfdata(intf, NULL); |
| 1323 | return 0; |
| 1324 | } |
| 1325 | |
Daniel Drake | 74553ae | 2007-07-01 18:22:32 +0100 | [diff] [blame] | 1326 | int zd_usb_init_hw(struct zd_usb *usb) |
| 1327 | { |
| 1328 | int r; |
| 1329 | struct zd_mac *mac = zd_usb_to_mac(usb); |
| 1330 | |
| 1331 | dev_dbg_f(zd_usb_dev(usb), "\n"); |
| 1332 | |
| 1333 | r = upload_firmware(usb); |
| 1334 | if (r) { |
| 1335 | dev_err(zd_usb_dev(usb), |
| 1336 | "couldn't load firmware. Error number %d\n", r); |
| 1337 | return r; |
| 1338 | } |
| 1339 | |
| 1340 | r = usb_reset_configuration(zd_usb_to_usbdev(usb)); |
| 1341 | if (r) { |
| 1342 | dev_dbg_f(zd_usb_dev(usb), |
| 1343 | "couldn't reset configuration. Error number %d\n", r); |
| 1344 | return r; |
| 1345 | } |
| 1346 | |
Daniel Drake | 459c51a | 2007-11-19 15:00:29 +0000 | [diff] [blame] | 1347 | r = zd_mac_init_hw(mac->hw); |
Daniel Drake | 74553ae | 2007-07-01 18:22:32 +0100 | [diff] [blame] | 1348 | if (r) { |
| 1349 | dev_dbg_f(zd_usb_dev(usb), |
| 1350 | "couldn't initialize mac. Error number %d\n", r); |
| 1351 | return r; |
| 1352 | } |
| 1353 | |
| 1354 | usb->initialized = 1; |
| 1355 | return 0; |
| 1356 | } |
| 1357 | |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 1358 | static int probe(struct usb_interface *intf, const struct usb_device_id *id) |
| 1359 | { |
| 1360 | int r; |
| 1361 | struct usb_device *udev = interface_to_usbdev(intf); |
Daniel Drake | 459c51a | 2007-11-19 15:00:29 +0000 | [diff] [blame] | 1362 | struct zd_usb *usb; |
| 1363 | struct ieee80211_hw *hw = NULL; |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 1364 | |
| 1365 | print_id(udev); |
| 1366 | |
Daniel Drake | a1030e9 | 2006-08-13 12:15:29 +0100 | [diff] [blame] | 1367 | if (id->driver_info & DEVICE_INSTALLER) |
| 1368 | return eject_installer(intf); |
| 1369 | |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 1370 | switch (udev->speed) { |
| 1371 | case USB_SPEED_LOW: |
| 1372 | case USB_SPEED_FULL: |
| 1373 | case USB_SPEED_HIGH: |
| 1374 | break; |
| 1375 | default: |
| 1376 | dev_dbg_f(&intf->dev, "Unknown USB speed\n"); |
| 1377 | r = -ENODEV; |
| 1378 | goto error; |
| 1379 | } |
| 1380 | |
Daniel Drake | 459c51a | 2007-11-19 15:00:29 +0000 | [diff] [blame] | 1381 | r = usb_reset_device(udev); |
| 1382 | if (r) { |
| 1383 | dev_err(&intf->dev, |
| 1384 | "couldn't reset usb device. Error number %d\n", r); |
| 1385 | goto error; |
| 1386 | } |
Ulrich Kunitz | 6e3632f | 2007-01-29 00:59:28 +0000 | [diff] [blame] | 1387 | |
Daniel Drake | 459c51a | 2007-11-19 15:00:29 +0000 | [diff] [blame] | 1388 | hw = zd_mac_alloc_hw(intf); |
| 1389 | if (hw == NULL) { |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 1390 | r = -ENOMEM; |
| 1391 | goto error; |
| 1392 | } |
| 1393 | |
Daniel Drake | 459c51a | 2007-11-19 15:00:29 +0000 | [diff] [blame] | 1394 | usb = &zd_hw_mac(hw)->chip.usb; |
Daniel Drake | 74553ae | 2007-07-01 18:22:32 +0100 | [diff] [blame] | 1395 | usb->is_zd1211b = (id->driver_info == DEVICE_ZD1211B) != 0; |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 1396 | |
Daniel Drake | 459c51a | 2007-11-19 15:00:29 +0000 | [diff] [blame] | 1397 | r = zd_mac_preinit_hw(hw); |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 1398 | if (r) { |
| 1399 | dev_dbg_f(&intf->dev, |
| 1400 | "couldn't initialize mac. Error number %d\n", r); |
| 1401 | goto error; |
| 1402 | } |
| 1403 | |
Daniel Drake | 459c51a | 2007-11-19 15:00:29 +0000 | [diff] [blame] | 1404 | r = ieee80211_register_hw(hw); |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 1405 | if (r) { |
| 1406 | dev_dbg_f(&intf->dev, |
Daniel Drake | 459c51a | 2007-11-19 15:00:29 +0000 | [diff] [blame] | 1407 | "couldn't register device. Error number %d\n", r); |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 1408 | goto error; |
| 1409 | } |
| 1410 | |
| 1411 | dev_dbg_f(&intf->dev, "successful\n"); |
Daniel Drake | 459c51a | 2007-11-19 15:00:29 +0000 | [diff] [blame] | 1412 | dev_info(&intf->dev, "%s\n", wiphy_name(hw->wiphy)); |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 1413 | return 0; |
| 1414 | error: |
| 1415 | usb_reset_device(interface_to_usbdev(intf)); |
Daniel Drake | 459c51a | 2007-11-19 15:00:29 +0000 | [diff] [blame] | 1416 | if (hw) { |
| 1417 | zd_mac_clear(zd_hw_mac(hw)); |
| 1418 | ieee80211_free_hw(hw); |
| 1419 | } |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 1420 | return r; |
| 1421 | } |
| 1422 | |
| 1423 | static void disconnect(struct usb_interface *intf) |
| 1424 | { |
Daniel Drake | 459c51a | 2007-11-19 15:00:29 +0000 | [diff] [blame] | 1425 | struct ieee80211_hw *hw = zd_intf_to_hw(intf); |
Marc Pignat | e0579d5 | 2007-10-15 08:51:52 +0200 | [diff] [blame] | 1426 | struct zd_mac *mac; |
| 1427 | struct zd_usb *usb; |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 1428 | |
Daniel Drake | a1030e9 | 2006-08-13 12:15:29 +0100 | [diff] [blame] | 1429 | /* Either something really bad happened, or we're just dealing with |
| 1430 | * a DEVICE_INSTALLER. */ |
Daniel Drake | 459c51a | 2007-11-19 15:00:29 +0000 | [diff] [blame] | 1431 | if (hw == NULL) |
Daniel Drake | a1030e9 | 2006-08-13 12:15:29 +0100 | [diff] [blame] | 1432 | return; |
| 1433 | |
Daniel Drake | 459c51a | 2007-11-19 15:00:29 +0000 | [diff] [blame] | 1434 | mac = zd_hw_mac(hw); |
Marc Pignat | e0579d5 | 2007-10-15 08:51:52 +0200 | [diff] [blame] | 1435 | usb = &mac->chip.usb; |
| 1436 | |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 1437 | dev_dbg_f(zd_usb_dev(usb), "\n"); |
| 1438 | |
Daniel Drake | 459c51a | 2007-11-19 15:00:29 +0000 | [diff] [blame] | 1439 | ieee80211_unregister_hw(hw); |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 1440 | |
| 1441 | /* Just in case something has gone wrong! */ |
Jussi Kivilinna | 78fc800 | 2011-01-31 20:47:08 +0200 | [diff] [blame] | 1442 | zd_usb_disable_tx(usb); |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 1443 | zd_usb_disable_rx(usb); |
| 1444 | zd_usb_disable_int(usb); |
| 1445 | |
| 1446 | /* If the disconnect has been caused by a removal of the |
| 1447 | * driver module, the reset allows reloading of the driver. If the |
| 1448 | * reset will not be executed here, the upload of the firmware in the |
| 1449 | * probe function caused by the reloading of the driver will fail. |
| 1450 | */ |
| 1451 | usb_reset_device(interface_to_usbdev(intf)); |
| 1452 | |
Daniel Drake | 459c51a | 2007-11-19 15:00:29 +0000 | [diff] [blame] | 1453 | zd_mac_clear(mac); |
| 1454 | ieee80211_free_hw(hw); |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 1455 | dev_dbg(&intf->dev, "disconnected\n"); |
| 1456 | } |
| 1457 | |
Jussi Kivilinna | a0fd751 | 2011-01-31 20:49:52 +0200 | [diff] [blame] | 1458 | static void zd_usb_resume(struct zd_usb *usb) |
| 1459 | { |
| 1460 | struct zd_mac *mac = zd_usb_to_mac(usb); |
| 1461 | int r; |
| 1462 | |
| 1463 | dev_dbg_f(zd_usb_dev(usb), "\n"); |
| 1464 | |
| 1465 | r = zd_op_start(zd_usb_to_hw(usb)); |
| 1466 | if (r < 0) { |
| 1467 | dev_warn(zd_usb_dev(usb), "Device resume failed " |
| 1468 | "with error code %d. Retrying...\n", r); |
| 1469 | if (usb->was_running) |
| 1470 | set_bit(ZD_DEVICE_RUNNING, &mac->flags); |
| 1471 | usb_queue_reset_device(usb->intf); |
| 1472 | return; |
| 1473 | } |
| 1474 | |
| 1475 | if (mac->type != NL80211_IFTYPE_UNSPECIFIED) { |
| 1476 | r = zd_restore_settings(mac); |
| 1477 | if (r < 0) { |
| 1478 | dev_dbg(zd_usb_dev(usb), |
| 1479 | "failed to restore settings, %d\n", r); |
| 1480 | return; |
| 1481 | } |
| 1482 | } |
| 1483 | } |
| 1484 | |
| 1485 | static void zd_usb_stop(struct zd_usb *usb) |
| 1486 | { |
| 1487 | dev_dbg_f(zd_usb_dev(usb), "\n"); |
| 1488 | |
| 1489 | zd_op_stop(zd_usb_to_hw(usb)); |
| 1490 | |
| 1491 | zd_usb_disable_tx(usb); |
| 1492 | zd_usb_disable_rx(usb); |
| 1493 | zd_usb_disable_int(usb); |
| 1494 | |
| 1495 | usb->initialized = 0; |
| 1496 | } |
| 1497 | |
| 1498 | static int pre_reset(struct usb_interface *intf) |
| 1499 | { |
| 1500 | struct ieee80211_hw *hw = usb_get_intfdata(intf); |
| 1501 | struct zd_mac *mac; |
| 1502 | struct zd_usb *usb; |
| 1503 | |
| 1504 | if (!hw || intf->condition != USB_INTERFACE_BOUND) |
| 1505 | return 0; |
| 1506 | |
| 1507 | mac = zd_hw_mac(hw); |
| 1508 | usb = &mac->chip.usb; |
| 1509 | |
| 1510 | usb->was_running = test_bit(ZD_DEVICE_RUNNING, &mac->flags); |
| 1511 | |
| 1512 | zd_usb_stop(usb); |
| 1513 | |
| 1514 | mutex_lock(&mac->chip.mutex); |
| 1515 | return 0; |
| 1516 | } |
| 1517 | |
| 1518 | static int post_reset(struct usb_interface *intf) |
| 1519 | { |
| 1520 | struct ieee80211_hw *hw = usb_get_intfdata(intf); |
| 1521 | struct zd_mac *mac; |
| 1522 | struct zd_usb *usb; |
| 1523 | |
| 1524 | if (!hw || intf->condition != USB_INTERFACE_BOUND) |
| 1525 | return 0; |
| 1526 | |
| 1527 | mac = zd_hw_mac(hw); |
| 1528 | usb = &mac->chip.usb; |
| 1529 | |
| 1530 | mutex_unlock(&mac->chip.mutex); |
| 1531 | |
| 1532 | if (usb->was_running) |
| 1533 | zd_usb_resume(usb); |
| 1534 | return 0; |
| 1535 | } |
| 1536 | |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 1537 | static struct usb_driver driver = { |
Daniel Drake | 459c51a | 2007-11-19 15:00:29 +0000 | [diff] [blame] | 1538 | .name = KBUILD_MODNAME, |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 1539 | .id_table = usb_ids, |
| 1540 | .probe = probe, |
| 1541 | .disconnect = disconnect, |
Jussi Kivilinna | a0fd751 | 2011-01-31 20:49:52 +0200 | [diff] [blame] | 1542 | .pre_reset = pre_reset, |
| 1543 | .post_reset = post_reset, |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 1544 | }; |
| 1545 | |
Ulrich Kunitz | bc5f06a | 2006-09-13 02:42:12 +0100 | [diff] [blame] | 1546 | struct workqueue_struct *zd_workqueue; |
| 1547 | |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 1548 | static int __init usb_init(void) |
| 1549 | { |
| 1550 | int r; |
| 1551 | |
Ulrich Kunitz | 741fec5 | 2006-11-22 00:05:53 +0000 | [diff] [blame] | 1552 | pr_debug("%s usb_init()\n", driver.name); |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 1553 | |
Ulrich Kunitz | bc5f06a | 2006-09-13 02:42:12 +0100 | [diff] [blame] | 1554 | zd_workqueue = create_singlethread_workqueue(driver.name); |
| 1555 | if (zd_workqueue == NULL) { |
Ulrich Kunitz | 741fec5 | 2006-11-22 00:05:53 +0000 | [diff] [blame] | 1556 | printk(KERN_ERR "%s couldn't create workqueue\n", driver.name); |
Ulrich Kunitz | bc5f06a | 2006-09-13 02:42:12 +0100 | [diff] [blame] | 1557 | return -ENOMEM; |
| 1558 | } |
| 1559 | |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 1560 | r = usb_register(&driver); |
| 1561 | if (r) { |
Maxime Austruy | 192b775 | 2007-01-29 00:59:51 +0000 | [diff] [blame] | 1562 | destroy_workqueue(zd_workqueue); |
Ulrich Kunitz | 741fec5 | 2006-11-22 00:05:53 +0000 | [diff] [blame] | 1563 | printk(KERN_ERR "%s usb_register() failed. Error number %d\n", |
| 1564 | driver.name, r); |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 1565 | return r; |
| 1566 | } |
| 1567 | |
Ulrich Kunitz | 741fec5 | 2006-11-22 00:05:53 +0000 | [diff] [blame] | 1568 | pr_debug("%s initialized\n", driver.name); |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 1569 | return 0; |
| 1570 | } |
| 1571 | |
| 1572 | static void __exit usb_exit(void) |
| 1573 | { |
Ulrich Kunitz | 741fec5 | 2006-11-22 00:05:53 +0000 | [diff] [blame] | 1574 | pr_debug("%s usb_exit()\n", driver.name); |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 1575 | usb_deregister(&driver); |
Ulrich Kunitz | bc5f06a | 2006-09-13 02:42:12 +0100 | [diff] [blame] | 1576 | destroy_workqueue(zd_workqueue); |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 1577 | } |
| 1578 | |
| 1579 | module_init(usb_init); |
| 1580 | module_exit(usb_exit); |
| 1581 | |
Jussi Kivilinna | 59342f6 | 2011-05-30 10:15:47 +0300 | [diff] [blame] | 1582 | static int zd_ep_regs_out_msg(struct usb_device *udev, void *data, int len, |
| 1583 | int *actual_length, int timeout) |
| 1584 | { |
| 1585 | /* In USB 2.0 mode EP_REGS_OUT endpoint is interrupt type. However in |
| 1586 | * USB 1.1 mode endpoint is bulk. Select correct type URB by endpoint |
| 1587 | * descriptor. |
| 1588 | */ |
| 1589 | struct usb_host_endpoint *ep; |
| 1590 | unsigned int pipe; |
| 1591 | |
| 1592 | pipe = usb_sndintpipe(udev, EP_REGS_OUT); |
| 1593 | ep = usb_pipe_endpoint(udev, pipe); |
| 1594 | if (!ep) |
| 1595 | return -EINVAL; |
| 1596 | |
| 1597 | if (usb_endpoint_xfer_int(&ep->desc)) { |
| 1598 | return usb_interrupt_msg(udev, pipe, data, len, |
| 1599 | actual_length, timeout); |
| 1600 | } else { |
| 1601 | pipe = usb_sndbulkpipe(udev, EP_REGS_OUT); |
| 1602 | return usb_bulk_msg(udev, pipe, data, len, actual_length, |
| 1603 | timeout); |
| 1604 | } |
| 1605 | } |
| 1606 | |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 1607 | static int usb_int_regs_length(unsigned int count) |
| 1608 | { |
| 1609 | return sizeof(struct usb_int_regs) + count * sizeof(struct reg_data); |
| 1610 | } |
| 1611 | |
Jussi Kivilinna | c900eff | 2011-06-20 14:42:44 +0300 | [diff] [blame] | 1612 | static void prepare_read_regs_int(struct zd_usb *usb, |
| 1613 | struct usb_req_read_regs *req, |
| 1614 | unsigned int count) |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 1615 | { |
| 1616 | struct zd_usb_interrupt *intr = &usb->intr; |
| 1617 | |
Ulrich Kunitz | a68077d | 2006-11-22 00:06:06 +0000 | [diff] [blame] | 1618 | spin_lock_irq(&intr->lock); |
Jussi Kivilinna | c900eff | 2011-06-20 14:42:44 +0300 | [diff] [blame] | 1619 | atomic_set(&intr->read_regs_enabled, 1); |
| 1620 | intr->read_regs.req = req; |
| 1621 | intr->read_regs.req_count = count; |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 1622 | INIT_COMPLETION(intr->read_regs.completion); |
Ulrich Kunitz | a68077d | 2006-11-22 00:06:06 +0000 | [diff] [blame] | 1623 | spin_unlock_irq(&intr->lock); |
| 1624 | } |
| 1625 | |
| 1626 | static void disable_read_regs_int(struct zd_usb *usb) |
| 1627 | { |
| 1628 | struct zd_usb_interrupt *intr = &usb->intr; |
| 1629 | |
| 1630 | spin_lock_irq(&intr->lock); |
Jussi Kivilinna | c900eff | 2011-06-20 14:42:44 +0300 | [diff] [blame] | 1631 | atomic_set(&intr->read_regs_enabled, 0); |
Ulrich Kunitz | a68077d | 2006-11-22 00:06:06 +0000 | [diff] [blame] | 1632 | spin_unlock_irq(&intr->lock); |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 1633 | } |
| 1634 | |
Jussi Kivilinna | c900eff | 2011-06-20 14:42:44 +0300 | [diff] [blame] | 1635 | static bool check_read_regs(struct zd_usb *usb, struct usb_req_read_regs *req, |
| 1636 | unsigned int count) |
| 1637 | { |
| 1638 | int i; |
| 1639 | struct zd_usb_interrupt *intr = &usb->intr; |
| 1640 | struct read_regs_int *rr = &intr->read_regs; |
| 1641 | struct usb_int_regs *regs = (struct usb_int_regs *)rr->buffer; |
| 1642 | |
| 1643 | /* The created block size seems to be larger than expected. |
| 1644 | * However results appear to be correct. |
| 1645 | */ |
| 1646 | if (rr->length < usb_int_regs_length(count)) { |
| 1647 | dev_dbg_f(zd_usb_dev(usb), |
| 1648 | "error: actual length %d less than expected %d\n", |
| 1649 | rr->length, usb_int_regs_length(count)); |
| 1650 | return false; |
| 1651 | } |
| 1652 | |
| 1653 | if (rr->length > sizeof(rr->buffer)) { |
| 1654 | dev_dbg_f(zd_usb_dev(usb), |
| 1655 | "error: actual length %d exceeds buffer size %zu\n", |
| 1656 | rr->length, sizeof(rr->buffer)); |
| 1657 | return false; |
| 1658 | } |
| 1659 | |
| 1660 | for (i = 0; i < count; i++) { |
| 1661 | struct reg_data *rd = ®s->regs[i]; |
| 1662 | if (rd->addr != req->addr[i]) { |
| 1663 | dev_dbg_f(zd_usb_dev(usb), |
| 1664 | "rd[%d] addr %#06hx expected %#06hx\n", i, |
| 1665 | le16_to_cpu(rd->addr), |
| 1666 | le16_to_cpu(req->addr[i])); |
| 1667 | return false; |
| 1668 | } |
| 1669 | } |
| 1670 | |
| 1671 | return true; |
| 1672 | } |
| 1673 | |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 1674 | static int get_results(struct zd_usb *usb, u16 *values, |
Jussi Kivilinna | c900eff | 2011-06-20 14:42:44 +0300 | [diff] [blame] | 1675 | struct usb_req_read_regs *req, unsigned int count, |
| 1676 | bool *retry) |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 1677 | { |
| 1678 | int r; |
| 1679 | int i; |
| 1680 | struct zd_usb_interrupt *intr = &usb->intr; |
| 1681 | struct read_regs_int *rr = &intr->read_regs; |
| 1682 | struct usb_int_regs *regs = (struct usb_int_regs *)rr->buffer; |
| 1683 | |
Ulrich Kunitz | a68077d | 2006-11-22 00:06:06 +0000 | [diff] [blame] | 1684 | spin_lock_irq(&intr->lock); |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 1685 | |
| 1686 | r = -EIO; |
Jussi Kivilinna | c900eff | 2011-06-20 14:42:44 +0300 | [diff] [blame] | 1687 | |
| 1688 | /* Read failed because firmware bug? */ |
| 1689 | *retry = !!intr->read_regs_int_overridden; |
| 1690 | if (*retry) |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 1691 | goto error_unlock; |
Jussi Kivilinna | c900eff | 2011-06-20 14:42:44 +0300 | [diff] [blame] | 1692 | |
| 1693 | if (!check_read_regs(usb, req, count)) { |
| 1694 | dev_dbg_f(zd_usb_dev(usb), "error: invalid read regs\n"); |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 1695 | goto error_unlock; |
| 1696 | } |
| 1697 | |
| 1698 | for (i = 0; i < count; i++) { |
| 1699 | struct reg_data *rd = ®s->regs[i]; |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 1700 | values[i] = le16_to_cpu(rd->value); |
| 1701 | } |
| 1702 | |
| 1703 | r = 0; |
| 1704 | error_unlock: |
Ulrich Kunitz | a68077d | 2006-11-22 00:06:06 +0000 | [diff] [blame] | 1705 | spin_unlock_irq(&intr->lock); |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 1706 | return r; |
| 1707 | } |
| 1708 | |
| 1709 | int zd_usb_ioread16v(struct zd_usb *usb, u16 *values, |
| 1710 | const zd_addr_t *addresses, unsigned int count) |
| 1711 | { |
Jussi Kivilinna | c900eff | 2011-06-20 14:42:44 +0300 | [diff] [blame] | 1712 | int r, i, req_len, actual_req_len, try_count = 0; |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 1713 | struct usb_device *udev; |
| 1714 | struct usb_req_read_regs *req = NULL; |
| 1715 | unsigned long timeout; |
Jussi Kivilinna | c900eff | 2011-06-20 14:42:44 +0300 | [diff] [blame] | 1716 | bool retry = false; |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 1717 | |
| 1718 | if (count < 1) { |
| 1719 | dev_dbg_f(zd_usb_dev(usb), "error: count is zero\n"); |
| 1720 | return -EINVAL; |
| 1721 | } |
| 1722 | if (count > USB_MAX_IOREAD16_COUNT) { |
| 1723 | dev_dbg_f(zd_usb_dev(usb), |
| 1724 | "error: count %u exceeds possible max %u\n", |
| 1725 | count, USB_MAX_IOREAD16_COUNT); |
| 1726 | return -EINVAL; |
| 1727 | } |
| 1728 | if (in_atomic()) { |
| 1729 | dev_dbg_f(zd_usb_dev(usb), |
| 1730 | "error: io in atomic context not supported\n"); |
| 1731 | return -EWOULDBLOCK; |
| 1732 | } |
| 1733 | if (!usb_int_enabled(usb)) { |
Jussi Kivilinna | 9bca0c3 | 2011-01-31 20:49:14 +0200 | [diff] [blame] | 1734 | dev_dbg_f(zd_usb_dev(usb), |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 1735 | "error: usb interrupt not enabled\n"); |
| 1736 | return -EWOULDBLOCK; |
| 1737 | } |
| 1738 | |
Jussi Kivilinna | 9bca0c3 | 2011-01-31 20:49:14 +0200 | [diff] [blame] | 1739 | ZD_ASSERT(mutex_is_locked(&zd_usb_to_chip(usb)->mutex)); |
| 1740 | BUILD_BUG_ON(sizeof(struct usb_req_read_regs) + USB_MAX_IOREAD16_COUNT * |
| 1741 | sizeof(__le16) > sizeof(usb->req_buf)); |
| 1742 | BUG_ON(sizeof(struct usb_req_read_regs) + count * sizeof(__le16) > |
| 1743 | sizeof(usb->req_buf)); |
| 1744 | |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 1745 | req_len = sizeof(struct usb_req_read_regs) + count * sizeof(__le16); |
Jussi Kivilinna | 9bca0c3 | 2011-01-31 20:49:14 +0200 | [diff] [blame] | 1746 | req = (void *)usb->req_buf; |
| 1747 | |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 1748 | req->id = cpu_to_le16(USB_REQ_READ_REGS); |
| 1749 | for (i = 0; i < count; i++) |
Daniel Drake | 0ce34bc | 2006-12-12 01:26:11 +0000 | [diff] [blame] | 1750 | req->addr[i] = cpu_to_le16((u16)addresses[i]); |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 1751 | |
Jussi Kivilinna | c900eff | 2011-06-20 14:42:44 +0300 | [diff] [blame] | 1752 | retry_read: |
| 1753 | try_count++; |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 1754 | udev = zd_usb_to_usbdev(usb); |
Jussi Kivilinna | c900eff | 2011-06-20 14:42:44 +0300 | [diff] [blame] | 1755 | prepare_read_regs_int(usb, req, count); |
Jussi Kivilinna | 59342f6 | 2011-05-30 10:15:47 +0300 | [diff] [blame] | 1756 | r = zd_ep_regs_out_msg(udev, req, req_len, &actual_req_len, 50 /*ms*/); |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 1757 | if (r) { |
| 1758 | dev_dbg_f(zd_usb_dev(usb), |
Jussi Kivilinna | 59342f6 | 2011-05-30 10:15:47 +0300 | [diff] [blame] | 1759 | "error in zd_ep_regs_out_msg(). Error number %d\n", r); |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 1760 | goto error; |
| 1761 | } |
| 1762 | if (req_len != actual_req_len) { |
Jussi Kivilinna | 59342f6 | 2011-05-30 10:15:47 +0300 | [diff] [blame] | 1763 | dev_dbg_f(zd_usb_dev(usb), "error in zd_ep_regs_out_msg()\n" |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 1764 | " req_len %d != actual_req_len %d\n", |
| 1765 | req_len, actual_req_len); |
| 1766 | r = -EIO; |
| 1767 | goto error; |
| 1768 | } |
| 1769 | |
| 1770 | timeout = wait_for_completion_timeout(&usb->intr.read_regs.completion, |
Jussi Kivilinna | 8f2d8f8 | 2011-01-31 20:49:33 +0200 | [diff] [blame] | 1771 | msecs_to_jiffies(50)); |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 1772 | if (!timeout) { |
| 1773 | disable_read_regs_int(usb); |
| 1774 | dev_dbg_f(zd_usb_dev(usb), "read timed out\n"); |
| 1775 | r = -ETIMEDOUT; |
| 1776 | goto error; |
| 1777 | } |
| 1778 | |
Jussi Kivilinna | c900eff | 2011-06-20 14:42:44 +0300 | [diff] [blame] | 1779 | r = get_results(usb, values, req, count, &retry); |
| 1780 | if (retry && try_count < 20) { |
| 1781 | dev_dbg_f(zd_usb_dev(usb), "read retry, tries so far: %d\n", |
| 1782 | try_count); |
| 1783 | goto retry_read; |
| 1784 | } |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 1785 | error: |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 1786 | return r; |
| 1787 | } |
| 1788 | |
Jussi Kivilinna | eefdbec | 2011-02-12 20:43:32 +0200 | [diff] [blame] | 1789 | static void iowrite16v_urb_complete(struct urb *urb) |
| 1790 | { |
| 1791 | struct zd_usb *usb = urb->context; |
| 1792 | |
| 1793 | if (urb->status && !usb->cmd_error) |
| 1794 | usb->cmd_error = urb->status; |
Jussi Kivilinna | 2fc713b | 2011-04-01 19:34:08 +0300 | [diff] [blame] | 1795 | |
| 1796 | if (!usb->cmd_error && |
| 1797 | urb->actual_length != urb->transfer_buffer_length) |
| 1798 | usb->cmd_error = -EIO; |
Jussi Kivilinna | eefdbec | 2011-02-12 20:43:32 +0200 | [diff] [blame] | 1799 | } |
| 1800 | |
| 1801 | static int zd_submit_waiting_urb(struct zd_usb *usb, bool last) |
| 1802 | { |
Jussi Kivilinna | 8662b25 | 2011-02-12 20:43:42 +0200 | [diff] [blame] | 1803 | int r = 0; |
Jussi Kivilinna | eefdbec | 2011-02-12 20:43:32 +0200 | [diff] [blame] | 1804 | struct urb *urb = usb->urb_async_waiting; |
| 1805 | |
| 1806 | if (!urb) |
| 1807 | return 0; |
| 1808 | |
| 1809 | usb->urb_async_waiting = NULL; |
| 1810 | |
| 1811 | if (!last) |
| 1812 | urb->transfer_flags |= URB_NO_INTERRUPT; |
| 1813 | |
| 1814 | usb_anchor_urb(urb, &usb->submitted_cmds); |
| 1815 | r = usb_submit_urb(urb, GFP_KERNEL); |
| 1816 | if (r) { |
| 1817 | usb_unanchor_urb(urb); |
| 1818 | dev_dbg_f(zd_usb_dev(usb), |
| 1819 | "error in usb_submit_urb(). Error number %d\n", r); |
| 1820 | goto error; |
| 1821 | } |
| 1822 | |
| 1823 | /* fall-through with r == 0 */ |
| 1824 | error: |
| 1825 | usb_free_urb(urb); |
| 1826 | return r; |
| 1827 | } |
| 1828 | |
Jussi Kivilinna | 8662b25 | 2011-02-12 20:43:42 +0200 | [diff] [blame] | 1829 | void zd_usb_iowrite16v_async_start(struct zd_usb *usb) |
Jussi Kivilinna | eefdbec | 2011-02-12 20:43:32 +0200 | [diff] [blame] | 1830 | { |
| 1831 | ZD_ASSERT(usb_anchor_empty(&usb->submitted_cmds)); |
| 1832 | ZD_ASSERT(usb->urb_async_waiting == NULL); |
| 1833 | ZD_ASSERT(!usb->in_async); |
| 1834 | |
| 1835 | ZD_ASSERT(mutex_is_locked(&zd_usb_to_chip(usb)->mutex)); |
| 1836 | |
| 1837 | usb->in_async = 1; |
| 1838 | usb->cmd_error = 0; |
| 1839 | usb->urb_async_waiting = NULL; |
| 1840 | } |
| 1841 | |
Jussi Kivilinna | 8662b25 | 2011-02-12 20:43:42 +0200 | [diff] [blame] | 1842 | int zd_usb_iowrite16v_async_end(struct zd_usb *usb, unsigned int timeout) |
Jussi Kivilinna | eefdbec | 2011-02-12 20:43:32 +0200 | [diff] [blame] | 1843 | { |
| 1844 | int r; |
| 1845 | |
| 1846 | ZD_ASSERT(mutex_is_locked(&zd_usb_to_chip(usb)->mutex)); |
| 1847 | ZD_ASSERT(usb->in_async); |
| 1848 | |
| 1849 | /* Submit last iowrite16v URB */ |
| 1850 | r = zd_submit_waiting_urb(usb, true); |
| 1851 | if (r) { |
| 1852 | dev_dbg_f(zd_usb_dev(usb), |
| 1853 | "error in zd_submit_waiting_usb(). " |
| 1854 | "Error number %d\n", r); |
| 1855 | |
| 1856 | usb_kill_anchored_urbs(&usb->submitted_cmds); |
| 1857 | goto error; |
| 1858 | } |
| 1859 | |
| 1860 | if (timeout) |
| 1861 | timeout = usb_wait_anchor_empty_timeout(&usb->submitted_cmds, |
| 1862 | timeout); |
| 1863 | if (!timeout) { |
| 1864 | usb_kill_anchored_urbs(&usb->submitted_cmds); |
| 1865 | if (usb->cmd_error == -ENOENT) { |
| 1866 | dev_dbg_f(zd_usb_dev(usb), "timed out"); |
| 1867 | r = -ETIMEDOUT; |
| 1868 | goto error; |
| 1869 | } |
| 1870 | } |
| 1871 | |
| 1872 | r = usb->cmd_error; |
| 1873 | error: |
| 1874 | usb->in_async = 0; |
| 1875 | return r; |
| 1876 | } |
| 1877 | |
Jussi Kivilinna | 8662b25 | 2011-02-12 20:43:42 +0200 | [diff] [blame] | 1878 | int zd_usb_iowrite16v_async(struct zd_usb *usb, const struct zd_ioreq16 *ioreqs, |
| 1879 | unsigned int count) |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 1880 | { |
| 1881 | int r; |
| 1882 | struct usb_device *udev; |
| 1883 | struct usb_req_write_regs *req = NULL; |
Jussi Kivilinna | eefdbec | 2011-02-12 20:43:32 +0200 | [diff] [blame] | 1884 | int i, req_len; |
| 1885 | struct urb *urb; |
| 1886 | struct usb_host_endpoint *ep; |
| 1887 | |
| 1888 | ZD_ASSERT(mutex_is_locked(&zd_usb_to_chip(usb)->mutex)); |
| 1889 | ZD_ASSERT(usb->in_async); |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 1890 | |
| 1891 | if (count == 0) |
| 1892 | return 0; |
| 1893 | if (count > USB_MAX_IOWRITE16_COUNT) { |
| 1894 | dev_dbg_f(zd_usb_dev(usb), |
| 1895 | "error: count %u exceeds possible max %u\n", |
| 1896 | count, USB_MAX_IOWRITE16_COUNT); |
| 1897 | return -EINVAL; |
| 1898 | } |
| 1899 | if (in_atomic()) { |
| 1900 | dev_dbg_f(zd_usb_dev(usb), |
| 1901 | "error: io in atomic context not supported\n"); |
| 1902 | return -EWOULDBLOCK; |
| 1903 | } |
| 1904 | |
Jussi Kivilinna | eefdbec | 2011-02-12 20:43:32 +0200 | [diff] [blame] | 1905 | udev = zd_usb_to_usbdev(usb); |
| 1906 | |
| 1907 | ep = usb_pipe_endpoint(udev, usb_sndintpipe(udev, EP_REGS_OUT)); |
| 1908 | if (!ep) |
| 1909 | return -ENOENT; |
| 1910 | |
| 1911 | urb = usb_alloc_urb(0, GFP_KERNEL); |
| 1912 | if (!urb) |
| 1913 | return -ENOMEM; |
Jussi Kivilinna | 9bca0c3 | 2011-01-31 20:49:14 +0200 | [diff] [blame] | 1914 | |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 1915 | req_len = sizeof(struct usb_req_write_regs) + |
| 1916 | count * sizeof(struct reg_data); |
Jussi Kivilinna | eefdbec | 2011-02-12 20:43:32 +0200 | [diff] [blame] | 1917 | req = kmalloc(req_len, GFP_KERNEL); |
| 1918 | if (!req) { |
| 1919 | r = -ENOMEM; |
| 1920 | goto error; |
| 1921 | } |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 1922 | |
| 1923 | req->id = cpu_to_le16(USB_REQ_WRITE_REGS); |
| 1924 | for (i = 0; i < count; i++) { |
| 1925 | struct reg_data *rw = &req->reg_writes[i]; |
Daniel Drake | 0ce34bc | 2006-12-12 01:26:11 +0000 | [diff] [blame] | 1926 | rw->addr = cpu_to_le16((u16)ioreqs[i].addr); |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 1927 | rw->value = cpu_to_le16(ioreqs[i].value); |
| 1928 | } |
| 1929 | |
Jussi Kivilinna | 59342f6 | 2011-05-30 10:15:47 +0300 | [diff] [blame] | 1930 | /* In USB 2.0 mode endpoint is interrupt type. However in USB 1.1 mode |
| 1931 | * endpoint is bulk. Select correct type URB by endpoint descriptor. |
| 1932 | */ |
| 1933 | if (usb_endpoint_xfer_int(&ep->desc)) |
| 1934 | usb_fill_int_urb(urb, udev, usb_sndintpipe(udev, EP_REGS_OUT), |
| 1935 | req, req_len, iowrite16v_urb_complete, usb, |
| 1936 | ep->desc.bInterval); |
| 1937 | else |
| 1938 | usb_fill_bulk_urb(urb, udev, usb_sndbulkpipe(udev, EP_REGS_OUT), |
| 1939 | req, req_len, iowrite16v_urb_complete, usb); |
| 1940 | |
Jussi Kivilinna | 2fc713b | 2011-04-01 19:34:08 +0300 | [diff] [blame] | 1941 | urb->transfer_flags |= URB_FREE_BUFFER; |
Jussi Kivilinna | eefdbec | 2011-02-12 20:43:32 +0200 | [diff] [blame] | 1942 | |
| 1943 | /* Submit previous URB */ |
| 1944 | r = zd_submit_waiting_urb(usb, false); |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 1945 | if (r) { |
| 1946 | dev_dbg_f(zd_usb_dev(usb), |
Jussi Kivilinna | eefdbec | 2011-02-12 20:43:32 +0200 | [diff] [blame] | 1947 | "error in zd_submit_waiting_usb(). " |
| 1948 | "Error number %d\n", r); |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 1949 | goto error; |
| 1950 | } |
| 1951 | |
Jussi Kivilinna | eefdbec | 2011-02-12 20:43:32 +0200 | [diff] [blame] | 1952 | /* Delay submit so that URB_NO_INTERRUPT flag can be set for all URBs |
| 1953 | * of currect batch except for very last. |
| 1954 | */ |
| 1955 | usb->urb_async_waiting = urb; |
| 1956 | return 0; |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 1957 | error: |
Jussi Kivilinna | eefdbec | 2011-02-12 20:43:32 +0200 | [diff] [blame] | 1958 | usb_free_urb(urb); |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 1959 | return r; |
| 1960 | } |
| 1961 | |
Jussi Kivilinna | eefdbec | 2011-02-12 20:43:32 +0200 | [diff] [blame] | 1962 | int zd_usb_iowrite16v(struct zd_usb *usb, const struct zd_ioreq16 *ioreqs, |
| 1963 | unsigned int count) |
| 1964 | { |
| 1965 | int r; |
| 1966 | |
| 1967 | zd_usb_iowrite16v_async_start(usb); |
| 1968 | r = zd_usb_iowrite16v_async(usb, ioreqs, count); |
| 1969 | if (r) { |
| 1970 | zd_usb_iowrite16v_async_end(usb, 0); |
| 1971 | return r; |
| 1972 | } |
| 1973 | return zd_usb_iowrite16v_async_end(usb, 50 /* ms */); |
| 1974 | } |
| 1975 | |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 1976 | int zd_usb_rfwrite(struct zd_usb *usb, u32 value, u8 bits) |
| 1977 | { |
| 1978 | int r; |
| 1979 | struct usb_device *udev; |
| 1980 | struct usb_req_rfwrite *req = NULL; |
| 1981 | int i, req_len, actual_req_len; |
| 1982 | u16 bit_value_template; |
| 1983 | |
| 1984 | if (in_atomic()) { |
| 1985 | dev_dbg_f(zd_usb_dev(usb), |
| 1986 | "error: io in atomic context not supported\n"); |
| 1987 | return -EWOULDBLOCK; |
| 1988 | } |
| 1989 | if (bits < USB_MIN_RFWRITE_BIT_COUNT) { |
| 1990 | dev_dbg_f(zd_usb_dev(usb), |
| 1991 | "error: bits %d are smaller than" |
| 1992 | " USB_MIN_RFWRITE_BIT_COUNT %d\n", |
| 1993 | bits, USB_MIN_RFWRITE_BIT_COUNT); |
| 1994 | return -EINVAL; |
| 1995 | } |
| 1996 | if (bits > USB_MAX_RFWRITE_BIT_COUNT) { |
| 1997 | dev_dbg_f(zd_usb_dev(usb), |
| 1998 | "error: bits %d exceed USB_MAX_RFWRITE_BIT_COUNT %d\n", |
| 1999 | bits, USB_MAX_RFWRITE_BIT_COUNT); |
| 2000 | return -EINVAL; |
| 2001 | } |
| 2002 | #ifdef DEBUG |
| 2003 | if (value & (~0UL << bits)) { |
| 2004 | dev_dbg_f(zd_usb_dev(usb), |
| 2005 | "error: value %#09x has bits >= %d set\n", |
| 2006 | value, bits); |
| 2007 | return -EINVAL; |
| 2008 | } |
| 2009 | #endif /* DEBUG */ |
| 2010 | |
| 2011 | dev_dbg_f(zd_usb_dev(usb), "value %#09x bits %d\n", value, bits); |
| 2012 | |
Jussi Kivilinna | fbd5d17 | 2011-04-02 11:25:54 +0300 | [diff] [blame] | 2013 | r = zd_usb_ioread16(usb, &bit_value_template, ZD_CR203); |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 2014 | if (r) { |
| 2015 | dev_dbg_f(zd_usb_dev(usb), |
Jussi Kivilinna | fbd5d17 | 2011-04-02 11:25:54 +0300 | [diff] [blame] | 2016 | "error %d: Couldn't read ZD_CR203\n", r); |
Jussi Kivilinna | 9bca0c3 | 2011-01-31 20:49:14 +0200 | [diff] [blame] | 2017 | return r; |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 2018 | } |
| 2019 | bit_value_template &= ~(RF_IF_LE|RF_CLK|RF_DATA); |
| 2020 | |
Jussi Kivilinna | 9bca0c3 | 2011-01-31 20:49:14 +0200 | [diff] [blame] | 2021 | ZD_ASSERT(mutex_is_locked(&zd_usb_to_chip(usb)->mutex)); |
| 2022 | BUILD_BUG_ON(sizeof(struct usb_req_rfwrite) + |
| 2023 | USB_MAX_RFWRITE_BIT_COUNT * sizeof(__le16) > |
| 2024 | sizeof(usb->req_buf)); |
| 2025 | BUG_ON(sizeof(struct usb_req_rfwrite) + bits * sizeof(__le16) > |
| 2026 | sizeof(usb->req_buf)); |
| 2027 | |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 2028 | req_len = sizeof(struct usb_req_rfwrite) + bits * sizeof(__le16); |
Jussi Kivilinna | 9bca0c3 | 2011-01-31 20:49:14 +0200 | [diff] [blame] | 2029 | req = (void *)usb->req_buf; |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 2030 | |
| 2031 | req->id = cpu_to_le16(USB_REQ_WRITE_RF); |
| 2032 | /* 1: 3683a, but not used in ZYDAS driver */ |
| 2033 | req->value = cpu_to_le16(2); |
| 2034 | req->bits = cpu_to_le16(bits); |
| 2035 | |
| 2036 | for (i = 0; i < bits; i++) { |
| 2037 | u16 bv = bit_value_template; |
| 2038 | if (value & (1 << (bits-1-i))) |
| 2039 | bv |= RF_DATA; |
| 2040 | req->bit_values[i] = cpu_to_le16(bv); |
| 2041 | } |
| 2042 | |
| 2043 | udev = zd_usb_to_usbdev(usb); |
Jussi Kivilinna | 59342f6 | 2011-05-30 10:15:47 +0300 | [diff] [blame] | 2044 | r = zd_ep_regs_out_msg(udev, req, req_len, &actual_req_len, 50 /*ms*/); |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 2045 | if (r) { |
| 2046 | dev_dbg_f(zd_usb_dev(usb), |
Jussi Kivilinna | 59342f6 | 2011-05-30 10:15:47 +0300 | [diff] [blame] | 2047 | "error in zd_ep_regs_out_msg(). Error number %d\n", r); |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 2048 | goto out; |
| 2049 | } |
| 2050 | if (req_len != actual_req_len) { |
Jussi Kivilinna | 59342f6 | 2011-05-30 10:15:47 +0300 | [diff] [blame] | 2051 | dev_dbg_f(zd_usb_dev(usb), "error in zd_ep_regs_out_msg()" |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 2052 | " req_len %d != actual_req_len %d\n", |
| 2053 | req_len, actual_req_len); |
| 2054 | r = -EIO; |
| 2055 | goto out; |
| 2056 | } |
| 2057 | |
| 2058 | /* FALL-THROUGH with r == 0 */ |
| 2059 | out: |
Daniel Drake | e85d091 | 2006-06-02 17:11:32 +0100 | [diff] [blame] | 2060 | return r; |
| 2061 | } |