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, 0x8004)}, /* Gigabyte GN-WLBZ101 */
34 {USB_DEVICE(0x1044, 0x8005)}, /* GIGABYTE GN-WLBZ201 usb adapter */
38 static int ap
; /* Are we an AP or a normal station? */
40 #define ZD1201_VERSION "0.15"
42 MODULE_AUTHOR("Jeroen Vreeken <pe1rxq@amsat.org>");
43 MODULE_DESCRIPTION("Driver for ZyDAS ZD1201 based USB Wireless adapters");
44 MODULE_VERSION(ZD1201_VERSION
);
45 MODULE_LICENSE("GPL");
46 module_param(ap
, int, 0);
47 MODULE_PARM_DESC(ap
, "If non-zero Access Point firmware will be loaded");
48 MODULE_DEVICE_TABLE(usb
, zd1201_table
);
51 static int zd1201_fw_upload(struct usb_device
*dev
, int apfw
)
53 const struct firmware
*fw_entry
;
62 fwfile
= "zd1201-ap.fw";
66 err
= request_firmware(&fw_entry
, fwfile
, &dev
->dev
);
68 dev_err(&dev
->dev
, "Failed to load %s firmware file!\n", fwfile
);
69 dev_err(&dev
->dev
, "Make sure the hotplug firmware loader is installed.\n");
70 dev_err(&dev
->dev
, "Goto http://linux-lc100020.sourceforge.net for more info.\n");
74 data
= fw_entry
->data
;
77 buf
= kmalloc(1024, GFP_ATOMIC
);
84 int translen
= (len
> 1024) ? 1024 : len
;
85 memcpy(buf
, data
, translen
);
87 err
= usb_control_msg(dev
, usb_sndctrlpipe(dev
, 0), 0,
88 USB_DIR_OUT
| 0x40, 0, 0, buf
, translen
,
97 err
= usb_control_msg(dev
, usb_sndctrlpipe(dev
, 0), 0x2,
98 USB_DIR_OUT
| 0x40, 0, 0, NULL
, 0, ZD1201_FW_TIMEOUT
);
102 err
= usb_control_msg(dev
, usb_rcvctrlpipe(dev
, 0), 0x4,
103 USB_DIR_IN
| 0x40, 0, 0, buf
, sizeof(ret
), ZD1201_FW_TIMEOUT
);
107 memcpy(&ret
, buf
, sizeof(ret
));
117 release_firmware(fw_entry
);
121 MODULE_FIRMWARE("zd1201-ap.fw");
122 MODULE_FIRMWARE("zd1201.fw");
124 static void zd1201_usbfree(struct urb
*urb
)
126 struct zd1201
*zd
= urb
->context
;
128 switch(urb
->status
) {
136 dev_warn(&zd
->usb
->dev
, "%s: urb failed: %d\n",
137 zd
->dev
->name
, urb
->status
);
140 kfree(urb
->transfer_buffer
);
152 total: 4 + 2 + 2 + 2 + 2 + 4 = 16
154 static int zd1201_docmd(struct zd1201
*zd
, int cmd
, int parm0
,
155 int parm1
, int parm2
)
157 unsigned char *command
;
161 command
= kmalloc(16, GFP_ATOMIC
);
165 *((__le32
*)command
) = cpu_to_le32(ZD1201_USB_CMDREQ
);
166 *((__le16
*)&command
[4]) = cpu_to_le16(cmd
);
167 *((__le16
*)&command
[6]) = cpu_to_le16(parm0
);
168 *((__le16
*)&command
[8]) = cpu_to_le16(parm1
);
169 *((__le16
*)&command
[10])= cpu_to_le16(parm2
);
171 urb
= usb_alloc_urb(0, GFP_ATOMIC
);
176 usb_fill_bulk_urb(urb
, zd
->usb
, usb_sndbulkpipe(zd
->usb
, zd
->endp_out2
),
177 command
, 16, zd1201_usbfree
, zd
);
178 ret
= usb_submit_urb(urb
, GFP_ATOMIC
);
187 /* Callback after sending out a packet */
188 static void zd1201_usbtx(struct urb
*urb
)
190 struct zd1201
*zd
= urb
->context
;
191 netif_wake_queue(zd
->dev
);
195 static void zd1201_usbrx(struct urb
*urb
)
197 struct zd1201
*zd
= urb
->context
;
199 unsigned char *data
= urb
->transfer_buffer
;
206 switch(urb
->status
) {
214 dev_warn(&zd
->usb
->dev
, "%s: rx urb failed: %d\n",
215 zd
->dev
->name
, urb
->status
);
220 if (urb
->status
!= 0 || urb
->actual_length
== 0)
224 if (type
== ZD1201_PACKET_EVENTSTAT
|| type
== ZD1201_PACKET_RESOURCE
) {
225 memcpy(zd
->rxdata
, data
, urb
->actual_length
);
226 zd
->rxlen
= urb
->actual_length
;
228 wake_up(&zd
->rxdataq
);
231 if (type
== ZD1201_PACKET_INQUIRE
) {
233 unsigned short infotype
, framelen
, copylen
;
234 framelen
= le16_to_cpu(*(__le16
*)&data
[4]);
235 infotype
= le16_to_cpu(*(__le16
*)&data
[6]);
237 if (infotype
== ZD1201_INF_LINKSTATUS
) {
240 linkstatus
= le16_to_cpu(*(__le16
*)&data
[8]);
243 netif_carrier_on(zd
->dev
);
246 netif_carrier_off(zd
->dev
);
249 netif_carrier_off(zd
->dev
);
252 netif_carrier_on(zd
->dev
);
255 netif_carrier_off(zd
->dev
);
259 if (infotype
== ZD1201_INF_ASSOCSTATUS
) {
260 short status
= le16_to_cpu(*(__le16
*)(data
+8));
262 union iwreq_data wrqu
;
265 case ZD1201_ASSOCSTATUS_STAASSOC
:
266 case ZD1201_ASSOCSTATUS_REASSOC
:
267 event
= IWEVREGISTERED
;
269 case ZD1201_ASSOCSTATUS_DISASSOC
:
270 case ZD1201_ASSOCSTATUS_ASSOCFAIL
:
271 case ZD1201_ASSOCSTATUS_AUTHFAIL
:
275 memcpy(wrqu
.addr
.sa_data
, data
+10, ETH_ALEN
);
276 wrqu
.addr
.sa_family
= ARPHRD_ETHER
;
278 /* Send event to user space */
279 wireless_send_event(zd
->dev
, event
, &wrqu
, NULL
);
283 if (infotype
== ZD1201_INF_AUTHREQ
) {
284 union iwreq_data wrqu
;
286 memcpy(wrqu
.addr
.sa_data
, data
+8, ETH_ALEN
);
287 wrqu
.addr
.sa_family
= ARPHRD_ETHER
;
288 /* There isn't a event that trully fits this request.
289 We assume that userspace will be smart enough to
290 see a new station being expired and sends back a
291 authstation ioctl to authorize it. */
292 wireless_send_event(zd
->dev
, IWEVEXPIRED
, &wrqu
, NULL
);
295 /* Other infotypes are handled outside this handler */
297 while (i
< urb
->actual_length
) {
298 copylen
= le16_to_cpu(*(__le16
*)&data
[i
+2]);
299 /* Sanity check, sometimes we get junk */
300 if (copylen
+zd
->rxlen
> sizeof(zd
->rxdata
))
302 memcpy(zd
->rxdata
+zd
->rxlen
, data
+i
+4, copylen
);
303 zd
->rxlen
+= copylen
;
306 if (i
>= urb
->actual_length
) {
308 wake_up(&zd
->rxdataq
);
313 if (data
[urb
->actual_length
-1] == ZD1201_PACKET_RXDATA
) {
314 int datalen
= urb
->actual_length
-1;
315 unsigned short len
, fc
, seq
;
317 len
= ntohs(*(__be16
*)&data
[datalen
-2]);
320 fc
= le16_to_cpu(*(__le16
*)&data
[datalen
-16]);
321 seq
= le16_to_cpu(*(__le16
*)&data
[datalen
-24]);
326 if (!(skb
= dev_alloc_skb(datalen
+24)))
329 memcpy(skb_put(skb
, 2), &data
[datalen
-16], 2);
330 memcpy(skb_put(skb
, 2), &data
[datalen
-2], 2);
331 memcpy(skb_put(skb
, 6), &data
[datalen
-14], 6);
332 memcpy(skb_put(skb
, 6), &data
[datalen
-22], 6);
333 memcpy(skb_put(skb
, 6), &data
[datalen
-8], 6);
334 memcpy(skb_put(skb
, 2), &data
[datalen
-24], 2);
335 memcpy(skb_put(skb
, len
), data
, len
);
336 skb
->protocol
= eth_type_trans(skb
, zd
->dev
);
337 zd
->dev
->stats
.rx_packets
++;
338 zd
->dev
->stats
.rx_bytes
+= skb
->len
;
343 if ((seq
& IEEE80211_SCTL_FRAG
) ||
344 (fc
& IEEE80211_FCTL_MOREFRAGS
)) {
345 struct zd1201_frag
*frag
= NULL
;
350 if ((seq
& IEEE80211_SCTL_FRAG
) == 0) {
351 frag
= kmalloc(sizeof(*frag
), GFP_ATOMIC
);
354 skb
= dev_alloc_skb(IEEE80211_MAX_DATA_LEN
+14+2);
360 frag
->seq
= seq
& IEEE80211_SCTL_SEQ
;
362 memcpy(skb_put(skb
, 12), &data
[datalen
-14], 12);
363 memcpy(skb_put(skb
, 2), &data
[6], 2);
364 memcpy(skb_put(skb
, len
), data
+8, len
);
365 hlist_add_head(&frag
->fnode
, &zd
->fraglist
);
368 hlist_for_each_entry(frag
, &zd
->fraglist
, fnode
)
369 if (frag
->seq
== (seq
&IEEE80211_SCTL_SEQ
))
374 ptr
= skb_put(skb
, len
);
376 memcpy(ptr
, data
+8, len
);
377 if (fc
& IEEE80211_FCTL_MOREFRAGS
)
379 hlist_del_init(&frag
->fnode
);
384 skb
= dev_alloc_skb(len
+ 14 + 2);
388 memcpy(skb_put(skb
, 12), &data
[datalen
-14], 12);
389 memcpy(skb_put(skb
, 2), &data
[6], 2);
390 memcpy(skb_put(skb
, len
), data
+8, len
);
392 skb
->protocol
= eth_type_trans(skb
, zd
->dev
);
393 zd
->dev
->stats
.rx_packets
++;
394 zd
->dev
->stats
.rx_bytes
+= skb
->len
;
398 memset(data
, 0, ZD1201_RXSIZE
);
402 if(usb_submit_urb(urb
, GFP_ATOMIC
))
409 wake_up(&zd
->rxdataq
);
410 kfree(urb
->transfer_buffer
);
414 static int zd1201_getconfig(struct zd1201
*zd
, int rid
, void *riddata
,
415 unsigned int riddatalen
)
422 unsigned char *pdata
;
425 err
= zd1201_docmd(zd
, ZD1201_CMDCODE_ACCESS
, rid
, 0, 0);
429 wait_event_interruptible(zd
->rxdataq
, zd
->rxdatas
);
433 code
= le16_to_cpu(*(__le16
*)(&zd
->rxdata
[4]));
434 rid_fid
= le16_to_cpu(*(__le16
*)(&zd
->rxdata
[6]));
435 length
= le16_to_cpu(*(__le16
*)(&zd
->rxdata
[8]));
436 if (length
> zd
->rxlen
)
437 length
= zd
->rxlen
-6;
439 /* If access bit is not on, then error */
440 if ((code
& ZD1201_ACCESSBIT
) != ZD1201_ACCESSBIT
|| rid_fid
!= rid
)
443 /* Not enough buffer for allocating data */
444 if (riddatalen
!= (length
- 4)) {
445 dev_dbg(&zd
->usb
->dev
, "riddatalen mismatches, expected=%u, (packet=%u) length=%u, rid=0x%04X, rid_fid=0x%04X\n",
446 riddatalen
, zd
->rxlen
, length
, rid
, rid_fid
);
451 /* Issue SetRxRid commnd */
452 err
= zd1201_docmd(zd
, ZD1201_CMDCODE_SETRXRID
, rid
, 0, length
);
456 /* Receive RID record from resource packets */
457 wait_event_interruptible(zd
->rxdataq
, zd
->rxdatas
);
461 if (zd
->rxdata
[zd
->rxlen
- 1] != ZD1201_PACKET_RESOURCE
) {
462 dev_dbg(&zd
->usb
->dev
, "Packet type mismatch: 0x%x not 0x3\n",
463 zd
->rxdata
[zd
->rxlen
-1]);
467 /* Set the data pointer and received data length */
474 actual_length
= (length
> 64) ? 64 : length
;
476 if (pdata
[0] != 0x3) {
477 dev_dbg(&zd
->usb
->dev
, "Rx Resource packet type error: %02X\n",
482 if (actual_length
!= 64) {
483 /* Trim the last packet type byte */
487 /* Skip the 4 bytes header (RID length and RID) */
496 memcpy(riddata
, pdata
, actual_length
);
497 riddata
+= actual_length
;
498 pdata
+= actual_length
;
501 } while (length
> 0);
514 static int zd1201_setconfig(struct zd1201
*zd
, int rid
, void *buf
, int len
, int wait
)
517 unsigned char *request
;
521 gfp_t gfp_mask
= wait
? GFP_NOIO
: GFP_ATOMIC
;
523 len
+= 4; /* first 4 are for header */
527 for (seq
=0; len
> 0; seq
++) {
528 request
= kmalloc(16, gfp_mask
);
531 urb
= usb_alloc_urb(0, gfp_mask
);
536 memset(request
, 0, 16);
537 reqlen
= len
>12 ? 12 : len
;
538 request
[0] = ZD1201_USB_RESREQ
;
542 if (request
[1] == 0) {
544 *(__le16
*)&request
[4] = cpu_to_le16((len
-2+1)/2);
545 *(__le16
*)&request
[6] = cpu_to_le16(rid
);
546 memcpy(request
+8, buf
, reqlen
-4);
549 memcpy(request
+4, buf
, reqlen
);
555 usb_fill_bulk_urb(urb
, zd
->usb
, usb_sndbulkpipe(zd
->usb
,
556 zd
->endp_out2
), request
, 16, zd1201_usbfree
, zd
);
557 err
= usb_submit_urb(urb
, gfp_mask
);
562 request
= kmalloc(16, gfp_mask
);
565 urb
= usb_alloc_urb(0, gfp_mask
);
570 *((__le32
*)request
) = cpu_to_le32(ZD1201_USB_CMDREQ
);
571 *((__le16
*)&request
[4]) =
572 cpu_to_le16(ZD1201_CMDCODE_ACCESS
|ZD1201_ACCESSBIT
);
573 *((__le16
*)&request
[6]) = cpu_to_le16(rid
);
574 *((__le16
*)&request
[8]) = cpu_to_le16(0);
575 *((__le16
*)&request
[10]) = cpu_to_le16(0);
576 usb_fill_bulk_urb(urb
, zd
->usb
, usb_sndbulkpipe(zd
->usb
, zd
->endp_out2
),
577 request
, 16, zd1201_usbfree
, zd
);
578 err
= usb_submit_urb(urb
, gfp_mask
);
583 wait_event_interruptible(zd
->rxdataq
, zd
->rxdatas
);
584 if (!zd
->rxlen
|| le16_to_cpu(*(__le16
*)&zd
->rxdata
[6]) != rid
) {
585 dev_dbg(&zd
->usb
->dev
, "wrong or no RID received\n");
596 static inline int zd1201_getconfig16(struct zd1201
*zd
, int rid
, short *val
)
601 err
= zd1201_getconfig(zd
, rid
, &zdval
, sizeof(__le16
));
604 *val
= le16_to_cpu(zdval
);
608 static inline int zd1201_setconfig16(struct zd1201
*zd
, int rid
, short val
)
610 __le16 zdval
= cpu_to_le16(val
);
611 return (zd1201_setconfig(zd
, rid
, &zdval
, sizeof(__le16
), 1));
614 static int zd1201_drvr_start(struct zd1201
*zd
)
619 unsigned char *buffer
;
621 buffer
= kzalloc(ZD1201_RXSIZE
, GFP_KERNEL
);
625 usb_fill_bulk_urb(zd
->rx_urb
, zd
->usb
,
626 usb_rcvbulkpipe(zd
->usb
, zd
->endp_in
), buffer
, ZD1201_RXSIZE
,
629 err
= usb_submit_urb(zd
->rx_urb
, GFP_KERNEL
);
633 err
= zd1201_docmd(zd
, ZD1201_CMDCODE_INIT
, 0, 0, 0);
637 err
= zd1201_getconfig(zd
, ZD1201_RID_CNFMAXTXBUFFERNUMBER
, &zdmax
,
642 max
= le16_to_cpu(zdmax
);
643 for (i
=0; i
<max
; i
++) {
644 err
= zd1201_docmd(zd
, ZD1201_CMDCODE_ALLOC
, 1514, 0, 0);
652 usb_kill_urb(zd
->rx_urb
);
659 /* Magic alert: The firmware doesn't seem to like the MAC state being
660 * toggled in promisc (aka monitor) mode.
661 * (It works a number of times, but will halt eventually)
662 * So we turn it of before disabling and on after enabling if needed.
664 static int zd1201_enable(struct zd1201
*zd
)
671 err
= zd1201_docmd(zd
, ZD1201_CMDCODE_ENABLE
, 0, 0, 0);
676 err
= zd1201_setconfig16(zd
, ZD1201_RID_PROMISCUOUSMODE
, 1);
681 static int zd1201_disable(struct zd1201
*zd
)
685 if (!zd
->mac_enabled
)
688 err
= zd1201_setconfig16(zd
, ZD1201_RID_PROMISCUOUSMODE
, 0);
693 err
= zd1201_docmd(zd
, ZD1201_CMDCODE_DISABLE
, 0, 0, 0);
699 static int zd1201_mac_reset(struct zd1201
*zd
)
701 if (!zd
->mac_enabled
)
704 return zd1201_enable(zd
);
707 static int zd1201_join(struct zd1201
*zd
, char *essid
, int essidlen
)
710 char buf
[IW_ESSID_MAX_SIZE
+2];
712 err
= zd1201_disable(zd
);
716 val
= ZD1201_CNFAUTHENTICATION_OPENSYSTEM
;
717 val
|= ZD1201_CNFAUTHENTICATION_SHAREDKEY
;
718 err
= zd1201_setconfig16(zd
, ZD1201_RID_CNFAUTHENTICATION
, val
);
722 *(__le16
*)buf
= cpu_to_le16(essidlen
);
723 memcpy(buf
+2, essid
, essidlen
);
724 if (!zd
->ap
) { /* Normal station */
725 err
= zd1201_setconfig(zd
, ZD1201_RID_CNFDESIREDSSID
, buf
,
726 IW_ESSID_MAX_SIZE
+2, 1);
730 err
= zd1201_setconfig(zd
, ZD1201_RID_CNFOWNSSID
, buf
,
731 IW_ESSID_MAX_SIZE
+2, 1);
736 err
= zd1201_setconfig(zd
, ZD1201_RID_CNFOWNMACADDR
,
737 zd
->dev
->dev_addr
, zd
->dev
->addr_len
, 1);
741 err
= zd1201_enable(zd
);
749 static int zd1201_net_open(struct net_device
*dev
)
751 struct zd1201
*zd
= netdev_priv(dev
);
753 /* Start MAC with wildcard if no essid set */
754 if (!zd
->mac_enabled
)
755 zd1201_join(zd
, zd
->essid
, zd
->essidlen
);
756 netif_start_queue(dev
);
761 static int zd1201_net_stop(struct net_device
*dev
)
763 netif_stop_queue(dev
);
768 RFC 1042 encapsulates Ethernet frames in 802.11 frames
769 by prefixing them with 0xaa, 0xaa, 0x03) followed by a SNAP OID of 0
770 (0x00, 0x00, 0x00). Zd requires an additional padding, copy
771 of ethernet addresses, length of the standard RFC 1042 packet
772 and a command byte (which is nul for tx).
774 tx frame (from Wlan NG):
776 llc 0xAA 0xAA 0x03 (802.2 LLC)
777 snap 0x00 0x00 0x00 (Ethernet encapsulated)
778 type 2 bytes, Ethernet type field
779 payload (minus eth header)
781 padding 1B if (skb->len+8+1)%64==0
782 Eth MAC addr 12 bytes, Ethernet MAC addresses
783 length 2 bytes, RFC 1042 packet length
784 (llc+snap+type+payload)
785 zd 1 null byte, zd1201 packet type
787 static netdev_tx_t
zd1201_hard_start_xmit(struct sk_buff
*skb
,
788 struct net_device
*dev
)
790 struct zd1201
*zd
= netdev_priv(dev
);
791 unsigned char *txbuf
= zd
->txdata
;
792 int txbuflen
, pad
= 0, err
;
793 struct urb
*urb
= zd
->tx_urb
;
795 if (!zd
->mac_enabled
|| zd
->monitor
) {
796 dev
->stats
.tx_dropped
++;
800 netif_stop_queue(dev
);
802 txbuflen
= skb
->len
+ 8 + 1;
803 if (txbuflen
%64 == 0) {
810 txbuf
[3] = 0x00; /* rfc1042 */
814 skb_copy_from_linear_data_offset(skb
, 12, txbuf
+ 6, skb
->len
- 12);
816 txbuf
[skb
->len
-12+6]=0;
817 skb_copy_from_linear_data(skb
, txbuf
+ skb
->len
- 12 + 6 + pad
, 12);
818 *(__be16
*)&txbuf
[skb
->len
+6+pad
] = htons(skb
->len
-12+6);
819 txbuf
[txbuflen
-1] = 0;
821 usb_fill_bulk_urb(urb
, zd
->usb
, usb_sndbulkpipe(zd
->usb
, zd
->endp_out
),
822 txbuf
, txbuflen
, zd1201_usbtx
, zd
);
824 err
= usb_submit_urb(zd
->tx_urb
, GFP_ATOMIC
);
826 dev
->stats
.tx_errors
++;
827 netif_start_queue(dev
);
829 dev
->stats
.tx_packets
++;
830 dev
->stats
.tx_bytes
+= skb
->len
;
837 static void zd1201_tx_timeout(struct net_device
*dev
)
839 struct zd1201
*zd
= netdev_priv(dev
);
843 dev_warn(&zd
->usb
->dev
, "%s: TX timeout, shooting down urb\n",
845 usb_unlink_urb(zd
->tx_urb
);
846 dev
->stats
.tx_errors
++;
847 /* Restart the timeout to quiet the watchdog: */
848 dev
->trans_start
= jiffies
; /* prevent tx timeout */
851 static int zd1201_set_mac_address(struct net_device
*dev
, void *p
)
853 struct sockaddr
*addr
= p
;
854 struct zd1201
*zd
= netdev_priv(dev
);
860 err
= zd1201_setconfig(zd
, ZD1201_RID_CNFOWNMACADDR
,
861 addr
->sa_data
, dev
->addr_len
, 1);
864 memcpy(dev
->dev_addr
, addr
->sa_data
, dev
->addr_len
);
866 return zd1201_mac_reset(zd
);
869 static struct iw_statistics
*zd1201_get_wireless_stats(struct net_device
*dev
)
871 struct zd1201
*zd
= netdev_priv(dev
);
876 static void zd1201_set_multicast(struct net_device
*dev
)
878 struct zd1201
*zd
= netdev_priv(dev
);
879 struct netdev_hw_addr
*ha
;
880 unsigned char reqbuf
[ETH_ALEN
*ZD1201_MAXMULTI
];
883 if (netdev_mc_count(dev
) > ZD1201_MAXMULTI
)
887 netdev_for_each_mc_addr(ha
, dev
)
888 memcpy(reqbuf
+ i
++ * ETH_ALEN
, ha
->addr
, ETH_ALEN
);
889 zd1201_setconfig(zd
, ZD1201_RID_CNFGROUPADDRESS
, reqbuf
,
890 netdev_mc_count(dev
) * ETH_ALEN
, 0);
893 static int zd1201_config_commit(struct net_device
*dev
,
894 struct iw_request_info
*info
, struct iw_point
*data
, char *essid
)
896 struct zd1201
*zd
= netdev_priv(dev
);
898 return zd1201_mac_reset(zd
);
901 static int zd1201_get_name(struct net_device
*dev
,
902 struct iw_request_info
*info
, char *name
, char *extra
)
904 strcpy(name
, "IEEE 802.11b");
908 static int zd1201_set_freq(struct net_device
*dev
,
909 struct iw_request_info
*info
, struct iw_freq
*freq
, char *extra
)
911 struct zd1201
*zd
= netdev_priv(dev
);
918 channel
= ieee80211_freq_to_dsss_chan(freq
->m
);
923 err
= zd1201_setconfig16(zd
, ZD1201_RID_CNFOWNCHANNEL
, channel
);
927 zd1201_mac_reset(zd
);
932 static int zd1201_get_freq(struct net_device
*dev
,
933 struct iw_request_info
*info
, struct iw_freq
*freq
, char *extra
)
935 struct zd1201
*zd
= netdev_priv(dev
);
939 err
= zd1201_getconfig16(zd
, ZD1201_RID_CNFOWNCHANNEL
, &channel
);
948 static int zd1201_set_mode(struct net_device
*dev
,
949 struct iw_request_info
*info
, __u32
*mode
, char *extra
)
951 struct zd1201
*zd
= netdev_priv(dev
);
952 short porttype
, monitor
= 0;
953 unsigned char buffer
[IW_ESSID_MAX_SIZE
+2];
957 if (*mode
!= IW_MODE_MASTER
)
962 err
= zd1201_setconfig16(zd
, ZD1201_RID_PROMISCUOUSMODE
, 0);
965 zd
->dev
->type
= ARPHRD_ETHER
;
967 case IW_MODE_MONITOR
:
969 zd
->dev
->type
= ARPHRD_IEEE80211
;
970 /* Make sure we are no longer associated with by
971 setting an 'impossible' essid.
972 (otherwise we mess up firmware)
974 zd1201_join(zd
, "\0-*#\0", 5);
975 /* Put port in pIBSS */
976 case 8: /* No pseudo-IBSS in wireless extensions (yet) */
977 porttype
= ZD1201_PORTTYPE_PSEUDOIBSS
;
980 porttype
= ZD1201_PORTTYPE_IBSS
;
983 porttype
= ZD1201_PORTTYPE_BSS
;
989 err
= zd1201_setconfig16(zd
, ZD1201_RID_CNFPORTTYPE
, porttype
);
992 if (zd
->monitor
&& !monitor
) {
994 *(__le16
*)buffer
= cpu_to_le16(zd
->essidlen
);
995 memcpy(buffer
+2, zd
->essid
, zd
->essidlen
);
996 err
= zd1201_setconfig(zd
, ZD1201_RID_CNFDESIREDSSID
,
997 buffer
, IW_ESSID_MAX_SIZE
+2, 1);
1001 zd
->monitor
= monitor
;
1002 /* If monitor mode is set we don't actually turn it on here since it
1003 * is done during mac reset anyway (see zd1201_mac_enable).
1005 zd1201_mac_reset(zd
);
1010 static int zd1201_get_mode(struct net_device
*dev
,
1011 struct iw_request_info
*info
, __u32
*mode
, char *extra
)
1013 struct zd1201
*zd
= netdev_priv(dev
);
1017 err
= zd1201_getconfig16(zd
, ZD1201_RID_CNFPORTTYPE
, &porttype
);
1021 case ZD1201_PORTTYPE_IBSS
:
1022 *mode
= IW_MODE_ADHOC
;
1024 case ZD1201_PORTTYPE_BSS
:
1025 *mode
= IW_MODE_INFRA
;
1027 case ZD1201_PORTTYPE_WDS
:
1028 *mode
= IW_MODE_REPEAT
;
1030 case ZD1201_PORTTYPE_PSEUDOIBSS
:
1031 *mode
= 8;/* No Pseudo-IBSS... */
1033 case ZD1201_PORTTYPE_AP
:
1034 *mode
= IW_MODE_MASTER
;
1037 dev_dbg(&zd
->usb
->dev
, "Unknown porttype: %d\n",
1039 *mode
= IW_MODE_AUTO
;
1042 *mode
= IW_MODE_MONITOR
;
1047 static int zd1201_get_range(struct net_device
*dev
,
1048 struct iw_request_info
*info
, struct iw_point
*wrq
, char *extra
)
1050 struct iw_range
*range
= (struct iw_range
*)extra
;
1052 wrq
->length
= sizeof(struct iw_range
);
1053 memset(range
, 0, sizeof(struct iw_range
));
1054 range
->we_version_compiled
= WIRELESS_EXT
;
1055 range
->we_version_source
= WIRELESS_EXT
;
1057 range
->max_qual
.qual
= 128;
1058 range
->max_qual
.level
= 128;
1059 range
->max_qual
.noise
= 128;
1060 range
->max_qual
.updated
= 7;
1062 range
->encoding_size
[0] = 5;
1063 range
->encoding_size
[1] = 13;
1064 range
->num_encoding_sizes
= 2;
1065 range
->max_encoding_tokens
= ZD1201_NUMKEYS
;
1067 range
->num_bitrates
= 4;
1068 range
->bitrate
[0] = 1000000;
1069 range
->bitrate
[1] = 2000000;
1070 range
->bitrate
[2] = 5500000;
1071 range
->bitrate
[3] = 11000000;
1074 range
->min_frag
= ZD1201_FRAGMIN
;
1075 range
->max_rts
= ZD1201_RTSMAX
;
1076 range
->min_frag
= ZD1201_FRAGMAX
;
1081 /* Little bit of magic here: we only get the quality if we poll
1082 * for it, and we never get an actual request to trigger such
1083 * a poll. Therefore we 'assume' that the user will soon ask for
1084 * the stats after asking the bssid.
1086 static int zd1201_get_wap(struct net_device
*dev
,
1087 struct iw_request_info
*info
, struct sockaddr
*ap_addr
, char *extra
)
1089 struct zd1201
*zd
= netdev_priv(dev
);
1090 unsigned char buffer
[6];
1092 if (!zd1201_getconfig(zd
, ZD1201_RID_COMMSQUALITY
, buffer
, 6)) {
1093 /* Unfortunately the quality and noise reported is useless.
1094 they seem to be accumulators that increase until you
1095 read them, unless we poll on a fixed interval we can't
1098 /*zd->iwstats.qual.qual = le16_to_cpu(((__le16 *)buffer)[0]);*/
1099 zd
->iwstats
.qual
.level
= le16_to_cpu(((__le16
*)buffer
)[1]);
1100 /*zd->iwstats.qual.noise = le16_to_cpu(((__le16 *)buffer)[2]);*/
1101 zd
->iwstats
.qual
.updated
= 2;
1104 return zd1201_getconfig(zd
, ZD1201_RID_CURRENTBSSID
, ap_addr
->sa_data
, 6);
1107 static int zd1201_set_scan(struct net_device
*dev
,
1108 struct iw_request_info
*info
, struct iw_point
*srq
, char *extra
)
1110 /* We do everything in get_scan */
1114 static int zd1201_get_scan(struct net_device
*dev
,
1115 struct iw_request_info
*info
, struct iw_point
*srq
, char *extra
)
1117 struct zd1201
*zd
= netdev_priv(dev
);
1118 int err
, i
, j
, enabled_save
;
1119 struct iw_event iwe
;
1121 char *end_buf
= extra
+ IW_SCAN_MAX_DATA
;
1123 /* No scanning in AP mode */
1127 /* Scan doesn't seem to work if disabled */
1128 enabled_save
= zd
->mac_enabled
;
1132 err
= zd1201_docmd(zd
, ZD1201_CMDCODE_INQUIRE
,
1133 ZD1201_INQ_SCANRESULTS
, 0, 0);
1137 wait_event_interruptible(zd
->rxdataq
, zd
->rxdatas
);
1141 if (le16_to_cpu(*(__le16
*)&zd
->rxdata
[2]) != ZD1201_INQ_SCANRESULTS
)
1144 for(i
=8; i
<zd
->rxlen
; i
+=62) {
1145 iwe
.cmd
= SIOCGIWAP
;
1146 iwe
.u
.ap_addr
.sa_family
= ARPHRD_ETHER
;
1147 memcpy(iwe
.u
.ap_addr
.sa_data
, zd
->rxdata
+i
+6, 6);
1148 cev
= iwe_stream_add_event(info
, cev
, end_buf
,
1149 &iwe
, IW_EV_ADDR_LEN
);
1151 iwe
.cmd
= SIOCGIWESSID
;
1152 iwe
.u
.data
.length
= zd
->rxdata
[i
+16];
1153 iwe
.u
.data
.flags
= 1;
1154 cev
= iwe_stream_add_point(info
, cev
, end_buf
,
1155 &iwe
, zd
->rxdata
+i
+18);
1157 iwe
.cmd
= SIOCGIWMODE
;
1158 if (zd
->rxdata
[i
+14]&0x01)
1159 iwe
.u
.mode
= IW_MODE_MASTER
;
1161 iwe
.u
.mode
= IW_MODE_ADHOC
;
1162 cev
= iwe_stream_add_event(info
, cev
, end_buf
,
1163 &iwe
, IW_EV_UINT_LEN
);
1165 iwe
.cmd
= SIOCGIWFREQ
;
1166 iwe
.u
.freq
.m
= zd
->rxdata
[i
+0];
1168 cev
= iwe_stream_add_event(info
, cev
, end_buf
,
1169 &iwe
, IW_EV_FREQ_LEN
);
1171 iwe
.cmd
= SIOCGIWRATE
;
1172 iwe
.u
.bitrate
.fixed
= 0;
1173 iwe
.u
.bitrate
.disabled
= 0;
1174 for (j
=0; j
<10; j
++) if (zd
->rxdata
[i
+50+j
]) {
1175 iwe
.u
.bitrate
.value
= (zd
->rxdata
[i
+50+j
]&0x7f)*500000;
1176 cev
= iwe_stream_add_event(info
, cev
, end_buf
,
1177 &iwe
, IW_EV_PARAM_LEN
);
1180 iwe
.cmd
= SIOCGIWENCODE
;
1181 iwe
.u
.data
.length
= 0;
1182 if (zd
->rxdata
[i
+14]&0x10)
1183 iwe
.u
.data
.flags
= IW_ENCODE_ENABLED
;
1185 iwe
.u
.data
.flags
= IW_ENCODE_DISABLED
;
1186 cev
= iwe_stream_add_point(info
, cev
, end_buf
, &iwe
, NULL
);
1189 iwe
.u
.qual
.qual
= zd
->rxdata
[i
+4];
1190 iwe
.u
.qual
.noise
= zd
->rxdata
[i
+2]/10-100;
1191 iwe
.u
.qual
.level
= (256+zd
->rxdata
[i
+4]*100)/255-100;
1192 iwe
.u
.qual
.updated
= 7;
1193 cev
= iwe_stream_add_event(info
, cev
, end_buf
,
1194 &iwe
, IW_EV_QUAL_LEN
);
1200 srq
->length
= cev
- extra
;
1206 static int zd1201_set_essid(struct net_device
*dev
,
1207 struct iw_request_info
*info
, struct iw_point
*data
, char *essid
)
1209 struct zd1201
*zd
= netdev_priv(dev
);
1211 if (data
->length
> IW_ESSID_MAX_SIZE
)
1213 if (data
->length
< 1)
1215 zd
->essidlen
= data
->length
;
1216 memset(zd
->essid
, 0, IW_ESSID_MAX_SIZE
+1);
1217 memcpy(zd
->essid
, essid
, data
->length
);
1218 return zd1201_join(zd
, zd
->essid
, zd
->essidlen
);
1221 static int zd1201_get_essid(struct net_device
*dev
,
1222 struct iw_request_info
*info
, struct iw_point
*data
, char *essid
)
1224 struct zd1201
*zd
= netdev_priv(dev
);
1226 memcpy(essid
, zd
->essid
, zd
->essidlen
);
1228 data
->length
= zd
->essidlen
;
1233 static int zd1201_get_nick(struct net_device
*dev
, struct iw_request_info
*info
,
1234 struct iw_point
*data
, char *nick
)
1236 strcpy(nick
, "zd1201");
1238 data
->length
= strlen(nick
);
1242 static int zd1201_set_rate(struct net_device
*dev
,
1243 struct iw_request_info
*info
, struct iw_param
*rrq
, char *extra
)
1245 struct zd1201
*zd
= netdev_priv(dev
);
1249 switch (rrq
->value
) {
1251 rate
= ZD1201_RATEB1
;
1254 rate
= ZD1201_RATEB2
;
1257 rate
= ZD1201_RATEB5
;
1261 rate
= ZD1201_RATEB11
;
1264 if (!rrq
->fixed
) { /* Also enable all lower bitrates */
1268 err
= zd1201_setconfig16(zd
, ZD1201_RID_TXRATECNTL
, rate
);
1272 return zd1201_mac_reset(zd
);
1275 static int zd1201_get_rate(struct net_device
*dev
,
1276 struct iw_request_info
*info
, struct iw_param
*rrq
, char *extra
)
1278 struct zd1201
*zd
= netdev_priv(dev
);
1282 err
= zd1201_getconfig16(zd
, ZD1201_RID_CURRENTTXRATE
, &rate
);
1288 rrq
->value
= 1000000;
1291 rrq
->value
= 2000000;
1294 rrq
->value
= 5500000;
1297 rrq
->value
= 11000000;
1308 static int zd1201_set_rts(struct net_device
*dev
, struct iw_request_info
*info
,
1309 struct iw_param
*rts
, char *extra
)
1311 struct zd1201
*zd
= netdev_priv(dev
);
1313 short val
= rts
->value
;
1315 if (rts
->disabled
|| !rts
->fixed
)
1316 val
= ZD1201_RTSMAX
;
1317 if (val
> ZD1201_RTSMAX
)
1322 err
= zd1201_setconfig16(zd
, ZD1201_RID_CNFRTSTHRESHOLD
, val
);
1325 return zd1201_mac_reset(zd
);
1328 static int zd1201_get_rts(struct net_device
*dev
, struct iw_request_info
*info
,
1329 struct iw_param
*rts
, char *extra
)
1331 struct zd1201
*zd
= netdev_priv(dev
);
1335 err
= zd1201_getconfig16(zd
, ZD1201_RID_CNFRTSTHRESHOLD
, &rtst
);
1339 rts
->disabled
= (rts
->value
== ZD1201_RTSMAX
);
1345 static int zd1201_set_frag(struct net_device
*dev
, struct iw_request_info
*info
,
1346 struct iw_param
*frag
, char *extra
)
1348 struct zd1201
*zd
= netdev_priv(dev
);
1350 short val
= frag
->value
;
1352 if (frag
->disabled
|| !frag
->fixed
)
1353 val
= ZD1201_FRAGMAX
;
1354 if (val
> ZD1201_FRAGMAX
)
1356 if (val
< ZD1201_FRAGMIN
)
1360 err
= zd1201_setconfig16(zd
, ZD1201_RID_CNFFRAGTHRESHOLD
, val
);
1363 return zd1201_mac_reset(zd
);
1366 static int zd1201_get_frag(struct net_device
*dev
, struct iw_request_info
*info
,
1367 struct iw_param
*frag
, char *extra
)
1369 struct zd1201
*zd
= netdev_priv(dev
);
1373 err
= zd1201_getconfig16(zd
, ZD1201_RID_CNFFRAGTHRESHOLD
, &fragt
);
1376 frag
->value
= fragt
;
1377 frag
->disabled
= (frag
->value
== ZD1201_FRAGMAX
);
1383 static int zd1201_set_retry(struct net_device
*dev
,
1384 struct iw_request_info
*info
, struct iw_param
*rrq
, char *extra
)
1389 static int zd1201_get_retry(struct net_device
*dev
,
1390 struct iw_request_info
*info
, struct iw_param
*rrq
, char *extra
)
1395 static int zd1201_set_encode(struct net_device
*dev
,
1396 struct iw_request_info
*info
, struct iw_point
*erq
, char *key
)
1398 struct zd1201
*zd
= netdev_priv(dev
);
1402 if (erq
->length
> ZD1201_MAXKEYLEN
)
1405 i
= (erq
->flags
& IW_ENCODE_INDEX
)-1;
1407 err
= zd1201_getconfig16(zd
,ZD1201_RID_CNFDEFAULTKEYID
,&i
);
1411 err
= zd1201_setconfig16(zd
, ZD1201_RID_CNFDEFAULTKEYID
, i
);
1416 if (i
< 0 || i
>= ZD1201_NUMKEYS
)
1419 rid
= ZD1201_RID_CNFDEFAULTKEY0
+ i
;
1420 err
= zd1201_setconfig(zd
, rid
, key
, erq
->length
, 1);
1423 zd
->encode_keylen
[i
] = erq
->length
;
1424 memcpy(zd
->encode_keys
[i
], key
, erq
->length
);
1427 if (!(erq
->flags
& IW_ENCODE_DISABLED
& IW_ENCODE_MODE
)) {
1429 zd
->encode_enabled
= 1;
1431 zd
->encode_enabled
= 0;
1432 if (erq
->flags
& IW_ENCODE_RESTRICTED
& IW_ENCODE_MODE
) {
1434 zd
->encode_restricted
= 1;
1436 zd
->encode_restricted
= 0;
1437 err
= zd1201_setconfig16(zd
, ZD1201_RID_CNFWEBFLAGS
, i
);
1441 if (zd
->encode_enabled
)
1442 i
= ZD1201_CNFAUTHENTICATION_SHAREDKEY
;
1444 i
= ZD1201_CNFAUTHENTICATION_OPENSYSTEM
;
1445 err
= zd1201_setconfig16(zd
, ZD1201_RID_CNFAUTHENTICATION
, i
);
1449 return zd1201_mac_reset(zd
);
1452 static int zd1201_get_encode(struct net_device
*dev
,
1453 struct iw_request_info
*info
, struct iw_point
*erq
, char *key
)
1455 struct zd1201
*zd
= netdev_priv(dev
);
1459 if (zd
->encode_enabled
)
1460 erq
->flags
= IW_ENCODE_ENABLED
;
1462 erq
->flags
= IW_ENCODE_DISABLED
;
1463 if (zd
->encode_restricted
)
1464 erq
->flags
|= IW_ENCODE_RESTRICTED
;
1466 erq
->flags
|= IW_ENCODE_OPEN
;
1468 i
= (erq
->flags
& IW_ENCODE_INDEX
) -1;
1470 err
= zd1201_getconfig16(zd
, ZD1201_RID_CNFDEFAULTKEYID
, &i
);
1474 if (i
<0 || i
>= ZD1201_NUMKEYS
)
1479 erq
->length
= zd
->encode_keylen
[i
];
1480 memcpy(key
, zd
->encode_keys
[i
], erq
->length
);
1485 static int zd1201_set_power(struct net_device
*dev
,
1486 struct iw_request_info
*info
, struct iw_param
*vwrq
, char *extra
)
1488 struct zd1201
*zd
= netdev_priv(dev
);
1489 short enabled
, duration
, level
;
1492 enabled
= vwrq
->disabled
? 0 : 1;
1494 if (vwrq
->flags
& IW_POWER_PERIOD
) {
1495 duration
= vwrq
->value
;
1496 err
= zd1201_setconfig16(zd
,
1497 ZD1201_RID_CNFMAXSLEEPDURATION
, duration
);
1502 if (vwrq
->flags
& IW_POWER_TIMEOUT
) {
1503 err
= zd1201_getconfig16(zd
,
1504 ZD1201_RID_CNFMAXSLEEPDURATION
, &duration
);
1507 level
= vwrq
->value
* 4 / duration
;
1512 err
= zd1201_setconfig16(zd
, ZD1201_RID_CNFPMEPS
,
1521 return zd1201_setconfig16(zd
, ZD1201_RID_CNFPMENABLED
, enabled
);
1524 static int zd1201_get_power(struct net_device
*dev
,
1525 struct iw_request_info
*info
, struct iw_param
*vwrq
, char *extra
)
1527 struct zd1201
*zd
= netdev_priv(dev
);
1528 short enabled
, level
, duration
;
1531 err
= zd1201_getconfig16(zd
, ZD1201_RID_CNFPMENABLED
, &enabled
);
1534 err
= zd1201_getconfig16(zd
, ZD1201_RID_CNFPMEPS
, &level
);
1537 err
= zd1201_getconfig16(zd
, ZD1201_RID_CNFMAXSLEEPDURATION
, &duration
);
1540 vwrq
->disabled
= enabled
? 0 : 1;
1541 if (vwrq
->flags
& IW_POWER_TYPE
) {
1542 if (vwrq
->flags
& IW_POWER_PERIOD
) {
1543 vwrq
->value
= duration
;
1544 vwrq
->flags
= IW_POWER_PERIOD
;
1546 vwrq
->value
= duration
* level
/ 4;
1547 vwrq
->flags
= IW_POWER_TIMEOUT
;
1550 if (vwrq
->flags
& IW_POWER_MODE
) {
1551 if (enabled
&& level
)
1552 vwrq
->flags
= IW_POWER_UNICAST_R
;
1554 vwrq
->flags
= IW_POWER_ALL_R
;
1561 static const iw_handler zd1201_iw_handler
[] =
1563 (iw_handler
) zd1201_config_commit
, /* SIOCSIWCOMMIT */
1564 (iw_handler
) zd1201_get_name
, /* SIOCGIWNAME */
1565 (iw_handler
) NULL
, /* SIOCSIWNWID */
1566 (iw_handler
) NULL
, /* SIOCGIWNWID */
1567 (iw_handler
) zd1201_set_freq
, /* SIOCSIWFREQ */
1568 (iw_handler
) zd1201_get_freq
, /* SIOCGIWFREQ */
1569 (iw_handler
) zd1201_set_mode
, /* SIOCSIWMODE */
1570 (iw_handler
) zd1201_get_mode
, /* SIOCGIWMODE */
1571 (iw_handler
) NULL
, /* SIOCSIWSENS */
1572 (iw_handler
) NULL
, /* SIOCGIWSENS */
1573 (iw_handler
) NULL
, /* SIOCSIWRANGE */
1574 (iw_handler
) zd1201_get_range
, /* SIOCGIWRANGE */
1575 (iw_handler
) NULL
, /* SIOCSIWPRIV */
1576 (iw_handler
) NULL
, /* SIOCGIWPRIV */
1577 (iw_handler
) NULL
, /* SIOCSIWSTATS */
1578 (iw_handler
) NULL
, /* SIOCGIWSTATS */
1579 (iw_handler
) NULL
, /* SIOCSIWSPY */
1580 (iw_handler
) NULL
, /* SIOCGIWSPY */
1581 (iw_handler
) NULL
, /* -- hole -- */
1582 (iw_handler
) NULL
, /* -- hole -- */
1583 (iw_handler
) NULL
/*zd1201_set_wap*/, /* SIOCSIWAP */
1584 (iw_handler
) zd1201_get_wap
, /* SIOCGIWAP */
1585 (iw_handler
) NULL
, /* -- hole -- */
1586 (iw_handler
) NULL
, /* SIOCGIWAPLIST */
1587 (iw_handler
) zd1201_set_scan
, /* SIOCSIWSCAN */
1588 (iw_handler
) zd1201_get_scan
, /* SIOCGIWSCAN */
1589 (iw_handler
) zd1201_set_essid
, /* SIOCSIWESSID */
1590 (iw_handler
) zd1201_get_essid
, /* SIOCGIWESSID */
1591 (iw_handler
) NULL
, /* SIOCSIWNICKN */
1592 (iw_handler
) zd1201_get_nick
, /* SIOCGIWNICKN */
1593 (iw_handler
) NULL
, /* -- hole -- */
1594 (iw_handler
) NULL
, /* -- hole -- */
1595 (iw_handler
) zd1201_set_rate
, /* SIOCSIWRATE */
1596 (iw_handler
) zd1201_get_rate
, /* SIOCGIWRATE */
1597 (iw_handler
) zd1201_set_rts
, /* SIOCSIWRTS */
1598 (iw_handler
) zd1201_get_rts
, /* SIOCGIWRTS */
1599 (iw_handler
) zd1201_set_frag
, /* SIOCSIWFRAG */
1600 (iw_handler
) zd1201_get_frag
, /* SIOCGIWFRAG */
1601 (iw_handler
) NULL
, /* SIOCSIWTXPOW */
1602 (iw_handler
) NULL
, /* SIOCGIWTXPOW */
1603 (iw_handler
) zd1201_set_retry
, /* SIOCSIWRETRY */
1604 (iw_handler
) zd1201_get_retry
, /* SIOCGIWRETRY */
1605 (iw_handler
) zd1201_set_encode
, /* SIOCSIWENCODE */
1606 (iw_handler
) zd1201_get_encode
, /* SIOCGIWENCODE */
1607 (iw_handler
) zd1201_set_power
, /* SIOCSIWPOWER */
1608 (iw_handler
) zd1201_get_power
, /* SIOCGIWPOWER */
1611 static int zd1201_set_hostauth(struct net_device
*dev
,
1612 struct iw_request_info
*info
, struct iw_param
*rrq
, char *extra
)
1614 struct zd1201
*zd
= netdev_priv(dev
);
1619 return zd1201_setconfig16(zd
, ZD1201_RID_CNFHOSTAUTH
, rrq
->value
);
1622 static int zd1201_get_hostauth(struct net_device
*dev
,
1623 struct iw_request_info
*info
, struct iw_param
*rrq
, char *extra
)
1625 struct zd1201
*zd
= netdev_priv(dev
);
1632 err
= zd1201_getconfig16(zd
, ZD1201_RID_CNFHOSTAUTH
, &hostauth
);
1635 rrq
->value
= hostauth
;
1641 static int zd1201_auth_sta(struct net_device
*dev
,
1642 struct iw_request_info
*info
, struct sockaddr
*sta
, char *extra
)
1644 struct zd1201
*zd
= netdev_priv(dev
);
1645 unsigned char buffer
[10];
1650 memcpy(buffer
, sta
->sa_data
, ETH_ALEN
);
1651 *(short*)(buffer
+6) = 0; /* 0==success, 1==failure */
1652 *(short*)(buffer
+8) = 0;
1654 return zd1201_setconfig(zd
, ZD1201_RID_AUTHENTICATESTA
, buffer
, 10, 1);
1657 static int zd1201_set_maxassoc(struct net_device
*dev
,
1658 struct iw_request_info
*info
, struct iw_param
*rrq
, char *extra
)
1660 struct zd1201
*zd
= netdev_priv(dev
);
1666 err
= zd1201_setconfig16(zd
, ZD1201_RID_CNFMAXASSOCSTATIONS
, rrq
->value
);
1672 static int zd1201_get_maxassoc(struct net_device
*dev
,
1673 struct iw_request_info
*info
, struct iw_param
*rrq
, char *extra
)
1675 struct zd1201
*zd
= netdev_priv(dev
);
1682 err
= zd1201_getconfig16(zd
, ZD1201_RID_CNFMAXASSOCSTATIONS
, &maxassoc
);
1685 rrq
->value
= maxassoc
;
1691 static const iw_handler zd1201_private_handler
[] = {
1692 (iw_handler
) zd1201_set_hostauth
, /* ZD1201SIWHOSTAUTH */
1693 (iw_handler
) zd1201_get_hostauth
, /* ZD1201GIWHOSTAUTH */
1694 (iw_handler
) zd1201_auth_sta
, /* ZD1201SIWAUTHSTA */
1695 (iw_handler
) NULL
, /* nothing to get */
1696 (iw_handler
) zd1201_set_maxassoc
, /* ZD1201SIMAXASSOC */
1697 (iw_handler
) zd1201_get_maxassoc
, /* ZD1201GIMAXASSOC */
1700 static const struct iw_priv_args zd1201_private_args
[] = {
1701 { ZD1201SIWHOSTAUTH
, IW_PRIV_TYPE_INT
| IW_PRIV_SIZE_FIXED
| 1,
1702 IW_PRIV_TYPE_NONE
, "sethostauth" },
1703 { ZD1201GIWHOSTAUTH
, IW_PRIV_TYPE_NONE
,
1704 IW_PRIV_TYPE_INT
| IW_PRIV_SIZE_FIXED
| 1, "gethostauth" },
1705 { ZD1201SIWAUTHSTA
, IW_PRIV_TYPE_ADDR
| IW_PRIV_SIZE_FIXED
| 1,
1706 IW_PRIV_TYPE_NONE
, "authstation" },
1707 { ZD1201SIWMAXASSOC
, IW_PRIV_TYPE_INT
| IW_PRIV_SIZE_FIXED
| 1,
1708 IW_PRIV_TYPE_NONE
, "setmaxassoc" },
1709 { ZD1201GIWMAXASSOC
, IW_PRIV_TYPE_NONE
,
1710 IW_PRIV_TYPE_INT
| IW_PRIV_SIZE_FIXED
| 1, "getmaxassoc" },
1713 static const struct iw_handler_def zd1201_iw_handlers
= {
1714 .num_standard
= ARRAY_SIZE(zd1201_iw_handler
),
1715 .num_private
= ARRAY_SIZE(zd1201_private_handler
),
1716 .num_private_args
= ARRAY_SIZE(zd1201_private_args
),
1717 .standard
= (iw_handler
*)zd1201_iw_handler
,
1718 .private = (iw_handler
*)zd1201_private_handler
,
1719 .private_args
= (struct iw_priv_args
*) zd1201_private_args
,
1720 .get_wireless_stats
= zd1201_get_wireless_stats
,
1723 static const struct net_device_ops zd1201_netdev_ops
= {
1724 .ndo_open
= zd1201_net_open
,
1725 .ndo_stop
= zd1201_net_stop
,
1726 .ndo_start_xmit
= zd1201_hard_start_xmit
,
1727 .ndo_tx_timeout
= zd1201_tx_timeout
,
1728 .ndo_set_rx_mode
= zd1201_set_multicast
,
1729 .ndo_set_mac_address
= zd1201_set_mac_address
,
1730 .ndo_change_mtu
= eth_change_mtu
,
1731 .ndo_validate_addr
= eth_validate_addr
,
1734 static int zd1201_probe(struct usb_interface
*interface
,
1735 const struct usb_device_id
*id
)
1738 struct net_device
*dev
;
1739 struct usb_device
*usb
;
1742 char buf
[IW_ESSID_MAX_SIZE
+2];
1744 usb
= interface_to_usbdev(interface
);
1746 dev
= alloc_etherdev(sizeof(*zd
));
1749 zd
= netdev_priv(dev
);
1755 init_waitqueue_head(&zd
->rxdataq
);
1756 INIT_HLIST_HEAD(&zd
->fraglist
);
1758 err
= zd1201_fw_upload(usb
, zd
->ap
);
1760 dev_err(&usb
->dev
, "zd1201 firmware upload failed: %d\n", err
);
1767 zd
->rx_urb
= usb_alloc_urb(0, GFP_KERNEL
);
1768 zd
->tx_urb
= usb_alloc_urb(0, GFP_KERNEL
);
1769 if (!zd
->rx_urb
|| !zd
->tx_urb
) {
1775 err
= zd1201_drvr_start(zd
);
1779 err
= zd1201_setconfig16(zd
, ZD1201_RID_CNFMAXDATALEN
, 2312);
1783 err
= zd1201_setconfig16(zd
, ZD1201_RID_TXRATECNTL
,
1784 ZD1201_RATEB1
| ZD1201_RATEB2
| ZD1201_RATEB5
| ZD1201_RATEB11
);
1788 dev
->netdev_ops
= &zd1201_netdev_ops
;
1789 dev
->wireless_handlers
= &zd1201_iw_handlers
;
1790 dev
->watchdog_timeo
= ZD1201_TX_TIMEOUT
;
1791 strcpy(dev
->name
, "wlan%d");
1793 err
= zd1201_getconfig(zd
, ZD1201_RID_CNFOWNMACADDR
,
1794 dev
->dev_addr
, dev
->addr_len
);
1798 /* Set wildcard essid to match zd->essid */
1799 *(__le16
*)buf
= cpu_to_le16(0);
1800 err
= zd1201_setconfig(zd
, ZD1201_RID_CNFDESIREDSSID
, buf
,
1801 IW_ESSID_MAX_SIZE
+2, 1);
1806 porttype
= ZD1201_PORTTYPE_AP
;
1808 porttype
= ZD1201_PORTTYPE_BSS
;
1809 err
= zd1201_setconfig16(zd
, ZD1201_RID_CNFPORTTYPE
, porttype
);
1813 SET_NETDEV_DEV(dev
, &usb
->dev
);
1815 err
= register_netdev(dev
);
1818 dev_info(&usb
->dev
, "%s: ZD1201 USB Wireless interface\n",
1821 usb_set_intfdata(interface
, zd
);
1822 zd1201_enable(zd
); /* zd1201 likes to startup enabled, */
1823 zd1201_disable(zd
); /* interfering with all the wifis in range */
1827 /* Leave the device in reset state */
1828 zd1201_docmd(zd
, ZD1201_CMDCODE_INIT
, 0, 0, 0);
1830 usb_free_urb(zd
->tx_urb
);
1831 usb_free_urb(zd
->rx_urb
);
1836 static void zd1201_disconnect(struct usb_interface
*interface
)
1838 struct zd1201
*zd
= usb_get_intfdata(interface
);
1839 struct hlist_node
*node2
;
1840 struct zd1201_frag
*frag
;
1844 usb_set_intfdata(interface
, NULL
);
1846 hlist_for_each_entry_safe(frag
, node2
, &zd
->fraglist
, fnode
) {
1847 hlist_del_init(&frag
->fnode
);
1848 kfree_skb(frag
->skb
);
1853 usb_kill_urb(zd
->tx_urb
);
1854 usb_free_urb(zd
->tx_urb
);
1857 usb_kill_urb(zd
->rx_urb
);
1858 usb_free_urb(zd
->rx_urb
);
1862 unregister_netdev(zd
->dev
);
1863 free_netdev(zd
->dev
);
1869 static int zd1201_suspend(struct usb_interface
*interface
,
1870 pm_message_t message
)
1872 struct zd1201
*zd
= usb_get_intfdata(interface
);
1874 netif_device_detach(zd
->dev
);
1876 zd
->was_enabled
= zd
->mac_enabled
;
1878 if (zd
->was_enabled
)
1879 return zd1201_disable(zd
);
1884 static int zd1201_resume(struct usb_interface
*interface
)
1886 struct zd1201
*zd
= usb_get_intfdata(interface
);
1888 if (!zd
|| !zd
->dev
)
1891 netif_device_attach(zd
->dev
);
1893 if (zd
->was_enabled
)
1894 return zd1201_enable(zd
);
1901 #define zd1201_suspend NULL
1902 #define zd1201_resume NULL
1906 static struct usb_driver zd1201_usb
= {
1908 .probe
= zd1201_probe
,
1909 .disconnect
= zd1201_disconnect
,
1910 .id_table
= zd1201_table
,
1911 .suspend
= zd1201_suspend
,
1912 .resume
= zd1201_resume
,
1913 .disable_hub_initiated_lpm
= 1,
1916 module_usb_driver(zd1201_usb
);