Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 1 | /* |
| 2 | * at76c503/at76c505 USB driver |
| 3 | * |
| 4 | * Copyright (c) 2002 - 2003 Oliver Kurth |
| 5 | * Copyright (c) 2004 Joerg Albert <joerg.albert@gmx.de> |
| 6 | * Copyright (c) 2004 Nick Jones |
| 7 | * Copyright (c) 2004 Balint Seeber <n0_5p4m_p13453@hotmail.com> |
| 8 | * Copyright (c) 2007 Guido Guenther <agx@sigxcpu.org> |
| 9 | * Copyright (c) 2007 Kalle Valo <kalle.valo@iki.fi> |
Sebastian Smolorz | a185045 | 2010-06-22 16:55:17 +0200 | [diff] [blame] | 10 | * Copyright (c) 2010 Sebastian Smolorz <sesmo@gmx.net> |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 11 | * |
| 12 | * This program is free software; you can redistribute it and/or |
| 13 | * modify it under the terms of the GNU General Public License as |
| 14 | * published by the Free Software Foundation; either version 2 of |
| 15 | * the License, or (at your option) any later version. |
| 16 | * |
| 17 | * This file is part of the Berlios driver for WLAN USB devices based on the |
| 18 | * Atmel AT76C503A/505/505A. |
| 19 | * |
| 20 | * Some iw_handler code was taken from airo.c, (C) 1999 Benjamin Reed |
| 21 | * |
Kalle Valo | ba3907e | 2009-02-21 09:53:37 +0200 | [diff] [blame] | 22 | * TODO list is at the wiki: |
| 23 | * |
| 24 | * http://wireless.kernel.org/en/users/Drivers/at76c50x-usb#TODO |
| 25 | * |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 26 | */ |
| 27 | |
| 28 | #include <linux/init.h> |
| 29 | #include <linux/kernel.h> |
| 30 | #include <linux/sched.h> |
| 31 | #include <linux/errno.h> |
| 32 | #include <linux/slab.h> |
| 33 | #include <linux/module.h> |
| 34 | #include <linux/spinlock.h> |
| 35 | #include <linux/list.h> |
| 36 | #include <linux/usb.h> |
| 37 | #include <linux/netdevice.h> |
| 38 | #include <linux/if_arp.h> |
| 39 | #include <linux/etherdevice.h> |
| 40 | #include <linux/ethtool.h> |
| 41 | #include <linux/wireless.h> |
| 42 | #include <net/iw_handler.h> |
| 43 | #include <net/ieee80211_radiotap.h> |
| 44 | #include <linux/firmware.h> |
| 45 | #include <linux/leds.h> |
| 46 | #include <net/mac80211.h> |
| 47 | |
| 48 | #include "at76c50x-usb.h" |
| 49 | |
| 50 | /* Version information */ |
| 51 | #define DRIVER_NAME "at76c50x-usb" |
| 52 | #define DRIVER_VERSION "0.17" |
| 53 | #define DRIVER_DESC "Atmel at76x USB Wireless LAN Driver" |
| 54 | |
| 55 | /* at76_debug bits */ |
| 56 | #define DBG_PROGRESS 0x00000001 /* authentication/accociation */ |
| 57 | #define DBG_BSS_TABLE 0x00000002 /* show BSS table after scans */ |
| 58 | #define DBG_IOCTL 0x00000004 /* ioctl calls / settings */ |
| 59 | #define DBG_MAC_STATE 0x00000008 /* MAC state transitions */ |
| 60 | #define DBG_TX_DATA 0x00000010 /* tx header */ |
| 61 | #define DBG_TX_DATA_CONTENT 0x00000020 /* tx content */ |
| 62 | #define DBG_TX_MGMT 0x00000040 /* tx management */ |
| 63 | #define DBG_RX_DATA 0x00000080 /* rx data header */ |
| 64 | #define DBG_RX_DATA_CONTENT 0x00000100 /* rx data content */ |
| 65 | #define DBG_RX_MGMT 0x00000200 /* rx mgmt frame headers */ |
| 66 | #define DBG_RX_BEACON 0x00000400 /* rx beacon */ |
| 67 | #define DBG_RX_CTRL 0x00000800 /* rx control */ |
| 68 | #define DBG_RX_MGMT_CONTENT 0x00001000 /* rx mgmt content */ |
| 69 | #define DBG_RX_FRAGS 0x00002000 /* rx data fragment handling */ |
| 70 | #define DBG_DEVSTART 0x00004000 /* fw download, device start */ |
| 71 | #define DBG_URB 0x00008000 /* rx urb status, ... */ |
| 72 | #define DBG_RX_ATMEL_HDR 0x00010000 /* Atmel-specific Rx headers */ |
| 73 | #define DBG_PROC_ENTRY 0x00020000 /* procedure entries/exits */ |
| 74 | #define DBG_PM 0x00040000 /* power management settings */ |
| 75 | #define DBG_BSS_MATCH 0x00080000 /* BSS match failures */ |
| 76 | #define DBG_PARAMS 0x00100000 /* show configured parameters */ |
| 77 | #define DBG_WAIT_COMPLETE 0x00200000 /* command completion */ |
| 78 | #define DBG_RX_FRAGS_SKB 0x00400000 /* skb header of Rx fragments */ |
| 79 | #define DBG_BSS_TABLE_RM 0x00800000 /* purging bss table entries */ |
| 80 | #define DBG_MONITOR_MODE 0x01000000 /* monitor mode */ |
| 81 | #define DBG_MIB 0x02000000 /* dump all MIBs on startup */ |
| 82 | #define DBG_MGMT_TIMER 0x04000000 /* dump mgmt_timer ops */ |
| 83 | #define DBG_WE_EVENTS 0x08000000 /* dump wireless events */ |
| 84 | #define DBG_FW 0x10000000 /* firmware download */ |
| 85 | #define DBG_DFU 0x20000000 /* device firmware upgrade */ |
| 86 | #define DBG_CMD 0x40000000 |
| 87 | #define DBG_MAC80211 0x80000000 |
| 88 | |
| 89 | #define DBG_DEFAULTS 0 |
| 90 | |
| 91 | /* Use our own dbg macro */ |
Joe Perches | 903c99d | 2010-07-26 14:39:59 -0700 | [diff] [blame] | 92 | #define at76_dbg(bits, format, arg...) \ |
| 93 | do { \ |
| 94 | if (at76_debug & (bits)) \ |
| 95 | printk(KERN_DEBUG DRIVER_NAME ": " format "\n", ##arg); \ |
| 96 | } while (0) |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 97 | |
Joe Perches | 903c99d | 2010-07-26 14:39:59 -0700 | [diff] [blame] | 98 | #define at76_dbg_dump(bits, buf, len, format, arg...) \ |
| 99 | do { \ |
| 100 | if (at76_debug & (bits)) { \ |
| 101 | printk(KERN_DEBUG DRIVER_NAME ": " format "\n", ##arg); \ |
| 102 | print_hex_dump_bytes("", DUMP_PREFIX_OFFSET, buf, len); \ |
| 103 | } \ |
| 104 | } while (0) |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 105 | |
Jason Andryuk | 2ce4f9d | 2009-02-18 22:41:04 +0200 | [diff] [blame] | 106 | static uint at76_debug = DBG_DEFAULTS; |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 107 | |
| 108 | /* Protect against concurrent firmware loading and parsing */ |
| 109 | static struct mutex fw_mutex; |
| 110 | |
| 111 | static struct fwentry firmwares[] = { |
| 112 | [0] = { "" }, |
| 113 | [BOARD_503_ISL3861] = { "atmel_at76c503-i3861.bin" }, |
| 114 | [BOARD_503_ISL3863] = { "atmel_at76c503-i3863.bin" }, |
| 115 | [BOARD_503] = { "atmel_at76c503-rfmd.bin" }, |
| 116 | [BOARD_503_ACC] = { "atmel_at76c503-rfmd-acc.bin" }, |
| 117 | [BOARD_505] = { "atmel_at76c505-rfmd.bin" }, |
| 118 | [BOARD_505_2958] = { "atmel_at76c505-rfmd2958.bin" }, |
| 119 | [BOARD_505A] = { "atmel_at76c505a-rfmd2958.bin" }, |
| 120 | [BOARD_505AMX] = { "atmel_at76c505amx-rfmd.bin" }, |
| 121 | }; |
Ben Hutchings | 202982d | 2009-11-07 21:56:08 +0000 | [diff] [blame] | 122 | MODULE_FIRMWARE("atmel_at76c503-i3861.bin"); |
| 123 | MODULE_FIRMWARE("atmel_at76c503-i3863.bin"); |
| 124 | MODULE_FIRMWARE("atmel_at76c503-rfmd.bin"); |
| 125 | MODULE_FIRMWARE("atmel_at76c503-rfmd-acc.bin"); |
| 126 | MODULE_FIRMWARE("atmel_at76c505-rfmd.bin"); |
| 127 | MODULE_FIRMWARE("atmel_at76c505-rfmd2958.bin"); |
| 128 | MODULE_FIRMWARE("atmel_at76c505a-rfmd2958.bin"); |
| 129 | MODULE_FIRMWARE("atmel_at76c505amx-rfmd.bin"); |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 130 | |
| 131 | #define USB_DEVICE_DATA(__ops) .driver_info = (kernel_ulong_t)(__ops) |
| 132 | |
| 133 | static struct usb_device_id dev_table[] = { |
| 134 | /* |
| 135 | * at76c503-i3861 |
| 136 | */ |
| 137 | /* Generic AT76C503/3861 device */ |
| 138 | { USB_DEVICE(0x03eb, 0x7603), USB_DEVICE_DATA(BOARD_503_ISL3861) }, |
| 139 | /* Linksys WUSB11 v2.1/v2.6 */ |
| 140 | { USB_DEVICE(0x066b, 0x2211), USB_DEVICE_DATA(BOARD_503_ISL3861) }, |
| 141 | /* Netgear MA101 rev. A */ |
| 142 | { USB_DEVICE(0x0864, 0x4100), USB_DEVICE_DATA(BOARD_503_ISL3861) }, |
| 143 | /* Tekram U300C / Allnet ALL0193 */ |
| 144 | { USB_DEVICE(0x0b3b, 0x1612), USB_DEVICE_DATA(BOARD_503_ISL3861) }, |
| 145 | /* HP HN210W J7801A */ |
| 146 | { USB_DEVICE(0x03f0, 0x011c), USB_DEVICE_DATA(BOARD_503_ISL3861) }, |
| 147 | /* Sitecom/Z-Com/Zyxel M4Y-750 */ |
| 148 | { USB_DEVICE(0x0cde, 0x0001), USB_DEVICE_DATA(BOARD_503_ISL3861) }, |
| 149 | /* Dynalink/Askey WLL013 (intersil) */ |
| 150 | { USB_DEVICE(0x069a, 0x0320), USB_DEVICE_DATA(BOARD_503_ISL3861) }, |
| 151 | /* EZ connect 11Mpbs Wireless USB Adapter SMC2662W v1 */ |
| 152 | { USB_DEVICE(0x0d5c, 0xa001), USB_DEVICE_DATA(BOARD_503_ISL3861) }, |
| 153 | /* BenQ AWL300 */ |
| 154 | { USB_DEVICE(0x04a5, 0x9000), USB_DEVICE_DATA(BOARD_503_ISL3861) }, |
| 155 | /* Addtron AWU-120, Compex WLU11 */ |
| 156 | { USB_DEVICE(0x05dd, 0xff31), USB_DEVICE_DATA(BOARD_503_ISL3861) }, |
| 157 | /* Intel AP310 AnyPoint II USB */ |
| 158 | { USB_DEVICE(0x8086, 0x0200), USB_DEVICE_DATA(BOARD_503_ISL3861) }, |
| 159 | /* Dynalink L11U */ |
| 160 | { USB_DEVICE(0x0d8e, 0x7100), USB_DEVICE_DATA(BOARD_503_ISL3861) }, |
| 161 | /* Arescom WL-210, FCC id 07J-GL2411USB */ |
| 162 | { USB_DEVICE(0x0d8e, 0x7110), USB_DEVICE_DATA(BOARD_503_ISL3861) }, |
| 163 | /* I-O DATA WN-B11/USB */ |
| 164 | { USB_DEVICE(0x04bb, 0x0919), USB_DEVICE_DATA(BOARD_503_ISL3861) }, |
| 165 | /* BT Voyager 1010 */ |
| 166 | { USB_DEVICE(0x069a, 0x0821), USB_DEVICE_DATA(BOARD_503_ISL3861) }, |
| 167 | /* |
| 168 | * at76c503-i3863 |
| 169 | */ |
| 170 | /* Generic AT76C503/3863 device */ |
| 171 | { USB_DEVICE(0x03eb, 0x7604), USB_DEVICE_DATA(BOARD_503_ISL3863) }, |
| 172 | /* Samsung SWL-2100U */ |
| 173 | { USB_DEVICE(0x055d, 0xa000), USB_DEVICE_DATA(BOARD_503_ISL3863) }, |
| 174 | /* |
| 175 | * at76c503-rfmd |
| 176 | */ |
| 177 | /* Generic AT76C503/RFMD device */ |
| 178 | { USB_DEVICE(0x03eb, 0x7605), USB_DEVICE_DATA(BOARD_503) }, |
| 179 | /* Dynalink/Askey WLL013 (rfmd) */ |
| 180 | { USB_DEVICE(0x069a, 0x0321), USB_DEVICE_DATA(BOARD_503) }, |
| 181 | /* Linksys WUSB11 v2.6 */ |
| 182 | { USB_DEVICE(0x077b, 0x2219), USB_DEVICE_DATA(BOARD_503) }, |
| 183 | /* Network Everywhere NWU11B */ |
| 184 | { USB_DEVICE(0x077b, 0x2227), USB_DEVICE_DATA(BOARD_503) }, |
| 185 | /* Netgear MA101 rev. B */ |
| 186 | { USB_DEVICE(0x0864, 0x4102), USB_DEVICE_DATA(BOARD_503) }, |
| 187 | /* D-Link DWL-120 rev. E */ |
| 188 | { USB_DEVICE(0x2001, 0x3200), USB_DEVICE_DATA(BOARD_503) }, |
| 189 | /* Actiontec 802UAT1, HWU01150-01UK */ |
| 190 | { USB_DEVICE(0x1668, 0x7605), USB_DEVICE_DATA(BOARD_503) }, |
| 191 | /* AirVast W-Buddie WN210 */ |
| 192 | { USB_DEVICE(0x03eb, 0x4102), USB_DEVICE_DATA(BOARD_503) }, |
| 193 | /* Dick Smith Electronics XH1153 802.11b USB adapter */ |
| 194 | { USB_DEVICE(0x1371, 0x5743), USB_DEVICE_DATA(BOARD_503) }, |
| 195 | /* CNet CNUSB611 */ |
| 196 | { USB_DEVICE(0x1371, 0x0001), USB_DEVICE_DATA(BOARD_503) }, |
| 197 | /* FiberLine FL-WL200U */ |
| 198 | { USB_DEVICE(0x1371, 0x0002), USB_DEVICE_DATA(BOARD_503) }, |
| 199 | /* BenQ AWL400 USB stick */ |
| 200 | { USB_DEVICE(0x04a5, 0x9001), USB_DEVICE_DATA(BOARD_503) }, |
| 201 | /* 3Com 3CRSHEW696 */ |
| 202 | { USB_DEVICE(0x0506, 0x0a01), USB_DEVICE_DATA(BOARD_503) }, |
| 203 | /* Siemens Santis ADSL WLAN USB adapter WLL 013 */ |
| 204 | { USB_DEVICE(0x0681, 0x001b), USB_DEVICE_DATA(BOARD_503) }, |
| 205 | /* Belkin F5D6050, version 2 */ |
| 206 | { USB_DEVICE(0x050d, 0x0050), USB_DEVICE_DATA(BOARD_503) }, |
| 207 | /* iBlitzz, BWU613 (not *B or *SB) */ |
| 208 | { USB_DEVICE(0x07b8, 0xb000), USB_DEVICE_DATA(BOARD_503) }, |
| 209 | /* Gigabyte GN-WLBM101 */ |
| 210 | { USB_DEVICE(0x1044, 0x8003), USB_DEVICE_DATA(BOARD_503) }, |
| 211 | /* Planex GW-US11S */ |
| 212 | { USB_DEVICE(0x2019, 0x3220), USB_DEVICE_DATA(BOARD_503) }, |
| 213 | /* Internal WLAN adapter in h5[4,5]xx series iPAQs */ |
| 214 | { USB_DEVICE(0x049f, 0x0032), USB_DEVICE_DATA(BOARD_503) }, |
| 215 | /* Corega Wireless LAN USB-11 mini */ |
| 216 | { USB_DEVICE(0x07aa, 0x0011), USB_DEVICE_DATA(BOARD_503) }, |
| 217 | /* Corega Wireless LAN USB-11 mini2 */ |
| 218 | { USB_DEVICE(0x07aa, 0x0018), USB_DEVICE_DATA(BOARD_503) }, |
| 219 | /* Uniden PCW100 */ |
| 220 | { USB_DEVICE(0x05dd, 0xff35), USB_DEVICE_DATA(BOARD_503) }, |
| 221 | /* |
| 222 | * at76c503-rfmd-acc |
| 223 | */ |
| 224 | /* SMC2664W */ |
| 225 | { USB_DEVICE(0x083a, 0x3501), USB_DEVICE_DATA(BOARD_503_ACC) }, |
| 226 | /* Belkin F5D6050, SMC2662W v2, SMC2662W-AR */ |
| 227 | { USB_DEVICE(0x0d5c, 0xa002), USB_DEVICE_DATA(BOARD_503_ACC) }, |
| 228 | /* |
| 229 | * at76c505-rfmd |
| 230 | */ |
| 231 | /* Generic AT76C505/RFMD */ |
| 232 | { USB_DEVICE(0x03eb, 0x7606), USB_DEVICE_DATA(BOARD_505) }, |
| 233 | /* |
| 234 | * at76c505-rfmd2958 |
| 235 | */ |
| 236 | /* Generic AT76C505/RFMD, OvisLink WL-1130USB */ |
| 237 | { USB_DEVICE(0x03eb, 0x7613), USB_DEVICE_DATA(BOARD_505_2958) }, |
| 238 | /* Fiberline FL-WL240U */ |
| 239 | { USB_DEVICE(0x1371, 0x0014), USB_DEVICE_DATA(BOARD_505_2958) }, |
| 240 | /* CNet CNUSB-611G */ |
| 241 | { USB_DEVICE(0x1371, 0x0013), USB_DEVICE_DATA(BOARD_505_2958) }, |
| 242 | /* Linksys WUSB11 v2.8 */ |
| 243 | { USB_DEVICE(0x1915, 0x2233), USB_DEVICE_DATA(BOARD_505_2958) }, |
| 244 | /* Xterasys XN-2122B, IBlitzz BWU613B/BWU613SB */ |
| 245 | { USB_DEVICE(0x12fd, 0x1001), USB_DEVICE_DATA(BOARD_505_2958) }, |
| 246 | /* Corega WLAN USB Stick 11 */ |
| 247 | { USB_DEVICE(0x07aa, 0x7613), USB_DEVICE_DATA(BOARD_505_2958) }, |
| 248 | /* Microstar MSI Box MS6978 */ |
| 249 | { USB_DEVICE(0x0db0, 0x1020), USB_DEVICE_DATA(BOARD_505_2958) }, |
| 250 | /* |
| 251 | * at76c505a-rfmd2958 |
| 252 | */ |
| 253 | /* Generic AT76C505A device */ |
| 254 | { USB_DEVICE(0x03eb, 0x7614), USB_DEVICE_DATA(BOARD_505A) }, |
| 255 | /* Generic AT76C505AS device */ |
| 256 | { USB_DEVICE(0x03eb, 0x7617), USB_DEVICE_DATA(BOARD_505A) }, |
| 257 | /* Siemens Gigaset USB WLAN Adapter 11 */ |
| 258 | { USB_DEVICE(0x1690, 0x0701), USB_DEVICE_DATA(BOARD_505A) }, |
Jamie Lentin | 02a9a39 | 2009-04-07 22:59:56 +0100 | [diff] [blame] | 259 | /* OQO Model 01+ Internal Wi-Fi */ |
| 260 | { USB_DEVICE(0x1557, 0x0002), USB_DEVICE_DATA(BOARD_505A) }, |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 261 | /* |
| 262 | * at76c505amx-rfmd |
| 263 | */ |
| 264 | /* Generic AT76C505AMX device */ |
| 265 | { USB_DEVICE(0x03eb, 0x7615), USB_DEVICE_DATA(BOARD_505AMX) }, |
| 266 | { } |
| 267 | }; |
| 268 | |
| 269 | MODULE_DEVICE_TABLE(usb, dev_table); |
| 270 | |
| 271 | /* Supported rates of this hardware, bit 7 marks basic rates */ |
| 272 | static const u8 hw_rates[] = { 0x82, 0x84, 0x0b, 0x16 }; |
| 273 | |
| 274 | static const char *const preambles[] = { "long", "short", "auto" }; |
| 275 | |
| 276 | /* Firmware download */ |
| 277 | /* DFU states */ |
| 278 | #define STATE_IDLE 0x00 |
| 279 | #define STATE_DETACH 0x01 |
| 280 | #define STATE_DFU_IDLE 0x02 |
| 281 | #define STATE_DFU_DOWNLOAD_SYNC 0x03 |
| 282 | #define STATE_DFU_DOWNLOAD_BUSY 0x04 |
| 283 | #define STATE_DFU_DOWNLOAD_IDLE 0x05 |
| 284 | #define STATE_DFU_MANIFEST_SYNC 0x06 |
| 285 | #define STATE_DFU_MANIFEST 0x07 |
| 286 | #define STATE_DFU_MANIFEST_WAIT_RESET 0x08 |
| 287 | #define STATE_DFU_UPLOAD_IDLE 0x09 |
| 288 | #define STATE_DFU_ERROR 0x0a |
| 289 | |
| 290 | /* DFU commands */ |
| 291 | #define DFU_DETACH 0 |
| 292 | #define DFU_DNLOAD 1 |
| 293 | #define DFU_UPLOAD 2 |
| 294 | #define DFU_GETSTATUS 3 |
| 295 | #define DFU_CLRSTATUS 4 |
| 296 | #define DFU_GETSTATE 5 |
| 297 | #define DFU_ABORT 6 |
| 298 | |
| 299 | #define FW_BLOCK_SIZE 1024 |
| 300 | |
| 301 | struct dfu_status { |
| 302 | unsigned char status; |
| 303 | unsigned char poll_timeout[3]; |
| 304 | unsigned char state; |
| 305 | unsigned char string; |
Eric Dumazet | ba2d358 | 2010-06-02 18:10:09 +0000 | [diff] [blame] | 306 | } __packed; |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 307 | |
| 308 | static inline int at76_is_intersil(enum board_type board) |
| 309 | { |
| 310 | return (board == BOARD_503_ISL3861 || board == BOARD_503_ISL3863); |
| 311 | } |
| 312 | |
| 313 | static inline int at76_is_503rfmd(enum board_type board) |
| 314 | { |
| 315 | return (board == BOARD_503 || board == BOARD_503_ACC); |
| 316 | } |
| 317 | |
| 318 | static inline int at76_is_505a(enum board_type board) |
| 319 | { |
| 320 | return (board == BOARD_505A || board == BOARD_505AMX); |
| 321 | } |
| 322 | |
| 323 | /* Load a block of the first (internal) part of the firmware */ |
| 324 | static int at76_load_int_fw_block(struct usb_device *udev, int blockno, |
| 325 | void *block, int size) |
| 326 | { |
| 327 | return usb_control_msg(udev, usb_sndctrlpipe(udev, 0), DFU_DNLOAD, |
| 328 | USB_TYPE_CLASS | USB_DIR_OUT | |
| 329 | USB_RECIP_INTERFACE, blockno, 0, block, size, |
| 330 | USB_CTRL_GET_TIMEOUT); |
| 331 | } |
| 332 | |
| 333 | static int at76_dfu_get_status(struct usb_device *udev, |
| 334 | struct dfu_status *status) |
| 335 | { |
| 336 | int ret; |
| 337 | |
| 338 | ret = usb_control_msg(udev, usb_rcvctrlpipe(udev, 0), DFU_GETSTATUS, |
| 339 | USB_TYPE_CLASS | USB_DIR_IN | USB_RECIP_INTERFACE, |
| 340 | 0, 0, status, sizeof(struct dfu_status), |
| 341 | USB_CTRL_GET_TIMEOUT); |
| 342 | return ret; |
| 343 | } |
| 344 | |
Dan Carpenter | 5d774b7 | 2012-08-09 09:57:30 +0300 | [diff] [blame] | 345 | static int at76_dfu_get_state(struct usb_device *udev, u8 *state) |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 346 | { |
| 347 | int ret; |
| 348 | |
| 349 | ret = usb_control_msg(udev, usb_rcvctrlpipe(udev, 0), DFU_GETSTATE, |
| 350 | USB_TYPE_CLASS | USB_DIR_IN | USB_RECIP_INTERFACE, |
| 351 | 0, 0, state, 1, USB_CTRL_GET_TIMEOUT); |
| 352 | return ret; |
| 353 | } |
| 354 | |
| 355 | /* Convert timeout from the DFU status to jiffies */ |
| 356 | static inline unsigned long at76_get_timeout(struct dfu_status *s) |
| 357 | { |
| 358 | return msecs_to_jiffies((s->poll_timeout[2] << 16) |
| 359 | | (s->poll_timeout[1] << 8) |
| 360 | | (s->poll_timeout[0])); |
| 361 | } |
| 362 | |
| 363 | /* Load internal firmware from the buffer. If manifest_sync_timeout > 0, use |
| 364 | * its value in jiffies in the MANIFEST_SYNC state. */ |
| 365 | static int at76_usbdfu_download(struct usb_device *udev, u8 *buf, u32 size, |
| 366 | int manifest_sync_timeout) |
| 367 | { |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 368 | int ret = 0; |
| 369 | int need_dfu_state = 1; |
| 370 | int is_done = 0; |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 371 | u32 dfu_timeout = 0; |
| 372 | int bsize = 0; |
| 373 | int blockno = 0; |
Andrea Merello | 174beab | 2014-05-24 17:07:12 +0200 | [diff] [blame] | 374 | struct dfu_status *dfu_stat_buf = NULL; |
| 375 | u8 *dfu_state = NULL; |
| 376 | u8 *block = NULL; |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 377 | |
| 378 | at76_dbg(DBG_DFU, "%s( %p, %u, %d)", __func__, buf, size, |
| 379 | manifest_sync_timeout); |
| 380 | |
| 381 | if (!size) { |
Joe Perches | 6a4b09f | 2012-10-28 01:05:47 -0700 | [diff] [blame] | 382 | dev_err(&udev->dev, "FW buffer length invalid!\n"); |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 383 | return -EINVAL; |
| 384 | } |
| 385 | |
Andrea Merello | 174beab | 2014-05-24 17:07:12 +0200 | [diff] [blame] | 386 | dfu_stat_buf = kmalloc(sizeof(struct dfu_status), GFP_KERNEL); |
| 387 | if (!dfu_stat_buf) { |
| 388 | ret = -ENOMEM; |
| 389 | goto exit; |
| 390 | } |
| 391 | |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 392 | block = kmalloc(FW_BLOCK_SIZE, GFP_KERNEL); |
Andrea Merello | 174beab | 2014-05-24 17:07:12 +0200 | [diff] [blame] | 393 | if (!block) { |
| 394 | ret = -ENOMEM; |
| 395 | goto exit; |
| 396 | } |
| 397 | |
| 398 | dfu_state = kmalloc(sizeof(u8), GFP_KERNEL); |
| 399 | if (!dfu_state) { |
| 400 | ret = -ENOMEM; |
| 401 | goto exit; |
| 402 | } |
| 403 | *dfu_state = 0; |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 404 | |
| 405 | do { |
| 406 | if (need_dfu_state) { |
Andrea Merello | 174beab | 2014-05-24 17:07:12 +0200 | [diff] [blame] | 407 | ret = at76_dfu_get_state(udev, dfu_state); |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 408 | if (ret < 0) { |
Joe Perches | 6a4b09f | 2012-10-28 01:05:47 -0700 | [diff] [blame] | 409 | dev_err(&udev->dev, |
| 410 | "cannot get DFU state: %d\n", ret); |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 411 | goto exit; |
| 412 | } |
| 413 | need_dfu_state = 0; |
| 414 | } |
| 415 | |
Andrea Merello | 174beab | 2014-05-24 17:07:12 +0200 | [diff] [blame] | 416 | switch (*dfu_state) { |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 417 | case STATE_DFU_DOWNLOAD_SYNC: |
| 418 | at76_dbg(DBG_DFU, "STATE_DFU_DOWNLOAD_SYNC"); |
Andrea Merello | 174beab | 2014-05-24 17:07:12 +0200 | [diff] [blame] | 419 | ret = at76_dfu_get_status(udev, dfu_stat_buf); |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 420 | if (ret >= 0) { |
Andrea Merello | 174beab | 2014-05-24 17:07:12 +0200 | [diff] [blame] | 421 | *dfu_state = dfu_stat_buf->state; |
| 422 | dfu_timeout = at76_get_timeout(dfu_stat_buf); |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 423 | need_dfu_state = 0; |
| 424 | } else |
Joe Perches | 6a4b09f | 2012-10-28 01:05:47 -0700 | [diff] [blame] | 425 | dev_err(&udev->dev, |
| 426 | "at76_dfu_get_status returned %d\n", |
| 427 | ret); |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 428 | break; |
| 429 | |
| 430 | case STATE_DFU_DOWNLOAD_BUSY: |
| 431 | at76_dbg(DBG_DFU, "STATE_DFU_DOWNLOAD_BUSY"); |
| 432 | need_dfu_state = 1; |
| 433 | |
| 434 | at76_dbg(DBG_DFU, "DFU: Resetting device"); |
| 435 | schedule_timeout_interruptible(dfu_timeout); |
| 436 | break; |
| 437 | |
| 438 | case STATE_DFU_DOWNLOAD_IDLE: |
| 439 | at76_dbg(DBG_DFU, "DOWNLOAD..."); |
| 440 | /* fall through */ |
| 441 | case STATE_DFU_IDLE: |
| 442 | at76_dbg(DBG_DFU, "DFU IDLE"); |
| 443 | |
| 444 | bsize = min_t(int, size, FW_BLOCK_SIZE); |
| 445 | memcpy(block, buf, bsize); |
| 446 | at76_dbg(DBG_DFU, "int fw, size left = %5d, " |
| 447 | "bsize = %4d, blockno = %2d", size, bsize, |
| 448 | blockno); |
| 449 | ret = |
| 450 | at76_load_int_fw_block(udev, blockno, block, bsize); |
| 451 | buf += bsize; |
| 452 | size -= bsize; |
| 453 | blockno++; |
| 454 | |
| 455 | if (ret != bsize) |
Joe Perches | 6a4b09f | 2012-10-28 01:05:47 -0700 | [diff] [blame] | 456 | dev_err(&udev->dev, |
| 457 | "at76_load_int_fw_block returned %d\n", |
| 458 | ret); |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 459 | need_dfu_state = 1; |
| 460 | break; |
| 461 | |
| 462 | case STATE_DFU_MANIFEST_SYNC: |
| 463 | at76_dbg(DBG_DFU, "STATE_DFU_MANIFEST_SYNC"); |
| 464 | |
Andrea Merello | 174beab | 2014-05-24 17:07:12 +0200 | [diff] [blame] | 465 | ret = at76_dfu_get_status(udev, dfu_stat_buf); |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 466 | if (ret < 0) |
| 467 | break; |
| 468 | |
Andrea Merello | 174beab | 2014-05-24 17:07:12 +0200 | [diff] [blame] | 469 | *dfu_state = dfu_stat_buf->state; |
| 470 | dfu_timeout = at76_get_timeout(dfu_stat_buf); |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 471 | need_dfu_state = 0; |
| 472 | |
| 473 | /* override the timeout from the status response, |
| 474 | needed for AT76C505A */ |
| 475 | if (manifest_sync_timeout > 0) |
| 476 | dfu_timeout = manifest_sync_timeout; |
| 477 | |
| 478 | at76_dbg(DBG_DFU, "DFU: Waiting for manifest phase"); |
| 479 | schedule_timeout_interruptible(dfu_timeout); |
| 480 | break; |
| 481 | |
| 482 | case STATE_DFU_MANIFEST: |
| 483 | at76_dbg(DBG_DFU, "STATE_DFU_MANIFEST"); |
| 484 | is_done = 1; |
| 485 | break; |
| 486 | |
| 487 | case STATE_DFU_MANIFEST_WAIT_RESET: |
| 488 | at76_dbg(DBG_DFU, "STATE_DFU_MANIFEST_WAIT_RESET"); |
| 489 | is_done = 1; |
| 490 | break; |
| 491 | |
| 492 | case STATE_DFU_UPLOAD_IDLE: |
| 493 | at76_dbg(DBG_DFU, "STATE_DFU_UPLOAD_IDLE"); |
| 494 | break; |
| 495 | |
| 496 | case STATE_DFU_ERROR: |
| 497 | at76_dbg(DBG_DFU, "STATE_DFU_ERROR"); |
| 498 | ret = -EPIPE; |
| 499 | break; |
| 500 | |
| 501 | default: |
Andrea Merello | 174beab | 2014-05-24 17:07:12 +0200 | [diff] [blame] | 502 | at76_dbg(DBG_DFU, "DFU UNKNOWN STATE (%d)", *dfu_state); |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 503 | ret = -EINVAL; |
| 504 | break; |
| 505 | } |
| 506 | } while (!is_done && (ret >= 0)); |
| 507 | |
| 508 | exit: |
Andrea Merello | 174beab | 2014-05-24 17:07:12 +0200 | [diff] [blame] | 509 | kfree(dfu_state); |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 510 | kfree(block); |
Andrea Merello | 174beab | 2014-05-24 17:07:12 +0200 | [diff] [blame] | 511 | kfree(dfu_stat_buf); |
| 512 | |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 513 | if (ret >= 0) |
| 514 | ret = 0; |
| 515 | |
| 516 | return ret; |
| 517 | } |
| 518 | |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 519 | /* LED trigger */ |
| 520 | static int tx_activity; |
| 521 | static void at76_ledtrig_tx_timerfunc(unsigned long data); |
| 522 | static DEFINE_TIMER(ledtrig_tx_timer, at76_ledtrig_tx_timerfunc, 0, 0); |
| 523 | DEFINE_LED_TRIGGER(ledtrig_tx); |
| 524 | |
| 525 | static void at76_ledtrig_tx_timerfunc(unsigned long data) |
| 526 | { |
| 527 | static int tx_lastactivity; |
| 528 | |
| 529 | if (tx_lastactivity != tx_activity) { |
| 530 | tx_lastactivity = tx_activity; |
| 531 | led_trigger_event(ledtrig_tx, LED_FULL); |
| 532 | mod_timer(&ledtrig_tx_timer, jiffies + HZ / 4); |
| 533 | } else |
| 534 | led_trigger_event(ledtrig_tx, LED_OFF); |
| 535 | } |
| 536 | |
| 537 | static void at76_ledtrig_tx_activity(void) |
| 538 | { |
| 539 | tx_activity++; |
| 540 | if (!timer_pending(&ledtrig_tx_timer)) |
| 541 | mod_timer(&ledtrig_tx_timer, jiffies + HZ / 4); |
| 542 | } |
| 543 | |
| 544 | static int at76_remap(struct usb_device *udev) |
| 545 | { |
| 546 | int ret; |
| 547 | ret = usb_control_msg(udev, usb_sndctrlpipe(udev, 0), 0x0a, |
| 548 | USB_TYPE_VENDOR | USB_DIR_OUT | |
| 549 | USB_RECIP_INTERFACE, 0, 0, NULL, 0, |
| 550 | USB_CTRL_GET_TIMEOUT); |
| 551 | if (ret < 0) |
| 552 | return ret; |
| 553 | return 0; |
| 554 | } |
| 555 | |
| 556 | static int at76_get_op_mode(struct usb_device *udev) |
| 557 | { |
| 558 | int ret; |
Jason Andryuk | 5a2137d | 2009-02-21 09:53:22 +0200 | [diff] [blame] | 559 | u8 saved; |
| 560 | u8 *op_mode; |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 561 | |
Jason Andryuk | 5a2137d | 2009-02-21 09:53:22 +0200 | [diff] [blame] | 562 | op_mode = kmalloc(1, GFP_NOIO); |
| 563 | if (!op_mode) |
| 564 | return -ENOMEM; |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 565 | ret = usb_control_msg(udev, usb_rcvctrlpipe(udev, 0), 0x33, |
| 566 | USB_TYPE_VENDOR | USB_DIR_IN | |
Jason Andryuk | 5a2137d | 2009-02-21 09:53:22 +0200 | [diff] [blame] | 567 | USB_RECIP_INTERFACE, 0x01, 0, op_mode, 1, |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 568 | USB_CTRL_GET_TIMEOUT); |
Jason Andryuk | 5a2137d | 2009-02-21 09:53:22 +0200 | [diff] [blame] | 569 | saved = *op_mode; |
| 570 | kfree(op_mode); |
| 571 | |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 572 | if (ret < 0) |
| 573 | return ret; |
| 574 | else if (ret < 1) |
| 575 | return -EIO; |
| 576 | else |
Jason Andryuk | 5a2137d | 2009-02-21 09:53:22 +0200 | [diff] [blame] | 577 | return saved; |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 578 | } |
| 579 | |
| 580 | /* Load a block of the second ("external") part of the firmware */ |
| 581 | static inline int at76_load_ext_fw_block(struct usb_device *udev, int blockno, |
| 582 | void *block, int size) |
| 583 | { |
| 584 | return usb_control_msg(udev, usb_sndctrlpipe(udev, 0), 0x0e, |
| 585 | USB_TYPE_VENDOR | USB_DIR_OUT | USB_RECIP_DEVICE, |
| 586 | 0x0802, blockno, block, size, |
| 587 | USB_CTRL_GET_TIMEOUT); |
| 588 | } |
| 589 | |
| 590 | static inline int at76_get_hw_cfg(struct usb_device *udev, |
| 591 | union at76_hwcfg *buf, int buf_size) |
| 592 | { |
| 593 | return usb_control_msg(udev, usb_rcvctrlpipe(udev, 0), 0x33, |
| 594 | USB_TYPE_VENDOR | USB_DIR_IN | |
| 595 | USB_RECIP_INTERFACE, 0x0a02, 0, |
| 596 | buf, buf_size, USB_CTRL_GET_TIMEOUT); |
| 597 | } |
| 598 | |
| 599 | /* Intersil boards use a different "value" for GetHWConfig requests */ |
| 600 | static inline int at76_get_hw_cfg_intersil(struct usb_device *udev, |
| 601 | union at76_hwcfg *buf, int buf_size) |
| 602 | { |
| 603 | return usb_control_msg(udev, usb_rcvctrlpipe(udev, 0), 0x33, |
| 604 | USB_TYPE_VENDOR | USB_DIR_IN | |
| 605 | USB_RECIP_INTERFACE, 0x0902, 0, |
| 606 | buf, buf_size, USB_CTRL_GET_TIMEOUT); |
| 607 | } |
| 608 | |
| 609 | /* Get the hardware configuration for the adapter and put it to the appropriate |
| 610 | * fields of 'priv' (the GetHWConfig request and interpretation of the result |
| 611 | * depends on the board type) */ |
| 612 | static int at76_get_hw_config(struct at76_priv *priv) |
| 613 | { |
| 614 | int ret; |
| 615 | union at76_hwcfg *hwcfg = kmalloc(sizeof(*hwcfg), GFP_KERNEL); |
| 616 | |
| 617 | if (!hwcfg) |
| 618 | return -ENOMEM; |
| 619 | |
| 620 | if (at76_is_intersil(priv->board_type)) { |
| 621 | ret = at76_get_hw_cfg_intersil(priv->udev, hwcfg, |
| 622 | sizeof(hwcfg->i)); |
| 623 | if (ret < 0) |
| 624 | goto exit; |
| 625 | memcpy(priv->mac_addr, hwcfg->i.mac_addr, ETH_ALEN); |
| 626 | priv->regulatory_domain = hwcfg->i.regulatory_domain; |
| 627 | } else if (at76_is_503rfmd(priv->board_type)) { |
| 628 | ret = at76_get_hw_cfg(priv->udev, hwcfg, sizeof(hwcfg->r3)); |
| 629 | if (ret < 0) |
| 630 | goto exit; |
| 631 | memcpy(priv->mac_addr, hwcfg->r3.mac_addr, ETH_ALEN); |
| 632 | priv->regulatory_domain = hwcfg->r3.regulatory_domain; |
| 633 | } else { |
| 634 | ret = at76_get_hw_cfg(priv->udev, hwcfg, sizeof(hwcfg->r5)); |
| 635 | if (ret < 0) |
| 636 | goto exit; |
| 637 | memcpy(priv->mac_addr, hwcfg->r5.mac_addr, ETH_ALEN); |
| 638 | priv->regulatory_domain = hwcfg->r5.regulatory_domain; |
| 639 | } |
| 640 | |
| 641 | exit: |
| 642 | kfree(hwcfg); |
| 643 | if (ret < 0) |
Joe Perches | 5db5584 | 2010-08-11 19:11:19 -0700 | [diff] [blame] | 644 | wiphy_err(priv->hw->wiphy, "cannot get HW Config (error %d)\n", |
Joe Perches | c96c31e | 2010-07-26 14:39:58 -0700 | [diff] [blame] | 645 | ret); |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 646 | |
| 647 | return ret; |
| 648 | } |
| 649 | |
| 650 | static struct reg_domain const *at76_get_reg_domain(u16 code) |
| 651 | { |
| 652 | int i; |
| 653 | static struct reg_domain const fd_tab[] = { |
| 654 | { 0x10, "FCC (USA)", 0x7ff }, /* ch 1-11 */ |
| 655 | { 0x20, "IC (Canada)", 0x7ff }, /* ch 1-11 */ |
| 656 | { 0x30, "ETSI (most of Europe)", 0x1fff }, /* ch 1-13 */ |
| 657 | { 0x31, "Spain", 0x600 }, /* ch 10-11 */ |
| 658 | { 0x32, "France", 0x1e00 }, /* ch 10-13 */ |
| 659 | { 0x40, "MKK (Japan)", 0x2000 }, /* ch 14 */ |
| 660 | { 0x41, "MKK1 (Japan)", 0x3fff }, /* ch 1-14 */ |
| 661 | { 0x50, "Israel", 0x3fc }, /* ch 3-9 */ |
| 662 | { 0x00, "<unknown>", 0xffffffff } /* ch 1-32 */ |
| 663 | }; |
| 664 | |
| 665 | /* Last entry is fallback for unknown domain code */ |
| 666 | for (i = 0; i < ARRAY_SIZE(fd_tab) - 1; i++) |
| 667 | if (code == fd_tab[i].code) |
| 668 | break; |
| 669 | |
| 670 | return &fd_tab[i]; |
| 671 | } |
| 672 | |
| 673 | static inline int at76_get_mib(struct usb_device *udev, u16 mib, void *buf, |
| 674 | int buf_size) |
| 675 | { |
| 676 | int ret; |
| 677 | |
| 678 | ret = usb_control_msg(udev, usb_rcvctrlpipe(udev, 0), 0x33, |
| 679 | USB_TYPE_VENDOR | USB_DIR_IN | |
| 680 | USB_RECIP_INTERFACE, mib << 8, 0, buf, buf_size, |
| 681 | USB_CTRL_GET_TIMEOUT); |
| 682 | if (ret >= 0 && ret != buf_size) |
| 683 | return -EIO; |
| 684 | return ret; |
| 685 | } |
| 686 | |
| 687 | /* Return positive number for status, negative for an error */ |
| 688 | static inline int at76_get_cmd_status(struct usb_device *udev, u8 cmd) |
| 689 | { |
Jason Andryuk | 5a2137d | 2009-02-21 09:53:22 +0200 | [diff] [blame] | 690 | u8 *stat_buf; |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 691 | int ret; |
| 692 | |
Jason Andryuk | 5a2137d | 2009-02-21 09:53:22 +0200 | [diff] [blame] | 693 | stat_buf = kmalloc(40, GFP_NOIO); |
| 694 | if (!stat_buf) |
| 695 | return -ENOMEM; |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 696 | |
Jason Andryuk | 5a2137d | 2009-02-21 09:53:22 +0200 | [diff] [blame] | 697 | ret = usb_control_msg(udev, usb_rcvctrlpipe(udev, 0), 0x22, |
| 698 | USB_TYPE_VENDOR | USB_DIR_IN | |
| 699 | USB_RECIP_INTERFACE, cmd, 0, stat_buf, |
| 700 | 40, USB_CTRL_GET_TIMEOUT); |
| 701 | if (ret >= 0) |
| 702 | ret = stat_buf[5]; |
| 703 | kfree(stat_buf); |
| 704 | |
| 705 | return ret; |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 706 | } |
| 707 | |
| 708 | #define MAKE_CMD_CASE(c) case (c): return #c |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 709 | static const char *at76_get_cmd_string(u8 cmd_status) |
| 710 | { |
| 711 | switch (cmd_status) { |
| 712 | MAKE_CMD_CASE(CMD_SET_MIB); |
| 713 | MAKE_CMD_CASE(CMD_GET_MIB); |
| 714 | MAKE_CMD_CASE(CMD_SCAN); |
| 715 | MAKE_CMD_CASE(CMD_JOIN); |
| 716 | MAKE_CMD_CASE(CMD_START_IBSS); |
| 717 | MAKE_CMD_CASE(CMD_RADIO_ON); |
| 718 | MAKE_CMD_CASE(CMD_RADIO_OFF); |
| 719 | MAKE_CMD_CASE(CMD_STARTUP); |
| 720 | } |
| 721 | |
| 722 | return "UNKNOWN"; |
| 723 | } |
| 724 | |
Jason Andryuk | 5a2137d | 2009-02-21 09:53:22 +0200 | [diff] [blame] | 725 | static int at76_set_card_command(struct usb_device *udev, u8 cmd, void *buf, |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 726 | int buf_size) |
| 727 | { |
| 728 | int ret; |
| 729 | struct at76_command *cmd_buf = kmalloc(sizeof(struct at76_command) + |
| 730 | buf_size, GFP_KERNEL); |
| 731 | |
| 732 | if (!cmd_buf) |
| 733 | return -ENOMEM; |
| 734 | |
| 735 | cmd_buf->cmd = cmd; |
| 736 | cmd_buf->reserved = 0; |
| 737 | cmd_buf->size = cpu_to_le16(buf_size); |
| 738 | memcpy(cmd_buf->data, buf, buf_size); |
| 739 | |
| 740 | at76_dbg_dump(DBG_CMD, cmd_buf, sizeof(struct at76_command) + buf_size, |
| 741 | "issuing command %s (0x%02x)", |
| 742 | at76_get_cmd_string(cmd), cmd); |
| 743 | |
| 744 | ret = usb_control_msg(udev, usb_sndctrlpipe(udev, 0), 0x0e, |
| 745 | USB_TYPE_VENDOR | USB_DIR_OUT | USB_RECIP_DEVICE, |
| 746 | 0, 0, cmd_buf, |
| 747 | sizeof(struct at76_command) + buf_size, |
| 748 | USB_CTRL_GET_TIMEOUT); |
| 749 | kfree(cmd_buf); |
| 750 | return ret; |
| 751 | } |
| 752 | |
| 753 | #define MAKE_CMD_STATUS_CASE(c) case (c): return #c |
| 754 | static const char *at76_get_cmd_status_string(u8 cmd_status) |
| 755 | { |
| 756 | switch (cmd_status) { |
| 757 | MAKE_CMD_STATUS_CASE(CMD_STATUS_IDLE); |
| 758 | MAKE_CMD_STATUS_CASE(CMD_STATUS_COMPLETE); |
| 759 | MAKE_CMD_STATUS_CASE(CMD_STATUS_UNKNOWN); |
| 760 | MAKE_CMD_STATUS_CASE(CMD_STATUS_INVALID_PARAMETER); |
| 761 | MAKE_CMD_STATUS_CASE(CMD_STATUS_FUNCTION_NOT_SUPPORTED); |
| 762 | MAKE_CMD_STATUS_CASE(CMD_STATUS_TIME_OUT); |
| 763 | MAKE_CMD_STATUS_CASE(CMD_STATUS_IN_PROGRESS); |
| 764 | MAKE_CMD_STATUS_CASE(CMD_STATUS_HOST_FAILURE); |
| 765 | MAKE_CMD_STATUS_CASE(CMD_STATUS_SCAN_FAILED); |
| 766 | } |
| 767 | |
| 768 | return "UNKNOWN"; |
| 769 | } |
| 770 | |
| 771 | /* Wait until the command is completed */ |
| 772 | static int at76_wait_completion(struct at76_priv *priv, int cmd) |
| 773 | { |
| 774 | int status = 0; |
| 775 | unsigned long timeout = jiffies + CMD_COMPLETION_TIMEOUT; |
| 776 | |
| 777 | do { |
| 778 | status = at76_get_cmd_status(priv->udev, cmd); |
| 779 | if (status < 0) { |
Joe Perches | c96c31e | 2010-07-26 14:39:58 -0700 | [diff] [blame] | 780 | wiphy_err(priv->hw->wiphy, |
| 781 | "at76_get_cmd_status failed: %d\n", |
| 782 | status); |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 783 | break; |
| 784 | } |
| 785 | |
| 786 | at76_dbg(DBG_WAIT_COMPLETE, |
| 787 | "%s: Waiting on cmd %d, status = %d (%s)", |
| 788 | wiphy_name(priv->hw->wiphy), cmd, status, |
| 789 | at76_get_cmd_status_string(status)); |
| 790 | |
| 791 | if (status != CMD_STATUS_IN_PROGRESS |
| 792 | && status != CMD_STATUS_IDLE) |
| 793 | break; |
| 794 | |
| 795 | schedule_timeout_interruptible(HZ / 10); /* 100 ms */ |
| 796 | if (time_after(jiffies, timeout)) { |
Joe Perches | c96c31e | 2010-07-26 14:39:58 -0700 | [diff] [blame] | 797 | wiphy_err(priv->hw->wiphy, |
| 798 | "completion timeout for command %d\n", cmd); |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 799 | status = -ETIMEDOUT; |
| 800 | break; |
| 801 | } |
| 802 | } while (1); |
| 803 | |
| 804 | return status; |
| 805 | } |
| 806 | |
| 807 | static int at76_set_mib(struct at76_priv *priv, struct set_mib_buffer *buf) |
| 808 | { |
| 809 | int ret; |
| 810 | |
| 811 | ret = at76_set_card_command(priv->udev, CMD_SET_MIB, buf, |
| 812 | offsetof(struct set_mib_buffer, |
| 813 | data) + buf->size); |
| 814 | if (ret < 0) |
| 815 | return ret; |
| 816 | |
| 817 | ret = at76_wait_completion(priv, CMD_SET_MIB); |
| 818 | if (ret != CMD_STATUS_COMPLETE) { |
Joe Perches | c96c31e | 2010-07-26 14:39:58 -0700 | [diff] [blame] | 819 | wiphy_info(priv->hw->wiphy, |
| 820 | "set_mib: at76_wait_completion failed with %d\n", |
| 821 | ret); |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 822 | ret = -EIO; |
| 823 | } |
| 824 | |
| 825 | return ret; |
| 826 | } |
| 827 | |
| 828 | /* Return < 0 on error, == 0 if no command sent, == 1 if cmd sent */ |
| 829 | static int at76_set_radio(struct at76_priv *priv, int enable) |
| 830 | { |
| 831 | int ret; |
| 832 | int cmd; |
| 833 | |
| 834 | if (priv->radio_on == enable) |
| 835 | return 0; |
| 836 | |
| 837 | cmd = enable ? CMD_RADIO_ON : CMD_RADIO_OFF; |
| 838 | |
| 839 | ret = at76_set_card_command(priv->udev, cmd, NULL, 0); |
| 840 | if (ret < 0) |
Joe Perches | c96c31e | 2010-07-26 14:39:58 -0700 | [diff] [blame] | 841 | wiphy_err(priv->hw->wiphy, |
| 842 | "at76_set_card_command(%d) failed: %d\n", cmd, ret); |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 843 | else |
| 844 | ret = 1; |
| 845 | |
| 846 | priv->radio_on = enable; |
| 847 | return ret; |
| 848 | } |
| 849 | |
| 850 | /* Set current power save mode (AT76_PM_OFF/AT76_PM_ON/AT76_PM_SMART) */ |
| 851 | static int at76_set_pm_mode(struct at76_priv *priv) |
| 852 | { |
| 853 | int ret = 0; |
| 854 | |
| 855 | priv->mib_buf.type = MIB_MAC_MGMT; |
| 856 | priv->mib_buf.size = 1; |
| 857 | priv->mib_buf.index = offsetof(struct mib_mac_mgmt, power_mgmt_mode); |
| 858 | priv->mib_buf.data.byte = priv->pm_mode; |
| 859 | |
| 860 | ret = at76_set_mib(priv, &priv->mib_buf); |
| 861 | if (ret < 0) |
Joe Perches | c96c31e | 2010-07-26 14:39:58 -0700 | [diff] [blame] | 862 | wiphy_err(priv->hw->wiphy, "set_mib (pm_mode) failed: %d\n", |
| 863 | ret); |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 864 | |
| 865 | return ret; |
| 866 | } |
| 867 | |
| 868 | static int at76_set_preamble(struct at76_priv *priv, u8 type) |
| 869 | { |
| 870 | int ret = 0; |
| 871 | |
| 872 | priv->mib_buf.type = MIB_LOCAL; |
| 873 | priv->mib_buf.size = 1; |
| 874 | priv->mib_buf.index = offsetof(struct mib_local, preamble_type); |
| 875 | priv->mib_buf.data.byte = type; |
| 876 | |
| 877 | ret = at76_set_mib(priv, &priv->mib_buf); |
| 878 | if (ret < 0) |
Joe Perches | c96c31e | 2010-07-26 14:39:58 -0700 | [diff] [blame] | 879 | wiphy_err(priv->hw->wiphy, "set_mib (preamble) failed: %d\n", |
| 880 | ret); |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 881 | |
| 882 | return ret; |
| 883 | } |
| 884 | |
| 885 | static int at76_set_frag(struct at76_priv *priv, u16 size) |
| 886 | { |
| 887 | int ret = 0; |
| 888 | |
| 889 | priv->mib_buf.type = MIB_MAC; |
| 890 | priv->mib_buf.size = 2; |
| 891 | priv->mib_buf.index = offsetof(struct mib_mac, frag_threshold); |
| 892 | priv->mib_buf.data.word = cpu_to_le16(size); |
| 893 | |
| 894 | ret = at76_set_mib(priv, &priv->mib_buf); |
| 895 | if (ret < 0) |
Joe Perches | c96c31e | 2010-07-26 14:39:58 -0700 | [diff] [blame] | 896 | wiphy_err(priv->hw->wiphy, |
| 897 | "set_mib (frag threshold) failed: %d\n", ret); |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 898 | |
| 899 | return ret; |
| 900 | } |
| 901 | |
| 902 | static int at76_set_rts(struct at76_priv *priv, u16 size) |
| 903 | { |
| 904 | int ret = 0; |
| 905 | |
| 906 | priv->mib_buf.type = MIB_MAC; |
| 907 | priv->mib_buf.size = 2; |
| 908 | priv->mib_buf.index = offsetof(struct mib_mac, rts_threshold); |
| 909 | priv->mib_buf.data.word = cpu_to_le16(size); |
| 910 | |
| 911 | ret = at76_set_mib(priv, &priv->mib_buf); |
| 912 | if (ret < 0) |
Joe Perches | c96c31e | 2010-07-26 14:39:58 -0700 | [diff] [blame] | 913 | wiphy_err(priv->hw->wiphy, "set_mib (rts) failed: %d\n", ret); |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 914 | |
| 915 | return ret; |
| 916 | } |
| 917 | |
| 918 | static int at76_set_autorate_fallback(struct at76_priv *priv, int onoff) |
| 919 | { |
| 920 | int ret = 0; |
| 921 | |
| 922 | priv->mib_buf.type = MIB_LOCAL; |
| 923 | priv->mib_buf.size = 1; |
| 924 | priv->mib_buf.index = offsetof(struct mib_local, txautorate_fallback); |
| 925 | priv->mib_buf.data.byte = onoff; |
| 926 | |
| 927 | ret = at76_set_mib(priv, &priv->mib_buf); |
| 928 | if (ret < 0) |
Joe Perches | c96c31e | 2010-07-26 14:39:58 -0700 | [diff] [blame] | 929 | wiphy_err(priv->hw->wiphy, |
| 930 | "set_mib (autorate fallback) failed: %d\n", ret); |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 931 | |
| 932 | return ret; |
| 933 | } |
| 934 | |
| 935 | static void at76_dump_mib_mac_addr(struct at76_priv *priv) |
| 936 | { |
| 937 | int i; |
| 938 | int ret; |
| 939 | struct mib_mac_addr *m = kmalloc(sizeof(struct mib_mac_addr), |
| 940 | GFP_KERNEL); |
| 941 | |
| 942 | if (!m) |
| 943 | return; |
| 944 | |
| 945 | ret = at76_get_mib(priv->udev, MIB_MAC_ADDR, m, |
| 946 | sizeof(struct mib_mac_addr)); |
| 947 | if (ret < 0) { |
Joe Perches | c96c31e | 2010-07-26 14:39:58 -0700 | [diff] [blame] | 948 | wiphy_err(priv->hw->wiphy, |
Joe Perches | 5db5584 | 2010-08-11 19:11:19 -0700 | [diff] [blame] | 949 | "at76_get_mib (MAC_ADDR) failed: %d\n", ret); |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 950 | goto exit; |
| 951 | } |
| 952 | |
Jason Andryuk | a6ef92a | 2009-11-08 18:58:01 -0500 | [diff] [blame] | 953 | at76_dbg(DBG_MIB, "%s: MIB MAC_ADDR: mac_addr %pM res 0x%x 0x%x", |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 954 | wiphy_name(priv->hw->wiphy), |
Jason Andryuk | a6ef92a | 2009-11-08 18:58:01 -0500 | [diff] [blame] | 955 | m->mac_addr, m->res[0], m->res[1]); |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 956 | for (i = 0; i < ARRAY_SIZE(m->group_addr); i++) |
Jason Andryuk | a6ef92a | 2009-11-08 18:58:01 -0500 | [diff] [blame] | 957 | at76_dbg(DBG_MIB, "%s: MIB MAC_ADDR: group addr %d: %pM, " |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 958 | "status %d", wiphy_name(priv->hw->wiphy), i, |
Jason Andryuk | a6ef92a | 2009-11-08 18:58:01 -0500 | [diff] [blame] | 959 | m->group_addr[i], m->group_addr_status[i]); |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 960 | exit: |
| 961 | kfree(m); |
| 962 | } |
| 963 | |
| 964 | static void at76_dump_mib_mac_wep(struct at76_priv *priv) |
| 965 | { |
| 966 | int i; |
| 967 | int ret; |
| 968 | int key_len; |
| 969 | struct mib_mac_wep *m = kmalloc(sizeof(struct mib_mac_wep), GFP_KERNEL); |
| 970 | |
| 971 | if (!m) |
| 972 | return; |
| 973 | |
| 974 | ret = at76_get_mib(priv->udev, MIB_MAC_WEP, m, |
| 975 | sizeof(struct mib_mac_wep)); |
| 976 | if (ret < 0) { |
Joe Perches | c96c31e | 2010-07-26 14:39:58 -0700 | [diff] [blame] | 977 | wiphy_err(priv->hw->wiphy, |
Joe Perches | 5db5584 | 2010-08-11 19:11:19 -0700 | [diff] [blame] | 978 | "at76_get_mib (MAC_WEP) failed: %d\n", ret); |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 979 | goto exit; |
| 980 | } |
| 981 | |
| 982 | at76_dbg(DBG_MIB, "%s: MIB MAC_WEP: priv_invoked %u def_key_id %u " |
| 983 | "key_len %u excl_unencr %u wep_icv_err %u wep_excluded %u " |
| 984 | "encr_level %u key %d", wiphy_name(priv->hw->wiphy), |
| 985 | m->privacy_invoked, m->wep_default_key_id, |
| 986 | m->wep_key_mapping_len, m->exclude_unencrypted, |
| 987 | le32_to_cpu(m->wep_icv_error_count), |
| 988 | le32_to_cpu(m->wep_excluded_count), m->encryption_level, |
| 989 | m->wep_default_key_id); |
| 990 | |
| 991 | key_len = (m->encryption_level == 1) ? |
| 992 | WEP_SMALL_KEY_LEN : WEP_LARGE_KEY_LEN; |
| 993 | |
| 994 | for (i = 0; i < WEP_KEYS; i++) |
Andy Shevchenko | 44afb60 | 2012-09-05 11:52:32 +0300 | [diff] [blame] | 995 | at76_dbg(DBG_MIB, "%s: MIB MAC_WEP: key %d: %*phD", |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 996 | wiphy_name(priv->hw->wiphy), i, |
Andy Shevchenko | 44afb60 | 2012-09-05 11:52:32 +0300 | [diff] [blame] | 997 | key_len, m->wep_default_keyvalue[i]); |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 998 | exit: |
| 999 | kfree(m); |
| 1000 | } |
| 1001 | |
| 1002 | static void at76_dump_mib_mac_mgmt(struct at76_priv *priv) |
| 1003 | { |
| 1004 | int ret; |
| 1005 | struct mib_mac_mgmt *m = kmalloc(sizeof(struct mib_mac_mgmt), |
| 1006 | GFP_KERNEL); |
| 1007 | |
| 1008 | if (!m) |
| 1009 | return; |
| 1010 | |
| 1011 | ret = at76_get_mib(priv->udev, MIB_MAC_MGMT, m, |
| 1012 | sizeof(struct mib_mac_mgmt)); |
| 1013 | if (ret < 0) { |
Joe Perches | c96c31e | 2010-07-26 14:39:58 -0700 | [diff] [blame] | 1014 | wiphy_err(priv->hw->wiphy, |
Joe Perches | 5db5584 | 2010-08-11 19:11:19 -0700 | [diff] [blame] | 1015 | "at76_get_mib (MAC_MGMT) failed: %d\n", ret); |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 1016 | goto exit; |
| 1017 | } |
| 1018 | |
| 1019 | at76_dbg(DBG_MIB, "%s: MIB MAC_MGMT: beacon_period %d CFP_max_duration " |
| 1020 | "%d medium_occupancy_limit %d station_id 0x%x ATIM_window %d " |
| 1021 | "CFP_mode %d privacy_opt_impl %d DTIM_period %d CFP_period %d " |
Andy Shevchenko | 44afb60 | 2012-09-05 11:52:32 +0300 | [diff] [blame] | 1022 | "current_bssid %pM current_essid %*phD current_bss_type %d " |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 1023 | "pm_mode %d ibss_change %d res %d " |
| 1024 | "multi_domain_capability_implemented %d " |
| 1025 | "international_roaming %d country_string %.3s", |
| 1026 | wiphy_name(priv->hw->wiphy), le16_to_cpu(m->beacon_period), |
| 1027 | le16_to_cpu(m->CFP_max_duration), |
| 1028 | le16_to_cpu(m->medium_occupancy_limit), |
| 1029 | le16_to_cpu(m->station_id), le16_to_cpu(m->ATIM_window), |
| 1030 | m->CFP_mode, m->privacy_option_implemented, m->DTIM_period, |
Jason Andryuk | a6ef92a | 2009-11-08 18:58:01 -0500 | [diff] [blame] | 1031 | m->CFP_period, m->current_bssid, |
Andy Shevchenko | 44afb60 | 2012-09-05 11:52:32 +0300 | [diff] [blame] | 1032 | IW_ESSID_MAX_SIZE, m->current_essid, |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 1033 | m->current_bss_type, m->power_mgmt_mode, m->ibss_change, |
| 1034 | m->res, m->multi_domain_capability_implemented, |
| 1035 | m->multi_domain_capability_enabled, m->country_string); |
| 1036 | exit: |
| 1037 | kfree(m); |
| 1038 | } |
| 1039 | |
| 1040 | static void at76_dump_mib_mac(struct at76_priv *priv) |
| 1041 | { |
| 1042 | int ret; |
| 1043 | struct mib_mac *m = kmalloc(sizeof(struct mib_mac), GFP_KERNEL); |
| 1044 | |
| 1045 | if (!m) |
| 1046 | return; |
| 1047 | |
| 1048 | ret = at76_get_mib(priv->udev, MIB_MAC, m, sizeof(struct mib_mac)); |
| 1049 | if (ret < 0) { |
Joe Perches | c96c31e | 2010-07-26 14:39:58 -0700 | [diff] [blame] | 1050 | wiphy_err(priv->hw->wiphy, |
Joe Perches | 5db5584 | 2010-08-11 19:11:19 -0700 | [diff] [blame] | 1051 | "at76_get_mib (MAC) failed: %d\n", ret); |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 1052 | goto exit; |
| 1053 | } |
| 1054 | |
| 1055 | at76_dbg(DBG_MIB, "%s: MIB MAC: max_tx_msdu_lifetime %d " |
| 1056 | "max_rx_lifetime %d frag_threshold %d rts_threshold %d " |
| 1057 | "cwmin %d cwmax %d short_retry_time %d long_retry_time %d " |
| 1058 | "scan_type %d scan_channel %d probe_delay %u " |
| 1059 | "min_channel_time %d max_channel_time %d listen_int %d " |
Andy Shevchenko | 44afb60 | 2012-09-05 11:52:32 +0300 | [diff] [blame] | 1060 | "desired_ssid %*phD desired_bssid %pM desired_bsstype %d", |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 1061 | wiphy_name(priv->hw->wiphy), |
| 1062 | le32_to_cpu(m->max_tx_msdu_lifetime), |
| 1063 | le32_to_cpu(m->max_rx_lifetime), |
| 1064 | le16_to_cpu(m->frag_threshold), le16_to_cpu(m->rts_threshold), |
| 1065 | le16_to_cpu(m->cwmin), le16_to_cpu(m->cwmax), |
| 1066 | m->short_retry_time, m->long_retry_time, m->scan_type, |
| 1067 | m->scan_channel, le16_to_cpu(m->probe_delay), |
| 1068 | le16_to_cpu(m->min_channel_time), |
| 1069 | le16_to_cpu(m->max_channel_time), |
| 1070 | le16_to_cpu(m->listen_interval), |
Andy Shevchenko | 44afb60 | 2012-09-05 11:52:32 +0300 | [diff] [blame] | 1071 | IW_ESSID_MAX_SIZE, m->desired_ssid, |
Jason Andryuk | a6ef92a | 2009-11-08 18:58:01 -0500 | [diff] [blame] | 1072 | m->desired_bssid, m->desired_bsstype); |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 1073 | exit: |
| 1074 | kfree(m); |
| 1075 | } |
| 1076 | |
| 1077 | static void at76_dump_mib_phy(struct at76_priv *priv) |
| 1078 | { |
| 1079 | int ret; |
| 1080 | struct mib_phy *m = kmalloc(sizeof(struct mib_phy), GFP_KERNEL); |
| 1081 | |
| 1082 | if (!m) |
| 1083 | return; |
| 1084 | |
| 1085 | ret = at76_get_mib(priv->udev, MIB_PHY, m, sizeof(struct mib_phy)); |
| 1086 | if (ret < 0) { |
Joe Perches | c96c31e | 2010-07-26 14:39:58 -0700 | [diff] [blame] | 1087 | wiphy_err(priv->hw->wiphy, |
Joe Perches | 5db5584 | 2010-08-11 19:11:19 -0700 | [diff] [blame] | 1088 | "at76_get_mib (PHY) failed: %d\n", ret); |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 1089 | goto exit; |
| 1090 | } |
| 1091 | |
| 1092 | at76_dbg(DBG_MIB, "%s: MIB PHY: ed_threshold %d slot_time %d " |
| 1093 | "sifs_time %d preamble_length %d plcp_header_length %d " |
| 1094 | "mpdu_max_length %d cca_mode_supported %d operation_rate_set " |
| 1095 | "0x%x 0x%x 0x%x 0x%x channel_id %d current_cca_mode %d " |
| 1096 | "phy_type %d current_reg_domain %d", |
| 1097 | wiphy_name(priv->hw->wiphy), le32_to_cpu(m->ed_threshold), |
| 1098 | le16_to_cpu(m->slot_time), le16_to_cpu(m->sifs_time), |
| 1099 | le16_to_cpu(m->preamble_length), |
| 1100 | le16_to_cpu(m->plcp_header_length), |
| 1101 | le16_to_cpu(m->mpdu_max_length), |
| 1102 | le16_to_cpu(m->cca_mode_supported), m->operation_rate_set[0], |
| 1103 | m->operation_rate_set[1], m->operation_rate_set[2], |
| 1104 | m->operation_rate_set[3], m->channel_id, m->current_cca_mode, |
| 1105 | m->phy_type, m->current_reg_domain); |
| 1106 | exit: |
| 1107 | kfree(m); |
| 1108 | } |
| 1109 | |
| 1110 | static void at76_dump_mib_local(struct at76_priv *priv) |
| 1111 | { |
| 1112 | int ret; |
Dan Carpenter | 62c5054 | 2012-04-21 15:23:44 +0300 | [diff] [blame] | 1113 | struct mib_local *m = kmalloc(sizeof(*m), GFP_KERNEL); |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 1114 | |
| 1115 | if (!m) |
| 1116 | return; |
| 1117 | |
Dan Carpenter | 62c5054 | 2012-04-21 15:23:44 +0300 | [diff] [blame] | 1118 | ret = at76_get_mib(priv->udev, MIB_LOCAL, m, sizeof(*m)); |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 1119 | if (ret < 0) { |
Joe Perches | c96c31e | 2010-07-26 14:39:58 -0700 | [diff] [blame] | 1120 | wiphy_err(priv->hw->wiphy, |
Joe Perches | 5db5584 | 2010-08-11 19:11:19 -0700 | [diff] [blame] | 1121 | "at76_get_mib (LOCAL) failed: %d\n", ret); |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 1122 | goto exit; |
| 1123 | } |
| 1124 | |
| 1125 | at76_dbg(DBG_MIB, "%s: MIB LOCAL: beacon_enable %d " |
| 1126 | "txautorate_fallback %d ssid_size %d promiscuous_mode %d " |
| 1127 | "preamble_type %d", wiphy_name(priv->hw->wiphy), |
| 1128 | m->beacon_enable, |
| 1129 | m->txautorate_fallback, m->ssid_size, m->promiscuous_mode, |
| 1130 | m->preamble_type); |
| 1131 | exit: |
| 1132 | kfree(m); |
| 1133 | } |
| 1134 | |
| 1135 | static void at76_dump_mib_mdomain(struct at76_priv *priv) |
| 1136 | { |
| 1137 | int ret; |
| 1138 | struct mib_mdomain *m = kmalloc(sizeof(struct mib_mdomain), GFP_KERNEL); |
| 1139 | |
| 1140 | if (!m) |
| 1141 | return; |
| 1142 | |
| 1143 | ret = at76_get_mib(priv->udev, MIB_MDOMAIN, m, |
| 1144 | sizeof(struct mib_mdomain)); |
| 1145 | if (ret < 0) { |
Joe Perches | c96c31e | 2010-07-26 14:39:58 -0700 | [diff] [blame] | 1146 | wiphy_err(priv->hw->wiphy, |
Joe Perches | 5db5584 | 2010-08-11 19:11:19 -0700 | [diff] [blame] | 1147 | "at76_get_mib (MDOMAIN) failed: %d\n", ret); |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 1148 | goto exit; |
| 1149 | } |
| 1150 | |
Andy Shevchenko | 44afb60 | 2012-09-05 11:52:32 +0300 | [diff] [blame] | 1151 | at76_dbg(DBG_MIB, "%s: MIB MDOMAIN: channel_list %*phD", |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 1152 | wiphy_name(priv->hw->wiphy), |
Andy Shevchenko | 44afb60 | 2012-09-05 11:52:32 +0300 | [diff] [blame] | 1153 | (int)sizeof(m->channel_list), m->channel_list); |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 1154 | |
Andy Shevchenko | 44afb60 | 2012-09-05 11:52:32 +0300 | [diff] [blame] | 1155 | at76_dbg(DBG_MIB, "%s: MIB MDOMAIN: tx_powerlevel %*phD", |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 1156 | wiphy_name(priv->hw->wiphy), |
Andy Shevchenko | 44afb60 | 2012-09-05 11:52:32 +0300 | [diff] [blame] | 1157 | (int)sizeof(m->tx_powerlevel), m->tx_powerlevel); |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 1158 | exit: |
| 1159 | kfree(m); |
| 1160 | } |
| 1161 | |
| 1162 | /* Enable monitor mode */ |
| 1163 | static int at76_start_monitor(struct at76_priv *priv) |
| 1164 | { |
| 1165 | struct at76_req_scan scan; |
| 1166 | int ret; |
| 1167 | |
| 1168 | memset(&scan, 0, sizeof(struct at76_req_scan)); |
Joe Perches | 93803b3 | 2015-03-02 19:54:49 -0800 | [diff] [blame] | 1169 | eth_broadcast_addr(scan.bssid); |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 1170 | |
| 1171 | scan.channel = priv->channel; |
| 1172 | scan.scan_type = SCAN_TYPE_PASSIVE; |
| 1173 | scan.international_scan = 0; |
Jason Andryuk | 13b409c | 2009-11-08 19:02:19 -0500 | [diff] [blame] | 1174 | scan.min_channel_time = cpu_to_le16(priv->scan_min_time); |
| 1175 | scan.max_channel_time = cpu_to_le16(priv->scan_max_time); |
| 1176 | scan.probe_delay = cpu_to_le16(0); |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 1177 | |
| 1178 | ret = at76_set_card_command(priv->udev, CMD_SCAN, &scan, sizeof(scan)); |
| 1179 | if (ret >= 0) |
| 1180 | ret = at76_get_cmd_status(priv->udev, CMD_SCAN); |
| 1181 | |
| 1182 | return ret; |
| 1183 | } |
| 1184 | |
| 1185 | /* Calculate padding from txbuf->wlength (which excludes the USB TX header), |
| 1186 | likely to compensate a flaw in the AT76C503A USB part ... */ |
| 1187 | static inline int at76_calc_padding(int wlen) |
| 1188 | { |
| 1189 | /* add the USB TX header */ |
| 1190 | wlen += AT76_TX_HDRLEN; |
| 1191 | |
| 1192 | wlen = wlen % 64; |
| 1193 | |
| 1194 | if (wlen < 50) |
| 1195 | return 50 - wlen; |
| 1196 | |
| 1197 | if (wlen >= 61) |
| 1198 | return 64 + 50 - wlen; |
| 1199 | |
| 1200 | return 0; |
| 1201 | } |
| 1202 | |
| 1203 | static void at76_rx_callback(struct urb *urb) |
| 1204 | { |
| 1205 | struct at76_priv *priv = urb->context; |
| 1206 | |
| 1207 | priv->rx_tasklet.data = (unsigned long)urb; |
| 1208 | tasklet_schedule(&priv->rx_tasklet); |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 1209 | } |
| 1210 | |
| 1211 | static int at76_submit_rx_urb(struct at76_priv *priv) |
| 1212 | { |
| 1213 | int ret; |
| 1214 | int size; |
| 1215 | struct sk_buff *skb = priv->rx_skb; |
| 1216 | |
| 1217 | if (!priv->rx_urb) { |
Joe Perches | 5db5584 | 2010-08-11 19:11:19 -0700 | [diff] [blame] | 1218 | wiphy_err(priv->hw->wiphy, "%s: priv->rx_urb is NULL\n", |
Joe Perches | c96c31e | 2010-07-26 14:39:58 -0700 | [diff] [blame] | 1219 | __func__); |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 1220 | return -EFAULT; |
| 1221 | } |
| 1222 | |
| 1223 | if (!skb) { |
| 1224 | skb = dev_alloc_skb(sizeof(struct at76_rx_buffer)); |
| 1225 | if (!skb) { |
Joe Perches | c96c31e | 2010-07-26 14:39:58 -0700 | [diff] [blame] | 1226 | wiphy_err(priv->hw->wiphy, |
| 1227 | "cannot allocate rx skbuff\n"); |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 1228 | ret = -ENOMEM; |
| 1229 | goto exit; |
| 1230 | } |
| 1231 | priv->rx_skb = skb; |
| 1232 | } else { |
| 1233 | skb_push(skb, skb_headroom(skb)); |
| 1234 | skb_trim(skb, 0); |
| 1235 | } |
| 1236 | |
| 1237 | size = skb_tailroom(skb); |
| 1238 | usb_fill_bulk_urb(priv->rx_urb, priv->udev, priv->rx_pipe, |
| 1239 | skb_put(skb, size), size, at76_rx_callback, priv); |
| 1240 | ret = usb_submit_urb(priv->rx_urb, GFP_ATOMIC); |
| 1241 | if (ret < 0) { |
| 1242 | if (ret == -ENODEV) |
| 1243 | at76_dbg(DBG_DEVSTART, |
| 1244 | "usb_submit_urb returned -ENODEV"); |
| 1245 | else |
Joe Perches | c96c31e | 2010-07-26 14:39:58 -0700 | [diff] [blame] | 1246 | wiphy_err(priv->hw->wiphy, |
| 1247 | "rx, usb_submit_urb failed: %d\n", ret); |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 1248 | } |
| 1249 | |
| 1250 | exit: |
| 1251 | if (ret < 0 && ret != -ENODEV) |
Joe Perches | c96c31e | 2010-07-26 14:39:58 -0700 | [diff] [blame] | 1252 | wiphy_err(priv->hw->wiphy, |
| 1253 | "cannot submit rx urb - please unload the driver and/or power cycle the device\n"); |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 1254 | |
| 1255 | return ret; |
| 1256 | } |
| 1257 | |
| 1258 | /* Download external firmware */ |
| 1259 | static int at76_load_external_fw(struct usb_device *udev, struct fwentry *fwe) |
| 1260 | { |
| 1261 | int ret; |
| 1262 | int op_mode; |
| 1263 | int blockno = 0; |
| 1264 | int bsize; |
| 1265 | u8 *block; |
| 1266 | u8 *buf = fwe->extfw; |
| 1267 | int size = fwe->extfw_size; |
| 1268 | |
| 1269 | if (!buf || !size) |
| 1270 | return -ENOENT; |
| 1271 | |
| 1272 | op_mode = at76_get_op_mode(udev); |
| 1273 | at76_dbg(DBG_DEVSTART, "opmode %d", op_mode); |
| 1274 | |
| 1275 | if (op_mode != OPMODE_NORMAL_NIC_WITHOUT_FLASH) { |
Joe Perches | 6a4b09f | 2012-10-28 01:05:47 -0700 | [diff] [blame] | 1276 | dev_err(&udev->dev, "unexpected opmode %d\n", op_mode); |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 1277 | return -EINVAL; |
| 1278 | } |
| 1279 | |
| 1280 | block = kmalloc(FW_BLOCK_SIZE, GFP_KERNEL); |
| 1281 | if (!block) |
| 1282 | return -ENOMEM; |
| 1283 | |
| 1284 | at76_dbg(DBG_DEVSTART, "downloading external firmware"); |
| 1285 | |
| 1286 | /* for fw >= 0.100, the device needs an extra empty block */ |
| 1287 | do { |
| 1288 | bsize = min_t(int, size, FW_BLOCK_SIZE); |
| 1289 | memcpy(block, buf, bsize); |
| 1290 | at76_dbg(DBG_DEVSTART, |
| 1291 | "ext fw, size left = %5d, bsize = %4d, blockno = %2d", |
| 1292 | size, bsize, blockno); |
| 1293 | ret = at76_load_ext_fw_block(udev, blockno, block, bsize); |
| 1294 | if (ret != bsize) { |
Joe Perches | 6a4b09f | 2012-10-28 01:05:47 -0700 | [diff] [blame] | 1295 | dev_err(&udev->dev, |
| 1296 | "loading %dth firmware block failed: %d\n", |
| 1297 | blockno, ret); |
Andrea Merello | 174beab | 2014-05-24 17:07:12 +0200 | [diff] [blame] | 1298 | ret = -EIO; |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 1299 | goto exit; |
| 1300 | } |
| 1301 | buf += bsize; |
| 1302 | size -= bsize; |
| 1303 | blockno++; |
| 1304 | } while (bsize > 0); |
| 1305 | |
| 1306 | if (at76_is_505a(fwe->board_type)) { |
| 1307 | at76_dbg(DBG_DEVSTART, "200 ms delay for 505a"); |
| 1308 | schedule_timeout_interruptible(HZ / 5 + 1); |
| 1309 | } |
| 1310 | |
| 1311 | exit: |
| 1312 | kfree(block); |
| 1313 | if (ret < 0) |
Joe Perches | 6a4b09f | 2012-10-28 01:05:47 -0700 | [diff] [blame] | 1314 | dev_err(&udev->dev, |
| 1315 | "downloading external firmware failed: %d\n", ret); |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 1316 | return ret; |
| 1317 | } |
| 1318 | |
| 1319 | /* Download internal firmware */ |
| 1320 | static int at76_load_internal_fw(struct usb_device *udev, struct fwentry *fwe) |
| 1321 | { |
| 1322 | int ret; |
| 1323 | int need_remap = !at76_is_505a(fwe->board_type); |
| 1324 | |
| 1325 | ret = at76_usbdfu_download(udev, fwe->intfw, fwe->intfw_size, |
| 1326 | need_remap ? 0 : 2 * HZ); |
| 1327 | |
| 1328 | if (ret < 0) { |
Joe Perches | 6a4b09f | 2012-10-28 01:05:47 -0700 | [diff] [blame] | 1329 | dev_err(&udev->dev, |
| 1330 | "downloading internal fw failed with %d\n", ret); |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 1331 | goto exit; |
| 1332 | } |
| 1333 | |
| 1334 | at76_dbg(DBG_DEVSTART, "sending REMAP"); |
| 1335 | |
| 1336 | /* no REMAP for 505A (see SF driver) */ |
| 1337 | if (need_remap) { |
| 1338 | ret = at76_remap(udev); |
| 1339 | if (ret < 0) { |
Joe Perches | 6a4b09f | 2012-10-28 01:05:47 -0700 | [diff] [blame] | 1340 | dev_err(&udev->dev, |
| 1341 | "sending REMAP failed with %d\n", ret); |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 1342 | goto exit; |
| 1343 | } |
| 1344 | } |
| 1345 | |
| 1346 | at76_dbg(DBG_DEVSTART, "sleeping for 2 seconds"); |
| 1347 | schedule_timeout_interruptible(2 * HZ + 1); |
| 1348 | usb_reset_device(udev); |
| 1349 | |
| 1350 | exit: |
| 1351 | return ret; |
| 1352 | } |
| 1353 | |
| 1354 | static int at76_startup_device(struct at76_priv *priv) |
| 1355 | { |
| 1356 | struct at76_card_config *ccfg = &priv->card_config; |
| 1357 | int ret; |
| 1358 | |
| 1359 | at76_dbg(DBG_PARAMS, |
Andy Shevchenko | 44afb60 | 2012-09-05 11:52:32 +0300 | [diff] [blame] | 1360 | "%s param: ssid %.*s (%*phD) mode %s ch %d wep %s key %d " |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 1361 | "keylen %d", wiphy_name(priv->hw->wiphy), priv->essid_size, |
Andy Shevchenko | 44afb60 | 2012-09-05 11:52:32 +0300 | [diff] [blame] | 1362 | priv->essid, IW_ESSID_MAX_SIZE, priv->essid, |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 1363 | priv->iw_mode == IW_MODE_ADHOC ? "adhoc" : "infra", |
| 1364 | priv->channel, priv->wep_enabled ? "enabled" : "disabled", |
| 1365 | priv->wep_key_id, priv->wep_keys_len[priv->wep_key_id]); |
| 1366 | at76_dbg(DBG_PARAMS, |
| 1367 | "%s param: preamble %s rts %d retry %d frag %d " |
| 1368 | "txrate %s auth_mode %d", wiphy_name(priv->hw->wiphy), |
| 1369 | preambles[priv->preamble_type], priv->rts_threshold, |
| 1370 | priv->short_retry_limit, priv->frag_threshold, |
| 1371 | priv->txrate == TX_RATE_1MBIT ? "1MBit" : priv->txrate == |
| 1372 | TX_RATE_2MBIT ? "2MBit" : priv->txrate == |
| 1373 | TX_RATE_5_5MBIT ? "5.5MBit" : priv->txrate == |
| 1374 | TX_RATE_11MBIT ? "11MBit" : priv->txrate == |
| 1375 | TX_RATE_AUTO ? "auto" : "<invalid>", priv->auth_mode); |
| 1376 | at76_dbg(DBG_PARAMS, |
| 1377 | "%s param: pm_mode %d pm_period %d auth_mode %s " |
| 1378 | "scan_times %d %d scan_mode %s", |
| 1379 | wiphy_name(priv->hw->wiphy), priv->pm_mode, priv->pm_period, |
| 1380 | priv->auth_mode == WLAN_AUTH_OPEN ? "open" : "shared_secret", |
| 1381 | priv->scan_min_time, priv->scan_max_time, |
| 1382 | priv->scan_mode == SCAN_TYPE_ACTIVE ? "active" : "passive"); |
| 1383 | |
| 1384 | memset(ccfg, 0, sizeof(struct at76_card_config)); |
| 1385 | ccfg->promiscuous_mode = 0; |
| 1386 | ccfg->short_retry_limit = priv->short_retry_limit; |
| 1387 | |
| 1388 | if (priv->wep_enabled) { |
| 1389 | if (priv->wep_keys_len[priv->wep_key_id] > WEP_SMALL_KEY_LEN) |
| 1390 | ccfg->encryption_type = 2; |
| 1391 | else |
| 1392 | ccfg->encryption_type = 1; |
| 1393 | |
| 1394 | /* jal: always exclude unencrypted if WEP is active */ |
| 1395 | ccfg->exclude_unencrypted = 1; |
| 1396 | } else { |
| 1397 | ccfg->exclude_unencrypted = 0; |
| 1398 | ccfg->encryption_type = 0; |
| 1399 | } |
| 1400 | |
| 1401 | ccfg->rts_threshold = cpu_to_le16(priv->rts_threshold); |
| 1402 | ccfg->fragmentation_threshold = cpu_to_le16(priv->frag_threshold); |
| 1403 | |
| 1404 | memcpy(ccfg->basic_rate_set, hw_rates, 4); |
| 1405 | /* jal: really needed, we do a set_mib for autorate later ??? */ |
| 1406 | ccfg->auto_rate_fallback = (priv->txrate == TX_RATE_AUTO ? 1 : 0); |
| 1407 | ccfg->channel = priv->channel; |
| 1408 | ccfg->privacy_invoked = priv->wep_enabled; |
| 1409 | memcpy(ccfg->current_ssid, priv->essid, IW_ESSID_MAX_SIZE); |
| 1410 | ccfg->ssid_len = priv->essid_size; |
| 1411 | |
| 1412 | ccfg->wep_default_key_id = priv->wep_key_id; |
| 1413 | memcpy(ccfg->wep_default_key_value, priv->wep_keys, |
| 1414 | sizeof(priv->wep_keys)); |
| 1415 | |
| 1416 | ccfg->short_preamble = priv->preamble_type; |
| 1417 | ccfg->beacon_period = cpu_to_le16(priv->beacon_period); |
| 1418 | |
| 1419 | ret = at76_set_card_command(priv->udev, CMD_STARTUP, &priv->card_config, |
| 1420 | sizeof(struct at76_card_config)); |
| 1421 | if (ret < 0) { |
Joe Perches | c96c31e | 2010-07-26 14:39:58 -0700 | [diff] [blame] | 1422 | wiphy_err(priv->hw->wiphy, "at76_set_card_command failed: %d\n", |
| 1423 | ret); |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 1424 | return ret; |
| 1425 | } |
| 1426 | |
| 1427 | at76_wait_completion(priv, CMD_STARTUP); |
| 1428 | |
| 1429 | /* remove BSSID from previous run */ |
Joe Perches | 93803b3 | 2015-03-02 19:54:49 -0800 | [diff] [blame] | 1430 | eth_zero_addr(priv->bssid); |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 1431 | |
Andrea Merello | c678de5 | 2014-06-05 16:10:12 +0200 | [diff] [blame] | 1432 | priv->scanning = false; |
| 1433 | |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 1434 | if (at76_set_radio(priv, 1) == 1) |
| 1435 | at76_wait_completion(priv, CMD_RADIO_ON); |
| 1436 | |
| 1437 | ret = at76_set_preamble(priv, priv->preamble_type); |
| 1438 | if (ret < 0) |
| 1439 | return ret; |
| 1440 | |
| 1441 | ret = at76_set_frag(priv, priv->frag_threshold); |
| 1442 | if (ret < 0) |
| 1443 | return ret; |
| 1444 | |
| 1445 | ret = at76_set_rts(priv, priv->rts_threshold); |
| 1446 | if (ret < 0) |
| 1447 | return ret; |
| 1448 | |
| 1449 | ret = at76_set_autorate_fallback(priv, |
| 1450 | priv->txrate == TX_RATE_AUTO ? 1 : 0); |
| 1451 | if (ret < 0) |
| 1452 | return ret; |
| 1453 | |
| 1454 | ret = at76_set_pm_mode(priv); |
| 1455 | if (ret < 0) |
| 1456 | return ret; |
| 1457 | |
| 1458 | if (at76_debug & DBG_MIB) { |
| 1459 | at76_dump_mib_mac(priv); |
| 1460 | at76_dump_mib_mac_addr(priv); |
| 1461 | at76_dump_mib_mac_mgmt(priv); |
| 1462 | at76_dump_mib_mac_wep(priv); |
| 1463 | at76_dump_mib_mdomain(priv); |
| 1464 | at76_dump_mib_phy(priv); |
| 1465 | at76_dump_mib_local(priv); |
| 1466 | } |
| 1467 | |
| 1468 | return 0; |
| 1469 | } |
| 1470 | |
| 1471 | /* Enable or disable promiscuous mode */ |
| 1472 | static void at76_work_set_promisc(struct work_struct *work) |
| 1473 | { |
| 1474 | struct at76_priv *priv = container_of(work, struct at76_priv, |
| 1475 | work_set_promisc); |
| 1476 | int ret = 0; |
| 1477 | |
Jason Andryuk | 1cc198f | 2009-02-21 09:53:29 +0200 | [diff] [blame] | 1478 | if (priv->device_unplugged) |
| 1479 | return; |
| 1480 | |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 1481 | mutex_lock(&priv->mtx); |
| 1482 | |
| 1483 | priv->mib_buf.type = MIB_LOCAL; |
| 1484 | priv->mib_buf.size = 1; |
| 1485 | priv->mib_buf.index = offsetof(struct mib_local, promiscuous_mode); |
| 1486 | priv->mib_buf.data.byte = priv->promisc ? 1 : 0; |
| 1487 | |
| 1488 | ret = at76_set_mib(priv, &priv->mib_buf); |
| 1489 | if (ret < 0) |
Joe Perches | c96c31e | 2010-07-26 14:39:58 -0700 | [diff] [blame] | 1490 | wiphy_err(priv->hw->wiphy, |
| 1491 | "set_mib (promiscuous_mode) failed: %d\n", ret); |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 1492 | |
| 1493 | mutex_unlock(&priv->mtx); |
| 1494 | } |
| 1495 | |
| 1496 | /* Submit Rx urb back to the device */ |
| 1497 | static void at76_work_submit_rx(struct work_struct *work) |
| 1498 | { |
| 1499 | struct at76_priv *priv = container_of(work, struct at76_priv, |
| 1500 | work_submit_rx); |
| 1501 | |
| 1502 | mutex_lock(&priv->mtx); |
| 1503 | at76_submit_rx_urb(priv); |
| 1504 | mutex_unlock(&priv->mtx); |
| 1505 | } |
| 1506 | |
Andrea Merello | c678de5 | 2014-06-05 16:10:12 +0200 | [diff] [blame] | 1507 | /* This is a workaround to make scan working: |
| 1508 | * currently mac80211 does not process frames with no frequency |
| 1509 | * information. |
| 1510 | * However during scan the HW performs a sweep by itself, and we |
| 1511 | * are unable to know where the radio is actually tuned. |
| 1512 | * This function tries to do its best to guess this information.. |
| 1513 | * During scan, If the current frame is a beacon or a probe response, |
| 1514 | * the channel information is extracted from it. |
| 1515 | * When not scanning, for other frames, or if it happens that for |
| 1516 | * whatever reason we fail to parse beacons and probe responses, this |
| 1517 | * function returns the priv->channel information, that should be correct |
| 1518 | * at least when we are not scanning. |
| 1519 | */ |
| 1520 | static inline int at76_guess_freq(struct at76_priv *priv) |
| 1521 | { |
| 1522 | size_t el_off; |
| 1523 | const u8 *el; |
| 1524 | int channel = priv->channel; |
| 1525 | int len = priv->rx_skb->len; |
| 1526 | struct ieee80211_hdr *hdr = (void *)priv->rx_skb->data; |
| 1527 | |
| 1528 | if (!priv->scanning) |
| 1529 | goto exit; |
| 1530 | |
| 1531 | if (len < 24) |
| 1532 | goto exit; |
| 1533 | |
| 1534 | if (ieee80211_is_probe_resp(hdr->frame_control)) { |
| 1535 | el_off = offsetof(struct ieee80211_mgmt, u.probe_resp.variable); |
| 1536 | el = ((struct ieee80211_mgmt *)hdr)->u.probe_resp.variable; |
| 1537 | } else if (ieee80211_is_beacon(hdr->frame_control)) { |
| 1538 | el_off = offsetof(struct ieee80211_mgmt, u.beacon.variable); |
| 1539 | el = ((struct ieee80211_mgmt *)hdr)->u.beacon.variable; |
| 1540 | } else { |
| 1541 | goto exit; |
| 1542 | } |
| 1543 | len -= el_off; |
| 1544 | |
| 1545 | el = cfg80211_find_ie(WLAN_EID_DS_PARAMS, el, len); |
| 1546 | if (el && el[1] > 0) |
| 1547 | channel = el[2]; |
| 1548 | |
| 1549 | exit: |
| 1550 | return ieee80211_channel_to_frequency(channel, IEEE80211_BAND_2GHZ); |
| 1551 | } |
| 1552 | |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 1553 | static void at76_rx_tasklet(unsigned long param) |
| 1554 | { |
| 1555 | struct urb *urb = (struct urb *)param; |
| 1556 | struct at76_priv *priv = urb->context; |
| 1557 | struct at76_rx_buffer *buf; |
| 1558 | struct ieee80211_rx_status rx_status = { 0 }; |
| 1559 | |
| 1560 | if (priv->device_unplugged) { |
| 1561 | at76_dbg(DBG_DEVSTART, "device unplugged"); |
Jiri Slaby | a932519 | 2010-10-11 11:27:32 +0200 | [diff] [blame] | 1562 | at76_dbg(DBG_DEVSTART, "urb status %d", urb->status); |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 1563 | return; |
| 1564 | } |
| 1565 | |
| 1566 | if (!priv->rx_skb || !priv->rx_skb->data) |
| 1567 | return; |
| 1568 | |
| 1569 | buf = (struct at76_rx_buffer *)priv->rx_skb->data; |
| 1570 | |
| 1571 | if (urb->status != 0) { |
| 1572 | if (urb->status != -ENOENT && urb->status != -ECONNRESET) |
| 1573 | at76_dbg(DBG_URB, |
| 1574 | "%s %s: - nonzero Rx bulk status received: %d", |
| 1575 | __func__, wiphy_name(priv->hw->wiphy), |
| 1576 | urb->status); |
| 1577 | return; |
| 1578 | } |
| 1579 | |
| 1580 | at76_dbg(DBG_RX_ATMEL_HDR, |
| 1581 | "%s: rx frame: rate %d rssi %d noise %d link %d", |
| 1582 | wiphy_name(priv->hw->wiphy), buf->rx_rate, buf->rssi, |
| 1583 | buf->noise_level, buf->link_quality); |
| 1584 | |
| 1585 | skb_pull(priv->rx_skb, AT76_RX_HDRLEN); |
| 1586 | skb_trim(priv->rx_skb, le16_to_cpu(buf->wlength)); |
| 1587 | at76_dbg_dump(DBG_RX_DATA, priv->rx_skb->data, |
| 1588 | priv->rx_skb->len, "RX: len=%d", priv->rx_skb->len); |
| 1589 | |
| 1590 | rx_status.signal = buf->rssi; |
| 1591 | rx_status.flag |= RX_FLAG_DECRYPTED; |
| 1592 | rx_status.flag |= RX_FLAG_IV_STRIPPED; |
Andrea Merello | c678de5 | 2014-06-05 16:10:12 +0200 | [diff] [blame] | 1593 | rx_status.band = IEEE80211_BAND_2GHZ; |
| 1594 | rx_status.freq = at76_guess_freq(priv); |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 1595 | |
| 1596 | at76_dbg(DBG_MAC80211, "calling ieee80211_rx_irqsafe(): %d/%d", |
| 1597 | priv->rx_skb->len, priv->rx_skb->data_len); |
Johannes Berg | f1d58c2 | 2009-06-17 13:13:00 +0200 | [diff] [blame] | 1598 | memcpy(IEEE80211_SKB_RXCB(priv->rx_skb), &rx_status, sizeof(rx_status)); |
| 1599 | ieee80211_rx_irqsafe(priv->hw, priv->rx_skb); |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 1600 | |
| 1601 | /* Use a new skb for the next receive */ |
| 1602 | priv->rx_skb = NULL; |
| 1603 | |
| 1604 | at76_submit_rx_urb(priv); |
| 1605 | } |
| 1606 | |
| 1607 | /* Load firmware into kernel memory and parse it */ |
| 1608 | static struct fwentry *at76_load_firmware(struct usb_device *udev, |
| 1609 | enum board_type board_type) |
| 1610 | { |
| 1611 | int ret; |
| 1612 | char *str; |
| 1613 | struct at76_fw_header *fwh; |
| 1614 | struct fwentry *fwe = &firmwares[board_type]; |
| 1615 | |
| 1616 | mutex_lock(&fw_mutex); |
| 1617 | |
| 1618 | if (fwe->loaded) { |
| 1619 | at76_dbg(DBG_FW, "re-using previously loaded fw"); |
| 1620 | goto exit; |
| 1621 | } |
| 1622 | |
| 1623 | at76_dbg(DBG_FW, "downloading firmware %s", fwe->fwname); |
| 1624 | ret = request_firmware(&fwe->fw, fwe->fwname, &udev->dev); |
| 1625 | if (ret < 0) { |
Joe Perches | 6a4b09f | 2012-10-28 01:05:47 -0700 | [diff] [blame] | 1626 | dev_err(&udev->dev, "firmware %s not found!\n", |
| 1627 | fwe->fwname); |
| 1628 | dev_err(&udev->dev, |
| 1629 | "you may need to download the firmware from http://developer.berlios.de/projects/at76c503a/\n"); |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 1630 | goto exit; |
| 1631 | } |
| 1632 | |
| 1633 | at76_dbg(DBG_FW, "got it."); |
| 1634 | fwh = (struct at76_fw_header *)(fwe->fw->data); |
| 1635 | |
| 1636 | if (fwe->fw->size <= sizeof(*fwh)) { |
Joe Perches | 6a4b09f | 2012-10-28 01:05:47 -0700 | [diff] [blame] | 1637 | dev_err(&udev->dev, |
| 1638 | "firmware is too short (0x%zx)\n", fwe->fw->size); |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 1639 | goto exit; |
| 1640 | } |
| 1641 | |
| 1642 | /* CRC currently not checked */ |
| 1643 | fwe->board_type = le32_to_cpu(fwh->board_type); |
| 1644 | if (fwe->board_type != board_type) { |
Joe Perches | 6a4b09f | 2012-10-28 01:05:47 -0700 | [diff] [blame] | 1645 | dev_err(&udev->dev, |
| 1646 | "board type mismatch, requested %u, got %u\n", |
| 1647 | board_type, fwe->board_type); |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 1648 | goto exit; |
| 1649 | } |
| 1650 | |
| 1651 | fwe->fw_version.major = fwh->major; |
| 1652 | fwe->fw_version.minor = fwh->minor; |
| 1653 | fwe->fw_version.patch = fwh->patch; |
| 1654 | fwe->fw_version.build = fwh->build; |
| 1655 | |
| 1656 | str = (char *)fwh + le32_to_cpu(fwh->str_offset); |
| 1657 | fwe->intfw = (u8 *)fwh + le32_to_cpu(fwh->int_fw_offset); |
| 1658 | fwe->intfw_size = le32_to_cpu(fwh->int_fw_len); |
| 1659 | fwe->extfw = (u8 *)fwh + le32_to_cpu(fwh->ext_fw_offset); |
| 1660 | fwe->extfw_size = le32_to_cpu(fwh->ext_fw_len); |
| 1661 | |
| 1662 | fwe->loaded = 1; |
| 1663 | |
| 1664 | dev_printk(KERN_DEBUG, &udev->dev, |
| 1665 | "using firmware %s (version %d.%d.%d-%d)\n", |
| 1666 | fwe->fwname, fwh->major, fwh->minor, fwh->patch, fwh->build); |
| 1667 | |
| 1668 | at76_dbg(DBG_DEVSTART, "board %u, int %d:%d, ext %d:%d", board_type, |
| 1669 | le32_to_cpu(fwh->int_fw_offset), le32_to_cpu(fwh->int_fw_len), |
| 1670 | le32_to_cpu(fwh->ext_fw_offset), le32_to_cpu(fwh->ext_fw_len)); |
| 1671 | at76_dbg(DBG_DEVSTART, "firmware id %s", str); |
| 1672 | |
| 1673 | exit: |
| 1674 | mutex_unlock(&fw_mutex); |
| 1675 | |
| 1676 | if (fwe->loaded) |
| 1677 | return fwe; |
| 1678 | else |
| 1679 | return NULL; |
| 1680 | } |
| 1681 | |
Sebastian Smolorz | 41b4b28 | 2010-06-22 16:53:37 +0200 | [diff] [blame] | 1682 | static int at76_join(struct at76_priv *priv) |
| 1683 | { |
| 1684 | struct at76_req_join join; |
| 1685 | int ret; |
| 1686 | |
| 1687 | memset(&join, 0, sizeof(struct at76_req_join)); |
| 1688 | memcpy(join.essid, priv->essid, priv->essid_size); |
| 1689 | join.essid_size = priv->essid_size; |
| 1690 | memcpy(join.bssid, priv->bssid, ETH_ALEN); |
| 1691 | join.bss_type = INFRASTRUCTURE_MODE; |
| 1692 | join.channel = priv->channel; |
| 1693 | join.timeout = cpu_to_le16(2000); |
| 1694 | |
| 1695 | at76_dbg(DBG_MAC80211, "%s: sending CMD_JOIN", __func__); |
| 1696 | ret = at76_set_card_command(priv->udev, CMD_JOIN, &join, |
| 1697 | sizeof(struct at76_req_join)); |
| 1698 | |
| 1699 | if (ret < 0) { |
Joe Perches | c96c31e | 2010-07-26 14:39:58 -0700 | [diff] [blame] | 1700 | wiphy_err(priv->hw->wiphy, "at76_set_card_command failed: %d\n", |
| 1701 | ret); |
Sebastian Smolorz | 41b4b28 | 2010-06-22 16:53:37 +0200 | [diff] [blame] | 1702 | return 0; |
| 1703 | } |
| 1704 | |
| 1705 | ret = at76_wait_completion(priv, CMD_JOIN); |
| 1706 | at76_dbg(DBG_MAC80211, "%s: CMD_JOIN returned: 0x%02x", __func__, ret); |
| 1707 | if (ret != CMD_STATUS_COMPLETE) { |
Joe Perches | c96c31e | 2010-07-26 14:39:58 -0700 | [diff] [blame] | 1708 | wiphy_err(priv->hw->wiphy, "at76_wait_completion failed: %d\n", |
| 1709 | ret); |
Sebastian Smolorz | 41b4b28 | 2010-06-22 16:53:37 +0200 | [diff] [blame] | 1710 | return 0; |
| 1711 | } |
| 1712 | |
| 1713 | at76_set_pm_mode(priv); |
| 1714 | |
| 1715 | return 0; |
| 1716 | } |
| 1717 | |
Sebastian Smolorz | a185045 | 2010-06-22 16:55:17 +0200 | [diff] [blame] | 1718 | static void at76_work_join_bssid(struct work_struct *work) |
| 1719 | { |
| 1720 | struct at76_priv *priv = container_of(work, struct at76_priv, |
| 1721 | work_join_bssid); |
| 1722 | |
| 1723 | if (priv->device_unplugged) |
| 1724 | return; |
| 1725 | |
| 1726 | mutex_lock(&priv->mtx); |
| 1727 | |
| 1728 | if (is_valid_ether_addr(priv->bssid)) |
| 1729 | at76_join(priv); |
| 1730 | |
| 1731 | mutex_unlock(&priv->mtx); |
| 1732 | } |
| 1733 | |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 1734 | static void at76_mac80211_tx_callback(struct urb *urb) |
| 1735 | { |
| 1736 | struct at76_priv *priv = urb->context; |
| 1737 | struct ieee80211_tx_info *info = IEEE80211_SKB_CB(priv->tx_skb); |
| 1738 | |
| 1739 | at76_dbg(DBG_MAC80211, "%s()", __func__); |
| 1740 | |
| 1741 | switch (urb->status) { |
| 1742 | case 0: |
| 1743 | /* success */ |
| 1744 | info->flags |= IEEE80211_TX_STAT_ACK; |
| 1745 | break; |
| 1746 | case -ENOENT: |
| 1747 | case -ECONNRESET: |
| 1748 | /* fail, urb has been unlinked */ |
| 1749 | /* FIXME: add error message */ |
| 1750 | break; |
| 1751 | default: |
| 1752 | at76_dbg(DBG_URB, "%s - nonzero tx status received: %d", |
| 1753 | __func__, urb->status); |
| 1754 | break; |
| 1755 | } |
| 1756 | |
| 1757 | memset(&info->status, 0, sizeof(info->status)); |
| 1758 | |
| 1759 | ieee80211_tx_status_irqsafe(priv->hw, priv->tx_skb); |
| 1760 | |
| 1761 | priv->tx_skb = NULL; |
| 1762 | |
| 1763 | ieee80211_wake_queues(priv->hw); |
| 1764 | } |
| 1765 | |
Thomas Huehn | 36323f8 | 2012-07-23 21:33:42 +0200 | [diff] [blame] | 1766 | static void at76_mac80211_tx(struct ieee80211_hw *hw, |
| 1767 | struct ieee80211_tx_control *control, |
| 1768 | struct sk_buff *skb) |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 1769 | { |
| 1770 | struct at76_priv *priv = hw->priv; |
| 1771 | struct at76_tx_buffer *tx_buffer = priv->bulk_out_buffer; |
| 1772 | struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb); |
Sebastian Smolorz | a185045 | 2010-06-22 16:55:17 +0200 | [diff] [blame] | 1773 | struct ieee80211_mgmt *mgmt = (struct ieee80211_mgmt *)skb->data; |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 1774 | int padding, submit_len, ret; |
| 1775 | |
| 1776 | at76_dbg(DBG_MAC80211, "%s()", __func__); |
| 1777 | |
| 1778 | if (priv->tx_urb->status == -EINPROGRESS) { |
Joe Perches | c96c31e | 2010-07-26 14:39:58 -0700 | [diff] [blame] | 1779 | wiphy_err(priv->hw->wiphy, |
| 1780 | "%s called while tx urb is pending\n", __func__); |
Johannes Berg | 7bb4568 | 2011-02-24 14:42:06 +0100 | [diff] [blame] | 1781 | dev_kfree_skb_any(skb); |
| 1782 | return; |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 1783 | } |
| 1784 | |
Sebastian Smolorz | a185045 | 2010-06-22 16:55:17 +0200 | [diff] [blame] | 1785 | /* The following code lines are important when the device is going to |
| 1786 | * authenticate with a new bssid. The driver must send CMD_JOIN before |
| 1787 | * an authentication frame is transmitted. For this to succeed, the |
| 1788 | * correct bssid of the AP must be known. As mac80211 does not inform |
| 1789 | * drivers about the bssid prior to the authentication process the |
| 1790 | * following workaround is necessary. If the TX frame is an |
| 1791 | * authentication frame extract the bssid and send the CMD_JOIN. */ |
| 1792 | if (mgmt->frame_control & cpu_to_le16(IEEE80211_STYPE_AUTH)) { |
Julia Lawall | 631c527 | 2013-12-30 19:15:06 +0100 | [diff] [blame] | 1793 | if (!ether_addr_equal_64bits(priv->bssid, mgmt->bssid)) { |
Sebastian Smolorz | a185045 | 2010-06-22 16:55:17 +0200 | [diff] [blame] | 1794 | memcpy(priv->bssid, mgmt->bssid, ETH_ALEN); |
| 1795 | ieee80211_queue_work(hw, &priv->work_join_bssid); |
John W. Linville | 10889f1 | 2011-02-25 15:38:09 -0500 | [diff] [blame] | 1796 | dev_kfree_skb_any(skb); |
| 1797 | return; |
Sebastian Smolorz | a185045 | 2010-06-22 16:55:17 +0200 | [diff] [blame] | 1798 | } |
| 1799 | } |
| 1800 | |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 1801 | ieee80211_stop_queues(hw); |
| 1802 | |
| 1803 | at76_ledtrig_tx_activity(); /* tell ledtrigger we send a packet */ |
| 1804 | |
| 1805 | WARN_ON(priv->tx_skb != NULL); |
| 1806 | |
| 1807 | priv->tx_skb = skb; |
| 1808 | padding = at76_calc_padding(skb->len); |
| 1809 | submit_len = AT76_TX_HDRLEN + skb->len + padding; |
| 1810 | |
| 1811 | /* setup 'Atmel' header */ |
| 1812 | memset(tx_buffer, 0, sizeof(*tx_buffer)); |
| 1813 | tx_buffer->padding = padding; |
| 1814 | tx_buffer->wlength = cpu_to_le16(skb->len); |
| 1815 | tx_buffer->tx_rate = ieee80211_get_tx_rate(hw, info)->hw_value; |
| 1816 | memset(tx_buffer->reserved, 0, sizeof(tx_buffer->reserved)); |
| 1817 | memcpy(tx_buffer->packet, skb->data, skb->len); |
| 1818 | |
| 1819 | at76_dbg(DBG_TX_DATA, "%s tx: wlen 0x%x pad 0x%x rate %d hdr", |
| 1820 | wiphy_name(priv->hw->wiphy), le16_to_cpu(tx_buffer->wlength), |
| 1821 | tx_buffer->padding, tx_buffer->tx_rate); |
| 1822 | |
| 1823 | /* send stuff */ |
| 1824 | at76_dbg_dump(DBG_TX_DATA_CONTENT, tx_buffer, submit_len, |
| 1825 | "%s(): tx_buffer %d bytes:", __func__, submit_len); |
| 1826 | usb_fill_bulk_urb(priv->tx_urb, priv->udev, priv->tx_pipe, tx_buffer, |
| 1827 | submit_len, at76_mac80211_tx_callback, priv); |
| 1828 | ret = usb_submit_urb(priv->tx_urb, GFP_ATOMIC); |
| 1829 | if (ret) { |
Joe Perches | c96c31e | 2010-07-26 14:39:58 -0700 | [diff] [blame] | 1830 | wiphy_err(priv->hw->wiphy, "error in tx submit urb: %d\n", ret); |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 1831 | if (ret == -EINVAL) |
Joe Perches | c96c31e | 2010-07-26 14:39:58 -0700 | [diff] [blame] | 1832 | wiphy_err(priv->hw->wiphy, |
Joe Perches | 5db5584 | 2010-08-11 19:11:19 -0700 | [diff] [blame] | 1833 | "-EINVAL: tx urb %p hcpriv %p complete %p\n", |
Joe Perches | c96c31e | 2010-07-26 14:39:58 -0700 | [diff] [blame] | 1834 | priv->tx_urb, |
| 1835 | priv->tx_urb->hcpriv, priv->tx_urb->complete); |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 1836 | } |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 1837 | } |
| 1838 | |
| 1839 | static int at76_mac80211_start(struct ieee80211_hw *hw) |
| 1840 | { |
| 1841 | struct at76_priv *priv = hw->priv; |
| 1842 | int ret; |
| 1843 | |
| 1844 | at76_dbg(DBG_MAC80211, "%s()", __func__); |
| 1845 | |
| 1846 | mutex_lock(&priv->mtx); |
| 1847 | |
| 1848 | ret = at76_submit_rx_urb(priv); |
| 1849 | if (ret < 0) { |
Joe Perches | c96c31e | 2010-07-26 14:39:58 -0700 | [diff] [blame] | 1850 | wiphy_err(priv->hw->wiphy, "open: submit_rx_urb failed: %d\n", |
| 1851 | ret); |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 1852 | goto error; |
| 1853 | } |
| 1854 | |
| 1855 | at76_startup_device(priv); |
| 1856 | |
| 1857 | at76_start_monitor(priv); |
| 1858 | |
| 1859 | error: |
| 1860 | mutex_unlock(&priv->mtx); |
| 1861 | |
| 1862 | return 0; |
| 1863 | } |
| 1864 | |
| 1865 | static void at76_mac80211_stop(struct ieee80211_hw *hw) |
| 1866 | { |
| 1867 | struct at76_priv *priv = hw->priv; |
| 1868 | |
| 1869 | at76_dbg(DBG_MAC80211, "%s()", __func__); |
| 1870 | |
Luis R. Rodriguez | 9ed21d3 | 2009-07-27 11:56:24 -0700 | [diff] [blame] | 1871 | cancel_delayed_work(&priv->dwork_hw_scan); |
Sebastian Smolorz | a185045 | 2010-06-22 16:55:17 +0200 | [diff] [blame] | 1872 | cancel_work_sync(&priv->work_join_bssid); |
Luis R. Rodriguez | ebc8ab1 | 2009-07-27 11:56:23 -0700 | [diff] [blame] | 1873 | cancel_work_sync(&priv->work_set_promisc); |
| 1874 | |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 1875 | mutex_lock(&priv->mtx); |
| 1876 | |
| 1877 | if (!priv->device_unplugged) { |
| 1878 | /* We are called by "ifconfig ethX down", not because the |
| 1879 | * device is not available anymore. */ |
| 1880 | at76_set_radio(priv, 0); |
| 1881 | |
| 1882 | /* We unlink rx_urb because at76_open() re-submits it. |
| 1883 | * If unplugged, at76_delete_device() takes care of it. */ |
| 1884 | usb_kill_urb(priv->rx_urb); |
| 1885 | } |
| 1886 | |
| 1887 | mutex_unlock(&priv->mtx); |
| 1888 | } |
| 1889 | |
| 1890 | static int at76_add_interface(struct ieee80211_hw *hw, |
Johannes Berg | 1ed32e4 | 2009-12-23 13:15:45 +0100 | [diff] [blame] | 1891 | struct ieee80211_vif *vif) |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 1892 | { |
| 1893 | struct at76_priv *priv = hw->priv; |
| 1894 | int ret = 0; |
| 1895 | |
| 1896 | at76_dbg(DBG_MAC80211, "%s()", __func__); |
| 1897 | |
| 1898 | mutex_lock(&priv->mtx); |
| 1899 | |
Johannes Berg | 1ed32e4 | 2009-12-23 13:15:45 +0100 | [diff] [blame] | 1900 | switch (vif->type) { |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 1901 | case NL80211_IFTYPE_STATION: |
| 1902 | priv->iw_mode = IW_MODE_INFRA; |
| 1903 | break; |
| 1904 | default: |
| 1905 | ret = -EOPNOTSUPP; |
| 1906 | goto exit; |
| 1907 | } |
| 1908 | |
| 1909 | exit: |
| 1910 | mutex_unlock(&priv->mtx); |
| 1911 | |
| 1912 | return ret; |
| 1913 | } |
| 1914 | |
| 1915 | static void at76_remove_interface(struct ieee80211_hw *hw, |
Johannes Berg | 1ed32e4 | 2009-12-23 13:15:45 +0100 | [diff] [blame] | 1916 | struct ieee80211_vif *vif) |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 1917 | { |
| 1918 | at76_dbg(DBG_MAC80211, "%s()", __func__); |
| 1919 | } |
| 1920 | |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 1921 | static void at76_dwork_hw_scan(struct work_struct *work) |
| 1922 | { |
| 1923 | struct at76_priv *priv = container_of(work, struct at76_priv, |
| 1924 | dwork_hw_scan.work); |
| 1925 | int ret; |
| 1926 | |
Jason Andryuk | deda862 | 2009-02-21 09:53:14 +0200 | [diff] [blame] | 1927 | if (priv->device_unplugged) |
| 1928 | return; |
| 1929 | |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 1930 | mutex_lock(&priv->mtx); |
| 1931 | |
| 1932 | ret = at76_get_cmd_status(priv->udev, CMD_SCAN); |
| 1933 | at76_dbg(DBG_MAC80211, "%s: CMD_SCAN status 0x%02x", __func__, ret); |
| 1934 | |
| 1935 | /* FIXME: add maximum time for scan to complete */ |
| 1936 | |
| 1937 | if (ret != CMD_STATUS_COMPLETE) { |
Luis R. Rodriguez | 42935ec | 2009-07-29 20:08:07 -0400 | [diff] [blame] | 1938 | ieee80211_queue_delayed_work(priv->hw, &priv->dwork_hw_scan, |
| 1939 | SCAN_POLL_INTERVAL); |
John W. Linville | 21a4cc0 | 2009-05-28 11:39:02 +0200 | [diff] [blame] | 1940 | mutex_unlock(&priv->mtx); |
| 1941 | return; |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 1942 | } |
| 1943 | |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 1944 | if (is_valid_ether_addr(priv->bssid)) |
| 1945 | at76_join(priv); |
| 1946 | |
Andrea Merello | c678de5 | 2014-06-05 16:10:12 +0200 | [diff] [blame] | 1947 | priv->scanning = false; |
| 1948 | |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 1949 | mutex_unlock(&priv->mtx); |
John W. Linville | 21a4cc0 | 2009-05-28 11:39:02 +0200 | [diff] [blame] | 1950 | |
| 1951 | ieee80211_scan_completed(priv->hw, false); |
| 1952 | |
| 1953 | ieee80211_wake_queues(priv->hw); |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 1954 | } |
| 1955 | |
Jason Andryuk | 19e8bc7 | 2009-02-18 22:40:57 +0200 | [diff] [blame] | 1956 | static int at76_hw_scan(struct ieee80211_hw *hw, |
Johannes Berg | a060bbf | 2010-04-27 11:59:34 +0200 | [diff] [blame] | 1957 | struct ieee80211_vif *vif, |
David Spinadel | c56ef67 | 2014-02-05 15:21:13 +0200 | [diff] [blame] | 1958 | struct ieee80211_scan_request *hw_req) |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 1959 | { |
David Spinadel | c56ef67 | 2014-02-05 15:21:13 +0200 | [diff] [blame] | 1960 | struct cfg80211_scan_request *req = &hw_req->req; |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 1961 | struct at76_priv *priv = hw->priv; |
| 1962 | struct at76_req_scan scan; |
Jason Andryuk | 19e8bc7 | 2009-02-18 22:40:57 +0200 | [diff] [blame] | 1963 | u8 *ssid = NULL; |
| 1964 | int ret, len = 0; |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 1965 | |
| 1966 | at76_dbg(DBG_MAC80211, "%s():", __func__); |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 1967 | |
Jason Andryuk | deda862 | 2009-02-21 09:53:14 +0200 | [diff] [blame] | 1968 | if (priv->device_unplugged) |
| 1969 | return 0; |
| 1970 | |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 1971 | mutex_lock(&priv->mtx); |
| 1972 | |
| 1973 | ieee80211_stop_queues(hw); |
| 1974 | |
| 1975 | memset(&scan, 0, sizeof(struct at76_req_scan)); |
Joe Perches | 93803b3 | 2015-03-02 19:54:49 -0800 | [diff] [blame] | 1976 | eth_broadcast_addr(scan.bssid); |
Jason Andryuk | 19e8bc7 | 2009-02-18 22:40:57 +0200 | [diff] [blame] | 1977 | |
| 1978 | if (req->n_ssids) { |
| 1979 | scan.scan_type = SCAN_TYPE_ACTIVE; |
| 1980 | ssid = req->ssids[0].ssid; |
| 1981 | len = req->ssids[0].ssid_len; |
| 1982 | } else { |
| 1983 | scan.scan_type = SCAN_TYPE_PASSIVE; |
| 1984 | } |
| 1985 | |
| 1986 | if (len) { |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 1987 | memcpy(scan.essid, ssid, len); |
| 1988 | scan.essid_size = len; |
| 1989 | } |
Jason Andryuk | 19e8bc7 | 2009-02-18 22:40:57 +0200 | [diff] [blame] | 1990 | |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 1991 | scan.min_channel_time = cpu_to_le16(priv->scan_min_time); |
| 1992 | scan.max_channel_time = cpu_to_le16(priv->scan_max_time); |
| 1993 | scan.probe_delay = cpu_to_le16(priv->scan_min_time * 1000); |
| 1994 | scan.international_scan = 0; |
| 1995 | |
| 1996 | at76_dbg(DBG_MAC80211, "%s: sending CMD_SCAN", __func__); |
| 1997 | ret = at76_set_card_command(priv->udev, CMD_SCAN, &scan, sizeof(scan)); |
| 1998 | |
| 1999 | if (ret < 0) { |
Greg Kroah-Hartman | 24c0328 | 2012-04-25 14:48:52 -0700 | [diff] [blame] | 2000 | wiphy_err(priv->hw->wiphy, "CMD_SCAN failed: %d\n", ret); |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 2001 | goto exit; |
| 2002 | } |
| 2003 | |
Andrea Merello | c678de5 | 2014-06-05 16:10:12 +0200 | [diff] [blame] | 2004 | priv->scanning = true; |
Luis R. Rodriguez | 42935ec | 2009-07-29 20:08:07 -0400 | [diff] [blame] | 2005 | ieee80211_queue_delayed_work(priv->hw, &priv->dwork_hw_scan, |
| 2006 | SCAN_POLL_INTERVAL); |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 2007 | |
| 2008 | exit: |
| 2009 | mutex_unlock(&priv->mtx); |
| 2010 | |
| 2011 | return 0; |
| 2012 | } |
| 2013 | |
| 2014 | static int at76_config(struct ieee80211_hw *hw, u32 changed) |
| 2015 | { |
| 2016 | struct at76_priv *priv = hw->priv; |
| 2017 | |
Johannes Berg | f424afa | 2009-08-17 16:18:07 +0200 | [diff] [blame] | 2018 | at76_dbg(DBG_MAC80211, "%s(): channel %d", |
Karl Beldan | 675a0b0 | 2013-03-25 16:26:57 +0100 | [diff] [blame] | 2019 | __func__, hw->conf.chandef.chan->hw_value); |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 2020 | at76_dbg_dump(DBG_MAC80211, priv->bssid, ETH_ALEN, "bssid:"); |
| 2021 | |
| 2022 | mutex_lock(&priv->mtx); |
| 2023 | |
Karl Beldan | 675a0b0 | 2013-03-25 16:26:57 +0100 | [diff] [blame] | 2024 | priv->channel = hw->conf.chandef.chan->hw_value; |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 2025 | |
| 2026 | if (is_valid_ether_addr(priv->bssid)) |
| 2027 | at76_join(priv); |
| 2028 | else |
| 2029 | at76_start_monitor(priv); |
| 2030 | |
| 2031 | mutex_unlock(&priv->mtx); |
| 2032 | |
| 2033 | return 0; |
| 2034 | } |
| 2035 | |
Johannes Berg | 2d0ddec | 2009-04-23 16:13:26 +0200 | [diff] [blame] | 2036 | static void at76_bss_info_changed(struct ieee80211_hw *hw, |
| 2037 | struct ieee80211_vif *vif, |
| 2038 | struct ieee80211_bss_conf *conf, |
| 2039 | u32 changed) |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 2040 | { |
| 2041 | struct at76_priv *priv = hw->priv; |
| 2042 | |
| 2043 | at76_dbg(DBG_MAC80211, "%s():", __func__); |
Johannes Berg | 2d0ddec | 2009-04-23 16:13:26 +0200 | [diff] [blame] | 2044 | |
| 2045 | if (!(changed & BSS_CHANGED_BSSID)) |
| 2046 | return; |
| 2047 | |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 2048 | at76_dbg_dump(DBG_MAC80211, conf->bssid, ETH_ALEN, "bssid:"); |
| 2049 | |
| 2050 | mutex_lock(&priv->mtx); |
| 2051 | |
| 2052 | memcpy(priv->bssid, conf->bssid, ETH_ALEN); |
| 2053 | |
| 2054 | if (is_valid_ether_addr(priv->bssid)) |
| 2055 | /* mac80211 is joining a bss */ |
| 2056 | at76_join(priv); |
| 2057 | |
| 2058 | mutex_unlock(&priv->mtx); |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 2059 | } |
| 2060 | |
| 2061 | /* must be atomic */ |
| 2062 | static void at76_configure_filter(struct ieee80211_hw *hw, |
| 2063 | unsigned int changed_flags, |
Johannes Berg | 3ac64be | 2009-08-17 16:16:53 +0200 | [diff] [blame] | 2064 | unsigned int *total_flags, u64 multicast) |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 2065 | { |
| 2066 | struct at76_priv *priv = hw->priv; |
| 2067 | int flags; |
| 2068 | |
| 2069 | at76_dbg(DBG_MAC80211, "%s(): changed_flags=0x%08x " |
Johannes Berg | 3ac64be | 2009-08-17 16:16:53 +0200 | [diff] [blame] | 2070 | "total_flags=0x%08x", |
| 2071 | __func__, changed_flags, *total_flags); |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 2072 | |
| 2073 | flags = changed_flags & AT76_SUPPORTED_FILTERS; |
| 2074 | *total_flags = AT76_SUPPORTED_FILTERS; |
| 2075 | |
Jason Andryuk | deda862 | 2009-02-21 09:53:14 +0200 | [diff] [blame] | 2076 | /* Bail out after updating flags to prevent a WARN_ON in mac80211. */ |
| 2077 | if (priv->device_unplugged) |
| 2078 | return; |
| 2079 | |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 2080 | /* FIXME: access to priv->promisc should be protected with |
| 2081 | * priv->mtx, but it's impossible because this function needs to be |
| 2082 | * atomic */ |
| 2083 | |
| 2084 | if (flags && !priv->promisc) { |
| 2085 | /* mac80211 wants us to enable promiscuous mode */ |
| 2086 | priv->promisc = 1; |
| 2087 | } else if (!flags && priv->promisc) { |
| 2088 | /* we need to disable promiscuous mode */ |
| 2089 | priv->promisc = 0; |
| 2090 | } else |
| 2091 | return; |
| 2092 | |
Luis R. Rodriguez | 42935ec | 2009-07-29 20:08:07 -0400 | [diff] [blame] | 2093 | ieee80211_queue_work(hw, &priv->work_set_promisc); |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 2094 | } |
| 2095 | |
Andrea Merello | 347f8fd | 2014-05-24 17:16:18 +0200 | [diff] [blame] | 2096 | static int at76_set_wep(struct at76_priv *priv) |
| 2097 | { |
| 2098 | int ret = 0; |
| 2099 | struct mib_mac_wep *mib_data = &priv->mib_buf.data.wep_mib; |
| 2100 | |
| 2101 | priv->mib_buf.type = MIB_MAC_WEP; |
| 2102 | priv->mib_buf.size = sizeof(struct mib_mac_wep); |
| 2103 | priv->mib_buf.index = 0; |
| 2104 | |
| 2105 | memset(mib_data, 0, sizeof(*mib_data)); |
| 2106 | |
| 2107 | if (priv->wep_enabled) { |
| 2108 | if (priv->wep_keys_len[priv->wep_key_id] > WEP_SMALL_KEY_LEN) |
| 2109 | mib_data->encryption_level = 2; |
| 2110 | else |
| 2111 | mib_data->encryption_level = 1; |
| 2112 | |
| 2113 | /* always exclude unencrypted if WEP is active */ |
| 2114 | mib_data->exclude_unencrypted = 1; |
| 2115 | } else { |
| 2116 | mib_data->exclude_unencrypted = 0; |
| 2117 | mib_data->encryption_level = 0; |
| 2118 | } |
| 2119 | |
| 2120 | mib_data->privacy_invoked = priv->wep_enabled; |
| 2121 | mib_data->wep_default_key_id = priv->wep_key_id; |
| 2122 | memcpy(mib_data->wep_default_keyvalue, priv->wep_keys, |
| 2123 | sizeof(priv->wep_keys)); |
| 2124 | |
| 2125 | ret = at76_set_mib(priv, &priv->mib_buf); |
| 2126 | |
| 2127 | if (ret < 0) |
| 2128 | wiphy_err(priv->hw->wiphy, |
| 2129 | "set_mib (wep) failed: %d\n", ret); |
| 2130 | |
| 2131 | return ret; |
| 2132 | } |
| 2133 | |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 2134 | static int at76_set_key(struct ieee80211_hw *hw, enum set_key_cmd cmd, |
| 2135 | struct ieee80211_vif *vif, struct ieee80211_sta *sta, |
| 2136 | struct ieee80211_key_conf *key) |
| 2137 | { |
| 2138 | struct at76_priv *priv = hw->priv; |
| 2139 | |
| 2140 | int i; |
| 2141 | |
Johannes Berg | 97359d1 | 2010-08-10 09:46:38 +0200 | [diff] [blame] | 2142 | at76_dbg(DBG_MAC80211, "%s(): cmd %d key->cipher %d key->keyidx %d " |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 2143 | "key->keylen %d", |
Johannes Berg | 97359d1 | 2010-08-10 09:46:38 +0200 | [diff] [blame] | 2144 | __func__, cmd, key->cipher, key->keyidx, key->keylen); |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 2145 | |
Johannes Berg | 97359d1 | 2010-08-10 09:46:38 +0200 | [diff] [blame] | 2146 | if ((key->cipher != WLAN_CIPHER_SUITE_WEP40) && |
| 2147 | (key->cipher != WLAN_CIPHER_SUITE_WEP104)) |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 2148 | return -EOPNOTSUPP; |
| 2149 | |
| 2150 | key->hw_key_idx = key->keyidx; |
| 2151 | |
| 2152 | mutex_lock(&priv->mtx); |
| 2153 | |
| 2154 | switch (cmd) { |
| 2155 | case SET_KEY: |
| 2156 | memcpy(priv->wep_keys[key->keyidx], key->key, key->keylen); |
| 2157 | priv->wep_keys_len[key->keyidx] = key->keylen; |
| 2158 | |
| 2159 | /* FIXME: find out how to do this properly */ |
| 2160 | priv->wep_key_id = key->keyidx; |
| 2161 | |
| 2162 | break; |
| 2163 | case DISABLE_KEY: |
| 2164 | default: |
| 2165 | priv->wep_keys_len[key->keyidx] = 0; |
| 2166 | break; |
| 2167 | } |
| 2168 | |
| 2169 | priv->wep_enabled = 0; |
| 2170 | |
| 2171 | for (i = 0; i < WEP_KEYS; i++) { |
| 2172 | if (priv->wep_keys_len[i] != 0) |
| 2173 | priv->wep_enabled = 1; |
| 2174 | } |
| 2175 | |
Andrea Merello | 347f8fd | 2014-05-24 17:16:18 +0200 | [diff] [blame] | 2176 | at76_set_wep(priv); |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 2177 | |
| 2178 | mutex_unlock(&priv->mtx); |
| 2179 | |
| 2180 | return 0; |
| 2181 | } |
| 2182 | |
| 2183 | static const struct ieee80211_ops at76_ops = { |
| 2184 | .tx = at76_mac80211_tx, |
| 2185 | .add_interface = at76_add_interface, |
| 2186 | .remove_interface = at76_remove_interface, |
| 2187 | .config = at76_config, |
Johannes Berg | 2d0ddec | 2009-04-23 16:13:26 +0200 | [diff] [blame] | 2188 | .bss_info_changed = at76_bss_info_changed, |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 2189 | .configure_filter = at76_configure_filter, |
| 2190 | .start = at76_mac80211_start, |
| 2191 | .stop = at76_mac80211_stop, |
| 2192 | .hw_scan = at76_hw_scan, |
| 2193 | .set_key = at76_set_key, |
| 2194 | }; |
| 2195 | |
| 2196 | /* Allocate network device and initialize private data */ |
| 2197 | static struct at76_priv *at76_alloc_new_device(struct usb_device *udev) |
| 2198 | { |
| 2199 | struct ieee80211_hw *hw; |
| 2200 | struct at76_priv *priv; |
| 2201 | |
| 2202 | hw = ieee80211_alloc_hw(sizeof(struct at76_priv), &at76_ops); |
| 2203 | if (!hw) { |
| 2204 | printk(KERN_ERR DRIVER_NAME ": could not register" |
| 2205 | " ieee80211_hw\n"); |
| 2206 | return NULL; |
| 2207 | } |
| 2208 | |
| 2209 | priv = hw->priv; |
| 2210 | priv->hw = hw; |
| 2211 | |
| 2212 | priv->udev = udev; |
| 2213 | |
| 2214 | mutex_init(&priv->mtx); |
| 2215 | INIT_WORK(&priv->work_set_promisc, at76_work_set_promisc); |
| 2216 | INIT_WORK(&priv->work_submit_rx, at76_work_submit_rx); |
Sebastian Smolorz | a185045 | 2010-06-22 16:55:17 +0200 | [diff] [blame] | 2217 | INIT_WORK(&priv->work_join_bssid, at76_work_join_bssid); |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 2218 | INIT_DELAYED_WORK(&priv->dwork_hw_scan, at76_dwork_hw_scan); |
| 2219 | |
Jason Andryuk | deda862 | 2009-02-21 09:53:14 +0200 | [diff] [blame] | 2220 | tasklet_init(&priv->rx_tasklet, at76_rx_tasklet, 0); |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 2221 | |
| 2222 | priv->pm_mode = AT76_PM_OFF; |
| 2223 | priv->pm_period = 0; |
| 2224 | |
| 2225 | /* unit us */ |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 2226 | |
| 2227 | return priv; |
| 2228 | } |
| 2229 | |
| 2230 | static int at76_alloc_urbs(struct at76_priv *priv, |
| 2231 | struct usb_interface *interface) |
| 2232 | { |
| 2233 | struct usb_endpoint_descriptor *endpoint, *ep_in, *ep_out; |
| 2234 | int i; |
| 2235 | int buffer_size; |
| 2236 | struct usb_host_interface *iface_desc; |
| 2237 | |
| 2238 | at76_dbg(DBG_PROC_ENTRY, "%s: ENTER", __func__); |
| 2239 | |
| 2240 | at76_dbg(DBG_URB, "%s: NumEndpoints %d ", __func__, |
| 2241 | interface->altsetting[0].desc.bNumEndpoints); |
| 2242 | |
| 2243 | ep_in = NULL; |
| 2244 | ep_out = NULL; |
| 2245 | iface_desc = interface->cur_altsetting; |
| 2246 | for (i = 0; i < iface_desc->desc.bNumEndpoints; i++) { |
| 2247 | endpoint = &iface_desc->endpoint[i].desc; |
| 2248 | |
| 2249 | at76_dbg(DBG_URB, "%s: %d. endpoint: addr 0x%x attr 0x%x", |
| 2250 | __func__, i, endpoint->bEndpointAddress, |
| 2251 | endpoint->bmAttributes); |
| 2252 | |
| 2253 | if (!ep_in && usb_endpoint_is_bulk_in(endpoint)) |
| 2254 | ep_in = endpoint; |
| 2255 | |
| 2256 | if (!ep_out && usb_endpoint_is_bulk_out(endpoint)) |
| 2257 | ep_out = endpoint; |
| 2258 | } |
| 2259 | |
| 2260 | if (!ep_in || !ep_out) { |
Joe Perches | 6a4b09f | 2012-10-28 01:05:47 -0700 | [diff] [blame] | 2261 | dev_err(&interface->dev, "bulk endpoints missing\n"); |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 2262 | return -ENXIO; |
| 2263 | } |
| 2264 | |
| 2265 | priv->rx_pipe = usb_rcvbulkpipe(priv->udev, ep_in->bEndpointAddress); |
| 2266 | priv->tx_pipe = usb_sndbulkpipe(priv->udev, ep_out->bEndpointAddress); |
| 2267 | |
| 2268 | priv->rx_urb = usb_alloc_urb(0, GFP_KERNEL); |
| 2269 | priv->tx_urb = usb_alloc_urb(0, GFP_KERNEL); |
| 2270 | if (!priv->rx_urb || !priv->tx_urb) { |
Joe Perches | 6a4b09f | 2012-10-28 01:05:47 -0700 | [diff] [blame] | 2271 | dev_err(&interface->dev, "cannot allocate URB\n"); |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 2272 | return -ENOMEM; |
| 2273 | } |
| 2274 | |
| 2275 | buffer_size = sizeof(struct at76_tx_buffer) + MAX_PADDING_SIZE; |
| 2276 | priv->bulk_out_buffer = kmalloc(buffer_size, GFP_KERNEL); |
Joe Perches | 0d2e7a5 | 2013-02-03 17:28:14 +0000 | [diff] [blame] | 2277 | if (!priv->bulk_out_buffer) |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 2278 | return -ENOMEM; |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 2279 | |
| 2280 | at76_dbg(DBG_PROC_ENTRY, "%s: EXIT", __func__); |
| 2281 | |
| 2282 | return 0; |
| 2283 | } |
| 2284 | |
| 2285 | static struct ieee80211_rate at76_rates[] = { |
| 2286 | { .bitrate = 10, .hw_value = TX_RATE_1MBIT, }, |
| 2287 | { .bitrate = 20, .hw_value = TX_RATE_2MBIT, }, |
| 2288 | { .bitrate = 55, .hw_value = TX_RATE_5_5MBIT, }, |
| 2289 | { .bitrate = 110, .hw_value = TX_RATE_11MBIT, }, |
| 2290 | }; |
| 2291 | |
| 2292 | static struct ieee80211_channel at76_channels[] = { |
| 2293 | { .center_freq = 2412, .hw_value = 1 }, |
| 2294 | { .center_freq = 2417, .hw_value = 2 }, |
| 2295 | { .center_freq = 2422, .hw_value = 3 }, |
| 2296 | { .center_freq = 2427, .hw_value = 4 }, |
| 2297 | { .center_freq = 2432, .hw_value = 5 }, |
| 2298 | { .center_freq = 2437, .hw_value = 6 }, |
| 2299 | { .center_freq = 2442, .hw_value = 7 }, |
| 2300 | { .center_freq = 2447, .hw_value = 8 }, |
| 2301 | { .center_freq = 2452, .hw_value = 9 }, |
| 2302 | { .center_freq = 2457, .hw_value = 10 }, |
| 2303 | { .center_freq = 2462, .hw_value = 11 }, |
| 2304 | { .center_freq = 2467, .hw_value = 12 }, |
| 2305 | { .center_freq = 2472, .hw_value = 13 }, |
| 2306 | { .center_freq = 2484, .hw_value = 14 } |
| 2307 | }; |
| 2308 | |
| 2309 | static struct ieee80211_supported_band at76_supported_band = { |
| 2310 | .channels = at76_channels, |
| 2311 | .n_channels = ARRAY_SIZE(at76_channels), |
| 2312 | .bitrates = at76_rates, |
| 2313 | .n_bitrates = ARRAY_SIZE(at76_rates), |
| 2314 | }; |
| 2315 | |
| 2316 | /* Register network device and initialize the hardware */ |
| 2317 | static int at76_init_new_device(struct at76_priv *priv, |
| 2318 | struct usb_interface *interface) |
| 2319 | { |
Kalle Valo | fe348cb | 2009-09-24 11:02:51 -0700 | [diff] [blame] | 2320 | struct wiphy *wiphy; |
| 2321 | size_t len; |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 2322 | int ret; |
| 2323 | |
| 2324 | /* set up the endpoint information */ |
| 2325 | /* check out the endpoints */ |
| 2326 | |
| 2327 | at76_dbg(DBG_DEVSTART, "USB interface: %d endpoints", |
| 2328 | interface->cur_altsetting->desc.bNumEndpoints); |
| 2329 | |
| 2330 | ret = at76_alloc_urbs(priv, interface); |
| 2331 | if (ret < 0) |
| 2332 | goto exit; |
| 2333 | |
| 2334 | /* MAC address */ |
| 2335 | ret = at76_get_hw_config(priv); |
| 2336 | if (ret < 0) { |
Joe Perches | 6a4b09f | 2012-10-28 01:05:47 -0700 | [diff] [blame] | 2337 | dev_err(&interface->dev, "cannot get MAC address\n"); |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 2338 | goto exit; |
| 2339 | } |
| 2340 | |
| 2341 | priv->domain = at76_get_reg_domain(priv->regulatory_domain); |
| 2342 | |
| 2343 | priv->channel = DEF_CHANNEL; |
| 2344 | priv->iw_mode = IW_MODE_INFRA; |
| 2345 | priv->rts_threshold = DEF_RTS_THRESHOLD; |
| 2346 | priv->frag_threshold = DEF_FRAG_THRESHOLD; |
| 2347 | priv->short_retry_limit = DEF_SHORT_RETRY_LIMIT; |
| 2348 | priv->txrate = TX_RATE_AUTO; |
| 2349 | priv->preamble_type = PREAMBLE_TYPE_LONG; |
| 2350 | priv->beacon_period = 100; |
| 2351 | priv->auth_mode = WLAN_AUTH_OPEN; |
| 2352 | priv->scan_min_time = DEF_SCAN_MIN_TIME; |
| 2353 | priv->scan_max_time = DEF_SCAN_MAX_TIME; |
| 2354 | priv->scan_mode = SCAN_TYPE_ACTIVE; |
Jason Andryuk | deda862 | 2009-02-21 09:53:14 +0200 | [diff] [blame] | 2355 | priv->device_unplugged = 0; |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 2356 | |
| 2357 | /* mac80211 initialisation */ |
Kalle Valo | fe348cb | 2009-09-24 11:02:51 -0700 | [diff] [blame] | 2358 | wiphy = priv->hw->wiphy; |
Jason Andryuk | 19e8bc7 | 2009-02-18 22:40:57 +0200 | [diff] [blame] | 2359 | priv->hw->wiphy->max_scan_ssids = 1; |
Johannes Berg | 18a8365 | 2009-03-31 12:12:05 +0200 | [diff] [blame] | 2360 | priv->hw->wiphy->max_scan_ie_len = 0; |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 2361 | priv->hw->wiphy->interface_modes = BIT(NL80211_IFTYPE_STATION); |
| 2362 | priv->hw->wiphy->bands[IEEE80211_BAND_2GHZ] = &at76_supported_band; |
| 2363 | priv->hw->flags = IEEE80211_HW_RX_INCLUDES_FCS | |
| 2364 | IEEE80211_HW_SIGNAL_UNSPEC; |
Jason Andryuk | 19e8bc7 | 2009-02-18 22:40:57 +0200 | [diff] [blame] | 2365 | priv->hw->max_signal = 100; |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 2366 | |
| 2367 | SET_IEEE80211_DEV(priv->hw, &interface->dev); |
| 2368 | SET_IEEE80211_PERM_ADDR(priv->hw, priv->mac_addr); |
| 2369 | |
Kalle Valo | fe348cb | 2009-09-24 11:02:51 -0700 | [diff] [blame] | 2370 | len = sizeof(wiphy->fw_version); |
| 2371 | snprintf(wiphy->fw_version, len, "%d.%d.%d-%d", |
| 2372 | priv->fw_version.major, priv->fw_version.minor, |
| 2373 | priv->fw_version.patch, priv->fw_version.build); |
| 2374 | |
| 2375 | wiphy->hw_version = priv->board_type; |
| 2376 | |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 2377 | ret = ieee80211_register_hw(priv->hw); |
| 2378 | if (ret) { |
| 2379 | printk(KERN_ERR "cannot register mac80211 hw (status %d)!\n", |
| 2380 | ret); |
| 2381 | goto exit; |
| 2382 | } |
| 2383 | |
| 2384 | priv->mac80211_registered = 1; |
| 2385 | |
Joe Perches | 5db5584 | 2010-08-11 19:11:19 -0700 | [diff] [blame] | 2386 | wiphy_info(priv->hw->wiphy, "USB %s, MAC %pM, firmware %d.%d.%d-%d\n", |
Joe Perches | c96c31e | 2010-07-26 14:39:58 -0700 | [diff] [blame] | 2387 | dev_name(&interface->dev), priv->mac_addr, |
| 2388 | priv->fw_version.major, priv->fw_version.minor, |
| 2389 | priv->fw_version.patch, priv->fw_version.build); |
| 2390 | wiphy_info(priv->hw->wiphy, "regulatory domain 0x%02x: %s\n", |
| 2391 | priv->regulatory_domain, priv->domain->name); |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 2392 | |
| 2393 | exit: |
| 2394 | return ret; |
| 2395 | } |
| 2396 | |
| 2397 | static void at76_delete_device(struct at76_priv *priv) |
| 2398 | { |
| 2399 | at76_dbg(DBG_PROC_ENTRY, "%s: ENTER", __func__); |
| 2400 | |
| 2401 | /* The device is gone, don't bother turning it off */ |
| 2402 | priv->device_unplugged = 1; |
| 2403 | |
Jason Andryuk | deda862 | 2009-02-21 09:53:14 +0200 | [diff] [blame] | 2404 | tasklet_kill(&priv->rx_tasklet); |
| 2405 | |
Luis R. Rodriguez | 64344d7 | 2009-07-29 14:20:41 -0700 | [diff] [blame] | 2406 | if (priv->mac80211_registered) |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 2407 | ieee80211_unregister_hw(priv->hw); |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 2408 | |
| 2409 | if (priv->tx_urb) { |
| 2410 | usb_kill_urb(priv->tx_urb); |
| 2411 | usb_free_urb(priv->tx_urb); |
| 2412 | } |
| 2413 | if (priv->rx_urb) { |
| 2414 | usb_kill_urb(priv->rx_urb); |
| 2415 | usb_free_urb(priv->rx_urb); |
| 2416 | } |
| 2417 | |
| 2418 | at76_dbg(DBG_PROC_ENTRY, "%s: unlinked urbs", __func__); |
| 2419 | |
Jason Andryuk | deda862 | 2009-02-21 09:53:14 +0200 | [diff] [blame] | 2420 | kfree(priv->bulk_out_buffer); |
| 2421 | |
Jason Andryuk | 1cc198f | 2009-02-21 09:53:29 +0200 | [diff] [blame] | 2422 | del_timer_sync(&ledtrig_tx_timer); |
| 2423 | |
Wei Yongjun | 54cb228 | 2009-04-08 22:16:38 +0000 | [diff] [blame] | 2424 | kfree_skb(priv->rx_skb); |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 2425 | |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 2426 | at76_dbg(DBG_PROC_ENTRY, "%s: before freeing priv/ieee80211_hw", |
| 2427 | __func__); |
| 2428 | ieee80211_free_hw(priv->hw); |
| 2429 | |
| 2430 | at76_dbg(DBG_PROC_ENTRY, "%s: EXIT", __func__); |
| 2431 | } |
| 2432 | |
| 2433 | static int at76_probe(struct usb_interface *interface, |
| 2434 | const struct usb_device_id *id) |
| 2435 | { |
| 2436 | int ret; |
| 2437 | struct at76_priv *priv; |
| 2438 | struct fwentry *fwe; |
| 2439 | struct usb_device *udev; |
| 2440 | int op_mode; |
| 2441 | int need_ext_fw = 0; |
Andrea Merello | 174beab | 2014-05-24 17:07:12 +0200 | [diff] [blame] | 2442 | struct mib_fw_version *fwv = NULL; |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 2443 | int board_type = (int)id->driver_info; |
| 2444 | |
| 2445 | udev = usb_get_dev(interface_to_usbdev(interface)); |
| 2446 | |
Andrea Merello | 174beab | 2014-05-24 17:07:12 +0200 | [diff] [blame] | 2447 | fwv = kmalloc(sizeof(*fwv), GFP_KERNEL); |
| 2448 | if (!fwv) { |
| 2449 | ret = -ENOMEM; |
| 2450 | goto exit; |
| 2451 | } |
| 2452 | |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 2453 | /* Load firmware into kernel memory */ |
| 2454 | fwe = at76_load_firmware(udev, board_type); |
| 2455 | if (!fwe) { |
| 2456 | ret = -ENOENT; |
Andrea Merello | 174beab | 2014-05-24 17:07:12 +0200 | [diff] [blame] | 2457 | goto exit; |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 2458 | } |
| 2459 | |
| 2460 | op_mode = at76_get_op_mode(udev); |
| 2461 | |
| 2462 | at76_dbg(DBG_DEVSTART, "opmode %d", op_mode); |
| 2463 | |
| 2464 | /* we get OPMODE_NONE with 2.4.23, SMC2662W-AR ??? |
| 2465 | we get 204 with 2.4.23, Fiberline FL-WL240u (505A+RFMD2958) ??? */ |
| 2466 | |
| 2467 | if (op_mode == OPMODE_HW_CONFIG_MODE) { |
Joe Perches | 6a4b09f | 2012-10-28 01:05:47 -0700 | [diff] [blame] | 2468 | dev_err(&interface->dev, |
| 2469 | "cannot handle a device in HW_CONFIG_MODE\n"); |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 2470 | ret = -EBUSY; |
Andrea Merello | 174beab | 2014-05-24 17:07:12 +0200 | [diff] [blame] | 2471 | goto exit; |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 2472 | } |
| 2473 | |
| 2474 | if (op_mode != OPMODE_NORMAL_NIC_WITH_FLASH |
| 2475 | && op_mode != OPMODE_NORMAL_NIC_WITHOUT_FLASH) { |
| 2476 | /* download internal firmware part */ |
| 2477 | dev_printk(KERN_DEBUG, &interface->dev, |
| 2478 | "downloading internal firmware\n"); |
| 2479 | ret = at76_load_internal_fw(udev, fwe); |
| 2480 | if (ret < 0) { |
Joe Perches | 6a4b09f | 2012-10-28 01:05:47 -0700 | [diff] [blame] | 2481 | dev_err(&interface->dev, |
| 2482 | "error %d downloading internal firmware\n", |
| 2483 | ret); |
Andrea Merello | 174beab | 2014-05-24 17:07:12 +0200 | [diff] [blame] | 2484 | goto exit; |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 2485 | } |
| 2486 | usb_put_dev(udev); |
Andrea Merello | 174beab | 2014-05-24 17:07:12 +0200 | [diff] [blame] | 2487 | goto exit; |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 2488 | } |
| 2489 | |
| 2490 | /* Internal firmware already inside the device. Get firmware |
| 2491 | * version to test if external firmware is loaded. |
| 2492 | * This works only for newer firmware, e.g. the Intersil 0.90.x |
| 2493 | * says "control timeout on ep0in" and subsequent |
| 2494 | * at76_get_op_mode() fail too :-( */ |
| 2495 | |
| 2496 | /* if version >= 0.100.x.y or device with built-in flash we can |
| 2497 | * query the device for the fw version */ |
| 2498 | if ((fwe->fw_version.major > 0 || fwe->fw_version.minor >= 100) |
| 2499 | || (op_mode == OPMODE_NORMAL_NIC_WITH_FLASH)) { |
Andrea Merello | 174beab | 2014-05-24 17:07:12 +0200 | [diff] [blame] | 2500 | ret = at76_get_mib(udev, MIB_FW_VERSION, fwv, sizeof(*fwv)); |
| 2501 | if (ret < 0 || (fwv->major | fwv->minor) == 0) |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 2502 | need_ext_fw = 1; |
| 2503 | } else |
| 2504 | /* No way to check firmware version, reload to be sure */ |
| 2505 | need_ext_fw = 1; |
| 2506 | |
| 2507 | if (need_ext_fw) { |
| 2508 | dev_printk(KERN_DEBUG, &interface->dev, |
| 2509 | "downloading external firmware\n"); |
| 2510 | |
| 2511 | ret = at76_load_external_fw(udev, fwe); |
Andrea Merello | 174beab | 2014-05-24 17:07:12 +0200 | [diff] [blame] | 2512 | if (ret < 0) |
| 2513 | goto exit; |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 2514 | |
| 2515 | /* Re-check firmware version */ |
Andrea Merello | 174beab | 2014-05-24 17:07:12 +0200 | [diff] [blame] | 2516 | ret = at76_get_mib(udev, MIB_FW_VERSION, fwv, sizeof(*fwv)); |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 2517 | if (ret < 0) { |
Joe Perches | 6a4b09f | 2012-10-28 01:05:47 -0700 | [diff] [blame] | 2518 | dev_err(&interface->dev, |
| 2519 | "error %d getting firmware version\n", ret); |
Andrea Merello | 174beab | 2014-05-24 17:07:12 +0200 | [diff] [blame] | 2520 | goto exit; |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 2521 | } |
| 2522 | } |
| 2523 | |
| 2524 | priv = at76_alloc_new_device(udev); |
| 2525 | if (!priv) { |
| 2526 | ret = -ENOMEM; |
Andrea Merello | 174beab | 2014-05-24 17:07:12 +0200 | [diff] [blame] | 2527 | goto exit; |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 2528 | } |
| 2529 | |
| 2530 | usb_set_intfdata(interface, priv); |
| 2531 | |
Andrea Merello | 174beab | 2014-05-24 17:07:12 +0200 | [diff] [blame] | 2532 | memcpy(&priv->fw_version, fwv, sizeof(struct mib_fw_version)); |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 2533 | priv->board_type = board_type; |
| 2534 | |
| 2535 | ret = at76_init_new_device(priv, interface); |
| 2536 | if (ret < 0) |
| 2537 | at76_delete_device(priv); |
| 2538 | |
Andrea Merello | 174beab | 2014-05-24 17:07:12 +0200 | [diff] [blame] | 2539 | exit: |
| 2540 | kfree(fwv); |
| 2541 | if (ret < 0) |
| 2542 | usb_put_dev(udev); |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 2543 | return ret; |
| 2544 | } |
| 2545 | |
| 2546 | static void at76_disconnect(struct usb_interface *interface) |
| 2547 | { |
| 2548 | struct at76_priv *priv; |
| 2549 | |
| 2550 | priv = usb_get_intfdata(interface); |
| 2551 | usb_set_intfdata(interface, NULL); |
| 2552 | |
| 2553 | /* Disconnect after loading internal firmware */ |
| 2554 | if (!priv) |
| 2555 | return; |
| 2556 | |
Joe Perches | c96c31e | 2010-07-26 14:39:58 -0700 | [diff] [blame] | 2557 | wiphy_info(priv->hw->wiphy, "disconnecting\n"); |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 2558 | at76_delete_device(priv); |
Alexey Khoroshilov | 29e20aa | 2014-08-15 03:00:06 +0400 | [diff] [blame] | 2559 | usb_put_dev(priv->udev); |
Joe Perches | 6a4b09f | 2012-10-28 01:05:47 -0700 | [diff] [blame] | 2560 | dev_info(&interface->dev, "disconnected\n"); |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 2561 | } |
| 2562 | |
| 2563 | /* Structure for registering this driver with the USB subsystem */ |
| 2564 | static struct usb_driver at76_driver = { |
| 2565 | .name = DRIVER_NAME, |
| 2566 | .probe = at76_probe, |
| 2567 | .disconnect = at76_disconnect, |
| 2568 | .id_table = dev_table, |
Sarah Sharp | e1f12eb | 2012-04-23 10:08:51 -0700 | [diff] [blame] | 2569 | .disable_hub_initiated_lpm = 1, |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 2570 | }; |
| 2571 | |
| 2572 | static int __init at76_mod_init(void) |
| 2573 | { |
| 2574 | int result; |
| 2575 | |
| 2576 | printk(KERN_INFO DRIVER_DESC " " DRIVER_VERSION " loading\n"); |
| 2577 | |
| 2578 | mutex_init(&fw_mutex); |
| 2579 | |
| 2580 | /* register this driver with the USB subsystem */ |
| 2581 | result = usb_register(&at76_driver); |
| 2582 | if (result < 0) |
| 2583 | printk(KERN_ERR DRIVER_NAME |
| 2584 | ": usb_register failed (status %d)\n", result); |
| 2585 | |
| 2586 | led_trigger_register_simple("at76_usb-tx", &ledtrig_tx); |
| 2587 | return result; |
| 2588 | } |
| 2589 | |
| 2590 | static void __exit at76_mod_exit(void) |
| 2591 | { |
| 2592 | int i; |
| 2593 | |
| 2594 | printk(KERN_INFO DRIVER_DESC " " DRIVER_VERSION " unloading\n"); |
| 2595 | usb_deregister(&at76_driver); |
Jesper Juhl | c987ce9 | 2012-04-09 22:50:47 +0200 | [diff] [blame] | 2596 | for (i = 0; i < ARRAY_SIZE(firmwares); i++) |
| 2597 | release_firmware(firmwares[i].fw); |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 2598 | led_trigger_unregister_simple(ledtrig_tx); |
| 2599 | } |
| 2600 | |
Jason Andryuk | 2ce4f9d | 2009-02-18 22:41:04 +0200 | [diff] [blame] | 2601 | module_param_named(debug, at76_debug, uint, 0600); |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 2602 | MODULE_PARM_DESC(debug, "Debugging level"); |
| 2603 | |
| 2604 | module_init(at76_mod_init); |
| 2605 | module_exit(at76_mod_exit); |
| 2606 | |
| 2607 | MODULE_AUTHOR("Oliver Kurth <oku@masqmail.cx>"); |
| 2608 | MODULE_AUTHOR("Joerg Albert <joerg.albert@gmx.de>"); |
| 2609 | MODULE_AUTHOR("Alex <alex@foogod.com>"); |
| 2610 | MODULE_AUTHOR("Nick Jones"); |
| 2611 | MODULE_AUTHOR("Balint Seeber <n0_5p4m_p13453@hotmail.com>"); |
| 2612 | MODULE_AUTHOR("Pavel Roskin <proski@gnu.org>"); |
| 2613 | MODULE_AUTHOR("Guido Guenther <agx@sigxcpu.org>"); |
| 2614 | MODULE_AUTHOR("Kalle Valo <kalle.valo@iki.fi>"); |
Sebastian Smolorz | a185045 | 2010-06-22 16:55:17 +0200 | [diff] [blame] | 2615 | MODULE_AUTHOR("Sebastian Smolorz <sesmo@gmx.net>"); |
Kalle Valo | 1264b95 | 2009-02-07 09:27:10 +0200 | [diff] [blame] | 2616 | MODULE_DESCRIPTION(DRIVER_DESC); |
| 2617 | MODULE_LICENSE("GPL"); |