blob: f6fed31ac5453a38d3d0582361034da8ee322b92 [file] [log] [blame]
Kalle Valo5e3dd152013-06-12 20:52:10 +03001/*
2 * Copyright (c) 2005-2011 Atheros Communications Inc.
3 * Copyright (c) 2011-2013 Qualcomm Atheros, Inc.
4 *
5 * Permission to use, copy, modify, and/or distribute this software for any
6 * purpose with or without fee is hereby granted, provided that the above
7 * copyright notice and this permission notice appear in all copies.
8 *
9 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16 */
17
18#include "core.h"
19#include "txrx.h"
20#include "htt.h"
21#include "mac.h"
22#include "debug.h"
23
24static void ath10k_report_offchan_tx(struct ath10k *ar, struct sk_buff *skb)
25{
26 if (!ATH10K_SKB_CB(skb)->htt.is_offchan)
27 return;
28
29 /* If the original wait_for_completion() timed out before
30 * {data,mgmt}_tx_completed() was called then we could complete
31 * offchan_tx_completed for a different skb. Prevent this by using
32 * offchan_tx_skb. */
33 spin_lock_bh(&ar->data_lock);
34 if (ar->offchan_tx_skb != skb) {
35 ath10k_warn("completed old offchannel frame\n");
36 goto out;
37 }
38
39 complete(&ar->offchan_tx_completed);
40 ar->offchan_tx_skb = NULL; /* just for sanity */
41
42 ath10k_dbg(ATH10K_DBG_HTT, "completed offchannel skb %p\n", skb);
43out:
44 spin_unlock_bh(&ar->data_lock);
45}
46
47void ath10k_txrx_tx_unref(struct ath10k_htt *htt, struct sk_buff *txdesc)
48{
49 struct device *dev = htt->ar->dev;
50 struct ieee80211_tx_info *info;
51 struct sk_buff *txfrag = ATH10K_SKB_CB(txdesc)->htt.txfrag;
52 struct sk_buff *msdu = ATH10K_SKB_CB(txdesc)->htt.msdu;
53 int ret;
54
55 if (ATH10K_SKB_CB(txdesc)->htt.refcount == 0)
56 return;
57
58 ATH10K_SKB_CB(txdesc)->htt.refcount--;
59
60 if (ATH10K_SKB_CB(txdesc)->htt.refcount > 0)
61 return;
62
63 if (txfrag) {
64 ret = ath10k_skb_unmap(dev, txfrag);
65 if (ret)
66 ath10k_warn("txfrag unmap failed (%d)\n", ret);
67
68 dev_kfree_skb_any(txfrag);
69 }
70
71 ret = ath10k_skb_unmap(dev, msdu);
72 if (ret)
73 ath10k_warn("data skb unmap failed (%d)\n", ret);
74
75 ath10k_report_offchan_tx(htt->ar, msdu);
76
77 info = IEEE80211_SKB_CB(msdu);
Kalle Valo5e3dd152013-06-12 20:52:10 +030078
79 if (ATH10K_SKB_CB(txdesc)->htt.discard) {
80 ieee80211_free_txskb(htt->ar->hw, msdu);
81 goto exit;
82 }
83
84 if (!(info->flags & IEEE80211_TX_CTL_NO_ACK))
85 info->flags |= IEEE80211_TX_STAT_ACK;
86
87 if (ATH10K_SKB_CB(txdesc)->htt.no_ack)
88 info->flags &= ~IEEE80211_TX_STAT_ACK;
89
90 ieee80211_tx_status(htt->ar->hw, msdu);
91 /* we do not own the msdu anymore */
92
93exit:
94 spin_lock_bh(&htt->tx_lock);
95 htt->pending_tx[ATH10K_SKB_CB(txdesc)->htt.msdu_id] = NULL;
96 ath10k_htt_tx_free_msdu_id(htt, ATH10K_SKB_CB(txdesc)->htt.msdu_id);
97 __ath10k_htt_tx_dec_pending(htt);
Michal Kazior0945baf2013-09-18 14:43:18 +020098 if (htt->num_pending_tx == 0)
Kalle Valo5e3dd152013-06-12 20:52:10 +030099 wake_up(&htt->empty_tx_wq);
100 spin_unlock_bh(&htt->tx_lock);
101
102 dev_kfree_skb_any(txdesc);
103}
104
105void ath10k_txrx_tx_completed(struct ath10k_htt *htt,
106 const struct htt_tx_done *tx_done)
107{
108 struct sk_buff *txdesc;
109
110 ath10k_dbg(ATH10K_DBG_HTT, "htt tx completion msdu_id %u discard %d no_ack %d\n",
111 tx_done->msdu_id, !!tx_done->discard, !!tx_done->no_ack);
112
113 if (tx_done->msdu_id >= htt->max_num_pending_tx) {
114 ath10k_warn("warning: msdu_id %d too big, ignoring\n",
115 tx_done->msdu_id);
116 return;
117 }
118
119 txdesc = htt->pending_tx[tx_done->msdu_id];
120
121 ATH10K_SKB_CB(txdesc)->htt.discard = tx_done->discard;
122 ATH10K_SKB_CB(txdesc)->htt.no_ack = tx_done->no_ack;
123
124 ath10k_txrx_tx_unref(htt, txdesc);
125}
126
127static const u8 rx_legacy_rate_idx[] = {
128 3, /* 0x00 - 11Mbps */
129 2, /* 0x01 - 5.5Mbps */
130 1, /* 0x02 - 2Mbps */
131 0, /* 0x03 - 1Mbps */
132 3, /* 0x04 - 11Mbps */
133 2, /* 0x05 - 5.5Mbps */
134 1, /* 0x06 - 2Mbps */
135 0, /* 0x07 - 1Mbps */
136 10, /* 0x08 - 48Mbps */
137 8, /* 0x09 - 24Mbps */
138 6, /* 0x0A - 12Mbps */
139 4, /* 0x0B - 6Mbps */
140 11, /* 0x0C - 54Mbps */
141 9, /* 0x0D - 36Mbps */
142 7, /* 0x0E - 18Mbps */
143 5, /* 0x0F - 9Mbps */
144};
145
146static void process_rx_rates(struct ath10k *ar, struct htt_rx_info *info,
147 enum ieee80211_band band,
148 struct ieee80211_rx_status *status)
149{
150 u8 cck, rate, rate_idx, bw, sgi, mcs, nss;
151 u8 info0 = info->rate.info0;
152 u32 info1 = info->rate.info1;
153 u32 info2 = info->rate.info2;
154 u8 preamble = 0;
155
156 /* Check if valid fields */
157 if (!(info0 & HTT_RX_INDICATION_INFO0_START_VALID))
158 return;
159
160 preamble = MS(info1, HTT_RX_INDICATION_INFO1_PREAMBLE_TYPE);
161
162 switch (preamble) {
163 case HTT_RX_LEGACY:
164 cck = info0 & HTT_RX_INDICATION_INFO0_LEGACY_RATE_CCK;
165 rate = MS(info0, HTT_RX_INDICATION_INFO0_LEGACY_RATE);
166 rate_idx = 0;
167
168 if (rate < 0x08 || rate > 0x0F)
169 break;
170
171 switch (band) {
172 case IEEE80211_BAND_2GHZ:
173 if (cck)
174 rate &= ~BIT(3);
175 rate_idx = rx_legacy_rate_idx[rate];
176 break;
177 case IEEE80211_BAND_5GHZ:
178 rate_idx = rx_legacy_rate_idx[rate];
179 /* We are using same rate table registering
180 HW - ath10k_rates[]. In case of 5GHz skip
181 CCK rates, so -4 here */
182 rate_idx -= 4;
183 break;
184 default:
185 break;
186 }
187
188 status->rate_idx = rate_idx;
189 break;
190 case HTT_RX_HT:
191 case HTT_RX_HT_WITH_TXBF:
192 /* HT-SIG - Table 20-11 in info1 and info2 */
193 mcs = info1 & 0x1F;
194 nss = mcs >> 3;
195 bw = (info1 >> 7) & 1;
196 sgi = (info2 >> 7) & 1;
197
198 status->rate_idx = mcs;
199 status->flag |= RX_FLAG_HT;
200 if (sgi)
201 status->flag |= RX_FLAG_SHORT_GI;
202 if (bw)
203 status->flag |= RX_FLAG_40MHZ;
204 break;
205 case HTT_RX_VHT:
206 case HTT_RX_VHT_WITH_TXBF:
207 /* VHT-SIG-A1 in info 1, VHT-SIG-A2 in info2
208 TODO check this */
209 mcs = (info2 >> 4) & 0x0F;
210 nss = (info1 >> 10) & 0x07;
211 bw = info1 & 3;
212 sgi = info2 & 1;
213
214 status->rate_idx = mcs;
215 status->vht_nss = nss;
216
217 if (sgi)
218 status->flag |= RX_FLAG_SHORT_GI;
219
220 switch (bw) {
221 /* 20MHZ */
222 case 0:
223 break;
224 /* 40MHZ */
225 case 1:
226 status->flag |= RX_FLAG_40MHZ;
227 break;
228 /* 80MHZ */
229 case 2:
230 status->flag |= RX_FLAG_80MHZ;
231 }
232
233 status->flag |= RX_FLAG_VHT;
234 break;
235 default:
236 break;
237 }
238}
239
240void ath10k_process_rx(struct ath10k *ar, struct htt_rx_info *info)
241{
242 struct ieee80211_rx_status *status;
243 struct ieee80211_channel *ch;
244 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)info->skb->data;
245
246 status = IEEE80211_SKB_RXCB(info->skb);
247 memset(status, 0, sizeof(*status));
248
249 if (info->encrypt_type != HTT_RX_MPDU_ENCRYPT_NONE) {
250 status->flag |= RX_FLAG_DECRYPTED | RX_FLAG_IV_STRIPPED |
251 RX_FLAG_MMIC_STRIPPED;
252 hdr->frame_control = __cpu_to_le16(
253 __le16_to_cpu(hdr->frame_control) &
254 ~IEEE80211_FCTL_PROTECTED);
255 }
256
257 if (info->status == HTT_RX_IND_MPDU_STATUS_TKIP_MIC_ERR)
258 status->flag |= RX_FLAG_MMIC_ERROR;
259
260 if (info->fcs_err)
261 status->flag |= RX_FLAG_FAILED_FCS_CRC;
262
263 status->signal = info->signal;
264
265 spin_lock_bh(&ar->data_lock);
266 ch = ar->scan_channel;
267 if (!ch)
268 ch = ar->rx_channel;
269 spin_unlock_bh(&ar->data_lock);
270
271 if (!ch) {
272 ath10k_warn("no channel configured; ignoring frame!\n");
273 dev_kfree_skb_any(info->skb);
274 return;
275 }
276
277 process_rx_rates(ar, info, ch->band, status);
278 status->band = ch->band;
279 status->freq = ch->center_freq;
280
281 ath10k_dbg(ATH10K_DBG_DATA,
282 "rx skb %p len %u %s%s%s%s%s %srate_idx %u vht_nss %u freq %u band %u\n",
283 info->skb,
284 info->skb->len,
285 status->flag == 0 ? "legacy" : "",
286 status->flag & RX_FLAG_HT ? "ht" : "",
287 status->flag & RX_FLAG_VHT ? "vht" : "",
288 status->flag & RX_FLAG_40MHZ ? "40" : "",
289 status->flag & RX_FLAG_80MHZ ? "80" : "",
290 status->flag & RX_FLAG_SHORT_GI ? "sgi " : "",
291 status->rate_idx,
292 status->vht_nss,
293 status->freq,
294 status->band);
295
296 ieee80211_rx(ar->hw, info->skb);
297}
298
299struct ath10k_peer *ath10k_peer_find(struct ath10k *ar, int vdev_id,
300 const u8 *addr)
301{
302 struct ath10k_peer *peer;
303
304 lockdep_assert_held(&ar->data_lock);
305
306 list_for_each_entry(peer, &ar->peers, list) {
307 if (peer->vdev_id != vdev_id)
308 continue;
309 if (memcmp(peer->addr, addr, ETH_ALEN))
310 continue;
311
312 return peer;
313 }
314
315 return NULL;
316}
317
318static struct ath10k_peer *ath10k_peer_find_by_id(struct ath10k *ar,
319 int peer_id)
320{
321 struct ath10k_peer *peer;
322
323 lockdep_assert_held(&ar->data_lock);
324
325 list_for_each_entry(peer, &ar->peers, list)
326 if (test_bit(peer_id, peer->peer_ids))
327 return peer;
328
329 return NULL;
330}
331
332static int ath10k_wait_for_peer_common(struct ath10k *ar, int vdev_id,
333 const u8 *addr, bool expect_mapped)
334{
335 int ret;
336
337 ret = wait_event_timeout(ar->peer_mapping_wq, ({
338 bool mapped;
339
340 spin_lock_bh(&ar->data_lock);
341 mapped = !!ath10k_peer_find(ar, vdev_id, addr);
342 spin_unlock_bh(&ar->data_lock);
343
344 mapped == expect_mapped;
345 }), 3*HZ);
346
347 if (ret <= 0)
348 return -ETIMEDOUT;
349
350 return 0;
351}
352
353int ath10k_wait_for_peer_created(struct ath10k *ar, int vdev_id, const u8 *addr)
354{
355 return ath10k_wait_for_peer_common(ar, vdev_id, addr, true);
356}
357
358int ath10k_wait_for_peer_deleted(struct ath10k *ar, int vdev_id, const u8 *addr)
359{
360 return ath10k_wait_for_peer_common(ar, vdev_id, addr, false);
361}
362
363void ath10k_peer_map_event(struct ath10k_htt *htt,
364 struct htt_peer_map_event *ev)
365{
366 struct ath10k *ar = htt->ar;
367 struct ath10k_peer *peer;
368
369 spin_lock_bh(&ar->data_lock);
370 peer = ath10k_peer_find(ar, ev->vdev_id, ev->addr);
371 if (!peer) {
372 peer = kzalloc(sizeof(*peer), GFP_ATOMIC);
373 if (!peer)
374 goto exit;
375
376 peer->vdev_id = ev->vdev_id;
377 memcpy(peer->addr, ev->addr, ETH_ALEN);
378 list_add(&peer->list, &ar->peers);
379 wake_up(&ar->peer_mapping_wq);
380 }
381
382 ath10k_dbg(ATH10K_DBG_HTT, "htt peer map vdev %d peer %pM id %d\n",
383 ev->vdev_id, ev->addr, ev->peer_id);
384
385 set_bit(ev->peer_id, peer->peer_ids);
386exit:
387 spin_unlock_bh(&ar->data_lock);
388}
389
390void ath10k_peer_unmap_event(struct ath10k_htt *htt,
391 struct htt_peer_unmap_event *ev)
392{
393 struct ath10k *ar = htt->ar;
394 struct ath10k_peer *peer;
395
396 spin_lock_bh(&ar->data_lock);
397 peer = ath10k_peer_find_by_id(ar, ev->peer_id);
398 if (!peer) {
399 ath10k_warn("unknown peer id %d\n", ev->peer_id);
400 goto exit;
401 }
402
403 ath10k_dbg(ATH10K_DBG_HTT, "htt peer unmap vdev %d peer %pM id %d\n",
404 peer->vdev_id, peer->addr, ev->peer_id);
405
406 clear_bit(ev->peer_id, peer->peer_ids);
407
408 if (bitmap_empty(peer->peer_ids, ATH10K_MAX_NUM_PEER_IDS)) {
409 list_del(&peer->list);
410 kfree(peer);
411 wake_up(&ar->peer_mapping_wq);
412 }
413
414exit:
415 spin_unlock_bh(&ar->data_lock);
416}