3 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation; either version 2 of the License, or
6 * (at your option) any later version.
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
13 * You should have received a copy of the GNU General Public License
14 * along with this program; if not, write to the Free Software
15 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 #include <linux/netdevice.h>
19 #include <linux/etherdevice.h>
20 #include <linux/wireless.h>
21 #include <linux/usb.h>
22 #include <linux/jiffies.h>
23 #include <net/ieee80211_radiotap.h>
28 #include "zd_ieee80211.h"
29 #include "zd_netdev.h"
33 static void ieee_init(struct ieee80211_device
*ieee
);
34 static void softmac_init(struct ieee80211softmac_device
*sm
);
35 static void set_rts_cts_work(void *d
);
36 static void set_basic_rates_work(void *d
);
38 static void housekeeping_init(struct zd_mac
*mac
);
39 static void housekeeping_enable(struct zd_mac
*mac
);
40 static void housekeeping_disable(struct zd_mac
*mac
);
42 int zd_mac_init(struct zd_mac
*mac
,
43 struct net_device
*netdev
,
44 struct usb_interface
*intf
)
46 struct ieee80211_device
*ieee
= zd_netdev_ieee80211(netdev
);
48 memset(mac
, 0, sizeof(*mac
));
49 spin_lock_init(&mac
->lock
);
51 INIT_WORK(&mac
->set_rts_cts_work
, set_rts_cts_work
, mac
);
52 INIT_WORK(&mac
->set_basic_rates_work
, set_basic_rates_work
, mac
);
55 softmac_init(ieee80211_priv(netdev
));
56 zd_chip_init(&mac
->chip
, netdev
, intf
);
57 housekeeping_init(mac
);
61 static int reset_channel(struct zd_mac
*mac
)
65 const struct channel_range
*range
;
67 spin_lock_irqsave(&mac
->lock
, flags
);
68 range
= zd_channel_range(mac
->regdomain
);
73 mac
->requested_channel
= range
->start
;
76 spin_unlock_irqrestore(&mac
->lock
, flags
);
80 int zd_mac_init_hw(struct zd_mac
*mac
, u8 device_type
)
83 struct zd_chip
*chip
= &mac
->chip
;
87 r
= zd_chip_enable_int(chip
);
90 r
= zd_chip_init_hw(chip
, device_type
);
94 zd_get_e2p_mac_addr(chip
, addr
);
95 r
= zd_write_mac_addr(chip
, addr
);
98 ZD_ASSERT(!irqs_disabled());
99 spin_lock_irq(&mac
->lock
);
100 memcpy(mac
->netdev
->dev_addr
, addr
, ETH_ALEN
);
101 spin_unlock_irq(&mac
->lock
);
103 r
= zd_read_regdomain(chip
, &default_regdomain
);
106 if (!zd_regdomain_supported(default_regdomain
)) {
107 dev_dbg_f(zd_mac_dev(mac
),
108 "Regulatory Domain %#04x is not supported.\n",
113 spin_lock_irq(&mac
->lock
);
114 mac
->regdomain
= mac
->default_regdomain
= default_regdomain
;
115 spin_unlock_irq(&mac
->lock
);
116 r
= reset_channel(mac
);
120 /* We must inform the device that we are doing encryption/decryption in
121 * software at the moment. */
122 r
= zd_set_encryption_type(chip
, ENC_SNIFFER
);
126 r
= zd_geo_init(zd_mac_to_ieee80211(mac
), mac
->regdomain
);
132 zd_chip_disable_int(chip
);
137 void zd_mac_clear(struct zd_mac
*mac
)
139 zd_chip_clear(&mac
->chip
);
140 ZD_ASSERT(!spin_is_locked(&mac
->lock
));
141 ZD_MEMCLEAR(mac
, sizeof(struct zd_mac
));
144 static int reset_mode(struct zd_mac
*mac
)
146 struct ieee80211_device
*ieee
= zd_mac_to_ieee80211(mac
);
147 struct zd_ioreq32 ioreqs
[3] = {
148 { CR_RX_FILTER
, STA_RX_FILTER
},
149 { CR_SNIFFER_ON
, 0U },
152 if (ieee
->iw_mode
== IW_MODE_MONITOR
) {
153 ioreqs
[0].value
= 0xffffffff;
154 ioreqs
[1].value
= 0x1;
155 ioreqs
[2].value
= ENC_SNIFFER
;
158 return zd_iowrite32a(&mac
->chip
, ioreqs
, 3);
161 int zd_mac_open(struct net_device
*netdev
)
163 struct zd_mac
*mac
= zd_netdev_mac(netdev
);
164 struct zd_chip
*chip
= &mac
->chip
;
167 r
= zd_chip_enable_int(chip
);
171 r
= zd_chip_set_basic_rates(chip
, CR_RATES_80211B
| CR_RATES_80211G
);
177 r
= zd_chip_switch_radio_on(chip
);
180 r
= zd_chip_set_channel(chip
, mac
->requested_channel
);
183 r
= zd_chip_enable_rx(chip
);
186 r
= zd_chip_enable_hwint(chip
);
190 housekeeping_enable(mac
);
191 ieee80211softmac_start(netdev
);
194 zd_chip_disable_rx(chip
);
196 zd_chip_switch_radio_off(chip
);
198 zd_chip_disable_int(chip
);
203 int zd_mac_stop(struct net_device
*netdev
)
205 struct zd_mac
*mac
= zd_netdev_mac(netdev
);
206 struct zd_chip
*chip
= &mac
->chip
;
208 netif_stop_queue(netdev
);
211 * The order here deliberately is a little different from the open()
212 * method, since we need to make sure there is no opportunity for RX
213 * frames to be processed by softmac after we have stopped it.
216 zd_chip_disable_rx(chip
);
217 housekeeping_disable(mac
);
218 ieee80211softmac_stop(netdev
);
220 /* Ensure no work items are running or queued from this point */
221 cancel_delayed_work(&mac
->set_rts_cts_work
);
222 cancel_delayed_work(&mac
->set_basic_rates_work
);
223 flush_workqueue(zd_workqueue
);
224 mac
->updating_rts_rate
= 0;
225 mac
->updating_basic_rates
= 0;
227 zd_chip_disable_hwint(chip
);
228 zd_chip_switch_radio_off(chip
);
229 zd_chip_disable_int(chip
);
234 int zd_mac_set_mac_address(struct net_device
*netdev
, void *p
)
238 struct sockaddr
*addr
= p
;
239 struct zd_mac
*mac
= zd_netdev_mac(netdev
);
240 struct zd_chip
*chip
= &mac
->chip
;
242 if (!is_valid_ether_addr(addr
->sa_data
))
243 return -EADDRNOTAVAIL
;
245 dev_dbg_f(zd_mac_dev(mac
),
246 "Setting MAC to " MAC_FMT
"\n", MAC_ARG(addr
->sa_data
));
248 r
= zd_write_mac_addr(chip
, addr
->sa_data
);
252 spin_lock_irqsave(&mac
->lock
, flags
);
253 memcpy(netdev
->dev_addr
, addr
->sa_data
, ETH_ALEN
);
254 spin_unlock_irqrestore(&mac
->lock
, flags
);
259 int zd_mac_set_regdomain(struct zd_mac
*mac
, u8 regdomain
)
264 ZD_ASSERT(!irqs_disabled());
265 spin_lock_irq(&mac
->lock
);
266 if (regdomain
== 0) {
267 regdomain
= mac
->default_regdomain
;
269 if (!zd_regdomain_supported(regdomain
)) {
270 spin_unlock_irq(&mac
->lock
);
273 mac
->regdomain
= regdomain
;
274 channel
= mac
->requested_channel
;
275 spin_unlock_irq(&mac
->lock
);
277 r
= zd_geo_init(zd_mac_to_ieee80211(mac
), regdomain
);
280 if (!zd_regdomain_supports_channel(regdomain
, channel
)) {
281 r
= reset_channel(mac
);
289 u8
zd_mac_get_regdomain(struct zd_mac
*mac
)
294 spin_lock_irqsave(&mac
->lock
, flags
);
295 regdomain
= mac
->regdomain
;
296 spin_unlock_irqrestore(&mac
->lock
, flags
);
300 /* Fallback to lowest rate, if rate is unknown. */
301 static u8
rate_to_zd_rate(u8 rate
)
304 case IEEE80211_CCK_RATE_2MB
:
305 return ZD_CCK_RATE_2M
;
306 case IEEE80211_CCK_RATE_5MB
:
307 return ZD_CCK_RATE_5_5M
;
308 case IEEE80211_CCK_RATE_11MB
:
309 return ZD_CCK_RATE_11M
;
310 case IEEE80211_OFDM_RATE_6MB
:
311 return ZD_OFDM_RATE_6M
;
312 case IEEE80211_OFDM_RATE_9MB
:
313 return ZD_OFDM_RATE_9M
;
314 case IEEE80211_OFDM_RATE_12MB
:
315 return ZD_OFDM_RATE_12M
;
316 case IEEE80211_OFDM_RATE_18MB
:
317 return ZD_OFDM_RATE_18M
;
318 case IEEE80211_OFDM_RATE_24MB
:
319 return ZD_OFDM_RATE_24M
;
320 case IEEE80211_OFDM_RATE_36MB
:
321 return ZD_OFDM_RATE_36M
;
322 case IEEE80211_OFDM_RATE_48MB
:
323 return ZD_OFDM_RATE_48M
;
324 case IEEE80211_OFDM_RATE_54MB
:
325 return ZD_OFDM_RATE_54M
;
327 return ZD_CCK_RATE_1M
;
330 static u16
rate_to_cr_rate(u8 rate
)
333 case IEEE80211_CCK_RATE_2MB
:
335 case IEEE80211_CCK_RATE_5MB
:
337 case IEEE80211_CCK_RATE_11MB
:
339 case IEEE80211_OFDM_RATE_6MB
:
341 case IEEE80211_OFDM_RATE_9MB
:
343 case IEEE80211_OFDM_RATE_12MB
:
345 case IEEE80211_OFDM_RATE_18MB
:
347 case IEEE80211_OFDM_RATE_24MB
:
349 case IEEE80211_OFDM_RATE_36MB
:
351 case IEEE80211_OFDM_RATE_48MB
:
353 case IEEE80211_OFDM_RATE_54MB
:
359 static void try_enable_tx(struct zd_mac
*mac
)
363 spin_lock_irqsave(&mac
->lock
, flags
);
364 if (mac
->updating_rts_rate
== 0 && mac
->updating_basic_rates
== 0)
365 netif_wake_queue(mac
->netdev
);
366 spin_unlock_irqrestore(&mac
->lock
, flags
);
369 static void set_rts_cts_work(void *d
)
371 struct zd_mac
*mac
= d
;
374 unsigned int short_preamble
;
376 mutex_lock(&mac
->chip
.mutex
);
378 spin_lock_irqsave(&mac
->lock
, flags
);
379 mac
->updating_rts_rate
= 0;
380 rts_rate
= mac
->rts_rate
;
381 short_preamble
= mac
->short_preamble
;
382 spin_unlock_irqrestore(&mac
->lock
, flags
);
384 zd_chip_set_rts_cts_rate_locked(&mac
->chip
, rts_rate
, short_preamble
);
385 mutex_unlock(&mac
->chip
.mutex
);
390 static void set_basic_rates_work(void *d
)
392 struct zd_mac
*mac
= d
;
396 mutex_lock(&mac
->chip
.mutex
);
398 spin_lock_irqsave(&mac
->lock
, flags
);
399 mac
->updating_basic_rates
= 0;
400 basic_rates
= mac
->basic_rates
;
401 spin_unlock_irqrestore(&mac
->lock
, flags
);
403 zd_chip_set_basic_rates_locked(&mac
->chip
, basic_rates
);
404 mutex_unlock(&mac
->chip
.mutex
);
409 static void bssinfo_change(struct net_device
*netdev
, u32 changes
)
411 struct zd_mac
*mac
= zd_netdev_mac(netdev
);
412 struct ieee80211softmac_device
*softmac
= ieee80211_priv(netdev
);
413 struct ieee80211softmac_bss_info
*bssinfo
= &softmac
->bssinfo
;
414 int need_set_rts_cts
= 0;
415 int need_set_rates
= 0;
419 dev_dbg_f(zd_mac_dev(mac
), "changes: %x\n", changes
);
421 if (changes
& IEEE80211SOFTMAC_BSSINFOCHG_SHORT_PREAMBLE
) {
422 spin_lock_irqsave(&mac
->lock
, flags
);
423 mac
->short_preamble
= bssinfo
->short_preamble
;
424 spin_unlock_irqrestore(&mac
->lock
, flags
);
425 need_set_rts_cts
= 1;
428 if (changes
& IEEE80211SOFTMAC_BSSINFOCHG_RATES
) {
429 /* Set RTS rate to highest available basic rate */
430 u8 rate
= ieee80211softmac_highest_supported_rate(softmac
,
431 &bssinfo
->supported_rates
, 1);
432 rate
= rate_to_zd_rate(rate
);
434 spin_lock_irqsave(&mac
->lock
, flags
);
435 if (rate
!= mac
->rts_rate
) {
436 mac
->rts_rate
= rate
;
437 need_set_rts_cts
= 1;
439 spin_unlock_irqrestore(&mac
->lock
, flags
);
441 /* Set basic rates */
443 if (bssinfo
->supported_rates
.count
== 0) {
444 /* Allow the device to be flexible */
445 basic_rates
= CR_RATES_80211B
| CR_RATES_80211G
;
450 for (i
= 0; i
< bssinfo
->supported_rates
.count
; i
++) {
451 u16 rate
= bssinfo
->supported_rates
.rates
[i
];
452 if ((rate
& IEEE80211_BASIC_RATE_MASK
) == 0)
455 rate
&= ~IEEE80211_BASIC_RATE_MASK
;
456 basic_rates
|= rate_to_cr_rate(rate
);
459 spin_lock_irqsave(&mac
->lock
, flags
);
460 mac
->basic_rates
= basic_rates
;
461 spin_unlock_irqrestore(&mac
->lock
, flags
);
464 /* Schedule any changes we made above */
466 spin_lock_irqsave(&mac
->lock
, flags
);
467 if (need_set_rts_cts
&& !mac
->updating_rts_rate
) {
468 mac
->updating_rts_rate
= 1;
469 netif_stop_queue(mac
->netdev
);
470 queue_work(zd_workqueue
, &mac
->set_rts_cts_work
);
472 if (need_set_rates
&& !mac
->updating_basic_rates
) {
473 mac
->updating_basic_rates
= 1;
474 netif_stop_queue(mac
->netdev
);
475 queue_work(zd_workqueue
, &mac
->set_basic_rates_work
);
477 spin_unlock_irqrestore(&mac
->lock
, flags
);
480 static void set_channel(struct net_device
*netdev
, u8 channel
)
482 struct zd_mac
*mac
= zd_netdev_mac(netdev
);
484 dev_dbg_f(zd_mac_dev(mac
), "channel %d\n", channel
);
486 zd_chip_set_channel(&mac
->chip
, channel
);
489 int zd_mac_request_channel(struct zd_mac
*mac
, u8 channel
)
491 unsigned long lock_flags
;
492 struct ieee80211_device
*ieee
= zd_mac_to_ieee80211(mac
);
494 if (ieee
->iw_mode
== IW_MODE_INFRA
)
497 spin_lock_irqsave(&mac
->lock
, lock_flags
);
498 if (!zd_regdomain_supports_channel(mac
->regdomain
, channel
)) {
499 spin_unlock_irqrestore(&mac
->lock
, lock_flags
);
502 mac
->requested_channel
= channel
;
503 spin_unlock_irqrestore(&mac
->lock
, lock_flags
);
504 if (netif_running(mac
->netdev
))
505 return zd_chip_set_channel(&mac
->chip
, channel
);
510 u8
zd_mac_get_channel(struct zd_mac
*mac
)
512 u8 channel
= zd_chip_get_channel(&mac
->chip
);
514 dev_dbg_f(zd_mac_dev(mac
), "channel %u\n", channel
);
518 /* If wrong rate is given, we are falling back to the slowest rate: 1MBit/s */
519 static u8
zd_rate_typed(u8 zd_rate
)
521 static const u8 typed_rates
[16] = {
522 [ZD_CCK_RATE_1M
] = ZD_CS_CCK
|ZD_CCK_RATE_1M
,
523 [ZD_CCK_RATE_2M
] = ZD_CS_CCK
|ZD_CCK_RATE_2M
,
524 [ZD_CCK_RATE_5_5M
] = ZD_CS_CCK
|ZD_CCK_RATE_5_5M
,
525 [ZD_CCK_RATE_11M
] = ZD_CS_CCK
|ZD_CCK_RATE_11M
,
526 [ZD_OFDM_RATE_6M
] = ZD_CS_OFDM
|ZD_OFDM_RATE_6M
,
527 [ZD_OFDM_RATE_9M
] = ZD_CS_OFDM
|ZD_OFDM_RATE_9M
,
528 [ZD_OFDM_RATE_12M
] = ZD_CS_OFDM
|ZD_OFDM_RATE_12M
,
529 [ZD_OFDM_RATE_18M
] = ZD_CS_OFDM
|ZD_OFDM_RATE_18M
,
530 [ZD_OFDM_RATE_24M
] = ZD_CS_OFDM
|ZD_OFDM_RATE_24M
,
531 [ZD_OFDM_RATE_36M
] = ZD_CS_OFDM
|ZD_OFDM_RATE_36M
,
532 [ZD_OFDM_RATE_48M
] = ZD_CS_OFDM
|ZD_OFDM_RATE_48M
,
533 [ZD_OFDM_RATE_54M
] = ZD_CS_OFDM
|ZD_OFDM_RATE_54M
,
536 ZD_ASSERT(ZD_CS_RATE_MASK
== 0x0f);
537 return typed_rates
[zd_rate
& ZD_CS_RATE_MASK
];
540 int zd_mac_set_mode(struct zd_mac
*mac
, u32 mode
)
542 struct ieee80211_device
*ieee
;
548 mac
->netdev
->type
= ARPHRD_ETHER
;
550 case IW_MODE_MONITOR
:
551 mac
->netdev
->type
= ARPHRD_IEEE80211_RADIOTAP
;
554 dev_dbg_f(zd_mac_dev(mac
), "wrong mode %u\n", mode
);
558 ieee
= zd_mac_to_ieee80211(mac
);
559 ZD_ASSERT(!irqs_disabled());
560 spin_lock_irq(&ieee
->lock
);
561 ieee
->iw_mode
= mode
;
562 spin_unlock_irq(&ieee
->lock
);
564 if (netif_running(mac
->netdev
))
565 return reset_mode(mac
);
570 int zd_mac_get_mode(struct zd_mac
*mac
, u32
*mode
)
573 struct ieee80211_device
*ieee
;
575 ieee
= zd_mac_to_ieee80211(mac
);
576 spin_lock_irqsave(&ieee
->lock
, flags
);
577 *mode
= ieee
->iw_mode
;
578 spin_unlock_irqrestore(&ieee
->lock
, flags
);
582 int zd_mac_get_range(struct zd_mac
*mac
, struct iw_range
*range
)
585 const struct channel_range
*channel_range
;
588 memset(range
, 0, sizeof(*range
));
590 /* FIXME: Not so important and depends on the mode. For 802.11g
591 * usually this value is used. It seems to be that Bit/s number is
594 range
->throughput
= 27 * 1000 * 1000;
596 range
->max_qual
.qual
= 100;
597 range
->max_qual
.level
= 100;
599 /* FIXME: Needs still to be tuned. */
600 range
->avg_qual
.qual
= 71;
601 range
->avg_qual
.level
= 80;
603 /* FIXME: depends on standard? */
604 range
->min_rts
= 256;
605 range
->max_rts
= 2346;
607 range
->min_frag
= MIN_FRAG_THRESHOLD
;
608 range
->max_frag
= MAX_FRAG_THRESHOLD
;
610 range
->max_encoding_tokens
= WEP_KEYS
;
611 range
->num_encoding_sizes
= 2;
612 range
->encoding_size
[0] = 5;
613 range
->encoding_size
[1] = WEP_KEY_LEN
;
615 range
->we_version_compiled
= WIRELESS_EXT
;
616 range
->we_version_source
= 20;
618 ZD_ASSERT(!irqs_disabled());
619 spin_lock_irq(&mac
->lock
);
620 regdomain
= mac
->regdomain
;
621 spin_unlock_irq(&mac
->lock
);
622 channel_range
= zd_channel_range(regdomain
);
624 range
->num_channels
= channel_range
->end
- channel_range
->start
;
625 range
->old_num_channels
= range
->num_channels
;
626 range
->num_frequency
= range
->num_channels
;
627 range
->old_num_frequency
= range
->num_frequency
;
629 for (i
= 0; i
< range
->num_frequency
; i
++) {
630 struct iw_freq
*freq
= &range
->freq
[i
];
631 freq
->i
= channel_range
->start
+ i
;
632 zd_channel_to_freq(freq
, freq
->i
);
638 static int zd_calc_tx_length_us(u8
*service
, u8 zd_rate
, u16 tx_length
)
640 static const u8 rate_divisor
[] = {
641 [ZD_CCK_RATE_1M
] = 1,
642 [ZD_CCK_RATE_2M
] = 2,
643 [ZD_CCK_RATE_5_5M
] = 11, /* bits must be doubled */
644 [ZD_CCK_RATE_11M
] = 11,
645 [ZD_OFDM_RATE_6M
] = 6,
646 [ZD_OFDM_RATE_9M
] = 9,
647 [ZD_OFDM_RATE_12M
] = 12,
648 [ZD_OFDM_RATE_18M
] = 18,
649 [ZD_OFDM_RATE_24M
] = 24,
650 [ZD_OFDM_RATE_36M
] = 36,
651 [ZD_OFDM_RATE_48M
] = 48,
652 [ZD_OFDM_RATE_54M
] = 54,
655 u32 bits
= (u32
)tx_length
* 8;
658 divisor
= rate_divisor
[zd_rate
];
663 case ZD_CCK_RATE_5_5M
:
664 bits
= (2*bits
) + 10; /* round up to the next integer */
666 case ZD_CCK_RATE_11M
:
669 *service
&= ~ZD_PLCP_SERVICE_LENGTH_EXTENSION
;
670 if (0 < t
&& t
<= 3) {
671 *service
|= ZD_PLCP_SERVICE_LENGTH_EXTENSION
;
674 bits
+= 10; /* round up to the next integer */
682 R2M_SHORT_PREAMBLE
= 0x01,
686 static u8
zd_rate_to_modulation(u8 zd_rate
, int flags
)
690 modulation
= zd_rate_typed(zd_rate
);
691 if (flags
& R2M_SHORT_PREAMBLE
) {
692 switch (ZD_CS_RATE(modulation
)) {
694 case ZD_CCK_RATE_5_5M
:
695 case ZD_CCK_RATE_11M
:
696 modulation
|= ZD_CS_CCK_PREA_SHORT
;
700 if (flags
& R2M_11A
) {
701 if (ZD_CS_TYPE(modulation
) == ZD_CS_OFDM
)
702 modulation
|= ZD_CS_OFDM_MODE_11A
;
707 static void cs_set_modulation(struct zd_mac
*mac
, struct zd_ctrlset
*cs
,
708 struct ieee80211_hdr_4addr
*hdr
)
710 struct ieee80211softmac_device
*softmac
= ieee80211_priv(mac
->netdev
);
711 u16 ftype
= WLAN_FC_GET_TYPE(le16_to_cpu(hdr
->frame_ctl
));
713 int is_mgt
= (ftype
== IEEE80211_FTYPE_MGMT
) != 0;
714 int is_multicast
= is_multicast_ether_addr(hdr
->addr1
);
715 int short_preamble
= ieee80211softmac_short_preamble_ok(softmac
,
716 is_multicast
, is_mgt
);
719 /* FIXME: 802.11a? */
720 rate
= ieee80211softmac_suggest_txrate(softmac
, is_multicast
, is_mgt
);
723 flags
|= R2M_SHORT_PREAMBLE
;
725 zd_rate
= rate_to_zd_rate(rate
);
726 cs
->modulation
= zd_rate_to_modulation(zd_rate
, flags
);
729 static void cs_set_control(struct zd_mac
*mac
, struct zd_ctrlset
*cs
,
730 struct ieee80211_hdr_4addr
*header
)
732 struct ieee80211softmac_device
*softmac
= ieee80211_priv(mac
->netdev
);
733 unsigned int tx_length
= le16_to_cpu(cs
->tx_length
);
734 u16 fctl
= le16_to_cpu(header
->frame_ctl
);
735 u16 ftype
= WLAN_FC_GET_TYPE(fctl
);
736 u16 stype
= WLAN_FC_GET_STYPE(fctl
);
740 * - if backoff needed, enable bit 0
741 * - if burst (backoff not needed) disable bit 0
747 if (WLAN_GET_SEQ_FRAG(le16_to_cpu(header
->seq_ctl
)) == 0)
748 cs
->control
|= ZD_CS_NEED_RANDOM_BACKOFF
;
751 if (is_multicast_ether_addr(header
->addr1
))
752 cs
->control
|= ZD_CS_MULTICAST
;
755 if (stype
== IEEE80211_STYPE_PSPOLL
)
756 cs
->control
|= ZD_CS_PS_POLL_FRAME
;
758 /* Unicast data frames over the threshold should have RTS */
759 if (!is_multicast_ether_addr(header
->addr1
) &&
760 ftype
!= IEEE80211_FTYPE_MGMT
&&
761 tx_length
> zd_netdev_ieee80211(mac
->netdev
)->rts
)
762 cs
->control
|= ZD_CS_RTS
;
764 /* Use CTS-to-self protection if required */
765 if (ZD_CS_TYPE(cs
->modulation
) == ZD_CS_OFDM
&&
766 ieee80211softmac_protection_needed(softmac
)) {
767 /* FIXME: avoid sending RTS *and* self-CTS, is that correct? */
768 cs
->control
&= ~ZD_CS_RTS
;
769 cs
->control
|= ZD_CS_SELF_CTS
;
772 /* FIXME: Management frame? */
775 static int fill_ctrlset(struct zd_mac
*mac
,
776 struct ieee80211_txb
*txb
,
780 struct sk_buff
*skb
= txb
->fragments
[frag_num
];
781 struct ieee80211_hdr_4addr
*hdr
=
782 (struct ieee80211_hdr_4addr
*) skb
->data
;
783 unsigned int frag_len
= skb
->len
+ IEEE80211_FCS_LEN
;
784 unsigned int next_frag_len
;
785 unsigned int packet_length
;
786 struct zd_ctrlset
*cs
= (struct zd_ctrlset
*)
787 skb_push(skb
, sizeof(struct zd_ctrlset
));
789 if (frag_num
+1 < txb
->nr_frags
) {
790 next_frag_len
= txb
->fragments
[frag_num
+1]->len
+
795 ZD_ASSERT(frag_len
<= 0xffff);
796 ZD_ASSERT(next_frag_len
<= 0xffff);
798 cs_set_modulation(mac
, cs
, hdr
);
800 cs
->tx_length
= cpu_to_le16(frag_len
);
802 cs_set_control(mac
, cs
, hdr
);
804 packet_length
= frag_len
+ sizeof(struct zd_ctrlset
) + 10;
805 ZD_ASSERT(packet_length
<= 0xffff);
806 /* ZD1211B: Computing the length difference this way, gives us
807 * flexibility to compute the packet length.
809 cs
->packet_length
= cpu_to_le16(mac
->chip
.is_zd1211b
?
810 packet_length
- frag_len
: packet_length
);
814 * - transmit frame length in microseconds
815 * - seems to be derived from frame length
816 * - see Cal_Us_Service() in zdinlinef.h
817 * - if macp->bTxBurstEnable is enabled, then multiply by 4
818 * - bTxBurstEnable is never set in the vendor driver
821 * - "for PLCP configuration"
822 * - always 0 except in some situations at 802.11b 11M
823 * - see line 53 of zdinlinef.h
826 r
= zd_calc_tx_length_us(&cs
->service
, ZD_CS_RATE(cs
->modulation
),
827 le16_to_cpu(cs
->tx_length
));
830 cs
->current_length
= cpu_to_le16(r
);
832 if (next_frag_len
== 0) {
833 cs
->next_frame_length
= 0;
835 r
= zd_calc_tx_length_us(NULL
, ZD_CS_RATE(cs
->modulation
),
839 cs
->next_frame_length
= cpu_to_le16(r
);
845 static int zd_mac_tx(struct zd_mac
*mac
, struct ieee80211_txb
*txb
, int pri
)
849 for (i
= 0; i
< txb
->nr_frags
; i
++) {
850 struct sk_buff
*skb
= txb
->fragments
[i
];
852 r
= fill_ctrlset(mac
, txb
, i
);
855 r
= zd_usb_tx(&mac
->chip
.usb
, skb
->data
, skb
->len
);
860 /* FIXME: shouldn't this be handled by the upper layers? */
861 mac
->netdev
->trans_start
= jiffies
;
863 ieee80211_txb_free(txb
);
868 struct ieee80211_radiotap_header rt_hdr
;
873 } __attribute__((packed
));
875 static void fill_rt_header(void *buffer
, struct zd_mac
*mac
,
876 const struct ieee80211_rx_stats
*stats
,
877 const struct rx_status
*status
)
879 struct zd_rt_hdr
*hdr
= buffer
;
881 hdr
->rt_hdr
.it_version
= PKTHDR_RADIOTAP_VERSION
;
882 hdr
->rt_hdr
.it_pad
= 0;
883 hdr
->rt_hdr
.it_len
= cpu_to_le16(sizeof(struct zd_rt_hdr
));
884 hdr
->rt_hdr
.it_present
= cpu_to_le32((1 << IEEE80211_RADIOTAP_FLAGS
) |
885 (1 << IEEE80211_RADIOTAP_CHANNEL
) |
886 (1 << IEEE80211_RADIOTAP_RATE
));
889 if (status
->decryption_type
& (ZD_RX_WEP64
|ZD_RX_WEP128
|ZD_RX_WEP256
))
890 hdr
->rt_flags
|= IEEE80211_RADIOTAP_F_WEP
;
892 hdr
->rt_rate
= stats
->rate
/ 5;
895 hdr
->rt_channel
= cpu_to_le16(ieee80211chan2mhz(
896 _zd_chip_get_channel(&mac
->chip
)));
897 hdr
->rt_chbitmask
= cpu_to_le16(IEEE80211_CHAN_2GHZ
|
898 ((status
->frame_status
& ZD_RX_FRAME_MODULATION_MASK
) ==
899 ZD_RX_OFDM
? IEEE80211_CHAN_OFDM
: IEEE80211_CHAN_CCK
));
902 /* Returns 1 if the data packet is for us and 0 otherwise. */
903 static int is_data_packet_for_us(struct ieee80211_device
*ieee
,
904 struct ieee80211_hdr_4addr
*hdr
)
906 struct net_device
*netdev
= ieee
->dev
;
907 u16 fc
= le16_to_cpu(hdr
->frame_ctl
);
909 ZD_ASSERT(WLAN_FC_GET_TYPE(fc
) == IEEE80211_FTYPE_DATA
);
911 switch (ieee
->iw_mode
) {
913 if ((fc
& (IEEE80211_FCTL_TODS
|IEEE80211_FCTL_FROMDS
)) != 0 ||
914 memcmp(hdr
->addr3
, ieee
->bssid
, ETH_ALEN
) != 0)
919 if ((fc
& (IEEE80211_FCTL_TODS
|IEEE80211_FCTL_FROMDS
)) !=
920 IEEE80211_FCTL_FROMDS
||
921 memcmp(hdr
->addr2
, ieee
->bssid
, ETH_ALEN
) != 0)
925 ZD_ASSERT(ieee
->iw_mode
!= IW_MODE_MONITOR
);
929 return memcmp(hdr
->addr1
, netdev
->dev_addr
, ETH_ALEN
) == 0 ||
930 is_multicast_ether_addr(hdr
->addr1
) ||
931 (netdev
->flags
& IFF_PROMISC
);
934 /* Filters received packets. The function returns 1 if the packet should be
935 * forwarded to ieee80211_rx(). If the packet should be ignored the function
936 * returns 0. If an invalid packet is found the function returns -EINVAL.
938 * The function calls ieee80211_rx_mgt() directly.
940 * It has been based on ieee80211_rx_any.
942 static int filter_rx(struct ieee80211_device
*ieee
,
943 const u8
*buffer
, unsigned int length
,
944 struct ieee80211_rx_stats
*stats
)
946 struct ieee80211_hdr_4addr
*hdr
;
949 if (ieee
->iw_mode
== IW_MODE_MONITOR
)
952 hdr
= (struct ieee80211_hdr_4addr
*)buffer
;
953 fc
= le16_to_cpu(hdr
->frame_ctl
);
954 if ((fc
& IEEE80211_FCTL_VERS
) != 0)
957 switch (WLAN_FC_GET_TYPE(fc
)) {
958 case IEEE80211_FTYPE_MGMT
:
959 if (length
< sizeof(struct ieee80211_hdr_3addr
))
961 ieee80211_rx_mgt(ieee
, hdr
, stats
);
963 case IEEE80211_FTYPE_CTL
:
965 case IEEE80211_FTYPE_DATA
:
966 /* Ignore invalid short buffers */
967 if (length
< sizeof(struct ieee80211_hdr_3addr
))
969 return is_data_packet_for_us(ieee
, hdr
);
975 static void update_qual_rssi(struct zd_mac
*mac
,
976 const u8
*buffer
, unsigned int length
,
977 u8 qual_percent
, u8 rssi_percent
)
980 struct ieee80211_hdr_3addr
*hdr
;
983 hdr
= (struct ieee80211_hdr_3addr
*)buffer
;
984 if (length
< offsetof(struct ieee80211_hdr_3addr
, addr3
))
986 if (memcmp(hdr
->addr2
, zd_mac_to_ieee80211(mac
)->bssid
, ETH_ALEN
) != 0)
989 spin_lock_irqsave(&mac
->lock
, flags
);
990 i
= mac
->stats_count
% ZD_MAC_STATS_BUFFER_SIZE
;
991 mac
->qual_buffer
[i
] = qual_percent
;
992 mac
->rssi_buffer
[i
] = rssi_percent
;
994 spin_unlock_irqrestore(&mac
->lock
, flags
);
997 static int fill_rx_stats(struct ieee80211_rx_stats
*stats
,
998 const struct rx_status
**pstatus
,
1000 const u8
*buffer
, unsigned int length
)
1002 const struct rx_status
*status
;
1004 *pstatus
= status
= zd_tail(buffer
, length
, sizeof(struct rx_status
));
1005 if (status
->frame_status
& ZD_RX_ERROR
) {
1006 /* FIXME: update? */
1009 memset(stats
, 0, sizeof(struct ieee80211_rx_stats
));
1010 stats
->len
= length
- (ZD_PLCP_HEADER_SIZE
+ IEEE80211_FCS_LEN
+
1011 + sizeof(struct rx_status
));
1012 /* FIXME: 802.11a */
1013 stats
->freq
= IEEE80211_24GHZ_BAND
;
1014 stats
->received_channel
= _zd_chip_get_channel(&mac
->chip
);
1015 stats
->rssi
= zd_rx_strength_percent(status
->signal_strength
);
1016 stats
->signal
= zd_rx_qual_percent(buffer
,
1017 length
- sizeof(struct rx_status
),
1019 stats
->mask
= IEEE80211_STATMASK_RSSI
| IEEE80211_STATMASK_SIGNAL
;
1020 stats
->rate
= zd_rx_rate(buffer
, status
);
1022 stats
->mask
|= IEEE80211_STATMASK_RATE
;
1027 int zd_mac_rx(struct zd_mac
*mac
, const u8
*buffer
, unsigned int length
)
1030 struct ieee80211_device
*ieee
= zd_mac_to_ieee80211(mac
);
1031 struct ieee80211_rx_stats stats
;
1032 const struct rx_status
*status
;
1033 struct sk_buff
*skb
;
1035 if (length
< ZD_PLCP_HEADER_SIZE
+ IEEE80211_1ADDR_LEN
+
1036 IEEE80211_FCS_LEN
+ sizeof(struct rx_status
))
1039 r
= fill_rx_stats(&stats
, &status
, mac
, buffer
, length
);
1043 length
-= ZD_PLCP_HEADER_SIZE
+IEEE80211_FCS_LEN
+
1044 sizeof(struct rx_status
);
1045 buffer
+= ZD_PLCP_HEADER_SIZE
;
1047 update_qual_rssi(mac
, buffer
, length
, stats
.signal
, stats
.rssi
);
1049 r
= filter_rx(ieee
, buffer
, length
, &stats
);
1053 skb
= dev_alloc_skb(sizeof(struct zd_rt_hdr
) + length
);
1056 if (ieee
->iw_mode
== IW_MODE_MONITOR
)
1057 fill_rt_header(skb_put(skb
, sizeof(struct zd_rt_hdr
)), mac
,
1059 memcpy(skb_put(skb
, length
), buffer
, length
);
1061 r
= ieee80211_rx(ieee
, skb
, &stats
);
1063 ZD_ASSERT(in_irq());
1064 dev_kfree_skb_irq(skb
);
1069 static int netdev_tx(struct ieee80211_txb
*txb
, struct net_device
*netdev
,
1072 return zd_mac_tx(zd_netdev_mac(netdev
), txb
, pri
);
1075 static void set_security(struct net_device
*netdev
,
1076 struct ieee80211_security
*sec
)
1078 struct ieee80211_device
*ieee
= zd_netdev_ieee80211(netdev
);
1079 struct ieee80211_security
*secinfo
= &ieee
->sec
;
1082 dev_dbg_f(zd_mac_dev(zd_netdev_mac(netdev
)), "\n");
1084 for (keyidx
= 0; keyidx
<WEP_KEYS
; keyidx
++)
1085 if (sec
->flags
& (1<<keyidx
)) {
1086 secinfo
->encode_alg
[keyidx
] = sec
->encode_alg
[keyidx
];
1087 secinfo
->key_sizes
[keyidx
] = sec
->key_sizes
[keyidx
];
1088 memcpy(secinfo
->keys
[keyidx
], sec
->keys
[keyidx
],
1092 if (sec
->flags
& SEC_ACTIVE_KEY
) {
1093 secinfo
->active_key
= sec
->active_key
;
1094 dev_dbg_f(zd_mac_dev(zd_netdev_mac(netdev
)),
1095 " .active_key = %d\n", sec
->active_key
);
1097 if (sec
->flags
& SEC_UNICAST_GROUP
) {
1098 secinfo
->unicast_uses_group
= sec
->unicast_uses_group
;
1099 dev_dbg_f(zd_mac_dev(zd_netdev_mac(netdev
)),
1100 " .unicast_uses_group = %d\n",
1101 sec
->unicast_uses_group
);
1103 if (sec
->flags
& SEC_LEVEL
) {
1104 secinfo
->level
= sec
->level
;
1105 dev_dbg_f(zd_mac_dev(zd_netdev_mac(netdev
)),
1106 " .level = %d\n", sec
->level
);
1108 if (sec
->flags
& SEC_ENABLED
) {
1109 secinfo
->enabled
= sec
->enabled
;
1110 dev_dbg_f(zd_mac_dev(zd_netdev_mac(netdev
)),
1111 " .enabled = %d\n", sec
->enabled
);
1113 if (sec
->flags
& SEC_ENCRYPT
) {
1114 secinfo
->encrypt
= sec
->encrypt
;
1115 dev_dbg_f(zd_mac_dev(zd_netdev_mac(netdev
)),
1116 " .encrypt = %d\n", sec
->encrypt
);
1118 if (sec
->flags
& SEC_AUTH_MODE
) {
1119 secinfo
->auth_mode
= sec
->auth_mode
;
1120 dev_dbg_f(zd_mac_dev(zd_netdev_mac(netdev
)),
1121 " .auth_mode = %d\n", sec
->auth_mode
);
1125 static void ieee_init(struct ieee80211_device
*ieee
)
1127 ieee
->mode
= IEEE_B
| IEEE_G
;
1128 ieee
->freq_band
= IEEE80211_24GHZ_BAND
;
1129 ieee
->modulation
= IEEE80211_OFDM_MODULATION
| IEEE80211_CCK_MODULATION
;
1130 ieee
->tx_headroom
= sizeof(struct zd_ctrlset
);
1131 ieee
->set_security
= set_security
;
1132 ieee
->hard_start_xmit
= netdev_tx
;
1134 /* Software encryption/decryption for now */
1135 ieee
->host_build_iv
= 0;
1136 ieee
->host_encrypt
= 1;
1137 ieee
->host_decrypt
= 1;
1139 /* FIXME: default to managed mode, until ieee80211 and zd1211rw can
1140 * correctly support AUTO */
1141 ieee
->iw_mode
= IW_MODE_INFRA
;
1144 static void softmac_init(struct ieee80211softmac_device
*sm
)
1146 sm
->set_channel
= set_channel
;
1147 sm
->bssinfo_change
= bssinfo_change
;
1150 struct iw_statistics
*zd_mac_get_wireless_stats(struct net_device
*ndev
)
1152 struct zd_mac
*mac
= zd_netdev_mac(ndev
);
1153 struct iw_statistics
*iw_stats
= &mac
->iw_stats
;
1154 unsigned int i
, count
, qual_total
, rssi_total
;
1156 memset(iw_stats
, 0, sizeof(struct iw_statistics
));
1157 /* We are not setting the status, because ieee->state is not updated
1158 * at all and this driver doesn't track authentication state.
1160 spin_lock_irq(&mac
->lock
);
1161 count
= mac
->stats_count
< ZD_MAC_STATS_BUFFER_SIZE
?
1162 mac
->stats_count
: ZD_MAC_STATS_BUFFER_SIZE
;
1163 qual_total
= rssi_total
= 0;
1164 for (i
= 0; i
< count
; i
++) {
1165 qual_total
+= mac
->qual_buffer
[i
];
1166 rssi_total
+= mac
->rssi_buffer
[i
];
1168 spin_unlock_irq(&mac
->lock
);
1169 iw_stats
->qual
.updated
= IW_QUAL_NOISE_INVALID
;
1171 iw_stats
->qual
.qual
= qual_total
/ count
;
1172 iw_stats
->qual
.level
= rssi_total
/ count
;
1173 iw_stats
->qual
.updated
|=
1174 IW_QUAL_QUAL_UPDATED
|IW_QUAL_LEVEL_UPDATED
;
1176 iw_stats
->qual
.updated
|=
1177 IW_QUAL_QUAL_INVALID
|IW_QUAL_LEVEL_INVALID
;
1179 /* TODO: update counter */
1183 #define LINK_LED_WORK_DELAY HZ
1185 static void link_led_handler(void *p
)
1187 struct zd_mac
*mac
= p
;
1188 struct zd_chip
*chip
= &mac
->chip
;
1189 struct ieee80211softmac_device
*sm
= ieee80211_priv(mac
->netdev
);
1193 spin_lock_irq(&mac
->lock
);
1194 is_associated
= sm
->associnfo
.associated
!= 0;
1195 spin_unlock_irq(&mac
->lock
);
1197 r
= zd_chip_control_leds(chip
,
1198 is_associated
? LED_ASSOCIATED
: LED_SCANNING
);
1200 dev_err(zd_mac_dev(mac
), "zd_chip_control_leds error %d\n", r
);
1202 queue_delayed_work(zd_workqueue
, &mac
->housekeeping
.link_led_work
,
1203 LINK_LED_WORK_DELAY
);
1206 static void housekeeping_init(struct zd_mac
*mac
)
1208 INIT_WORK(&mac
->housekeeping
.link_led_work
, link_led_handler
, mac
);
1211 static void housekeeping_enable(struct zd_mac
*mac
)
1213 dev_dbg_f(zd_mac_dev(mac
), "\n");
1214 queue_delayed_work(zd_workqueue
, &mac
->housekeeping
.link_led_work
,
1218 static void housekeeping_disable(struct zd_mac
*mac
)
1220 dev_dbg_f(zd_mac_dev(mac
), "\n");
1221 cancel_rearming_delayed_workqueue(zd_workqueue
,
1222 &mac
->housekeeping
.link_led_work
);
1223 zd_chip_control_leds(&mac
->chip
, LED_OFF
);