1 // SPDX-License-Identifier: GPL-2.0-only
3 * Driver for ZyDAS zd1201 based wireless USB devices.
5 * Copyright (c) 2004, 2005 Jeroen Vreeken (pe1rxq@amsat.org)
7 * Parts of this driver have been derived from a wlan-ng version
8 * modified by ZyDAS. They also made documentation available, thanks!
9 * Copyright (C) 1999 AbsoluteValue Systems, Inc. All Rights Reserved.
12 #include <linux/module.h>
13 #include <linux/usb.h>
14 #include <linux/slab.h>
15 #include <linux/netdevice.h>
16 #include <linux/etherdevice.h>
17 #include <linux/wireless.h>
18 #include <net/cfg80211.h>
19 #include <net/iw_handler.h>
20 #include <linux/string.h>
21 #include <linux/if_arp.h>
22 #include <linux/firmware.h>
25 static const struct usb_device_id zd1201_table
[] = {
26 {USB_DEVICE(0x0586, 0x3400)}, /* Peabird Wireless USB Adapter */
27 {USB_DEVICE(0x0ace, 0x1201)}, /* ZyDAS ZD1201 Wireless USB Adapter */
28 {USB_DEVICE(0x050d, 0x6051)}, /* Belkin F5D6051 usb adapter */
29 {USB_DEVICE(0x0db0, 0x6823)}, /* MSI UB11B usb adapter */
30 {USB_DEVICE(0x1044, 0x8004)}, /* Gigabyte GN-WLBZ101 */
31 {USB_DEVICE(0x1044, 0x8005)}, /* GIGABYTE GN-WLBZ201 usb adapter */
35 static int ap
; /* Are we an AP or a normal station? */
37 #define ZD1201_VERSION "0.15"
39 MODULE_AUTHOR("Jeroen Vreeken <pe1rxq@amsat.org>");
40 MODULE_DESCRIPTION("Driver for ZyDAS ZD1201 based USB Wireless adapters");
41 MODULE_VERSION(ZD1201_VERSION
);
42 MODULE_LICENSE("GPL");
43 module_param(ap
, int, 0);
44 MODULE_PARM_DESC(ap
, "If non-zero Access Point firmware will be loaded");
45 MODULE_DEVICE_TABLE(usb
, zd1201_table
);
48 static int zd1201_fw_upload(struct usb_device
*dev
, int apfw
)
50 const struct firmware
*fw_entry
;
59 fwfile
= "zd1201-ap.fw";
63 err
= request_firmware(&fw_entry
, fwfile
, &dev
->dev
);
65 dev_err(&dev
->dev
, "Failed to load %s firmware file!\n", fwfile
);
66 dev_err(&dev
->dev
, "Make sure the hotplug firmware loader is installed.\n");
67 dev_err(&dev
->dev
, "Goto http://linux-lc100020.sourceforge.net for more info.\n");
71 data
= fw_entry
->data
;
74 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, buf
, sizeof(ret
), ZD1201_FW_TIMEOUT
);
104 memcpy(&ret
, buf
, sizeof(ret
));
114 release_firmware(fw_entry
);
118 MODULE_FIRMWARE("zd1201-ap.fw");
119 MODULE_FIRMWARE("zd1201.fw");
121 static void zd1201_usbfree(struct urb
*urb
)
123 struct zd1201
*zd
= urb
->context
;
125 switch(urb
->status
) {
133 dev_warn(&zd
->usb
->dev
, "%s: urb failed: %d\n",
134 zd
->dev
->name
, urb
->status
);
137 kfree(urb
->transfer_buffer
);
149 total: 4 + 2 + 2 + 2 + 2 + 4 = 16
151 static int zd1201_docmd(struct zd1201
*zd
, int cmd
, int parm0
,
152 int parm1
, int parm2
)
154 unsigned char *command
;
158 command
= kmalloc(16, GFP_ATOMIC
);
162 *((__le32
*)command
) = cpu_to_le32(ZD1201_USB_CMDREQ
);
163 *((__le16
*)&command
[4]) = cpu_to_le16(cmd
);
164 *((__le16
*)&command
[6]) = cpu_to_le16(parm0
);
165 *((__le16
*)&command
[8]) = cpu_to_le16(parm1
);
166 *((__le16
*)&command
[10])= cpu_to_le16(parm2
);
168 urb
= usb_alloc_urb(0, GFP_ATOMIC
);
173 usb_fill_bulk_urb(urb
, zd
->usb
, usb_sndbulkpipe(zd
->usb
, zd
->endp_out2
),
174 command
, 16, zd1201_usbfree
, zd
);
175 ret
= usb_submit_urb(urb
, GFP_ATOMIC
);
184 /* Callback after sending out a packet */
185 static void zd1201_usbtx(struct urb
*urb
)
187 struct zd1201
*zd
= urb
->context
;
188 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
, copylen
;
231 infotype
= le16_to_cpu(*(__le16
*)&data
[6]);
233 if (infotype
== ZD1201_INF_LINKSTATUS
) {
236 linkstatus
= le16_to_cpu(*(__le16
*)&data
[8]);
239 netif_carrier_on(zd
->dev
);
242 netif_carrier_off(zd
->dev
);
245 netif_carrier_off(zd
->dev
);
248 netif_carrier_on(zd
->dev
);
251 netif_carrier_off(zd
->dev
);
255 if (infotype
== ZD1201_INF_ASSOCSTATUS
) {
256 short status
= le16_to_cpu(*(__le16
*)(data
+8));
258 union iwreq_data wrqu
;
261 case ZD1201_ASSOCSTATUS_STAASSOC
:
262 case ZD1201_ASSOCSTATUS_REASSOC
:
263 event
= IWEVREGISTERED
;
265 case ZD1201_ASSOCSTATUS_DISASSOC
:
266 case ZD1201_ASSOCSTATUS_ASSOCFAIL
:
267 case ZD1201_ASSOCSTATUS_AUTHFAIL
:
271 memcpy(wrqu
.addr
.sa_data
, data
+10, ETH_ALEN
);
272 wrqu
.addr
.sa_family
= ARPHRD_ETHER
;
274 /* Send event to user space */
275 wireless_send_event(zd
->dev
, event
, &wrqu
, NULL
);
279 if (infotype
== ZD1201_INF_AUTHREQ
) {
280 union iwreq_data wrqu
;
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
);
291 /* Other infotypes are handled outside this handler */
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
))
298 memcpy(zd
->rxdata
+zd
->rxlen
, data
+i
+4, copylen
);
299 zd
->rxlen
+= copylen
;
302 if (i
>= urb
->actual_length
) {
304 wake_up(&zd
->rxdataq
);
309 if (data
[urb
->actual_length
-1] == ZD1201_PACKET_RXDATA
) {
310 int datalen
= urb
->actual_length
-1;
311 unsigned short len
, fc
, seq
;
313 len
= ntohs(*(__be16
*)&data
[datalen
-2]);
316 fc
= le16_to_cpu(*(__le16
*)&data
[datalen
-16]);
317 seq
= le16_to_cpu(*(__le16
*)&data
[datalen
-24]);
322 if (!(skb
= dev_alloc_skb(datalen
+24)))
325 skb_put_data(skb
, &data
[datalen
- 16], 2);
326 skb_put_data(skb
, &data
[datalen
- 2], 2);
327 skb_put_data(skb
, &data
[datalen
- 14], 6);
328 skb_put_data(skb
, &data
[datalen
- 22], 6);
329 skb_put_data(skb
, &data
[datalen
- 8], 6);
330 skb_put_data(skb
, &data
[datalen
- 24], 2);
331 skb_put_data(skb
, data
, len
);
332 skb
->protocol
= eth_type_trans(skb
, zd
->dev
);
333 zd
->dev
->stats
.rx_packets
++;
334 zd
->dev
->stats
.rx_bytes
+= skb
->len
;
339 if ((seq
& IEEE80211_SCTL_FRAG
) ||
340 (fc
& IEEE80211_FCTL_MOREFRAGS
)) {
341 struct zd1201_frag
*frag
= NULL
;
346 if ((seq
& IEEE80211_SCTL_FRAG
) == 0) {
347 frag
= kmalloc(sizeof(*frag
), GFP_ATOMIC
);
350 skb
= dev_alloc_skb(IEEE80211_MAX_DATA_LEN
+14+2);
356 frag
->seq
= seq
& IEEE80211_SCTL_SEQ
;
358 skb_put_data(skb
, &data
[datalen
- 14], 12);
359 skb_put_data(skb
, &data
[6], 2);
360 skb_put_data(skb
, data
+ 8, len
);
361 hlist_add_head(&frag
->fnode
, &zd
->fraglist
);
364 hlist_for_each_entry(frag
, &zd
->fraglist
, fnode
)
365 if (frag
->seq
== (seq
&IEEE80211_SCTL_SEQ
))
370 ptr
= skb_put(skb
, len
);
372 memcpy(ptr
, data
+8, len
);
373 if (fc
& IEEE80211_FCTL_MOREFRAGS
)
375 hlist_del_init(&frag
->fnode
);
380 skb
= dev_alloc_skb(len
+ 14 + 2);
384 skb_put_data(skb
, &data
[datalen
- 14], 12);
385 skb_put_data(skb
, &data
[6], 2);
386 skb_put_data(skb
, data
+ 8, len
);
388 skb
->protocol
= eth_type_trans(skb
, zd
->dev
);
389 zd
->dev
->stats
.rx_packets
++;
390 zd
->dev
->stats
.rx_bytes
+= skb
->len
;
394 memset(data
, 0, ZD1201_RXSIZE
);
398 if(usb_submit_urb(urb
, GFP_ATOMIC
))
405 wake_up(&zd
->rxdataq
);
406 kfree(urb
->transfer_buffer
);
410 static int zd1201_getconfig(struct zd1201
*zd
, int rid
, void *riddata
,
411 unsigned int riddatalen
)
418 unsigned char *pdata
;
421 err
= zd1201_docmd(zd
, ZD1201_CMDCODE_ACCESS
, rid
, 0, 0);
425 wait_event_interruptible(zd
->rxdataq
, zd
->rxdatas
);
429 code
= le16_to_cpu(*(__le16
*)(&zd
->rxdata
[4]));
430 rid_fid
= le16_to_cpu(*(__le16
*)(&zd
->rxdata
[6]));
431 length
= le16_to_cpu(*(__le16
*)(&zd
->rxdata
[8]));
432 if (length
> zd
->rxlen
)
433 length
= zd
->rxlen
-6;
435 /* If access bit is not on, then error */
436 if ((code
& ZD1201_ACCESSBIT
) != ZD1201_ACCESSBIT
|| rid_fid
!= rid
)
439 /* Not enough buffer for allocating data */
440 if (riddatalen
!= (length
- 4)) {
441 dev_dbg(&zd
->usb
->dev
, "riddatalen mismatches, expected=%u, (packet=%u) length=%u, rid=0x%04X, rid_fid=0x%04X\n",
442 riddatalen
, zd
->rxlen
, length
, rid
, rid_fid
);
447 /* Issue SetRxRid commnd */
448 err
= zd1201_docmd(zd
, ZD1201_CMDCODE_SETRXRID
, rid
, 0, length
);
452 /* Receive RID record from resource packets */
453 wait_event_interruptible(zd
->rxdataq
, zd
->rxdatas
);
457 if (zd
->rxdata
[zd
->rxlen
- 1] != ZD1201_PACKET_RESOURCE
) {
458 dev_dbg(&zd
->usb
->dev
, "Packet type mismatch: 0x%x not 0x3\n",
459 zd
->rxdata
[zd
->rxlen
-1]);
463 /* Set the data pointer and received data length */
470 actual_length
= (length
> 64) ? 64 : length
;
472 if (pdata
[0] != 0x3) {
473 dev_dbg(&zd
->usb
->dev
, "Rx Resource packet type error: %02X\n",
478 if (actual_length
!= 64) {
479 /* Trim the last packet type byte */
483 /* Skip the 4 bytes header (RID length and RID) */
492 memcpy(riddata
, pdata
, actual_length
);
493 riddata
+= actual_length
;
494 pdata
+= actual_length
;
497 } while (length
> 0);
510 static int zd1201_setconfig(struct zd1201
*zd
, int rid
, void *buf
, int len
, int wait
)
513 unsigned char *request
;
517 gfp_t gfp_mask
= wait
? GFP_NOIO
: GFP_ATOMIC
;
519 len
+= 4; /* first 4 are for header */
523 for (seq
=0; len
> 0; seq
++) {
524 request
= kmalloc(16, gfp_mask
);
527 urb
= usb_alloc_urb(0, gfp_mask
);
532 memset(request
, 0, 16);
533 reqlen
= len
>12 ? 12 : len
;
534 request
[0] = ZD1201_USB_RESREQ
;
538 if (request
[1] == 0) {
540 *(__le16
*)&request
[4] = cpu_to_le16((len
-2+1)/2);
541 *(__le16
*)&request
[6] = cpu_to_le16(rid
);
542 memcpy(request
+8, buf
, reqlen
-4);
545 memcpy(request
+4, buf
, reqlen
);
551 usb_fill_bulk_urb(urb
, zd
->usb
, usb_sndbulkpipe(zd
->usb
,
552 zd
->endp_out2
), request
, 16, zd1201_usbfree
, zd
);
553 err
= usb_submit_urb(urb
, gfp_mask
);
558 request
= kmalloc(16, gfp_mask
);
561 urb
= usb_alloc_urb(0, gfp_mask
);
566 *((__le32
*)request
) = cpu_to_le32(ZD1201_USB_CMDREQ
);
567 *((__le16
*)&request
[4]) =
568 cpu_to_le16(ZD1201_CMDCODE_ACCESS
|ZD1201_ACCESSBIT
);
569 *((__le16
*)&request
[6]) = cpu_to_le16(rid
);
570 *((__le16
*)&request
[8]) = cpu_to_le16(0);
571 *((__le16
*)&request
[10]) = cpu_to_le16(0);
572 usb_fill_bulk_urb(urb
, zd
->usb
, usb_sndbulkpipe(zd
->usb
, zd
->endp_out2
),
573 request
, 16, zd1201_usbfree
, zd
);
574 err
= usb_submit_urb(urb
, gfp_mask
);
579 wait_event_interruptible(zd
->rxdataq
, zd
->rxdatas
);
580 if (!zd
->rxlen
|| le16_to_cpu(*(__le16
*)&zd
->rxdata
[6]) != rid
) {
581 dev_dbg(&zd
->usb
->dev
, "wrong or no RID received\n");
592 static inline int zd1201_getconfig16(struct zd1201
*zd
, int rid
, short *val
)
597 err
= zd1201_getconfig(zd
, rid
, &zdval
, sizeof(__le16
));
600 *val
= le16_to_cpu(zdval
);
604 static inline int zd1201_setconfig16(struct zd1201
*zd
, int rid
, short val
)
606 __le16 zdval
= cpu_to_le16(val
);
607 return (zd1201_setconfig(zd
, rid
, &zdval
, sizeof(__le16
), 1));
610 static int zd1201_drvr_start(struct zd1201
*zd
)
615 unsigned char *buffer
;
617 buffer
= kzalloc(ZD1201_RXSIZE
, GFP_KERNEL
);
621 usb_fill_bulk_urb(zd
->rx_urb
, zd
->usb
,
622 usb_rcvbulkpipe(zd
->usb
, zd
->endp_in
), buffer
, ZD1201_RXSIZE
,
625 err
= usb_submit_urb(zd
->rx_urb
, GFP_KERNEL
);
629 err
= zd1201_docmd(zd
, ZD1201_CMDCODE_INIT
, 0, 0, 0);
633 err
= zd1201_getconfig(zd
, ZD1201_RID_CNFMAXTXBUFFERNUMBER
, &zdmax
,
638 max
= le16_to_cpu(zdmax
);
639 for (i
=0; i
<max
; i
++) {
640 err
= zd1201_docmd(zd
, ZD1201_CMDCODE_ALLOC
, 1514, 0, 0);
648 usb_kill_urb(zd
->rx_urb
);
655 /* Magic alert: The firmware doesn't seem to like the MAC state being
656 * toggled in promisc (aka monitor) mode.
657 * (It works a number of times, but will halt eventually)
658 * So we turn it of before disabling and on after enabling if needed.
660 static int zd1201_enable(struct zd1201
*zd
)
667 err
= zd1201_docmd(zd
, ZD1201_CMDCODE_ENABLE
, 0, 0, 0);
672 err
= zd1201_setconfig16(zd
, ZD1201_RID_PROMISCUOUSMODE
, 1);
677 static int zd1201_disable(struct zd1201
*zd
)
681 if (!zd
->mac_enabled
)
684 err
= zd1201_setconfig16(zd
, ZD1201_RID_PROMISCUOUSMODE
, 0);
689 err
= zd1201_docmd(zd
, ZD1201_CMDCODE_DISABLE
, 0, 0, 0);
695 static int zd1201_mac_reset(struct zd1201
*zd
)
697 if (!zd
->mac_enabled
)
700 return zd1201_enable(zd
);
703 static int zd1201_join(struct zd1201
*zd
, char *essid
, int essidlen
)
706 char buf
[IW_ESSID_MAX_SIZE
+2];
708 err
= zd1201_disable(zd
);
712 val
= ZD1201_CNFAUTHENTICATION_OPENSYSTEM
;
713 val
|= ZD1201_CNFAUTHENTICATION_SHAREDKEY
;
714 err
= zd1201_setconfig16(zd
, ZD1201_RID_CNFAUTHENTICATION
, val
);
718 *(__le16
*)buf
= cpu_to_le16(essidlen
);
719 memcpy(buf
+2, essid
, essidlen
);
720 if (!zd
->ap
) { /* Normal station */
721 err
= zd1201_setconfig(zd
, ZD1201_RID_CNFDESIREDSSID
, buf
,
722 IW_ESSID_MAX_SIZE
+2, 1);
726 err
= zd1201_setconfig(zd
, ZD1201_RID_CNFOWNSSID
, buf
,
727 IW_ESSID_MAX_SIZE
+2, 1);
732 err
= zd1201_setconfig(zd
, ZD1201_RID_CNFOWNMACADDR
,
733 zd
->dev
->dev_addr
, zd
->dev
->addr_len
, 1);
737 err
= zd1201_enable(zd
);
745 static int zd1201_net_open(struct net_device
*dev
)
747 struct zd1201
*zd
= netdev_priv(dev
);
749 /* Start MAC with wildcard if no essid set */
750 if (!zd
->mac_enabled
)
751 zd1201_join(zd
, zd
->essid
, zd
->essidlen
);
752 netif_start_queue(dev
);
757 static int zd1201_net_stop(struct net_device
*dev
)
759 netif_stop_queue(dev
);
764 RFC 1042 encapsulates Ethernet frames in 802.11 frames
765 by prefixing them with 0xaa, 0xaa, 0x03) followed by a SNAP OID of 0
766 (0x00, 0x00, 0x00). Zd requires an additional padding, copy
767 of ethernet addresses, length of the standard RFC 1042 packet
768 and a command byte (which is nul for tx).
770 tx frame (from Wlan NG):
772 llc 0xAA 0xAA 0x03 (802.2 LLC)
773 snap 0x00 0x00 0x00 (Ethernet encapsulated)
774 type 2 bytes, Ethernet type field
775 payload (minus eth header)
777 padding 1B if (skb->len+8+1)%64==0
778 Eth MAC addr 12 bytes, Ethernet MAC addresses
779 length 2 bytes, RFC 1042 packet length
780 (llc+snap+type+payload)
781 zd 1 null byte, zd1201 packet type
783 static netdev_tx_t
zd1201_hard_start_xmit(struct sk_buff
*skb
,
784 struct net_device
*dev
)
786 struct zd1201
*zd
= netdev_priv(dev
);
787 unsigned char *txbuf
= zd
->txdata
;
788 int txbuflen
, pad
= 0, err
;
789 struct urb
*urb
= zd
->tx_urb
;
791 if (!zd
->mac_enabled
|| zd
->monitor
) {
792 dev
->stats
.tx_dropped
++;
796 netif_stop_queue(dev
);
798 txbuflen
= skb
->len
+ 8 + 1;
799 if (txbuflen
%64 == 0) {
806 txbuf
[3] = 0x00; /* rfc1042 */
810 skb_copy_from_linear_data_offset(skb
, 12, txbuf
+ 6, skb
->len
- 12);
812 txbuf
[skb
->len
-12+6]=0;
813 skb_copy_from_linear_data(skb
, txbuf
+ skb
->len
- 12 + 6 + pad
, 12);
814 *(__be16
*)&txbuf
[skb
->len
+6+pad
] = htons(skb
->len
-12+6);
815 txbuf
[txbuflen
-1] = 0;
817 usb_fill_bulk_urb(urb
, zd
->usb
, usb_sndbulkpipe(zd
->usb
, zd
->endp_out
),
818 txbuf
, txbuflen
, zd1201_usbtx
, zd
);
820 err
= usb_submit_urb(zd
->tx_urb
, GFP_ATOMIC
);
822 dev
->stats
.tx_errors
++;
823 netif_start_queue(dev
);
825 dev
->stats
.tx_packets
++;
826 dev
->stats
.tx_bytes
+= skb
->len
;
833 static void zd1201_tx_timeout(struct net_device
*dev
, unsigned int txqueue
)
835 struct zd1201
*zd
= netdev_priv(dev
);
839 dev_warn(&zd
->usb
->dev
, "%s: TX timeout, shooting down urb\n",
841 usb_unlink_urb(zd
->tx_urb
);
842 dev
->stats
.tx_errors
++;
843 /* Restart the timeout to quiet the watchdog: */
844 netif_trans_update(dev
); /* prevent tx timeout */
847 static int zd1201_set_mac_address(struct net_device
*dev
, void *p
)
849 struct sockaddr
*addr
= p
;
850 struct zd1201
*zd
= netdev_priv(dev
);
856 err
= zd1201_setconfig(zd
, ZD1201_RID_CNFOWNMACADDR
,
857 addr
->sa_data
, dev
->addr_len
, 1);
860 memcpy(dev
->dev_addr
, addr
->sa_data
, dev
->addr_len
);
862 return zd1201_mac_reset(zd
);
865 static struct iw_statistics
*zd1201_get_wireless_stats(struct net_device
*dev
)
867 struct zd1201
*zd
= netdev_priv(dev
);
872 static void zd1201_set_multicast(struct net_device
*dev
)
874 struct zd1201
*zd
= netdev_priv(dev
);
875 struct netdev_hw_addr
*ha
;
876 unsigned char reqbuf
[ETH_ALEN
*ZD1201_MAXMULTI
];
879 if (netdev_mc_count(dev
) > ZD1201_MAXMULTI
)
883 netdev_for_each_mc_addr(ha
, dev
)
884 memcpy(reqbuf
+ i
++ * ETH_ALEN
, ha
->addr
, ETH_ALEN
);
885 zd1201_setconfig(zd
, ZD1201_RID_CNFGROUPADDRESS
, reqbuf
,
886 netdev_mc_count(dev
) * ETH_ALEN
, 0);
889 static int zd1201_config_commit(struct net_device
*dev
,
890 struct iw_request_info
*info
, struct iw_point
*data
, char *essid
)
892 struct zd1201
*zd
= netdev_priv(dev
);
894 return zd1201_mac_reset(zd
);
897 static int zd1201_get_name(struct net_device
*dev
,
898 struct iw_request_info
*info
, char *name
, char *extra
)
900 strcpy(name
, "IEEE 802.11b");
904 static int zd1201_set_freq(struct net_device
*dev
,
905 struct iw_request_info
*info
, struct iw_freq
*freq
, char *extra
)
907 struct zd1201
*zd
= netdev_priv(dev
);
914 channel
= ieee80211_frequency_to_channel(freq
->m
);
916 err
= zd1201_setconfig16(zd
, ZD1201_RID_CNFOWNCHANNEL
, channel
);
920 zd1201_mac_reset(zd
);
925 static int zd1201_get_freq(struct net_device
*dev
,
926 struct iw_request_info
*info
, struct iw_freq
*freq
, char *extra
)
928 struct zd1201
*zd
= netdev_priv(dev
);
932 err
= zd1201_getconfig16(zd
, ZD1201_RID_CNFOWNCHANNEL
, &channel
);
941 static int zd1201_set_mode(struct net_device
*dev
,
942 struct iw_request_info
*info
, __u32
*mode
, char *extra
)
944 struct zd1201
*zd
= netdev_priv(dev
);
945 short porttype
, monitor
= 0;
946 unsigned char buffer
[IW_ESSID_MAX_SIZE
+2];
950 if (*mode
!= IW_MODE_MASTER
)
955 err
= zd1201_setconfig16(zd
, ZD1201_RID_PROMISCUOUSMODE
, 0);
958 zd
->dev
->type
= ARPHRD_ETHER
;
960 case IW_MODE_MONITOR
:
962 zd
->dev
->type
= ARPHRD_IEEE80211
;
963 /* Make sure we are no longer associated with by
964 setting an 'impossible' essid.
965 (otherwise we mess up firmware)
967 zd1201_join(zd
, "\0-*#\0", 5);
968 /* Put port in pIBSS */
970 case 8: /* No pseudo-IBSS in wireless extensions (yet) */
971 porttype
= ZD1201_PORTTYPE_PSEUDOIBSS
;
974 porttype
= ZD1201_PORTTYPE_IBSS
;
977 porttype
= ZD1201_PORTTYPE_BSS
;
983 err
= zd1201_setconfig16(zd
, ZD1201_RID_CNFPORTTYPE
, porttype
);
986 if (zd
->monitor
&& !monitor
) {
988 *(__le16
*)buffer
= cpu_to_le16(zd
->essidlen
);
989 memcpy(buffer
+2, zd
->essid
, zd
->essidlen
);
990 err
= zd1201_setconfig(zd
, ZD1201_RID_CNFDESIREDSSID
,
991 buffer
, IW_ESSID_MAX_SIZE
+2, 1);
995 zd
->monitor
= monitor
;
996 /* If monitor mode is set we don't actually turn it on here since it
997 * is done during mac reset anyway (see zd1201_mac_enable).
999 zd1201_mac_reset(zd
);
1004 static int zd1201_get_mode(struct net_device
*dev
,
1005 struct iw_request_info
*info
, __u32
*mode
, char *extra
)
1007 struct zd1201
*zd
= netdev_priv(dev
);
1011 err
= zd1201_getconfig16(zd
, ZD1201_RID_CNFPORTTYPE
, &porttype
);
1015 case ZD1201_PORTTYPE_IBSS
:
1016 *mode
= IW_MODE_ADHOC
;
1018 case ZD1201_PORTTYPE_BSS
:
1019 *mode
= IW_MODE_INFRA
;
1021 case ZD1201_PORTTYPE_WDS
:
1022 *mode
= IW_MODE_REPEAT
;
1024 case ZD1201_PORTTYPE_PSEUDOIBSS
:
1025 *mode
= 8;/* No Pseudo-IBSS... */
1027 case ZD1201_PORTTYPE_AP
:
1028 *mode
= IW_MODE_MASTER
;
1031 dev_dbg(&zd
->usb
->dev
, "Unknown porttype: %d\n",
1033 *mode
= IW_MODE_AUTO
;
1036 *mode
= IW_MODE_MONITOR
;
1041 static int zd1201_get_range(struct net_device
*dev
,
1042 struct iw_request_info
*info
, struct iw_point
*wrq
, char *extra
)
1044 struct iw_range
*range
= (struct iw_range
*)extra
;
1046 wrq
->length
= sizeof(struct iw_range
);
1047 memset(range
, 0, sizeof(struct iw_range
));
1048 range
->we_version_compiled
= WIRELESS_EXT
;
1049 range
->we_version_source
= WIRELESS_EXT
;
1051 range
->max_qual
.qual
= 128;
1052 range
->max_qual
.level
= 128;
1053 range
->max_qual
.noise
= 128;
1054 range
->max_qual
.updated
= 7;
1056 range
->encoding_size
[0] = 5;
1057 range
->encoding_size
[1] = 13;
1058 range
->num_encoding_sizes
= 2;
1059 range
->max_encoding_tokens
= ZD1201_NUMKEYS
;
1061 range
->num_bitrates
= 4;
1062 range
->bitrate
[0] = 1000000;
1063 range
->bitrate
[1] = 2000000;
1064 range
->bitrate
[2] = 5500000;
1065 range
->bitrate
[3] = 11000000;
1068 range
->min_frag
= ZD1201_FRAGMIN
;
1069 range
->max_rts
= ZD1201_RTSMAX
;
1070 range
->min_frag
= ZD1201_FRAGMAX
;
1075 /* Little bit of magic here: we only get the quality if we poll
1076 * for it, and we never get an actual request to trigger such
1077 * a poll. Therefore we 'assume' that the user will soon ask for
1078 * the stats after asking the bssid.
1080 static int zd1201_get_wap(struct net_device
*dev
,
1081 struct iw_request_info
*info
, struct sockaddr
*ap_addr
, char *extra
)
1083 struct zd1201
*zd
= netdev_priv(dev
);
1084 unsigned char buffer
[6];
1086 if (!zd1201_getconfig(zd
, ZD1201_RID_COMMSQUALITY
, buffer
, 6)) {
1087 /* Unfortunately the quality and noise reported is useless.
1088 they seem to be accumulators that increase until you
1089 read them, unless we poll on a fixed interval we can't
1092 /*zd->iwstats.qual.qual = le16_to_cpu(((__le16 *)buffer)[0]);*/
1093 zd
->iwstats
.qual
.level
= le16_to_cpu(((__le16
*)buffer
)[1]);
1094 /*zd->iwstats.qual.noise = le16_to_cpu(((__le16 *)buffer)[2]);*/
1095 zd
->iwstats
.qual
.updated
= 2;
1098 return zd1201_getconfig(zd
, ZD1201_RID_CURRENTBSSID
, ap_addr
->sa_data
, 6);
1101 static int zd1201_set_scan(struct net_device
*dev
,
1102 struct iw_request_info
*info
, struct iw_point
*srq
, char *extra
)
1104 /* We do everything in get_scan */
1108 static int zd1201_get_scan(struct net_device
*dev
,
1109 struct iw_request_info
*info
, struct iw_point
*srq
, char *extra
)
1111 struct zd1201
*zd
= netdev_priv(dev
);
1112 int err
, i
, j
, enabled_save
;
1113 struct iw_event iwe
;
1115 char *end_buf
= extra
+ IW_SCAN_MAX_DATA
;
1117 /* No scanning in AP mode */
1121 /* Scan doesn't seem to work if disabled */
1122 enabled_save
= zd
->mac_enabled
;
1126 err
= zd1201_docmd(zd
, ZD1201_CMDCODE_INQUIRE
,
1127 ZD1201_INQ_SCANRESULTS
, 0, 0);
1131 wait_event_interruptible(zd
->rxdataq
, zd
->rxdatas
);
1135 if (le16_to_cpu(*(__le16
*)&zd
->rxdata
[2]) != ZD1201_INQ_SCANRESULTS
)
1138 for(i
=8; i
<zd
->rxlen
; i
+=62) {
1139 iwe
.cmd
= SIOCGIWAP
;
1140 iwe
.u
.ap_addr
.sa_family
= ARPHRD_ETHER
;
1141 memcpy(iwe
.u
.ap_addr
.sa_data
, zd
->rxdata
+i
+6, 6);
1142 cev
= iwe_stream_add_event(info
, cev
, end_buf
,
1143 &iwe
, IW_EV_ADDR_LEN
);
1145 iwe
.cmd
= SIOCGIWESSID
;
1146 iwe
.u
.data
.length
= zd
->rxdata
[i
+16];
1147 iwe
.u
.data
.flags
= 1;
1148 cev
= iwe_stream_add_point(info
, cev
, end_buf
,
1149 &iwe
, zd
->rxdata
+i
+18);
1151 iwe
.cmd
= SIOCGIWMODE
;
1152 if (zd
->rxdata
[i
+14]&0x01)
1153 iwe
.u
.mode
= IW_MODE_MASTER
;
1155 iwe
.u
.mode
= IW_MODE_ADHOC
;
1156 cev
= iwe_stream_add_event(info
, cev
, end_buf
,
1157 &iwe
, IW_EV_UINT_LEN
);
1159 iwe
.cmd
= SIOCGIWFREQ
;
1160 iwe
.u
.freq
.m
= zd
->rxdata
[i
+0];
1162 cev
= iwe_stream_add_event(info
, cev
, end_buf
,
1163 &iwe
, IW_EV_FREQ_LEN
);
1165 iwe
.cmd
= SIOCGIWRATE
;
1166 iwe
.u
.bitrate
.fixed
= 0;
1167 iwe
.u
.bitrate
.disabled
= 0;
1168 for (j
=0; j
<10; j
++) if (zd
->rxdata
[i
+50+j
]) {
1169 iwe
.u
.bitrate
.value
= (zd
->rxdata
[i
+50+j
]&0x7f)*500000;
1170 cev
= iwe_stream_add_event(info
, cev
, end_buf
,
1171 &iwe
, IW_EV_PARAM_LEN
);
1174 iwe
.cmd
= SIOCGIWENCODE
;
1175 iwe
.u
.data
.length
= 0;
1176 if (zd
->rxdata
[i
+14]&0x10)
1177 iwe
.u
.data
.flags
= IW_ENCODE_ENABLED
;
1179 iwe
.u
.data
.flags
= IW_ENCODE_DISABLED
;
1180 cev
= iwe_stream_add_point(info
, cev
, end_buf
, &iwe
, NULL
);
1183 iwe
.u
.qual
.qual
= zd
->rxdata
[i
+4];
1184 iwe
.u
.qual
.noise
= zd
->rxdata
[i
+2]/10-100;
1185 iwe
.u
.qual
.level
= (256+zd
->rxdata
[i
+4]*100)/255-100;
1186 iwe
.u
.qual
.updated
= 7;
1187 cev
= iwe_stream_add_event(info
, cev
, end_buf
,
1188 &iwe
, IW_EV_QUAL_LEN
);
1194 srq
->length
= cev
- extra
;
1200 static int zd1201_set_essid(struct net_device
*dev
,
1201 struct iw_request_info
*info
, struct iw_point
*data
, char *essid
)
1203 struct zd1201
*zd
= netdev_priv(dev
);
1205 if (data
->length
> IW_ESSID_MAX_SIZE
)
1207 if (data
->length
< 1)
1209 zd
->essidlen
= data
->length
;
1210 memset(zd
->essid
, 0, IW_ESSID_MAX_SIZE
+1);
1211 memcpy(zd
->essid
, essid
, data
->length
);
1212 return zd1201_join(zd
, zd
->essid
, zd
->essidlen
);
1215 static int zd1201_get_essid(struct net_device
*dev
,
1216 struct iw_request_info
*info
, struct iw_point
*data
, char *essid
)
1218 struct zd1201
*zd
= netdev_priv(dev
);
1220 memcpy(essid
, zd
->essid
, zd
->essidlen
);
1222 data
->length
= zd
->essidlen
;
1227 static int zd1201_get_nick(struct net_device
*dev
, struct iw_request_info
*info
,
1228 struct iw_point
*data
, char *nick
)
1230 strcpy(nick
, "zd1201");
1232 data
->length
= strlen(nick
);
1236 static int zd1201_set_rate(struct net_device
*dev
,
1237 struct iw_request_info
*info
, struct iw_param
*rrq
, char *extra
)
1239 struct zd1201
*zd
= netdev_priv(dev
);
1243 switch (rrq
->value
) {
1245 rate
= ZD1201_RATEB1
;
1248 rate
= ZD1201_RATEB2
;
1251 rate
= ZD1201_RATEB5
;
1255 rate
= ZD1201_RATEB11
;
1258 if (!rrq
->fixed
) { /* Also enable all lower bitrates */
1262 err
= zd1201_setconfig16(zd
, ZD1201_RID_TXRATECNTL
, rate
);
1266 return zd1201_mac_reset(zd
);
1269 static int zd1201_get_rate(struct net_device
*dev
,
1270 struct iw_request_info
*info
, struct iw_param
*rrq
, char *extra
)
1272 struct zd1201
*zd
= netdev_priv(dev
);
1276 err
= zd1201_getconfig16(zd
, ZD1201_RID_CURRENTTXRATE
, &rate
);
1282 rrq
->value
= 1000000;
1285 rrq
->value
= 2000000;
1288 rrq
->value
= 5500000;
1291 rrq
->value
= 11000000;
1302 static int zd1201_set_rts(struct net_device
*dev
, struct iw_request_info
*info
,
1303 struct iw_param
*rts
, char *extra
)
1305 struct zd1201
*zd
= netdev_priv(dev
);
1307 short val
= rts
->value
;
1309 if (rts
->disabled
|| !rts
->fixed
)
1310 val
= ZD1201_RTSMAX
;
1311 if (val
> ZD1201_RTSMAX
)
1316 err
= zd1201_setconfig16(zd
, ZD1201_RID_CNFRTSTHRESHOLD
, val
);
1319 return zd1201_mac_reset(zd
);
1322 static int zd1201_get_rts(struct net_device
*dev
, struct iw_request_info
*info
,
1323 struct iw_param
*rts
, char *extra
)
1325 struct zd1201
*zd
= netdev_priv(dev
);
1329 err
= zd1201_getconfig16(zd
, ZD1201_RID_CNFRTSTHRESHOLD
, &rtst
);
1333 rts
->disabled
= (rts
->value
== ZD1201_RTSMAX
);
1339 static int zd1201_set_frag(struct net_device
*dev
, struct iw_request_info
*info
,
1340 struct iw_param
*frag
, char *extra
)
1342 struct zd1201
*zd
= netdev_priv(dev
);
1344 short val
= frag
->value
;
1346 if (frag
->disabled
|| !frag
->fixed
)
1347 val
= ZD1201_FRAGMAX
;
1348 if (val
> ZD1201_FRAGMAX
)
1350 if (val
< ZD1201_FRAGMIN
)
1354 err
= zd1201_setconfig16(zd
, ZD1201_RID_CNFFRAGTHRESHOLD
, val
);
1357 return zd1201_mac_reset(zd
);
1360 static int zd1201_get_frag(struct net_device
*dev
, struct iw_request_info
*info
,
1361 struct iw_param
*frag
, char *extra
)
1363 struct zd1201
*zd
= netdev_priv(dev
);
1367 err
= zd1201_getconfig16(zd
, ZD1201_RID_CNFFRAGTHRESHOLD
, &fragt
);
1370 frag
->value
= fragt
;
1371 frag
->disabled
= (frag
->value
== ZD1201_FRAGMAX
);
1377 static int zd1201_set_retry(struct net_device
*dev
,
1378 struct iw_request_info
*info
, struct iw_param
*rrq
, char *extra
)
1383 static int zd1201_get_retry(struct net_device
*dev
,
1384 struct iw_request_info
*info
, struct iw_param
*rrq
, char *extra
)
1389 static int zd1201_set_encode(struct net_device
*dev
,
1390 struct iw_request_info
*info
, struct iw_point
*erq
, char *key
)
1392 struct zd1201
*zd
= netdev_priv(dev
);
1396 if (erq
->length
> ZD1201_MAXKEYLEN
)
1399 i
= (erq
->flags
& IW_ENCODE_INDEX
)-1;
1401 err
= zd1201_getconfig16(zd
,ZD1201_RID_CNFDEFAULTKEYID
,&i
);
1405 err
= zd1201_setconfig16(zd
, ZD1201_RID_CNFDEFAULTKEYID
, i
);
1410 if (i
< 0 || i
>= ZD1201_NUMKEYS
)
1413 rid
= ZD1201_RID_CNFDEFAULTKEY0
+ i
;
1414 err
= zd1201_setconfig(zd
, rid
, key
, erq
->length
, 1);
1417 zd
->encode_keylen
[i
] = erq
->length
;
1418 memcpy(zd
->encode_keys
[i
], key
, erq
->length
);
1421 if (!(erq
->flags
& IW_ENCODE_DISABLED
& IW_ENCODE_MODE
)) {
1423 zd
->encode_enabled
= 1;
1425 zd
->encode_enabled
= 0;
1426 if (erq
->flags
& IW_ENCODE_RESTRICTED
& IW_ENCODE_MODE
) {
1428 zd
->encode_restricted
= 1;
1430 zd
->encode_restricted
= 0;
1431 err
= zd1201_setconfig16(zd
, ZD1201_RID_CNFWEBFLAGS
, i
);
1435 if (zd
->encode_enabled
)
1436 i
= ZD1201_CNFAUTHENTICATION_SHAREDKEY
;
1438 i
= ZD1201_CNFAUTHENTICATION_OPENSYSTEM
;
1439 err
= zd1201_setconfig16(zd
, ZD1201_RID_CNFAUTHENTICATION
, i
);
1443 return zd1201_mac_reset(zd
);
1446 static int zd1201_get_encode(struct net_device
*dev
,
1447 struct iw_request_info
*info
, struct iw_point
*erq
, char *key
)
1449 struct zd1201
*zd
= netdev_priv(dev
);
1453 if (zd
->encode_enabled
)
1454 erq
->flags
= IW_ENCODE_ENABLED
;
1456 erq
->flags
= IW_ENCODE_DISABLED
;
1457 if (zd
->encode_restricted
)
1458 erq
->flags
|= IW_ENCODE_RESTRICTED
;
1460 erq
->flags
|= IW_ENCODE_OPEN
;
1462 i
= (erq
->flags
& IW_ENCODE_INDEX
) -1;
1464 err
= zd1201_getconfig16(zd
, ZD1201_RID_CNFDEFAULTKEYID
, &i
);
1468 if (i
<0 || i
>= ZD1201_NUMKEYS
)
1473 erq
->length
= zd
->encode_keylen
[i
];
1474 memcpy(key
, zd
->encode_keys
[i
], erq
->length
);
1479 static int zd1201_set_power(struct net_device
*dev
,
1480 struct iw_request_info
*info
, struct iw_param
*vwrq
, char *extra
)
1482 struct zd1201
*zd
= netdev_priv(dev
);
1483 short enabled
, duration
, level
;
1486 enabled
= vwrq
->disabled
? 0 : 1;
1488 if (vwrq
->flags
& IW_POWER_PERIOD
) {
1489 duration
= vwrq
->value
;
1490 err
= zd1201_setconfig16(zd
,
1491 ZD1201_RID_CNFMAXSLEEPDURATION
, duration
);
1496 if (vwrq
->flags
& IW_POWER_TIMEOUT
) {
1497 err
= zd1201_getconfig16(zd
,
1498 ZD1201_RID_CNFMAXSLEEPDURATION
, &duration
);
1501 level
= vwrq
->value
* 4 / duration
;
1506 err
= zd1201_setconfig16(zd
, ZD1201_RID_CNFPMEPS
,
1515 return zd1201_setconfig16(zd
, ZD1201_RID_CNFPMENABLED
, enabled
);
1518 static int zd1201_get_power(struct net_device
*dev
,
1519 struct iw_request_info
*info
, struct iw_param
*vwrq
, char *extra
)
1521 struct zd1201
*zd
= netdev_priv(dev
);
1522 short enabled
, level
, duration
;
1525 err
= zd1201_getconfig16(zd
, ZD1201_RID_CNFPMENABLED
, &enabled
);
1528 err
= zd1201_getconfig16(zd
, ZD1201_RID_CNFPMEPS
, &level
);
1531 err
= zd1201_getconfig16(zd
, ZD1201_RID_CNFMAXSLEEPDURATION
, &duration
);
1534 vwrq
->disabled
= enabled
? 0 : 1;
1535 if (vwrq
->flags
& IW_POWER_TYPE
) {
1536 if (vwrq
->flags
& IW_POWER_PERIOD
) {
1537 vwrq
->value
= duration
;
1538 vwrq
->flags
= IW_POWER_PERIOD
;
1540 vwrq
->value
= duration
* level
/ 4;
1541 vwrq
->flags
= IW_POWER_TIMEOUT
;
1544 if (vwrq
->flags
& IW_POWER_MODE
) {
1545 if (enabled
&& level
)
1546 vwrq
->flags
= IW_POWER_UNICAST_R
;
1548 vwrq
->flags
= IW_POWER_ALL_R
;
1555 static const iw_handler zd1201_iw_handler
[] =
1557 (iw_handler
) zd1201_config_commit
, /* SIOCSIWCOMMIT */
1558 (iw_handler
) zd1201_get_name
, /* SIOCGIWNAME */
1559 (iw_handler
) NULL
, /* SIOCSIWNWID */
1560 (iw_handler
) NULL
, /* SIOCGIWNWID */
1561 (iw_handler
) zd1201_set_freq
, /* SIOCSIWFREQ */
1562 (iw_handler
) zd1201_get_freq
, /* SIOCGIWFREQ */
1563 (iw_handler
) zd1201_set_mode
, /* SIOCSIWMODE */
1564 (iw_handler
) zd1201_get_mode
, /* SIOCGIWMODE */
1565 (iw_handler
) NULL
, /* SIOCSIWSENS */
1566 (iw_handler
) NULL
, /* SIOCGIWSENS */
1567 (iw_handler
) NULL
, /* SIOCSIWRANGE */
1568 (iw_handler
) zd1201_get_range
, /* SIOCGIWRANGE */
1569 (iw_handler
) NULL
, /* SIOCSIWPRIV */
1570 (iw_handler
) NULL
, /* SIOCGIWPRIV */
1571 (iw_handler
) NULL
, /* SIOCSIWSTATS */
1572 (iw_handler
) NULL
, /* SIOCGIWSTATS */
1573 (iw_handler
) NULL
, /* SIOCSIWSPY */
1574 (iw_handler
) NULL
, /* SIOCGIWSPY */
1575 (iw_handler
) NULL
, /* -- hole -- */
1576 (iw_handler
) NULL
, /* -- hole -- */
1577 (iw_handler
) NULL
/*zd1201_set_wap*/, /* SIOCSIWAP */
1578 (iw_handler
) zd1201_get_wap
, /* SIOCGIWAP */
1579 (iw_handler
) NULL
, /* -- hole -- */
1580 (iw_handler
) NULL
, /* SIOCGIWAPLIST */
1581 (iw_handler
) zd1201_set_scan
, /* SIOCSIWSCAN */
1582 (iw_handler
) zd1201_get_scan
, /* SIOCGIWSCAN */
1583 (iw_handler
) zd1201_set_essid
, /* SIOCSIWESSID */
1584 (iw_handler
) zd1201_get_essid
, /* SIOCGIWESSID */
1585 (iw_handler
) NULL
, /* SIOCSIWNICKN */
1586 (iw_handler
) zd1201_get_nick
, /* SIOCGIWNICKN */
1587 (iw_handler
) NULL
, /* -- hole -- */
1588 (iw_handler
) NULL
, /* -- hole -- */
1589 (iw_handler
) zd1201_set_rate
, /* SIOCSIWRATE */
1590 (iw_handler
) zd1201_get_rate
, /* SIOCGIWRATE */
1591 (iw_handler
) zd1201_set_rts
, /* SIOCSIWRTS */
1592 (iw_handler
) zd1201_get_rts
, /* SIOCGIWRTS */
1593 (iw_handler
) zd1201_set_frag
, /* SIOCSIWFRAG */
1594 (iw_handler
) zd1201_get_frag
, /* SIOCGIWFRAG */
1595 (iw_handler
) NULL
, /* SIOCSIWTXPOW */
1596 (iw_handler
) NULL
, /* SIOCGIWTXPOW */
1597 (iw_handler
) zd1201_set_retry
, /* SIOCSIWRETRY */
1598 (iw_handler
) zd1201_get_retry
, /* SIOCGIWRETRY */
1599 (iw_handler
) zd1201_set_encode
, /* SIOCSIWENCODE */
1600 (iw_handler
) zd1201_get_encode
, /* SIOCGIWENCODE */
1601 (iw_handler
) zd1201_set_power
, /* SIOCSIWPOWER */
1602 (iw_handler
) zd1201_get_power
, /* SIOCGIWPOWER */
1605 static int zd1201_set_hostauth(struct net_device
*dev
,
1606 struct iw_request_info
*info
, struct iw_param
*rrq
, char *extra
)
1608 struct zd1201
*zd
= netdev_priv(dev
);
1613 return zd1201_setconfig16(zd
, ZD1201_RID_CNFHOSTAUTH
, rrq
->value
);
1616 static int zd1201_get_hostauth(struct net_device
*dev
,
1617 struct iw_request_info
*info
, struct iw_param
*rrq
, char *extra
)
1619 struct zd1201
*zd
= netdev_priv(dev
);
1626 err
= zd1201_getconfig16(zd
, ZD1201_RID_CNFHOSTAUTH
, &hostauth
);
1629 rrq
->value
= hostauth
;
1635 static int zd1201_auth_sta(struct net_device
*dev
,
1636 struct iw_request_info
*info
, struct sockaddr
*sta
, char *extra
)
1638 struct zd1201
*zd
= netdev_priv(dev
);
1639 unsigned char buffer
[10];
1644 memcpy(buffer
, sta
->sa_data
, ETH_ALEN
);
1645 *(short*)(buffer
+6) = 0; /* 0==success, 1==failure */
1646 *(short*)(buffer
+8) = 0;
1648 return zd1201_setconfig(zd
, ZD1201_RID_AUTHENTICATESTA
, buffer
, 10, 1);
1651 static int zd1201_set_maxassoc(struct net_device
*dev
,
1652 struct iw_request_info
*info
, struct iw_param
*rrq
, char *extra
)
1654 struct zd1201
*zd
= netdev_priv(dev
);
1659 return zd1201_setconfig16(zd
, ZD1201_RID_CNFMAXASSOCSTATIONS
, rrq
->value
);
1662 static int zd1201_get_maxassoc(struct net_device
*dev
,
1663 struct iw_request_info
*info
, struct iw_param
*rrq
, char *extra
)
1665 struct zd1201
*zd
= netdev_priv(dev
);
1672 err
= zd1201_getconfig16(zd
, ZD1201_RID_CNFMAXASSOCSTATIONS
, &maxassoc
);
1675 rrq
->value
= maxassoc
;
1681 static const iw_handler zd1201_private_handler
[] = {
1682 (iw_handler
) zd1201_set_hostauth
, /* ZD1201SIWHOSTAUTH */
1683 (iw_handler
) zd1201_get_hostauth
, /* ZD1201GIWHOSTAUTH */
1684 (iw_handler
) zd1201_auth_sta
, /* ZD1201SIWAUTHSTA */
1685 (iw_handler
) NULL
, /* nothing to get */
1686 (iw_handler
) zd1201_set_maxassoc
, /* ZD1201SIMAXASSOC */
1687 (iw_handler
) zd1201_get_maxassoc
, /* ZD1201GIMAXASSOC */
1690 static const struct iw_priv_args zd1201_private_args
[] = {
1691 { ZD1201SIWHOSTAUTH
, IW_PRIV_TYPE_INT
| IW_PRIV_SIZE_FIXED
| 1,
1692 IW_PRIV_TYPE_NONE
, "sethostauth" },
1693 { ZD1201GIWHOSTAUTH
, IW_PRIV_TYPE_NONE
,
1694 IW_PRIV_TYPE_INT
| IW_PRIV_SIZE_FIXED
| 1, "gethostauth" },
1695 { ZD1201SIWAUTHSTA
, IW_PRIV_TYPE_ADDR
| IW_PRIV_SIZE_FIXED
| 1,
1696 IW_PRIV_TYPE_NONE
, "authstation" },
1697 { ZD1201SIWMAXASSOC
, IW_PRIV_TYPE_INT
| IW_PRIV_SIZE_FIXED
| 1,
1698 IW_PRIV_TYPE_NONE
, "setmaxassoc" },
1699 { ZD1201GIWMAXASSOC
, IW_PRIV_TYPE_NONE
,
1700 IW_PRIV_TYPE_INT
| IW_PRIV_SIZE_FIXED
| 1, "getmaxassoc" },
1703 static const struct iw_handler_def zd1201_iw_handlers
= {
1704 .num_standard
= ARRAY_SIZE(zd1201_iw_handler
),
1705 .num_private
= ARRAY_SIZE(zd1201_private_handler
),
1706 .num_private_args
= ARRAY_SIZE(zd1201_private_args
),
1707 .standard
= (iw_handler
*)zd1201_iw_handler
,
1708 .private = (iw_handler
*)zd1201_private_handler
,
1709 .private_args
= (struct iw_priv_args
*) zd1201_private_args
,
1710 .get_wireless_stats
= zd1201_get_wireless_stats
,
1713 static const struct net_device_ops zd1201_netdev_ops
= {
1714 .ndo_open
= zd1201_net_open
,
1715 .ndo_stop
= zd1201_net_stop
,
1716 .ndo_start_xmit
= zd1201_hard_start_xmit
,
1717 .ndo_tx_timeout
= zd1201_tx_timeout
,
1718 .ndo_set_rx_mode
= zd1201_set_multicast
,
1719 .ndo_set_mac_address
= zd1201_set_mac_address
,
1720 .ndo_validate_addr
= eth_validate_addr
,
1723 static int zd1201_probe(struct usb_interface
*interface
,
1724 const struct usb_device_id
*id
)
1727 struct net_device
*dev
;
1728 struct usb_device
*usb
;
1731 char buf
[IW_ESSID_MAX_SIZE
+2];
1733 usb
= interface_to_usbdev(interface
);
1735 dev
= alloc_etherdev(sizeof(*zd
));
1738 zd
= netdev_priv(dev
);
1744 init_waitqueue_head(&zd
->rxdataq
);
1745 INIT_HLIST_HEAD(&zd
->fraglist
);
1747 err
= zd1201_fw_upload(usb
, zd
->ap
);
1749 dev_err(&usb
->dev
, "zd1201 firmware upload failed: %d\n", err
);
1756 zd
->rx_urb
= usb_alloc_urb(0, GFP_KERNEL
);
1757 zd
->tx_urb
= usb_alloc_urb(0, GFP_KERNEL
);
1758 if (!zd
->rx_urb
|| !zd
->tx_urb
) {
1764 err
= zd1201_drvr_start(zd
);
1768 err
= zd1201_setconfig16(zd
, ZD1201_RID_CNFMAXDATALEN
, 2312);
1772 err
= zd1201_setconfig16(zd
, ZD1201_RID_TXRATECNTL
,
1773 ZD1201_RATEB1
| ZD1201_RATEB2
| ZD1201_RATEB5
| ZD1201_RATEB11
);
1777 dev
->netdev_ops
= &zd1201_netdev_ops
;
1778 dev
->wireless_handlers
= &zd1201_iw_handlers
;
1779 dev
->watchdog_timeo
= ZD1201_TX_TIMEOUT
;
1780 strcpy(dev
->name
, "wlan%d");
1782 err
= zd1201_getconfig(zd
, ZD1201_RID_CNFOWNMACADDR
,
1783 dev
->dev_addr
, dev
->addr_len
);
1787 /* Set wildcard essid to match zd->essid */
1788 *(__le16
*)buf
= cpu_to_le16(0);
1789 err
= zd1201_setconfig(zd
, ZD1201_RID_CNFDESIREDSSID
, buf
,
1790 IW_ESSID_MAX_SIZE
+2, 1);
1795 porttype
= ZD1201_PORTTYPE_AP
;
1797 porttype
= ZD1201_PORTTYPE_BSS
;
1798 err
= zd1201_setconfig16(zd
, ZD1201_RID_CNFPORTTYPE
, porttype
);
1802 SET_NETDEV_DEV(dev
, &usb
->dev
);
1804 err
= register_netdev(dev
);
1807 dev_info(&usb
->dev
, "%s: ZD1201 USB Wireless interface\n",
1810 usb_set_intfdata(interface
, zd
);
1811 zd1201_enable(zd
); /* zd1201 likes to startup enabled, */
1812 zd1201_disable(zd
); /* interfering with all the wifis in range */
1816 /* Leave the device in reset state */
1817 zd1201_docmd(zd
, ZD1201_CMDCODE_INIT
, 0, 0, 0);
1819 usb_free_urb(zd
->tx_urb
);
1820 usb_free_urb(zd
->rx_urb
);
1825 static void zd1201_disconnect(struct usb_interface
*interface
)
1827 struct zd1201
*zd
= usb_get_intfdata(interface
);
1828 struct hlist_node
*node2
;
1829 struct zd1201_frag
*frag
;
1833 usb_set_intfdata(interface
, NULL
);
1835 hlist_for_each_entry_safe(frag
, node2
, &zd
->fraglist
, fnode
) {
1836 hlist_del_init(&frag
->fnode
);
1837 kfree_skb(frag
->skb
);
1842 usb_kill_urb(zd
->tx_urb
);
1843 usb_free_urb(zd
->tx_urb
);
1846 usb_kill_urb(zd
->rx_urb
);
1847 usb_free_urb(zd
->rx_urb
);
1851 unregister_netdev(zd
->dev
);
1852 free_netdev(zd
->dev
);
1858 static int zd1201_suspend(struct usb_interface
*interface
,
1859 pm_message_t message
)
1861 struct zd1201
*zd
= usb_get_intfdata(interface
);
1863 netif_device_detach(zd
->dev
);
1865 zd
->was_enabled
= zd
->mac_enabled
;
1867 if (zd
->was_enabled
)
1868 return zd1201_disable(zd
);
1873 static int zd1201_resume(struct usb_interface
*interface
)
1875 struct zd1201
*zd
= usb_get_intfdata(interface
);
1877 if (!zd
|| !zd
->dev
)
1880 netif_device_attach(zd
->dev
);
1882 if (zd
->was_enabled
)
1883 return zd1201_enable(zd
);
1890 #define zd1201_suspend NULL
1891 #define zd1201_resume NULL
1895 static struct usb_driver zd1201_usb
= {
1897 .probe
= zd1201_probe
,
1898 .disconnect
= zd1201_disconnect
,
1899 .id_table
= zd1201_table
,
1900 .suspend
= zd1201_suspend
,
1901 .resume
= zd1201_resume
,
1902 .disable_hub_initiated_lpm
= 1,
1905 module_usb_driver(zd1201_usb
);