Merge branch 'hwmon-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jdelv...
[deliverable/linux.git] / drivers / net / wireless / b43 / xmit.c
CommitLineData
e4d6b795
MB
1/*
2
3 Broadcom B43 wireless driver
4
5 Transmission (TX/RX) related functions.
6
7 Copyright (C) 2005 Martin Langer <martin-langer@gmx.de>
1f21ad2a 8 Copyright (C) 2005 Stefano Brivio <stefano.brivio@polimi.it>
e4d6b795
MB
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>
12
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.
17
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.
22
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.
27
28*/
29
30#include "xmit.h"
ef1a628d 31#include "phy_common.h"
e4d6b795 32#include "dma.h"
5100d5ac 33#include "pio.h"
03b29773 34
e4d6b795 35
8318d78a
JB
36/* Extract the bitrate index out of a CCK PLCP header. */
37static int b43_plcp_get_bitrate_idx_cck(struct b43_plcp_hdr6 *plcp)
e4d6b795
MB
38{
39 switch (plcp->raw[0]) {
40 case 0x0A:
8318d78a 41 return 0;
e4d6b795 42 case 0x14:
8318d78a 43 return 1;
e4d6b795 44 case 0x37:
8318d78a 45 return 2;
e4d6b795 46 case 0x6E:
8318d78a 47 return 3;
e4d6b795 48 }
8318d78a 49 return -1;
e4d6b795
MB
50}
51
8318d78a 52/* Extract the bitrate index out of an OFDM PLCP header. */
a3c0b87c 53static int b43_plcp_get_bitrate_idx_ofdm(struct b43_plcp_hdr6 *plcp, bool aphy)
e4d6b795 54{
8318d78a
JB
55 int base = aphy ? 0 : 4;
56
e4d6b795
MB
57 switch (plcp->raw[0] & 0xF) {
58 case 0xB:
8318d78a 59 return base + 0;
e4d6b795 60 case 0xF:
8318d78a 61 return base + 1;
e4d6b795 62 case 0xA:
8318d78a 63 return base + 2;
e4d6b795 64 case 0xE:
8318d78a 65 return base + 3;
e4d6b795 66 case 0x9:
8318d78a 67 return base + 4;
e4d6b795 68 case 0xD:
8318d78a 69 return base + 5;
e4d6b795 70 case 0x8:
8318d78a 71 return base + 6;
e4d6b795 72 case 0xC:
8318d78a 73 return base + 7;
e4d6b795 74 }
8318d78a 75 return -1;
e4d6b795
MB
76}
77
78u8 b43_plcp_get_ratecode_cck(const u8 bitrate)
79{
80 switch (bitrate) {
81 case B43_CCK_RATE_1MB:
82 return 0x0A;
83 case B43_CCK_RATE_2MB:
84 return 0x14;
85 case B43_CCK_RATE_5MB:
86 return 0x37;
87 case B43_CCK_RATE_11MB:
88 return 0x6E;
89 }
90 B43_WARN_ON(1);
91 return 0;
92}
93
94u8 b43_plcp_get_ratecode_ofdm(const u8 bitrate)
95{
96 switch (bitrate) {
97 case B43_OFDM_RATE_6MB:
98 return 0xB;
99 case B43_OFDM_RATE_9MB:
100 return 0xF;
101 case B43_OFDM_RATE_12MB:
102 return 0xA;
103 case B43_OFDM_RATE_18MB:
104 return 0xE;
105 case B43_OFDM_RATE_24MB:
106 return 0x9;
107 case B43_OFDM_RATE_36MB:
108 return 0xD;
109 case B43_OFDM_RATE_48MB:
110 return 0x8;
111 case B43_OFDM_RATE_54MB:
112 return 0xC;
113 }
114 B43_WARN_ON(1);
115 return 0;
116}
117
118void b43_generate_plcp_hdr(struct b43_plcp_hdr4 *plcp,
119 const u16 octets, const u8 bitrate)
120{
e4d6b795
MB
121 __u8 *raw = plcp->raw;
122
123 if (b43_is_ofdm_rate(bitrate)) {
1a09404a
MB
124 u32 d;
125
126 d = b43_plcp_get_ratecode_ofdm(bitrate);
e4d6b795 127 B43_WARN_ON(octets & 0xF000);
1a09404a 128 d |= (octets << 5);
b52a033c 129 plcp->data = cpu_to_le32(d);
e4d6b795
MB
130 } else {
131 u32 plen;
132
133 plen = octets * 16 / bitrate;
134 if ((octets * 16 % bitrate) > 0) {
135 plen++;
136 if ((bitrate == B43_CCK_RATE_11MB)
137 && ((octets * 8 % 11) < 4)) {
138 raw[1] = 0x84;
139 } else
140 raw[1] = 0x04;
141 } else
142 raw[1] = 0x04;
b52a033c 143 plcp->data |= cpu_to_le32(plen << 16);
e4d6b795
MB
144 raw[0] = b43_plcp_get_ratecode_cck(bitrate);
145 }
146}
147
148static u8 b43_calc_fallback_rate(u8 bitrate)
149{
150 switch (bitrate) {
151 case B43_CCK_RATE_1MB:
152 return B43_CCK_RATE_1MB;
153 case B43_CCK_RATE_2MB:
154 return B43_CCK_RATE_1MB;
155 case B43_CCK_RATE_5MB:
156 return B43_CCK_RATE_2MB;
157 case B43_CCK_RATE_11MB:
158 return B43_CCK_RATE_5MB;
159 case B43_OFDM_RATE_6MB:
160 return B43_CCK_RATE_5MB;
161 case B43_OFDM_RATE_9MB:
162 return B43_OFDM_RATE_6MB;
163 case B43_OFDM_RATE_12MB:
164 return B43_OFDM_RATE_9MB;
165 case B43_OFDM_RATE_18MB:
166 return B43_OFDM_RATE_12MB;
167 case B43_OFDM_RATE_24MB:
168 return B43_OFDM_RATE_18MB;
169 case B43_OFDM_RATE_36MB:
170 return B43_OFDM_RATE_24MB;
171 case B43_OFDM_RATE_48MB:
172 return B43_OFDM_RATE_36MB;
173 case B43_OFDM_RATE_54MB:
174 return B43_OFDM_RATE_48MB;
175 }
176 B43_WARN_ON(1);
177 return 0;
178}
179
eb189d8b 180/* Generate a TX data header. */
09552ccd
MB
181int b43_generate_txhdr(struct b43_wldev *dev,
182 u8 *_txhdr,
183 const unsigned char *fragment_data,
184 unsigned int fragment_len,
e6a9854b 185 struct ieee80211_tx_info *info,
09552ccd 186 u16 cookie)
e4d6b795 187{
eb189d8b 188 struct b43_txhdr *txhdr = (struct b43_txhdr *)_txhdr;
e4d6b795
MB
189 const struct b43_phy *phy = &dev->phy;
190 const struct ieee80211_hdr *wlhdr =
191 (const struct ieee80211_hdr *)fragment_data;
d0f09804 192 int use_encryption = !!info->control.hw_key;
f37d9234 193 __le16 fctl = wlhdr->frame_control;
8318d78a 194 struct ieee80211_rate *fbrate;
e4d6b795
MB
195 u8 rate, rate_fb;
196 int rate_ofdm, rate_fb_ofdm;
197 unsigned int plcp_fragment_len;
198 u32 mac_ctl = 0;
199 u16 phy_ctl = 0;
200 u8 extra_ft = 0;
2e92e6f2 201 struct ieee80211_rate *txrate;
e6a9854b 202 struct ieee80211_tx_rate *rates;
e4d6b795
MB
203
204 memset(txhdr, 0, sizeof(*txhdr));
205
e039fa4a 206 txrate = ieee80211_get_tx_rate(dev->wl->hw, info);
2e92e6f2 207 rate = txrate ? txrate->hw_value : B43_CCK_RATE_1MB;
e4d6b795 208 rate_ofdm = b43_is_ofdm_rate(rate);
870abdf6 209 fbrate = ieee80211_get_alt_retry_rate(dev->wl->hw, info, 0) ? : txrate;
8318d78a 210 rate_fb = fbrate->hw_value;
e4d6b795
MB
211 rate_fb_ofdm = b43_is_ofdm_rate(rate_fb);
212
213 if (rate_ofdm)
214 txhdr->phy_rate = b43_plcp_get_ratecode_ofdm(rate);
215 else
216 txhdr->phy_rate = b43_plcp_get_ratecode_cck(rate);
217 txhdr->mac_frame_ctl = wlhdr->frame_control;
218 memcpy(txhdr->tx_receiver, wlhdr->addr1, 6);
219
220 /* Calculate duration for fallback rate */
221 if ((rate_fb == rate) ||
222 (wlhdr->duration_id & cpu_to_le16(0x8000)) ||
223 (wlhdr->duration_id == cpu_to_le16(0))) {
224 /* If the fallback rate equals the normal rate or the
225 * dur_id field contains an AID, CFP magic or 0,
226 * use the original dur_id field. */
227 txhdr->dur_fb = wlhdr->duration_id;
228 } else {
e039fa4a
JB
229 txhdr->dur_fb = ieee80211_generic_frame_duration(
230 dev->wl->hw, info->control.vif, fragment_len, fbrate);
e4d6b795
MB
231 }
232
233 plcp_fragment_len = fragment_len + FCS_LEN;
234 if (use_encryption) {
e039fa4a 235 u8 key_idx = info->control.hw_key->hw_key_idx;
e4d6b795
MB
236 struct b43_key *key;
237 int wlhdr_len;
238 size_t iv_len;
239
240 B43_WARN_ON(key_idx >= dev->max_nr_keys);
241 key = &(dev->key[key_idx]);
7be1bb6b 242
09552ccd
MB
243 if (unlikely(!key->keyconf)) {
244 /* This key is invalid. This might only happen
245 * in a short timeframe after machine resume before
246 * we were able to reconfigure keys.
247 * Drop this packet completely. Do not transmit it
248 * unencrypted to avoid leaking information. */
249 return -ENOKEY;
7be1bb6b 250 }
09552ccd
MB
251
252 /* Hardware appends ICV. */
76708dee 253 plcp_fragment_len += info->control.hw_key->icv_len;
09552ccd
MB
254
255 key_idx = b43_kidx_to_fw(dev, key_idx);
256 mac_ctl |= (key_idx << B43_TXH_MAC_KEYIDX_SHIFT) &
257 B43_TXH_MAC_KEYIDX;
258 mac_ctl |= (key->algorithm << B43_TXH_MAC_KEYALG_SHIFT) &
259 B43_TXH_MAC_KEYALG;
f37d9234 260 wlhdr_len = ieee80211_hdrlen(fctl);
76708dee 261 iv_len = min((size_t) info->control.hw_key->iv_len,
09552ccd
MB
262 ARRAY_SIZE(txhdr->iv));
263 memcpy(txhdr->iv, ((u8 *) wlhdr) + wlhdr_len, iv_len);
e4d6b795 264 }
eb189d8b
MB
265 if (b43_is_old_txhdr_format(dev)) {
266 b43_generate_plcp_hdr((struct b43_plcp_hdr4 *)(&txhdr->old_format.plcp),
267 plcp_fragment_len, rate);
268 } else {
269 b43_generate_plcp_hdr((struct b43_plcp_hdr4 *)(&txhdr->new_format.plcp),
270 plcp_fragment_len, rate);
271 }
e4d6b795
MB
272 b43_generate_plcp_hdr((struct b43_plcp_hdr4 *)(&txhdr->plcp_fb),
273 plcp_fragment_len, rate_fb);
274
275 /* Extra Frame Types */
276 if (rate_fb_ofdm)
eb189d8b
MB
277 extra_ft |= B43_TXH_EFT_FB_OFDM;
278 else
279 extra_ft |= B43_TXH_EFT_FB_CCK;
e4d6b795
MB
280
281 /* Set channel radio code. Note that the micrcode ORs 0x100 to
282 * this value before comparing it to the value in SHM, if this
283 * is a 5Ghz packet.
284 */
285 txhdr->chan_radio_code = phy->channel;
286
287 /* PHY TX Control word */
288 if (rate_ofdm)
eb189d8b
MB
289 phy_ctl |= B43_TXH_PHY_ENC_OFDM;
290 else
291 phy_ctl |= B43_TXH_PHY_ENC_CCK;
e6a9854b 292 if (info->control.rates[0].flags & IEEE80211_TX_RC_USE_SHORT_PREAMBLE)
eb189d8b 293 phy_ctl |= B43_TXH_PHY_SHORTPRMBL;
9db1f6d7 294
e039fa4a 295 switch (b43_ieee80211_antenna_sanitize(dev, info->antenna_sel_tx)) {
9db1f6d7 296 case 0: /* Default */
eb189d8b 297 phy_ctl |= B43_TXH_PHY_ANT01AUTO;
e4d6b795 298 break;
9db1f6d7 299 case 1: /* Antenna 0 */
eb189d8b 300 phy_ctl |= B43_TXH_PHY_ANT0;
e4d6b795 301 break;
9db1f6d7 302 case 2: /* Antenna 1 */
eb189d8b
MB
303 phy_ctl |= B43_TXH_PHY_ANT1;
304 break;
305 case 3: /* Antenna 2 */
306 phy_ctl |= B43_TXH_PHY_ANT2;
307 break;
308 case 4: /* Antenna 3 */
309 phy_ctl |= B43_TXH_PHY_ANT3;
e4d6b795
MB
310 break;
311 default:
312 B43_WARN_ON(1);
313 }
314
e6a9854b 315 rates = info->control.rates;
e4d6b795 316 /* MAC control */
e039fa4a 317 if (!(info->flags & IEEE80211_TX_CTL_NO_ACK))
eb189d8b 318 mac_ctl |= B43_TXH_MAC_ACK;
f591fa5d
JB
319 /* use hardware sequence counter as the non-TID counter */
320 if (info->flags & IEEE80211_TX_CTL_ASSIGN_SEQ)
eb189d8b 321 mac_ctl |= B43_TXH_MAC_HWSEQ;
e039fa4a 322 if (info->flags & IEEE80211_TX_CTL_FIRST_FRAGMENT)
eb189d8b 323 mac_ctl |= B43_TXH_MAC_STMSDU;
e4d6b795 324 if (phy->type == B43_PHYTYPE_A)
eb189d8b 325 mac_ctl |= B43_TXH_MAC_5GHZ;
e6a9854b
JB
326
327 /* Overwrite rates[0].count to make the retry calculation
328 * in the tx status easier. need the actual retry limit to
329 * detect whether the fallback rate was used.
330 */
331 if ((rates[0].flags & IEEE80211_TX_RC_USE_RTS_CTS) ||
332 (rates[0].count <= dev->wl->hw->conf.long_frame_max_tx_count)) {
333 rates[0].count = dev->wl->hw->conf.long_frame_max_tx_count;
eb189d8b 334 mac_ctl |= B43_TXH_MAC_LONGFRAME;
e6a9854b
JB
335 } else {
336 rates[0].count = dev->wl->hw->conf.short_frame_max_tx_count;
337 }
e4d6b795
MB
338
339 /* Generate the RTS or CTS-to-self frame */
e6a9854b
JB
340 if ((rates[0].flags & IEEE80211_TX_RC_USE_RTS_CTS) ||
341 (rates[0].flags & IEEE80211_TX_RC_USE_CTS_PROTECT)) {
e4d6b795
MB
342 unsigned int len;
343 struct ieee80211_hdr *hdr;
344 int rts_rate, rts_rate_fb;
345 int rts_rate_ofdm, rts_rate_fb_ofdm;
eb189d8b 346 struct b43_plcp_hdr6 *plcp;
2e92e6f2 347 struct ieee80211_rate *rts_cts_rate;
e4d6b795 348
e039fa4a 349 rts_cts_rate = ieee80211_get_rts_cts_rate(dev->wl->hw, info);
2e92e6f2
JB
350
351 rts_rate = rts_cts_rate ? rts_cts_rate->hw_value : B43_CCK_RATE_1MB;
e4d6b795
MB
352 rts_rate_ofdm = b43_is_ofdm_rate(rts_rate);
353 rts_rate_fb = b43_calc_fallback_rate(rts_rate);
354 rts_rate_fb_ofdm = b43_is_ofdm_rate(rts_rate_fb);
355
e6a9854b 356 if (rates[0].flags & IEEE80211_TX_RC_USE_CTS_PROTECT) {
eb189d8b
MB
357 struct ieee80211_cts *cts;
358
359 if (b43_is_old_txhdr_format(dev)) {
360 cts = (struct ieee80211_cts *)
361 (txhdr->old_format.rts_frame);
362 } else {
363 cts = (struct ieee80211_cts *)
364 (txhdr->new_format.rts_frame);
365 }
e039fa4a 366 ieee80211_ctstoself_get(dev->wl->hw, info->control.vif,
e4d6b795 367 fragment_data, fragment_len,
e039fa4a 368 info, cts);
eb189d8b 369 mac_ctl |= B43_TXH_MAC_SENDCTS;
e4d6b795
MB
370 len = sizeof(struct ieee80211_cts);
371 } else {
eb189d8b
MB
372 struct ieee80211_rts *rts;
373
374 if (b43_is_old_txhdr_format(dev)) {
375 rts = (struct ieee80211_rts *)
376 (txhdr->old_format.rts_frame);
377 } else {
378 rts = (struct ieee80211_rts *)
379 (txhdr->new_format.rts_frame);
380 }
e039fa4a 381 ieee80211_rts_get(dev->wl->hw, info->control.vif,
eb189d8b 382 fragment_data, fragment_len,
e039fa4a 383 info, rts);
eb189d8b 384 mac_ctl |= B43_TXH_MAC_SENDRTS;
e4d6b795
MB
385 len = sizeof(struct ieee80211_rts);
386 }
387 len += FCS_LEN;
eb189d8b
MB
388
389 /* Generate the PLCP headers for the RTS/CTS frame */
390 if (b43_is_old_txhdr_format(dev))
391 plcp = &txhdr->old_format.rts_plcp;
392 else
393 plcp = &txhdr->new_format.rts_plcp;
394 b43_generate_plcp_hdr((struct b43_plcp_hdr4 *)plcp,
395 len, rts_rate);
396 plcp = &txhdr->rts_plcp_fb;
397 b43_generate_plcp_hdr((struct b43_plcp_hdr4 *)plcp,
e4d6b795 398 len, rts_rate_fb);
eb189d8b
MB
399
400 if (b43_is_old_txhdr_format(dev)) {
401 hdr = (struct ieee80211_hdr *)
402 (&txhdr->old_format.rts_frame);
403 } else {
404 hdr = (struct ieee80211_hdr *)
405 (&txhdr->new_format.rts_frame);
406 }
e4d6b795 407 txhdr->rts_dur_fb = hdr->duration_id;
eb189d8b 408
e4d6b795 409 if (rts_rate_ofdm) {
eb189d8b 410 extra_ft |= B43_TXH_EFT_RTS_OFDM;
e4d6b795
MB
411 txhdr->phy_rate_rts =
412 b43_plcp_get_ratecode_ofdm(rts_rate);
eb189d8b
MB
413 } else {
414 extra_ft |= B43_TXH_EFT_RTS_CCK;
e4d6b795
MB
415 txhdr->phy_rate_rts =
416 b43_plcp_get_ratecode_cck(rts_rate);
eb189d8b 417 }
e4d6b795 418 if (rts_rate_fb_ofdm)
eb189d8b
MB
419 extra_ft |= B43_TXH_EFT_RTSFB_OFDM;
420 else
421 extra_ft |= B43_TXH_EFT_RTSFB_CCK;
e4d6b795
MB
422 }
423
424 /* Magic cookie */
eb189d8b
MB
425 if (b43_is_old_txhdr_format(dev))
426 txhdr->old_format.cookie = cpu_to_le16(cookie);
427 else
428 txhdr->new_format.cookie = cpu_to_le16(cookie);
e4d6b795
MB
429
430 /* Apply the bitfields */
431 txhdr->mac_ctl = cpu_to_le32(mac_ctl);
432 txhdr->phy_ctl = cpu_to_le16(phy_ctl);
433 txhdr->extra_ft = extra_ft;
e4d6b795 434
09552ccd 435 return 0;
e4d6b795
MB
436}
437
438static s8 b43_rssi_postprocess(struct b43_wldev *dev,
439 u8 in_rssi, int ofdm,
440 int adjust_2053, int adjust_2050)
441{
442 struct b43_phy *phy = &dev->phy;
ef1a628d 443 struct b43_phy_g *gphy = phy->g;
e4d6b795
MB
444 s32 tmp;
445
446 switch (phy->radio_ver) {
447 case 0x2050:
448 if (ofdm) {
449 tmp = in_rssi;
450 if (tmp > 127)
451 tmp -= 256;
452 tmp *= 73;
453 tmp /= 64;
454 if (adjust_2050)
455 tmp += 25;
456 else
457 tmp -= 3;
458 } else {
95de2841 459 if (dev->dev->bus->sprom.
e4d6b795
MB
460 boardflags_lo & B43_BFL_RSSI) {
461 if (in_rssi > 63)
462 in_rssi = 63;
ef1a628d
MB
463 B43_WARN_ON(phy->type != B43_PHYTYPE_G);
464 tmp = gphy->nrssi_lt[in_rssi];
e4d6b795
MB
465 tmp = 31 - tmp;
466 tmp *= -131;
467 tmp /= 128;
468 tmp -= 57;
469 } else {
470 tmp = in_rssi;
471 tmp = 31 - tmp;
472 tmp *= -149;
473 tmp /= 128;
474 tmp -= 68;
475 }
476 if (phy->type == B43_PHYTYPE_G && adjust_2050)
477 tmp += 25;
478 }
479 break;
480 case 0x2060:
481 if (in_rssi > 127)
482 tmp = in_rssi - 256;
483 else
484 tmp = in_rssi;
485 break;
486 default:
487 tmp = in_rssi;
488 tmp -= 11;
489 tmp *= 103;
490 tmp /= 64;
491 if (adjust_2053)
492 tmp -= 109;
493 else
494 tmp -= 83;
495 }
496
497 return (s8) tmp;
498}
499
500//TODO
501#if 0
502static s8 b43_rssinoise_postprocess(struct b43_wldev *dev, u8 in_rssi)
503{
504 struct b43_phy *phy = &dev->phy;
505 s8 ret;
506
507 if (phy->type == B43_PHYTYPE_A) {
508 //TODO: Incomplete specs.
509 ret = 0;
510 } else
511 ret = b43_rssi_postprocess(dev, in_rssi, 0, 1, 1);
512
513 return ret;
514}
515#endif
516
517void b43_rx(struct b43_wldev *dev, struct sk_buff *skb, const void *_rxhdr)
518{
519 struct ieee80211_rx_status status;
520 struct b43_plcp_hdr6 *plcp;
521 struct ieee80211_hdr *wlhdr;
522 const struct b43_rxhdr_fw4 *rxhdr = _rxhdr;
f37d9234 523 __le16 fctl;
e4d6b795
MB
524 u16 phystat0, phystat3, chanstat, mactime;
525 u32 macstat;
526 u16 chanid;
8318d78a 527 u16 phytype;
e4d6b795
MB
528 int padding;
529
530 memset(&status, 0, sizeof(status));
531
532 /* Get metadata about the frame from the header. */
533 phystat0 = le16_to_cpu(rxhdr->phy_status0);
534 phystat3 = le16_to_cpu(rxhdr->phy_status3);
e4d6b795
MB
535 macstat = le32_to_cpu(rxhdr->mac_status);
536 mactime = le16_to_cpu(rxhdr->mac_time);
537 chanstat = le16_to_cpu(rxhdr->channel);
8318d78a 538 phytype = chanstat & B43_RX_CHAN_PHYTYPE;
e4d6b795 539
ce4fbdbf 540 if (unlikely(macstat & B43_RX_MAC_FCSERR)) {
e4d6b795 541 dev->wl->ieee_stats.dot11FCSErrorCount++;
ce4fbdbf
MB
542 status.flag |= RX_FLAG_FAILED_FCS_CRC;
543 }
544 if (unlikely(phystat0 & (B43_RX_PHYST0_PLCPHCF | B43_RX_PHYST0_PLCPFV)))
545 status.flag |= RX_FLAG_FAILED_PLCP_CRC;
546 if (phystat0 & B43_RX_PHYST0_SHORTPRMBL)
547 status.flag |= RX_FLAG_SHORTPRE;
e4d6b795
MB
548 if (macstat & B43_RX_MAC_DECERR) {
549 /* Decryption with the given key failed.
550 * Drop the packet. We also won't be able to decrypt it with
551 * the key in software. */
552 goto drop;
553 }
554
555 /* Skip PLCP and padding */
556 padding = (macstat & B43_RX_MAC_PADDING) ? 2 : 0;
557 if (unlikely(skb->len < (sizeof(struct b43_plcp_hdr6) + padding))) {
558 b43dbg(dev->wl, "RX: Packet size underrun (1)\n");
559 goto drop;
560 }
561 plcp = (struct b43_plcp_hdr6 *)(skb->data + padding);
562 skb_pull(skb, sizeof(struct b43_plcp_hdr6) + padding);
563 /* The skb contains the Wireless Header + payload data now */
564 if (unlikely(skb->len < (2 + 2 + 6 /*minimum hdr */ + FCS_LEN))) {
565 b43dbg(dev->wl, "RX: Packet size underrun (2)\n");
566 goto drop;
567 }
568 wlhdr = (struct ieee80211_hdr *)(skb->data);
f37d9234 569 fctl = wlhdr->frame_control;
e4d6b795
MB
570
571 if (macstat & B43_RX_MAC_DEC) {
572 unsigned int keyidx;
573 int wlhdr_len;
574
575 keyidx = ((macstat & B43_RX_MAC_KEYIDX)
576 >> B43_RX_MAC_KEYIDX_SHIFT);
577 /* We must adjust the key index here. We want the "physical"
578 * key index, but the ucode passed it slightly different.
579 */
580 keyidx = b43_kidx_to_raw(dev, keyidx);
581 B43_WARN_ON(keyidx >= dev->max_nr_keys);
582
583 if (dev->key[keyidx].algorithm != B43_SEC_ALGO_NONE) {
f37d9234 584 wlhdr_len = ieee80211_hdrlen(fctl);
e4d6b795
MB
585 if (unlikely(skb->len < (wlhdr_len + 3))) {
586 b43dbg(dev->wl,
587 "RX: Packet size underrun (3)\n");
588 goto drop;
589 }
590 status.flag |= RX_FLAG_DECRYPTED;
591 }
592 }
593
7b584163 594 /* Link quality statistics */
e4d6b795 595 status.noise = dev->stats.link_noise;
7b584163
MB
596 if ((chanstat & B43_RX_CHAN_PHYTYPE) == B43_PHYTYPE_N) {
597// s8 rssi = max(rxhdr->power0, rxhdr->power1);
598 //TODO: Find out what the rssi value is (dBm or percentage?)
599 // and also find out what the maximum possible value is.
600 // Fill status.ssi and status.signal fields.
601 } else {
566bfe5a 602 status.signal = b43_rssi_postprocess(dev, rxhdr->jssi,
7b584163
MB
603 (phystat0 & B43_RX_PHYST0_OFDM),
604 (phystat0 & B43_RX_PHYST0_GAINCTL),
605 (phystat3 & B43_RX_PHYST3_TRSTATE));
566bfe5a 606 status.qual = (rxhdr->jssi * 100) / B43_RX_MAX_SSI;
7b584163
MB
607 }
608
e4d6b795 609 if (phystat0 & B43_RX_PHYST0_OFDM)
8318d78a
JB
610 status.rate_idx = b43_plcp_get_bitrate_idx_ofdm(plcp,
611 phytype == B43_PHYTYPE_A);
e4d6b795 612 else
8318d78a 613 status.rate_idx = b43_plcp_get_bitrate_idx_cck(plcp);
ce4fbdbf
MB
614 if (unlikely(status.rate_idx == -1)) {
615 /* PLCP seems to be corrupted.
616 * Drop the frame, if we are not interested in corrupted frames. */
617 if (!(dev->wl->filter_flags & FIF_PLCPFAIL))
618 goto drop;
619 }
e4d6b795 620 status.antenna = !!(phystat0 & B43_RX_PHYST0_ANT);
c0ddd04d
JL
621
622 /*
d007b7f4
JB
623 * All frames on monitor interfaces and beacons always need a full
624 * 64-bit timestamp. Monitor interfaces need it for diagnostic
625 * purposes and beacons for IBSS merging.
626 * This code assumes we get to process the packet within 16 bits
627 * of timestamp, i.e. about 65 milliseconds after the PHY received
628 * the first symbol.
c0ddd04d 629 */
f37d9234 630 if (ieee80211_is_beacon(fctl) || dev->wl->radiotap_enabled) {
c0ddd04d
JL
631 u16 low_mactime_now;
632
633 b43_tsf_read(dev, &status.mactime);
634 low_mactime_now = status.mactime;
635 status.mactime = status.mactime & ~0xFFFFULL;
636 status.mactime += mactime;
637 if (low_mactime_now <= mactime)
638 status.mactime -= 0x10000;
639 status.flag |= RX_FLAG_TSFT;
640 }
e4d6b795
MB
641
642 chanid = (chanstat & B43_RX_CHAN_ID) >> B43_RX_CHAN_ID_SHIFT;
643 switch (chanstat & B43_RX_CHAN_PHYTYPE) {
644 case B43_PHYTYPE_A:
8318d78a 645 status.band = IEEE80211_BAND_5GHZ;
d987160b
MB
646 B43_WARN_ON(1);
647 /* FIXME: We don't really know which value the "chanid" contains.
648 * So the following assignment might be wrong. */
8318d78a 649 status.freq = b43_channel_to_freq_5ghz(chanid);
e4d6b795
MB
650 break;
651 case B43_PHYTYPE_G:
8318d78a 652 status.band = IEEE80211_BAND_2GHZ;
d987160b
MB
653 /* chanid is the radio channel cookie value as used
654 * to tune the radio. */
e4d6b795 655 status.freq = chanid + 2400;
d987160b
MB
656 break;
657 case B43_PHYTYPE_N:
d987160b
MB
658 /* chanid is the SHM channel cookie. Which is the plain
659 * channel number in b43. */
8318d78a
JB
660 if (chanstat & B43_RX_CHAN_5GHZ) {
661 status.band = IEEE80211_BAND_5GHZ;
662 status.freq = b43_freq_to_channel_5ghz(chanid);
663 } else {
664 status.band = IEEE80211_BAND_2GHZ;
665 status.freq = b43_freq_to_channel_2ghz(chanid);
666 }
e4d6b795
MB
667 break;
668 default:
669 B43_WARN_ON(1);
d987160b 670 goto drop;
e4d6b795
MB
671 }
672
e4d6b795
MB
673 ieee80211_rx_irqsafe(dev->wl->hw, skb, &status);
674
675 return;
676drop:
677 b43dbg(dev->wl, "RX: Packet dropped\n");
678 dev_kfree_skb_any(skb);
679}
680
681void b43_handle_txstatus(struct b43_wldev *dev,
682 const struct b43_txstatus *status)
683{
684 b43_debugfs_log_txstat(dev, status);
685
686 if (status->intermediate)
687 return;
688 if (status->for_ampdu)
689 return;
690 if (!status->acked)
691 dev->wl->ieee_stats.dot11ACKFailureCount++;
692 if (status->rts_count) {
693 if (status->rts_count == 0xF) //FIXME
694 dev->wl->ieee_stats.dot11RTSFailureCount++;
695 else
696 dev->wl->ieee_stats.dot11RTSSuccessCount++;
697 }
698
5100d5ac
MB
699 if (b43_using_pio_transfers(dev))
700 b43_pio_handle_txstatus(dev, status);
701 else
702 b43_dma_handle_txstatus(dev, status);
18c8adeb
MB
703
704 b43_phy_txpower_check(dev, 0);
e4d6b795
MB
705}
706
5100d5ac
MB
707/* Fill out the mac80211 TXstatus report based on the b43-specific
708 * txstatus report data. This returns a boolean whether the frame was
709 * successfully transmitted. */
e6a9854b
JB
710bool b43_fill_txstatus_report(struct b43_wldev *dev,
711 struct ieee80211_tx_info *report,
5100d5ac 712 const struct b43_txstatus *status)
e4d6b795 713{
5100d5ac 714 bool frame_success = 1;
e6a9854b
JB
715 int retry_limit;
716
717 /* preserve the confiured retry limit before clearing the status
718 * The xmit function has overwritten the rc's value with the actual
719 * retry limit done by the hardware */
720 retry_limit = report->status.rates[0].count;
721 ieee80211_tx_info_clear_status(report);
5100d5ac
MB
722
723 if (status->acked) {
724 /* The frame was ACKed. */
e039fa4a 725 report->flags |= IEEE80211_TX_STAT_ACK;
5100d5ac
MB
726 } else {
727 /* The frame was not ACKed... */
e039fa4a 728 if (!(report->flags & IEEE80211_TX_CTL_NO_ACK)) {
5100d5ac
MB
729 /* ...but we expected an ACK. */
730 frame_success = 0;
5100d5ac
MB
731 }
732 }
733 if (status->frame_count == 0) {
734 /* The frame was not transmitted at all. */
e6a9854b
JB
735 report->status.rates[0].count = 0;
736 } else if (status->rts_count > dev->wl->hw->conf.short_frame_max_tx_count) {
737 /*
738 * If the short retries (RTS, not data frame) have exceeded
739 * the limit, the hw will not have tried the selected rate,
740 * but will have used the fallback rate instead.
741 * Don't let the rate control count attempts for the selected
742 * rate in this case, otherwise the statistics will be off.
743 */
744 report->status.rates[0].count = 0;
745 report->status.rates[1].count = status->frame_count;
746 } else {
747 if (status->frame_count > retry_limit) {
748 report->status.rates[0].count = retry_limit;
749 report->status.rates[1].count = status->frame_count -
750 retry_limit;
751
752 } else {
753 report->status.rates[0].count = status->frame_count;
754 report->status.rates[1].idx = -1;
755 }
756 }
5100d5ac
MB
757
758 return frame_success;
e4d6b795
MB
759}
760
761/* Stop any TX operation on the device (suspend the hardware queues) */
762void b43_tx_suspend(struct b43_wldev *dev)
763{
5100d5ac
MB
764 if (b43_using_pio_transfers(dev))
765 b43_pio_tx_suspend(dev);
766 else
767 b43_dma_tx_suspend(dev);
e4d6b795
MB
768}
769
770/* Resume any TX operation on the device (resume the hardware queues) */
771void b43_tx_resume(struct b43_wldev *dev)
772{
5100d5ac
MB
773 if (b43_using_pio_transfers(dev))
774 b43_pio_tx_resume(dev);
775 else
776 b43_dma_tx_resume(dev);
e4d6b795 777}
This page took 0.342294 seconds and 5 git commands to generate.