Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Driver for ZyDAS zd1201 based wireless USB devices. |
| 3 | * |
| 4 | * Copyright (c) 2004, 2005 Jeroen Vreeken (pe1rxq@amsat.org) |
| 5 | * |
| 6 | * This program is free software; you can redistribute it and/or |
| 7 | * modify it under the terms of the GNU General Public License |
| 8 | * version 2 as published by the Free Software Foundation. |
| 9 | * |
| 10 | * Parts of this driver have been derived from a wlan-ng version |
| 11 | * modified by ZyDAS. They also made documentation available, thanks! |
| 12 | * Copyright (C) 1999 AbsoluteValue Systems, Inc. All Rights Reserved. |
| 13 | */ |
| 14 | |
| 15 | #include <linux/module.h> |
| 16 | #include <linux/usb.h> |
| 17 | #include <linux/netdevice.h> |
| 18 | #include <linux/etherdevice.h> |
| 19 | #include <linux/wireless.h> |
Johannes Berg | 2c706002 | 2008-10-30 22:09:54 +0100 | [diff] [blame] | 20 | #include <linux/ieee80211.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | #include <net/iw_handler.h> |
| 22 | #include <linux/string.h> |
| 23 | #include <linux/if_arp.h> |
| 24 | #include <linux/firmware.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | #include "zd1201.h" |
| 26 | |
| 27 | static struct usb_device_id zd1201_table[] = { |
| 28 | {USB_DEVICE(0x0586, 0x3400)}, /* Peabird Wireless USB Adapter */ |
| 29 | {USB_DEVICE(0x0ace, 0x1201)}, /* ZyDAS ZD1201 Wireless USB Adapter */ |
| 30 | {USB_DEVICE(0x050d, 0x6051)}, /* Belkin F5D6051 usb adapter */ |
| 31 | {USB_DEVICE(0x0db0, 0x6823)}, /* MSI UB11B usb adapter */ |
Mathieu | f290809 | 2005-07-29 12:17:29 -0700 | [diff] [blame] | 32 | {USB_DEVICE(0x1044, 0x8005)}, /* GIGABYTE GN-WLBZ201 usb adapter */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | {} |
| 34 | }; |
| 35 | |
Pavel Machek | 2a80634 | 2006-05-26 22:07:48 +0200 | [diff] [blame] | 36 | static int ap; /* Are we an AP or a normal station? */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | |
| 38 | #define ZD1201_VERSION "0.15" |
| 39 | |
| 40 | MODULE_AUTHOR("Jeroen Vreeken <pe1rxq@amsat.org>"); |
| 41 | MODULE_DESCRIPTION("Driver for ZyDAS ZD1201 based USB Wireless adapters"); |
| 42 | MODULE_VERSION(ZD1201_VERSION); |
| 43 | MODULE_LICENSE("GPL"); |
| 44 | module_param(ap, int, 0); |
| 45 | MODULE_PARM_DESC(ap, "If non-zero Access Point firmware will be loaded"); |
| 46 | MODULE_DEVICE_TABLE(usb, zd1201_table); |
| 47 | |
| 48 | |
Adrian Bunk | 2e0a6b8 | 2005-04-22 15:07:01 -0700 | [diff] [blame] | 49 | static int zd1201_fw_upload(struct usb_device *dev, int apfw) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 | { |
| 51 | const struct firmware *fw_entry; |
David Woodhouse | 45ef0bd | 2008-05-24 00:08:19 +0100 | [diff] [blame] | 52 | const char *data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | unsigned long len; |
| 54 | int err; |
| 55 | unsigned char ret; |
| 56 | char *buf; |
| 57 | char *fwfile; |
| 58 | |
| 59 | if (apfw) |
| 60 | fwfile = "zd1201-ap.fw"; |
| 61 | else |
| 62 | fwfile = "zd1201.fw"; |
| 63 | |
| 64 | err = request_firmware(&fw_entry, fwfile, &dev->dev); |
| 65 | if (err) { |
| 66 | dev_err(&dev->dev, "Failed to load %s firmware file!\n", fwfile); |
| 67 | dev_err(&dev->dev, "Make sure the hotplug firmware loader is installed.\n"); |
Pavel Machek | 2a80634 | 2006-05-26 22:07:48 +0200 | [diff] [blame] | 68 | dev_err(&dev->dev, "Goto http://linux-lc100020.sourceforge.net for more info.\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 69 | return err; |
| 70 | } |
| 71 | |
| 72 | data = fw_entry->data; |
| 73 | len = fw_entry->size; |
| 74 | |
| 75 | buf = kmalloc(1024, GFP_ATOMIC); |
| 76 | if (!buf) |
| 77 | goto exit; |
| 78 | |
| 79 | while (len > 0) { |
| 80 | int translen = (len > 1024) ? 1024 : len; |
| 81 | memcpy(buf, data, translen); |
| 82 | |
| 83 | err = usb_control_msg(dev, usb_sndctrlpipe(dev, 0), 0, |
| 84 | USB_DIR_OUT | 0x40, 0, 0, buf, translen, |
| 85 | ZD1201_FW_TIMEOUT); |
| 86 | if (err < 0) |
| 87 | goto exit; |
| 88 | |
| 89 | len -= translen; |
| 90 | data += translen; |
| 91 | } |
| 92 | |
| 93 | err = usb_control_msg(dev, usb_sndctrlpipe(dev, 0), 0x2, |
| 94 | USB_DIR_OUT | 0x40, 0, 0, NULL, 0, ZD1201_FW_TIMEOUT); |
| 95 | if (err < 0) |
| 96 | goto exit; |
Pavel Machek | 2a80634 | 2006-05-26 22:07:48 +0200 | [diff] [blame] | 97 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 98 | err = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0), 0x4, |
| 99 | USB_DIR_IN | 0x40, 0,0, &ret, sizeof(ret), ZD1201_FW_TIMEOUT); |
| 100 | if (err < 0) |
| 101 | goto exit; |
Pavel Machek | 2a80634 | 2006-05-26 22:07:48 +0200 | [diff] [blame] | 102 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 103 | if (ret & 0x80) { |
| 104 | err = -EIO; |
| 105 | goto exit; |
| 106 | } |
| 107 | |
| 108 | err = 0; |
| 109 | exit: |
Jesper Juhl | 1bc3c9e | 2005-04-18 17:39:34 -0700 | [diff] [blame] | 110 | kfree(buf); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | release_firmware(fw_entry); |
| 112 | return err; |
| 113 | } |
| 114 | |
Ben Hutchings | e01b0e0 | 2009-11-07 22:02:39 +0000 | [diff] [blame] | 115 | MODULE_FIRMWARE("zd1201-ap.fw"); |
| 116 | MODULE_FIRMWARE("zd1201.fw"); |
| 117 | |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 118 | static void zd1201_usbfree(struct urb *urb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 119 | { |
| 120 | struct zd1201 *zd = urb->context; |
| 121 | |
| 122 | switch(urb->status) { |
| 123 | case -EILSEQ: |
| 124 | case -ENODEV: |
Pete Zaitcev | 38e2bfc | 2006-09-18 22:49:02 -0700 | [diff] [blame] | 125 | case -ETIME: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 126 | case -ENOENT: |
| 127 | case -EPIPE: |
| 128 | case -EOVERFLOW: |
| 129 | case -ESHUTDOWN: |
| 130 | dev_warn(&zd->usb->dev, "%s: urb failed: %d\n", |
| 131 | zd->dev->name, urb->status); |
| 132 | } |
| 133 | |
| 134 | kfree(urb->transfer_buffer); |
| 135 | usb_free_urb(urb); |
| 136 | return; |
| 137 | } |
| 138 | |
| 139 | /* cmdreq message: |
| 140 | u32 type |
| 141 | u16 cmd |
| 142 | u16 parm0 |
| 143 | u16 parm1 |
| 144 | u16 parm2 |
| 145 | u8 pad[4] |
| 146 | |
| 147 | total: 4 + 2 + 2 + 2 + 2 + 4 = 16 |
| 148 | */ |
Adrian Bunk | 2e0a6b8 | 2005-04-22 15:07:01 -0700 | [diff] [blame] | 149 | static int zd1201_docmd(struct zd1201 *zd, int cmd, int parm0, |
| 150 | int parm1, int parm2) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 151 | { |
| 152 | unsigned char *command; |
| 153 | int ret; |
| 154 | struct urb *urb; |
| 155 | |
| 156 | command = kmalloc(16, GFP_ATOMIC); |
| 157 | if (!command) |
| 158 | return -ENOMEM; |
| 159 | |
| 160 | *((__le32*)command) = cpu_to_le32(ZD1201_USB_CMDREQ); |
| 161 | *((__le16*)&command[4]) = cpu_to_le16(cmd); |
| 162 | *((__le16*)&command[6]) = cpu_to_le16(parm0); |
| 163 | *((__le16*)&command[8]) = cpu_to_le16(parm1); |
| 164 | *((__le16*)&command[10])= cpu_to_le16(parm2); |
| 165 | |
| 166 | urb = usb_alloc_urb(0, GFP_ATOMIC); |
| 167 | if (!urb) { |
| 168 | kfree(command); |
| 169 | return -ENOMEM; |
| 170 | } |
| 171 | usb_fill_bulk_urb(urb, zd->usb, usb_sndbulkpipe(zd->usb, zd->endp_out2), |
Pavel Machek | 2a80634 | 2006-05-26 22:07:48 +0200 | [diff] [blame] | 172 | command, 16, zd1201_usbfree, zd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 173 | ret = usb_submit_urb(urb, GFP_ATOMIC); |
| 174 | if (ret) { |
| 175 | kfree(command); |
| 176 | usb_free_urb(urb); |
| 177 | } |
Pavel Machek | 2a80634 | 2006-05-26 22:07:48 +0200 | [diff] [blame] | 178 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 179 | return ret; |
| 180 | } |
| 181 | |
| 182 | /* Callback after sending out a packet */ |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 183 | static void zd1201_usbtx(struct urb *urb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 184 | { |
| 185 | struct zd1201 *zd = urb->context; |
| 186 | netif_wake_queue(zd->dev); |
| 187 | return; |
| 188 | } |
| 189 | |
Steven Cole | 093cf72 | 2005-05-03 19:07:24 -0600 | [diff] [blame] | 190 | /* Incoming data */ |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 191 | static void zd1201_usbrx(struct urb *urb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 192 | { |
| 193 | struct zd1201 *zd = urb->context; |
| 194 | int free = 0; |
| 195 | unsigned char *data = urb->transfer_buffer; |
| 196 | struct sk_buff *skb; |
| 197 | unsigned char type; |
| 198 | |
Eric Sesterhenn | 683f8c9e | 2006-10-10 14:45:45 -0700 | [diff] [blame] | 199 | if (!zd) |
| 200 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 201 | |
| 202 | switch(urb->status) { |
| 203 | case -EILSEQ: |
| 204 | case -ENODEV: |
Pete Zaitcev | 38e2bfc | 2006-09-18 22:49:02 -0700 | [diff] [blame] | 205 | case -ETIME: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 206 | case -ENOENT: |
| 207 | case -EPIPE: |
| 208 | case -EOVERFLOW: |
| 209 | case -ESHUTDOWN: |
| 210 | dev_warn(&zd->usb->dev, "%s: rx urb failed: %d\n", |
| 211 | zd->dev->name, urb->status); |
| 212 | free = 1; |
| 213 | goto exit; |
| 214 | } |
| 215 | |
| 216 | if (urb->status != 0 || urb->actual_length == 0) |
| 217 | goto resubmit; |
| 218 | |
| 219 | type = data[0]; |
| 220 | if (type == ZD1201_PACKET_EVENTSTAT || type == ZD1201_PACKET_RESOURCE) { |
| 221 | memcpy(zd->rxdata, data, urb->actual_length); |
| 222 | zd->rxlen = urb->actual_length; |
| 223 | zd->rxdatas = 1; |
| 224 | wake_up(&zd->rxdataq); |
| 225 | } |
| 226 | /* Info frame */ |
| 227 | if (type == ZD1201_PACKET_INQUIRE) { |
| 228 | int i = 0; |
| 229 | unsigned short infotype, framelen, copylen; |
| 230 | framelen = le16_to_cpu(*(__le16*)&data[4]); |
| 231 | infotype = le16_to_cpu(*(__le16*)&data[6]); |
| 232 | |
| 233 | if (infotype == ZD1201_INF_LINKSTATUS) { |
| 234 | short linkstatus; |
| 235 | |
| 236 | linkstatus = le16_to_cpu(*(__le16*)&data[8]); |
| 237 | switch(linkstatus) { |
| 238 | case 1: |
| 239 | netif_carrier_on(zd->dev); |
| 240 | break; |
| 241 | case 2: |
| 242 | netif_carrier_off(zd->dev); |
| 243 | break; |
| 244 | case 3: |
| 245 | netif_carrier_off(zd->dev); |
| 246 | break; |
| 247 | case 4: |
| 248 | netif_carrier_on(zd->dev); |
| 249 | break; |
| 250 | default: |
| 251 | netif_carrier_off(zd->dev); |
| 252 | } |
| 253 | goto resubmit; |
| 254 | } |
| 255 | if (infotype == ZD1201_INF_ASSOCSTATUS) { |
| 256 | short status = le16_to_cpu(*(__le16*)(data+8)); |
| 257 | int event; |
| 258 | union iwreq_data wrqu; |
| 259 | |
| 260 | switch (status) { |
| 261 | case ZD1201_ASSOCSTATUS_STAASSOC: |
| 262 | case ZD1201_ASSOCSTATUS_REASSOC: |
| 263 | event = IWEVREGISTERED; |
| 264 | break; |
| 265 | case ZD1201_ASSOCSTATUS_DISASSOC: |
| 266 | case ZD1201_ASSOCSTATUS_ASSOCFAIL: |
| 267 | case ZD1201_ASSOCSTATUS_AUTHFAIL: |
| 268 | default: |
| 269 | event = IWEVEXPIRED; |
| 270 | } |
| 271 | memcpy(wrqu.addr.sa_data, data+10, ETH_ALEN); |
| 272 | wrqu.addr.sa_family = ARPHRD_ETHER; |
| 273 | |
| 274 | /* Send event to user space */ |
| 275 | wireless_send_event(zd->dev, event, &wrqu, NULL); |
| 276 | |
| 277 | goto resubmit; |
| 278 | } |
| 279 | if (infotype == ZD1201_INF_AUTHREQ) { |
| 280 | union iwreq_data wrqu; |
| 281 | |
| 282 | memcpy(wrqu.addr.sa_data, data+8, ETH_ALEN); |
| 283 | wrqu.addr.sa_family = ARPHRD_ETHER; |
| 284 | /* There isn't a event that trully fits this request. |
| 285 | We assume that userspace will be smart enough to |
| 286 | see a new station being expired and sends back a |
| 287 | authstation ioctl to authorize it. */ |
| 288 | wireless_send_event(zd->dev, IWEVEXPIRED, &wrqu, NULL); |
| 289 | goto resubmit; |
| 290 | } |
| 291 | /* Other infotypes are handled outside this handler */ |
| 292 | zd->rxlen = 0; |
| 293 | while (i < urb->actual_length) { |
| 294 | copylen = le16_to_cpu(*(__le16*)&data[i+2]); |
| 295 | /* Sanity check, sometimes we get junk */ |
| 296 | if (copylen+zd->rxlen > sizeof(zd->rxdata)) |
| 297 | break; |
| 298 | memcpy(zd->rxdata+zd->rxlen, data+i+4, copylen); |
| 299 | zd->rxlen += copylen; |
| 300 | i += 64; |
| 301 | } |
| 302 | if (i >= urb->actual_length) { |
| 303 | zd->rxdatas = 1; |
| 304 | wake_up(&zd->rxdataq); |
| 305 | } |
| 306 | goto resubmit; |
| 307 | } |
| 308 | /* Actual data */ |
| 309 | if (data[urb->actual_length-1] == ZD1201_PACKET_RXDATA) { |
| 310 | int datalen = urb->actual_length-1; |
| 311 | unsigned short len, fc, seq; |
| 312 | struct hlist_node *node; |
| 313 | |
| 314 | len = ntohs(*(__be16 *)&data[datalen-2]); |
| 315 | if (len>datalen) |
| 316 | len=datalen; |
| 317 | fc = le16_to_cpu(*(__le16 *)&data[datalen-16]); |
| 318 | seq = le16_to_cpu(*(__le16 *)&data[datalen-24]); |
| 319 | |
Pavel Machek | 2a80634 | 2006-05-26 22:07:48 +0200 | [diff] [blame] | 320 | if (zd->monitor) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 321 | if (datalen < 24) |
| 322 | goto resubmit; |
| 323 | if (!(skb = dev_alloc_skb(datalen+24))) |
| 324 | goto resubmit; |
| 325 | |
| 326 | memcpy(skb_put(skb, 2), &data[datalen-16], 2); |
| 327 | memcpy(skb_put(skb, 2), &data[datalen-2], 2); |
| 328 | memcpy(skb_put(skb, 6), &data[datalen-14], 6); |
| 329 | memcpy(skb_put(skb, 6), &data[datalen-22], 6); |
| 330 | memcpy(skb_put(skb, 6), &data[datalen-8], 6); |
| 331 | memcpy(skb_put(skb, 2), &data[datalen-24], 2); |
| 332 | memcpy(skb_put(skb, len), data, len); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 333 | skb->protocol = eth_type_trans(skb, zd->dev); |
Stephen Hemminger | 22bc1ce | 2009-03-20 19:36:31 +0000 | [diff] [blame] | 334 | zd->dev->stats.rx_packets++; |
| 335 | zd->dev->stats.rx_bytes += skb->len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 336 | netif_rx(skb); |
| 337 | goto resubmit; |
| 338 | } |
| 339 | |
Al Viro | 3dcefbc | 2005-04-26 18:43:05 +0100 | [diff] [blame] | 340 | if ((seq & IEEE80211_SCTL_FRAG) || |
| 341 | (fc & IEEE80211_FCTL_MOREFRAGS)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 342 | struct zd1201_frag *frag = NULL; |
| 343 | char *ptr; |
| 344 | |
| 345 | if (datalen<14) |
| 346 | goto resubmit; |
Al Viro | 3dcefbc | 2005-04-26 18:43:05 +0100 | [diff] [blame] | 347 | if ((seq & IEEE80211_SCTL_FRAG) == 0) { |
Alexey Dobriyan | 81065e2 | 2005-08-22 13:11:09 -0700 | [diff] [blame] | 348 | frag = kmalloc(sizeof(*frag), GFP_ATOMIC); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 349 | if (!frag) |
| 350 | goto resubmit; |
Johannes Berg | 2c706002 | 2008-10-30 22:09:54 +0100 | [diff] [blame] | 351 | skb = dev_alloc_skb(IEEE80211_MAX_DATA_LEN +14+2); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 352 | if (!skb) { |
| 353 | kfree(frag); |
| 354 | goto resubmit; |
| 355 | } |
| 356 | frag->skb = skb; |
Al Viro | 3dcefbc | 2005-04-26 18:43:05 +0100 | [diff] [blame] | 357 | frag->seq = seq & IEEE80211_SCTL_SEQ; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 358 | skb_reserve(skb, 2); |
| 359 | memcpy(skb_put(skb, 12), &data[datalen-14], 12); |
| 360 | memcpy(skb_put(skb, 2), &data[6], 2); |
| 361 | memcpy(skb_put(skb, len), data+8, len); |
| 362 | hlist_add_head(&frag->fnode, &zd->fraglist); |
| 363 | goto resubmit; |
| 364 | } |
| 365 | hlist_for_each_entry(frag, node, &zd->fraglist, fnode) |
Pavel Machek | 2a80634 | 2006-05-26 22:07:48 +0200 | [diff] [blame] | 366 | if (frag->seq == (seq&IEEE80211_SCTL_SEQ)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 367 | break; |
| 368 | if (!frag) |
| 369 | goto resubmit; |
| 370 | skb = frag->skb; |
| 371 | ptr = skb_put(skb, len); |
| 372 | if (ptr) |
| 373 | memcpy(ptr, data+8, len); |
Al Viro | 3dcefbc | 2005-04-26 18:43:05 +0100 | [diff] [blame] | 374 | if (fc & IEEE80211_FCTL_MOREFRAGS) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 375 | goto resubmit; |
| 376 | hlist_del_init(&frag->fnode); |
| 377 | kfree(frag); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 378 | } else { |
| 379 | if (datalen<14) |
| 380 | goto resubmit; |
| 381 | skb = dev_alloc_skb(len + 14 + 2); |
| 382 | if (!skb) |
| 383 | goto resubmit; |
| 384 | skb_reserve(skb, 2); |
| 385 | memcpy(skb_put(skb, 12), &data[datalen-14], 12); |
| 386 | memcpy(skb_put(skb, 2), &data[6], 2); |
| 387 | memcpy(skb_put(skb, len), data+8, len); |
| 388 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 389 | skb->protocol = eth_type_trans(skb, zd->dev); |
Stephen Hemminger | 22bc1ce | 2009-03-20 19:36:31 +0000 | [diff] [blame] | 390 | zd->dev->stats.rx_packets++; |
| 391 | zd->dev->stats.rx_bytes += skb->len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 392 | netif_rx(skb); |
| 393 | } |
| 394 | resubmit: |
| 395 | memset(data, 0, ZD1201_RXSIZE); |
| 396 | |
| 397 | urb->status = 0; |
| 398 | urb->dev = zd->usb; |
| 399 | if(usb_submit_urb(urb, GFP_ATOMIC)) |
| 400 | free = 1; |
| 401 | |
| 402 | exit: |
| 403 | if (free) { |
| 404 | zd->rxlen = 0; |
| 405 | zd->rxdatas = 1; |
| 406 | wake_up(&zd->rxdataq); |
| 407 | kfree(urb->transfer_buffer); |
| 408 | } |
| 409 | return; |
| 410 | } |
| 411 | |
| 412 | static int zd1201_getconfig(struct zd1201 *zd, int rid, void *riddata, |
| 413 | unsigned int riddatalen) |
| 414 | { |
| 415 | int err; |
| 416 | int i = 0; |
| 417 | int code; |
| 418 | int rid_fid; |
| 419 | int length; |
| 420 | unsigned char *pdata; |
Pavel Machek | 2a80634 | 2006-05-26 22:07:48 +0200 | [diff] [blame] | 421 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 422 | zd->rxdatas = 0; |
| 423 | err = zd1201_docmd(zd, ZD1201_CMDCODE_ACCESS, rid, 0, 0); |
| 424 | if (err) |
| 425 | return err; |
| 426 | |
| 427 | wait_event_interruptible(zd->rxdataq, zd->rxdatas); |
| 428 | if (!zd->rxlen) |
| 429 | return -EIO; |
| 430 | |
| 431 | code = le16_to_cpu(*(__le16*)(&zd->rxdata[4])); |
| 432 | rid_fid = le16_to_cpu(*(__le16*)(&zd->rxdata[6])); |
| 433 | length = le16_to_cpu(*(__le16*)(&zd->rxdata[8])); |
| 434 | if (length > zd->rxlen) |
| 435 | length = zd->rxlen-6; |
| 436 | |
| 437 | /* If access bit is not on, then error */ |
| 438 | if ((code & ZD1201_ACCESSBIT) != ZD1201_ACCESSBIT || rid_fid != rid ) |
| 439 | return -EINVAL; |
| 440 | |
| 441 | /* Not enough buffer for allocating data */ |
| 442 | if (riddatalen != (length - 4)) { |
| 443 | dev_dbg(&zd->usb->dev, "riddatalen mismatches, expected=%u, (packet=%u) length=%u, rid=0x%04X, rid_fid=0x%04X\n", |
| 444 | riddatalen, zd->rxlen, length, rid, rid_fid); |
| 445 | return -ENODATA; |
| 446 | } |
| 447 | |
| 448 | zd->rxdatas = 0; |
| 449 | /* Issue SetRxRid commnd */ |
| 450 | err = zd1201_docmd(zd, ZD1201_CMDCODE_SETRXRID, rid, 0, length); |
| 451 | if (err) |
| 452 | return err; |
| 453 | |
| 454 | /* Receive RID record from resource packets */ |
| 455 | wait_event_interruptible(zd->rxdataq, zd->rxdatas); |
| 456 | if (!zd->rxlen) |
| 457 | return -EIO; |
| 458 | |
| 459 | if (zd->rxdata[zd->rxlen - 1] != ZD1201_PACKET_RESOURCE) { |
| 460 | dev_dbg(&zd->usb->dev, "Packet type mismatch: 0x%x not 0x3\n", |
| 461 | zd->rxdata[zd->rxlen-1]); |
| 462 | return -EINVAL; |
| 463 | } |
| 464 | |
| 465 | /* Set the data pointer and received data length */ |
| 466 | pdata = zd->rxdata; |
| 467 | length = zd->rxlen; |
| 468 | |
| 469 | do { |
Pavel Machek | 2a80634 | 2006-05-26 22:07:48 +0200 | [diff] [blame] | 470 | int actual_length; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 471 | |
| 472 | actual_length = (length > 64) ? 64 : length; |
| 473 | |
Pavel Machek | 2a80634 | 2006-05-26 22:07:48 +0200 | [diff] [blame] | 474 | if (pdata[0] != 0x3) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 475 | dev_dbg(&zd->usb->dev, "Rx Resource packet type error: %02X\n", |
| 476 | pdata[0]); |
| 477 | return -EINVAL; |
| 478 | } |
| 479 | |
| 480 | if (actual_length != 64) { |
| 481 | /* Trim the last packet type byte */ |
| 482 | actual_length--; |
| 483 | } |
| 484 | |
| 485 | /* Skip the 4 bytes header (RID length and RID) */ |
Pavel Machek | 2a80634 | 2006-05-26 22:07:48 +0200 | [diff] [blame] | 486 | if (i == 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 487 | pdata += 8; |
| 488 | actual_length -= 8; |
Pavel Machek | 2a80634 | 2006-05-26 22:07:48 +0200 | [diff] [blame] | 489 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 490 | pdata += 4; |
| 491 | actual_length -= 4; |
| 492 | } |
| 493 | |
| 494 | memcpy(riddata, pdata, actual_length); |
| 495 | riddata += actual_length; |
| 496 | pdata += actual_length; |
| 497 | length -= 64; |
| 498 | i++; |
| 499 | } while (length > 0); |
| 500 | |
| 501 | return 0; |
| 502 | } |
| 503 | |
| 504 | /* |
| 505 | * resreq: |
| 506 | * byte type |
| 507 | * byte sequence |
| 508 | * u16 reserved |
| 509 | * byte data[12] |
| 510 | * total: 16 |
| 511 | */ |
| 512 | static int zd1201_setconfig(struct zd1201 *zd, int rid, void *buf, int len, int wait) |
| 513 | { |
| 514 | int err; |
| 515 | unsigned char *request; |
| 516 | int reqlen; |
| 517 | char seq=0; |
| 518 | struct urb *urb; |
Al Viro | 55016f1 | 2005-10-21 03:21:58 -0400 | [diff] [blame] | 519 | gfp_t gfp_mask = wait ? GFP_NOIO : GFP_ATOMIC; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 520 | |
| 521 | len += 4; /* first 4 are for header */ |
| 522 | |
| 523 | zd->rxdatas = 0; |
| 524 | zd->rxlen = 0; |
| 525 | for (seq=0; len > 0; seq++) { |
| 526 | request = kmalloc(16, gfp_mask); |
| 527 | if (!request) |
| 528 | return -ENOMEM; |
| 529 | urb = usb_alloc_urb(0, gfp_mask); |
| 530 | if (!urb) { |
| 531 | kfree(request); |
| 532 | return -ENOMEM; |
| 533 | } |
| 534 | memset(request, 0, 16); |
| 535 | reqlen = len>12 ? 12 : len; |
| 536 | request[0] = ZD1201_USB_RESREQ; |
| 537 | request[1] = seq; |
| 538 | request[2] = 0; |
| 539 | request[3] = 0; |
| 540 | if (request[1] == 0) { |
| 541 | /* add header */ |
| 542 | *(__le16*)&request[4] = cpu_to_le16((len-2+1)/2); |
| 543 | *(__le16*)&request[6] = cpu_to_le16(rid); |
| 544 | memcpy(request+8, buf, reqlen-4); |
| 545 | buf += reqlen-4; |
| 546 | } else { |
| 547 | memcpy(request+4, buf, reqlen); |
| 548 | buf += reqlen; |
| 549 | } |
| 550 | |
| 551 | len -= reqlen; |
| 552 | |
| 553 | usb_fill_bulk_urb(urb, zd->usb, usb_sndbulkpipe(zd->usb, |
| 554 | zd->endp_out2), request, 16, zd1201_usbfree, zd); |
| 555 | err = usb_submit_urb(urb, gfp_mask); |
| 556 | if (err) |
| 557 | goto err; |
| 558 | } |
| 559 | |
| 560 | request = kmalloc(16, gfp_mask); |
| 561 | if (!request) |
| 562 | return -ENOMEM; |
| 563 | urb = usb_alloc_urb(0, gfp_mask); |
| 564 | if (!urb) { |
| 565 | kfree(request); |
| 566 | return -ENOMEM; |
| 567 | } |
| 568 | *((__le32*)request) = cpu_to_le32(ZD1201_USB_CMDREQ); |
| 569 | *((__le16*)&request[4]) = |
| 570 | cpu_to_le16(ZD1201_CMDCODE_ACCESS|ZD1201_ACCESSBIT); |
| 571 | *((__le16*)&request[6]) = cpu_to_le16(rid); |
| 572 | *((__le16*)&request[8]) = cpu_to_le16(0); |
| 573 | *((__le16*)&request[10]) = cpu_to_le16(0); |
| 574 | usb_fill_bulk_urb(urb, zd->usb, usb_sndbulkpipe(zd->usb, zd->endp_out2), |
| 575 | request, 16, zd1201_usbfree, zd); |
| 576 | err = usb_submit_urb(urb, gfp_mask); |
| 577 | if (err) |
| 578 | goto err; |
| 579 | |
| 580 | if (wait) { |
| 581 | wait_event_interruptible(zd->rxdataq, zd->rxdatas); |
| 582 | if (!zd->rxlen || le16_to_cpu(*(__le16*)&zd->rxdata[6]) != rid) { |
| 583 | dev_dbg(&zd->usb->dev, "wrong or no RID received\n"); |
| 584 | } |
| 585 | } |
| 586 | |
| 587 | return 0; |
| 588 | err: |
| 589 | kfree(request); |
| 590 | usb_free_urb(urb); |
| 591 | return err; |
| 592 | } |
| 593 | |
| 594 | static inline int zd1201_getconfig16(struct zd1201 *zd, int rid, short *val) |
| 595 | { |
| 596 | int err; |
| 597 | __le16 zdval; |
| 598 | |
| 599 | err = zd1201_getconfig(zd, rid, &zdval, sizeof(__le16)); |
| 600 | if (err) |
| 601 | return err; |
| 602 | *val = le16_to_cpu(zdval); |
| 603 | return 0; |
| 604 | } |
| 605 | |
| 606 | static inline int zd1201_setconfig16(struct zd1201 *zd, int rid, short val) |
| 607 | { |
| 608 | __le16 zdval = cpu_to_le16(val); |
| 609 | return (zd1201_setconfig(zd, rid, &zdval, sizeof(__le16), 1)); |
| 610 | } |
| 611 | |
Adrian Bunk | 2e0a6b8 | 2005-04-22 15:07:01 -0700 | [diff] [blame] | 612 | static int zd1201_drvr_start(struct zd1201 *zd) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 613 | { |
| 614 | int err, i; |
| 615 | short max; |
| 616 | __le16 zdmax; |
| 617 | unsigned char *buffer; |
Pavel Machek | 2a80634 | 2006-05-26 22:07:48 +0200 | [diff] [blame] | 618 | |
Eric Sesterhenn | 80b6ca4 | 2006-02-27 21:29:43 +0100 | [diff] [blame] | 619 | buffer = kzalloc(ZD1201_RXSIZE, GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 620 | if (!buffer) |
| 621 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 622 | |
| 623 | usb_fill_bulk_urb(zd->rx_urb, zd->usb, |
| 624 | usb_rcvbulkpipe(zd->usb, zd->endp_in), buffer, ZD1201_RXSIZE, |
| 625 | zd1201_usbrx, zd); |
| 626 | |
| 627 | err = usb_submit_urb(zd->rx_urb, GFP_KERNEL); |
| 628 | if (err) |
| 629 | goto err_buffer; |
Pavel Machek | 2a80634 | 2006-05-26 22:07:48 +0200 | [diff] [blame] | 630 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 631 | err = zd1201_docmd(zd, ZD1201_CMDCODE_INIT, 0, 0, 0); |
| 632 | if (err) |
| 633 | goto err_urb; |
| 634 | |
| 635 | err = zd1201_getconfig(zd, ZD1201_RID_CNFMAXTXBUFFERNUMBER, &zdmax, |
| 636 | sizeof(__le16)); |
| 637 | if (err) |
| 638 | goto err_urb; |
| 639 | |
| 640 | max = le16_to_cpu(zdmax); |
| 641 | for (i=0; i<max; i++) { |
| 642 | err = zd1201_docmd(zd, ZD1201_CMDCODE_ALLOC, 1514, 0, 0); |
| 643 | if (err) |
| 644 | goto err_urb; |
| 645 | } |
| 646 | |
| 647 | return 0; |
| 648 | |
| 649 | err_urb: |
| 650 | usb_kill_urb(zd->rx_urb); |
| 651 | return err; |
| 652 | err_buffer: |
| 653 | kfree(buffer); |
| 654 | return err; |
| 655 | } |
| 656 | |
| 657 | /* Magic alert: The firmware doesn't seem to like the MAC state being |
| 658 | * toggled in promisc (aka monitor) mode. |
| 659 | * (It works a number of times, but will halt eventually) |
| 660 | * So we turn it of before disabling and on after enabling if needed. |
| 661 | */ |
| 662 | static int zd1201_enable(struct zd1201 *zd) |
| 663 | { |
| 664 | int err; |
| 665 | |
| 666 | if (zd->mac_enabled) |
| 667 | return 0; |
| 668 | |
| 669 | err = zd1201_docmd(zd, ZD1201_CMDCODE_ENABLE, 0, 0, 0); |
| 670 | if (!err) |
| 671 | zd->mac_enabled = 1; |
| 672 | |
| 673 | if (zd->monitor) |
| 674 | err = zd1201_setconfig16(zd, ZD1201_RID_PROMISCUOUSMODE, 1); |
| 675 | |
| 676 | return err; |
| 677 | } |
| 678 | |
| 679 | static int zd1201_disable(struct zd1201 *zd) |
| 680 | { |
| 681 | int err; |
Pavel Machek | 2a80634 | 2006-05-26 22:07:48 +0200 | [diff] [blame] | 682 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 683 | if (!zd->mac_enabled) |
| 684 | return 0; |
| 685 | if (zd->monitor) { |
| 686 | err = zd1201_setconfig16(zd, ZD1201_RID_PROMISCUOUSMODE, 0); |
| 687 | if (err) |
| 688 | return err; |
| 689 | } |
| 690 | |
| 691 | err = zd1201_docmd(zd, ZD1201_CMDCODE_DISABLE, 0, 0, 0); |
| 692 | if (!err) |
| 693 | zd->mac_enabled = 0; |
| 694 | return err; |
| 695 | } |
| 696 | |
| 697 | static int zd1201_mac_reset(struct zd1201 *zd) |
| 698 | { |
| 699 | if (!zd->mac_enabled) |
| 700 | return 0; |
| 701 | zd1201_disable(zd); |
| 702 | return zd1201_enable(zd); |
| 703 | } |
| 704 | |
| 705 | static int zd1201_join(struct zd1201 *zd, char *essid, int essidlen) |
| 706 | { |
| 707 | int err, val; |
| 708 | char buf[IW_ESSID_MAX_SIZE+2]; |
| 709 | |
| 710 | err = zd1201_disable(zd); |
| 711 | if (err) |
| 712 | return err; |
| 713 | |
| 714 | val = ZD1201_CNFAUTHENTICATION_OPENSYSTEM; |
| 715 | val |= ZD1201_CNFAUTHENTICATION_SHAREDKEY; |
| 716 | err = zd1201_setconfig16(zd, ZD1201_RID_CNFAUTHENTICATION, val); |
| 717 | if (err) |
| 718 | return err; |
| 719 | |
| 720 | *(__le16 *)buf = cpu_to_le16(essidlen); |
| 721 | memcpy(buf+2, essid, essidlen); |
| 722 | if (!zd->ap) { /* Normal station */ |
| 723 | err = zd1201_setconfig(zd, ZD1201_RID_CNFDESIREDSSID, buf, |
| 724 | IW_ESSID_MAX_SIZE+2, 1); |
| 725 | if (err) |
| 726 | return err; |
| 727 | } else { /* AP */ |
| 728 | err = zd1201_setconfig(zd, ZD1201_RID_CNFOWNSSID, buf, |
| 729 | IW_ESSID_MAX_SIZE+2, 1); |
| 730 | if (err) |
| 731 | return err; |
| 732 | } |
| 733 | |
| 734 | err = zd1201_setconfig(zd, ZD1201_RID_CNFOWNMACADDR, |
| 735 | zd->dev->dev_addr, zd->dev->addr_len, 1); |
| 736 | if (err) |
| 737 | return err; |
| 738 | |
| 739 | err = zd1201_enable(zd); |
| 740 | if (err) |
| 741 | return err; |
| 742 | |
| 743 | msleep(100); |
| 744 | return 0; |
| 745 | } |
| 746 | |
| 747 | static int zd1201_net_open(struct net_device *dev) |
| 748 | { |
John W. Linville | 3d29b0c | 2008-10-31 14:13:12 -0400 | [diff] [blame] | 749 | struct zd1201 *zd = netdev_priv(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 750 | |
| 751 | /* Start MAC with wildcard if no essid set */ |
| 752 | if (!zd->mac_enabled) |
| 753 | zd1201_join(zd, zd->essid, zd->essidlen); |
| 754 | netif_start_queue(dev); |
| 755 | |
| 756 | return 0; |
| 757 | } |
| 758 | |
| 759 | static int zd1201_net_stop(struct net_device *dev) |
| 760 | { |
| 761 | netif_stop_queue(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 762 | return 0; |
| 763 | } |
| 764 | |
| 765 | /* |
| 766 | RFC 1042 encapsulates Ethernet frames in 802.11 frames |
| 767 | by prefixing them with 0xaa, 0xaa, 0x03) followed by a SNAP OID of 0 |
Steven Cole | 093cf72 | 2005-05-03 19:07:24 -0600 | [diff] [blame] | 768 | (0x00, 0x00, 0x00). Zd requires an additional padding, copy |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 769 | of ethernet addresses, length of the standard RFC 1042 packet |
| 770 | and a command byte (which is nul for tx). |
| 771 | |
| 772 | tx frame (from Wlan NG): |
| 773 | RFC 1042: |
| 774 | llc 0xAA 0xAA 0x03 (802.2 LLC) |
| 775 | snap 0x00 0x00 0x00 (Ethernet encapsulated) |
| 776 | type 2 bytes, Ethernet type field |
| 777 | payload (minus eth header) |
| 778 | Zydas specific: |
| 779 | padding 1B if (skb->len+8+1)%64==0 |
| 780 | Eth MAC addr 12 bytes, Ethernet MAC addresses |
| 781 | length 2 bytes, RFC 1042 packet length |
| 782 | (llc+snap+type+payload) |
| 783 | zd 1 null byte, zd1201 packet type |
| 784 | */ |
Stephen Hemminger | d0cf9c0 | 2009-08-31 19:50:57 +0000 | [diff] [blame] | 785 | static netdev_tx_t zd1201_hard_start_xmit(struct sk_buff *skb, |
| 786 | struct net_device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 787 | { |
John W. Linville | 3d29b0c | 2008-10-31 14:13:12 -0400 | [diff] [blame] | 788 | struct zd1201 *zd = netdev_priv(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 789 | unsigned char *txbuf = zd->txdata; |
| 790 | int txbuflen, pad = 0, err; |
| 791 | struct urb *urb = zd->tx_urb; |
| 792 | |
| 793 | if (!zd->mac_enabled || zd->monitor) { |
Stephen Hemminger | 22bc1ce | 2009-03-20 19:36:31 +0000 | [diff] [blame] | 794 | dev->stats.tx_dropped++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 795 | kfree_skb(skb); |
Patrick McHardy | 6ed1065 | 2009-06-23 06:03:08 +0000 | [diff] [blame] | 796 | return NETDEV_TX_OK; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 797 | } |
| 798 | netif_stop_queue(dev); |
| 799 | |
| 800 | txbuflen = skb->len + 8 + 1; |
| 801 | if (txbuflen%64 == 0) { |
| 802 | pad = 1; |
| 803 | txbuflen++; |
| 804 | } |
| 805 | txbuf[0] = 0xAA; |
| 806 | txbuf[1] = 0xAA; |
| 807 | txbuf[2] = 0x03; |
| 808 | txbuf[3] = 0x00; /* rfc1042 */ |
| 809 | txbuf[4] = 0x00; |
| 810 | txbuf[5] = 0x00; |
| 811 | |
Arnaldo Carvalho de Melo | d626f62 | 2007-03-27 18:55:52 -0300 | [diff] [blame] | 812 | skb_copy_from_linear_data_offset(skb, 12, txbuf + 6, skb->len - 12); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 813 | if (pad) |
| 814 | txbuf[skb->len-12+6]=0; |
Arnaldo Carvalho de Melo | d626f62 | 2007-03-27 18:55:52 -0300 | [diff] [blame] | 815 | skb_copy_from_linear_data(skb, txbuf + skb->len - 12 + 6 + pad, 12); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 816 | *(__be16*)&txbuf[skb->len+6+pad] = htons(skb->len-12+6); |
| 817 | txbuf[txbuflen-1] = 0; |
| 818 | |
| 819 | usb_fill_bulk_urb(urb, zd->usb, usb_sndbulkpipe(zd->usb, zd->endp_out), |
| 820 | txbuf, txbuflen, zd1201_usbtx, zd); |
| 821 | |
| 822 | err = usb_submit_urb(zd->tx_urb, GFP_ATOMIC); |
| 823 | if (err) { |
Stephen Hemminger | 22bc1ce | 2009-03-20 19:36:31 +0000 | [diff] [blame] | 824 | dev->stats.tx_errors++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 825 | netif_start_queue(dev); |
Patrick McHardy | 4153e77 | 2009-06-12 04:08:02 +0000 | [diff] [blame] | 826 | } else { |
| 827 | dev->stats.tx_packets++; |
| 828 | dev->stats.tx_bytes += skb->len; |
| 829 | dev->trans_start = jiffies; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 830 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 831 | kfree_skb(skb); |
| 832 | |
Patrick McHardy | 6ed1065 | 2009-06-23 06:03:08 +0000 | [diff] [blame] | 833 | return NETDEV_TX_OK; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 834 | } |
| 835 | |
| 836 | static void zd1201_tx_timeout(struct net_device *dev) |
| 837 | { |
John W. Linville | 3d29b0c | 2008-10-31 14:13:12 -0400 | [diff] [blame] | 838 | struct zd1201 *zd = netdev_priv(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 839 | |
| 840 | if (!zd) |
| 841 | return; |
| 842 | dev_warn(&zd->usb->dev, "%s: TX timeout, shooting down urb\n", |
| 843 | dev->name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 844 | usb_unlink_urb(zd->tx_urb); |
Stephen Hemminger | 22bc1ce | 2009-03-20 19:36:31 +0000 | [diff] [blame] | 845 | dev->stats.tx_errors++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 846 | /* Restart the timeout to quiet the watchdog: */ |
| 847 | dev->trans_start = jiffies; |
| 848 | } |
| 849 | |
| 850 | static int zd1201_set_mac_address(struct net_device *dev, void *p) |
| 851 | { |
| 852 | struct sockaddr *addr = p; |
John W. Linville | 3d29b0c | 2008-10-31 14:13:12 -0400 | [diff] [blame] | 853 | struct zd1201 *zd = netdev_priv(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 854 | int err; |
| 855 | |
| 856 | if (!zd) |
| 857 | return -ENODEV; |
| 858 | |
| 859 | err = zd1201_setconfig(zd, ZD1201_RID_CNFOWNMACADDR, |
| 860 | addr->sa_data, dev->addr_len, 1); |
| 861 | if (err) |
| 862 | return err; |
| 863 | memcpy(dev->dev_addr, addr->sa_data, dev->addr_len); |
| 864 | |
| 865 | return zd1201_mac_reset(zd); |
| 866 | } |
| 867 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 868 | static struct iw_statistics *zd1201_get_wireless_stats(struct net_device *dev) |
| 869 | { |
John W. Linville | 3d29b0c | 2008-10-31 14:13:12 -0400 | [diff] [blame] | 870 | struct zd1201 *zd = netdev_priv(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 871 | |
| 872 | return &zd->iwstats; |
| 873 | } |
| 874 | |
| 875 | static void zd1201_set_multicast(struct net_device *dev) |
| 876 | { |
John W. Linville | 3d29b0c | 2008-10-31 14:13:12 -0400 | [diff] [blame] | 877 | struct zd1201 *zd = netdev_priv(dev); |
Jiri Pirko | 655ffee | 2010-02-27 07:35:45 +0000 | [diff] [blame] | 878 | struct dev_mc_list *mc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 879 | unsigned char reqbuf[ETH_ALEN*ZD1201_MAXMULTI]; |
| 880 | int i; |
| 881 | |
Jiri Pirko | 4cd24ea | 2010-02-08 04:30:35 +0000 | [diff] [blame] | 882 | if (netdev_mc_count(dev) > ZD1201_MAXMULTI) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 883 | return; |
| 884 | |
Jiri Pirko | 655ffee | 2010-02-27 07:35:45 +0000 | [diff] [blame] | 885 | i = 0; |
| 886 | netdev_for_each_mc_addr(mc, dev) |
| 887 | memcpy(reqbuf + i++ * ETH_ALEN, mc->dmi_addr, ETH_ALEN); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 888 | zd1201_setconfig(zd, ZD1201_RID_CNFGROUPADDRESS, reqbuf, |
Jiri Pirko | 4cd24ea | 2010-02-08 04:30:35 +0000 | [diff] [blame] | 889 | netdev_mc_count(dev) * ETH_ALEN, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 890 | } |
| 891 | |
| 892 | static int zd1201_config_commit(struct net_device *dev, |
| 893 | struct iw_request_info *info, struct iw_point *data, char *essid) |
| 894 | { |
John W. Linville | 3d29b0c | 2008-10-31 14:13:12 -0400 | [diff] [blame] | 895 | struct zd1201 *zd = netdev_priv(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 896 | |
| 897 | return zd1201_mac_reset(zd); |
| 898 | } |
| 899 | |
| 900 | static int zd1201_get_name(struct net_device *dev, |
| 901 | struct iw_request_info *info, char *name, char *extra) |
| 902 | { |
| 903 | strcpy(name, "IEEE 802.11b"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 904 | return 0; |
| 905 | } |
| 906 | |
| 907 | static int zd1201_set_freq(struct net_device *dev, |
| 908 | struct iw_request_info *info, struct iw_freq *freq, char *extra) |
| 909 | { |
John W. Linville | 3d29b0c | 2008-10-31 14:13:12 -0400 | [diff] [blame] | 910 | struct zd1201 *zd = netdev_priv(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 911 | short channel = 0; |
| 912 | int err; |
| 913 | |
| 914 | if (freq->e == 0) |
| 915 | channel = freq->m; |
| 916 | else { |
David Kilroy | 9ee677c | 2008-12-23 14:03:38 +0000 | [diff] [blame] | 917 | channel = ieee80211_freq_to_dsss_chan(freq->m); |
| 918 | if (channel < 0) |
| 919 | channel = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 920 | } |
| 921 | |
| 922 | err = zd1201_setconfig16(zd, ZD1201_RID_CNFOWNCHANNEL, channel); |
| 923 | if (err) |
| 924 | return err; |
| 925 | |
| 926 | zd1201_mac_reset(zd); |
| 927 | |
| 928 | return 0; |
| 929 | } |
| 930 | |
| 931 | static int zd1201_get_freq(struct net_device *dev, |
| 932 | struct iw_request_info *info, struct iw_freq *freq, char *extra) |
| 933 | { |
John W. Linville | 3d29b0c | 2008-10-31 14:13:12 -0400 | [diff] [blame] | 934 | struct zd1201 *zd = netdev_priv(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 935 | short channel; |
| 936 | int err; |
| 937 | |
| 938 | err = zd1201_getconfig16(zd, ZD1201_RID_CNFOWNCHANNEL, &channel); |
| 939 | if (err) |
| 940 | return err; |
| 941 | freq->e = 0; |
| 942 | freq->m = channel; |
| 943 | |
| 944 | return 0; |
| 945 | } |
| 946 | |
| 947 | static int zd1201_set_mode(struct net_device *dev, |
| 948 | struct iw_request_info *info, __u32 *mode, char *extra) |
| 949 | { |
John W. Linville | 3d29b0c | 2008-10-31 14:13:12 -0400 | [diff] [blame] | 950 | struct zd1201 *zd = netdev_priv(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 951 | short porttype, monitor = 0; |
| 952 | unsigned char buffer[IW_ESSID_MAX_SIZE+2]; |
| 953 | int err; |
| 954 | |
| 955 | if (zd->ap) { |
| 956 | if (*mode != IW_MODE_MASTER) |
| 957 | return -EINVAL; |
| 958 | return 0; |
| 959 | } |
| 960 | |
| 961 | err = zd1201_setconfig16(zd, ZD1201_RID_PROMISCUOUSMODE, 0); |
| 962 | if (err) |
| 963 | return err; |
| 964 | zd->dev->type = ARPHRD_ETHER; |
| 965 | switch(*mode) { |
| 966 | case IW_MODE_MONITOR: |
| 967 | monitor = 1; |
| 968 | zd->dev->type = ARPHRD_IEEE80211; |
| 969 | /* Make sure we are no longer associated with by |
| 970 | setting an 'impossible' essid. |
| 971 | (otherwise we mess up firmware) |
| 972 | */ |
| 973 | zd1201_join(zd, "\0-*#\0", 5); |
| 974 | /* Put port in pIBSS */ |
| 975 | case 8: /* No pseudo-IBSS in wireless extensions (yet) */ |
| 976 | porttype = ZD1201_PORTTYPE_PSEUDOIBSS; |
| 977 | break; |
| 978 | case IW_MODE_ADHOC: |
| 979 | porttype = ZD1201_PORTTYPE_IBSS; |
| 980 | break; |
| 981 | case IW_MODE_INFRA: |
| 982 | porttype = ZD1201_PORTTYPE_BSS; |
| 983 | break; |
| 984 | default: |
| 985 | return -EINVAL; |
| 986 | } |
| 987 | |
| 988 | err = zd1201_setconfig16(zd, ZD1201_RID_CNFPORTTYPE, porttype); |
| 989 | if (err) |
| 990 | return err; |
| 991 | if (zd->monitor && !monitor) { |
| 992 | zd1201_disable(zd); |
| 993 | *(__le16 *)buffer = cpu_to_le16(zd->essidlen); |
| 994 | memcpy(buffer+2, zd->essid, zd->essidlen); |
| 995 | err = zd1201_setconfig(zd, ZD1201_RID_CNFDESIREDSSID, |
| 996 | buffer, IW_ESSID_MAX_SIZE+2, 1); |
| 997 | if (err) |
| 998 | return err; |
| 999 | } |
Pavel Machek | 2a80634 | 2006-05-26 22:07:48 +0200 | [diff] [blame] | 1000 | zd->monitor = monitor; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1001 | /* If monitor mode is set we don't actually turn it on here since it |
| 1002 | * is done during mac reset anyway (see zd1201_mac_enable). |
| 1003 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1004 | zd1201_mac_reset(zd); |
| 1005 | |
| 1006 | return 0; |
| 1007 | } |
| 1008 | |
| 1009 | static int zd1201_get_mode(struct net_device *dev, |
| 1010 | struct iw_request_info *info, __u32 *mode, char *extra) |
| 1011 | { |
John W. Linville | 3d29b0c | 2008-10-31 14:13:12 -0400 | [diff] [blame] | 1012 | struct zd1201 *zd = netdev_priv(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1013 | short porttype; |
| 1014 | int err; |
| 1015 | |
| 1016 | err = zd1201_getconfig16(zd, ZD1201_RID_CNFPORTTYPE, &porttype); |
| 1017 | if (err) |
| 1018 | return err; |
| 1019 | switch(porttype) { |
| 1020 | case ZD1201_PORTTYPE_IBSS: |
| 1021 | *mode = IW_MODE_ADHOC; |
| 1022 | break; |
| 1023 | case ZD1201_PORTTYPE_BSS: |
| 1024 | *mode = IW_MODE_INFRA; |
| 1025 | break; |
| 1026 | case ZD1201_PORTTYPE_WDS: |
| 1027 | *mode = IW_MODE_REPEAT; |
| 1028 | break; |
| 1029 | case ZD1201_PORTTYPE_PSEUDOIBSS: |
| 1030 | *mode = 8;/* No Pseudo-IBSS... */ |
| 1031 | break; |
| 1032 | case ZD1201_PORTTYPE_AP: |
| 1033 | *mode = IW_MODE_MASTER; |
| 1034 | break; |
| 1035 | default: |
| 1036 | dev_dbg(&zd->usb->dev, "Unknown porttype: %d\n", |
| 1037 | porttype); |
| 1038 | *mode = IW_MODE_AUTO; |
| 1039 | } |
| 1040 | if (zd->monitor) |
| 1041 | *mode = IW_MODE_MONITOR; |
| 1042 | |
| 1043 | return 0; |
| 1044 | } |
| 1045 | |
| 1046 | static int zd1201_get_range(struct net_device *dev, |
| 1047 | struct iw_request_info *info, struct iw_point *wrq, char *extra) |
| 1048 | { |
| 1049 | struct iw_range *range = (struct iw_range *)extra; |
| 1050 | |
| 1051 | wrq->length = sizeof(struct iw_range); |
| 1052 | memset(range, 0, sizeof(struct iw_range)); |
| 1053 | range->we_version_compiled = WIRELESS_EXT; |
| 1054 | range->we_version_source = WIRELESS_EXT; |
| 1055 | |
| 1056 | range->max_qual.qual = 128; |
| 1057 | range->max_qual.level = 128; |
| 1058 | range->max_qual.noise = 128; |
| 1059 | range->max_qual.updated = 7; |
| 1060 | |
| 1061 | range->encoding_size[0] = 5; |
| 1062 | range->encoding_size[1] = 13; |
| 1063 | range->num_encoding_sizes = 2; |
| 1064 | range->max_encoding_tokens = ZD1201_NUMKEYS; |
| 1065 | |
| 1066 | range->num_bitrates = 4; |
| 1067 | range->bitrate[0] = 1000000; |
| 1068 | range->bitrate[1] = 2000000; |
| 1069 | range->bitrate[2] = 5500000; |
| 1070 | range->bitrate[3] = 11000000; |
| 1071 | |
| 1072 | range->min_rts = 0; |
| 1073 | range->min_frag = ZD1201_FRAGMIN; |
| 1074 | range->max_rts = ZD1201_RTSMAX; |
| 1075 | range->min_frag = ZD1201_FRAGMAX; |
| 1076 | |
| 1077 | return 0; |
| 1078 | } |
| 1079 | |
| 1080 | /* Little bit of magic here: we only get the quality if we poll |
| 1081 | * for it, and we never get an actual request to trigger such |
Steven Cole | 093cf72 | 2005-05-03 19:07:24 -0600 | [diff] [blame] | 1082 | * a poll. Therefore we 'assume' that the user will soon ask for |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1083 | * the stats after asking the bssid. |
| 1084 | */ |
| 1085 | static int zd1201_get_wap(struct net_device *dev, |
| 1086 | struct iw_request_info *info, struct sockaddr *ap_addr, char *extra) |
| 1087 | { |
John W. Linville | 3d29b0c | 2008-10-31 14:13:12 -0400 | [diff] [blame] | 1088 | struct zd1201 *zd = netdev_priv(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1089 | unsigned char buffer[6]; |
| 1090 | |
| 1091 | if (!zd1201_getconfig(zd, ZD1201_RID_COMMSQUALITY, buffer, 6)) { |
Steven Cole | 093cf72 | 2005-05-03 19:07:24 -0600 | [diff] [blame] | 1092 | /* Unfortunately the quality and noise reported is useless. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1093 | they seem to be accumulators that increase until you |
| 1094 | read them, unless we poll on a fixed interval we can't |
| 1095 | use them |
| 1096 | */ |
| 1097 | /*zd->iwstats.qual.qual = le16_to_cpu(((__le16 *)buffer)[0]);*/ |
| 1098 | zd->iwstats.qual.level = le16_to_cpu(((__le16 *)buffer)[1]); |
| 1099 | /*zd->iwstats.qual.noise = le16_to_cpu(((__le16 *)buffer)[2]);*/ |
| 1100 | zd->iwstats.qual.updated = 2; |
| 1101 | } |
| 1102 | |
Pavel Machek | 2a80634 | 2006-05-26 22:07:48 +0200 | [diff] [blame] | 1103 | return zd1201_getconfig(zd, ZD1201_RID_CURRENTBSSID, ap_addr->sa_data, 6); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1104 | } |
| 1105 | |
| 1106 | static int zd1201_set_scan(struct net_device *dev, |
| 1107 | struct iw_request_info *info, struct iw_point *srq, char *extra) |
| 1108 | { |
| 1109 | /* We do everything in get_scan */ |
| 1110 | return 0; |
| 1111 | } |
| 1112 | |
| 1113 | static int zd1201_get_scan(struct net_device *dev, |
| 1114 | struct iw_request_info *info, struct iw_point *srq, char *extra) |
| 1115 | { |
John W. Linville | 3d29b0c | 2008-10-31 14:13:12 -0400 | [diff] [blame] | 1116 | struct zd1201 *zd = netdev_priv(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1117 | int err, i, j, enabled_save; |
| 1118 | struct iw_event iwe; |
| 1119 | char *cev = extra; |
| 1120 | char *end_buf = extra + IW_SCAN_MAX_DATA; |
| 1121 | |
| 1122 | /* No scanning in AP mode */ |
| 1123 | if (zd->ap) |
| 1124 | return -EOPNOTSUPP; |
| 1125 | |
| 1126 | /* Scan doesn't seem to work if disabled */ |
| 1127 | enabled_save = zd->mac_enabled; |
| 1128 | zd1201_enable(zd); |
| 1129 | |
| 1130 | zd->rxdatas = 0; |
| 1131 | err = zd1201_docmd(zd, ZD1201_CMDCODE_INQUIRE, |
| 1132 | ZD1201_INQ_SCANRESULTS, 0, 0); |
| 1133 | if (err) |
| 1134 | return err; |
| 1135 | |
| 1136 | wait_event_interruptible(zd->rxdataq, zd->rxdatas); |
| 1137 | if (!zd->rxlen) |
| 1138 | return -EIO; |
| 1139 | |
| 1140 | if (le16_to_cpu(*(__le16*)&zd->rxdata[2]) != ZD1201_INQ_SCANRESULTS) |
| 1141 | return -EIO; |
| 1142 | |
| 1143 | for(i=8; i<zd->rxlen; i+=62) { |
| 1144 | iwe.cmd = SIOCGIWAP; |
| 1145 | iwe.u.ap_addr.sa_family = ARPHRD_ETHER; |
| 1146 | memcpy(iwe.u.ap_addr.sa_data, zd->rxdata+i+6, 6); |
David S. Miller | ccc5805 | 2008-06-16 18:50:49 -0700 | [diff] [blame] | 1147 | cev = iwe_stream_add_event(info, cev, end_buf, |
| 1148 | &iwe, IW_EV_ADDR_LEN); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1149 | |
| 1150 | iwe.cmd = SIOCGIWESSID; |
| 1151 | iwe.u.data.length = zd->rxdata[i+16]; |
| 1152 | iwe.u.data.flags = 1; |
David S. Miller | ccc5805 | 2008-06-16 18:50:49 -0700 | [diff] [blame] | 1153 | cev = iwe_stream_add_point(info, cev, end_buf, |
| 1154 | &iwe, zd->rxdata+i+18); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1155 | |
| 1156 | iwe.cmd = SIOCGIWMODE; |
| 1157 | if (zd->rxdata[i+14]&0x01) |
| 1158 | iwe.u.mode = IW_MODE_MASTER; |
| 1159 | else |
| 1160 | iwe.u.mode = IW_MODE_ADHOC; |
David S. Miller | ccc5805 | 2008-06-16 18:50:49 -0700 | [diff] [blame] | 1161 | cev = iwe_stream_add_event(info, cev, end_buf, |
| 1162 | &iwe, IW_EV_UINT_LEN); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1163 | |
| 1164 | iwe.cmd = SIOCGIWFREQ; |
| 1165 | iwe.u.freq.m = zd->rxdata[i+0]; |
| 1166 | iwe.u.freq.e = 0; |
David S. Miller | ccc5805 | 2008-06-16 18:50:49 -0700 | [diff] [blame] | 1167 | cev = iwe_stream_add_event(info, cev, end_buf, |
| 1168 | &iwe, IW_EV_FREQ_LEN); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1169 | |
| 1170 | iwe.cmd = SIOCGIWRATE; |
| 1171 | iwe.u.bitrate.fixed = 0; |
| 1172 | iwe.u.bitrate.disabled = 0; |
| 1173 | for (j=0; j<10; j++) if (zd->rxdata[i+50+j]) { |
| 1174 | iwe.u.bitrate.value = (zd->rxdata[i+50+j]&0x7f)*500000; |
David S. Miller | ccc5805 | 2008-06-16 18:50:49 -0700 | [diff] [blame] | 1175 | cev = iwe_stream_add_event(info, cev, end_buf, |
| 1176 | &iwe, IW_EV_PARAM_LEN); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1177 | } |
| 1178 | |
| 1179 | iwe.cmd = SIOCGIWENCODE; |
| 1180 | iwe.u.data.length = 0; |
| 1181 | if (zd->rxdata[i+14]&0x10) |
| 1182 | iwe.u.data.flags = IW_ENCODE_ENABLED; |
| 1183 | else |
| 1184 | iwe.u.data.flags = IW_ENCODE_DISABLED; |
David S. Miller | ccc5805 | 2008-06-16 18:50:49 -0700 | [diff] [blame] | 1185 | cev = iwe_stream_add_point(info, cev, end_buf, &iwe, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1186 | |
| 1187 | iwe.cmd = IWEVQUAL; |
| 1188 | iwe.u.qual.qual = zd->rxdata[i+4]; |
| 1189 | iwe.u.qual.noise= zd->rxdata[i+2]/10-100; |
| 1190 | iwe.u.qual.level = (256+zd->rxdata[i+4]*100)/255-100; |
| 1191 | iwe.u.qual.updated = 7; |
David S. Miller | ccc5805 | 2008-06-16 18:50:49 -0700 | [diff] [blame] | 1192 | cev = iwe_stream_add_event(info, cev, end_buf, |
| 1193 | &iwe, IW_EV_QUAL_LEN); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1194 | } |
| 1195 | |
| 1196 | if (!enabled_save) |
| 1197 | zd1201_disable(zd); |
| 1198 | |
| 1199 | srq->length = cev - extra; |
| 1200 | srq->flags = 0; |
| 1201 | |
| 1202 | return 0; |
| 1203 | } |
| 1204 | |
| 1205 | static int zd1201_set_essid(struct net_device *dev, |
| 1206 | struct iw_request_info *info, struct iw_point *data, char *essid) |
| 1207 | { |
John W. Linville | 3d29b0c | 2008-10-31 14:13:12 -0400 | [diff] [blame] | 1208 | struct zd1201 *zd = netdev_priv(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1209 | |
| 1210 | if (data->length > IW_ESSID_MAX_SIZE) |
| 1211 | return -EINVAL; |
| 1212 | if (data->length < 1) |
| 1213 | data->length = 1; |
Jean Tourrilhes | 22b9926 | 2006-08-29 18:07:11 -0700 | [diff] [blame] | 1214 | zd->essidlen = data->length; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1215 | memset(zd->essid, 0, IW_ESSID_MAX_SIZE+1); |
| 1216 | memcpy(zd->essid, essid, data->length); |
| 1217 | return zd1201_join(zd, zd->essid, zd->essidlen); |
| 1218 | } |
| 1219 | |
| 1220 | static int zd1201_get_essid(struct net_device *dev, |
| 1221 | struct iw_request_info *info, struct iw_point *data, char *essid) |
| 1222 | { |
John W. Linville | 3d29b0c | 2008-10-31 14:13:12 -0400 | [diff] [blame] | 1223 | struct zd1201 *zd = netdev_priv(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1224 | |
| 1225 | memcpy(essid, zd->essid, zd->essidlen); |
| 1226 | data->flags = 1; |
| 1227 | data->length = zd->essidlen; |
| 1228 | |
| 1229 | return 0; |
| 1230 | } |
| 1231 | |
| 1232 | static int zd1201_get_nick(struct net_device *dev, struct iw_request_info *info, |
| 1233 | struct iw_point *data, char *nick) |
| 1234 | { |
| 1235 | strcpy(nick, "zd1201"); |
| 1236 | data->flags = 1; |
| 1237 | data->length = strlen(nick); |
| 1238 | return 0; |
| 1239 | } |
| 1240 | |
| 1241 | static int zd1201_set_rate(struct net_device *dev, |
| 1242 | struct iw_request_info *info, struct iw_param *rrq, char *extra) |
| 1243 | { |
John W. Linville | 3d29b0c | 2008-10-31 14:13:12 -0400 | [diff] [blame] | 1244 | struct zd1201 *zd = netdev_priv(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1245 | short rate; |
| 1246 | int err; |
| 1247 | |
| 1248 | switch (rrq->value) { |
| 1249 | case 1000000: |
| 1250 | rate = ZD1201_RATEB1; |
| 1251 | break; |
| 1252 | case 2000000: |
| 1253 | rate = ZD1201_RATEB2; |
| 1254 | break; |
| 1255 | case 5500000: |
| 1256 | rate = ZD1201_RATEB5; |
| 1257 | break; |
| 1258 | case 11000000: |
| 1259 | default: |
| 1260 | rate = ZD1201_RATEB11; |
| 1261 | break; |
| 1262 | } |
| 1263 | if (!rrq->fixed) { /* Also enable all lower bitrates */ |
| 1264 | rate |= rate-1; |
| 1265 | } |
Pavel Machek | 2a80634 | 2006-05-26 22:07:48 +0200 | [diff] [blame] | 1266 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1267 | err = zd1201_setconfig16(zd, ZD1201_RID_TXRATECNTL, rate); |
| 1268 | if (err) |
| 1269 | return err; |
| 1270 | |
| 1271 | return zd1201_mac_reset(zd); |
| 1272 | } |
| 1273 | |
| 1274 | static int zd1201_get_rate(struct net_device *dev, |
| 1275 | struct iw_request_info *info, struct iw_param *rrq, char *extra) |
| 1276 | { |
John W. Linville | 3d29b0c | 2008-10-31 14:13:12 -0400 | [diff] [blame] | 1277 | struct zd1201 *zd = netdev_priv(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1278 | short rate; |
| 1279 | int err; |
| 1280 | |
| 1281 | err = zd1201_getconfig16(zd, ZD1201_RID_CURRENTTXRATE, &rate); |
| 1282 | if (err) |
| 1283 | return err; |
| 1284 | |
| 1285 | switch(rate) { |
| 1286 | case 1: |
| 1287 | rrq->value = 1000000; |
| 1288 | break; |
| 1289 | case 2: |
| 1290 | rrq->value = 2000000; |
| 1291 | break; |
| 1292 | case 5: |
| 1293 | rrq->value = 5500000; |
| 1294 | break; |
| 1295 | case 11: |
| 1296 | rrq->value = 11000000; |
| 1297 | break; |
| 1298 | default: |
| 1299 | rrq->value = 0; |
| 1300 | } |
| 1301 | rrq->fixed = 0; |
| 1302 | rrq->disabled = 0; |
| 1303 | |
| 1304 | return 0; |
| 1305 | } |
| 1306 | |
| 1307 | static int zd1201_set_rts(struct net_device *dev, struct iw_request_info *info, |
| 1308 | struct iw_param *rts, char *extra) |
| 1309 | { |
John W. Linville | 3d29b0c | 2008-10-31 14:13:12 -0400 | [diff] [blame] | 1310 | struct zd1201 *zd = netdev_priv(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1311 | int err; |
| 1312 | short val = rts->value; |
| 1313 | |
| 1314 | if (rts->disabled || !rts->fixed) |
| 1315 | val = ZD1201_RTSMAX; |
| 1316 | if (val > ZD1201_RTSMAX) |
| 1317 | return -EINVAL; |
| 1318 | if (val < 0) |
| 1319 | return -EINVAL; |
| 1320 | |
| 1321 | err = zd1201_setconfig16(zd, ZD1201_RID_CNFRTSTHRESHOLD, val); |
| 1322 | if (err) |
| 1323 | return err; |
| 1324 | return zd1201_mac_reset(zd); |
| 1325 | } |
| 1326 | |
| 1327 | static int zd1201_get_rts(struct net_device *dev, struct iw_request_info *info, |
| 1328 | struct iw_param *rts, char *extra) |
| 1329 | { |
John W. Linville | 3d29b0c | 2008-10-31 14:13:12 -0400 | [diff] [blame] | 1330 | struct zd1201 *zd = netdev_priv(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1331 | short rtst; |
| 1332 | int err; |
| 1333 | |
| 1334 | err = zd1201_getconfig16(zd, ZD1201_RID_CNFRTSTHRESHOLD, &rtst); |
| 1335 | if (err) |
| 1336 | return err; |
| 1337 | rts->value = rtst; |
| 1338 | rts->disabled = (rts->value == ZD1201_RTSMAX); |
| 1339 | rts->fixed = 1; |
| 1340 | |
| 1341 | return 0; |
| 1342 | } |
| 1343 | |
| 1344 | static int zd1201_set_frag(struct net_device *dev, struct iw_request_info *info, |
| 1345 | struct iw_param *frag, char *extra) |
| 1346 | { |
John W. Linville | 3d29b0c | 2008-10-31 14:13:12 -0400 | [diff] [blame] | 1347 | struct zd1201 *zd = netdev_priv(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1348 | int err; |
| 1349 | short val = frag->value; |
| 1350 | |
| 1351 | if (frag->disabled || !frag->fixed) |
| 1352 | val = ZD1201_FRAGMAX; |
| 1353 | if (val > ZD1201_FRAGMAX) |
| 1354 | return -EINVAL; |
| 1355 | if (val < ZD1201_FRAGMIN) |
| 1356 | return -EINVAL; |
| 1357 | if (val & 1) |
| 1358 | return -EINVAL; |
| 1359 | err = zd1201_setconfig16(zd, ZD1201_RID_CNFFRAGTHRESHOLD, val); |
| 1360 | if (err) |
| 1361 | return err; |
| 1362 | return zd1201_mac_reset(zd); |
| 1363 | } |
| 1364 | |
| 1365 | static int zd1201_get_frag(struct net_device *dev, struct iw_request_info *info, |
| 1366 | struct iw_param *frag, char *extra) |
| 1367 | { |
John W. Linville | 3d29b0c | 2008-10-31 14:13:12 -0400 | [diff] [blame] | 1368 | struct zd1201 *zd = netdev_priv(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1369 | short fragt; |
| 1370 | int err; |
| 1371 | |
| 1372 | err = zd1201_getconfig16(zd, ZD1201_RID_CNFFRAGTHRESHOLD, &fragt); |
| 1373 | if (err) |
| 1374 | return err; |
| 1375 | frag->value = fragt; |
| 1376 | frag->disabled = (frag->value == ZD1201_FRAGMAX); |
| 1377 | frag->fixed = 1; |
| 1378 | |
| 1379 | return 0; |
| 1380 | } |
| 1381 | |
| 1382 | static int zd1201_set_retry(struct net_device *dev, |
| 1383 | struct iw_request_info *info, struct iw_param *rrq, char *extra) |
| 1384 | { |
| 1385 | return 0; |
| 1386 | } |
| 1387 | |
| 1388 | static int zd1201_get_retry(struct net_device *dev, |
| 1389 | struct iw_request_info *info, struct iw_param *rrq, char *extra) |
| 1390 | { |
| 1391 | return 0; |
| 1392 | } |
| 1393 | |
| 1394 | static int zd1201_set_encode(struct net_device *dev, |
| 1395 | struct iw_request_info *info, struct iw_point *erq, char *key) |
| 1396 | { |
John W. Linville | 3d29b0c | 2008-10-31 14:13:12 -0400 | [diff] [blame] | 1397 | struct zd1201 *zd = netdev_priv(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1398 | short i; |
| 1399 | int err, rid; |
| 1400 | |
| 1401 | if (erq->length > ZD1201_MAXKEYLEN) |
| 1402 | return -EINVAL; |
| 1403 | |
| 1404 | i = (erq->flags & IW_ENCODE_INDEX)-1; |
| 1405 | if (i == -1) { |
| 1406 | err = zd1201_getconfig16(zd,ZD1201_RID_CNFDEFAULTKEYID,&i); |
| 1407 | if (err) |
| 1408 | return err; |
| 1409 | } else { |
| 1410 | err = zd1201_setconfig16(zd, ZD1201_RID_CNFDEFAULTKEYID, i); |
| 1411 | if (err) |
| 1412 | return err; |
| 1413 | } |
| 1414 | |
| 1415 | if (i < 0 || i >= ZD1201_NUMKEYS) |
| 1416 | return -EINVAL; |
| 1417 | |
| 1418 | rid = ZD1201_RID_CNFDEFAULTKEY0 + i; |
| 1419 | err = zd1201_setconfig(zd, rid, key, erq->length, 1); |
| 1420 | if (err) |
| 1421 | return err; |
| 1422 | zd->encode_keylen[i] = erq->length; |
| 1423 | memcpy(zd->encode_keys[i], key, erq->length); |
| 1424 | |
| 1425 | i=0; |
| 1426 | if (!(erq->flags & IW_ENCODE_DISABLED & IW_ENCODE_MODE)) { |
| 1427 | i |= 0x01; |
| 1428 | zd->encode_enabled = 1; |
| 1429 | } else |
| 1430 | zd->encode_enabled = 0; |
| 1431 | if (erq->flags & IW_ENCODE_RESTRICTED & IW_ENCODE_MODE) { |
| 1432 | i |= 0x02; |
| 1433 | zd->encode_restricted = 1; |
| 1434 | } else |
| 1435 | zd->encode_restricted = 0; |
| 1436 | err = zd1201_setconfig16(zd, ZD1201_RID_CNFWEBFLAGS, i); |
| 1437 | if (err) |
| 1438 | return err; |
| 1439 | |
| 1440 | if (zd->encode_enabled) |
| 1441 | i = ZD1201_CNFAUTHENTICATION_SHAREDKEY; |
| 1442 | else |
| 1443 | i = ZD1201_CNFAUTHENTICATION_OPENSYSTEM; |
| 1444 | err = zd1201_setconfig16(zd, ZD1201_RID_CNFAUTHENTICATION, i); |
| 1445 | if (err) |
| 1446 | return err; |
| 1447 | |
| 1448 | return zd1201_mac_reset(zd); |
| 1449 | } |
| 1450 | |
| 1451 | static int zd1201_get_encode(struct net_device *dev, |
| 1452 | struct iw_request_info *info, struct iw_point *erq, char *key) |
| 1453 | { |
John W. Linville | 3d29b0c | 2008-10-31 14:13:12 -0400 | [diff] [blame] | 1454 | struct zd1201 *zd = netdev_priv(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1455 | short i; |
| 1456 | int err; |
| 1457 | |
| 1458 | if (zd->encode_enabled) |
| 1459 | erq->flags = IW_ENCODE_ENABLED; |
| 1460 | else |
| 1461 | erq->flags = IW_ENCODE_DISABLED; |
| 1462 | if (zd->encode_restricted) |
| 1463 | erq->flags |= IW_ENCODE_RESTRICTED; |
| 1464 | else |
| 1465 | erq->flags |= IW_ENCODE_OPEN; |
| 1466 | |
| 1467 | i = (erq->flags & IW_ENCODE_INDEX) -1; |
| 1468 | if (i == -1) { |
| 1469 | err = zd1201_getconfig16(zd, ZD1201_RID_CNFDEFAULTKEYID, &i); |
| 1470 | if (err) |
| 1471 | return err; |
| 1472 | } |
| 1473 | if (i<0 || i>= ZD1201_NUMKEYS) |
| 1474 | return -EINVAL; |
| 1475 | |
| 1476 | erq->flags |= i+1; |
Pavel Machek | 2a80634 | 2006-05-26 22:07:48 +0200 | [diff] [blame] | 1477 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1478 | erq->length = zd->encode_keylen[i]; |
| 1479 | memcpy(key, zd->encode_keys[i], erq->length); |
| 1480 | |
| 1481 | return 0; |
| 1482 | } |
| 1483 | |
| 1484 | static int zd1201_set_power(struct net_device *dev, |
| 1485 | struct iw_request_info *info, struct iw_param *vwrq, char *extra) |
| 1486 | { |
John W. Linville | 3d29b0c | 2008-10-31 14:13:12 -0400 | [diff] [blame] | 1487 | struct zd1201 *zd = netdev_priv(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1488 | short enabled, duration, level; |
| 1489 | int err; |
| 1490 | |
| 1491 | enabled = vwrq->disabled ? 0 : 1; |
| 1492 | if (enabled) { |
| 1493 | if (vwrq->flags & IW_POWER_PERIOD) { |
| 1494 | duration = vwrq->value; |
| 1495 | err = zd1201_setconfig16(zd, |
| 1496 | ZD1201_RID_CNFMAXSLEEPDURATION, duration); |
| 1497 | if (err) |
| 1498 | return err; |
| 1499 | goto out; |
| 1500 | } |
| 1501 | if (vwrq->flags & IW_POWER_TIMEOUT) { |
| 1502 | err = zd1201_getconfig16(zd, |
| 1503 | ZD1201_RID_CNFMAXSLEEPDURATION, &duration); |
| 1504 | if (err) |
| 1505 | return err; |
| 1506 | level = vwrq->value * 4 / duration; |
| 1507 | if (level > 4) |
| 1508 | level = 4; |
| 1509 | if (level < 0) |
| 1510 | level = 0; |
| 1511 | err = zd1201_setconfig16(zd, ZD1201_RID_CNFPMEPS, |
| 1512 | level); |
| 1513 | if (err) |
| 1514 | return err; |
| 1515 | goto out; |
| 1516 | } |
| 1517 | return -EINVAL; |
| 1518 | } |
| 1519 | out: |
Pavel Machek | 2a80634 | 2006-05-26 22:07:48 +0200 | [diff] [blame] | 1520 | return zd1201_setconfig16(zd, ZD1201_RID_CNFPMENABLED, enabled); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1521 | } |
| 1522 | |
| 1523 | static int zd1201_get_power(struct net_device *dev, |
| 1524 | struct iw_request_info *info, struct iw_param *vwrq, char *extra) |
| 1525 | { |
John W. Linville | 3d29b0c | 2008-10-31 14:13:12 -0400 | [diff] [blame] | 1526 | struct zd1201 *zd = netdev_priv(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1527 | short enabled, level, duration; |
| 1528 | int err; |
| 1529 | |
| 1530 | err = zd1201_getconfig16(zd, ZD1201_RID_CNFPMENABLED, &enabled); |
| 1531 | if (err) |
| 1532 | return err; |
| 1533 | err = zd1201_getconfig16(zd, ZD1201_RID_CNFPMEPS, &level); |
| 1534 | if (err) |
| 1535 | return err; |
| 1536 | err = zd1201_getconfig16(zd, ZD1201_RID_CNFMAXSLEEPDURATION, &duration); |
| 1537 | if (err) |
| 1538 | return err; |
| 1539 | vwrq->disabled = enabled ? 0 : 1; |
| 1540 | if (vwrq->flags & IW_POWER_TYPE) { |
| 1541 | if (vwrq->flags & IW_POWER_PERIOD) { |
| 1542 | vwrq->value = duration; |
| 1543 | vwrq->flags = IW_POWER_PERIOD; |
| 1544 | } else { |
| 1545 | vwrq->value = duration * level / 4; |
| 1546 | vwrq->flags = IW_POWER_TIMEOUT; |
| 1547 | } |
| 1548 | } |
| 1549 | if (vwrq->flags & IW_POWER_MODE) { |
| 1550 | if (enabled && level) |
| 1551 | vwrq->flags = IW_POWER_UNICAST_R; |
| 1552 | else |
| 1553 | vwrq->flags = IW_POWER_ALL_R; |
| 1554 | } |
| 1555 | |
| 1556 | return 0; |
| 1557 | } |
| 1558 | |
| 1559 | |
| 1560 | static const iw_handler zd1201_iw_handler[] = |
| 1561 | { |
| 1562 | (iw_handler) zd1201_config_commit, /* SIOCSIWCOMMIT */ |
| 1563 | (iw_handler) zd1201_get_name, /* SIOCGIWNAME */ |
| 1564 | (iw_handler) NULL, /* SIOCSIWNWID */ |
| 1565 | (iw_handler) NULL, /* SIOCGIWNWID */ |
| 1566 | (iw_handler) zd1201_set_freq, /* SIOCSIWFREQ */ |
| 1567 | (iw_handler) zd1201_get_freq, /* SIOCGIWFREQ */ |
| 1568 | (iw_handler) zd1201_set_mode, /* SIOCSIWMODE */ |
| 1569 | (iw_handler) zd1201_get_mode, /* SIOCGIWMODE */ |
| 1570 | (iw_handler) NULL, /* SIOCSIWSENS */ |
| 1571 | (iw_handler) NULL, /* SIOCGIWSENS */ |
| 1572 | (iw_handler) NULL, /* SIOCSIWRANGE */ |
| 1573 | (iw_handler) zd1201_get_range, /* SIOCGIWRANGE */ |
| 1574 | (iw_handler) NULL, /* SIOCSIWPRIV */ |
| 1575 | (iw_handler) NULL, /* SIOCGIWPRIV */ |
| 1576 | (iw_handler) NULL, /* SIOCSIWSTATS */ |
| 1577 | (iw_handler) NULL, /* SIOCGIWSTATS */ |
| 1578 | (iw_handler) NULL, /* SIOCSIWSPY */ |
| 1579 | (iw_handler) NULL, /* SIOCGIWSPY */ |
| 1580 | (iw_handler) NULL, /* -- hole -- */ |
| 1581 | (iw_handler) NULL, /* -- hole -- */ |
| 1582 | (iw_handler) NULL/*zd1201_set_wap*/, /* SIOCSIWAP */ |
| 1583 | (iw_handler) zd1201_get_wap, /* SIOCGIWAP */ |
| 1584 | (iw_handler) NULL, /* -- hole -- */ |
| 1585 | (iw_handler) NULL, /* SIOCGIWAPLIST */ |
| 1586 | (iw_handler) zd1201_set_scan, /* SIOCSIWSCAN */ |
| 1587 | (iw_handler) zd1201_get_scan, /* SIOCGIWSCAN */ |
| 1588 | (iw_handler) zd1201_set_essid, /* SIOCSIWESSID */ |
| 1589 | (iw_handler) zd1201_get_essid, /* SIOCGIWESSID */ |
| 1590 | (iw_handler) NULL, /* SIOCSIWNICKN */ |
| 1591 | (iw_handler) zd1201_get_nick, /* SIOCGIWNICKN */ |
| 1592 | (iw_handler) NULL, /* -- hole -- */ |
| 1593 | (iw_handler) NULL, /* -- hole -- */ |
| 1594 | (iw_handler) zd1201_set_rate, /* SIOCSIWRATE */ |
| 1595 | (iw_handler) zd1201_get_rate, /* SIOCGIWRATE */ |
| 1596 | (iw_handler) zd1201_set_rts, /* SIOCSIWRTS */ |
| 1597 | (iw_handler) zd1201_get_rts, /* SIOCGIWRTS */ |
| 1598 | (iw_handler) zd1201_set_frag, /* SIOCSIWFRAG */ |
| 1599 | (iw_handler) zd1201_get_frag, /* SIOCGIWFRAG */ |
| 1600 | (iw_handler) NULL, /* SIOCSIWTXPOW */ |
| 1601 | (iw_handler) NULL, /* SIOCGIWTXPOW */ |
| 1602 | (iw_handler) zd1201_set_retry, /* SIOCSIWRETRY */ |
| 1603 | (iw_handler) zd1201_get_retry, /* SIOCGIWRETRY */ |
| 1604 | (iw_handler) zd1201_set_encode, /* SIOCSIWENCODE */ |
| 1605 | (iw_handler) zd1201_get_encode, /* SIOCGIWENCODE */ |
| 1606 | (iw_handler) zd1201_set_power, /* SIOCSIWPOWER */ |
| 1607 | (iw_handler) zd1201_get_power, /* SIOCGIWPOWER */ |
| 1608 | }; |
| 1609 | |
| 1610 | static int zd1201_set_hostauth(struct net_device *dev, |
| 1611 | struct iw_request_info *info, struct iw_param *rrq, char *extra) |
| 1612 | { |
John W. Linville | 3d29b0c | 2008-10-31 14:13:12 -0400 | [diff] [blame] | 1613 | struct zd1201 *zd = netdev_priv(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1614 | |
| 1615 | if (!zd->ap) |
| 1616 | return -EOPNOTSUPP; |
| 1617 | |
Pavel Machek | 2a80634 | 2006-05-26 22:07:48 +0200 | [diff] [blame] | 1618 | return zd1201_setconfig16(zd, ZD1201_RID_CNFHOSTAUTH, rrq->value); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1619 | } |
| 1620 | |
| 1621 | static int zd1201_get_hostauth(struct net_device *dev, |
| 1622 | struct iw_request_info *info, struct iw_param *rrq, char *extra) |
| 1623 | { |
John W. Linville | 3d29b0c | 2008-10-31 14:13:12 -0400 | [diff] [blame] | 1624 | struct zd1201 *zd = netdev_priv(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1625 | short hostauth; |
| 1626 | int err; |
| 1627 | |
| 1628 | if (!zd->ap) |
| 1629 | return -EOPNOTSUPP; |
| 1630 | |
| 1631 | err = zd1201_getconfig16(zd, ZD1201_RID_CNFHOSTAUTH, &hostauth); |
| 1632 | if (err) |
| 1633 | return err; |
| 1634 | rrq->value = hostauth; |
| 1635 | rrq->fixed = 1; |
| 1636 | |
| 1637 | return 0; |
| 1638 | } |
| 1639 | |
| 1640 | static int zd1201_auth_sta(struct net_device *dev, |
| 1641 | struct iw_request_info *info, struct sockaddr *sta, char *extra) |
| 1642 | { |
John W. Linville | 3d29b0c | 2008-10-31 14:13:12 -0400 | [diff] [blame] | 1643 | struct zd1201 *zd = netdev_priv(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1644 | unsigned char buffer[10]; |
| 1645 | |
| 1646 | if (!zd->ap) |
| 1647 | return -EOPNOTSUPP; |
| 1648 | |
| 1649 | memcpy(buffer, sta->sa_data, ETH_ALEN); |
| 1650 | *(short*)(buffer+6) = 0; /* 0==success, 1==failure */ |
| 1651 | *(short*)(buffer+8) = 0; |
| 1652 | |
| 1653 | return zd1201_setconfig(zd, ZD1201_RID_AUTHENTICATESTA, buffer, 10, 1); |
| 1654 | } |
| 1655 | |
| 1656 | static int zd1201_set_maxassoc(struct net_device *dev, |
| 1657 | struct iw_request_info *info, struct iw_param *rrq, char *extra) |
| 1658 | { |
John W. Linville | 3d29b0c | 2008-10-31 14:13:12 -0400 | [diff] [blame] | 1659 | struct zd1201 *zd = netdev_priv(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1660 | int err; |
| 1661 | |
| 1662 | if (!zd->ap) |
| 1663 | return -EOPNOTSUPP; |
| 1664 | |
| 1665 | err = zd1201_setconfig16(zd, ZD1201_RID_CNFMAXASSOCSTATIONS, rrq->value); |
| 1666 | if (err) |
| 1667 | return err; |
| 1668 | return 0; |
| 1669 | } |
| 1670 | |
| 1671 | static int zd1201_get_maxassoc(struct net_device *dev, |
| 1672 | struct iw_request_info *info, struct iw_param *rrq, char *extra) |
| 1673 | { |
John W. Linville | 3d29b0c | 2008-10-31 14:13:12 -0400 | [diff] [blame] | 1674 | struct zd1201 *zd = netdev_priv(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1675 | short maxassoc; |
| 1676 | int err; |
| 1677 | |
| 1678 | if (!zd->ap) |
| 1679 | return -EOPNOTSUPP; |
| 1680 | |
| 1681 | err = zd1201_getconfig16(zd, ZD1201_RID_CNFMAXASSOCSTATIONS, &maxassoc); |
| 1682 | if (err) |
| 1683 | return err; |
| 1684 | rrq->value = maxassoc; |
| 1685 | rrq->fixed = 1; |
| 1686 | |
| 1687 | return 0; |
| 1688 | } |
| 1689 | |
| 1690 | static const iw_handler zd1201_private_handler[] = { |
| 1691 | (iw_handler) zd1201_set_hostauth, /* ZD1201SIWHOSTAUTH */ |
| 1692 | (iw_handler) zd1201_get_hostauth, /* ZD1201GIWHOSTAUTH */ |
| 1693 | (iw_handler) zd1201_auth_sta, /* ZD1201SIWAUTHSTA */ |
| 1694 | (iw_handler) NULL, /* nothing to get */ |
| 1695 | (iw_handler) zd1201_set_maxassoc, /* ZD1201SIMAXASSOC */ |
| 1696 | (iw_handler) zd1201_get_maxassoc, /* ZD1201GIMAXASSOC */ |
| 1697 | }; |
| 1698 | |
| 1699 | static const struct iw_priv_args zd1201_private_args[] = { |
| 1700 | { ZD1201SIWHOSTAUTH, IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 1, |
| 1701 | IW_PRIV_TYPE_NONE, "sethostauth" }, |
| 1702 | { ZD1201GIWHOSTAUTH, IW_PRIV_TYPE_NONE, |
| 1703 | IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 1, "gethostauth" }, |
Tobias Klauser | 52950ed | 2005-12-11 16:20:08 +0100 | [diff] [blame] | 1704 | { ZD1201SIWAUTHSTA, IW_PRIV_TYPE_ADDR | IW_PRIV_SIZE_FIXED | 1, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1705 | IW_PRIV_TYPE_NONE, "authstation" }, |
| 1706 | { ZD1201SIWMAXASSOC, IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 1, |
| 1707 | IW_PRIV_TYPE_NONE, "setmaxassoc" }, |
| 1708 | { ZD1201GIWMAXASSOC, IW_PRIV_TYPE_NONE, |
| 1709 | IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 1, "getmaxassoc" }, |
| 1710 | }; |
| 1711 | |
| 1712 | static const struct iw_handler_def zd1201_iw_handlers = { |
Tobias Klauser | 52950ed | 2005-12-11 16:20:08 +0100 | [diff] [blame] | 1713 | .num_standard = ARRAY_SIZE(zd1201_iw_handler), |
| 1714 | .num_private = ARRAY_SIZE(zd1201_private_handler), |
| 1715 | .num_private_args = ARRAY_SIZE(zd1201_private_args), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1716 | .standard = (iw_handler *)zd1201_iw_handler, |
| 1717 | .private = (iw_handler *)zd1201_private_handler, |
| 1718 | .private_args = (struct iw_priv_args *) zd1201_private_args, |
Jean Tourrilhes | 0073602 | 2006-03-24 16:45:24 -0800 | [diff] [blame] | 1719 | .get_wireless_stats = zd1201_get_wireless_stats, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1720 | }; |
| 1721 | |
Stephen Hemminger | 2bd9f54 | 2009-03-20 19:36:32 +0000 | [diff] [blame] | 1722 | static const struct net_device_ops zd1201_netdev_ops = { |
| 1723 | .ndo_open = zd1201_net_open, |
| 1724 | .ndo_stop = zd1201_net_stop, |
| 1725 | .ndo_start_xmit = zd1201_hard_start_xmit, |
| 1726 | .ndo_tx_timeout = zd1201_tx_timeout, |
| 1727 | .ndo_set_multicast_list = zd1201_set_multicast, |
| 1728 | .ndo_set_mac_address = zd1201_set_mac_address, |
| 1729 | .ndo_change_mtu = eth_change_mtu, |
Stephen Hemminger | 2bd9f54 | 2009-03-20 19:36:32 +0000 | [diff] [blame] | 1730 | .ndo_validate_addr = eth_validate_addr, |
| 1731 | }; |
| 1732 | |
Adrian Bunk | 2e0a6b8 | 2005-04-22 15:07:01 -0700 | [diff] [blame] | 1733 | static int zd1201_probe(struct usb_interface *interface, |
| 1734 | const struct usb_device_id *id) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1735 | { |
| 1736 | struct zd1201 *zd; |
John W. Linville | 3d29b0c | 2008-10-31 14:13:12 -0400 | [diff] [blame] | 1737 | struct net_device *dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1738 | struct usb_device *usb; |
Pavel Machek | 2a80634 | 2006-05-26 22:07:48 +0200 | [diff] [blame] | 1739 | int err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1740 | short porttype; |
| 1741 | char buf[IW_ESSID_MAX_SIZE+2]; |
| 1742 | |
| 1743 | usb = interface_to_usbdev(interface); |
| 1744 | |
John W. Linville | 3d29b0c | 2008-10-31 14:13:12 -0400 | [diff] [blame] | 1745 | dev = alloc_etherdev(sizeof(*zd)); |
| 1746 | if (!dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1747 | return -ENOMEM; |
John W. Linville | 3d29b0c | 2008-10-31 14:13:12 -0400 | [diff] [blame] | 1748 | zd = netdev_priv(dev); |
| 1749 | zd->dev = dev; |
| 1750 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1751 | zd->ap = ap; |
| 1752 | zd->usb = usb; |
| 1753 | zd->removed = 0; |
| 1754 | init_waitqueue_head(&zd->rxdataq); |
| 1755 | INIT_HLIST_HEAD(&zd->fraglist); |
| 1756 | |
| 1757 | err = zd1201_fw_upload(usb, zd->ap); |
| 1758 | if (err) { |
| 1759 | dev_err(&usb->dev, "zd1201 firmware upload failed: %d\n", err); |
| 1760 | goto err_zd; |
| 1761 | } |
| 1762 | |
| 1763 | zd->endp_in = 1; |
| 1764 | zd->endp_out = 1; |
| 1765 | zd->endp_out2 = 2; |
| 1766 | zd->rx_urb = usb_alloc_urb(0, GFP_KERNEL); |
| 1767 | zd->tx_urb = usb_alloc_urb(0, GFP_KERNEL); |
| 1768 | if (!zd->rx_urb || !zd->tx_urb) |
| 1769 | goto err_zd; |
| 1770 | |
Pavel Machek | 2a80634 | 2006-05-26 22:07:48 +0200 | [diff] [blame] | 1771 | mdelay(100); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1772 | err = zd1201_drvr_start(zd); |
| 1773 | if (err) |
| 1774 | goto err_zd; |
| 1775 | |
| 1776 | err = zd1201_setconfig16(zd, ZD1201_RID_CNFMAXDATALEN, 2312); |
| 1777 | if (err) |
| 1778 | goto err_start; |
| 1779 | |
| 1780 | err = zd1201_setconfig16(zd, ZD1201_RID_TXRATECNTL, |
| 1781 | ZD1201_RATEB1 | ZD1201_RATEB2 | ZD1201_RATEB5 | ZD1201_RATEB11); |
| 1782 | if (err) |
| 1783 | goto err_start; |
| 1784 | |
Stephen Hemminger | 2bd9f54 | 2009-03-20 19:36:32 +0000 | [diff] [blame] | 1785 | dev->netdev_ops = &zd1201_netdev_ops; |
Stephen Hemminger | 22bc1ce | 2009-03-20 19:36:31 +0000 | [diff] [blame] | 1786 | dev->wireless_handlers = &zd1201_iw_handlers; |
John W. Linville | 3d29b0c | 2008-10-31 14:13:12 -0400 | [diff] [blame] | 1787 | dev->watchdog_timeo = ZD1201_TX_TIMEOUT; |
John W. Linville | 3d29b0c | 2008-10-31 14:13:12 -0400 | [diff] [blame] | 1788 | strcpy(dev->name, "wlan%d"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1789 | |
| 1790 | err = zd1201_getconfig(zd, ZD1201_RID_CNFOWNMACADDR, |
John W. Linville | 3d29b0c | 2008-10-31 14:13:12 -0400 | [diff] [blame] | 1791 | dev->dev_addr, dev->addr_len); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1792 | if (err) |
John W. Linville | 3d29b0c | 2008-10-31 14:13:12 -0400 | [diff] [blame] | 1793 | goto err_start; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1794 | |
| 1795 | /* Set wildcard essid to match zd->essid */ |
| 1796 | *(__le16 *)buf = cpu_to_le16(0); |
| 1797 | err = zd1201_setconfig(zd, ZD1201_RID_CNFDESIREDSSID, buf, |
| 1798 | IW_ESSID_MAX_SIZE+2, 1); |
| 1799 | if (err) |
John W. Linville | 3d29b0c | 2008-10-31 14:13:12 -0400 | [diff] [blame] | 1800 | goto err_start; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1801 | |
| 1802 | if (zd->ap) |
| 1803 | porttype = ZD1201_PORTTYPE_AP; |
| 1804 | else |
| 1805 | porttype = ZD1201_PORTTYPE_BSS; |
| 1806 | err = zd1201_setconfig16(zd, ZD1201_RID_CNFPORTTYPE, porttype); |
| 1807 | if (err) |
John W. Linville | 3d29b0c | 2008-10-31 14:13:12 -0400 | [diff] [blame] | 1808 | goto err_start; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1809 | |
John W. Linville | 3d29b0c | 2008-10-31 14:13:12 -0400 | [diff] [blame] | 1810 | SET_NETDEV_DEV(dev, &usb->dev); |
Nathan Lynch | a083dec | 2005-12-18 23:41:38 -0600 | [diff] [blame] | 1811 | |
John W. Linville | 3d29b0c | 2008-10-31 14:13:12 -0400 | [diff] [blame] | 1812 | err = register_netdev(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1813 | if (err) |
John W. Linville | 3d29b0c | 2008-10-31 14:13:12 -0400 | [diff] [blame] | 1814 | goto err_start; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1815 | dev_info(&usb->dev, "%s: ZD1201 USB Wireless interface\n", |
John W. Linville | 3d29b0c | 2008-10-31 14:13:12 -0400 | [diff] [blame] | 1816 | dev->name); |
Pavel Machek | 2a80634 | 2006-05-26 22:07:48 +0200 | [diff] [blame] | 1817 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1818 | usb_set_intfdata(interface, zd); |
Pavel Machek | d91928e | 2006-07-27 14:32:40 -0400 | [diff] [blame] | 1819 | zd1201_enable(zd); /* zd1201 likes to startup enabled, */ |
| 1820 | zd1201_disable(zd); /* interfering with all the wifis in range */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1821 | return 0; |
| 1822 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1823 | err_start: |
| 1824 | /* Leave the device in reset state */ |
| 1825 | zd1201_docmd(zd, ZD1201_CMDCODE_INIT, 0, 0, 0); |
| 1826 | err_zd: |
Mariusz Kozlowski | f988f27 | 2006-11-08 15:35:42 +0100 | [diff] [blame] | 1827 | usb_free_urb(zd->tx_urb); |
| 1828 | usb_free_urb(zd->rx_urb); |
John W. Linville | 3d29b0c | 2008-10-31 14:13:12 -0400 | [diff] [blame] | 1829 | free_netdev(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1830 | return err; |
| 1831 | } |
| 1832 | |
Adrian Bunk | 2e0a6b8 | 2005-04-22 15:07:01 -0700 | [diff] [blame] | 1833 | static void zd1201_disconnect(struct usb_interface *interface) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1834 | { |
| 1835 | struct zd1201 *zd=(struct zd1201 *)usb_get_intfdata(interface); |
| 1836 | struct hlist_node *node, *node2; |
| 1837 | struct zd1201_frag *frag; |
| 1838 | |
| 1839 | if (!zd) |
| 1840 | return; |
| 1841 | usb_set_intfdata(interface, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1842 | |
| 1843 | hlist_for_each_entry_safe(frag, node, node2, &zd->fraglist, fnode) { |
| 1844 | hlist_del_init(&frag->fnode); |
| 1845 | kfree_skb(frag->skb); |
| 1846 | kfree(frag); |
| 1847 | } |
| 1848 | |
| 1849 | if (zd->tx_urb) { |
| 1850 | usb_kill_urb(zd->tx_urb); |
| 1851 | usb_free_urb(zd->tx_urb); |
| 1852 | } |
| 1853 | if (zd->rx_urb) { |
| 1854 | usb_kill_urb(zd->rx_urb); |
| 1855 | usb_free_urb(zd->rx_urb); |
| 1856 | } |
Wang Chen | b88a2a2 | 2008-12-18 19:36:46 -0800 | [diff] [blame] | 1857 | |
| 1858 | if (zd->dev) { |
| 1859 | unregister_netdev(zd->dev); |
| 1860 | free_netdev(zd->dev); |
| 1861 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1862 | } |
| 1863 | |
Colin Leroy | a3c900b | 2005-04-24 16:37:15 -0700 | [diff] [blame] | 1864 | #ifdef CONFIG_PM |
| 1865 | |
| 1866 | static int zd1201_suspend(struct usb_interface *interface, |
| 1867 | pm_message_t message) |
| 1868 | { |
| 1869 | struct zd1201 *zd = usb_get_intfdata(interface); |
| 1870 | |
| 1871 | netif_device_detach(zd->dev); |
| 1872 | |
| 1873 | zd->was_enabled = zd->mac_enabled; |
| 1874 | |
| 1875 | if (zd->was_enabled) |
| 1876 | return zd1201_disable(zd); |
| 1877 | else |
| 1878 | return 0; |
| 1879 | } |
| 1880 | |
| 1881 | static int zd1201_resume(struct usb_interface *interface) |
| 1882 | { |
| 1883 | struct zd1201 *zd = usb_get_intfdata(interface); |
| 1884 | |
Colin Leroy | f58f97f | 2005-05-01 11:29:10 +0200 | [diff] [blame] | 1885 | if (!zd || !zd->dev) |
| 1886 | return -ENODEV; |
| 1887 | |
Colin Leroy | a3c900b | 2005-04-24 16:37:15 -0700 | [diff] [blame] | 1888 | netif_device_attach(zd->dev); |
| 1889 | |
| 1890 | if (zd->was_enabled) |
| 1891 | return zd1201_enable(zd); |
| 1892 | else |
| 1893 | return 0; |
| 1894 | } |
| 1895 | |
| 1896 | #else |
| 1897 | |
| 1898 | #define zd1201_suspend NULL |
| 1899 | #define zd1201_resume NULL |
| 1900 | |
| 1901 | #endif |
| 1902 | |
Adrian Bunk | 2e0a6b8 | 2005-04-22 15:07:01 -0700 | [diff] [blame] | 1903 | static struct usb_driver zd1201_usb = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1904 | .name = "zd1201", |
| 1905 | .probe = zd1201_probe, |
| 1906 | .disconnect = zd1201_disconnect, |
| 1907 | .id_table = zd1201_table, |
Colin Leroy | a3c900b | 2005-04-24 16:37:15 -0700 | [diff] [blame] | 1908 | .suspend = zd1201_suspend, |
| 1909 | .resume = zd1201_resume, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1910 | }; |
| 1911 | |
| 1912 | static int __init zd1201_init(void) |
| 1913 | { |
| 1914 | return usb_register(&zd1201_usb); |
| 1915 | } |
| 1916 | |
| 1917 | static void __exit zd1201_cleanup(void) |
| 1918 | { |
| 1919 | usb_deregister(&zd1201_usb); |
| 1920 | } |
| 1921 | |
| 1922 | module_init(zd1201_init); |
| 1923 | module_exit(zd1201_cleanup); |