]> bbs.cooldavid.org Git - net-next-2.6.git/blame - drivers/net/wireless/ath/ath9k/recv.c
ath9k: Null out references to stale pointers.
[net-next-2.6.git] / drivers / net / wireless / ath / ath9k / recv.c
CommitLineData
f078f209 1/*
cee075a2 2 * Copyright (c) 2008-2009 Atheros Communications Inc.
f078f209
LR
3 *
4 * Permission to use, copy, modify, and/or distribute this software for any
5 * purpose with or without fee is hereby granted, provided that the above
6 * copyright notice and this permission notice appear in all copies.
7 *
8 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 */
16
394cf0a1 17#include "ath9k.h"
b622a720 18#include "ar9003_mac.h"
f078f209 19
b5c80475
FF
20#define SKB_CB_ATHBUF(__skb) (*((struct ath_buf **)__skb->cb))
21
102885a5
VT
22static inline bool ath_is_alt_ant_ratio_better(int alt_ratio, int maxdelta,
23 int mindelta, int main_rssi_avg,
24 int alt_rssi_avg, int pkt_count)
25{
26 return (((alt_ratio >= ATH_ANT_DIV_COMB_ALT_ANT_RATIO2) &&
27 (alt_rssi_avg > main_rssi_avg + maxdelta)) ||
28 (alt_rssi_avg > main_rssi_avg + mindelta)) && (pkt_count > 50);
29}
30
ededf1f8
VT
31static inline bool ath9k_check_auto_sleep(struct ath_softc *sc)
32{
33 return sc->ps_enabled &&
34 (sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_AUTOSLEEP);
35}
36
bce048d7
JM
37static struct ieee80211_hw * ath_get_virt_hw(struct ath_softc *sc,
38 struct ieee80211_hdr *hdr)
39{
c52f33d0
JM
40 struct ieee80211_hw *hw = sc->pri_wiphy->hw;
41 int i;
42
43 spin_lock_bh(&sc->wiphy_lock);
44 for (i = 0; i < sc->num_sec_wiphy; i++) {
45 struct ath_wiphy *aphy = sc->sec_wiphy[i];
46 if (aphy == NULL)
47 continue;
48 if (compare_ether_addr(hdr->addr1, aphy->hw->wiphy->perm_addr)
49 == 0) {
50 hw = aphy->hw;
51 break;
52 }
53 }
54 spin_unlock_bh(&sc->wiphy_lock);
55 return hw;
bce048d7
JM
56}
57
f078f209
LR
58/*
59 * Setup and link descriptors.
60 *
61 * 11N: we can no longer afford to self link the last descriptor.
62 * MAC acknowledges BA status as long as it copies frames to host
63 * buffer (or rx fifo). This can incorrectly acknowledge packets
64 * to a sender if last desc is self-linked.
f078f209 65 */
f078f209
LR
66static void ath_rx_buf_link(struct ath_softc *sc, struct ath_buf *bf)
67{
cbe61d8a 68 struct ath_hw *ah = sc->sc_ah;
cc861f74 69 struct ath_common *common = ath9k_hw_common(ah);
f078f209
LR
70 struct ath_desc *ds;
71 struct sk_buff *skb;
72
73 ATH_RXBUF_RESET(bf);
74
75 ds = bf->bf_desc;
be0418ad 76 ds->ds_link = 0; /* link to null */
f078f209
LR
77 ds->ds_data = bf->bf_buf_addr;
78
be0418ad 79 /* virtual addr of the beginning of the buffer. */
f078f209 80 skb = bf->bf_mpdu;
9680e8a3 81 BUG_ON(skb == NULL);
f078f209
LR
82 ds->ds_vdata = skb->data;
83
cc861f74
LR
84 /*
85 * setup rx descriptors. The rx_bufsize here tells the hardware
b4b6cda2 86 * how much data it can DMA to us and that we are prepared
cc861f74
LR
87 * to process
88 */
b77f483f 89 ath9k_hw_setuprxdesc(ah, ds,
cc861f74 90 common->rx_bufsize,
f078f209
LR
91 0);
92
b77f483f 93 if (sc->rx.rxlink == NULL)
f078f209
LR
94 ath9k_hw_putrxbuf(ah, bf->bf_daddr);
95 else
b77f483f 96 *sc->rx.rxlink = bf->bf_daddr;
f078f209 97
b77f483f 98 sc->rx.rxlink = &ds->ds_link;
f078f209
LR
99 ath9k_hw_rxena(ah);
100}
101
ff37e337
S
102static void ath_setdefantenna(struct ath_softc *sc, u32 antenna)
103{
104 /* XXX block beacon interrupts */
105 ath9k_hw_setantenna(sc->sc_ah, antenna);
b77f483f
S
106 sc->rx.defant = antenna;
107 sc->rx.rxotherant = 0;
ff37e337
S
108}
109
f078f209
LR
110static void ath_opmode_init(struct ath_softc *sc)
111{
cbe61d8a 112 struct ath_hw *ah = sc->sc_ah;
1510718d
LR
113 struct ath_common *common = ath9k_hw_common(ah);
114
f078f209
LR
115 u32 rfilt, mfilt[2];
116
117 /* configure rx filter */
118 rfilt = ath_calcrxfilter(sc);
119 ath9k_hw_setrxfilter(ah, rfilt);
120
121 /* configure bssid mask */
364734fa 122 ath_hw_setbssidmask(common);
f078f209
LR
123
124 /* configure operational mode */
125 ath9k_hw_setopmode(ah);
126
f078f209
LR
127 /* calculate and install multicast filter */
128 mfilt[0] = mfilt[1] = ~0;
f078f209 129 ath9k_hw_setmcastfilter(ah, mfilt[0], mfilt[1]);
f078f209
LR
130}
131
b5c80475
FF
132static bool ath_rx_edma_buf_link(struct ath_softc *sc,
133 enum ath9k_rx_qtype qtype)
f078f209 134{
b5c80475
FF
135 struct ath_hw *ah = sc->sc_ah;
136 struct ath_rx_edma *rx_edma;
f078f209
LR
137 struct sk_buff *skb;
138 struct ath_buf *bf;
f078f209 139
b5c80475
FF
140 rx_edma = &sc->rx.rx_edma[qtype];
141 if (skb_queue_len(&rx_edma->rx_fifo) >= rx_edma->rx_fifo_hwsize)
142 return false;
f078f209 143
b5c80475
FF
144 bf = list_first_entry(&sc->rx.rxbuf, struct ath_buf, list);
145 list_del_init(&bf->list);
f078f209 146
b5c80475
FF
147 skb = bf->bf_mpdu;
148
149 ATH_RXBUF_RESET(bf);
150 memset(skb->data, 0, ah->caps.rx_status_len);
151 dma_sync_single_for_device(sc->dev, bf->bf_buf_addr,
152 ah->caps.rx_status_len, DMA_TO_DEVICE);
f078f209 153
b5c80475
FF
154 SKB_CB_ATHBUF(skb) = bf;
155 ath9k_hw_addrxbuf_edma(ah, bf->bf_buf_addr, qtype);
156 skb_queue_tail(&rx_edma->rx_fifo, skb);
f078f209 157
b5c80475
FF
158 return true;
159}
160
161static void ath_rx_addbuffer_edma(struct ath_softc *sc,
162 enum ath9k_rx_qtype qtype, int size)
163{
b5c80475
FF
164 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
165 u32 nbuf = 0;
166
b5c80475
FF
167 if (list_empty(&sc->rx.rxbuf)) {
168 ath_print(common, ATH_DBG_QUEUE, "No free rx buf available\n");
169 return;
797fe5cb 170 }
f078f209 171
b5c80475
FF
172 while (!list_empty(&sc->rx.rxbuf)) {
173 nbuf++;
174
175 if (!ath_rx_edma_buf_link(sc, qtype))
176 break;
177
178 if (nbuf >= size)
179 break;
180 }
181}
182
183static void ath_rx_remove_buffer(struct ath_softc *sc,
184 enum ath9k_rx_qtype qtype)
185{
186 struct ath_buf *bf;
187 struct ath_rx_edma *rx_edma;
188 struct sk_buff *skb;
189
190 rx_edma = &sc->rx.rx_edma[qtype];
191
192 while ((skb = skb_dequeue(&rx_edma->rx_fifo)) != NULL) {
193 bf = SKB_CB_ATHBUF(skb);
194 BUG_ON(!bf);
195 list_add_tail(&bf->list, &sc->rx.rxbuf);
196 }
197}
198
199static void ath_rx_edma_cleanup(struct ath_softc *sc)
200{
201 struct ath_buf *bf;
202
203 ath_rx_remove_buffer(sc, ATH9K_RX_QUEUE_LP);
204 ath_rx_remove_buffer(sc, ATH9K_RX_QUEUE_HP);
205
797fe5cb 206 list_for_each_entry(bf, &sc->rx.rxbuf, list) {
b5c80475
FF
207 if (bf->bf_mpdu)
208 dev_kfree_skb_any(bf->bf_mpdu);
209 }
210
211 INIT_LIST_HEAD(&sc->rx.rxbuf);
212
213 kfree(sc->rx.rx_bufptr);
214 sc->rx.rx_bufptr = NULL;
215}
216
217static void ath_rx_edma_init_queue(struct ath_rx_edma *rx_edma, int size)
218{
219 skb_queue_head_init(&rx_edma->rx_fifo);
220 skb_queue_head_init(&rx_edma->rx_buffers);
221 rx_edma->rx_fifo_hwsize = size;
222}
223
224static int ath_rx_edma_init(struct ath_softc *sc, int nbufs)
225{
226 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
227 struct ath_hw *ah = sc->sc_ah;
228 struct sk_buff *skb;
229 struct ath_buf *bf;
230 int error = 0, i;
231 u32 size;
232
233
234 common->rx_bufsize = roundup(IEEE80211_MAX_MPDU_LEN +
235 ah->caps.rx_status_len,
236 min(common->cachelsz, (u16)64));
237
238 ath9k_hw_set_rx_bufsize(ah, common->rx_bufsize -
239 ah->caps.rx_status_len);
240
241 ath_rx_edma_init_queue(&sc->rx.rx_edma[ATH9K_RX_QUEUE_LP],
242 ah->caps.rx_lp_qdepth);
243 ath_rx_edma_init_queue(&sc->rx.rx_edma[ATH9K_RX_QUEUE_HP],
244 ah->caps.rx_hp_qdepth);
245
246 size = sizeof(struct ath_buf) * nbufs;
247 bf = kzalloc(size, GFP_KERNEL);
248 if (!bf)
249 return -ENOMEM;
250
251 INIT_LIST_HEAD(&sc->rx.rxbuf);
252 sc->rx.rx_bufptr = bf;
253
254 for (i = 0; i < nbufs; i++, bf++) {
cc861f74 255 skb = ath_rxbuf_alloc(common, common->rx_bufsize, GFP_KERNEL);
b5c80475 256 if (!skb) {
797fe5cb 257 error = -ENOMEM;
b5c80475 258 goto rx_init_fail;
f078f209 259 }
f078f209 260
b5c80475 261 memset(skb->data, 0, common->rx_bufsize);
797fe5cb 262 bf->bf_mpdu = skb;
b5c80475 263
797fe5cb 264 bf->bf_buf_addr = dma_map_single(sc->dev, skb->data,
cc861f74 265 common->rx_bufsize,
b5c80475 266 DMA_BIDIRECTIONAL);
797fe5cb 267 if (unlikely(dma_mapping_error(sc->dev,
b5c80475
FF
268 bf->bf_buf_addr))) {
269 dev_kfree_skb_any(skb);
270 bf->bf_mpdu = NULL;
6cf9e995 271 bf->bf_buf_addr = 0;
b5c80475
FF
272 ath_print(common, ATH_DBG_FATAL,
273 "dma_mapping_error() on RX init\n");
274 error = -ENOMEM;
275 goto rx_init_fail;
276 }
277
278 list_add_tail(&bf->list, &sc->rx.rxbuf);
279 }
280
281 return 0;
282
283rx_init_fail:
284 ath_rx_edma_cleanup(sc);
285 return error;
286}
287
288static void ath_edma_start_recv(struct ath_softc *sc)
289{
290 spin_lock_bh(&sc->rx.rxbuflock);
291
292 ath9k_hw_rxena(sc->sc_ah);
293
294 ath_rx_addbuffer_edma(sc, ATH9K_RX_QUEUE_HP,
295 sc->rx.rx_edma[ATH9K_RX_QUEUE_HP].rx_fifo_hwsize);
296
297 ath_rx_addbuffer_edma(sc, ATH9K_RX_QUEUE_LP,
298 sc->rx.rx_edma[ATH9K_RX_QUEUE_LP].rx_fifo_hwsize);
299
300 spin_unlock_bh(&sc->rx.rxbuflock);
301
302 ath_opmode_init(sc);
303
48a6a468 304 ath9k_hw_startpcureceive(sc->sc_ah, (sc->sc_flags & SC_OP_OFFCHANNEL));
b5c80475
FF
305}
306
307static void ath_edma_stop_recv(struct ath_softc *sc)
308{
309 spin_lock_bh(&sc->rx.rxbuflock);
310 ath_rx_remove_buffer(sc, ATH9K_RX_QUEUE_HP);
311 ath_rx_remove_buffer(sc, ATH9K_RX_QUEUE_LP);
312 spin_unlock_bh(&sc->rx.rxbuflock);
313}
314
315int ath_rx_init(struct ath_softc *sc, int nbufs)
316{
317 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
318 struct sk_buff *skb;
319 struct ath_buf *bf;
320 int error = 0;
321
322 spin_lock_init(&sc->rx.rxflushlock);
323 sc->sc_flags &= ~SC_OP_RXFLUSH;
324 spin_lock_init(&sc->rx.rxbuflock);
325
326 if (sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_EDMA) {
327 return ath_rx_edma_init(sc, nbufs);
328 } else {
329 common->rx_bufsize = roundup(IEEE80211_MAX_MPDU_LEN,
330 min(common->cachelsz, (u16)64));
331
332 ath_print(common, ATH_DBG_CONFIG, "cachelsz %u rxbufsize %u\n",
333 common->cachelsz, common->rx_bufsize);
334
335 /* Initialize rx descriptors */
336
337 error = ath_descdma_setup(sc, &sc->rx.rxdma, &sc->rx.rxbuf,
4adfcded 338 "rx", nbufs, 1, 0);
b5c80475 339 if (error != 0) {
c46917bb 340 ath_print(common, ATH_DBG_FATAL,
b5c80475
FF
341 "failed to allocate rx descriptors: %d\n",
342 error);
797fe5cb
S
343 goto err;
344 }
b5c80475
FF
345
346 list_for_each_entry(bf, &sc->rx.rxbuf, list) {
347 skb = ath_rxbuf_alloc(common, common->rx_bufsize,
348 GFP_KERNEL);
349 if (skb == NULL) {
350 error = -ENOMEM;
351 goto err;
352 }
353
354 bf->bf_mpdu = skb;
355 bf->bf_buf_addr = dma_map_single(sc->dev, skb->data,
356 common->rx_bufsize,
357 DMA_FROM_DEVICE);
358 if (unlikely(dma_mapping_error(sc->dev,
359 bf->bf_buf_addr))) {
360 dev_kfree_skb_any(skb);
361 bf->bf_mpdu = NULL;
6cf9e995 362 bf->bf_buf_addr = 0;
b5c80475
FF
363 ath_print(common, ATH_DBG_FATAL,
364 "dma_mapping_error() on RX init\n");
365 error = -ENOMEM;
366 goto err;
367 }
b5c80475
FF
368 }
369 sc->rx.rxlink = NULL;
797fe5cb 370 }
f078f209 371
797fe5cb 372err:
f078f209
LR
373 if (error)
374 ath_rx_cleanup(sc);
375
376 return error;
377}
378
f078f209
LR
379void ath_rx_cleanup(struct ath_softc *sc)
380{
cc861f74
LR
381 struct ath_hw *ah = sc->sc_ah;
382 struct ath_common *common = ath9k_hw_common(ah);
f078f209
LR
383 struct sk_buff *skb;
384 struct ath_buf *bf;
385
b5c80475
FF
386 if (sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_EDMA) {
387 ath_rx_edma_cleanup(sc);
388 return;
389 } else {
390 list_for_each_entry(bf, &sc->rx.rxbuf, list) {
391 skb = bf->bf_mpdu;
392 if (skb) {
393 dma_unmap_single(sc->dev, bf->bf_buf_addr,
394 common->rx_bufsize,
395 DMA_FROM_DEVICE);
396 dev_kfree_skb(skb);
6cf9e995
BG
397 bf->bf_buf_addr = 0;
398 bf->bf_mpdu = NULL;
b5c80475 399 }
051b9191 400 }
f078f209 401
b5c80475
FF
402 if (sc->rx.rxdma.dd_desc_len != 0)
403 ath_descdma_cleanup(sc, &sc->rx.rxdma, &sc->rx.rxbuf);
404 }
f078f209
LR
405}
406
407/*
408 * Calculate the receive filter according to the
409 * operating mode and state:
410 *
411 * o always accept unicast, broadcast, and multicast traffic
412 * o maintain current state of phy error reception (the hal
413 * may enable phy error frames for noise immunity work)
414 * o probe request frames are accepted only when operating in
415 * hostap, adhoc, or monitor modes
416 * o enable promiscuous mode according to the interface state
417 * o accept beacons:
418 * - when operating in adhoc mode so the 802.11 layer creates
419 * node table entries for peers,
420 * - when operating in station mode for collecting rssi data when
421 * the station is otherwise quiet, or
422 * - when operating as a repeater so we see repeater-sta beacons
423 * - when scanning
424 */
425
426u32 ath_calcrxfilter(struct ath_softc *sc)
427{
428#define RX_FILTER_PRESERVE (ATH9K_RX_FILTER_PHYERR | ATH9K_RX_FILTER_PHYRADAR)
7dcfdcd9 429
f078f209
LR
430 u32 rfilt;
431
432 rfilt = (ath9k_hw_getrxfilter(sc->sc_ah) & RX_FILTER_PRESERVE)
433 | ATH9K_RX_FILTER_UCAST | ATH9K_RX_FILTER_BCAST
434 | ATH9K_RX_FILTER_MCAST;
435
9c1d8e4a 436 if (sc->rx.rxfilter & FIF_PROBE_REQ)
f078f209
LR
437 rfilt |= ATH9K_RX_FILTER_PROBEREQ;
438
217ba9da
JM
439 /*
440 * Set promiscuous mode when FIF_PROMISC_IN_BSS is enabled for station
441 * mode interface or when in monitor mode. AP mode does not need this
442 * since it receives all in-BSS frames anyway.
443 */
2660b81a 444 if (((sc->sc_ah->opmode != NL80211_IFTYPE_AP) &&
b77f483f 445 (sc->rx.rxfilter & FIF_PROMISC_IN_BSS)) ||
217ba9da 446 (sc->sc_ah->opmode == NL80211_IFTYPE_MONITOR))
f078f209 447 rfilt |= ATH9K_RX_FILTER_PROM;
f078f209 448
d42c6b71
S
449 if (sc->rx.rxfilter & FIF_CONTROL)
450 rfilt |= ATH9K_RX_FILTER_CONTROL;
451
dbaaa147 452 if ((sc->sc_ah->opmode == NL80211_IFTYPE_STATION) &&
cfda6695 453 (sc->nvifs <= 1) &&
dbaaa147
VT
454 !(sc->rx.rxfilter & FIF_BCN_PRBRESP_PROMISC))
455 rfilt |= ATH9K_RX_FILTER_MYBEACON;
456 else
f078f209
LR
457 rfilt |= ATH9K_RX_FILTER_BEACON;
458
7a37081e 459 if ((AR_SREV_9280_20_OR_LATER(sc->sc_ah) ||
e17f83ea 460 AR_SREV_9285_12_OR_LATER(sc->sc_ah)) &&
66afad01
SB
461 (sc->sc_ah->opmode == NL80211_IFTYPE_AP) &&
462 (sc->rx.rxfilter & FIF_PSPOLL))
dbaaa147 463 rfilt |= ATH9K_RX_FILTER_PSPOLL;
be0418ad 464
7ea310be
S
465 if (conf_is_ht(&sc->hw->conf))
466 rfilt |= ATH9K_RX_FILTER_COMP_BAR;
467
cfda6695
BG
468 if (sc->sec_wiphy || (sc->nvifs > 1) ||
469 (sc->rx.rxfilter & FIF_OTHER_BSS)) {
5eb6ba83
JC
470 /* The following may also be needed for other older chips */
471 if (sc->sc_ah->hw_version.macVersion == AR_SREV_VERSION_9160)
472 rfilt |= ATH9K_RX_FILTER_PROM;
b93bce2a
JM
473 rfilt |= ATH9K_RX_FILTER_MCAST_BCAST_ALL;
474 }
475
f078f209 476 return rfilt;
7dcfdcd9 477
f078f209
LR
478#undef RX_FILTER_PRESERVE
479}
480
f078f209
LR
481int ath_startrecv(struct ath_softc *sc)
482{
cbe61d8a 483 struct ath_hw *ah = sc->sc_ah;
f078f209
LR
484 struct ath_buf *bf, *tbf;
485
b5c80475
FF
486 if (ah->caps.hw_caps & ATH9K_HW_CAP_EDMA) {
487 ath_edma_start_recv(sc);
488 return 0;
489 }
490
b77f483f
S
491 spin_lock_bh(&sc->rx.rxbuflock);
492 if (list_empty(&sc->rx.rxbuf))
f078f209
LR
493 goto start_recv;
494
b77f483f
S
495 sc->rx.rxlink = NULL;
496 list_for_each_entry_safe(bf, tbf, &sc->rx.rxbuf, list) {
f078f209
LR
497 ath_rx_buf_link(sc, bf);
498 }
499
500 /* We could have deleted elements so the list may be empty now */
b77f483f 501 if (list_empty(&sc->rx.rxbuf))
f078f209
LR
502 goto start_recv;
503
b77f483f 504 bf = list_first_entry(&sc->rx.rxbuf, struct ath_buf, list);
f078f209 505 ath9k_hw_putrxbuf(ah, bf->bf_daddr);
be0418ad 506 ath9k_hw_rxena(ah);
f078f209
LR
507
508start_recv:
b77f483f 509 spin_unlock_bh(&sc->rx.rxbuflock);
be0418ad 510 ath_opmode_init(sc);
48a6a468 511 ath9k_hw_startpcureceive(ah, (sc->sc_flags & SC_OP_OFFCHANNEL));
be0418ad 512
f078f209
LR
513 return 0;
514}
515
f078f209
LR
516bool ath_stoprecv(struct ath_softc *sc)
517{
cbe61d8a 518 struct ath_hw *ah = sc->sc_ah;
f078f209
LR
519 bool stopped;
520
be0418ad
S
521 ath9k_hw_stoppcurecv(ah);
522 ath9k_hw_setrxfilter(ah, 0);
523 stopped = ath9k_hw_stopdmarecv(ah);
b5c80475
FF
524
525 if (sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_EDMA)
526 ath_edma_stop_recv(sc);
527 else
528 sc->rx.rxlink = NULL;
be0418ad 529
f078f209
LR
530 return stopped;
531}
532
f078f209
LR
533void ath_flushrecv(struct ath_softc *sc)
534{
b77f483f 535 spin_lock_bh(&sc->rx.rxflushlock);
98deeea0 536 sc->sc_flags |= SC_OP_RXFLUSH;
b5c80475
FF
537 if (sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_EDMA)
538 ath_rx_tasklet(sc, 1, true);
539 ath_rx_tasklet(sc, 1, false);
98deeea0 540 sc->sc_flags &= ~SC_OP_RXFLUSH;
b77f483f 541 spin_unlock_bh(&sc->rx.rxflushlock);
f078f209
LR
542}
543
cc65965c
JM
544static bool ath_beacon_dtim_pending_cab(struct sk_buff *skb)
545{
546 /* Check whether the Beacon frame has DTIM indicating buffered bc/mc */
547 struct ieee80211_mgmt *mgmt;
548 u8 *pos, *end, id, elen;
549 struct ieee80211_tim_ie *tim;
550
551 mgmt = (struct ieee80211_mgmt *)skb->data;
552 pos = mgmt->u.beacon.variable;
553 end = skb->data + skb->len;
554
555 while (pos + 2 < end) {
556 id = *pos++;
557 elen = *pos++;
558 if (pos + elen > end)
559 break;
560
561 if (id == WLAN_EID_TIM) {
562 if (elen < sizeof(*tim))
563 break;
564 tim = (struct ieee80211_tim_ie *) pos;
565 if (tim->dtim_count != 0)
566 break;
567 return tim->bitmap_ctrl & 0x01;
568 }
569
570 pos += elen;
571 }
572
573 return false;
574}
575
cc65965c
JM
576static void ath_rx_ps_beacon(struct ath_softc *sc, struct sk_buff *skb)
577{
578 struct ieee80211_mgmt *mgmt;
1510718d 579 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
cc65965c
JM
580
581 if (skb->len < 24 + 8 + 2 + 2)
582 return;
583
584 mgmt = (struct ieee80211_mgmt *)skb->data;
1510718d 585 if (memcmp(common->curbssid, mgmt->bssid, ETH_ALEN) != 0)
cc65965c
JM
586 return; /* not from our current AP */
587
1b04b930 588 sc->ps_flags &= ~PS_WAIT_FOR_BEACON;
293dc5df 589
1b04b930
S
590 if (sc->ps_flags & PS_BEACON_SYNC) {
591 sc->ps_flags &= ~PS_BEACON_SYNC;
c46917bb
LR
592 ath_print(common, ATH_DBG_PS,
593 "Reconfigure Beacon timers based on "
594 "timestamp from the AP\n");
ccdfeab6
JM
595 ath_beacon_config(sc, NULL);
596 }
597
cc65965c
JM
598 if (ath_beacon_dtim_pending_cab(skb)) {
599 /*
600 * Remain awake waiting for buffered broadcast/multicast
58f5fffd
GJ
601 * frames. If the last broadcast/multicast frame is not
602 * received properly, the next beacon frame will work as
603 * a backup trigger for returning into NETWORK SLEEP state,
604 * so we are waiting for it as well.
cc65965c 605 */
c46917bb
LR
606 ath_print(common, ATH_DBG_PS, "Received DTIM beacon indicating "
607 "buffered broadcast/multicast frame(s)\n");
1b04b930 608 sc->ps_flags |= PS_WAIT_FOR_CAB | PS_WAIT_FOR_BEACON;
cc65965c
JM
609 return;
610 }
611
1b04b930 612 if (sc->ps_flags & PS_WAIT_FOR_CAB) {
cc65965c
JM
613 /*
614 * This can happen if a broadcast frame is dropped or the AP
615 * fails to send a frame indicating that all CAB frames have
616 * been delivered.
617 */
1b04b930 618 sc->ps_flags &= ~PS_WAIT_FOR_CAB;
c46917bb
LR
619 ath_print(common, ATH_DBG_PS,
620 "PS wait for CAB frames timed out\n");
cc65965c 621 }
cc65965c
JM
622}
623
624static void ath_rx_ps(struct ath_softc *sc, struct sk_buff *skb)
625{
626 struct ieee80211_hdr *hdr;
c46917bb 627 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
cc65965c
JM
628
629 hdr = (struct ieee80211_hdr *)skb->data;
630
631 /* Process Beacon and CAB receive in PS state */
ededf1f8
VT
632 if (((sc->ps_flags & PS_WAIT_FOR_BEACON) || ath9k_check_auto_sleep(sc))
633 && ieee80211_is_beacon(hdr->frame_control))
cc65965c 634 ath_rx_ps_beacon(sc, skb);
1b04b930 635 else if ((sc->ps_flags & PS_WAIT_FOR_CAB) &&
cc65965c
JM
636 (ieee80211_is_data(hdr->frame_control) ||
637 ieee80211_is_action(hdr->frame_control)) &&
638 is_multicast_ether_addr(hdr->addr1) &&
639 !ieee80211_has_moredata(hdr->frame_control)) {
cc65965c
JM
640 /*
641 * No more broadcast/multicast frames to be received at this
642 * point.
643 */
3fac6dfd 644 sc->ps_flags &= ~(PS_WAIT_FOR_CAB | PS_WAIT_FOR_BEACON);
c46917bb
LR
645 ath_print(common, ATH_DBG_PS,
646 "All PS CAB frames received, back to sleep\n");
1b04b930 647 } else if ((sc->ps_flags & PS_WAIT_FOR_PSPOLL_DATA) &&
9a23f9ca
JM
648 !is_multicast_ether_addr(hdr->addr1) &&
649 !ieee80211_has_morefrags(hdr->frame_control)) {
1b04b930 650 sc->ps_flags &= ~PS_WAIT_FOR_PSPOLL_DATA;
c46917bb
LR
651 ath_print(common, ATH_DBG_PS,
652 "Going back to sleep after having received "
f643e51d 653 "PS-Poll data (0x%lx)\n",
1b04b930
S
654 sc->ps_flags & (PS_WAIT_FOR_BEACON |
655 PS_WAIT_FOR_CAB |
656 PS_WAIT_FOR_PSPOLL_DATA |
657 PS_WAIT_FOR_TX_ACK));
cc65965c
JM
658 }
659}
660
b4afffc0
LR
661static void ath_rx_send_to_mac80211(struct ieee80211_hw *hw,
662 struct ath_softc *sc, struct sk_buff *skb,
5ca42627 663 struct ieee80211_rx_status *rxs)
9d64a3cf
JM
664{
665 struct ieee80211_hdr *hdr;
666
667 hdr = (struct ieee80211_hdr *)skb->data;
668
669 /* Send the frame to mac80211 */
670 if (is_multicast_ether_addr(hdr->addr1)) {
671 int i;
672 /*
673 * Deliver broadcast/multicast frames to all suitable
674 * virtual wiphys.
675 */
676 /* TODO: filter based on channel configuration */
677 for (i = 0; i < sc->num_sec_wiphy; i++) {
678 struct ath_wiphy *aphy = sc->sec_wiphy[i];
679 struct sk_buff *nskb;
680 if (aphy == NULL)
681 continue;
682 nskb = skb_copy(skb, GFP_ATOMIC);
5ca42627
LR
683 if (!nskb)
684 continue;
685 ieee80211_rx(aphy->hw, nskb);
9d64a3cf 686 }
f1d58c25 687 ieee80211_rx(sc->hw, skb);
5ca42627 688 } else
9d64a3cf 689 /* Deliver unicast frames based on receiver address */
b4afffc0 690 ieee80211_rx(hw, skb);
9d64a3cf
JM
691}
692
b5c80475
FF
693static bool ath_edma_get_buffers(struct ath_softc *sc,
694 enum ath9k_rx_qtype qtype)
f078f209 695{
b5c80475
FF
696 struct ath_rx_edma *rx_edma = &sc->rx.rx_edma[qtype];
697 struct ath_hw *ah = sc->sc_ah;
698 struct ath_common *common = ath9k_hw_common(ah);
699 struct sk_buff *skb;
700 struct ath_buf *bf;
701 int ret;
702
703 skb = skb_peek(&rx_edma->rx_fifo);
704 if (!skb)
705 return false;
706
707 bf = SKB_CB_ATHBUF(skb);
708 BUG_ON(!bf);
709
ce9426d1 710 dma_sync_single_for_cpu(sc->dev, bf->bf_buf_addr,
b5c80475
FF
711 common->rx_bufsize, DMA_FROM_DEVICE);
712
713 ret = ath9k_hw_process_rxdesc_edma(ah, NULL, skb->data);
ce9426d1
ML
714 if (ret == -EINPROGRESS) {
715 /*let device gain the buffer again*/
716 dma_sync_single_for_device(sc->dev, bf->bf_buf_addr,
717 common->rx_bufsize, DMA_FROM_DEVICE);
b5c80475 718 return false;
ce9426d1 719 }
b5c80475
FF
720
721 __skb_unlink(skb, &rx_edma->rx_fifo);
722 if (ret == -EINVAL) {
723 /* corrupt descriptor, skip this one and the following one */
724 list_add_tail(&bf->list, &sc->rx.rxbuf);
725 ath_rx_edma_buf_link(sc, qtype);
726 skb = skb_peek(&rx_edma->rx_fifo);
727 if (!skb)
728 return true;
729
730 bf = SKB_CB_ATHBUF(skb);
731 BUG_ON(!bf);
732
733 __skb_unlink(skb, &rx_edma->rx_fifo);
734 list_add_tail(&bf->list, &sc->rx.rxbuf);
735 ath_rx_edma_buf_link(sc, qtype);
083e3e8d 736 return true;
b5c80475
FF
737 }
738 skb_queue_tail(&rx_edma->rx_buffers, skb);
739
740 return true;
741}
f078f209 742
b5c80475
FF
743static struct ath_buf *ath_edma_get_next_rx_buf(struct ath_softc *sc,
744 struct ath_rx_status *rs,
745 enum ath9k_rx_qtype qtype)
746{
747 struct ath_rx_edma *rx_edma = &sc->rx.rx_edma[qtype];
748 struct sk_buff *skb;
be0418ad 749 struct ath_buf *bf;
b5c80475
FF
750
751 while (ath_edma_get_buffers(sc, qtype));
752 skb = __skb_dequeue(&rx_edma->rx_buffers);
753 if (!skb)
754 return NULL;
755
756 bf = SKB_CB_ATHBUF(skb);
757 ath9k_hw_process_rxdesc_edma(sc->sc_ah, rs, skb->data);
758 return bf;
759}
760
761static struct ath_buf *ath_get_next_rx_buf(struct ath_softc *sc,
762 struct ath_rx_status *rs)
763{
764 struct ath_hw *ah = sc->sc_ah;
765 struct ath_common *common = ath9k_hw_common(ah);
f078f209 766 struct ath_desc *ds;
b5c80475
FF
767 struct ath_buf *bf;
768 int ret;
769
770 if (list_empty(&sc->rx.rxbuf)) {
771 sc->rx.rxlink = NULL;
772 return NULL;
773 }
774
775 bf = list_first_entry(&sc->rx.rxbuf, struct ath_buf, list);
776 ds = bf->bf_desc;
777
778 /*
779 * Must provide the virtual address of the current
780 * descriptor, the physical address, and the virtual
781 * address of the next descriptor in the h/w chain.
782 * This allows the HAL to look ahead to see if the
783 * hardware is done with a descriptor by checking the
784 * done bit in the following descriptor and the address
785 * of the current descriptor the DMA engine is working
786 * on. All this is necessary because of our use of
787 * a self-linked list to avoid rx overruns.
788 */
789 ret = ath9k_hw_rxprocdesc(ah, ds, rs, 0);
790 if (ret == -EINPROGRESS) {
791 struct ath_rx_status trs;
792 struct ath_buf *tbf;
793 struct ath_desc *tds;
794
795 memset(&trs, 0, sizeof(trs));
796 if (list_is_last(&bf->list, &sc->rx.rxbuf)) {
797 sc->rx.rxlink = NULL;
798 return NULL;
799 }
800
801 tbf = list_entry(bf->list.next, struct ath_buf, list);
802
803 /*
804 * On some hardware the descriptor status words could
805 * get corrupted, including the done bit. Because of
806 * this, check if the next descriptor's done bit is
807 * set or not.
808 *
809 * If the next descriptor's done bit is set, the current
810 * descriptor has been corrupted. Force s/w to discard
811 * this descriptor and continue...
812 */
813
814 tds = tbf->bf_desc;
815 ret = ath9k_hw_rxprocdesc(ah, tds, &trs, 0);
816 if (ret == -EINPROGRESS)
817 return NULL;
818 }
819
820 if (!bf->bf_mpdu)
821 return bf;
822
823 /*
824 * Synchronize the DMA transfer with CPU before
825 * 1. accessing the frame
826 * 2. requeueing the same buffer to h/w
827 */
ce9426d1 828 dma_sync_single_for_cpu(sc->dev, bf->bf_buf_addr,
b5c80475
FF
829 common->rx_bufsize,
830 DMA_FROM_DEVICE);
831
832 return bf;
833}
834
d435700f
S
835/* Assumes you've already done the endian to CPU conversion */
836static bool ath9k_rx_accept(struct ath_common *common,
9f167f64 837 struct ieee80211_hdr *hdr,
d435700f
S
838 struct ieee80211_rx_status *rxs,
839 struct ath_rx_status *rx_stats,
840 bool *decrypt_error)
841{
842 struct ath_hw *ah = common->ah;
d435700f 843 __le16 fc;
b7b1b512 844 u8 rx_status_len = ah->caps.rx_status_len;
d435700f 845
d435700f
S
846 fc = hdr->frame_control;
847
848 if (!rx_stats->rs_datalen)
849 return false;
850 /*
851 * rs_status follows rs_datalen so if rs_datalen is too large
852 * we can take a hint that hardware corrupted it, so ignore
853 * those frames.
854 */
b7b1b512 855 if (rx_stats->rs_datalen > (common->rx_bufsize - rx_status_len))
d435700f
S
856 return false;
857
858 /*
859 * rs_more indicates chained descriptors which can be used
860 * to link buffers together for a sort of scatter-gather
861 * operation.
862 * reject the frame, we don't support scatter-gather yet and
863 * the frame is probably corrupt anyway
864 */
865 if (rx_stats->rs_more)
866 return false;
867
868 /*
869 * The rx_stats->rs_status will not be set until the end of the
870 * chained descriptors so it can be ignored if rs_more is set. The
871 * rs_more will be false at the last element of the chained
872 * descriptors.
873 */
874 if (rx_stats->rs_status != 0) {
875 if (rx_stats->rs_status & ATH9K_RXERR_CRC)
876 rxs->flag |= RX_FLAG_FAILED_FCS_CRC;
877 if (rx_stats->rs_status & ATH9K_RXERR_PHY)
878 return false;
879
880 if (rx_stats->rs_status & ATH9K_RXERR_DECRYPT) {
881 *decrypt_error = true;
882 } else if (rx_stats->rs_status & ATH9K_RXERR_MIC) {
56363dde
FF
883 /*
884 * The MIC error bit is only valid if the frame
885 * is not a control frame or fragment, and it was
886 * decrypted using a valid TKIP key.
887 */
888 if (!ieee80211_is_ctl(fc) &&
889 !ieee80211_has_morefrags(fc) &&
890 !(le16_to_cpu(hdr->seq_ctrl) & IEEE80211_SCTL_FRAG) &&
891 test_bit(rx_stats->rs_keyix, common->tkip_keymap))
d435700f 892 rxs->flag |= RX_FLAG_MMIC_ERROR;
56363dde
FF
893 else
894 rx_stats->rs_status &= ~ATH9K_RXERR_MIC;
d435700f
S
895 }
896 /*
897 * Reject error frames with the exception of
898 * decryption and MIC failures. For monitor mode,
899 * we also ignore the CRC error.
900 */
901 if (ah->opmode == NL80211_IFTYPE_MONITOR) {
902 if (rx_stats->rs_status &
903 ~(ATH9K_RXERR_DECRYPT | ATH9K_RXERR_MIC |
904 ATH9K_RXERR_CRC))
905 return false;
906 } else {
907 if (rx_stats->rs_status &
908 ~(ATH9K_RXERR_DECRYPT | ATH9K_RXERR_MIC)) {
909 return false;
910 }
911 }
912 }
913 return true;
914}
915
916static int ath9k_process_rate(struct ath_common *common,
917 struct ieee80211_hw *hw,
918 struct ath_rx_status *rx_stats,
9f167f64 919 struct ieee80211_rx_status *rxs)
d435700f
S
920{
921 struct ieee80211_supported_band *sband;
922 enum ieee80211_band band;
923 unsigned int i = 0;
924
925 band = hw->conf.channel->band;
926 sband = hw->wiphy->bands[band];
927
928 if (rx_stats->rs_rate & 0x80) {
929 /* HT rate */
930 rxs->flag |= RX_FLAG_HT;
931 if (rx_stats->rs_flags & ATH9K_RX_2040)
932 rxs->flag |= RX_FLAG_40MHZ;
933 if (rx_stats->rs_flags & ATH9K_RX_GI)
934 rxs->flag |= RX_FLAG_SHORT_GI;
935 rxs->rate_idx = rx_stats->rs_rate & 0x7f;
936 return 0;
937 }
938
939 for (i = 0; i < sband->n_bitrates; i++) {
940 if (sband->bitrates[i].hw_value == rx_stats->rs_rate) {
941 rxs->rate_idx = i;
942 return 0;
943 }
944 if (sband->bitrates[i].hw_value_short == rx_stats->rs_rate) {
945 rxs->flag |= RX_FLAG_SHORTPRE;
946 rxs->rate_idx = i;
947 return 0;
948 }
949 }
950
951 /*
952 * No valid hardware bitrate found -- we should not get here
953 * because hardware has already validated this frame as OK.
954 */
955 ath_print(common, ATH_DBG_XMIT, "unsupported hw bitrate detected "
956 "0x%02x using 1 Mbit\n", rx_stats->rs_rate);
d435700f
S
957
958 return -EINVAL;
959}
960
961static void ath9k_process_rssi(struct ath_common *common,
962 struct ieee80211_hw *hw,
9f167f64 963 struct ieee80211_hdr *hdr,
d435700f
S
964 struct ath_rx_status *rx_stats)
965{
966 struct ath_hw *ah = common->ah;
967 struct ieee80211_sta *sta;
d435700f
S
968 struct ath_node *an;
969 int last_rssi = ATH_RSSI_DUMMY_MARKER;
970 __le16 fc;
971
d435700f
S
972 fc = hdr->frame_control;
973
974 rcu_read_lock();
975 /*
976 * XXX: use ieee80211_find_sta! This requires quite a bit of work
977 * under the current ath9k virtual wiphy implementation as we have
978 * no way of tying a vif to wiphy. Typically vifs are attached to
979 * at least one sdata of a wiphy on mac80211 but with ath9k virtual
980 * wiphy you'd have to iterate over every wiphy and each sdata.
981 */
686b9cb9
BG
982 if (is_multicast_ether_addr(hdr->addr1))
983 sta = ieee80211_find_sta_by_ifaddr(hw, hdr->addr2, NULL);
984 else
985 sta = ieee80211_find_sta_by_ifaddr(hw, hdr->addr2, hdr->addr1);
986
d435700f
S
987 if (sta) {
988 an = (struct ath_node *) sta->drv_priv;
989 if (rx_stats->rs_rssi != ATH9K_RSSI_BAD &&
990 !rx_stats->rs_moreaggr)
991 ATH_RSSI_LPF(an->last_rssi, rx_stats->rs_rssi);
992 last_rssi = an->last_rssi;
993 }
994 rcu_read_unlock();
995
996 if (likely(last_rssi != ATH_RSSI_DUMMY_MARKER))
997 rx_stats->rs_rssi = ATH_EP_RND(last_rssi,
998 ATH_RSSI_EP_MULTIPLIER);
999 if (rx_stats->rs_rssi < 0)
1000 rx_stats->rs_rssi = 0;
1001
1002 /* Update Beacon RSSI, this is used by ANI. */
1003 if (ieee80211_is_beacon(fc))
1004 ah->stats.avgbrssi = rx_stats->rs_rssi;
1005}
1006
1007/*
1008 * For Decrypt or Demic errors, we only mark packet status here and always push
1009 * up the frame up to let mac80211 handle the actual error case, be it no
1010 * decryption key or real decryption error. This let us keep statistics there.
1011 */
1012static int ath9k_rx_skb_preprocess(struct ath_common *common,
1013 struct ieee80211_hw *hw,
9f167f64 1014 struct ieee80211_hdr *hdr,
d435700f
S
1015 struct ath_rx_status *rx_stats,
1016 struct ieee80211_rx_status *rx_status,
1017 bool *decrypt_error)
1018{
d435700f
S
1019 memset(rx_status, 0, sizeof(struct ieee80211_rx_status));
1020
1021 /*
1022 * everything but the rate is checked here, the rate check is done
1023 * separately to avoid doing two lookups for a rate for each frame.
1024 */
9f167f64 1025 if (!ath9k_rx_accept(common, hdr, rx_status, rx_stats, decrypt_error))
d435700f
S
1026 return -EINVAL;
1027
9f167f64 1028 ath9k_process_rssi(common, hw, hdr, rx_stats);
d435700f 1029
9f167f64 1030 if (ath9k_process_rate(common, hw, rx_stats, rx_status))
d435700f
S
1031 return -EINVAL;
1032
d435700f
S
1033 rx_status->band = hw->conf.channel->band;
1034 rx_status->freq = hw->conf.channel->center_freq;
1035 rx_status->signal = ATH_DEFAULT_NOISE_FLOOR + rx_stats->rs_rssi;
1036 rx_status->antenna = rx_stats->rs_antenna;
1037 rx_status->flag |= RX_FLAG_TSFT;
1038
1039 return 0;
1040}
1041
1042static void ath9k_rx_skb_postprocess(struct ath_common *common,
1043 struct sk_buff *skb,
1044 struct ath_rx_status *rx_stats,
1045 struct ieee80211_rx_status *rxs,
1046 bool decrypt_error)
1047{
1048 struct ath_hw *ah = common->ah;
1049 struct ieee80211_hdr *hdr;
1050 int hdrlen, padpos, padsize;
1051 u8 keyix;
1052 __le16 fc;
1053
1054 /* see if any padding is done by the hw and remove it */
1055 hdr = (struct ieee80211_hdr *) skb->data;
1056 hdrlen = ieee80211_get_hdrlen_from_skb(skb);
1057 fc = hdr->frame_control;
1058 padpos = ath9k_cmn_padpos(hdr->frame_control);
1059
1060 /* The MAC header is padded to have 32-bit boundary if the
1061 * packet payload is non-zero. The general calculation for
1062 * padsize would take into account odd header lengths:
1063 * padsize = (4 - padpos % 4) % 4; However, since only
1064 * even-length headers are used, padding can only be 0 or 2
1065 * bytes and we can optimize this a bit. In addition, we must
1066 * not try to remove padding from short control frames that do
1067 * not have payload. */
1068 padsize = padpos & 3;
1069 if (padsize && skb->len>=padpos+padsize+FCS_LEN) {
1070 memmove(skb->data + padsize, skb->data, padpos);
1071 skb_pull(skb, padsize);
1072 }
1073
1074 keyix = rx_stats->rs_keyix;
1075
1076 if (!(keyix == ATH9K_RXKEYIX_INVALID) && !decrypt_error &&
1077 ieee80211_has_protected(fc)) {
1078 rxs->flag |= RX_FLAG_DECRYPTED;
1079 } else if (ieee80211_has_protected(fc)
1080 && !decrypt_error && skb->len >= hdrlen + 4) {
1081 keyix = skb->data[hdrlen + 3] >> 6;
1082
1083 if (test_bit(keyix, common->keymap))
1084 rxs->flag |= RX_FLAG_DECRYPTED;
1085 }
1086 if (ah->sw_mgmt_crypto &&
1087 (rxs->flag & RX_FLAG_DECRYPTED) &&
1088 ieee80211_is_mgmt(fc))
1089 /* Use software decrypt for management frames. */
1090 rxs->flag &= ~RX_FLAG_DECRYPTED;
1091}
b5c80475 1092
102885a5
VT
1093static void ath_lnaconf_alt_good_scan(struct ath_ant_comb *antcomb,
1094 struct ath_hw_antcomb_conf ant_conf,
1095 int main_rssi_avg)
1096{
1097 antcomb->quick_scan_cnt = 0;
1098
1099 if (ant_conf.main_lna_conf == ATH_ANT_DIV_COMB_LNA2)
1100 antcomb->rssi_lna2 = main_rssi_avg;
1101 else if (ant_conf.main_lna_conf == ATH_ANT_DIV_COMB_LNA1)
1102 antcomb->rssi_lna1 = main_rssi_avg;
1103
1104 switch ((ant_conf.main_lna_conf << 4) | ant_conf.alt_lna_conf) {
1105 case (0x10): /* LNA2 A-B */
1106 antcomb->main_conf = ATH_ANT_DIV_COMB_LNA1_MINUS_LNA2;
1107 antcomb->first_quick_scan_conf =
1108 ATH_ANT_DIV_COMB_LNA1_PLUS_LNA2;
1109 antcomb->second_quick_scan_conf = ATH_ANT_DIV_COMB_LNA1;
1110 break;
1111 case (0x20): /* LNA1 A-B */
1112 antcomb->main_conf = ATH_ANT_DIV_COMB_LNA1_MINUS_LNA2;
1113 antcomb->first_quick_scan_conf =
1114 ATH_ANT_DIV_COMB_LNA1_PLUS_LNA2;
1115 antcomb->second_quick_scan_conf = ATH_ANT_DIV_COMB_LNA2;
1116 break;
1117 case (0x21): /* LNA1 LNA2 */
1118 antcomb->main_conf = ATH_ANT_DIV_COMB_LNA2;
1119 antcomb->first_quick_scan_conf =
1120 ATH_ANT_DIV_COMB_LNA1_MINUS_LNA2;
1121 antcomb->second_quick_scan_conf =
1122 ATH_ANT_DIV_COMB_LNA1_PLUS_LNA2;
1123 break;
1124 case (0x12): /* LNA2 LNA1 */
1125 antcomb->main_conf = ATH_ANT_DIV_COMB_LNA1;
1126 antcomb->first_quick_scan_conf =
1127 ATH_ANT_DIV_COMB_LNA1_MINUS_LNA2;
1128 antcomb->second_quick_scan_conf =
1129 ATH_ANT_DIV_COMB_LNA1_PLUS_LNA2;
1130 break;
1131 case (0x13): /* LNA2 A+B */
1132 antcomb->main_conf = ATH_ANT_DIV_COMB_LNA1_PLUS_LNA2;
1133 antcomb->first_quick_scan_conf =
1134 ATH_ANT_DIV_COMB_LNA1_MINUS_LNA2;
1135 antcomb->second_quick_scan_conf = ATH_ANT_DIV_COMB_LNA1;
1136 break;
1137 case (0x23): /* LNA1 A+B */
1138 antcomb->main_conf = ATH_ANT_DIV_COMB_LNA1_PLUS_LNA2;
1139 antcomb->first_quick_scan_conf =
1140 ATH_ANT_DIV_COMB_LNA1_MINUS_LNA2;
1141 antcomb->second_quick_scan_conf = ATH_ANT_DIV_COMB_LNA2;
1142 break;
1143 default:
1144 break;
1145 }
1146}
1147
1148static void ath_select_ant_div_from_quick_scan(struct ath_ant_comb *antcomb,
1149 struct ath_hw_antcomb_conf *div_ant_conf,
1150 int main_rssi_avg, int alt_rssi_avg,
1151 int alt_ratio)
1152{
1153 /* alt_good */
1154 switch (antcomb->quick_scan_cnt) {
1155 case 0:
1156 /* set alt to main, and alt to first conf */
1157 div_ant_conf->main_lna_conf = antcomb->main_conf;
1158 div_ant_conf->alt_lna_conf = antcomb->first_quick_scan_conf;
1159 break;
1160 case 1:
1161 /* set alt to main, and alt to first conf */
1162 div_ant_conf->main_lna_conf = antcomb->main_conf;
1163 div_ant_conf->alt_lna_conf = antcomb->second_quick_scan_conf;
1164 antcomb->rssi_first = main_rssi_avg;
1165 antcomb->rssi_second = alt_rssi_avg;
1166
1167 if (antcomb->main_conf == ATH_ANT_DIV_COMB_LNA1) {
1168 /* main is LNA1 */
1169 if (ath_is_alt_ant_ratio_better(alt_ratio,
1170 ATH_ANT_DIV_COMB_LNA1_DELTA_HI,
1171 ATH_ANT_DIV_COMB_LNA1_DELTA_LOW,
1172 main_rssi_avg, alt_rssi_avg,
1173 antcomb->total_pkt_count))
1174 antcomb->first_ratio = true;
1175 else
1176 antcomb->first_ratio = false;
1177 } else if (antcomb->main_conf == ATH_ANT_DIV_COMB_LNA2) {
1178 if (ath_is_alt_ant_ratio_better(alt_ratio,
1179 ATH_ANT_DIV_COMB_LNA1_DELTA_MID,
1180 ATH_ANT_DIV_COMB_LNA1_DELTA_LOW,
1181 main_rssi_avg, alt_rssi_avg,
1182 antcomb->total_pkt_count))
1183 antcomb->first_ratio = true;
1184 else
1185 antcomb->first_ratio = false;
1186 } else {
1187 if ((((alt_ratio >= ATH_ANT_DIV_COMB_ALT_ANT_RATIO2) &&
1188 (alt_rssi_avg > main_rssi_avg +
1189 ATH_ANT_DIV_COMB_LNA1_DELTA_HI)) ||
1190 (alt_rssi_avg > main_rssi_avg)) &&
1191 (antcomb->total_pkt_count > 50))
1192 antcomb->first_ratio = true;
1193 else
1194 antcomb->first_ratio = false;
1195 }
1196 break;
1197 case 2:
1198 antcomb->alt_good = false;
1199 antcomb->scan_not_start = false;
1200 antcomb->scan = false;
1201 antcomb->rssi_first = main_rssi_avg;
1202 antcomb->rssi_third = alt_rssi_avg;
1203
1204 if (antcomb->second_quick_scan_conf == ATH_ANT_DIV_COMB_LNA1)
1205 antcomb->rssi_lna1 = alt_rssi_avg;
1206 else if (antcomb->second_quick_scan_conf ==
1207 ATH_ANT_DIV_COMB_LNA2)
1208 antcomb->rssi_lna2 = alt_rssi_avg;
1209 else if (antcomb->second_quick_scan_conf ==
1210 ATH_ANT_DIV_COMB_LNA1_PLUS_LNA2) {
1211 if (antcomb->main_conf == ATH_ANT_DIV_COMB_LNA2)
1212 antcomb->rssi_lna2 = main_rssi_avg;
1213 else if (antcomb->main_conf == ATH_ANT_DIV_COMB_LNA1)
1214 antcomb->rssi_lna1 = main_rssi_avg;
1215 }
1216
1217 if (antcomb->rssi_lna2 > antcomb->rssi_lna1 +
1218 ATH_ANT_DIV_COMB_LNA1_LNA2_SWITCH_DELTA)
1219 div_ant_conf->main_lna_conf = ATH_ANT_DIV_COMB_LNA2;
1220 else
1221 div_ant_conf->main_lna_conf = ATH_ANT_DIV_COMB_LNA1;
1222
1223 if (antcomb->main_conf == ATH_ANT_DIV_COMB_LNA1) {
1224 if (ath_is_alt_ant_ratio_better(alt_ratio,
1225 ATH_ANT_DIV_COMB_LNA1_DELTA_HI,
1226 ATH_ANT_DIV_COMB_LNA1_DELTA_LOW,
1227 main_rssi_avg, alt_rssi_avg,
1228 antcomb->total_pkt_count))
1229 antcomb->second_ratio = true;
1230 else
1231 antcomb->second_ratio = false;
1232 } else if (antcomb->main_conf == ATH_ANT_DIV_COMB_LNA2) {
1233 if (ath_is_alt_ant_ratio_better(alt_ratio,
1234 ATH_ANT_DIV_COMB_LNA1_DELTA_MID,
1235 ATH_ANT_DIV_COMB_LNA1_DELTA_LOW,
1236 main_rssi_avg, alt_rssi_avg,
1237 antcomb->total_pkt_count))
1238 antcomb->second_ratio = true;
1239 else
1240 antcomb->second_ratio = false;
1241 } else {
1242 if ((((alt_ratio >= ATH_ANT_DIV_COMB_ALT_ANT_RATIO2) &&
1243 (alt_rssi_avg > main_rssi_avg +
1244 ATH_ANT_DIV_COMB_LNA1_DELTA_HI)) ||
1245 (alt_rssi_avg > main_rssi_avg)) &&
1246 (antcomb->total_pkt_count > 50))
1247 antcomb->second_ratio = true;
1248 else
1249 antcomb->second_ratio = false;
1250 }
1251
1252 /* set alt to the conf with maximun ratio */
1253 if (antcomb->first_ratio && antcomb->second_ratio) {
1254 if (antcomb->rssi_second > antcomb->rssi_third) {
1255 /* first alt*/
1256 if ((antcomb->first_quick_scan_conf ==
1257 ATH_ANT_DIV_COMB_LNA1) ||
1258 (antcomb->first_quick_scan_conf ==
1259 ATH_ANT_DIV_COMB_LNA2))
1260 /* Set alt LNA1 or LNA2*/
1261 if (div_ant_conf->main_lna_conf ==
1262 ATH_ANT_DIV_COMB_LNA2)
1263 div_ant_conf->alt_lna_conf =
1264 ATH_ANT_DIV_COMB_LNA1;
1265 else
1266 div_ant_conf->alt_lna_conf =
1267 ATH_ANT_DIV_COMB_LNA2;
1268 else
1269 /* Set alt to A+B or A-B */
1270 div_ant_conf->alt_lna_conf =
1271 antcomb->first_quick_scan_conf;
1272 } else if ((antcomb->second_quick_scan_conf ==
1273 ATH_ANT_DIV_COMB_LNA1) ||
1274 (antcomb->second_quick_scan_conf ==
1275 ATH_ANT_DIV_COMB_LNA2)) {
1276 /* Set alt LNA1 or LNA2 */
1277 if (div_ant_conf->main_lna_conf ==
1278 ATH_ANT_DIV_COMB_LNA2)
1279 div_ant_conf->alt_lna_conf =
1280 ATH_ANT_DIV_COMB_LNA1;
1281 else
1282 div_ant_conf->alt_lna_conf =
1283 ATH_ANT_DIV_COMB_LNA2;
1284 } else {
1285 /* Set alt to A+B or A-B */
1286 div_ant_conf->alt_lna_conf =
1287 antcomb->second_quick_scan_conf;
1288 }
1289 } else if (antcomb->first_ratio) {
1290 /* first alt */
1291 if ((antcomb->first_quick_scan_conf ==
1292 ATH_ANT_DIV_COMB_LNA1) ||
1293 (antcomb->first_quick_scan_conf ==
1294 ATH_ANT_DIV_COMB_LNA2))
1295 /* Set alt LNA1 or LNA2 */
1296 if (div_ant_conf->main_lna_conf ==
1297 ATH_ANT_DIV_COMB_LNA2)
1298 div_ant_conf->alt_lna_conf =
1299 ATH_ANT_DIV_COMB_LNA1;
1300 else
1301 div_ant_conf->alt_lna_conf =
1302 ATH_ANT_DIV_COMB_LNA2;
1303 else
1304 /* Set alt to A+B or A-B */
1305 div_ant_conf->alt_lna_conf =
1306 antcomb->first_quick_scan_conf;
1307 } else if (antcomb->second_ratio) {
1308 /* second alt */
1309 if ((antcomb->second_quick_scan_conf ==
1310 ATH_ANT_DIV_COMB_LNA1) ||
1311 (antcomb->second_quick_scan_conf ==
1312 ATH_ANT_DIV_COMB_LNA2))
1313 /* Set alt LNA1 or LNA2 */
1314 if (div_ant_conf->main_lna_conf ==
1315 ATH_ANT_DIV_COMB_LNA2)
1316 div_ant_conf->alt_lna_conf =
1317 ATH_ANT_DIV_COMB_LNA1;
1318 else
1319 div_ant_conf->alt_lna_conf =
1320 ATH_ANT_DIV_COMB_LNA2;
1321 else
1322 /* Set alt to A+B or A-B */
1323 div_ant_conf->alt_lna_conf =
1324 antcomb->second_quick_scan_conf;
1325 } else {
1326 /* main is largest */
1327 if ((antcomb->main_conf == ATH_ANT_DIV_COMB_LNA1) ||
1328 (antcomb->main_conf == ATH_ANT_DIV_COMB_LNA2))
1329 /* Set alt LNA1 or LNA2 */
1330 if (div_ant_conf->main_lna_conf ==
1331 ATH_ANT_DIV_COMB_LNA2)
1332 div_ant_conf->alt_lna_conf =
1333 ATH_ANT_DIV_COMB_LNA1;
1334 else
1335 div_ant_conf->alt_lna_conf =
1336 ATH_ANT_DIV_COMB_LNA2;
1337 else
1338 /* Set alt to A+B or A-B */
1339 div_ant_conf->alt_lna_conf = antcomb->main_conf;
1340 }
1341 break;
1342 default:
1343 break;
1344 }
1345}
1346
9bad82b8 1347static void ath_ant_div_conf_fast_divbias(struct ath_hw_antcomb_conf *ant_conf)
102885a5
VT
1348{
1349 /* Adjust the fast_div_bias based on main and alt lna conf */
1350 switch ((ant_conf->main_lna_conf << 4) | ant_conf->alt_lna_conf) {
1351 case (0x01): /* A-B LNA2 */
1352 ant_conf->fast_div_bias = 0x3b;
1353 break;
1354 case (0x02): /* A-B LNA1 */
1355 ant_conf->fast_div_bias = 0x3d;
1356 break;
1357 case (0x03): /* A-B A+B */
1358 ant_conf->fast_div_bias = 0x1;
1359 break;
1360 case (0x10): /* LNA2 A-B */
1361 ant_conf->fast_div_bias = 0x7;
1362 break;
1363 case (0x12): /* LNA2 LNA1 */
1364 ant_conf->fast_div_bias = 0x2;
1365 break;
1366 case (0x13): /* LNA2 A+B */
1367 ant_conf->fast_div_bias = 0x7;
1368 break;
1369 case (0x20): /* LNA1 A-B */
1370 ant_conf->fast_div_bias = 0x6;
1371 break;
1372 case (0x21): /* LNA1 LNA2 */
1373 ant_conf->fast_div_bias = 0x0;
1374 break;
1375 case (0x23): /* LNA1 A+B */
1376 ant_conf->fast_div_bias = 0x6;
1377 break;
1378 case (0x30): /* A+B A-B */
1379 ant_conf->fast_div_bias = 0x1;
1380 break;
1381 case (0x31): /* A+B LNA2 */
1382 ant_conf->fast_div_bias = 0x3b;
1383 break;
1384 case (0x32): /* A+B LNA1 */
1385 ant_conf->fast_div_bias = 0x3d;
1386 break;
1387 default:
1388 break;
1389 }
1390}
1391
1392/* Antenna diversity and combining */
1393static void ath_ant_comb_scan(struct ath_softc *sc, struct ath_rx_status *rs)
1394{
1395 struct ath_hw_antcomb_conf div_ant_conf;
1396 struct ath_ant_comb *antcomb = &sc->ant_comb;
1397 int alt_ratio = 0, alt_rssi_avg = 0, main_rssi_avg = 0, curr_alt_set;
1398 int curr_main_set, curr_bias;
1399 int main_rssi = rs->rs_rssi_ctl0;
1400 int alt_rssi = rs->rs_rssi_ctl1;
1401 int rx_ant_conf, main_ant_conf;
1402 bool short_scan = false;
1403
1404 rx_ant_conf = (rs->rs_rssi_ctl2 >> ATH_ANT_RX_CURRENT_SHIFT) &
1405 ATH_ANT_RX_MASK;
1406 main_ant_conf = (rs->rs_rssi_ctl2 >> ATH_ANT_RX_MAIN_SHIFT) &
1407 ATH_ANT_RX_MASK;
1408
1409 /* Record packet only when alt_rssi is positive */
1410 if (alt_rssi > 0) {
1411 antcomb->total_pkt_count++;
1412 antcomb->main_total_rssi += main_rssi;
1413 antcomb->alt_total_rssi += alt_rssi;
1414 if (main_ant_conf == rx_ant_conf)
1415 antcomb->main_recv_cnt++;
1416 else
1417 antcomb->alt_recv_cnt++;
1418 }
1419
1420 /* Short scan check */
1421 if (antcomb->scan && antcomb->alt_good) {
1422 if (time_after(jiffies, antcomb->scan_start_time +
1423 msecs_to_jiffies(ATH_ANT_DIV_COMB_SHORT_SCAN_INTR)))
1424 short_scan = true;
1425 else
1426 if (antcomb->total_pkt_count ==
1427 ATH_ANT_DIV_COMB_SHORT_SCAN_PKTCOUNT) {
1428 alt_ratio = ((antcomb->alt_recv_cnt * 100) /
1429 antcomb->total_pkt_count);
1430 if (alt_ratio < ATH_ANT_DIV_COMB_ALT_ANT_RATIO)
1431 short_scan = true;
1432 }
1433 }
1434
1435 if (((antcomb->total_pkt_count < ATH_ANT_DIV_COMB_MAX_PKTCOUNT) ||
1436 rs->rs_moreaggr) && !short_scan)
1437 return;
1438
1439 if (antcomb->total_pkt_count) {
1440 alt_ratio = ((antcomb->alt_recv_cnt * 100) /
1441 antcomb->total_pkt_count);
1442 main_rssi_avg = (antcomb->main_total_rssi /
1443 antcomb->total_pkt_count);
1444 alt_rssi_avg = (antcomb->alt_total_rssi /
1445 antcomb->total_pkt_count);
1446 }
1447
1448
1449 ath9k_hw_antdiv_comb_conf_get(sc->sc_ah, &div_ant_conf);
1450 curr_alt_set = div_ant_conf.alt_lna_conf;
1451 curr_main_set = div_ant_conf.main_lna_conf;
1452 curr_bias = div_ant_conf.fast_div_bias;
1453
1454 antcomb->count++;
1455
1456 if (antcomb->count == ATH_ANT_DIV_COMB_MAX_COUNT) {
1457 if (alt_ratio > ATH_ANT_DIV_COMB_ALT_ANT_RATIO) {
1458 ath_lnaconf_alt_good_scan(antcomb, div_ant_conf,
1459 main_rssi_avg);
1460 antcomb->alt_good = true;
1461 } else {
1462 antcomb->alt_good = false;
1463 }
1464
1465 antcomb->count = 0;
1466 antcomb->scan = true;
1467 antcomb->scan_not_start = true;
1468 }
1469
1470 if (!antcomb->scan) {
1471 if (alt_ratio > ATH_ANT_DIV_COMB_ALT_ANT_RATIO) {
1472 if (curr_alt_set == ATH_ANT_DIV_COMB_LNA2) {
1473 /* Switch main and alt LNA */
1474 div_ant_conf.main_lna_conf =
1475 ATH_ANT_DIV_COMB_LNA2;
1476 div_ant_conf.alt_lna_conf =
1477 ATH_ANT_DIV_COMB_LNA1;
1478 } else if (curr_alt_set == ATH_ANT_DIV_COMB_LNA1) {
1479 div_ant_conf.main_lna_conf =
1480 ATH_ANT_DIV_COMB_LNA1;
1481 div_ant_conf.alt_lna_conf =
1482 ATH_ANT_DIV_COMB_LNA2;
1483 }
1484
1485 goto div_comb_done;
1486 } else if ((curr_alt_set != ATH_ANT_DIV_COMB_LNA1) &&
1487 (curr_alt_set != ATH_ANT_DIV_COMB_LNA2)) {
1488 /* Set alt to another LNA */
1489 if (curr_main_set == ATH_ANT_DIV_COMB_LNA2)
1490 div_ant_conf.alt_lna_conf =
1491 ATH_ANT_DIV_COMB_LNA1;
1492 else if (curr_main_set == ATH_ANT_DIV_COMB_LNA1)
1493 div_ant_conf.alt_lna_conf =
1494 ATH_ANT_DIV_COMB_LNA2;
1495
1496 goto div_comb_done;
1497 }
1498
1499 if ((alt_rssi_avg < (main_rssi_avg +
1500 ATH_ANT_DIV_COMB_LNA1_LNA2_DELTA)))
1501 goto div_comb_done;
1502 }
1503
1504 if (!antcomb->scan_not_start) {
1505 switch (curr_alt_set) {
1506 case ATH_ANT_DIV_COMB_LNA2:
1507 antcomb->rssi_lna2 = alt_rssi_avg;
1508 antcomb->rssi_lna1 = main_rssi_avg;
1509 antcomb->scan = true;
1510 /* set to A+B */
1511 div_ant_conf.main_lna_conf =
1512 ATH_ANT_DIV_COMB_LNA1;
1513 div_ant_conf.alt_lna_conf =
1514 ATH_ANT_DIV_COMB_LNA1_PLUS_LNA2;
1515 break;
1516 case ATH_ANT_DIV_COMB_LNA1:
1517 antcomb->rssi_lna1 = alt_rssi_avg;
1518 antcomb->rssi_lna2 = main_rssi_avg;
1519 antcomb->scan = true;
1520 /* set to A+B */
1521 div_ant_conf.main_lna_conf = ATH_ANT_DIV_COMB_LNA2;
1522 div_ant_conf.alt_lna_conf =
1523 ATH_ANT_DIV_COMB_LNA1_PLUS_LNA2;
1524 break;
1525 case ATH_ANT_DIV_COMB_LNA1_PLUS_LNA2:
1526 antcomb->rssi_add = alt_rssi_avg;
1527 antcomb->scan = true;
1528 /* set to A-B */
1529 div_ant_conf.alt_lna_conf =
1530 ATH_ANT_DIV_COMB_LNA1_MINUS_LNA2;
1531 break;
1532 case ATH_ANT_DIV_COMB_LNA1_MINUS_LNA2:
1533 antcomb->rssi_sub = alt_rssi_avg;
1534 antcomb->scan = false;
1535 if (antcomb->rssi_lna2 >
1536 (antcomb->rssi_lna1 +
1537 ATH_ANT_DIV_COMB_LNA1_LNA2_SWITCH_DELTA)) {
1538 /* use LNA2 as main LNA */
1539 if ((antcomb->rssi_add > antcomb->rssi_lna1) &&
1540 (antcomb->rssi_add > antcomb->rssi_sub)) {
1541 /* set to A+B */
1542 div_ant_conf.main_lna_conf =
1543 ATH_ANT_DIV_COMB_LNA2;
1544 div_ant_conf.alt_lna_conf =
1545 ATH_ANT_DIV_COMB_LNA1_PLUS_LNA2;
1546 } else if (antcomb->rssi_sub >
1547 antcomb->rssi_lna1) {
1548 /* set to A-B */
1549 div_ant_conf.main_lna_conf =
1550 ATH_ANT_DIV_COMB_LNA2;
1551 div_ant_conf.alt_lna_conf =
1552 ATH_ANT_DIV_COMB_LNA1_MINUS_LNA2;
1553 } else {
1554 /* set to LNA1 */
1555 div_ant_conf.main_lna_conf =
1556 ATH_ANT_DIV_COMB_LNA2;
1557 div_ant_conf.alt_lna_conf =
1558 ATH_ANT_DIV_COMB_LNA1;
1559 }
1560 } else {
1561 /* use LNA1 as main LNA */
1562 if ((antcomb->rssi_add > antcomb->rssi_lna2) &&
1563 (antcomb->rssi_add > antcomb->rssi_sub)) {
1564 /* set to A+B */
1565 div_ant_conf.main_lna_conf =
1566 ATH_ANT_DIV_COMB_LNA1;
1567 div_ant_conf.alt_lna_conf =
1568 ATH_ANT_DIV_COMB_LNA1_PLUS_LNA2;
1569 } else if (antcomb->rssi_sub >
1570 antcomb->rssi_lna1) {
1571 /* set to A-B */
1572 div_ant_conf.main_lna_conf =
1573 ATH_ANT_DIV_COMB_LNA1;
1574 div_ant_conf.alt_lna_conf =
1575 ATH_ANT_DIV_COMB_LNA1_MINUS_LNA2;
1576 } else {
1577 /* set to LNA2 */
1578 div_ant_conf.main_lna_conf =
1579 ATH_ANT_DIV_COMB_LNA1;
1580 div_ant_conf.alt_lna_conf =
1581 ATH_ANT_DIV_COMB_LNA2;
1582 }
1583 }
1584 break;
1585 default:
1586 break;
1587 }
1588 } else {
1589 if (!antcomb->alt_good) {
1590 antcomb->scan_not_start = false;
1591 /* Set alt to another LNA */
1592 if (curr_main_set == ATH_ANT_DIV_COMB_LNA2) {
1593 div_ant_conf.main_lna_conf =
1594 ATH_ANT_DIV_COMB_LNA2;
1595 div_ant_conf.alt_lna_conf =
1596 ATH_ANT_DIV_COMB_LNA1;
1597 } else if (curr_main_set == ATH_ANT_DIV_COMB_LNA1) {
1598 div_ant_conf.main_lna_conf =
1599 ATH_ANT_DIV_COMB_LNA1;
1600 div_ant_conf.alt_lna_conf =
1601 ATH_ANT_DIV_COMB_LNA2;
1602 }
1603 goto div_comb_done;
1604 }
1605 }
1606
1607 ath_select_ant_div_from_quick_scan(antcomb, &div_ant_conf,
1608 main_rssi_avg, alt_rssi_avg,
1609 alt_ratio);
1610
1611 antcomb->quick_scan_cnt++;
1612
1613div_comb_done:
1614 ath_ant_div_conf_fast_divbias(&div_ant_conf);
1615
1616 ath9k_hw_antdiv_comb_conf_set(sc->sc_ah, &div_ant_conf);
1617
1618 antcomb->scan_start_time = jiffies;
1619 antcomb->total_pkt_count = 0;
1620 antcomb->main_total_rssi = 0;
1621 antcomb->alt_total_rssi = 0;
1622 antcomb->main_recv_cnt = 0;
1623 antcomb->alt_recv_cnt = 0;
1624}
1625
b5c80475
FF
1626int ath_rx_tasklet(struct ath_softc *sc, int flush, bool hp)
1627{
1628 struct ath_buf *bf;
cb71d9ba 1629 struct sk_buff *skb = NULL, *requeue_skb;
5ca42627 1630 struct ieee80211_rx_status *rxs;
cbe61d8a 1631 struct ath_hw *ah = sc->sc_ah;
27c51f1a 1632 struct ath_common *common = ath9k_hw_common(ah);
b4afffc0
LR
1633 /*
1634 * The hw can techncically differ from common->hw when using ath9k
1635 * virtual wiphy so to account for that we iterate over the active
1636 * wiphys and find the appropriate wiphy and therefore hw.
1637 */
1638 struct ieee80211_hw *hw = NULL;
be0418ad 1639 struct ieee80211_hdr *hdr;
c9b14170 1640 int retval;
be0418ad 1641 bool decrypt_error = false;
29bffa96 1642 struct ath_rx_status rs;
b5c80475
FF
1643 enum ath9k_rx_qtype qtype;
1644 bool edma = !!(ah->caps.hw_caps & ATH9K_HW_CAP_EDMA);
1645 int dma_type;
5c6dd921 1646 u8 rx_status_len = ah->caps.rx_status_len;
a6d2055b
FF
1647 u64 tsf = 0;
1648 u32 tsf_lower = 0;
8ab2cd09 1649 unsigned long flags;
be0418ad 1650
b5c80475 1651 if (edma)
b5c80475 1652 dma_type = DMA_BIDIRECTIONAL;
56824223
ML
1653 else
1654 dma_type = DMA_FROM_DEVICE;
b5c80475
FF
1655
1656 qtype = hp ? ATH9K_RX_QUEUE_HP : ATH9K_RX_QUEUE_LP;
b77f483f 1657 spin_lock_bh(&sc->rx.rxbuflock);
f078f209 1658
a6d2055b
FF
1659 tsf = ath9k_hw_gettsf64(ah);
1660 tsf_lower = tsf & 0xffffffff;
1661
f078f209
LR
1662 do {
1663 /* If handling rx interrupt and flush is in progress => exit */
98deeea0 1664 if ((sc->sc_flags & SC_OP_RXFLUSH) && (flush == 0))
f078f209
LR
1665 break;
1666
29bffa96 1667 memset(&rs, 0, sizeof(rs));
b5c80475
FF
1668 if (edma)
1669 bf = ath_edma_get_next_rx_buf(sc, &rs, qtype);
1670 else
1671 bf = ath_get_next_rx_buf(sc, &rs);
f078f209 1672
b5c80475
FF
1673 if (!bf)
1674 break;
f078f209 1675
f078f209 1676 skb = bf->bf_mpdu;
be0418ad 1677 if (!skb)
f078f209 1678 continue;
f078f209 1679
5c6dd921 1680 hdr = (struct ieee80211_hdr *) (skb->data + rx_status_len);
5ca42627
LR
1681 rxs = IEEE80211_SKB_RXCB(skb);
1682
b4afffc0
LR
1683 hw = ath_get_virt_hw(sc, hdr);
1684
29bffa96 1685 ath_debug_stat_rx(sc, &rs);
1395d3f0 1686
f078f209 1687 /*
be0418ad
S
1688 * If we're asked to flush receive queue, directly
1689 * chain it back at the queue without processing it.
f078f209 1690 */
be0418ad 1691 if (flush)
cb71d9ba 1692 goto requeue;
f078f209 1693
c8f3b721
JF
1694 retval = ath9k_rx_skb_preprocess(common, hw, hdr, &rs,
1695 rxs, &decrypt_error);
1696 if (retval)
1697 goto requeue;
1698
a6d2055b
FF
1699 rxs->mactime = (tsf & ~0xffffffffULL) | rs.rs_tstamp;
1700 if (rs.rs_tstamp > tsf_lower &&
1701 unlikely(rs.rs_tstamp - tsf_lower > 0x10000000))
1702 rxs->mactime -= 0x100000000ULL;
1703
1704 if (rs.rs_tstamp < tsf_lower &&
1705 unlikely(tsf_lower - rs.rs_tstamp > 0x10000000))
1706 rxs->mactime += 0x100000000ULL;
1707
cb71d9ba
LR
1708 /* Ensure we always have an skb to requeue once we are done
1709 * processing the current buffer's skb */
cc861f74 1710 requeue_skb = ath_rxbuf_alloc(common, common->rx_bufsize, GFP_ATOMIC);
cb71d9ba
LR
1711
1712 /* If there is no memory we ignore the current RX'd frame,
1713 * tell hardware it can give us a new frame using the old
b77f483f 1714 * skb and put it at the tail of the sc->rx.rxbuf list for
cb71d9ba
LR
1715 * processing. */
1716 if (!requeue_skb)
1717 goto requeue;
f078f209 1718
9bf9fca8 1719 /* Unmap the frame */
7da3c55c 1720 dma_unmap_single(sc->dev, bf->bf_buf_addr,
cc861f74 1721 common->rx_bufsize,
b5c80475 1722 dma_type);
f078f209 1723
b5c80475
FF
1724 skb_put(skb, rs.rs_datalen + ah->caps.rx_status_len);
1725 if (ah->caps.rx_status_len)
1726 skb_pull(skb, ah->caps.rx_status_len);
be0418ad 1727
d435700f
S
1728 ath9k_rx_skb_postprocess(common, skb, &rs,
1729 rxs, decrypt_error);
be0418ad 1730
cb71d9ba
LR
1731 /* We will now give hardware our shiny new allocated skb */
1732 bf->bf_mpdu = requeue_skb;
7da3c55c 1733 bf->bf_buf_addr = dma_map_single(sc->dev, requeue_skb->data,
cc861f74 1734 common->rx_bufsize,
b5c80475 1735 dma_type);
7da3c55c 1736 if (unlikely(dma_mapping_error(sc->dev,
f8316df1
LR
1737 bf->bf_buf_addr))) {
1738 dev_kfree_skb_any(requeue_skb);
1739 bf->bf_mpdu = NULL;
6cf9e995 1740 bf->bf_buf_addr = 0;
c46917bb
LR
1741 ath_print(common, ATH_DBG_FATAL,
1742 "dma_mapping_error() on RX\n");
5ca42627 1743 ath_rx_send_to_mac80211(hw, sc, skb, rxs);
f8316df1
LR
1744 break;
1745 }
f078f209
LR
1746
1747 /*
1748 * change the default rx antenna if rx diversity chooses the
1749 * other antenna 3 times in a row.
1750 */
29bffa96 1751 if (sc->rx.defant != rs.rs_antenna) {
b77f483f 1752 if (++sc->rx.rxotherant >= 3)
29bffa96 1753 ath_setdefantenna(sc, rs.rs_antenna);
f078f209 1754 } else {
b77f483f 1755 sc->rx.rxotherant = 0;
f078f209 1756 }
3cbb5dd7 1757
8ab2cd09 1758 spin_lock_irqsave(&sc->sc_pm_lock, flags);
ededf1f8
VT
1759 if (unlikely(ath9k_check_auto_sleep(sc) ||
1760 (sc->ps_flags & (PS_WAIT_FOR_BEACON |
1761 PS_WAIT_FOR_CAB |
1762 PS_WAIT_FOR_PSPOLL_DATA))))
cc65965c 1763 ath_rx_ps(sc, skb);
8ab2cd09 1764 spin_unlock_irqrestore(&sc->sc_pm_lock, flags);
cc65965c 1765
102885a5
VT
1766 if (ah->caps.hw_caps & ATH9K_HW_CAP_ANT_DIV_COMB)
1767 ath_ant_comb_scan(sc, &rs);
1768
5ca42627 1769 ath_rx_send_to_mac80211(hw, sc, skb, rxs);
cc65965c 1770
cb71d9ba 1771requeue:
b5c80475
FF
1772 if (edma) {
1773 list_add_tail(&bf->list, &sc->rx.rxbuf);
1774 ath_rx_edma_buf_link(sc, qtype);
1775 } else {
1776 list_move_tail(&bf->list, &sc->rx.rxbuf);
1777 ath_rx_buf_link(sc, bf);
1778 }
be0418ad
S
1779 } while (1);
1780
b77f483f 1781 spin_unlock_bh(&sc->rx.rxbuflock);
f078f209
LR
1782
1783 return 0;
f078f209 1784}