2 * Driver for ZyDAS zd1201 based wireless USB devices.
4 * Copyright (c) 2004, 2005 Jeroen Vreeken (pe1rxq@amsat.org)
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.
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.
15 #include <linux/module.h>
16 #include <linux/usb.h>
17 #include <linux/slab.h>
18 #include <linux/netdevice.h>
19 #include <linux/etherdevice.h>
20 #include <linux/wireless.h>
21 #include <linux/ieee80211.h>
22 #include <net/iw_handler.h>
23 #include <linux/string.h>
24 #include <linux/if_arp.h>
25 #include <linux/firmware.h>
28 static struct usb_device_id zd1201_table
[] = {
29 {USB_DEVICE(0x0586, 0x3400)}, /* Peabird Wireless USB Adapter */
30 {USB_DEVICE(0x0ace, 0x1201)}, /* ZyDAS ZD1201 Wireless USB Adapter */
31 {USB_DEVICE(0x050d, 0x6051)}, /* Belkin F5D6051 usb adapter */
32 {USB_DEVICE(0x0db0, 0x6823)}, /* MSI UB11B usb adapter */
33 {USB_DEVICE(0x1044, 0x8005)}, /* GIGABYTE GN-WLBZ201 usb adapter */
37 static int ap
; /* Are we an AP or a normal station? */
39 #define ZD1201_VERSION "0.15"
41 MODULE_AUTHOR("Jeroen Vreeken <pe1rxq@amsat.org>");
42 MODULE_DESCRIPTION("Driver for ZyDAS ZD1201 based USB Wireless adapters");
43 MODULE_VERSION(ZD1201_VERSION
);
44 MODULE_LICENSE("GPL");
45 module_param(ap
, int, 0);
46 MODULE_PARM_DESC(ap
, "If non-zero Access Point firmware will be loaded");
47 MODULE_DEVICE_TABLE(usb
, zd1201_table
);
50 static int zd1201_fw_upload(struct usb_device
*dev
, int apfw
)
52 const struct firmware
*fw_entry
;
61 fwfile
= "zd1201-ap.fw";
65 err
= request_firmware(&fw_entry
, fwfile
, &dev
->dev
);
67 dev_err(&dev
->dev
, "Failed to load %s firmware file!\n", fwfile
);
68 dev_err(&dev
->dev
, "Make sure the hotplug firmware loader is installed.\n");
69 dev_err(&dev
->dev
, "Goto http://linux-lc100020.sourceforge.net for more info.\n");
73 data
= fw_entry
->data
;
76 buf
= kmalloc(1024, GFP_ATOMIC
);
81 int translen
= (len
> 1024) ? 1024 : len
;
82 memcpy(buf
, data
, translen
);
84 err
= usb_control_msg(dev
, usb_sndctrlpipe(dev
, 0), 0,
85 USB_DIR_OUT
| 0x40, 0, 0, buf
, translen
,
94 err
= usb_control_msg(dev
, usb_sndctrlpipe(dev
, 0), 0x2,
95 USB_DIR_OUT
| 0x40, 0, 0, NULL
, 0, ZD1201_FW_TIMEOUT
);
99 err
= usb_control_msg(dev
, usb_rcvctrlpipe(dev
, 0), 0x4,
100 USB_DIR_IN
| 0x40, 0,0, &ret
, sizeof(ret
), ZD1201_FW_TIMEOUT
);
112 release_firmware(fw_entry
);
116 MODULE_FIRMWARE("zd1201-ap.fw");
117 MODULE_FIRMWARE("zd1201.fw");
119 static void zd1201_usbfree(struct urb
*urb
)
121 struct zd1201
*zd
= urb
->context
;
123 switch(urb
->status
) {
131 dev_warn(&zd
->usb
->dev
, "%s: urb failed: %d\n",
132 zd
->dev
->name
, urb
->status
);
135 kfree(urb
->transfer_buffer
);
148 total: 4 + 2 + 2 + 2 + 2 + 4 = 16
150 static int zd1201_docmd(struct zd1201
*zd
, int cmd
, int parm0
,
151 int parm1
, int parm2
)
153 unsigned char *command
;
157 command
= kmalloc(16, GFP_ATOMIC
);
161 *((__le32
*)command
) = cpu_to_le32(ZD1201_USB_CMDREQ
);
162 *((__le16
*)&command
[4]) = cpu_to_le16(cmd
);
163 *((__le16
*)&command
[6]) = cpu_to_le16(parm0
);
164 *((__le16
*)&command
[8]) = cpu_to_le16(parm1
);
165 *((__le16
*)&command
[10])= cpu_to_le16(parm2
);
167 urb
= usb_alloc_urb(0, GFP_ATOMIC
);
172 usb_fill_bulk_urb(urb
, zd
->usb
, usb_sndbulkpipe(zd
->usb
, zd
->endp_out2
),
173 command
, 16, zd1201_usbfree
, zd
);
174 ret
= usb_submit_urb(urb
, GFP_ATOMIC
);
183 /* Callback after sending out a packet */
184 static void zd1201_usbtx(struct urb
*urb
)
186 struct zd1201
*zd
= urb
->context
;
187 netif_wake_queue(zd
->dev
);
192 static void zd1201_usbrx(struct urb
*urb
)
194 struct zd1201
*zd
= urb
->context
;
196 unsigned char *data
= urb
->transfer_buffer
;
203 switch(urb
->status
) {
211 dev_warn(&zd
->usb
->dev
, "%s: rx urb failed: %d\n",
212 zd
->dev
->name
, urb
->status
);
217 if (urb
->status
!= 0 || urb
->actual_length
== 0)
221 if (type
== ZD1201_PACKET_EVENTSTAT
|| type
== ZD1201_PACKET_RESOURCE
) {
222 memcpy(zd
->rxdata
, data
, urb
->actual_length
);
223 zd
->rxlen
= urb
->actual_length
;
225 wake_up(&zd
->rxdataq
);
228 if (type
== ZD1201_PACKET_INQUIRE
) {
230 unsigned short infotype
, framelen
, copylen
;
231 framelen
= le16_to_cpu(*(__le16
*)&data
[4]);
232 infotype
= le16_to_cpu(*(__le16
*)&data
[6]);
234 if (infotype
== ZD1201_INF_LINKSTATUS
) {
237 linkstatus
= le16_to_cpu(*(__le16
*)&data
[8]);
240 netif_carrier_on(zd
->dev
);
243 netif_carrier_off(zd
->dev
);
246 netif_carrier_off(zd
->dev
);
249 netif_carrier_on(zd
->dev
);
252 netif_carrier_off(zd
->dev
);
256 if (infotype
== ZD1201_INF_ASSOCSTATUS
) {
257 short status
= le16_to_cpu(*(__le16
*)(data
+8));
259 union iwreq_data wrqu
;
262 case ZD1201_ASSOCSTATUS_STAASSOC
:
263 case ZD1201_ASSOCSTATUS_REASSOC
:
264 event
= IWEVREGISTERED
;
266 case ZD1201_ASSOCSTATUS_DISASSOC
:
267 case ZD1201_ASSOCSTATUS_ASSOCFAIL
:
268 case ZD1201_ASSOCSTATUS_AUTHFAIL
:
272 memcpy(wrqu
.addr
.sa_data
, data
+10, ETH_ALEN
);
273 wrqu
.addr
.sa_family
= ARPHRD_ETHER
;
275 /* Send event to user space */
276 wireless_send_event(zd
->dev
, event
, &wrqu
, NULL
);
280 if (infotype
== ZD1201_INF_AUTHREQ
) {
281 union iwreq_data wrqu
;
283 memcpy(wrqu
.addr
.sa_data
, data
+8, ETH_ALEN
);
284 wrqu
.addr
.sa_family
= ARPHRD_ETHER
;
285 /* There isn't a event that trully fits this request.
286 We assume that userspace will be smart enough to
287 see a new station being expired and sends back a
288 authstation ioctl to authorize it. */
289 wireless_send_event(zd
->dev
, IWEVEXPIRED
, &wrqu
, NULL
);
292 /* Other infotypes are handled outside this handler */
294 while (i
< urb
->actual_length
) {
295 copylen
= le16_to_cpu(*(__le16
*)&data
[i
+2]);
296 /* Sanity check, sometimes we get junk */
297 if (copylen
+zd
->rxlen
> sizeof(zd
->rxdata
))
299 memcpy(zd
->rxdata
+zd
->rxlen
, data
+i
+4, copylen
);
300 zd
->rxlen
+= copylen
;
303 if (i
>= urb
->actual_length
) {
305 wake_up(&zd
->rxdataq
);
310 if (data
[urb
->actual_length
-1] == ZD1201_PACKET_RXDATA
) {
311 int datalen
= urb
->actual_length
-1;
312 unsigned short len
, fc
, seq
;
313 struct hlist_node
*node
;
315 len
= ntohs(*(__be16
*)&data
[datalen
-2]);
318 fc
= le16_to_cpu(*(__le16
*)&data
[datalen
-16]);
319 seq
= le16_to_cpu(*(__le16
*)&data
[datalen
-24]);
324 if (!(skb
= dev_alloc_skb(datalen
+24)))
327 memcpy(skb_put(skb
, 2), &data
[datalen
-16], 2);
328 memcpy(skb_put(skb
, 2), &data
[datalen
-2], 2);
329 memcpy(skb_put(skb
, 6), &data
[datalen
-14], 6);
330 memcpy(skb_put(skb
, 6), &data
[datalen
-22], 6);
331 memcpy(skb_put(skb
, 6), &data
[datalen
-8], 6);
332 memcpy(skb_put(skb
, 2), &data
[datalen
-24], 2);
333 memcpy(skb_put(skb
, len
), data
, len
);
334 skb
->protocol
= eth_type_trans(skb
, zd
->dev
);
335 zd
->dev
->stats
.rx_packets
++;
336 zd
->dev
->stats
.rx_bytes
+= skb
->len
;
341 if ((seq
& IEEE80211_SCTL_FRAG
) ||
342 (fc
& IEEE80211_FCTL_MOREFRAGS
)) {
343 struct zd1201_frag
*frag
= NULL
;
348 if ((seq
& IEEE80211_SCTL_FRAG
) == 0) {
349 frag
= kmalloc(sizeof(*frag
), GFP_ATOMIC
);
352 skb
= dev_alloc_skb(IEEE80211_MAX_DATA_LEN
+14+2);
358 frag
->seq
= seq
& IEEE80211_SCTL_SEQ
;
360 memcpy(skb_put(skb
, 12), &data
[datalen
-14], 12);
361 memcpy(skb_put(skb
, 2), &data
[6], 2);
362 memcpy(skb_put(skb
, len
), data
+8, len
);
363 hlist_add_head(&frag
->fnode
, &zd
->fraglist
);
366 hlist_for_each_entry(frag
, node
, &zd
->fraglist
, fnode
)
367 if (frag
->seq
== (seq
&IEEE80211_SCTL_SEQ
))
372 ptr
= skb_put(skb
, len
);
374 memcpy(ptr
, data
+8, len
);
375 if (fc
& IEEE80211_FCTL_MOREFRAGS
)
377 hlist_del_init(&frag
->fnode
);
382 skb
= dev_alloc_skb(len
+ 14 + 2);
386 memcpy(skb_put(skb
, 12), &data
[datalen
-14], 12);
387 memcpy(skb_put(skb
, 2), &data
[6], 2);
388 memcpy(skb_put(skb
, len
), data
+8, len
);
390 skb
->protocol
= eth_type_trans(skb
, zd
->dev
);
391 zd
->dev
->stats
.rx_packets
++;
392 zd
->dev
->stats
.rx_bytes
+= skb
->len
;
396 memset(data
, 0, ZD1201_RXSIZE
);
400 if(usb_submit_urb(urb
, GFP_ATOMIC
))
407 wake_up(&zd
->rxdataq
);
408 kfree(urb
->transfer_buffer
);
413 static int zd1201_getconfig(struct zd1201
*zd
, int rid
, void *riddata
,
414 unsigned int riddatalen
)
421 unsigned char *pdata
;
424 err
= zd1201_docmd(zd
, ZD1201_CMDCODE_ACCESS
, rid
, 0, 0);
428 wait_event_interruptible(zd
->rxdataq
, zd
->rxdatas
);
432 code
= le16_to_cpu(*(__le16
*)(&zd
->rxdata
[4]));
433 rid_fid
= le16_to_cpu(*(__le16
*)(&zd
->rxdata
[6]));
434 length
= le16_to_cpu(*(__le16
*)(&zd
->rxdata
[8]));
435 if (length
> zd
->rxlen
)
436 length
= zd
->rxlen
-6;
438 /* If access bit is not on, then error */
439 if ((code
& ZD1201_ACCESSBIT
) != ZD1201_ACCESSBIT
|| rid_fid
!= rid
)
442 /* Not enough buffer for allocating data */
443 if (riddatalen
!= (length
- 4)) {
444 dev_dbg(&zd
->usb
->dev
, "riddatalen mismatches, expected=%u, (packet=%u) length=%u, rid=0x%04X, rid_fid=0x%04X\n",
445 riddatalen
, zd
->rxlen
, length
, rid
, rid_fid
);
450 /* Issue SetRxRid commnd */
451 err
= zd1201_docmd(zd
, ZD1201_CMDCODE_SETRXRID
, rid
, 0, length
);
455 /* Receive RID record from resource packets */
456 wait_event_interruptible(zd
->rxdataq
, zd
->rxdatas
);
460 if (zd
->rxdata
[zd
->rxlen
- 1] != ZD1201_PACKET_RESOURCE
) {
461 dev_dbg(&zd
->usb
->dev
, "Packet type mismatch: 0x%x not 0x3\n",
462 zd
->rxdata
[zd
->rxlen
-1]);
466 /* Set the data pointer and received data length */
473 actual_length
= (length
> 64) ? 64 : length
;
475 if (pdata
[0] != 0x3) {
476 dev_dbg(&zd
->usb
->dev
, "Rx Resource packet type error: %02X\n",
481 if (actual_length
!= 64) {
482 /* Trim the last packet type byte */
486 /* Skip the 4 bytes header (RID length and RID) */
495 memcpy(riddata
, pdata
, actual_length
);
496 riddata
+= actual_length
;
497 pdata
+= actual_length
;
500 } while (length
> 0);
513 static int zd1201_setconfig(struct zd1201
*zd
, int rid
, void *buf
, int len
, int wait
)
516 unsigned char *request
;
520 gfp_t gfp_mask
= wait
? GFP_NOIO
: GFP_ATOMIC
;
522 len
+= 4; /* first 4 are for header */
526 for (seq
=0; len
> 0; seq
++) {
527 request
= kmalloc(16, gfp_mask
);
530 urb
= usb_alloc_urb(0, gfp_mask
);
535 memset(request
, 0, 16);
536 reqlen
= len
>12 ? 12 : len
;
537 request
[0] = ZD1201_USB_RESREQ
;
541 if (request
[1] == 0) {
543 *(__le16
*)&request
[4] = cpu_to_le16((len
-2+1)/2);
544 *(__le16
*)&request
[6] = cpu_to_le16(rid
);
545 memcpy(request
+8, buf
, reqlen
-4);
548 memcpy(request
+4, buf
, reqlen
);
554 usb_fill_bulk_urb(urb
, zd
->usb
, usb_sndbulkpipe(zd
->usb
,
555 zd
->endp_out2
), request
, 16, zd1201_usbfree
, zd
);
556 err
= usb_submit_urb(urb
, gfp_mask
);
561 request
= kmalloc(16, gfp_mask
);
564 urb
= usb_alloc_urb(0, gfp_mask
);
569 *((__le32
*)request
) = cpu_to_le32(ZD1201_USB_CMDREQ
);
570 *((__le16
*)&request
[4]) =
571 cpu_to_le16(ZD1201_CMDCODE_ACCESS
|ZD1201_ACCESSBIT
);
572 *((__le16
*)&request
[6]) = cpu_to_le16(rid
);
573 *((__le16
*)&request
[8]) = cpu_to_le16(0);
574 *((__le16
*)&request
[10]) = cpu_to_le16(0);
575 usb_fill_bulk_urb(urb
, zd
->usb
, usb_sndbulkpipe(zd
->usb
, zd
->endp_out2
),
576 request
, 16, zd1201_usbfree
, zd
);
577 err
= usb_submit_urb(urb
, gfp_mask
);
582 wait_event_interruptible(zd
->rxdataq
, zd
->rxdatas
);
583 if (!zd
->rxlen
|| le16_to_cpu(*(__le16
*)&zd
->rxdata
[6]) != rid
) {
584 dev_dbg(&zd
->usb
->dev
, "wrong or no RID received\n");
595 static inline int zd1201_getconfig16(struct zd1201
*zd
, int rid
, short *val
)
600 err
= zd1201_getconfig(zd
, rid
, &zdval
, sizeof(__le16
));
603 *val
= le16_to_cpu(zdval
);
607 static inline int zd1201_setconfig16(struct zd1201
*zd
, int rid
, short val
)
609 __le16 zdval
= cpu_to_le16(val
);
610 return (zd1201_setconfig(zd
, rid
, &zdval
, sizeof(__le16
), 1));
613 static int zd1201_drvr_start(struct zd1201
*zd
)
618 unsigned char *buffer
;
620 buffer
= kzalloc(ZD1201_RXSIZE
, GFP_KERNEL
);
624 usb_fill_bulk_urb(zd
->rx_urb
, zd
->usb
,
625 usb_rcvbulkpipe(zd
->usb
, zd
->endp_in
), buffer
, ZD1201_RXSIZE
,
628 err
= usb_submit_urb(zd
->rx_urb
, GFP_KERNEL
);
632 err
= zd1201_docmd(zd
, ZD1201_CMDCODE_INIT
, 0, 0, 0);
636 err
= zd1201_getconfig(zd
, ZD1201_RID_CNFMAXTXBUFFERNUMBER
, &zdmax
,
641 max
= le16_to_cpu(zdmax
);
642 for (i
=0; i
<max
; i
++) {
643 err
= zd1201_docmd(zd
, ZD1201_CMDCODE_ALLOC
, 1514, 0, 0);
651 usb_kill_urb(zd
->rx_urb
);
658 /* Magic alert: The firmware doesn't seem to like the MAC state being
659 * toggled in promisc (aka monitor) mode.
660 * (It works a number of times, but will halt eventually)
661 * So we turn it of before disabling and on after enabling if needed.
663 static int zd1201_enable(struct zd1201
*zd
)
670 err
= zd1201_docmd(zd
, ZD1201_CMDCODE_ENABLE
, 0, 0, 0);
675 err
= zd1201_setconfig16(zd
, ZD1201_RID_PROMISCUOUSMODE
, 1);
680 static int zd1201_disable(struct zd1201
*zd
)
684 if (!zd
->mac_enabled
)
687 err
= zd1201_setconfig16(zd
, ZD1201_RID_PROMISCUOUSMODE
, 0);
692 err
= zd1201_docmd(zd
, ZD1201_CMDCODE_DISABLE
, 0, 0, 0);
698 static int zd1201_mac_reset(struct zd1201
*zd
)
700 if (!zd
->mac_enabled
)
703 return zd1201_enable(zd
);
706 static int zd1201_join(struct zd1201
*zd
, char *essid
, int essidlen
)
709 char buf
[IW_ESSID_MAX_SIZE
+2];
711 err
= zd1201_disable(zd
);
715 val
= ZD1201_CNFAUTHENTICATION_OPENSYSTEM
;
716 val
|= ZD1201_CNFAUTHENTICATION_SHAREDKEY
;
717 err
= zd1201_setconfig16(zd
, ZD1201_RID_CNFAUTHENTICATION
, val
);
721 *(__le16
*)buf
= cpu_to_le16(essidlen
);
722 memcpy(buf
+2, essid
, essidlen
);
723 if (!zd
->ap
) { /* Normal station */
724 err
= zd1201_setconfig(zd
, ZD1201_RID_CNFDESIREDSSID
, buf
,
725 IW_ESSID_MAX_SIZE
+2, 1);
729 err
= zd1201_setconfig(zd
, ZD1201_RID_CNFOWNSSID
, buf
,
730 IW_ESSID_MAX_SIZE
+2, 1);
735 err
= zd1201_setconfig(zd
, ZD1201_RID_CNFOWNMACADDR
,
736 zd
->dev
->dev_addr
, zd
->dev
->addr_len
, 1);
740 err
= zd1201_enable(zd
);
748 static int zd1201_net_open(struct net_device
*dev
)
750 struct zd1201
*zd
= netdev_priv(dev
);
752 /* Start MAC with wildcard if no essid set */
753 if (!zd
->mac_enabled
)
754 zd1201_join(zd
, zd
->essid
, zd
->essidlen
);
755 netif_start_queue(dev
);
760 static int zd1201_net_stop(struct net_device
*dev
)
762 netif_stop_queue(dev
);
767 RFC 1042 encapsulates Ethernet frames in 802.11 frames
768 by prefixing them with 0xaa, 0xaa, 0x03) followed by a SNAP OID of 0
769 (0x00, 0x00, 0x00). Zd requires an additional padding, copy
770 of ethernet addresses, length of the standard RFC 1042 packet
771 and a command byte (which is nul for tx).
773 tx frame (from Wlan NG):
775 llc 0xAA 0xAA 0x03 (802.2 LLC)
776 snap 0x00 0x00 0x00 (Ethernet encapsulated)
777 type 2 bytes, Ethernet type field
778 payload (minus eth header)
780 padding 1B if (skb->len+8+1)%64==0
781 Eth MAC addr 12 bytes, Ethernet MAC addresses
782 length 2 bytes, RFC 1042 packet length
783 (llc+snap+type+payload)
784 zd 1 null byte, zd1201 packet type
786 static netdev_tx_t
zd1201_hard_start_xmit(struct sk_buff
*skb
,
787 struct net_device
*dev
)
789 struct zd1201
*zd
= netdev_priv(dev
);
790 unsigned char *txbuf
= zd
->txdata
;
791 int txbuflen
, pad
= 0, err
;
792 struct urb
*urb
= zd
->tx_urb
;
794 if (!zd
->mac_enabled
|| zd
->monitor
) {
795 dev
->stats
.tx_dropped
++;
799 netif_stop_queue(dev
);
801 txbuflen
= skb
->len
+ 8 + 1;
802 if (txbuflen
%64 == 0) {
809 txbuf
[3] = 0x00; /* rfc1042 */
813 skb_copy_from_linear_data_offset(skb
, 12, txbuf
+ 6, skb
->len
- 12);
815 txbuf
[skb
->len
-12+6]=0;
816 skb_copy_from_linear_data(skb
, txbuf
+ skb
->len
- 12 + 6 + pad
, 12);
817 *(__be16
*)&txbuf
[skb
->len
+6+pad
] = htons(skb
->len
-12+6);
818 txbuf
[txbuflen
-1] = 0;
820 usb_fill_bulk_urb(urb
, zd
->usb
, usb_sndbulkpipe(zd
->usb
, zd
->endp_out
),
821 txbuf
, txbuflen
, zd1201_usbtx
, zd
);
823 err
= usb_submit_urb(zd
->tx_urb
, GFP_ATOMIC
);
825 dev
->stats
.tx_errors
++;
826 netif_start_queue(dev
);
828 dev
->stats
.tx_packets
++;
829 dev
->stats
.tx_bytes
+= skb
->len
;
836 static void zd1201_tx_timeout(struct net_device
*dev
)
838 struct zd1201
*zd
= netdev_priv(dev
);
842 dev_warn(&zd
->usb
->dev
, "%s: TX timeout, shooting down urb\n",
844 usb_unlink_urb(zd
->tx_urb
);
845 dev
->stats
.tx_errors
++;
846 /* Restart the timeout to quiet the watchdog: */
847 dev
->trans_start
= jiffies
; /* prevent tx timeout */
850 static int zd1201_set_mac_address(struct net_device
*dev
, void *p
)
852 struct sockaddr
*addr
= p
;
853 struct zd1201
*zd
= netdev_priv(dev
);
859 err
= zd1201_setconfig(zd
, ZD1201_RID_CNFOWNMACADDR
,
860 addr
->sa_data
, dev
->addr_len
, 1);
863 memcpy(dev
->dev_addr
, addr
->sa_data
, dev
->addr_len
);
865 return zd1201_mac_reset(zd
);
868 static struct iw_statistics
*zd1201_get_wireless_stats(struct net_device
*dev
)
870 struct zd1201
*zd
= netdev_priv(dev
);
875 static void zd1201_set_multicast(struct net_device
*dev
)
877 struct zd1201
*zd
= netdev_priv(dev
);
878 struct netdev_hw_addr
*ha
;
879 unsigned char reqbuf
[ETH_ALEN
*ZD1201_MAXMULTI
];
882 if (netdev_mc_count(dev
) > ZD1201_MAXMULTI
)
886 netdev_for_each_mc_addr(ha
, dev
)
887 memcpy(reqbuf
+ i
++ * ETH_ALEN
, ha
->addr
, ETH_ALEN
);
888 zd1201_setconfig(zd
, ZD1201_RID_CNFGROUPADDRESS
, reqbuf
,
889 netdev_mc_count(dev
) * ETH_ALEN
, 0);
892 static int zd1201_config_commit(struct net_device
*dev
,
893 struct iw_request_info
*info
, struct iw_point
*data
, char *essid
)
895 struct zd1201
*zd
= netdev_priv(dev
);
897 return zd1201_mac_reset(zd
);
900 static int zd1201_get_name(struct net_device
*dev
,
901 struct iw_request_info
*info
, char *name
, char *extra
)
903 strcpy(name
, "IEEE 802.11b");
907 static int zd1201_set_freq(struct net_device
*dev
,
908 struct iw_request_info
*info
, struct iw_freq
*freq
, char *extra
)
910 struct zd1201
*zd
= netdev_priv(dev
);
917 channel
= ieee80211_freq_to_dsss_chan(freq
->m
);
922 err
= zd1201_setconfig16(zd
, ZD1201_RID_CNFOWNCHANNEL
, channel
);
926 zd1201_mac_reset(zd
);
931 static int zd1201_get_freq(struct net_device
*dev
,
932 struct iw_request_info
*info
, struct iw_freq
*freq
, char *extra
)
934 struct zd1201
*zd
= netdev_priv(dev
);
938 err
= zd1201_getconfig16(zd
, ZD1201_RID_CNFOWNCHANNEL
, &channel
);
947 static int zd1201_set_mode(struct net_device
*dev
,
948 struct iw_request_info
*info
, __u32
*mode
, char *extra
)
950 struct zd1201
*zd
= netdev_priv(dev
);
951 short porttype
, monitor
= 0;
952 unsigned char buffer
[IW_ESSID_MAX_SIZE
+2];
956 if (*mode
!= IW_MODE_MASTER
)
961 err
= zd1201_setconfig16(zd
, ZD1201_RID_PROMISCUOUSMODE
, 0);
964 zd
->dev
->type
= ARPHRD_ETHER
;
966 case IW_MODE_MONITOR
:
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)
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
;
979 porttype
= ZD1201_PORTTYPE_IBSS
;
982 porttype
= ZD1201_PORTTYPE_BSS
;
988 err
= zd1201_setconfig16(zd
, ZD1201_RID_CNFPORTTYPE
, porttype
);
991 if (zd
->monitor
&& !monitor
) {
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);
1000 zd
->monitor
= monitor
;
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).
1004 zd1201_mac_reset(zd
);
1009 static int zd1201_get_mode(struct net_device
*dev
,
1010 struct iw_request_info
*info
, __u32
*mode
, char *extra
)
1012 struct zd1201
*zd
= netdev_priv(dev
);
1016 err
= zd1201_getconfig16(zd
, ZD1201_RID_CNFPORTTYPE
, &porttype
);
1020 case ZD1201_PORTTYPE_IBSS
:
1021 *mode
= IW_MODE_ADHOC
;
1023 case ZD1201_PORTTYPE_BSS
:
1024 *mode
= IW_MODE_INFRA
;
1026 case ZD1201_PORTTYPE_WDS
:
1027 *mode
= IW_MODE_REPEAT
;
1029 case ZD1201_PORTTYPE_PSEUDOIBSS
:
1030 *mode
= 8;/* No Pseudo-IBSS... */
1032 case ZD1201_PORTTYPE_AP
:
1033 *mode
= IW_MODE_MASTER
;
1036 dev_dbg(&zd
->usb
->dev
, "Unknown porttype: %d\n",
1038 *mode
= IW_MODE_AUTO
;
1041 *mode
= IW_MODE_MONITOR
;
1046 static int zd1201_get_range(struct net_device
*dev
,
1047 struct iw_request_info
*info
, struct iw_point
*wrq
, char *extra
)
1049 struct iw_range
*range
= (struct iw_range
*)extra
;
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
;
1056 range
->max_qual
.qual
= 128;
1057 range
->max_qual
.level
= 128;
1058 range
->max_qual
.noise
= 128;
1059 range
->max_qual
.updated
= 7;
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
;
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;
1073 range
->min_frag
= ZD1201_FRAGMIN
;
1074 range
->max_rts
= ZD1201_RTSMAX
;
1075 range
->min_frag
= ZD1201_FRAGMAX
;
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
1082 * a poll. Therefore we 'assume' that the user will soon ask for
1083 * the stats after asking the bssid.
1085 static int zd1201_get_wap(struct net_device
*dev
,
1086 struct iw_request_info
*info
, struct sockaddr
*ap_addr
, char *extra
)
1088 struct zd1201
*zd
= netdev_priv(dev
);
1089 unsigned char buffer
[6];
1091 if (!zd1201_getconfig(zd
, ZD1201_RID_COMMSQUALITY
, buffer
, 6)) {
1092 /* Unfortunately the quality and noise reported is useless.
1093 they seem to be accumulators that increase until you
1094 read them, unless we poll on a fixed interval we can't
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;
1103 return zd1201_getconfig(zd
, ZD1201_RID_CURRENTBSSID
, ap_addr
->sa_data
, 6);
1106 static int zd1201_set_scan(struct net_device
*dev
,
1107 struct iw_request_info
*info
, struct iw_point
*srq
, char *extra
)
1109 /* We do everything in get_scan */
1113 static int zd1201_get_scan(struct net_device
*dev
,
1114 struct iw_request_info
*info
, struct iw_point
*srq
, char *extra
)
1116 struct zd1201
*zd
= netdev_priv(dev
);
1117 int err
, i
, j
, enabled_save
;
1118 struct iw_event iwe
;
1120 char *end_buf
= extra
+ IW_SCAN_MAX_DATA
;
1122 /* No scanning in AP mode */
1126 /* Scan doesn't seem to work if disabled */
1127 enabled_save
= zd
->mac_enabled
;
1131 err
= zd1201_docmd(zd
, ZD1201_CMDCODE_INQUIRE
,
1132 ZD1201_INQ_SCANRESULTS
, 0, 0);
1136 wait_event_interruptible(zd
->rxdataq
, zd
->rxdatas
);
1140 if (le16_to_cpu(*(__le16
*)&zd
->rxdata
[2]) != ZD1201_INQ_SCANRESULTS
)
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);
1147 cev
= iwe_stream_add_event(info
, cev
, end_buf
,
1148 &iwe
, IW_EV_ADDR_LEN
);
1150 iwe
.cmd
= SIOCGIWESSID
;
1151 iwe
.u
.data
.length
= zd
->rxdata
[i
+16];
1152 iwe
.u
.data
.flags
= 1;
1153 cev
= iwe_stream_add_point(info
, cev
, end_buf
,
1154 &iwe
, zd
->rxdata
+i
+18);
1156 iwe
.cmd
= SIOCGIWMODE
;
1157 if (zd
->rxdata
[i
+14]&0x01)
1158 iwe
.u
.mode
= IW_MODE_MASTER
;
1160 iwe
.u
.mode
= IW_MODE_ADHOC
;
1161 cev
= iwe_stream_add_event(info
, cev
, end_buf
,
1162 &iwe
, IW_EV_UINT_LEN
);
1164 iwe
.cmd
= SIOCGIWFREQ
;
1165 iwe
.u
.freq
.m
= zd
->rxdata
[i
+0];
1167 cev
= iwe_stream_add_event(info
, cev
, end_buf
,
1168 &iwe
, IW_EV_FREQ_LEN
);
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;
1175 cev
= iwe_stream_add_event(info
, cev
, end_buf
,
1176 &iwe
, IW_EV_PARAM_LEN
);
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
;
1184 iwe
.u
.data
.flags
= IW_ENCODE_DISABLED
;
1185 cev
= iwe_stream_add_point(info
, cev
, end_buf
, &iwe
, NULL
);
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;
1192 cev
= iwe_stream_add_event(info
, cev
, end_buf
,
1193 &iwe
, IW_EV_QUAL_LEN
);
1199 srq
->length
= cev
- extra
;
1205 static int zd1201_set_essid(struct net_device
*dev
,
1206 struct iw_request_info
*info
, struct iw_point
*data
, char *essid
)
1208 struct zd1201
*zd
= netdev_priv(dev
);
1210 if (data
->length
> IW_ESSID_MAX_SIZE
)
1212 if (data
->length
< 1)
1214 zd
->essidlen
= data
->length
;
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
);
1220 static int zd1201_get_essid(struct net_device
*dev
,
1221 struct iw_request_info
*info
, struct iw_point
*data
, char *essid
)
1223 struct zd1201
*zd
= netdev_priv(dev
);
1225 memcpy(essid
, zd
->essid
, zd
->essidlen
);
1227 data
->length
= zd
->essidlen
;
1232 static int zd1201_get_nick(struct net_device
*dev
, struct iw_request_info
*info
,
1233 struct iw_point
*data
, char *nick
)
1235 strcpy(nick
, "zd1201");
1237 data
->length
= strlen(nick
);
1241 static int zd1201_set_rate(struct net_device
*dev
,
1242 struct iw_request_info
*info
, struct iw_param
*rrq
, char *extra
)
1244 struct zd1201
*zd
= netdev_priv(dev
);
1248 switch (rrq
->value
) {
1250 rate
= ZD1201_RATEB1
;
1253 rate
= ZD1201_RATEB2
;
1256 rate
= ZD1201_RATEB5
;
1260 rate
= ZD1201_RATEB11
;
1263 if (!rrq
->fixed
) { /* Also enable all lower bitrates */
1267 err
= zd1201_setconfig16(zd
, ZD1201_RID_TXRATECNTL
, rate
);
1271 return zd1201_mac_reset(zd
);
1274 static int zd1201_get_rate(struct net_device
*dev
,
1275 struct iw_request_info
*info
, struct iw_param
*rrq
, char *extra
)
1277 struct zd1201
*zd
= netdev_priv(dev
);
1281 err
= zd1201_getconfig16(zd
, ZD1201_RID_CURRENTTXRATE
, &rate
);
1287 rrq
->value
= 1000000;
1290 rrq
->value
= 2000000;
1293 rrq
->value
= 5500000;
1296 rrq
->value
= 11000000;
1307 static int zd1201_set_rts(struct net_device
*dev
, struct iw_request_info
*info
,
1308 struct iw_param
*rts
, char *extra
)
1310 struct zd1201
*zd
= netdev_priv(dev
);
1312 short val
= rts
->value
;
1314 if (rts
->disabled
|| !rts
->fixed
)
1315 val
= ZD1201_RTSMAX
;
1316 if (val
> ZD1201_RTSMAX
)
1321 err
= zd1201_setconfig16(zd
, ZD1201_RID_CNFRTSTHRESHOLD
, val
);
1324 return zd1201_mac_reset(zd
);
1327 static int zd1201_get_rts(struct net_device
*dev
, struct iw_request_info
*info
,
1328 struct iw_param
*rts
, char *extra
)
1330 struct zd1201
*zd
= netdev_priv(dev
);
1334 err
= zd1201_getconfig16(zd
, ZD1201_RID_CNFRTSTHRESHOLD
, &rtst
);
1338 rts
->disabled
= (rts
->value
== ZD1201_RTSMAX
);
1344 static int zd1201_set_frag(struct net_device
*dev
, struct iw_request_info
*info
,
1345 struct iw_param
*frag
, char *extra
)
1347 struct zd1201
*zd
= netdev_priv(dev
);
1349 short val
= frag
->value
;
1351 if (frag
->disabled
|| !frag
->fixed
)
1352 val
= ZD1201_FRAGMAX
;
1353 if (val
> ZD1201_FRAGMAX
)
1355 if (val
< ZD1201_FRAGMIN
)
1359 err
= zd1201_setconfig16(zd
, ZD1201_RID_CNFFRAGTHRESHOLD
, val
);
1362 return zd1201_mac_reset(zd
);
1365 static int zd1201_get_frag(struct net_device
*dev
, struct iw_request_info
*info
,
1366 struct iw_param
*frag
, char *extra
)
1368 struct zd1201
*zd
= netdev_priv(dev
);
1372 err
= zd1201_getconfig16(zd
, ZD1201_RID_CNFFRAGTHRESHOLD
, &fragt
);
1375 frag
->value
= fragt
;
1376 frag
->disabled
= (frag
->value
== ZD1201_FRAGMAX
);
1382 static int zd1201_set_retry(struct net_device
*dev
,
1383 struct iw_request_info
*info
, struct iw_param
*rrq
, char *extra
)
1388 static int zd1201_get_retry(struct net_device
*dev
,
1389 struct iw_request_info
*info
, struct iw_param
*rrq
, char *extra
)
1394 static int zd1201_set_encode(struct net_device
*dev
,
1395 struct iw_request_info
*info
, struct iw_point
*erq
, char *key
)
1397 struct zd1201
*zd
= netdev_priv(dev
);
1401 if (erq
->length
> ZD1201_MAXKEYLEN
)
1404 i
= (erq
->flags
& IW_ENCODE_INDEX
)-1;
1406 err
= zd1201_getconfig16(zd
,ZD1201_RID_CNFDEFAULTKEYID
,&i
);
1410 err
= zd1201_setconfig16(zd
, ZD1201_RID_CNFDEFAULTKEYID
, i
);
1415 if (i
< 0 || i
>= ZD1201_NUMKEYS
)
1418 rid
= ZD1201_RID_CNFDEFAULTKEY0
+ i
;
1419 err
= zd1201_setconfig(zd
, rid
, key
, erq
->length
, 1);
1422 zd
->encode_keylen
[i
] = erq
->length
;
1423 memcpy(zd
->encode_keys
[i
], key
, erq
->length
);
1426 if (!(erq
->flags
& IW_ENCODE_DISABLED
& IW_ENCODE_MODE
)) {
1428 zd
->encode_enabled
= 1;
1430 zd
->encode_enabled
= 0;
1431 if (erq
->flags
& IW_ENCODE_RESTRICTED
& IW_ENCODE_MODE
) {
1433 zd
->encode_restricted
= 1;
1435 zd
->encode_restricted
= 0;
1436 err
= zd1201_setconfig16(zd
, ZD1201_RID_CNFWEBFLAGS
, i
);
1440 if (zd
->encode_enabled
)
1441 i
= ZD1201_CNFAUTHENTICATION_SHAREDKEY
;
1443 i
= ZD1201_CNFAUTHENTICATION_OPENSYSTEM
;
1444 err
= zd1201_setconfig16(zd
, ZD1201_RID_CNFAUTHENTICATION
, i
);
1448 return zd1201_mac_reset(zd
);
1451 static int zd1201_get_encode(struct net_device
*dev
,
1452 struct iw_request_info
*info
, struct iw_point
*erq
, char *key
)
1454 struct zd1201
*zd
= netdev_priv(dev
);
1458 if (zd
->encode_enabled
)
1459 erq
->flags
= IW_ENCODE_ENABLED
;
1461 erq
->flags
= IW_ENCODE_DISABLED
;
1462 if (zd
->encode_restricted
)
1463 erq
->flags
|= IW_ENCODE_RESTRICTED
;
1465 erq
->flags
|= IW_ENCODE_OPEN
;
1467 i
= (erq
->flags
& IW_ENCODE_INDEX
) -1;
1469 err
= zd1201_getconfig16(zd
, ZD1201_RID_CNFDEFAULTKEYID
, &i
);
1473 if (i
<0 || i
>= ZD1201_NUMKEYS
)
1478 erq
->length
= zd
->encode_keylen
[i
];
1479 memcpy(key
, zd
->encode_keys
[i
], erq
->length
);
1484 static int zd1201_set_power(struct net_device
*dev
,
1485 struct iw_request_info
*info
, struct iw_param
*vwrq
, char *extra
)
1487 struct zd1201
*zd
= netdev_priv(dev
);
1488 short enabled
, duration
, level
;
1491 enabled
= vwrq
->disabled
? 0 : 1;
1493 if (vwrq
->flags
& IW_POWER_PERIOD
) {
1494 duration
= vwrq
->value
;
1495 err
= zd1201_setconfig16(zd
,
1496 ZD1201_RID_CNFMAXSLEEPDURATION
, duration
);
1501 if (vwrq
->flags
& IW_POWER_TIMEOUT
) {
1502 err
= zd1201_getconfig16(zd
,
1503 ZD1201_RID_CNFMAXSLEEPDURATION
, &duration
);
1506 level
= vwrq
->value
* 4 / duration
;
1511 err
= zd1201_setconfig16(zd
, ZD1201_RID_CNFPMEPS
,
1520 return zd1201_setconfig16(zd
, ZD1201_RID_CNFPMENABLED
, enabled
);
1523 static int zd1201_get_power(struct net_device
*dev
,
1524 struct iw_request_info
*info
, struct iw_param
*vwrq
, char *extra
)
1526 struct zd1201
*zd
= netdev_priv(dev
);
1527 short enabled
, level
, duration
;
1530 err
= zd1201_getconfig16(zd
, ZD1201_RID_CNFPMENABLED
, &enabled
);
1533 err
= zd1201_getconfig16(zd
, ZD1201_RID_CNFPMEPS
, &level
);
1536 err
= zd1201_getconfig16(zd
, ZD1201_RID_CNFMAXSLEEPDURATION
, &duration
);
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
;
1545 vwrq
->value
= duration
* level
/ 4;
1546 vwrq
->flags
= IW_POWER_TIMEOUT
;
1549 if (vwrq
->flags
& IW_POWER_MODE
) {
1550 if (enabled
&& level
)
1551 vwrq
->flags
= IW_POWER_UNICAST_R
;
1553 vwrq
->flags
= IW_POWER_ALL_R
;
1560 static const iw_handler zd1201_iw_handler
[] =
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 */
1610 static int zd1201_set_hostauth(struct net_device
*dev
,
1611 struct iw_request_info
*info
, struct iw_param
*rrq
, char *extra
)
1613 struct zd1201
*zd
= netdev_priv(dev
);
1618 return zd1201_setconfig16(zd
, ZD1201_RID_CNFHOSTAUTH
, rrq
->value
);
1621 static int zd1201_get_hostauth(struct net_device
*dev
,
1622 struct iw_request_info
*info
, struct iw_param
*rrq
, char *extra
)
1624 struct zd1201
*zd
= netdev_priv(dev
);
1631 err
= zd1201_getconfig16(zd
, ZD1201_RID_CNFHOSTAUTH
, &hostauth
);
1634 rrq
->value
= hostauth
;
1640 static int zd1201_auth_sta(struct net_device
*dev
,
1641 struct iw_request_info
*info
, struct sockaddr
*sta
, char *extra
)
1643 struct zd1201
*zd
= netdev_priv(dev
);
1644 unsigned char buffer
[10];
1649 memcpy(buffer
, sta
->sa_data
, ETH_ALEN
);
1650 *(short*)(buffer
+6) = 0; /* 0==success, 1==failure */
1651 *(short*)(buffer
+8) = 0;
1653 return zd1201_setconfig(zd
, ZD1201_RID_AUTHENTICATESTA
, buffer
, 10, 1);
1656 static int zd1201_set_maxassoc(struct net_device
*dev
,
1657 struct iw_request_info
*info
, struct iw_param
*rrq
, char *extra
)
1659 struct zd1201
*zd
= netdev_priv(dev
);
1665 err
= zd1201_setconfig16(zd
, ZD1201_RID_CNFMAXASSOCSTATIONS
, rrq
->value
);
1671 static int zd1201_get_maxassoc(struct net_device
*dev
,
1672 struct iw_request_info
*info
, struct iw_param
*rrq
, char *extra
)
1674 struct zd1201
*zd
= netdev_priv(dev
);
1681 err
= zd1201_getconfig16(zd
, ZD1201_RID_CNFMAXASSOCSTATIONS
, &maxassoc
);
1684 rrq
->value
= maxassoc
;
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 */
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" },
1704 { ZD1201SIWAUTHSTA
, IW_PRIV_TYPE_ADDR
| IW_PRIV_SIZE_FIXED
| 1,
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" },
1712 static const struct iw_handler_def zd1201_iw_handlers
= {
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
),
1716 .standard
= (iw_handler
*)zd1201_iw_handler
,
1717 .private = (iw_handler
*)zd1201_private_handler
,
1718 .private_args
= (struct iw_priv_args
*) zd1201_private_args
,
1719 .get_wireless_stats
= zd1201_get_wireless_stats
,
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
,
1730 .ndo_validate_addr
= eth_validate_addr
,
1733 static int zd1201_probe(struct usb_interface
*interface
,
1734 const struct usb_device_id
*id
)
1737 struct net_device
*dev
;
1738 struct usb_device
*usb
;
1741 char buf
[IW_ESSID_MAX_SIZE
+2];
1743 usb
= interface_to_usbdev(interface
);
1745 dev
= alloc_etherdev(sizeof(*zd
));
1748 zd
= netdev_priv(dev
);
1754 init_waitqueue_head(&zd
->rxdataq
);
1755 INIT_HLIST_HEAD(&zd
->fraglist
);
1757 err
= zd1201_fw_upload(usb
, zd
->ap
);
1759 dev_err(&usb
->dev
, "zd1201 firmware upload failed: %d\n", err
);
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
)
1772 err
= zd1201_drvr_start(zd
);
1776 err
= zd1201_setconfig16(zd
, ZD1201_RID_CNFMAXDATALEN
, 2312);
1780 err
= zd1201_setconfig16(zd
, ZD1201_RID_TXRATECNTL
,
1781 ZD1201_RATEB1
| ZD1201_RATEB2
| ZD1201_RATEB5
| ZD1201_RATEB11
);
1785 dev
->netdev_ops
= &zd1201_netdev_ops
;
1786 dev
->wireless_handlers
= &zd1201_iw_handlers
;
1787 dev
->watchdog_timeo
= ZD1201_TX_TIMEOUT
;
1788 strcpy(dev
->name
, "wlan%d");
1790 err
= zd1201_getconfig(zd
, ZD1201_RID_CNFOWNMACADDR
,
1791 dev
->dev_addr
, dev
->addr_len
);
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);
1803 porttype
= ZD1201_PORTTYPE_AP
;
1805 porttype
= ZD1201_PORTTYPE_BSS
;
1806 err
= zd1201_setconfig16(zd
, ZD1201_RID_CNFPORTTYPE
, porttype
);
1810 SET_NETDEV_DEV(dev
, &usb
->dev
);
1812 err
= register_netdev(dev
);
1815 dev_info(&usb
->dev
, "%s: ZD1201 USB Wireless interface\n",
1818 usb_set_intfdata(interface
, zd
);
1819 zd1201_enable(zd
); /* zd1201 likes to startup enabled, */
1820 zd1201_disable(zd
); /* interfering with all the wifis in range */
1824 /* Leave the device in reset state */
1825 zd1201_docmd(zd
, ZD1201_CMDCODE_INIT
, 0, 0, 0);
1827 usb_free_urb(zd
->tx_urb
);
1828 usb_free_urb(zd
->rx_urb
);
1833 static void zd1201_disconnect(struct usb_interface
*interface
)
1835 struct zd1201
*zd
=(struct zd1201
*)usb_get_intfdata(interface
);
1836 struct hlist_node
*node
, *node2
;
1837 struct zd1201_frag
*frag
;
1841 usb_set_intfdata(interface
, NULL
);
1843 hlist_for_each_entry_safe(frag
, node
, node2
, &zd
->fraglist
, fnode
) {
1844 hlist_del_init(&frag
->fnode
);
1845 kfree_skb(frag
->skb
);
1850 usb_kill_urb(zd
->tx_urb
);
1851 usb_free_urb(zd
->tx_urb
);
1854 usb_kill_urb(zd
->rx_urb
);
1855 usb_free_urb(zd
->rx_urb
);
1859 unregister_netdev(zd
->dev
);
1860 free_netdev(zd
->dev
);
1866 static int zd1201_suspend(struct usb_interface
*interface
,
1867 pm_message_t message
)
1869 struct zd1201
*zd
= usb_get_intfdata(interface
);
1871 netif_device_detach(zd
->dev
);
1873 zd
->was_enabled
= zd
->mac_enabled
;
1875 if (zd
->was_enabled
)
1876 return zd1201_disable(zd
);
1881 static int zd1201_resume(struct usb_interface
*interface
)
1883 struct zd1201
*zd
= usb_get_intfdata(interface
);
1885 if (!zd
|| !zd
->dev
)
1888 netif_device_attach(zd
->dev
);
1890 if (zd
->was_enabled
)
1891 return zd1201_enable(zd
);
1898 #define zd1201_suspend NULL
1899 #define zd1201_resume NULL
1903 static struct usb_driver zd1201_usb
= {
1905 .probe
= zd1201_probe
,
1906 .disconnect
= zd1201_disconnect
,
1907 .id_table
= zd1201_table
,
1908 .suspend
= zd1201_suspend
,
1909 .resume
= zd1201_resume
,
1912 static int __init
zd1201_init(void)
1914 return usb_register(&zd1201_usb
);
1917 static void __exit
zd1201_cleanup(void)
1919 usb_deregister(&zd1201_usb
);
1922 module_init(zd1201_init
);
1923 module_exit(zd1201_cleanup
);