blob: 5b85e7d73592761afe3871a0be6aafc3f9cec187 [file] [log] [blame]
Michael Buesche4d6b792007-09-18 15:39:42 -04001/*
2
3 Broadcom B43 wireless driver
4
5 Transmission (TX/RX) related functions.
6
7 Copyright (C) 2005 Martin Langer <martin-langer@gmx.de>
Stefano Brivio1f21ad22007-11-06 22:49:20 +01008 Copyright (C) 2005 Stefano Brivio <stefano.brivio@polimi.it>
Michael Buesche4d6b792007-09-18 15:39:42 -04009 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"
Michael Bueschef1a6282008-08-27 18:53:02 +020031#include "phy_common.h"
Michael Buesche4d6b792007-09-18 15:39:42 -040032#include "dma.h"
Michael Buesch5100d5a2008-03-29 21:01:16 +010033#include "pio.h"
Michael Buesch03b29772007-12-26 14:41:30 +010034
Michael Buesche4d6b792007-09-18 15:39:42 -040035
Johannes Berg8318d782008-01-24 19:38:38 +010036/* Extract the bitrate index out of a CCK PLCP header. */
37static int b43_plcp_get_bitrate_idx_cck(struct b43_plcp_hdr6 *plcp)
Michael Buesche4d6b792007-09-18 15:39:42 -040038{
39 switch (plcp->raw[0]) {
40 case 0x0A:
Johannes Berg8318d782008-01-24 19:38:38 +010041 return 0;
Michael Buesche4d6b792007-09-18 15:39:42 -040042 case 0x14:
Johannes Berg8318d782008-01-24 19:38:38 +010043 return 1;
Michael Buesche4d6b792007-09-18 15:39:42 -040044 case 0x37:
Johannes Berg8318d782008-01-24 19:38:38 +010045 return 2;
Michael Buesche4d6b792007-09-18 15:39:42 -040046 case 0x6E:
Johannes Berg8318d782008-01-24 19:38:38 +010047 return 3;
Michael Buesche4d6b792007-09-18 15:39:42 -040048 }
Johannes Berg8318d782008-01-24 19:38:38 +010049 return -1;
Michael Buesche4d6b792007-09-18 15:39:42 -040050}
51
Johannes Berg8318d782008-01-24 19:38:38 +010052/* Extract the bitrate index out of an OFDM PLCP header. */
Lorenzo Navaa3c0b872009-03-22 19:15:41 +010053static int b43_plcp_get_bitrate_idx_ofdm(struct b43_plcp_hdr6 *plcp, bool aphy)
Michael Buesche4d6b792007-09-18 15:39:42 -040054{
Johannes Berg8318d782008-01-24 19:38:38 +010055 int base = aphy ? 0 : 4;
56
Michael Buesche4d6b792007-09-18 15:39:42 -040057 switch (plcp->raw[0] & 0xF) {
58 case 0xB:
Johannes Berg8318d782008-01-24 19:38:38 +010059 return base + 0;
Michael Buesche4d6b792007-09-18 15:39:42 -040060 case 0xF:
Johannes Berg8318d782008-01-24 19:38:38 +010061 return base + 1;
Michael Buesche4d6b792007-09-18 15:39:42 -040062 case 0xA:
Johannes Berg8318d782008-01-24 19:38:38 +010063 return base + 2;
Michael Buesche4d6b792007-09-18 15:39:42 -040064 case 0xE:
Johannes Berg8318d782008-01-24 19:38:38 +010065 return base + 3;
Michael Buesche4d6b792007-09-18 15:39:42 -040066 case 0x9:
Johannes Berg8318d782008-01-24 19:38:38 +010067 return base + 4;
Michael Buesche4d6b792007-09-18 15:39:42 -040068 case 0xD:
Johannes Berg8318d782008-01-24 19:38:38 +010069 return base + 5;
Michael Buesche4d6b792007-09-18 15:39:42 -040070 case 0x8:
Johannes Berg8318d782008-01-24 19:38:38 +010071 return base + 6;
Michael Buesche4d6b792007-09-18 15:39:42 -040072 case 0xC:
Johannes Berg8318d782008-01-24 19:38:38 +010073 return base + 7;
Michael Buesche4d6b792007-09-18 15:39:42 -040074 }
Johannes Berg8318d782008-01-24 19:38:38 +010075 return -1;
Michael Buesche4d6b792007-09-18 15:39:42 -040076}
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{
Michael Buesche4d6b792007-09-18 15:39:42 -0400121 __u8 *raw = plcp->raw;
122
123 if (b43_is_ofdm_rate(bitrate)) {
Michael Buesch1a094042007-09-20 11:13:40 -0700124 u32 d;
125
126 d = b43_plcp_get_ratecode_ofdm(bitrate);
Michael Buesche4d6b792007-09-18 15:39:42 -0400127 B43_WARN_ON(octets & 0xF000);
Michael Buesch1a094042007-09-20 11:13:40 -0700128 d |= (octets << 5);
Matthieu CASTETb52a0332009-06-04 23:18:33 +0200129 plcp->data = cpu_to_le32(d);
Michael Buesche4d6b792007-09-18 15:39:42 -0400130 } 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;
Matthieu CASTETb52a0332009-06-04 23:18:33 +0200143 plcp->data |= cpu_to_le32(plen << 16);
Michael Buesche4d6b792007-09-18 15:39:42 -0400144 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
Michael Buescheb189d82008-01-28 14:47:41 -0800180/* Generate a TX data header. */
Michael Buesch09552cc2008-01-23 21:44:15 +0100181int b43_generate_txhdr(struct b43_wldev *dev,
182 u8 *_txhdr,
183 const unsigned char *fragment_data,
184 unsigned int fragment_len,
Johannes Berge6a98542008-10-21 12:40:02 +0200185 struct ieee80211_tx_info *info,
Michael Buesch09552cc2008-01-23 21:44:15 +0100186 u16 cookie)
Michael Buesche4d6b792007-09-18 15:39:42 -0400187{
Michael Buescheb189d82008-01-28 14:47:41 -0800188 struct b43_txhdr *txhdr = (struct b43_txhdr *)_txhdr;
Michael Buesche4d6b792007-09-18 15:39:42 -0400189 const struct b43_phy *phy = &dev->phy;
190 const struct ieee80211_hdr *wlhdr =
191 (const struct ieee80211_hdr *)fragment_data;
Johannes Bergd0f09802008-07-29 11:32:07 +0200192 int use_encryption = !!info->control.hw_key;
Harvey Harrisonf37d9232008-06-14 23:33:39 -0700193 __le16 fctl = wlhdr->frame_control;
Johannes Berg8318d782008-01-24 19:38:38 +0100194 struct ieee80211_rate *fbrate;
Michael Buesche4d6b792007-09-18 15:39:42 -0400195 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;
Johannes Berg2e92e6f2008-05-15 12:55:27 +0200201 struct ieee80211_rate *txrate;
Johannes Berge6a98542008-10-21 12:40:02 +0200202 struct ieee80211_tx_rate *rates;
Michael Buesche4d6b792007-09-18 15:39:42 -0400203
204 memset(txhdr, 0, sizeof(*txhdr));
205
Johannes Berge039fa42008-05-15 12:55:29 +0200206 txrate = ieee80211_get_tx_rate(dev->wl->hw, info);
Johannes Berg2e92e6f2008-05-15 12:55:27 +0200207 rate = txrate ? txrate->hw_value : B43_CCK_RATE_1MB;
Michael Buesche4d6b792007-09-18 15:39:42 -0400208 rate_ofdm = b43_is_ofdm_rate(rate);
Felix Fietkau870abdf2008-10-05 18:04:24 +0200209 fbrate = ieee80211_get_alt_retry_rate(dev->wl->hw, info, 0) ? : txrate;
Johannes Berg8318d782008-01-24 19:38:38 +0100210 rate_fb = fbrate->hw_value;
Michael Buesche4d6b792007-09-18 15:39:42 -0400211 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 {
Johannes Berge039fa42008-05-15 12:55:29 +0200229 txhdr->dur_fb = ieee80211_generic_frame_duration(
230 dev->wl->hw, info->control.vif, fragment_len, fbrate);
Michael Buesche4d6b792007-09-18 15:39:42 -0400231 }
232
233 plcp_fragment_len = fragment_len + FCS_LEN;
234 if (use_encryption) {
Johannes Berge039fa42008-05-15 12:55:29 +0200235 u8 key_idx = info->control.hw_key->hw_key_idx;
Michael Buesche4d6b792007-09-18 15:39:42 -0400236 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]);
Michael Buesche4d6b792007-09-18 15:39:42 -0400242
Michael Buesch09552cc2008-01-23 21:44:15 +0100243 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;
Michael Buesch7be1bb62008-01-23 21:10:56 +0100250 }
Michael Buesch09552cc2008-01-23 21:44:15 +0100251
252 /* Hardware appends ICV. */
Felix Fietkau76708de2008-10-05 18:02:48 +0200253 plcp_fragment_len += info->control.hw_key->icv_len;
Michael Buesch09552cc2008-01-23 21:44:15 +0100254
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;
Harvey Harrisonf37d9232008-06-14 23:33:39 -0700260 wlhdr_len = ieee80211_hdrlen(fctl);
Felix Fietkau76708de2008-10-05 18:02:48 +0200261 iv_len = min((size_t) info->control.hw_key->iv_len,
Michael Buesch09552cc2008-01-23 21:44:15 +0100262 ARRAY_SIZE(txhdr->iv));
263 memcpy(txhdr->iv, ((u8 *) wlhdr) + wlhdr_len, iv_len);
Michael Buesche4d6b792007-09-18 15:39:42 -0400264 }
Michael Buescheb189d82008-01-28 14:47:41 -0800265 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 }
Michael Buesche4d6b792007-09-18 15:39:42 -0400272 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)
Michael Buescheb189d82008-01-28 14:47:41 -0800277 extra_ft |= B43_TXH_EFT_FB_OFDM;
278 else
279 extra_ft |= B43_TXH_EFT_FB_CCK;
Michael Buesche4d6b792007-09-18 15:39:42 -0400280
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)
Michael Buescheb189d82008-01-28 14:47:41 -0800289 phy_ctl |= B43_TXH_PHY_ENC_OFDM;
290 else
291 phy_ctl |= B43_TXH_PHY_ENC_CCK;
Johannes Berge6a98542008-10-21 12:40:02 +0200292 if (info->control.rates[0].flags & IEEE80211_TX_RC_USE_SHORT_PREAMBLE)
Michael Buescheb189d82008-01-28 14:47:41 -0800293 phy_ctl |= B43_TXH_PHY_SHORTPRMBL;
Michael Buesch9db1f6d2007-12-22 21:54:20 +0100294
Johannes Berge039fa42008-05-15 12:55:29 +0200295 switch (b43_ieee80211_antenna_sanitize(dev, info->antenna_sel_tx)) {
Michael Buesch9db1f6d2007-12-22 21:54:20 +0100296 case 0: /* Default */
Michael Buescheb189d82008-01-28 14:47:41 -0800297 phy_ctl |= B43_TXH_PHY_ANT01AUTO;
Michael Buesche4d6b792007-09-18 15:39:42 -0400298 break;
Michael Buesch9db1f6d2007-12-22 21:54:20 +0100299 case 1: /* Antenna 0 */
Michael Buescheb189d82008-01-28 14:47:41 -0800300 phy_ctl |= B43_TXH_PHY_ANT0;
Michael Buesche4d6b792007-09-18 15:39:42 -0400301 break;
Michael Buesch9db1f6d2007-12-22 21:54:20 +0100302 case 2: /* Antenna 1 */
Michael Buescheb189d82008-01-28 14:47:41 -0800303 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;
Michael Buesche4d6b792007-09-18 15:39:42 -0400310 break;
311 default:
312 B43_WARN_ON(1);
313 }
314
Johannes Berge6a98542008-10-21 12:40:02 +0200315 rates = info->control.rates;
Michael Buesche4d6b792007-09-18 15:39:42 -0400316 /* MAC control */
Johannes Berge039fa42008-05-15 12:55:29 +0200317 if (!(info->flags & IEEE80211_TX_CTL_NO_ACK))
Michael Buescheb189d82008-01-28 14:47:41 -0800318 mac_ctl |= B43_TXH_MAC_ACK;
Johannes Bergf591fa52008-07-10 11:21:26 +0200319 /* use hardware sequence counter as the non-TID counter */
320 if (info->flags & IEEE80211_TX_CTL_ASSIGN_SEQ)
Michael Buescheb189d82008-01-28 14:47:41 -0800321 mac_ctl |= B43_TXH_MAC_HWSEQ;
Johannes Berge039fa42008-05-15 12:55:29 +0200322 if (info->flags & IEEE80211_TX_CTL_FIRST_FRAGMENT)
Michael Buescheb189d82008-01-28 14:47:41 -0800323 mac_ctl |= B43_TXH_MAC_STMSDU;
Michael Buesche4d6b792007-09-18 15:39:42 -0400324 if (phy->type == B43_PHYTYPE_A)
Michael Buescheb189d82008-01-28 14:47:41 -0800325 mac_ctl |= B43_TXH_MAC_5GHZ;
Johannes Berge6a98542008-10-21 12:40:02 +0200326
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;
Michael Buescheb189d82008-01-28 14:47:41 -0800334 mac_ctl |= B43_TXH_MAC_LONGFRAME;
Johannes Berge6a98542008-10-21 12:40:02 +0200335 } else {
336 rates[0].count = dev->wl->hw->conf.short_frame_max_tx_count;
337 }
Michael Buesche4d6b792007-09-18 15:39:42 -0400338
339 /* Generate the RTS or CTS-to-self frame */
Johannes Berge6a98542008-10-21 12:40:02 +0200340 if ((rates[0].flags & IEEE80211_TX_RC_USE_RTS_CTS) ||
341 (rates[0].flags & IEEE80211_TX_RC_USE_CTS_PROTECT)) {
Michael Buesche4d6b792007-09-18 15:39:42 -0400342 unsigned int len;
343 struct ieee80211_hdr *hdr;
344 int rts_rate, rts_rate_fb;
345 int rts_rate_ofdm, rts_rate_fb_ofdm;
Michael Buescheb189d82008-01-28 14:47:41 -0800346 struct b43_plcp_hdr6 *plcp;
Johannes Berg2e92e6f2008-05-15 12:55:27 +0200347 struct ieee80211_rate *rts_cts_rate;
Michael Buesche4d6b792007-09-18 15:39:42 -0400348
Johannes Berge039fa42008-05-15 12:55:29 +0200349 rts_cts_rate = ieee80211_get_rts_cts_rate(dev->wl->hw, info);
Johannes Berg2e92e6f2008-05-15 12:55:27 +0200350
351 rts_rate = rts_cts_rate ? rts_cts_rate->hw_value : B43_CCK_RATE_1MB;
Michael Buesche4d6b792007-09-18 15:39:42 -0400352 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
Johannes Berge6a98542008-10-21 12:40:02 +0200356 if (rates[0].flags & IEEE80211_TX_RC_USE_CTS_PROTECT) {
Michael Buescheb189d82008-01-28 14:47:41 -0800357 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 }
Johannes Berge039fa42008-05-15 12:55:29 +0200366 ieee80211_ctstoself_get(dev->wl->hw, info->control.vif,
Michael Buesche4d6b792007-09-18 15:39:42 -0400367 fragment_data, fragment_len,
Johannes Berge039fa42008-05-15 12:55:29 +0200368 info, cts);
Michael Buescheb189d82008-01-28 14:47:41 -0800369 mac_ctl |= B43_TXH_MAC_SENDCTS;
Michael Buesche4d6b792007-09-18 15:39:42 -0400370 len = sizeof(struct ieee80211_cts);
371 } else {
Michael Buescheb189d82008-01-28 14:47:41 -0800372 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 }
Johannes Berge039fa42008-05-15 12:55:29 +0200381 ieee80211_rts_get(dev->wl->hw, info->control.vif,
Michael Buescheb189d82008-01-28 14:47:41 -0800382 fragment_data, fragment_len,
Johannes Berge039fa42008-05-15 12:55:29 +0200383 info, rts);
Michael Buescheb189d82008-01-28 14:47:41 -0800384 mac_ctl |= B43_TXH_MAC_SENDRTS;
Michael Buesche4d6b792007-09-18 15:39:42 -0400385 len = sizeof(struct ieee80211_rts);
386 }
387 len += FCS_LEN;
Michael Buescheb189d82008-01-28 14:47:41 -0800388
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,
Michael Buesche4d6b792007-09-18 15:39:42 -0400398 len, rts_rate_fb);
Michael Buescheb189d82008-01-28 14:47:41 -0800399
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 }
Michael Buesche4d6b792007-09-18 15:39:42 -0400407 txhdr->rts_dur_fb = hdr->duration_id;
Michael Buescheb189d82008-01-28 14:47:41 -0800408
Michael Buesche4d6b792007-09-18 15:39:42 -0400409 if (rts_rate_ofdm) {
Michael Buescheb189d82008-01-28 14:47:41 -0800410 extra_ft |= B43_TXH_EFT_RTS_OFDM;
Michael Buesche4d6b792007-09-18 15:39:42 -0400411 txhdr->phy_rate_rts =
412 b43_plcp_get_ratecode_ofdm(rts_rate);
Michael Buescheb189d82008-01-28 14:47:41 -0800413 } else {
414 extra_ft |= B43_TXH_EFT_RTS_CCK;
Michael Buesche4d6b792007-09-18 15:39:42 -0400415 txhdr->phy_rate_rts =
416 b43_plcp_get_ratecode_cck(rts_rate);
Michael Buescheb189d82008-01-28 14:47:41 -0800417 }
Michael Buesche4d6b792007-09-18 15:39:42 -0400418 if (rts_rate_fb_ofdm)
Michael Buescheb189d82008-01-28 14:47:41 -0800419 extra_ft |= B43_TXH_EFT_RTSFB_OFDM;
420 else
421 extra_ft |= B43_TXH_EFT_RTSFB_CCK;
Michael Buesche4d6b792007-09-18 15:39:42 -0400422 }
423
424 /* Magic cookie */
Michael Buescheb189d82008-01-28 14:47:41 -0800425 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);
Michael Buesche4d6b792007-09-18 15:39:42 -0400429
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;
Michael Buesche4d6b792007-09-18 15:39:42 -0400434
Michael Buesch09552cc2008-01-23 21:44:15 +0100435 return 0;
Michael Buesche4d6b792007-09-18 15:39:42 -0400436}
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;
Michael Bueschef1a6282008-08-27 18:53:02 +0200443 struct b43_phy_g *gphy = phy->g;
Michael Buesche4d6b792007-09-18 15:39:42 -0400444 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 {
Larry Finger95de2842007-11-09 16:57:18 -0600459 if (dev->dev->bus->sprom.
Michael Buesche4d6b792007-09-18 15:39:42 -0400460 boardflags_lo & B43_BFL_RSSI) {
461 if (in_rssi > 63)
462 in_rssi = 63;
Michael Bueschef1a6282008-08-27 18:53:02 +0200463 B43_WARN_ON(phy->type != B43_PHYTYPE_G);
464 tmp = gphy->nrssi_lt[in_rssi];
Michael Buesche4d6b792007-09-18 15:39:42 -0400465 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;
Harvey Harrisonf37d9232008-06-14 23:33:39 -0700523 __le16 fctl;
Michael Buesche4d6b792007-09-18 15:39:42 -0400524 u16 phystat0, phystat3, chanstat, mactime;
525 u32 macstat;
526 u16 chanid;
Johannes Berg8318d782008-01-24 19:38:38 +0100527 u16 phytype;
Michael Buesche4d6b792007-09-18 15:39:42 -0400528 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);
Michael Buesche4d6b792007-09-18 15:39:42 -0400535 macstat = le32_to_cpu(rxhdr->mac_status);
536 mactime = le16_to_cpu(rxhdr->mac_time);
537 chanstat = le16_to_cpu(rxhdr->channel);
Johannes Berg8318d782008-01-24 19:38:38 +0100538 phytype = chanstat & B43_RX_CHAN_PHYTYPE;
Michael Buesche4d6b792007-09-18 15:39:42 -0400539
Michael Bueschce4fbdb2009-03-02 23:18:37 +0100540 if (unlikely(macstat & B43_RX_MAC_FCSERR)) {
Michael Buesche4d6b792007-09-18 15:39:42 -0400541 dev->wl->ieee_stats.dot11FCSErrorCount++;
Michael Bueschce4fbdb2009-03-02 23:18:37 +0100542 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;
Michael Buesche4d6b792007-09-18 15:39:42 -0400548 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);
Harvey Harrisonf37d9232008-06-14 23:33:39 -0700569 fctl = wlhdr->frame_control;
Michael Buesche4d6b792007-09-18 15:39:42 -0400570
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) {
Harvey Harrisonf37d9232008-06-14 23:33:39 -0700584 wlhdr_len = ieee80211_hdrlen(fctl);
Michael Buesche4d6b792007-09-18 15:39:42 -0400585 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
Michael Buesch7b584162008-04-03 18:01:12 +0200594 /* Link quality statistics */
Michael Buesche4d6b792007-09-18 15:39:42 -0400595 status.noise = dev->stats.link_noise;
Michael Buesch7b584162008-04-03 18:01:12 +0200596 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 {
Bruno Randolf566bfe52008-05-08 19:15:40 +0200602 status.signal = b43_rssi_postprocess(dev, rxhdr->jssi,
Michael Buesch7b584162008-04-03 18:01:12 +0200603 (phystat0 & B43_RX_PHYST0_OFDM),
604 (phystat0 & B43_RX_PHYST0_GAINCTL),
605 (phystat3 & B43_RX_PHYST3_TRSTATE));
Bruno Randolf566bfe52008-05-08 19:15:40 +0200606 status.qual = (rxhdr->jssi * 100) / B43_RX_MAX_SSI;
Michael Buesch7b584162008-04-03 18:01:12 +0200607 }
608
Michael Buesche4d6b792007-09-18 15:39:42 -0400609 if (phystat0 & B43_RX_PHYST0_OFDM)
Johannes Berg8318d782008-01-24 19:38:38 +0100610 status.rate_idx = b43_plcp_get_bitrate_idx_ofdm(plcp,
611 phytype == B43_PHYTYPE_A);
Michael Buesche4d6b792007-09-18 15:39:42 -0400612 else
Johannes Berg8318d782008-01-24 19:38:38 +0100613 status.rate_idx = b43_plcp_get_bitrate_idx_cck(plcp);
Michael Bueschce4fbdb2009-03-02 23:18:37 +0100614 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 }
Michael Buesche4d6b792007-09-18 15:39:42 -0400620 status.antenna = !!(phystat0 & B43_RX_PHYST0_ANT);
John W. Linvillec0ddd042008-01-21 13:41:18 -0500621
622 /*
Johannes Bergd007b7f2008-02-18 18:53:55 +0100623 * 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.
John W. Linvillec0ddd042008-01-21 13:41:18 -0500629 */
Harvey Harrisonf37d9232008-06-14 23:33:39 -0700630 if (ieee80211_is_beacon(fctl) || dev->wl->radiotap_enabled) {
John W. Linvillec0ddd042008-01-21 13:41:18 -0500631 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 }
Michael Buesche4d6b792007-09-18 15:39:42 -0400641
642 chanid = (chanstat & B43_RX_CHAN_ID) >> B43_RX_CHAN_ID_SHIFT;
643 switch (chanstat & B43_RX_CHAN_PHYTYPE) {
644 case B43_PHYTYPE_A:
Johannes Berg8318d782008-01-24 19:38:38 +0100645 status.band = IEEE80211_BAND_5GHZ;
Michael Bueschd9871602008-01-02 18:55:53 +0100646 B43_WARN_ON(1);
647 /* FIXME: We don't really know which value the "chanid" contains.
648 * So the following assignment might be wrong. */
Johannes Berg8318d782008-01-24 19:38:38 +0100649 status.freq = b43_channel_to_freq_5ghz(chanid);
Michael Buesche4d6b792007-09-18 15:39:42 -0400650 break;
651 case B43_PHYTYPE_G:
Johannes Berg8318d782008-01-24 19:38:38 +0100652 status.band = IEEE80211_BAND_2GHZ;
Michael Bueschd9871602008-01-02 18:55:53 +0100653 /* chanid is the radio channel cookie value as used
654 * to tune the radio. */
Michael Buesche4d6b792007-09-18 15:39:42 -0400655 status.freq = chanid + 2400;
Michael Bueschd9871602008-01-02 18:55:53 +0100656 break;
657 case B43_PHYTYPE_N:
Michael Bueschd9871602008-01-02 18:55:53 +0100658 /* chanid is the SHM channel cookie. Which is the plain
659 * channel number in b43. */
Johannes Berg8318d782008-01-24 19:38:38 +0100660 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 }
Michael Buesche4d6b792007-09-18 15:39:42 -0400667 break;
668 default:
669 B43_WARN_ON(1);
Michael Bueschd9871602008-01-02 18:55:53 +0100670 goto drop;
Michael Buesche4d6b792007-09-18 15:39:42 -0400671 }
672
Johannes Bergf1d58c22009-06-17 13:13:00 +0200673 memcpy(IEEE80211_SKB_RXCB(skb), &status, sizeof(status));
674 ieee80211_rx_irqsafe(dev->wl->hw, skb);
Michael Buesche4d6b792007-09-18 15:39:42 -0400675
676 return;
677drop:
678 b43dbg(dev->wl, "RX: Packet dropped\n");
679 dev_kfree_skb_any(skb);
680}
681
682void b43_handle_txstatus(struct b43_wldev *dev,
683 const struct b43_txstatus *status)
684{
685 b43_debugfs_log_txstat(dev, status);
686
687 if (status->intermediate)
688 return;
689 if (status->for_ampdu)
690 return;
691 if (!status->acked)
692 dev->wl->ieee_stats.dot11ACKFailureCount++;
693 if (status->rts_count) {
694 if (status->rts_count == 0xF) //FIXME
695 dev->wl->ieee_stats.dot11RTSFailureCount++;
696 else
697 dev->wl->ieee_stats.dot11RTSSuccessCount++;
698 }
699
Michael Buesch5100d5a2008-03-29 21:01:16 +0100700 if (b43_using_pio_transfers(dev))
701 b43_pio_handle_txstatus(dev, status);
702 else
703 b43_dma_handle_txstatus(dev, status);
Michael Buesch18c8ade2008-08-28 19:33:40 +0200704
705 b43_phy_txpower_check(dev, 0);
Michael Buesche4d6b792007-09-18 15:39:42 -0400706}
707
Michael Buesch5100d5a2008-03-29 21:01:16 +0100708/* Fill out the mac80211 TXstatus report based on the b43-specific
709 * txstatus report data. This returns a boolean whether the frame was
710 * successfully transmitted. */
Johannes Berge6a98542008-10-21 12:40:02 +0200711bool b43_fill_txstatus_report(struct b43_wldev *dev,
712 struct ieee80211_tx_info *report,
Michael Buesch5100d5a2008-03-29 21:01:16 +0100713 const struct b43_txstatus *status)
Michael Buesche4d6b792007-09-18 15:39:42 -0400714{
Michael Buesch5100d5a2008-03-29 21:01:16 +0100715 bool frame_success = 1;
Johannes Berge6a98542008-10-21 12:40:02 +0200716 int retry_limit;
717
718 /* preserve the confiured retry limit before clearing the status
719 * The xmit function has overwritten the rc's value with the actual
720 * retry limit done by the hardware */
721 retry_limit = report->status.rates[0].count;
722 ieee80211_tx_info_clear_status(report);
Michael Buesche4d6b792007-09-18 15:39:42 -0400723
Michael Buesch5100d5a2008-03-29 21:01:16 +0100724 if (status->acked) {
725 /* The frame was ACKed. */
Johannes Berge039fa42008-05-15 12:55:29 +0200726 report->flags |= IEEE80211_TX_STAT_ACK;
Michael Buesch5100d5a2008-03-29 21:01:16 +0100727 } else {
728 /* The frame was not ACKed... */
Johannes Berge039fa42008-05-15 12:55:29 +0200729 if (!(report->flags & IEEE80211_TX_CTL_NO_ACK)) {
Michael Buesch5100d5a2008-03-29 21:01:16 +0100730 /* ...but we expected an ACK. */
731 frame_success = 0;
Michael Buesch5100d5a2008-03-29 21:01:16 +0100732 }
733 }
734 if (status->frame_count == 0) {
735 /* The frame was not transmitted at all. */
Johannes Berge6a98542008-10-21 12:40:02 +0200736 report->status.rates[0].count = 0;
737 } else if (status->rts_count > dev->wl->hw->conf.short_frame_max_tx_count) {
738 /*
739 * If the short retries (RTS, not data frame) have exceeded
740 * the limit, the hw will not have tried the selected rate,
741 * but will have used the fallback rate instead.
742 * Don't let the rate control count attempts for the selected
743 * rate in this case, otherwise the statistics will be off.
744 */
745 report->status.rates[0].count = 0;
746 report->status.rates[1].count = status->frame_count;
747 } else {
748 if (status->frame_count > retry_limit) {
749 report->status.rates[0].count = retry_limit;
750 report->status.rates[1].count = status->frame_count -
751 retry_limit;
752
753 } else {
754 report->status.rates[0].count = status->frame_count;
755 report->status.rates[1].idx = -1;
756 }
757 }
Michael Buesche4d6b792007-09-18 15:39:42 -0400758
Michael Buesch5100d5a2008-03-29 21:01:16 +0100759 return frame_success;
Michael Buesche4d6b792007-09-18 15:39:42 -0400760}
761
762/* Stop any TX operation on the device (suspend the hardware queues) */
763void b43_tx_suspend(struct b43_wldev *dev)
764{
Michael Buesch5100d5a2008-03-29 21:01:16 +0100765 if (b43_using_pio_transfers(dev))
766 b43_pio_tx_suspend(dev);
767 else
768 b43_dma_tx_suspend(dev);
Michael Buesche4d6b792007-09-18 15:39:42 -0400769}
770
771/* Resume any TX operation on the device (resume the hardware queues) */
772void b43_tx_resume(struct b43_wldev *dev)
773{
Michael Buesch5100d5a2008-03-29 21:01:16 +0100774 if (b43_using_pio_transfers(dev))
775 b43_pio_tx_resume(dev);
776 else
777 b43_dma_tx_resume(dev);
Michael Buesche4d6b792007-09-18 15:39:42 -0400778}