blob: 8d54502222a6ed78534b8681f5f7fcbe1f12064b [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"
31#include "phy.h"
32#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 }
49 B43_WARN_ON(1);
Johannes Berg8318d782008-01-24 19:38:38 +010050 return -1;
Michael Buesche4d6b792007-09-18 15:39:42 -040051}
52
Johannes Berg8318d782008-01-24 19:38:38 +010053/* Extract the bitrate index out of an OFDM PLCP header. */
54static u8 b43_plcp_get_bitrate_idx_ofdm(struct b43_plcp_hdr6 *plcp, bool aphy)
Michael Buesche4d6b792007-09-18 15:39:42 -040055{
Johannes Berg8318d782008-01-24 19:38:38 +010056 int base = aphy ? 0 : 4;
57
Michael Buesche4d6b792007-09-18 15:39:42 -040058 switch (plcp->raw[0] & 0xF) {
59 case 0xB:
Johannes Berg8318d782008-01-24 19:38:38 +010060 return base + 0;
Michael Buesche4d6b792007-09-18 15:39:42 -040061 case 0xF:
Johannes Berg8318d782008-01-24 19:38:38 +010062 return base + 1;
Michael Buesche4d6b792007-09-18 15:39:42 -040063 case 0xA:
Johannes Berg8318d782008-01-24 19:38:38 +010064 return base + 2;
Michael Buesche4d6b792007-09-18 15:39:42 -040065 case 0xE:
Johannes Berg8318d782008-01-24 19:38:38 +010066 return base + 3;
Michael Buesche4d6b792007-09-18 15:39:42 -040067 case 0x9:
Johannes Berg8318d782008-01-24 19:38:38 +010068 return base + 4;
Michael Buesche4d6b792007-09-18 15:39:42 -040069 case 0xD:
Johannes Berg8318d782008-01-24 19:38:38 +010070 return base + 5;
Michael Buesche4d6b792007-09-18 15:39:42 -040071 case 0x8:
Johannes Berg8318d782008-01-24 19:38:38 +010072 return base + 6;
Michael Buesche4d6b792007-09-18 15:39:42 -040073 case 0xC:
Johannes Berg8318d782008-01-24 19:38:38 +010074 return base + 7;
Michael Buesche4d6b792007-09-18 15:39:42 -040075 }
76 B43_WARN_ON(1);
Johannes Berg8318d782008-01-24 19:38:38 +010077 return -1;
Michael Buesche4d6b792007-09-18 15:39:42 -040078}
79
80u8 b43_plcp_get_ratecode_cck(const u8 bitrate)
81{
82 switch (bitrate) {
83 case B43_CCK_RATE_1MB:
84 return 0x0A;
85 case B43_CCK_RATE_2MB:
86 return 0x14;
87 case B43_CCK_RATE_5MB:
88 return 0x37;
89 case B43_CCK_RATE_11MB:
90 return 0x6E;
91 }
92 B43_WARN_ON(1);
93 return 0;
94}
95
96u8 b43_plcp_get_ratecode_ofdm(const u8 bitrate)
97{
98 switch (bitrate) {
99 case B43_OFDM_RATE_6MB:
100 return 0xB;
101 case B43_OFDM_RATE_9MB:
102 return 0xF;
103 case B43_OFDM_RATE_12MB:
104 return 0xA;
105 case B43_OFDM_RATE_18MB:
106 return 0xE;
107 case B43_OFDM_RATE_24MB:
108 return 0x9;
109 case B43_OFDM_RATE_36MB:
110 return 0xD;
111 case B43_OFDM_RATE_48MB:
112 return 0x8;
113 case B43_OFDM_RATE_54MB:
114 return 0xC;
115 }
116 B43_WARN_ON(1);
117 return 0;
118}
119
120void b43_generate_plcp_hdr(struct b43_plcp_hdr4 *plcp,
121 const u16 octets, const u8 bitrate)
122{
123 __le32 *data = &(plcp->data);
124 __u8 *raw = plcp->raw;
125
126 if (b43_is_ofdm_rate(bitrate)) {
Michael Buesch1a094042007-09-20 11:13:40 -0700127 u32 d;
128
129 d = b43_plcp_get_ratecode_ofdm(bitrate);
Michael Buesche4d6b792007-09-18 15:39:42 -0400130 B43_WARN_ON(octets & 0xF000);
Michael Buesch1a094042007-09-20 11:13:40 -0700131 d |= (octets << 5);
132 *data = cpu_to_le32(d);
Michael Buesche4d6b792007-09-18 15:39:42 -0400133 } else {
134 u32 plen;
135
136 plen = octets * 16 / bitrate;
137 if ((octets * 16 % bitrate) > 0) {
138 plen++;
139 if ((bitrate == B43_CCK_RATE_11MB)
140 && ((octets * 8 % 11) < 4)) {
141 raw[1] = 0x84;
142 } else
143 raw[1] = 0x04;
144 } else
145 raw[1] = 0x04;
146 *data |= cpu_to_le32(plen << 16);
147 raw[0] = b43_plcp_get_ratecode_cck(bitrate);
148 }
149}
150
151static u8 b43_calc_fallback_rate(u8 bitrate)
152{
153 switch (bitrate) {
154 case B43_CCK_RATE_1MB:
155 return B43_CCK_RATE_1MB;
156 case B43_CCK_RATE_2MB:
157 return B43_CCK_RATE_1MB;
158 case B43_CCK_RATE_5MB:
159 return B43_CCK_RATE_2MB;
160 case B43_CCK_RATE_11MB:
161 return B43_CCK_RATE_5MB;
162 case B43_OFDM_RATE_6MB:
163 return B43_CCK_RATE_5MB;
164 case B43_OFDM_RATE_9MB:
165 return B43_OFDM_RATE_6MB;
166 case B43_OFDM_RATE_12MB:
167 return B43_OFDM_RATE_9MB;
168 case B43_OFDM_RATE_18MB:
169 return B43_OFDM_RATE_12MB;
170 case B43_OFDM_RATE_24MB:
171 return B43_OFDM_RATE_18MB;
172 case B43_OFDM_RATE_36MB:
173 return B43_OFDM_RATE_24MB;
174 case B43_OFDM_RATE_48MB:
175 return B43_OFDM_RATE_36MB;
176 case B43_OFDM_RATE_54MB:
177 return B43_OFDM_RATE_48MB;
178 }
179 B43_WARN_ON(1);
180 return 0;
181}
182
Michael Buescheb189d8b2008-01-28 14:47:41 -0800183/* Generate a TX data header. */
Michael Buesch09552cc2008-01-23 21:44:15 +0100184int b43_generate_txhdr(struct b43_wldev *dev,
185 u8 *_txhdr,
186 const unsigned char *fragment_data,
187 unsigned int fragment_len,
Johannes Berge039fa42008-05-15 12:55:29 +0200188 const struct ieee80211_tx_info *info,
Michael Buesch09552cc2008-01-23 21:44:15 +0100189 u16 cookie)
Michael Buesche4d6b792007-09-18 15:39:42 -0400190{
Michael Buescheb189d8b2008-01-28 14:47:41 -0800191 struct b43_txhdr *txhdr = (struct b43_txhdr *)_txhdr;
Michael Buesche4d6b792007-09-18 15:39:42 -0400192 const struct b43_phy *phy = &dev->phy;
193 const struct ieee80211_hdr *wlhdr =
194 (const struct ieee80211_hdr *)fragment_data;
Johannes Berge039fa42008-05-15 12:55:29 +0200195 int use_encryption = (!(info->flags & IEEE80211_TX_CTL_DO_NOT_ENCRYPT));
Harvey Harrisonf37d9232008-06-14 23:33:39 -0700196 __le16 fctl = wlhdr->frame_control;
Johannes Berg8318d782008-01-24 19:38:38 +0100197 struct ieee80211_rate *fbrate;
Michael Buesche4d6b792007-09-18 15:39:42 -0400198 u8 rate, rate_fb;
199 int rate_ofdm, rate_fb_ofdm;
200 unsigned int plcp_fragment_len;
201 u32 mac_ctl = 0;
202 u16 phy_ctl = 0;
203 u8 extra_ft = 0;
Johannes Berg2e92e6f2008-05-15 12:55:27 +0200204 struct ieee80211_rate *txrate;
Michael Buesche4d6b792007-09-18 15:39:42 -0400205
206 memset(txhdr, 0, sizeof(*txhdr));
207
Johannes Berge039fa42008-05-15 12:55:29 +0200208 txrate = ieee80211_get_tx_rate(dev->wl->hw, info);
Johannes Berg2e92e6f2008-05-15 12:55:27 +0200209 rate = txrate ? txrate->hw_value : B43_CCK_RATE_1MB;
Michael Buesche4d6b792007-09-18 15:39:42 -0400210 rate_ofdm = b43_is_ofdm_rate(rate);
Johannes Berge039fa42008-05-15 12:55:29 +0200211 fbrate = ieee80211_get_alt_retry_rate(dev->wl->hw, info) ? : txrate;
Johannes Berg8318d782008-01-24 19:38:38 +0100212 rate_fb = fbrate->hw_value;
Michael Buesche4d6b792007-09-18 15:39:42 -0400213 rate_fb_ofdm = b43_is_ofdm_rate(rate_fb);
214
215 if (rate_ofdm)
216 txhdr->phy_rate = b43_plcp_get_ratecode_ofdm(rate);
217 else
218 txhdr->phy_rate = b43_plcp_get_ratecode_cck(rate);
219 txhdr->mac_frame_ctl = wlhdr->frame_control;
220 memcpy(txhdr->tx_receiver, wlhdr->addr1, 6);
221
222 /* Calculate duration for fallback rate */
223 if ((rate_fb == rate) ||
224 (wlhdr->duration_id & cpu_to_le16(0x8000)) ||
225 (wlhdr->duration_id == cpu_to_le16(0))) {
226 /* If the fallback rate equals the normal rate or the
227 * dur_id field contains an AID, CFP magic or 0,
228 * use the original dur_id field. */
229 txhdr->dur_fb = wlhdr->duration_id;
230 } else {
Johannes Berge039fa42008-05-15 12:55:29 +0200231 txhdr->dur_fb = ieee80211_generic_frame_duration(
232 dev->wl->hw, info->control.vif, fragment_len, fbrate);
Michael Buesche4d6b792007-09-18 15:39:42 -0400233 }
234
235 plcp_fragment_len = fragment_len + FCS_LEN;
236 if (use_encryption) {
Johannes Berge039fa42008-05-15 12:55:29 +0200237 u8 key_idx = info->control.hw_key->hw_key_idx;
Michael Buesche4d6b792007-09-18 15:39:42 -0400238 struct b43_key *key;
239 int wlhdr_len;
240 size_t iv_len;
241
242 B43_WARN_ON(key_idx >= dev->max_nr_keys);
243 key = &(dev->key[key_idx]);
Michael Buesche4d6b792007-09-18 15:39:42 -0400244
Michael Buesch09552cc2008-01-23 21:44:15 +0100245 if (unlikely(!key->keyconf)) {
246 /* This key is invalid. This might only happen
247 * in a short timeframe after machine resume before
248 * we were able to reconfigure keys.
249 * Drop this packet completely. Do not transmit it
250 * unencrypted to avoid leaking information. */
251 return -ENOKEY;
Michael Buesch7be1bb62008-01-23 21:10:56 +0100252 }
Michael Buesch09552cc2008-01-23 21:44:15 +0100253
254 /* Hardware appends ICV. */
Johannes Berge039fa42008-05-15 12:55:29 +0200255 plcp_fragment_len += info->control.icv_len;
Michael Buesch09552cc2008-01-23 21:44:15 +0100256
257 key_idx = b43_kidx_to_fw(dev, key_idx);
258 mac_ctl |= (key_idx << B43_TXH_MAC_KEYIDX_SHIFT) &
259 B43_TXH_MAC_KEYIDX;
260 mac_ctl |= (key->algorithm << B43_TXH_MAC_KEYALG_SHIFT) &
261 B43_TXH_MAC_KEYALG;
Harvey Harrisonf37d9232008-06-14 23:33:39 -0700262 wlhdr_len = ieee80211_hdrlen(fctl);
Johannes Berge039fa42008-05-15 12:55:29 +0200263 iv_len = min((size_t) info->control.iv_len,
Michael Buesch09552cc2008-01-23 21:44:15 +0100264 ARRAY_SIZE(txhdr->iv));
265 memcpy(txhdr->iv, ((u8 *) wlhdr) + wlhdr_len, iv_len);
Michael Buesche4d6b792007-09-18 15:39:42 -0400266 }
Michael Buescheb189d8b2008-01-28 14:47:41 -0800267 if (b43_is_old_txhdr_format(dev)) {
268 b43_generate_plcp_hdr((struct b43_plcp_hdr4 *)(&txhdr->old_format.plcp),
269 plcp_fragment_len, rate);
270 } else {
271 b43_generate_plcp_hdr((struct b43_plcp_hdr4 *)(&txhdr->new_format.plcp),
272 plcp_fragment_len, rate);
273 }
Michael Buesche4d6b792007-09-18 15:39:42 -0400274 b43_generate_plcp_hdr((struct b43_plcp_hdr4 *)(&txhdr->plcp_fb),
275 plcp_fragment_len, rate_fb);
276
277 /* Extra Frame Types */
278 if (rate_fb_ofdm)
Michael Buescheb189d8b2008-01-28 14:47:41 -0800279 extra_ft |= B43_TXH_EFT_FB_OFDM;
280 else
281 extra_ft |= B43_TXH_EFT_FB_CCK;
Michael Buesche4d6b792007-09-18 15:39:42 -0400282
283 /* Set channel radio code. Note that the micrcode ORs 0x100 to
284 * this value before comparing it to the value in SHM, if this
285 * is a 5Ghz packet.
286 */
287 txhdr->chan_radio_code = phy->channel;
288
289 /* PHY TX Control word */
290 if (rate_ofdm)
Michael Buescheb189d8b2008-01-28 14:47:41 -0800291 phy_ctl |= B43_TXH_PHY_ENC_OFDM;
292 else
293 phy_ctl |= B43_TXH_PHY_ENC_CCK;
Johannes Berge039fa42008-05-15 12:55:29 +0200294 if (info->flags & IEEE80211_TX_CTL_SHORT_PREAMBLE)
Michael Buescheb189d8b2008-01-28 14:47:41 -0800295 phy_ctl |= B43_TXH_PHY_SHORTPRMBL;
Michael Buesch9db1f6d2007-12-22 21:54:20 +0100296
Johannes Berge039fa42008-05-15 12:55:29 +0200297 switch (b43_ieee80211_antenna_sanitize(dev, info->antenna_sel_tx)) {
Michael Buesch9db1f6d2007-12-22 21:54:20 +0100298 case 0: /* Default */
Michael Buescheb189d8b2008-01-28 14:47:41 -0800299 phy_ctl |= B43_TXH_PHY_ANT01AUTO;
Michael Buesche4d6b792007-09-18 15:39:42 -0400300 break;
Michael Buesch9db1f6d2007-12-22 21:54:20 +0100301 case 1: /* Antenna 0 */
Michael Buescheb189d8b2008-01-28 14:47:41 -0800302 phy_ctl |= B43_TXH_PHY_ANT0;
Michael Buesche4d6b792007-09-18 15:39:42 -0400303 break;
Michael Buesch9db1f6d2007-12-22 21:54:20 +0100304 case 2: /* Antenna 1 */
Michael Buescheb189d8b2008-01-28 14:47:41 -0800305 phy_ctl |= B43_TXH_PHY_ANT1;
306 break;
307 case 3: /* Antenna 2 */
308 phy_ctl |= B43_TXH_PHY_ANT2;
309 break;
310 case 4: /* Antenna 3 */
311 phy_ctl |= B43_TXH_PHY_ANT3;
Michael Buesche4d6b792007-09-18 15:39:42 -0400312 break;
313 default:
314 B43_WARN_ON(1);
315 }
316
317 /* MAC control */
Johannes Berge039fa42008-05-15 12:55:29 +0200318 if (!(info->flags & IEEE80211_TX_CTL_NO_ACK))
Michael Buescheb189d8b2008-01-28 14:47:41 -0800319 mac_ctl |= B43_TXH_MAC_ACK;
Johannes Bergf591fa52008-07-10 11:21:26 +0200320 /* use hardware sequence counter as the non-TID counter */
321 if (info->flags & IEEE80211_TX_CTL_ASSIGN_SEQ)
Michael Buescheb189d8b2008-01-28 14:47:41 -0800322 mac_ctl |= B43_TXH_MAC_HWSEQ;
Johannes Berge039fa42008-05-15 12:55:29 +0200323 if (info->flags & IEEE80211_TX_CTL_FIRST_FRAGMENT)
Michael Buescheb189d8b2008-01-28 14:47:41 -0800324 mac_ctl |= B43_TXH_MAC_STMSDU;
Michael Buesche4d6b792007-09-18 15:39:42 -0400325 if (phy->type == B43_PHYTYPE_A)
Michael Buescheb189d8b2008-01-28 14:47:41 -0800326 mac_ctl |= B43_TXH_MAC_5GHZ;
Johannes Berge039fa42008-05-15 12:55:29 +0200327 if (info->flags & IEEE80211_TX_CTL_LONG_RETRY_LIMIT)
Michael Buescheb189d8b2008-01-28 14:47:41 -0800328 mac_ctl |= B43_TXH_MAC_LONGFRAME;
Michael Buesche4d6b792007-09-18 15:39:42 -0400329
330 /* Generate the RTS or CTS-to-self frame */
Johannes Berge039fa42008-05-15 12:55:29 +0200331 if ((info->flags & IEEE80211_TX_CTL_USE_RTS_CTS) ||
332 (info->flags & IEEE80211_TX_CTL_USE_CTS_PROTECT)) {
Michael Buesche4d6b792007-09-18 15:39:42 -0400333 unsigned int len;
334 struct ieee80211_hdr *hdr;
335 int rts_rate, rts_rate_fb;
336 int rts_rate_ofdm, rts_rate_fb_ofdm;
Michael Buescheb189d8b2008-01-28 14:47:41 -0800337 struct b43_plcp_hdr6 *plcp;
Johannes Berg2e92e6f2008-05-15 12:55:27 +0200338 struct ieee80211_rate *rts_cts_rate;
Michael Buesche4d6b792007-09-18 15:39:42 -0400339
Johannes Berge039fa42008-05-15 12:55:29 +0200340 rts_cts_rate = ieee80211_get_rts_cts_rate(dev->wl->hw, info);
Johannes Berg2e92e6f2008-05-15 12:55:27 +0200341
342 rts_rate = rts_cts_rate ? rts_cts_rate->hw_value : B43_CCK_RATE_1MB;
Michael Buesche4d6b792007-09-18 15:39:42 -0400343 rts_rate_ofdm = b43_is_ofdm_rate(rts_rate);
344 rts_rate_fb = b43_calc_fallback_rate(rts_rate);
345 rts_rate_fb_ofdm = b43_is_ofdm_rate(rts_rate_fb);
346
Johannes Berge039fa42008-05-15 12:55:29 +0200347 if (info->flags & IEEE80211_TX_CTL_USE_CTS_PROTECT) {
Michael Buescheb189d8b2008-01-28 14:47:41 -0800348 struct ieee80211_cts *cts;
349
350 if (b43_is_old_txhdr_format(dev)) {
351 cts = (struct ieee80211_cts *)
352 (txhdr->old_format.rts_frame);
353 } else {
354 cts = (struct ieee80211_cts *)
355 (txhdr->new_format.rts_frame);
356 }
Johannes Berge039fa42008-05-15 12:55:29 +0200357 ieee80211_ctstoself_get(dev->wl->hw, info->control.vif,
Michael Buesche4d6b792007-09-18 15:39:42 -0400358 fragment_data, fragment_len,
Johannes Berge039fa42008-05-15 12:55:29 +0200359 info, cts);
Michael Buescheb189d8b2008-01-28 14:47:41 -0800360 mac_ctl |= B43_TXH_MAC_SENDCTS;
Michael Buesche4d6b792007-09-18 15:39:42 -0400361 len = sizeof(struct ieee80211_cts);
362 } else {
Michael Buescheb189d8b2008-01-28 14:47:41 -0800363 struct ieee80211_rts *rts;
364
365 if (b43_is_old_txhdr_format(dev)) {
366 rts = (struct ieee80211_rts *)
367 (txhdr->old_format.rts_frame);
368 } else {
369 rts = (struct ieee80211_rts *)
370 (txhdr->new_format.rts_frame);
371 }
Johannes Berge039fa42008-05-15 12:55:29 +0200372 ieee80211_rts_get(dev->wl->hw, info->control.vif,
Michael Buescheb189d8b2008-01-28 14:47:41 -0800373 fragment_data, fragment_len,
Johannes Berge039fa42008-05-15 12:55:29 +0200374 info, rts);
Michael Buescheb189d8b2008-01-28 14:47:41 -0800375 mac_ctl |= B43_TXH_MAC_SENDRTS;
Michael Buesche4d6b792007-09-18 15:39:42 -0400376 len = sizeof(struct ieee80211_rts);
377 }
378 len += FCS_LEN;
Michael Buescheb189d8b2008-01-28 14:47:41 -0800379
380 /* Generate the PLCP headers for the RTS/CTS frame */
381 if (b43_is_old_txhdr_format(dev))
382 plcp = &txhdr->old_format.rts_plcp;
383 else
384 plcp = &txhdr->new_format.rts_plcp;
385 b43_generate_plcp_hdr((struct b43_plcp_hdr4 *)plcp,
386 len, rts_rate);
387 plcp = &txhdr->rts_plcp_fb;
388 b43_generate_plcp_hdr((struct b43_plcp_hdr4 *)plcp,
Michael Buesche4d6b792007-09-18 15:39:42 -0400389 len, rts_rate_fb);
Michael Buescheb189d8b2008-01-28 14:47:41 -0800390
391 if (b43_is_old_txhdr_format(dev)) {
392 hdr = (struct ieee80211_hdr *)
393 (&txhdr->old_format.rts_frame);
394 } else {
395 hdr = (struct ieee80211_hdr *)
396 (&txhdr->new_format.rts_frame);
397 }
Michael Buesche4d6b792007-09-18 15:39:42 -0400398 txhdr->rts_dur_fb = hdr->duration_id;
Michael Buescheb189d8b2008-01-28 14:47:41 -0800399
Michael Buesche4d6b792007-09-18 15:39:42 -0400400 if (rts_rate_ofdm) {
Michael Buescheb189d8b2008-01-28 14:47:41 -0800401 extra_ft |= B43_TXH_EFT_RTS_OFDM;
Michael Buesche4d6b792007-09-18 15:39:42 -0400402 txhdr->phy_rate_rts =
403 b43_plcp_get_ratecode_ofdm(rts_rate);
Michael Buescheb189d8b2008-01-28 14:47:41 -0800404 } else {
405 extra_ft |= B43_TXH_EFT_RTS_CCK;
Michael Buesche4d6b792007-09-18 15:39:42 -0400406 txhdr->phy_rate_rts =
407 b43_plcp_get_ratecode_cck(rts_rate);
Michael Buescheb189d8b2008-01-28 14:47:41 -0800408 }
Michael Buesche4d6b792007-09-18 15:39:42 -0400409 if (rts_rate_fb_ofdm)
Michael Buescheb189d8b2008-01-28 14:47:41 -0800410 extra_ft |= B43_TXH_EFT_RTSFB_OFDM;
411 else
412 extra_ft |= B43_TXH_EFT_RTSFB_CCK;
Michael Buesche4d6b792007-09-18 15:39:42 -0400413 }
414
415 /* Magic cookie */
Michael Buescheb189d8b2008-01-28 14:47:41 -0800416 if (b43_is_old_txhdr_format(dev))
417 txhdr->old_format.cookie = cpu_to_le16(cookie);
418 else
419 txhdr->new_format.cookie = cpu_to_le16(cookie);
Michael Buesche4d6b792007-09-18 15:39:42 -0400420
421 /* Apply the bitfields */
422 txhdr->mac_ctl = cpu_to_le32(mac_ctl);
423 txhdr->phy_ctl = cpu_to_le16(phy_ctl);
424 txhdr->extra_ft = extra_ft;
Michael Buesche4d6b792007-09-18 15:39:42 -0400425
Michael Buesch09552cc2008-01-23 21:44:15 +0100426 return 0;
Michael Buesche4d6b792007-09-18 15:39:42 -0400427}
428
429static s8 b43_rssi_postprocess(struct b43_wldev *dev,
430 u8 in_rssi, int ofdm,
431 int adjust_2053, int adjust_2050)
432{
433 struct b43_phy *phy = &dev->phy;
434 s32 tmp;
435
436 switch (phy->radio_ver) {
437 case 0x2050:
438 if (ofdm) {
439 tmp = in_rssi;
440 if (tmp > 127)
441 tmp -= 256;
442 tmp *= 73;
443 tmp /= 64;
444 if (adjust_2050)
445 tmp += 25;
446 else
447 tmp -= 3;
448 } else {
Larry Finger95de2842007-11-09 16:57:18 -0600449 if (dev->dev->bus->sprom.
Michael Buesche4d6b792007-09-18 15:39:42 -0400450 boardflags_lo & B43_BFL_RSSI) {
451 if (in_rssi > 63)
452 in_rssi = 63;
453 tmp = phy->nrssi_lt[in_rssi];
454 tmp = 31 - tmp;
455 tmp *= -131;
456 tmp /= 128;
457 tmp -= 57;
458 } else {
459 tmp = in_rssi;
460 tmp = 31 - tmp;
461 tmp *= -149;
462 tmp /= 128;
463 tmp -= 68;
464 }
465 if (phy->type == B43_PHYTYPE_G && adjust_2050)
466 tmp += 25;
467 }
468 break;
469 case 0x2060:
470 if (in_rssi > 127)
471 tmp = in_rssi - 256;
472 else
473 tmp = in_rssi;
474 break;
475 default:
476 tmp = in_rssi;
477 tmp -= 11;
478 tmp *= 103;
479 tmp /= 64;
480 if (adjust_2053)
481 tmp -= 109;
482 else
483 tmp -= 83;
484 }
485
486 return (s8) tmp;
487}
488
489//TODO
490#if 0
491static s8 b43_rssinoise_postprocess(struct b43_wldev *dev, u8 in_rssi)
492{
493 struct b43_phy *phy = &dev->phy;
494 s8 ret;
495
496 if (phy->type == B43_PHYTYPE_A) {
497 //TODO: Incomplete specs.
498 ret = 0;
499 } else
500 ret = b43_rssi_postprocess(dev, in_rssi, 0, 1, 1);
501
502 return ret;
503}
504#endif
505
506void b43_rx(struct b43_wldev *dev, struct sk_buff *skb, const void *_rxhdr)
507{
508 struct ieee80211_rx_status status;
509 struct b43_plcp_hdr6 *plcp;
510 struct ieee80211_hdr *wlhdr;
511 const struct b43_rxhdr_fw4 *rxhdr = _rxhdr;
Harvey Harrisonf37d9232008-06-14 23:33:39 -0700512 __le16 fctl;
Michael Buesche4d6b792007-09-18 15:39:42 -0400513 u16 phystat0, phystat3, chanstat, mactime;
514 u32 macstat;
515 u16 chanid;
Johannes Berg8318d782008-01-24 19:38:38 +0100516 u16 phytype;
Michael Buesche4d6b792007-09-18 15:39:42 -0400517 int padding;
518
519 memset(&status, 0, sizeof(status));
520
521 /* Get metadata about the frame from the header. */
522 phystat0 = le16_to_cpu(rxhdr->phy_status0);
523 phystat3 = le16_to_cpu(rxhdr->phy_status3);
Michael Buesche4d6b792007-09-18 15:39:42 -0400524 macstat = le32_to_cpu(rxhdr->mac_status);
525 mactime = le16_to_cpu(rxhdr->mac_time);
526 chanstat = le16_to_cpu(rxhdr->channel);
Johannes Berg8318d782008-01-24 19:38:38 +0100527 phytype = chanstat & B43_RX_CHAN_PHYTYPE;
Michael Buesche4d6b792007-09-18 15:39:42 -0400528
529 if (macstat & B43_RX_MAC_FCSERR)
530 dev->wl->ieee_stats.dot11FCSErrorCount++;
531 if (macstat & B43_RX_MAC_DECERR) {
532 /* Decryption with the given key failed.
533 * Drop the packet. We also won't be able to decrypt it with
534 * the key in software. */
535 goto drop;
536 }
537
538 /* Skip PLCP and padding */
539 padding = (macstat & B43_RX_MAC_PADDING) ? 2 : 0;
540 if (unlikely(skb->len < (sizeof(struct b43_plcp_hdr6) + padding))) {
541 b43dbg(dev->wl, "RX: Packet size underrun (1)\n");
542 goto drop;
543 }
544 plcp = (struct b43_plcp_hdr6 *)(skb->data + padding);
545 skb_pull(skb, sizeof(struct b43_plcp_hdr6) + padding);
546 /* The skb contains the Wireless Header + payload data now */
547 if (unlikely(skb->len < (2 + 2 + 6 /*minimum hdr */ + FCS_LEN))) {
548 b43dbg(dev->wl, "RX: Packet size underrun (2)\n");
549 goto drop;
550 }
551 wlhdr = (struct ieee80211_hdr *)(skb->data);
Harvey Harrisonf37d9232008-06-14 23:33:39 -0700552 fctl = wlhdr->frame_control;
Michael Buesche4d6b792007-09-18 15:39:42 -0400553
554 if (macstat & B43_RX_MAC_DEC) {
555 unsigned int keyidx;
556 int wlhdr_len;
557
558 keyidx = ((macstat & B43_RX_MAC_KEYIDX)
559 >> B43_RX_MAC_KEYIDX_SHIFT);
560 /* We must adjust the key index here. We want the "physical"
561 * key index, but the ucode passed it slightly different.
562 */
563 keyidx = b43_kidx_to_raw(dev, keyidx);
564 B43_WARN_ON(keyidx >= dev->max_nr_keys);
565
566 if (dev->key[keyidx].algorithm != B43_SEC_ALGO_NONE) {
Harvey Harrisonf37d9232008-06-14 23:33:39 -0700567 wlhdr_len = ieee80211_hdrlen(fctl);
Michael Buesche4d6b792007-09-18 15:39:42 -0400568 if (unlikely(skb->len < (wlhdr_len + 3))) {
569 b43dbg(dev->wl,
570 "RX: Packet size underrun (3)\n");
571 goto drop;
572 }
573 status.flag |= RX_FLAG_DECRYPTED;
574 }
575 }
576
Michael Buesch7b584162008-04-03 18:01:12 +0200577 /* Link quality statistics */
Michael Buesche4d6b792007-09-18 15:39:42 -0400578 status.noise = dev->stats.link_noise;
Michael Buesch7b584162008-04-03 18:01:12 +0200579 if ((chanstat & B43_RX_CHAN_PHYTYPE) == B43_PHYTYPE_N) {
580// s8 rssi = max(rxhdr->power0, rxhdr->power1);
581 //TODO: Find out what the rssi value is (dBm or percentage?)
582 // and also find out what the maximum possible value is.
583 // Fill status.ssi and status.signal fields.
584 } else {
Bruno Randolf566bfe52008-05-08 19:15:40 +0200585 status.signal = b43_rssi_postprocess(dev, rxhdr->jssi,
Michael Buesch7b584162008-04-03 18:01:12 +0200586 (phystat0 & B43_RX_PHYST0_OFDM),
587 (phystat0 & B43_RX_PHYST0_GAINCTL),
588 (phystat3 & B43_RX_PHYST3_TRSTATE));
Bruno Randolf566bfe52008-05-08 19:15:40 +0200589 status.qual = (rxhdr->jssi * 100) / B43_RX_MAX_SSI;
Michael Buesch7b584162008-04-03 18:01:12 +0200590 }
591
Michael Buesche4d6b792007-09-18 15:39:42 -0400592 if (phystat0 & B43_RX_PHYST0_OFDM)
Johannes Berg8318d782008-01-24 19:38:38 +0100593 status.rate_idx = b43_plcp_get_bitrate_idx_ofdm(plcp,
594 phytype == B43_PHYTYPE_A);
Michael Buesche4d6b792007-09-18 15:39:42 -0400595 else
Johannes Berg8318d782008-01-24 19:38:38 +0100596 status.rate_idx = b43_plcp_get_bitrate_idx_cck(plcp);
Michael Buesche4d6b792007-09-18 15:39:42 -0400597 status.antenna = !!(phystat0 & B43_RX_PHYST0_ANT);
John W. Linvillec0ddd042008-01-21 13:41:18 -0500598
599 /*
Johannes Bergd007b7f2008-02-18 18:53:55 +0100600 * All frames on monitor interfaces and beacons always need a full
601 * 64-bit timestamp. Monitor interfaces need it for diagnostic
602 * purposes and beacons for IBSS merging.
603 * This code assumes we get to process the packet within 16 bits
604 * of timestamp, i.e. about 65 milliseconds after the PHY received
605 * the first symbol.
John W. Linvillec0ddd042008-01-21 13:41:18 -0500606 */
Harvey Harrisonf37d9232008-06-14 23:33:39 -0700607 if (ieee80211_is_beacon(fctl) || dev->wl->radiotap_enabled) {
John W. Linvillec0ddd042008-01-21 13:41:18 -0500608 u16 low_mactime_now;
609
610 b43_tsf_read(dev, &status.mactime);
611 low_mactime_now = status.mactime;
612 status.mactime = status.mactime & ~0xFFFFULL;
613 status.mactime += mactime;
614 if (low_mactime_now <= mactime)
615 status.mactime -= 0x10000;
616 status.flag |= RX_FLAG_TSFT;
617 }
Michael Buesche4d6b792007-09-18 15:39:42 -0400618
619 chanid = (chanstat & B43_RX_CHAN_ID) >> B43_RX_CHAN_ID_SHIFT;
620 switch (chanstat & B43_RX_CHAN_PHYTYPE) {
621 case B43_PHYTYPE_A:
Johannes Berg8318d782008-01-24 19:38:38 +0100622 status.band = IEEE80211_BAND_5GHZ;
Michael Bueschd9871602008-01-02 18:55:53 +0100623 B43_WARN_ON(1);
624 /* FIXME: We don't really know which value the "chanid" contains.
625 * So the following assignment might be wrong. */
Johannes Berg8318d782008-01-24 19:38:38 +0100626 status.freq = b43_channel_to_freq_5ghz(chanid);
Michael Buesche4d6b792007-09-18 15:39:42 -0400627 break;
628 case B43_PHYTYPE_G:
Johannes Berg8318d782008-01-24 19:38:38 +0100629 status.band = IEEE80211_BAND_2GHZ;
Michael Bueschd9871602008-01-02 18:55:53 +0100630 /* chanid is the radio channel cookie value as used
631 * to tune the radio. */
Michael Buesche4d6b792007-09-18 15:39:42 -0400632 status.freq = chanid + 2400;
Michael Bueschd9871602008-01-02 18:55:53 +0100633 break;
634 case B43_PHYTYPE_N:
Michael Bueschd9871602008-01-02 18:55:53 +0100635 /* chanid is the SHM channel cookie. Which is the plain
636 * channel number in b43. */
Johannes Berg8318d782008-01-24 19:38:38 +0100637 if (chanstat & B43_RX_CHAN_5GHZ) {
638 status.band = IEEE80211_BAND_5GHZ;
639 status.freq = b43_freq_to_channel_5ghz(chanid);
640 } else {
641 status.band = IEEE80211_BAND_2GHZ;
642 status.freq = b43_freq_to_channel_2ghz(chanid);
643 }
Michael Buesche4d6b792007-09-18 15:39:42 -0400644 break;
645 default:
646 B43_WARN_ON(1);
Michael Bueschd9871602008-01-02 18:55:53 +0100647 goto drop;
Michael Buesche4d6b792007-09-18 15:39:42 -0400648 }
649
650 dev->stats.last_rx = jiffies;
651 ieee80211_rx_irqsafe(dev->wl->hw, skb, &status);
652
653 return;
654drop:
655 b43dbg(dev->wl, "RX: Packet dropped\n");
656 dev_kfree_skb_any(skb);
657}
658
659void b43_handle_txstatus(struct b43_wldev *dev,
660 const struct b43_txstatus *status)
661{
662 b43_debugfs_log_txstat(dev, status);
663
664 if (status->intermediate)
665 return;
666 if (status->for_ampdu)
667 return;
668 if (!status->acked)
669 dev->wl->ieee_stats.dot11ACKFailureCount++;
670 if (status->rts_count) {
671 if (status->rts_count == 0xF) //FIXME
672 dev->wl->ieee_stats.dot11RTSFailureCount++;
673 else
674 dev->wl->ieee_stats.dot11RTSSuccessCount++;
675 }
676
Michael Buesch5100d5a2008-03-29 21:01:16 +0100677 if (b43_using_pio_transfers(dev))
678 b43_pio_handle_txstatus(dev, status);
679 else
680 b43_dma_handle_txstatus(dev, status);
Michael Buesche4d6b792007-09-18 15:39:42 -0400681}
682
Michael Buesch5100d5a2008-03-29 21:01:16 +0100683/* Fill out the mac80211 TXstatus report based on the b43-specific
684 * txstatus report data. This returns a boolean whether the frame was
685 * successfully transmitted. */
Johannes Berge039fa42008-05-15 12:55:29 +0200686bool b43_fill_txstatus_report(struct ieee80211_tx_info *report,
Michael Buesch5100d5a2008-03-29 21:01:16 +0100687 const struct b43_txstatus *status)
Michael Buesche4d6b792007-09-18 15:39:42 -0400688{
Michael Buesch5100d5a2008-03-29 21:01:16 +0100689 bool frame_success = 1;
Michael Buesche4d6b792007-09-18 15:39:42 -0400690
Michael Buesch5100d5a2008-03-29 21:01:16 +0100691 if (status->acked) {
692 /* The frame was ACKed. */
Johannes Berge039fa42008-05-15 12:55:29 +0200693 report->flags |= IEEE80211_TX_STAT_ACK;
Michael Buesch5100d5a2008-03-29 21:01:16 +0100694 } else {
695 /* The frame was not ACKed... */
Johannes Berge039fa42008-05-15 12:55:29 +0200696 if (!(report->flags & IEEE80211_TX_CTL_NO_ACK)) {
Michael Buesch5100d5a2008-03-29 21:01:16 +0100697 /* ...but we expected an ACK. */
698 frame_success = 0;
Johannes Berge039fa42008-05-15 12:55:29 +0200699 report->status.excessive_retries = 1;
Michael Buesch5100d5a2008-03-29 21:01:16 +0100700 }
701 }
702 if (status->frame_count == 0) {
703 /* The frame was not transmitted at all. */
Johannes Berge039fa42008-05-15 12:55:29 +0200704 report->status.retry_count = 0;
Michael Buesch5100d5a2008-03-29 21:01:16 +0100705 } else
Johannes Berge039fa42008-05-15 12:55:29 +0200706 report->status.retry_count = status->frame_count - 1;
Michael Buesche4d6b792007-09-18 15:39:42 -0400707
Michael Buesch5100d5a2008-03-29 21:01:16 +0100708 return frame_success;
Michael Buesche4d6b792007-09-18 15:39:42 -0400709}
710
711/* Stop any TX operation on the device (suspend the hardware queues) */
712void b43_tx_suspend(struct b43_wldev *dev)
713{
Michael Buesch5100d5a2008-03-29 21:01:16 +0100714 if (b43_using_pio_transfers(dev))
715 b43_pio_tx_suspend(dev);
716 else
717 b43_dma_tx_suspend(dev);
Michael Buesche4d6b792007-09-18 15:39:42 -0400718}
719
720/* Resume any TX operation on the device (resume the hardware queues) */
721void b43_tx_resume(struct b43_wldev *dev)
722{
Michael Buesch5100d5a2008-03-29 21:01:16 +0100723 if (b43_using_pio_transfers(dev))
724 b43_pio_tx_resume(dev);
725 else
726 b43_dma_tx_resume(dev);
Michael Buesche4d6b792007-09-18 15:39:42 -0400727}