3 Broadcom B43 wireless driver
5 Transmission (TX/RX) related functions.
7 Copyright (C) 2005 Martin Langer <martin-langer@gmx.de>
8 Copyright (C) 2005 Stefano Brivio <stefano.brivio@polimi.it>
9 Copyright (C) 2005, 2006 Michael Buesch <mb@bu3sch.de>
10 Copyright (C) 2005 Danny van Dyk <kugelfang@gentoo.org>
11 Copyright (C) 2005 Andreas Jaggi <andreas.jaggi@waterwave.ch>
13 This program is free software; you can redistribute it and/or modify
14 it under the terms of the GNU General Public License as published by
15 the Free Software Foundation; either version 2 of the License, or
16 (at your option) any later version.
18 This program is distributed in the hope that it will be useful,
19 but WITHOUT ANY WARRANTY; without even the implied warranty of
20 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 GNU General Public License for more details.
23 You should have received a copy of the GNU General Public License
24 along with this program; see the file COPYING. If not, write to
25 the Free Software Foundation, Inc., 51 Franklin Steet, Fifth Floor,
26 Boston, MA 02110-1301, USA.
31 #include "phy_common.h"
35 static const struct b43_tx_legacy_rate_phy_ctl_entry b43_tx_legacy_rate_phy_ctl
[] = {
36 { B43_CCK_RATE_1MB
, 0x0, 0x0 },
37 { B43_CCK_RATE_2MB
, 0x0, 0x1 },
38 { B43_CCK_RATE_5MB
, 0x0, 0x2 },
39 { B43_CCK_RATE_11MB
, 0x0, 0x3 },
40 { B43_OFDM_RATE_6MB
, B43_TXH_PHY1_CRATE_1_2
, B43_TXH_PHY1_MODUL_BPSK
},
41 { B43_OFDM_RATE_9MB
, B43_TXH_PHY1_CRATE_3_4
, B43_TXH_PHY1_MODUL_BPSK
},
42 { B43_OFDM_RATE_12MB
, B43_TXH_PHY1_CRATE_1_2
, B43_TXH_PHY1_MODUL_QPSK
},
43 { B43_OFDM_RATE_18MB
, B43_TXH_PHY1_CRATE_3_4
, B43_TXH_PHY1_MODUL_QPSK
},
44 { B43_OFDM_RATE_24MB
, B43_TXH_PHY1_CRATE_1_2
, B43_TXH_PHY1_MODUL_QAM16
},
45 { B43_OFDM_RATE_36MB
, B43_TXH_PHY1_CRATE_3_4
, B43_TXH_PHY1_MODUL_QAM16
},
46 { B43_OFDM_RATE_48MB
, B43_TXH_PHY1_CRATE_2_3
, B43_TXH_PHY1_MODUL_QAM64
},
47 { B43_OFDM_RATE_54MB
, B43_TXH_PHY1_CRATE_3_4
, B43_TXH_PHY1_MODUL_QAM64
},
50 static const struct b43_tx_legacy_rate_phy_ctl_entry
*
51 b43_tx_legacy_rate_phy_ctl_ent(u8 bitrate
)
53 const struct b43_tx_legacy_rate_phy_ctl_entry
*e
;
56 for (i
= 0; i
< ARRAY_SIZE(b43_tx_legacy_rate_phy_ctl
); i
++) {
57 e
= &(b43_tx_legacy_rate_phy_ctl
[i
]);
58 if (e
->bitrate
== bitrate
)
66 /* Extract the bitrate index out of a CCK PLCP header. */
67 static int b43_plcp_get_bitrate_idx_cck(struct b43_plcp_hdr6
*plcp
)
69 switch (plcp
->raw
[0]) {
82 /* Extract the bitrate index out of an OFDM PLCP header. */
83 static int b43_plcp_get_bitrate_idx_ofdm(struct b43_plcp_hdr6
*plcp
, bool aphy
)
85 int base
= aphy
? 0 : 4;
87 switch (plcp
->raw
[0] & 0xF) {
108 u8
b43_plcp_get_ratecode_cck(const u8 bitrate
)
111 case B43_CCK_RATE_1MB
:
113 case B43_CCK_RATE_2MB
:
115 case B43_CCK_RATE_5MB
:
117 case B43_CCK_RATE_11MB
:
124 u8
b43_plcp_get_ratecode_ofdm(const u8 bitrate
)
127 case B43_OFDM_RATE_6MB
:
129 case B43_OFDM_RATE_9MB
:
131 case B43_OFDM_RATE_12MB
:
133 case B43_OFDM_RATE_18MB
:
135 case B43_OFDM_RATE_24MB
:
137 case B43_OFDM_RATE_36MB
:
139 case B43_OFDM_RATE_48MB
:
141 case B43_OFDM_RATE_54MB
:
148 void b43_generate_plcp_hdr(struct b43_plcp_hdr4
*plcp
,
149 const u16 octets
, const u8 bitrate
)
151 __u8
*raw
= plcp
->raw
;
153 if (b43_is_ofdm_rate(bitrate
)) {
156 d
= b43_plcp_get_ratecode_ofdm(bitrate
);
157 B43_WARN_ON(octets
& 0xF000);
159 plcp
->data
= cpu_to_le32(d
);
163 plen
= octets
* 16 / bitrate
;
164 if ((octets
* 16 % bitrate
) > 0) {
166 if ((bitrate
== B43_CCK_RATE_11MB
)
167 && ((octets
* 8 % 11) < 4)) {
173 plcp
->data
|= cpu_to_le32(plen
<< 16);
174 raw
[0] = b43_plcp_get_ratecode_cck(bitrate
);
178 static u16
b43_generate_tx_phy_ctl1(struct b43_wldev
*dev
, u8 bitrate
)
180 const struct b43_phy
*phy
= &dev
->phy
;
181 const struct b43_tx_legacy_rate_phy_ctl_entry
*e
;
185 if (phy
->type
== B43_PHYTYPE_LP
)
186 bw
= B43_TXH_PHY1_BW_20
;
188 bw
= B43_TXH_PHY1_BW_20
;
190 if (0) { /* FIXME: MIMO */
191 } else if (b43_is_cck_rate(bitrate
) && phy
->type
!= B43_PHYTYPE_LP
) {
195 e
= b43_tx_legacy_rate_phy_ctl_ent(bitrate
);
197 control
|= e
->coding_rate
;
198 control
|= e
->modulation
;
200 control
|= B43_TXH_PHY1_MODE_SISO
;
206 static u8
b43_calc_fallback_rate(u8 bitrate
)
209 case B43_CCK_RATE_1MB
:
210 return B43_CCK_RATE_1MB
;
211 case B43_CCK_RATE_2MB
:
212 return B43_CCK_RATE_1MB
;
213 case B43_CCK_RATE_5MB
:
214 return B43_CCK_RATE_2MB
;
215 case B43_CCK_RATE_11MB
:
216 return B43_CCK_RATE_5MB
;
217 case B43_OFDM_RATE_6MB
:
218 return B43_CCK_RATE_5MB
;
219 case B43_OFDM_RATE_9MB
:
220 return B43_OFDM_RATE_6MB
;
221 case B43_OFDM_RATE_12MB
:
222 return B43_OFDM_RATE_9MB
;
223 case B43_OFDM_RATE_18MB
:
224 return B43_OFDM_RATE_12MB
;
225 case B43_OFDM_RATE_24MB
:
226 return B43_OFDM_RATE_18MB
;
227 case B43_OFDM_RATE_36MB
:
228 return B43_OFDM_RATE_24MB
;
229 case B43_OFDM_RATE_48MB
:
230 return B43_OFDM_RATE_36MB
;
231 case B43_OFDM_RATE_54MB
:
232 return B43_OFDM_RATE_48MB
;
238 /* Generate a TX data header. */
239 int b43_generate_txhdr(struct b43_wldev
*dev
,
241 struct sk_buff
*skb_frag
,
242 struct ieee80211_tx_info
*info
,
245 const unsigned char *fragment_data
= skb_frag
->data
;
246 unsigned int fragment_len
= skb_frag
->len
;
247 struct b43_txhdr
*txhdr
= (struct b43_txhdr
*)_txhdr
;
248 const struct b43_phy
*phy
= &dev
->phy
;
249 const struct ieee80211_hdr
*wlhdr
=
250 (const struct ieee80211_hdr
*)fragment_data
;
251 int use_encryption
= !!info
->control
.hw_key
;
252 __le16 fctl
= wlhdr
->frame_control
;
253 struct ieee80211_rate
*fbrate
;
255 int rate_ofdm
, rate_fb_ofdm
;
256 unsigned int plcp_fragment_len
;
260 struct ieee80211_rate
*txrate
;
261 struct ieee80211_tx_rate
*rates
;
263 memset(txhdr
, 0, sizeof(*txhdr
));
265 txrate
= ieee80211_get_tx_rate(dev
->wl
->hw
, info
);
266 rate
= txrate
? txrate
->hw_value
: B43_CCK_RATE_1MB
;
267 rate_ofdm
= b43_is_ofdm_rate(rate
);
268 fbrate
= ieee80211_get_alt_retry_rate(dev
->wl
->hw
, info
, 0) ? : txrate
;
269 rate_fb
= fbrate
->hw_value
;
270 rate_fb_ofdm
= b43_is_ofdm_rate(rate_fb
);
273 txhdr
->phy_rate
= b43_plcp_get_ratecode_ofdm(rate
);
275 txhdr
->phy_rate
= b43_plcp_get_ratecode_cck(rate
);
276 txhdr
->mac_frame_ctl
= wlhdr
->frame_control
;
277 memcpy(txhdr
->tx_receiver
, wlhdr
->addr1
, 6);
279 /* Calculate duration for fallback rate */
280 if ((rate_fb
== rate
) ||
281 (wlhdr
->duration_id
& cpu_to_le16(0x8000)) ||
282 (wlhdr
->duration_id
== cpu_to_le16(0))) {
283 /* If the fallback rate equals the normal rate or the
284 * dur_id field contains an AID, CFP magic or 0,
285 * use the original dur_id field. */
286 txhdr
->dur_fb
= wlhdr
->duration_id
;
288 txhdr
->dur_fb
= ieee80211_generic_frame_duration(
289 dev
->wl
->hw
, info
->control
.vif
, fragment_len
, fbrate
);
292 plcp_fragment_len
= fragment_len
+ FCS_LEN
;
293 if (use_encryption
) {
294 u8 key_idx
= info
->control
.hw_key
->hw_key_idx
;
299 B43_WARN_ON(key_idx
>= ARRAY_SIZE(dev
->key
));
300 key
= &(dev
->key
[key_idx
]);
302 if (unlikely(!key
->keyconf
)) {
303 /* This key is invalid. This might only happen
304 * in a short timeframe after machine resume before
305 * we were able to reconfigure keys.
306 * Drop this packet completely. Do not transmit it
307 * unencrypted to avoid leaking information. */
311 /* Hardware appends ICV. */
312 plcp_fragment_len
+= info
->control
.hw_key
->icv_len
;
314 key_idx
= b43_kidx_to_fw(dev
, key_idx
);
315 mac_ctl
|= (key_idx
<< B43_TXH_MAC_KEYIDX_SHIFT
) &
317 mac_ctl
|= (key
->algorithm
<< B43_TXH_MAC_KEYALG_SHIFT
) &
319 wlhdr_len
= ieee80211_hdrlen(fctl
);
320 if (key
->algorithm
== B43_SEC_ALGO_TKIP
) {
323 /* we give the phase1key and iv16 here, the key is stored in
324 * shm. With that the hardware can do phase 2 and encryption.
326 ieee80211_get_tkip_p1k(info
->control
.hw_key
, skb_frag
, phase1key
);
327 /* phase1key is in host endian. Copy to little-endian txhdr->iv. */
328 for (i
= 0; i
< 5; i
++) {
329 txhdr
->iv
[i
* 2 + 0] = phase1key
[i
];
330 txhdr
->iv
[i
* 2 + 1] = phase1key
[i
] >> 8;
333 memcpy(txhdr
->iv
+ 10, ((u8
*) wlhdr
) + wlhdr_len
, 3);
335 iv_len
= min((size_t) info
->control
.hw_key
->iv_len
,
336 ARRAY_SIZE(txhdr
->iv
));
337 memcpy(txhdr
->iv
, ((u8
*) wlhdr
) + wlhdr_len
, iv_len
);
340 if (b43_is_old_txhdr_format(dev
)) {
341 b43_generate_plcp_hdr((struct b43_plcp_hdr4
*)(&txhdr
->old_format
.plcp
),
342 plcp_fragment_len
, rate
);
344 b43_generate_plcp_hdr((struct b43_plcp_hdr4
*)(&txhdr
->new_format
.plcp
),
345 plcp_fragment_len
, rate
);
347 b43_generate_plcp_hdr((struct b43_plcp_hdr4
*)(&txhdr
->plcp_fb
),
348 plcp_fragment_len
, rate_fb
);
350 /* Extra Frame Types */
352 extra_ft
|= B43_TXH_EFT_FB_OFDM
;
354 extra_ft
|= B43_TXH_EFT_FB_CCK
;
356 /* Set channel radio code. Note that the micrcode ORs 0x100 to
357 * this value before comparing it to the value in SHM, if this
360 txhdr
->chan_radio_code
= phy
->channel
;
362 /* PHY TX Control word */
364 phy_ctl
|= B43_TXH_PHY_ENC_OFDM
;
366 phy_ctl
|= B43_TXH_PHY_ENC_CCK
;
367 if (info
->control
.rates
[0].flags
& IEEE80211_TX_RC_USE_SHORT_PREAMBLE
)
368 phy_ctl
|= B43_TXH_PHY_SHORTPRMBL
;
370 switch (b43_ieee80211_antenna_sanitize(dev
, info
->antenna_sel_tx
)) {
371 case 0: /* Default */
372 phy_ctl
|= B43_TXH_PHY_ANT01AUTO
;
374 case 1: /* Antenna 0 */
375 phy_ctl
|= B43_TXH_PHY_ANT0
;
377 case 2: /* Antenna 1 */
378 phy_ctl
|= B43_TXH_PHY_ANT1
;
380 case 3: /* Antenna 2 */
381 phy_ctl
|= B43_TXH_PHY_ANT2
;
383 case 4: /* Antenna 3 */
384 phy_ctl
|= B43_TXH_PHY_ANT3
;
390 rates
= info
->control
.rates
;
392 if (!(info
->flags
& IEEE80211_TX_CTL_NO_ACK
))
393 mac_ctl
|= B43_TXH_MAC_ACK
;
394 /* use hardware sequence counter as the non-TID counter */
395 if (info
->flags
& IEEE80211_TX_CTL_ASSIGN_SEQ
)
396 mac_ctl
|= B43_TXH_MAC_HWSEQ
;
397 if (info
->flags
& IEEE80211_TX_CTL_FIRST_FRAGMENT
)
398 mac_ctl
|= B43_TXH_MAC_STMSDU
;
399 if (phy
->type
== B43_PHYTYPE_A
)
400 mac_ctl
|= B43_TXH_MAC_5GHZ
;
402 /* Overwrite rates[0].count to make the retry calculation
403 * in the tx status easier. need the actual retry limit to
404 * detect whether the fallback rate was used.
406 if ((rates
[0].flags
& IEEE80211_TX_RC_USE_RTS_CTS
) ||
407 (rates
[0].count
<= dev
->wl
->hw
->conf
.long_frame_max_tx_count
)) {
408 rates
[0].count
= dev
->wl
->hw
->conf
.long_frame_max_tx_count
;
409 mac_ctl
|= B43_TXH_MAC_LONGFRAME
;
411 rates
[0].count
= dev
->wl
->hw
->conf
.short_frame_max_tx_count
;
414 /* Generate the RTS or CTS-to-self frame */
415 if ((rates
[0].flags
& IEEE80211_TX_RC_USE_RTS_CTS
) ||
416 (rates
[0].flags
& IEEE80211_TX_RC_USE_CTS_PROTECT
)) {
418 struct ieee80211_hdr
*hdr
;
419 int rts_rate
, rts_rate_fb
;
420 int rts_rate_ofdm
, rts_rate_fb_ofdm
;
421 struct b43_plcp_hdr6
*plcp
;
422 struct ieee80211_rate
*rts_cts_rate
;
424 rts_cts_rate
= ieee80211_get_rts_cts_rate(dev
->wl
->hw
, info
);
426 rts_rate
= rts_cts_rate
? rts_cts_rate
->hw_value
: B43_CCK_RATE_1MB
;
427 rts_rate_ofdm
= b43_is_ofdm_rate(rts_rate
);
428 rts_rate_fb
= b43_calc_fallback_rate(rts_rate
);
429 rts_rate_fb_ofdm
= b43_is_ofdm_rate(rts_rate_fb
);
431 if (rates
[0].flags
& IEEE80211_TX_RC_USE_CTS_PROTECT
) {
432 struct ieee80211_cts
*cts
;
434 if (b43_is_old_txhdr_format(dev
)) {
435 cts
= (struct ieee80211_cts
*)
436 (txhdr
->old_format
.rts_frame
);
438 cts
= (struct ieee80211_cts
*)
439 (txhdr
->new_format
.rts_frame
);
441 ieee80211_ctstoself_get(dev
->wl
->hw
, info
->control
.vif
,
442 fragment_data
, fragment_len
,
444 mac_ctl
|= B43_TXH_MAC_SENDCTS
;
445 len
= sizeof(struct ieee80211_cts
);
447 struct ieee80211_rts
*rts
;
449 if (b43_is_old_txhdr_format(dev
)) {
450 rts
= (struct ieee80211_rts
*)
451 (txhdr
->old_format
.rts_frame
);
453 rts
= (struct ieee80211_rts
*)
454 (txhdr
->new_format
.rts_frame
);
456 ieee80211_rts_get(dev
->wl
->hw
, info
->control
.vif
,
457 fragment_data
, fragment_len
,
459 mac_ctl
|= B43_TXH_MAC_SENDRTS
;
460 len
= sizeof(struct ieee80211_rts
);
464 /* Generate the PLCP headers for the RTS/CTS frame */
465 if (b43_is_old_txhdr_format(dev
))
466 plcp
= &txhdr
->old_format
.rts_plcp
;
468 plcp
= &txhdr
->new_format
.rts_plcp
;
469 b43_generate_plcp_hdr((struct b43_plcp_hdr4
*)plcp
,
471 plcp
= &txhdr
->rts_plcp_fb
;
472 b43_generate_plcp_hdr((struct b43_plcp_hdr4
*)plcp
,
475 if (b43_is_old_txhdr_format(dev
)) {
476 hdr
= (struct ieee80211_hdr
*)
477 (&txhdr
->old_format
.rts_frame
);
479 hdr
= (struct ieee80211_hdr
*)
480 (&txhdr
->new_format
.rts_frame
);
482 txhdr
->rts_dur_fb
= hdr
->duration_id
;
485 extra_ft
|= B43_TXH_EFT_RTS_OFDM
;
486 txhdr
->phy_rate_rts
=
487 b43_plcp_get_ratecode_ofdm(rts_rate
);
489 extra_ft
|= B43_TXH_EFT_RTS_CCK
;
490 txhdr
->phy_rate_rts
=
491 b43_plcp_get_ratecode_cck(rts_rate
);
493 if (rts_rate_fb_ofdm
)
494 extra_ft
|= B43_TXH_EFT_RTSFB_OFDM
;
496 extra_ft
|= B43_TXH_EFT_RTSFB_CCK
;
498 if (rates
[0].flags
& IEEE80211_TX_RC_USE_RTS_CTS
&&
499 phy
->type
== B43_PHYTYPE_N
) {
500 txhdr
->phy_ctl1_rts
= cpu_to_le16(
501 b43_generate_tx_phy_ctl1(dev
, rts_rate
));
502 txhdr
->phy_ctl1_rts_fb
= cpu_to_le16(
503 b43_generate_tx_phy_ctl1(dev
, rts_rate_fb
));
508 if (b43_is_old_txhdr_format(dev
))
509 txhdr
->old_format
.cookie
= cpu_to_le16(cookie
);
511 txhdr
->new_format
.cookie
= cpu_to_le16(cookie
);
513 if (phy
->type
== B43_PHYTYPE_N
) {
515 cpu_to_le16(b43_generate_tx_phy_ctl1(dev
, rate
));
517 cpu_to_le16(b43_generate_tx_phy_ctl1(dev
, rate_fb
));
520 /* Apply the bitfields */
521 txhdr
->mac_ctl
= cpu_to_le32(mac_ctl
);
522 txhdr
->phy_ctl
= cpu_to_le16(phy_ctl
);
523 txhdr
->extra_ft
= extra_ft
;
528 static s8
b43_rssi_postprocess(struct b43_wldev
*dev
,
529 u8 in_rssi
, int ofdm
,
530 int adjust_2053
, int adjust_2050
)
532 struct b43_phy
*phy
= &dev
->phy
;
533 struct b43_phy_g
*gphy
= phy
->g
;
536 switch (phy
->radio_ver
) {
549 if (dev
->dev
->bus_sprom
->
550 boardflags_lo
& B43_BFL_RSSI
) {
553 B43_WARN_ON(phy
->type
!= B43_PHYTYPE_G
);
554 tmp
= gphy
->nrssi_lt
[in_rssi
];
566 if (phy
->type
== B43_PHYTYPE_G
&& adjust_2050
)
592 static s8
b43_rssinoise_postprocess(struct b43_wldev
*dev
, u8 in_rssi
)
594 struct b43_phy
*phy
= &dev
->phy
;
597 if (phy
->type
== B43_PHYTYPE_A
) {
598 //TODO: Incomplete specs.
601 ret
= b43_rssi_postprocess(dev
, in_rssi
, 0, 1, 1);
607 void b43_rx(struct b43_wldev
*dev
, struct sk_buff
*skb
, const void *_rxhdr
)
609 struct ieee80211_rx_status status
;
610 struct b43_plcp_hdr6
*plcp
;
611 struct ieee80211_hdr
*wlhdr
;
612 const struct b43_rxhdr_fw4
*rxhdr
= _rxhdr
;
614 u16 phystat0
, phystat3
, chanstat
, mactime
;
620 memset(&status
, 0, sizeof(status
));
622 /* Get metadata about the frame from the header. */
623 phystat0
= le16_to_cpu(rxhdr
->phy_status0
);
624 phystat3
= le16_to_cpu(rxhdr
->phy_status3
);
625 macstat
= le32_to_cpu(rxhdr
->mac_status
);
626 mactime
= le16_to_cpu(rxhdr
->mac_time
);
627 chanstat
= le16_to_cpu(rxhdr
->channel
);
628 phytype
= chanstat
& B43_RX_CHAN_PHYTYPE
;
630 if (unlikely(macstat
& B43_RX_MAC_FCSERR
)) {
631 dev
->wl
->ieee_stats
.dot11FCSErrorCount
++;
632 status
.flag
|= RX_FLAG_FAILED_FCS_CRC
;
634 if (unlikely(phystat0
& (B43_RX_PHYST0_PLCPHCF
| B43_RX_PHYST0_PLCPFV
)))
635 status
.flag
|= RX_FLAG_FAILED_PLCP_CRC
;
636 if (phystat0
& B43_RX_PHYST0_SHORTPRMBL
)
637 status
.flag
|= RX_FLAG_SHORTPRE
;
638 if (macstat
& B43_RX_MAC_DECERR
) {
639 /* Decryption with the given key failed.
640 * Drop the packet. We also won't be able to decrypt it with
641 * the key in software. */
645 /* Skip PLCP and padding */
646 padding
= (macstat
& B43_RX_MAC_PADDING
) ? 2 : 0;
647 if (unlikely(skb
->len
< (sizeof(struct b43_plcp_hdr6
) + padding
))) {
648 b43dbg(dev
->wl
, "RX: Packet size underrun (1)\n");
651 plcp
= (struct b43_plcp_hdr6
*)(skb
->data
+ padding
);
652 skb_pull(skb
, sizeof(struct b43_plcp_hdr6
) + padding
);
653 /* The skb contains the Wireless Header + payload data now */
654 if (unlikely(skb
->len
< (2 + 2 + 6 /*minimum hdr */ + FCS_LEN
))) {
655 b43dbg(dev
->wl
, "RX: Packet size underrun (2)\n");
658 wlhdr
= (struct ieee80211_hdr
*)(skb
->data
);
659 fctl
= wlhdr
->frame_control
;
661 if (macstat
& B43_RX_MAC_DEC
) {
665 keyidx
= ((macstat
& B43_RX_MAC_KEYIDX
)
666 >> B43_RX_MAC_KEYIDX_SHIFT
);
667 /* We must adjust the key index here. We want the "physical"
668 * key index, but the ucode passed it slightly different.
670 keyidx
= b43_kidx_to_raw(dev
, keyidx
);
671 B43_WARN_ON(keyidx
>= ARRAY_SIZE(dev
->key
));
673 if (dev
->key
[keyidx
].algorithm
!= B43_SEC_ALGO_NONE
) {
674 wlhdr_len
= ieee80211_hdrlen(fctl
);
675 if (unlikely(skb
->len
< (wlhdr_len
+ 3))) {
677 "RX: Packet size underrun (3)\n");
680 status
.flag
|= RX_FLAG_DECRYPTED
;
684 /* Link quality statistics */
685 if ((chanstat
& B43_RX_CHAN_PHYTYPE
) == B43_PHYTYPE_N
) {
686 // s8 rssi = max(rxhdr->power0, rxhdr->power1);
687 //TODO: Find out what the rssi value is (dBm or percentage?)
688 // and also find out what the maximum possible value is.
689 // Fill status.ssi and status.signal fields.
691 status
.signal
= b43_rssi_postprocess(dev
, rxhdr
->jssi
,
692 (phystat0
& B43_RX_PHYST0_OFDM
),
693 (phystat0
& B43_RX_PHYST0_GAINCTL
),
694 (phystat3
& B43_RX_PHYST3_TRSTATE
));
697 if (phystat0
& B43_RX_PHYST0_OFDM
)
698 status
.rate_idx
= b43_plcp_get_bitrate_idx_ofdm(plcp
,
699 phytype
== B43_PHYTYPE_A
);
701 status
.rate_idx
= b43_plcp_get_bitrate_idx_cck(plcp
);
702 if (unlikely(status
.rate_idx
== -1)) {
703 /* PLCP seems to be corrupted.
704 * Drop the frame, if we are not interested in corrupted frames. */
705 if (!(dev
->wl
->filter_flags
& FIF_PLCPFAIL
))
708 status
.antenna
= !!(phystat0
& B43_RX_PHYST0_ANT
);
711 * All frames on monitor interfaces and beacons always need a full
712 * 64-bit timestamp. Monitor interfaces need it for diagnostic
713 * purposes and beacons for IBSS merging.
714 * This code assumes we get to process the packet within 16 bits
715 * of timestamp, i.e. about 65 milliseconds after the PHY received
718 if (ieee80211_is_beacon(fctl
) || dev
->wl
->radiotap_enabled
) {
721 b43_tsf_read(dev
, &status
.mactime
);
722 low_mactime_now
= status
.mactime
;
723 status
.mactime
= status
.mactime
& ~0xFFFFULL
;
724 status
.mactime
+= mactime
;
725 if (low_mactime_now
<= mactime
)
726 status
.mactime
-= 0x10000;
727 status
.flag
|= RX_FLAG_MACTIME_MPDU
;
730 chanid
= (chanstat
& B43_RX_CHAN_ID
) >> B43_RX_CHAN_ID_SHIFT
;
731 switch (chanstat
& B43_RX_CHAN_PHYTYPE
) {
733 status
.band
= IEEE80211_BAND_5GHZ
;
735 /* FIXME: We don't really know which value the "chanid" contains.
736 * So the following assignment might be wrong. */
737 status
.freq
= b43_channel_to_freq_5ghz(chanid
);
740 status
.band
= IEEE80211_BAND_2GHZ
;
741 /* chanid is the radio channel cookie value as used
742 * to tune the radio. */
743 status
.freq
= chanid
+ 2400;
747 /* chanid is the SHM channel cookie. Which is the plain
748 * channel number in b43. */
749 if (chanstat
& B43_RX_CHAN_5GHZ
) {
750 status
.band
= IEEE80211_BAND_5GHZ
;
751 status
.freq
= b43_freq_to_channel_5ghz(chanid
);
753 status
.band
= IEEE80211_BAND_2GHZ
;
754 status
.freq
= b43_freq_to_channel_2ghz(chanid
);
762 memcpy(IEEE80211_SKB_RXCB(skb
), &status
, sizeof(status
));
763 ieee80211_rx_ni(dev
->wl
->hw
, skb
);
770 b43dbg(dev
->wl
, "RX: Packet dropped\n");
771 dev_kfree_skb_any(skb
);
774 void b43_handle_txstatus(struct b43_wldev
*dev
,
775 const struct b43_txstatus
*status
)
777 b43_debugfs_log_txstat(dev
, status
);
779 if (status
->intermediate
)
781 if (status
->for_ampdu
)
784 dev
->wl
->ieee_stats
.dot11ACKFailureCount
++;
785 if (status
->rts_count
) {
786 if (status
->rts_count
== 0xF) //FIXME
787 dev
->wl
->ieee_stats
.dot11RTSFailureCount
++;
789 dev
->wl
->ieee_stats
.dot11RTSSuccessCount
++;
792 if (b43_using_pio_transfers(dev
))
793 b43_pio_handle_txstatus(dev
, status
);
795 b43_dma_handle_txstatus(dev
, status
);
797 b43_phy_txpower_check(dev
, 0);
800 /* Fill out the mac80211 TXstatus report based on the b43-specific
801 * txstatus report data. This returns a boolean whether the frame was
802 * successfully transmitted. */
803 bool b43_fill_txstatus_report(struct b43_wldev
*dev
,
804 struct ieee80211_tx_info
*report
,
805 const struct b43_txstatus
*status
)
807 bool frame_success
= 1;
810 /* preserve the confiured retry limit before clearing the status
811 * The xmit function has overwritten the rc's value with the actual
812 * retry limit done by the hardware */
813 retry_limit
= report
->status
.rates
[0].count
;
814 ieee80211_tx_info_clear_status(report
);
817 /* The frame was ACKed. */
818 report
->flags
|= IEEE80211_TX_STAT_ACK
;
820 /* The frame was not ACKed... */
821 if (!(report
->flags
& IEEE80211_TX_CTL_NO_ACK
)) {
822 /* ...but we expected an ACK. */
826 if (status
->frame_count
== 0) {
827 /* The frame was not transmitted at all. */
828 report
->status
.rates
[0].count
= 0;
829 } else if (status
->rts_count
> dev
->wl
->hw
->conf
.short_frame_max_tx_count
) {
831 * If the short retries (RTS, not data frame) have exceeded
832 * the limit, the hw will not have tried the selected rate,
833 * but will have used the fallback rate instead.
834 * Don't let the rate control count attempts for the selected
835 * rate in this case, otherwise the statistics will be off.
837 report
->status
.rates
[0].count
= 0;
838 report
->status
.rates
[1].count
= status
->frame_count
;
840 if (status
->frame_count
> retry_limit
) {
841 report
->status
.rates
[0].count
= retry_limit
;
842 report
->status
.rates
[1].count
= status
->frame_count
-
846 report
->status
.rates
[0].count
= status
->frame_count
;
847 report
->status
.rates
[1].idx
= -1;
851 return frame_success
;
854 /* Stop any TX operation on the device (suspend the hardware queues) */
855 void b43_tx_suspend(struct b43_wldev
*dev
)
857 if (b43_using_pio_transfers(dev
))
858 b43_pio_tx_suspend(dev
);
860 b43_dma_tx_suspend(dev
);
863 /* Resume any TX operation on the device (resume the hardware queues) */
864 void b43_tx_resume(struct b43_wldev
*dev
)
866 if (b43_using_pio_transfers(dev
))
867 b43_pio_tx_resume(dev
);
869 b43_dma_tx_resume(dev
);