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
);
36 int zd_mac_init(struct zd_mac
*mac
,
37 struct net_device
*netdev
,
38 struct usb_interface
*intf
)
40 struct ieee80211_device
*ieee
= zd_netdev_ieee80211(netdev
);
42 memset(mac
, 0, sizeof(*mac
));
43 spin_lock_init(&mac
->lock
);
47 softmac_init(ieee80211_priv(netdev
));
48 zd_chip_init(&mac
->chip
, netdev
, intf
);
52 static int reset_channel(struct zd_mac
*mac
)
56 const struct channel_range
*range
;
58 spin_lock_irqsave(&mac
->lock
, flags
);
59 range
= zd_channel_range(mac
->regdomain
);
64 mac
->requested_channel
= range
->start
;
67 spin_unlock_irqrestore(&mac
->lock
, flags
);
71 int zd_mac_init_hw(struct zd_mac
*mac
, u8 device_type
)
74 struct zd_chip
*chip
= &mac
->chip
;
78 r
= zd_chip_enable_int(chip
);
81 r
= zd_chip_init_hw(chip
, device_type
);
85 zd_get_e2p_mac_addr(chip
, addr
);
86 r
= zd_write_mac_addr(chip
, addr
);
89 ZD_ASSERT(!irqs_disabled());
90 spin_lock_irq(&mac
->lock
);
91 memcpy(mac
->netdev
->dev_addr
, addr
, ETH_ALEN
);
92 spin_unlock_irq(&mac
->lock
);
94 r
= zd_read_regdomain(chip
, &default_regdomain
);
97 if (!zd_regdomain_supported(default_regdomain
)) {
98 dev_dbg_f(zd_mac_dev(mac
),
99 "Regulatory Domain %#04x is not supported.\n",
104 spin_lock_irq(&mac
->lock
);
105 mac
->regdomain
= mac
->default_regdomain
= default_regdomain
;
106 spin_unlock_irq(&mac
->lock
);
107 r
= reset_channel(mac
);
111 /* We must inform the device that we are doing encryption/decryption in
112 * software at the moment. */
113 r
= zd_set_encryption_type(chip
, ENC_SNIFFER
);
117 r
= zd_geo_init(zd_mac_to_ieee80211(mac
), mac
->regdomain
);
123 zd_chip_disable_int(chip
);
128 void zd_mac_clear(struct zd_mac
*mac
)
130 zd_chip_clear(&mac
->chip
);
131 ZD_ASSERT(!spin_is_locked(&mac
->lock
));
132 ZD_MEMCLEAR(mac
, sizeof(struct zd_mac
));
135 static int reset_mode(struct zd_mac
*mac
)
137 struct ieee80211_device
*ieee
= zd_mac_to_ieee80211(mac
);
138 struct zd_ioreq32 ioreqs
[3] = {
139 { CR_RX_FILTER
, STA_RX_FILTER
},
140 { CR_SNIFFER_ON
, 0U },
143 if (ieee
->iw_mode
== IW_MODE_MONITOR
) {
144 ioreqs
[0].value
= 0xffffffff;
145 ioreqs
[1].value
= 0x1;
146 ioreqs
[2].value
= ENC_SNIFFER
;
149 return zd_iowrite32a(&mac
->chip
, ioreqs
, 3);
152 int zd_mac_open(struct net_device
*netdev
)
154 struct zd_mac
*mac
= zd_netdev_mac(netdev
);
155 struct zd_chip
*chip
= &mac
->chip
;
158 r
= zd_chip_enable_int(chip
);
162 r
= zd_chip_set_basic_rates(chip
, CR_RATES_80211B
| CR_RATES_80211G
);
168 r
= zd_chip_switch_radio_on(chip
);
171 r
= zd_chip_set_channel(chip
, mac
->requested_channel
);
174 r
= zd_chip_enable_rx(chip
);
177 r
= zd_chip_enable_hwint(chip
);
181 ieee80211softmac_start(netdev
);
184 zd_chip_disable_rx(chip
);
186 zd_chip_switch_radio_off(chip
);
188 zd_chip_disable_int(chip
);
193 int zd_mac_stop(struct net_device
*netdev
)
195 struct zd_mac
*mac
= zd_netdev_mac(netdev
);
196 struct zd_chip
*chip
= &mac
->chip
;
198 netif_stop_queue(netdev
);
201 * The order here deliberately is a little different from the open()
202 * method, since we need to make sure there is no opportunity for RX
203 * frames to be processed by softmac after we have stopped it.
206 zd_chip_disable_rx(chip
);
207 ieee80211softmac_stop(netdev
);
209 zd_chip_disable_hwint(chip
);
210 zd_chip_switch_radio_off(chip
);
211 zd_chip_disable_int(chip
);
216 int zd_mac_set_mac_address(struct net_device
*netdev
, void *p
)
220 struct sockaddr
*addr
= p
;
221 struct zd_mac
*mac
= zd_netdev_mac(netdev
);
222 struct zd_chip
*chip
= &mac
->chip
;
224 if (!is_valid_ether_addr(addr
->sa_data
))
225 return -EADDRNOTAVAIL
;
227 dev_dbg_f(zd_mac_dev(mac
),
228 "Setting MAC to " MAC_FMT
"\n", MAC_ARG(addr
->sa_data
));
230 r
= zd_write_mac_addr(chip
, addr
->sa_data
);
234 spin_lock_irqsave(&mac
->lock
, flags
);
235 memcpy(netdev
->dev_addr
, addr
->sa_data
, ETH_ALEN
);
236 spin_unlock_irqrestore(&mac
->lock
, flags
);
241 int zd_mac_set_regdomain(struct zd_mac
*mac
, u8 regdomain
)
246 ZD_ASSERT(!irqs_disabled());
247 spin_lock_irq(&mac
->lock
);
248 if (regdomain
== 0) {
249 regdomain
= mac
->default_regdomain
;
251 if (!zd_regdomain_supported(regdomain
)) {
252 spin_unlock_irq(&mac
->lock
);
255 mac
->regdomain
= regdomain
;
256 channel
= mac
->requested_channel
;
257 spin_unlock_irq(&mac
->lock
);
259 r
= zd_geo_init(zd_mac_to_ieee80211(mac
), regdomain
);
262 if (!zd_regdomain_supports_channel(regdomain
, channel
)) {
263 r
= reset_channel(mac
);
271 u8
zd_mac_get_regdomain(struct zd_mac
*mac
)
276 spin_lock_irqsave(&mac
->lock
, flags
);
277 regdomain
= mac
->regdomain
;
278 spin_unlock_irqrestore(&mac
->lock
, flags
);
282 static void set_channel(struct net_device
*netdev
, u8 channel
)
284 struct zd_mac
*mac
= zd_netdev_mac(netdev
);
286 dev_dbg_f(zd_mac_dev(mac
), "channel %d\n", channel
);
288 zd_chip_set_channel(&mac
->chip
, channel
);
291 /* TODO: Should not work in Managed mode. */
292 int zd_mac_request_channel(struct zd_mac
*mac
, u8 channel
)
294 unsigned long lock_flags
;
295 struct ieee80211_device
*ieee
= zd_mac_to_ieee80211(mac
);
297 if (ieee
->iw_mode
== IW_MODE_INFRA
)
300 spin_lock_irqsave(&mac
->lock
, lock_flags
);
301 if (!zd_regdomain_supports_channel(mac
->regdomain
, channel
)) {
302 spin_unlock_irqrestore(&mac
->lock
, lock_flags
);
305 mac
->requested_channel
= channel
;
306 spin_unlock_irqrestore(&mac
->lock
, lock_flags
);
307 if (netif_running(mac
->netdev
))
308 return zd_chip_set_channel(&mac
->chip
, channel
);
313 int zd_mac_get_channel(struct zd_mac
*mac
, u8
*channel
, u8
*flags
)
315 struct ieee80211_device
*ieee
= zd_mac_to_ieee80211(mac
);
317 *channel
= zd_chip_get_channel(&mac
->chip
);
318 if (ieee
->iw_mode
!= IW_MODE_INFRA
) {
319 spin_lock_irq(&mac
->lock
);
320 *flags
= *channel
== mac
->requested_channel
?
321 MAC_FIXED_CHANNEL
: 0;
322 spin_unlock(&mac
->lock
);
326 dev_dbg_f(zd_mac_dev(mac
), "channel %u flags %u\n", *channel
, *flags
);
330 /* If wrong rate is given, we are falling back to the slowest rate: 1MBit/s */
331 static u8
cs_typed_rate(u8 cs_rate
)
333 static const u8 typed_rates
[16] = {
334 [ZD_CS_CCK_RATE_1M
] = ZD_CS_CCK
|ZD_CS_CCK_RATE_1M
,
335 [ZD_CS_CCK_RATE_2M
] = ZD_CS_CCK
|ZD_CS_CCK_RATE_2M
,
336 [ZD_CS_CCK_RATE_5_5M
] = ZD_CS_CCK
|ZD_CS_CCK_RATE_5_5M
,
337 [ZD_CS_CCK_RATE_11M
] = ZD_CS_CCK
|ZD_CS_CCK_RATE_11M
,
338 [ZD_OFDM_RATE_6M
] = ZD_CS_OFDM
|ZD_OFDM_RATE_6M
,
339 [ZD_OFDM_RATE_9M
] = ZD_CS_OFDM
|ZD_OFDM_RATE_9M
,
340 [ZD_OFDM_RATE_12M
] = ZD_CS_OFDM
|ZD_OFDM_RATE_12M
,
341 [ZD_OFDM_RATE_18M
] = ZD_CS_OFDM
|ZD_OFDM_RATE_18M
,
342 [ZD_OFDM_RATE_24M
] = ZD_CS_OFDM
|ZD_OFDM_RATE_24M
,
343 [ZD_OFDM_RATE_36M
] = ZD_CS_OFDM
|ZD_OFDM_RATE_36M
,
344 [ZD_OFDM_RATE_48M
] = ZD_CS_OFDM
|ZD_OFDM_RATE_48M
,
345 [ZD_OFDM_RATE_54M
] = ZD_CS_OFDM
|ZD_OFDM_RATE_54M
,
348 ZD_ASSERT(ZD_CS_RATE_MASK
== 0x0f);
349 return typed_rates
[cs_rate
& ZD_CS_RATE_MASK
];
352 /* Fallback to lowest rate, if rate is unknown. */
353 static u8
rate_to_cs_rate(u8 rate
)
356 case IEEE80211_CCK_RATE_2MB
:
357 return ZD_CS_CCK_RATE_2M
;
358 case IEEE80211_CCK_RATE_5MB
:
359 return ZD_CS_CCK_RATE_5_5M
;
360 case IEEE80211_CCK_RATE_11MB
:
361 return ZD_CS_CCK_RATE_11M
;
362 case IEEE80211_OFDM_RATE_6MB
:
363 return ZD_OFDM_RATE_6M
;
364 case IEEE80211_OFDM_RATE_9MB
:
365 return ZD_OFDM_RATE_9M
;
366 case IEEE80211_OFDM_RATE_12MB
:
367 return ZD_OFDM_RATE_12M
;
368 case IEEE80211_OFDM_RATE_18MB
:
369 return ZD_OFDM_RATE_18M
;
370 case IEEE80211_OFDM_RATE_24MB
:
371 return ZD_OFDM_RATE_24M
;
372 case IEEE80211_OFDM_RATE_36MB
:
373 return ZD_OFDM_RATE_36M
;
374 case IEEE80211_OFDM_RATE_48MB
:
375 return ZD_OFDM_RATE_48M
;
376 case IEEE80211_OFDM_RATE_54MB
:
377 return ZD_OFDM_RATE_54M
;
379 return ZD_CS_CCK_RATE_1M
;
382 int zd_mac_set_mode(struct zd_mac
*mac
, u32 mode
)
384 struct ieee80211_device
*ieee
;
390 mac
->netdev
->type
= ARPHRD_ETHER
;
392 case IW_MODE_MONITOR
:
393 mac
->netdev
->type
= ARPHRD_IEEE80211_RADIOTAP
;
396 dev_dbg_f(zd_mac_dev(mac
), "wrong mode %u\n", mode
);
400 ieee
= zd_mac_to_ieee80211(mac
);
401 ZD_ASSERT(!irqs_disabled());
402 spin_lock_irq(&ieee
->lock
);
403 ieee
->iw_mode
= mode
;
404 spin_unlock_irq(&ieee
->lock
);
406 if (netif_running(mac
->netdev
))
407 return reset_mode(mac
);
412 int zd_mac_get_mode(struct zd_mac
*mac
, u32
*mode
)
415 struct ieee80211_device
*ieee
;
417 ieee
= zd_mac_to_ieee80211(mac
);
418 spin_lock_irqsave(&ieee
->lock
, flags
);
419 *mode
= ieee
->iw_mode
;
420 spin_unlock_irqrestore(&ieee
->lock
, flags
);
424 int zd_mac_get_range(struct zd_mac
*mac
, struct iw_range
*range
)
427 const struct channel_range
*channel_range
;
430 memset(range
, 0, sizeof(*range
));
432 /* FIXME: Not so important and depends on the mode. For 802.11g
433 * usually this value is used. It seems to be that Bit/s number is
436 range
->throughput
= 27 * 1000 * 1000;
438 range
->max_qual
.qual
= 100;
439 range
->max_qual
.level
= 100;
441 /* FIXME: Needs still to be tuned. */
442 range
->avg_qual
.qual
= 71;
443 range
->avg_qual
.level
= 80;
445 /* FIXME: depends on standard? */
446 range
->min_rts
= 256;
447 range
->max_rts
= 2346;
449 range
->min_frag
= MIN_FRAG_THRESHOLD
;
450 range
->max_frag
= MAX_FRAG_THRESHOLD
;
452 range
->max_encoding_tokens
= WEP_KEYS
;
453 range
->num_encoding_sizes
= 2;
454 range
->encoding_size
[0] = 5;
455 range
->encoding_size
[1] = WEP_KEY_LEN
;
457 range
->we_version_compiled
= WIRELESS_EXT
;
458 range
->we_version_source
= 20;
460 ZD_ASSERT(!irqs_disabled());
461 spin_lock_irq(&mac
->lock
);
462 regdomain
= mac
->regdomain
;
463 spin_unlock_irq(&mac
->lock
);
464 channel_range
= zd_channel_range(regdomain
);
466 range
->num_channels
= channel_range
->end
- channel_range
->start
;
467 range
->old_num_channels
= range
->num_channels
;
468 range
->num_frequency
= range
->num_channels
;
469 range
->old_num_frequency
= range
->num_frequency
;
471 for (i
= 0; i
< range
->num_frequency
; i
++) {
472 struct iw_freq
*freq
= &range
->freq
[i
];
473 freq
->i
= channel_range
->start
+ i
;
474 zd_channel_to_freq(freq
, freq
->i
);
480 static int zd_calc_tx_length_us(u8
*service
, u8 cs_rate
, u16 tx_length
)
482 static const u8 rate_divisor
[] = {
483 [ZD_CS_CCK_RATE_1M
] = 1,
484 [ZD_CS_CCK_RATE_2M
] = 2,
485 [ZD_CS_CCK_RATE_5_5M
] = 11, /* bits must be doubled */
486 [ZD_CS_CCK_RATE_11M
] = 11,
487 [ZD_OFDM_RATE_6M
] = 6,
488 [ZD_OFDM_RATE_9M
] = 9,
489 [ZD_OFDM_RATE_12M
] = 12,
490 [ZD_OFDM_RATE_18M
] = 18,
491 [ZD_OFDM_RATE_24M
] = 24,
492 [ZD_OFDM_RATE_36M
] = 36,
493 [ZD_OFDM_RATE_48M
] = 48,
494 [ZD_OFDM_RATE_54M
] = 54,
497 u32 bits
= (u32
)tx_length
* 8;
500 divisor
= rate_divisor
[cs_rate
];
505 case ZD_CS_CCK_RATE_5_5M
:
506 bits
= (2*bits
) + 10; /* round up to the next integer */
508 case ZD_CS_CCK_RATE_11M
:
511 *service
&= ~ZD_PLCP_SERVICE_LENGTH_EXTENSION
;
512 if (0 < t
&& t
<= 3) {
513 *service
|= ZD_PLCP_SERVICE_LENGTH_EXTENSION
;
516 bits
+= 10; /* round up to the next integer */
524 R2M_SHORT_PREAMBLE
= 0x01,
528 static u8
cs_rate_to_modulation(u8 cs_rate
, int flags
)
532 modulation
= cs_typed_rate(cs_rate
);
533 if (flags
& R2M_SHORT_PREAMBLE
) {
534 switch (ZD_CS_RATE(modulation
)) {
535 case ZD_CS_CCK_RATE_2M
:
536 case ZD_CS_CCK_RATE_5_5M
:
537 case ZD_CS_CCK_RATE_11M
:
538 modulation
|= ZD_CS_CCK_PREA_SHORT
;
542 if (flags
& R2M_11A
) {
543 if (ZD_CS_TYPE(modulation
) == ZD_CS_OFDM
)
544 modulation
|= ZD_CS_OFDM_MODE_11A
;
549 static void cs_set_modulation(struct zd_mac
*mac
, struct zd_ctrlset
*cs
,
550 struct ieee80211_hdr_4addr
*hdr
)
552 struct ieee80211softmac_device
*softmac
= ieee80211_priv(mac
->netdev
);
553 u16 ftype
= WLAN_FC_GET_TYPE(le16_to_cpu(hdr
->frame_ctl
));
555 int is_mgt
= (ftype
== IEEE80211_FTYPE_MGMT
) != 0;
557 /* FIXME: 802.11a? short preamble? */
558 rate
= ieee80211softmac_suggest_txrate(softmac
,
559 is_multicast_ether_addr(hdr
->addr1
), is_mgt
);
561 cs_rate
= rate_to_cs_rate(rate
);
562 cs
->modulation
= cs_rate_to_modulation(cs_rate
, 0);
565 static void cs_set_control(struct zd_mac
*mac
, struct zd_ctrlset
*cs
,
566 struct ieee80211_hdr_4addr
*header
)
568 unsigned int tx_length
= le16_to_cpu(cs
->tx_length
);
569 u16 fctl
= le16_to_cpu(header
->frame_ctl
);
570 u16 ftype
= WLAN_FC_GET_TYPE(fctl
);
571 u16 stype
= WLAN_FC_GET_STYPE(fctl
);
576 * - if fragment 0, enable bit 0
577 * - if backoff needed, enable bit 0
578 * - if burst (backoff not needed) disable bit 0
579 * - if multicast, enable bit 1
580 * - if PS-POLL frame, enable bit 2
581 * - if in INDEPENDENT_BSS mode and zd1205_DestPowerSave, then enable
583 * - if frag_len > RTS threshold, set bit 5 as long if it isnt
585 * - if bit 5 is set, and we are in OFDM mode, unset bit 5 and set bit
592 if (WLAN_GET_SEQ_FRAG(le16_to_cpu(header
->seq_ctl
)) == 0)
593 cs
->control
|= ZD_CS_NEED_RANDOM_BACKOFF
;
596 if (is_multicast_ether_addr(header
->addr1
))
597 cs
->control
|= ZD_CS_MULTICAST
;
600 if (stype
== IEEE80211_STYPE_PSPOLL
)
601 cs
->control
|= ZD_CS_PS_POLL_FRAME
;
603 if (!is_multicast_ether_addr(header
->addr1
) &&
604 ftype
!= IEEE80211_FTYPE_MGMT
&&
605 tx_length
> zd_netdev_ieee80211(mac
->netdev
)->rts
)
607 /* FIXME: check the logic */
608 if (ZD_CS_TYPE(cs
->modulation
) == ZD_CS_OFDM
) {
610 cs
->control
|= ZD_CS_SELF_CTS
;
611 } else { /* 802.11b */
612 cs
->control
|= ZD_CS_RTS
;
616 /* FIXME: Management frame? */
619 static int fill_ctrlset(struct zd_mac
*mac
,
620 struct ieee80211_txb
*txb
,
624 struct sk_buff
*skb
= txb
->fragments
[frag_num
];
625 struct ieee80211_hdr_4addr
*hdr
=
626 (struct ieee80211_hdr_4addr
*) skb
->data
;
627 unsigned int frag_len
= skb
->len
+ IEEE80211_FCS_LEN
;
628 unsigned int next_frag_len
;
629 unsigned int packet_length
;
630 struct zd_ctrlset
*cs
= (struct zd_ctrlset
*)
631 skb_push(skb
, sizeof(struct zd_ctrlset
));
633 if (frag_num
+1 < txb
->nr_frags
) {
634 next_frag_len
= txb
->fragments
[frag_num
+1]->len
+
639 ZD_ASSERT(frag_len
<= 0xffff);
640 ZD_ASSERT(next_frag_len
<= 0xffff);
642 cs_set_modulation(mac
, cs
, hdr
);
644 cs
->tx_length
= cpu_to_le16(frag_len
);
646 cs_set_control(mac
, cs
, hdr
);
648 packet_length
= frag_len
+ sizeof(struct zd_ctrlset
) + 10;
649 ZD_ASSERT(packet_length
<= 0xffff);
650 /* ZD1211B: Computing the length difference this way, gives us
651 * flexibility to compute the packet length.
653 cs
->packet_length
= cpu_to_le16(mac
->chip
.is_zd1211b
?
654 packet_length
- frag_len
: packet_length
);
658 * - transmit frame length in microseconds
659 * - seems to be derived from frame length
660 * - see Cal_Us_Service() in zdinlinef.h
661 * - if macp->bTxBurstEnable is enabled, then multiply by 4
662 * - bTxBurstEnable is never set in the vendor driver
665 * - "for PLCP configuration"
666 * - always 0 except in some situations at 802.11b 11M
667 * - see line 53 of zdinlinef.h
670 r
= zd_calc_tx_length_us(&cs
->service
, ZD_CS_RATE(cs
->modulation
),
671 le16_to_cpu(cs
->tx_length
));
674 cs
->current_length
= cpu_to_le16(r
);
676 if (next_frag_len
== 0) {
677 cs
->next_frame_length
= 0;
679 r
= zd_calc_tx_length_us(NULL
, ZD_CS_RATE(cs
->modulation
),
683 cs
->next_frame_length
= cpu_to_le16(r
);
689 static int zd_mac_tx(struct zd_mac
*mac
, struct ieee80211_txb
*txb
, int pri
)
693 for (i
= 0; i
< txb
->nr_frags
; i
++) {
694 struct sk_buff
*skb
= txb
->fragments
[i
];
696 r
= fill_ctrlset(mac
, txb
, i
);
699 r
= zd_usb_tx(&mac
->chip
.usb
, skb
->data
, skb
->len
);
704 /* FIXME: shouldn't this be handled by the upper layers? */
705 mac
->netdev
->trans_start
= jiffies
;
707 ieee80211_txb_free(txb
);
712 struct ieee80211_radiotap_header rt_hdr
;
719 static void fill_rt_header(void *buffer
, struct zd_mac
*mac
,
720 const struct ieee80211_rx_stats
*stats
,
721 const struct rx_status
*status
)
723 struct zd_rt_hdr
*hdr
= buffer
;
725 hdr
->rt_hdr
.it_version
= PKTHDR_RADIOTAP_VERSION
;
726 hdr
->rt_hdr
.it_pad
= 0;
727 hdr
->rt_hdr
.it_len
= cpu_to_le16(sizeof(struct zd_rt_hdr
));
728 hdr
->rt_hdr
.it_present
= cpu_to_le32((1 << IEEE80211_RADIOTAP_FLAGS
) |
729 (1 << IEEE80211_RADIOTAP_CHANNEL
) |
730 (1 << IEEE80211_RADIOTAP_RATE
));
733 if (status
->decryption_type
& (ZD_RX_WEP64
|ZD_RX_WEP128
|ZD_RX_WEP256
))
734 hdr
->rt_flags
|= IEEE80211_RADIOTAP_F_WEP
;
736 hdr
->rt_rate
= stats
->rate
/ 5;
739 hdr
->rt_channel
= cpu_to_le16(ieee80211chan2mhz(
740 _zd_chip_get_channel(&mac
->chip
)));
741 hdr
->rt_chbitmask
= cpu_to_le16(IEEE80211_CHAN_2GHZ
|
742 ((status
->frame_status
& ZD_RX_FRAME_MODULATION_MASK
) ==
743 ZD_RX_OFDM
? IEEE80211_CHAN_OFDM
: IEEE80211_CHAN_CCK
));
746 /* Returns 1 if the data packet is for us and 0 otherwise. */
747 static int is_data_packet_for_us(struct ieee80211_device
*ieee
,
748 struct ieee80211_hdr_4addr
*hdr
)
750 struct net_device
*netdev
= ieee
->dev
;
751 u16 fc
= le16_to_cpu(hdr
->frame_ctl
);
753 ZD_ASSERT(WLAN_FC_GET_TYPE(fc
) == IEEE80211_FTYPE_DATA
);
755 switch (ieee
->iw_mode
) {
757 if ((fc
& (IEEE80211_FCTL_TODS
|IEEE80211_FCTL_FROMDS
)) != 0 ||
758 memcmp(hdr
->addr3
, ieee
->bssid
, ETH_ALEN
) != 0)
763 if ((fc
& (IEEE80211_FCTL_TODS
|IEEE80211_FCTL_FROMDS
)) !=
764 IEEE80211_FCTL_FROMDS
||
765 memcmp(hdr
->addr2
, ieee
->bssid
, ETH_ALEN
) != 0)
769 ZD_ASSERT(ieee
->iw_mode
!= IW_MODE_MONITOR
);
773 return memcmp(hdr
->addr1
, netdev
->dev_addr
, ETH_ALEN
) == 0 ||
774 is_multicast_ether_addr(hdr
->addr1
) ||
775 (netdev
->flags
& IFF_PROMISC
);
778 /* Filters receiving packets. If it returns 1 send it to ieee80211_rx, if 0
779 * return. If an error is detected -EINVAL is returned. ieee80211_rx_mgt() is
782 * It has been based on ieee80211_rx_any.
784 static int filter_rx(struct ieee80211_device
*ieee
,
785 const u8
*buffer
, unsigned int length
,
786 struct ieee80211_rx_stats
*stats
)
788 struct ieee80211_hdr_4addr
*hdr
;
791 if (ieee
->iw_mode
== IW_MODE_MONITOR
)
794 hdr
= (struct ieee80211_hdr_4addr
*)buffer
;
795 fc
= le16_to_cpu(hdr
->frame_ctl
);
796 if ((fc
& IEEE80211_FCTL_VERS
) != 0)
799 switch (WLAN_FC_GET_TYPE(fc
)) {
800 case IEEE80211_FTYPE_MGMT
:
801 if (length
< sizeof(struct ieee80211_hdr_3addr
))
803 ieee80211_rx_mgt(ieee
, hdr
, stats
);
805 case IEEE80211_FTYPE_CTL
:
806 /* Ignore invalid short buffers */
808 case IEEE80211_FTYPE_DATA
:
809 if (length
< sizeof(struct ieee80211_hdr_3addr
))
811 return is_data_packet_for_us(ieee
, hdr
);
817 static void update_qual_rssi(struct zd_mac
*mac
,
818 const u8
*buffer
, unsigned int length
,
819 u8 qual_percent
, u8 rssi_percent
)
822 struct ieee80211_hdr_3addr
*hdr
;
825 hdr
= (struct ieee80211_hdr_3addr
*)buffer
;
826 if (length
< offsetof(struct ieee80211_hdr_3addr
, addr3
))
828 if (memcmp(hdr
->addr2
, zd_mac_to_ieee80211(mac
)->bssid
, ETH_ALEN
) != 0)
831 spin_lock_irqsave(&mac
->lock
, flags
);
832 i
= mac
->stats_count
% ZD_MAC_STATS_BUFFER_SIZE
;
833 mac
->qual_buffer
[i
] = qual_percent
;
834 mac
->rssi_buffer
[i
] = rssi_percent
;
836 spin_unlock_irqrestore(&mac
->lock
, flags
);
839 static int fill_rx_stats(struct ieee80211_rx_stats
*stats
,
840 const struct rx_status
**pstatus
,
842 const u8
*buffer
, unsigned int length
)
844 const struct rx_status
*status
;
846 *pstatus
= status
= zd_tail(buffer
, length
, sizeof(struct rx_status
));
847 if (status
->frame_status
& ZD_RX_ERROR
) {
851 memset(stats
, 0, sizeof(struct ieee80211_rx_stats
));
852 stats
->len
= length
- (ZD_PLCP_HEADER_SIZE
+ IEEE80211_FCS_LEN
+
853 + sizeof(struct rx_status
));
855 stats
->freq
= IEEE80211_24GHZ_BAND
;
856 stats
->received_channel
= _zd_chip_get_channel(&mac
->chip
);
857 stats
->rssi
= zd_rx_strength_percent(status
->signal_strength
);
858 stats
->signal
= zd_rx_qual_percent(buffer
,
859 length
- sizeof(struct rx_status
),
861 stats
->mask
= IEEE80211_STATMASK_RSSI
| IEEE80211_STATMASK_SIGNAL
;
862 stats
->rate
= zd_rx_rate(buffer
, status
);
864 stats
->mask
|= IEEE80211_STATMASK_RATE
;
869 int zd_mac_rx(struct zd_mac
*mac
, const u8
*buffer
, unsigned int length
)
872 struct ieee80211_device
*ieee
= zd_mac_to_ieee80211(mac
);
873 struct ieee80211_rx_stats stats
;
874 const struct rx_status
*status
;
877 if (length
< ZD_PLCP_HEADER_SIZE
+ IEEE80211_1ADDR_LEN
+
878 IEEE80211_FCS_LEN
+ sizeof(struct rx_status
))
881 r
= fill_rx_stats(&stats
, &status
, mac
, buffer
, length
);
885 length
-= ZD_PLCP_HEADER_SIZE
+IEEE80211_FCS_LEN
+
886 sizeof(struct rx_status
);
887 buffer
+= ZD_PLCP_HEADER_SIZE
;
889 update_qual_rssi(mac
, buffer
, length
, stats
.signal
, stats
.rssi
);
891 r
= filter_rx(ieee
, buffer
, length
, &stats
);
895 skb
= dev_alloc_skb(sizeof(struct zd_rt_hdr
) + length
);
898 if (ieee
->iw_mode
== IW_MODE_MONITOR
)
899 fill_rt_header(skb_put(skb
, sizeof(struct zd_rt_hdr
)), mac
,
901 memcpy(skb_put(skb
, length
), buffer
, length
);
903 r
= ieee80211_rx(ieee
, skb
, &stats
);
906 dev_kfree_skb_irq(skb
);
911 static int netdev_tx(struct ieee80211_txb
*txb
, struct net_device
*netdev
,
914 return zd_mac_tx(zd_netdev_mac(netdev
), txb
, pri
);
917 static void set_security(struct net_device
*netdev
,
918 struct ieee80211_security
*sec
)
920 struct ieee80211_device
*ieee
= zd_netdev_ieee80211(netdev
);
921 struct ieee80211_security
*secinfo
= &ieee
->sec
;
924 dev_dbg_f(zd_mac_dev(zd_netdev_mac(netdev
)), "\n");
926 for (keyidx
= 0; keyidx
<WEP_KEYS
; keyidx
++)
927 if (sec
->flags
& (1<<keyidx
)) {
928 secinfo
->encode_alg
[keyidx
] = sec
->encode_alg
[keyidx
];
929 secinfo
->key_sizes
[keyidx
] = sec
->key_sizes
[keyidx
];
930 memcpy(secinfo
->keys
[keyidx
], sec
->keys
[keyidx
],
934 if (sec
->flags
& SEC_ACTIVE_KEY
) {
935 secinfo
->active_key
= sec
->active_key
;
936 dev_dbg_f(zd_mac_dev(zd_netdev_mac(netdev
)),
937 " .active_key = %d\n", sec
->active_key
);
939 if (sec
->flags
& SEC_UNICAST_GROUP
) {
940 secinfo
->unicast_uses_group
= sec
->unicast_uses_group
;
941 dev_dbg_f(zd_mac_dev(zd_netdev_mac(netdev
)),
942 " .unicast_uses_group = %d\n",
943 sec
->unicast_uses_group
);
945 if (sec
->flags
& SEC_LEVEL
) {
946 secinfo
->level
= sec
->level
;
947 dev_dbg_f(zd_mac_dev(zd_netdev_mac(netdev
)),
948 " .level = %d\n", sec
->level
);
950 if (sec
->flags
& SEC_ENABLED
) {
951 secinfo
->enabled
= sec
->enabled
;
952 dev_dbg_f(zd_mac_dev(zd_netdev_mac(netdev
)),
953 " .enabled = %d\n", sec
->enabled
);
955 if (sec
->flags
& SEC_ENCRYPT
) {
956 secinfo
->encrypt
= sec
->encrypt
;
957 dev_dbg_f(zd_mac_dev(zd_netdev_mac(netdev
)),
958 " .encrypt = %d\n", sec
->encrypt
);
960 if (sec
->flags
& SEC_AUTH_MODE
) {
961 secinfo
->auth_mode
= sec
->auth_mode
;
962 dev_dbg_f(zd_mac_dev(zd_netdev_mac(netdev
)),
963 " .auth_mode = %d\n", sec
->auth_mode
);
967 static void ieee_init(struct ieee80211_device
*ieee
)
969 ieee
->mode
= IEEE_B
| IEEE_G
;
970 ieee
->freq_band
= IEEE80211_24GHZ_BAND
;
971 ieee
->modulation
= IEEE80211_OFDM_MODULATION
| IEEE80211_CCK_MODULATION
;
972 ieee
->tx_headroom
= sizeof(struct zd_ctrlset
);
973 ieee
->set_security
= set_security
;
974 ieee
->hard_start_xmit
= netdev_tx
;
976 /* Software encryption/decryption for now */
977 ieee
->host_build_iv
= 0;
978 ieee
->host_encrypt
= 1;
979 ieee
->host_decrypt
= 1;
981 /* FIXME: default to managed mode, until ieee80211 and zd1211rw can
982 * correctly support AUTO */
983 ieee
->iw_mode
= IW_MODE_INFRA
;
986 static void softmac_init(struct ieee80211softmac_device
*sm
)
988 sm
->set_channel
= set_channel
;
991 struct iw_statistics
*zd_mac_get_wireless_stats(struct net_device
*ndev
)
993 struct zd_mac
*mac
= zd_netdev_mac(ndev
);
994 struct iw_statistics
*iw_stats
= &mac
->iw_stats
;
995 unsigned int i
, count
, qual_total
, rssi_total
;
997 memset(iw_stats
, 0, sizeof(struct iw_statistics
));
998 /* We are not setting the status, because ieee->state is not updated
999 * at all and this driver doesn't track authentication state.
1001 spin_lock_irq(&mac
->lock
);
1002 count
= mac
->stats_count
< ZD_MAC_STATS_BUFFER_SIZE
?
1003 mac
->stats_count
: ZD_MAC_STATS_BUFFER_SIZE
;
1004 qual_total
= rssi_total
= 0;
1005 for (i
= 0; i
< count
; i
++) {
1006 qual_total
+= mac
->qual_buffer
[i
];
1007 rssi_total
+= mac
->rssi_buffer
[i
];
1009 spin_unlock_irq(&mac
->lock
);
1010 iw_stats
->qual
.updated
= IW_QUAL_NOISE_INVALID
;
1012 iw_stats
->qual
.qual
= qual_total
/ count
;
1013 iw_stats
->qual
.level
= rssi_total
/ count
;
1014 iw_stats
->qual
.updated
|=
1015 IW_QUAL_QUAL_UPDATED
|IW_QUAL_LEVEL_UPDATED
;
1017 iw_stats
->qual
.updated
|=
1018 IW_QUAL_QUAL_INVALID
|IW_QUAL_LEVEL_INVALID
;
1020 /* TODO: update counter */
1025 static const char* decryption_types
[] = {
1026 [ZD_RX_NO_WEP
] = "none",
1027 [ZD_RX_WEP64
] = "WEP64",
1028 [ZD_RX_TKIP
] = "TKIP",
1029 [ZD_RX_AES
] = "AES",
1030 [ZD_RX_WEP128
] = "WEP128",
1031 [ZD_RX_WEP256
] = "WEP256",
1034 static const char *decryption_type_string(u8 type
)
1038 if (type
< ARRAY_SIZE(decryption_types
)) {
1039 s
= decryption_types
[type
];
1043 return s
? s
: "unknown";
1046 static int is_ofdm(u8 frame_status
)
1048 return (frame_status
& ZD_RX_OFDM
);
1051 void zd_dump_rx_status(const struct rx_status
*status
)
1053 const char* modulation
;
1056 if (is_ofdm(status
->frame_status
)) {
1057 modulation
= "ofdm";
1058 quality
= status
->signal_quality_ofdm
;
1061 quality
= status
->signal_quality_cck
;
1063 pr_debug("rx status %s strength %#04x qual %#04x decryption %s\n",
1064 modulation
, status
->signal_strength
, quality
,
1065 decryption_type_string(status
->decryption_type
));
1066 if (status
->frame_status
& ZD_RX_ERROR
) {
1067 pr_debug("rx error %s%s%s%s%s%s\n",
1068 (status
->frame_status
& ZD_RX_TIMEOUT_ERROR
) ?
1070 (status
->frame_status
& ZD_RX_FIFO_OVERRUN_ERROR
) ?
1072 (status
->frame_status
& ZD_RX_DECRYPTION_ERROR
) ?
1074 (status
->frame_status
& ZD_RX_CRC32_ERROR
) ?
1076 (status
->frame_status
& ZD_RX_NO_ADDR1_MATCH_ERROR
) ?
1078 (status
->frame_status
& ZD_RX_CRC16_ERROR
) ?