2 * Copyright (c) 2008-2011 Atheros Communications Inc.
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.
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.
17 #include <linux/dma-mapping.h>
19 #include "ar9003_mac.h"
21 #define SKB_CB_ATHBUF(__skb) (*((struct ath_rxbuf **)__skb->cb))
23 static inline bool ath9k_check_auto_sleep(struct ath_softc *sc)
25 return sc->ps_enabled &&
26 (sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_AUTOSLEEP);
30 * Setup and link descriptors.
32 * 11N: we can no longer afford to self link the last descriptor.
33 * MAC acknowledges BA status as long as it copies frames to host
34 * buffer (or rx fifo). This can incorrectly acknowledge packets
35 * to a sender if last desc is self-linked.
37 static void ath_rx_buf_link(struct ath_softc *sc, struct ath_rxbuf *bf,
40 struct ath_hw *ah = sc->sc_ah;
41 struct ath_common *common = ath9k_hw_common(ah);
46 ds->ds_link = 0; /* link to null */
47 ds->ds_data = bf->bf_buf_addr;
49 /* virtual addr of the beginning of the buffer. */
52 ds->ds_vdata = skb->data;
55 * setup rx descriptors. The rx_bufsize here tells the hardware
56 * how much data it can DMA to us and that we are prepared
59 ath9k_hw_setuprxdesc(ah, ds,
64 *sc->rx.rxlink = bf->bf_daddr;
66 ath9k_hw_putrxbuf(ah, bf->bf_daddr);
68 sc->rx.rxlink = &ds->ds_link;
71 static void ath_rx_buf_relink(struct ath_softc *sc, struct ath_rxbuf *bf,
75 ath_rx_buf_link(sc, sc->rx.buf_hold, flush);
80 static void ath_setdefantenna(struct ath_softc *sc, u32 antenna)
82 /* XXX block beacon interrupts */
83 ath9k_hw_setantenna(sc->sc_ah, antenna);
84 sc->rx.defant = antenna;
85 sc->rx.rxotherant = 0;
88 static void ath_opmode_init(struct ath_softc *sc)
90 struct ath_hw *ah = sc->sc_ah;
91 struct ath_common *common = ath9k_hw_common(ah);
95 /* configure rx filter */
96 rfilt = ath_calcrxfilter(sc);
97 ath9k_hw_setrxfilter(ah, rfilt);
99 /* configure bssid mask */
100 ath_hw_setbssidmask(common);
102 /* configure operational mode */
103 ath9k_hw_setopmode(ah);
105 /* calculate and install multicast filter */
106 mfilt[0] = mfilt[1] = ~0;
107 ath9k_hw_setmcastfilter(ah, mfilt[0], mfilt[1]);
110 static bool ath_rx_edma_buf_link(struct ath_softc *sc,
111 enum ath9k_rx_qtype qtype)
113 struct ath_hw *ah = sc->sc_ah;
114 struct ath_rx_edma *rx_edma;
116 struct ath_rxbuf *bf;
118 rx_edma = &sc->rx.rx_edma[qtype];
119 if (skb_queue_len(&rx_edma->rx_fifo) >= rx_edma->rx_fifo_hwsize)
122 bf = list_first_entry(&sc->rx.rxbuf, struct ath_rxbuf, list);
123 list_del_init(&bf->list);
127 memset(skb->data, 0, ah->caps.rx_status_len);
128 dma_sync_single_for_device(sc->dev, bf->bf_buf_addr,
129 ah->caps.rx_status_len, DMA_TO_DEVICE);
131 SKB_CB_ATHBUF(skb) = bf;
132 ath9k_hw_addrxbuf_edma(ah, bf->bf_buf_addr, qtype);
133 __skb_queue_tail(&rx_edma->rx_fifo, skb);
138 static void ath_rx_addbuffer_edma(struct ath_softc *sc,
139 enum ath9k_rx_qtype qtype)
141 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
142 struct ath_rxbuf *bf, *tbf;
144 if (list_empty(&sc->rx.rxbuf)) {
145 ath_dbg(common, QUEUE, "No free rx buf available\n");
149 list_for_each_entry_safe(bf, tbf, &sc->rx.rxbuf, list)
150 if (!ath_rx_edma_buf_link(sc, qtype))
155 static void ath_rx_remove_buffer(struct ath_softc *sc,
156 enum ath9k_rx_qtype qtype)
158 struct ath_rxbuf *bf;
159 struct ath_rx_edma *rx_edma;
162 rx_edma = &sc->rx.rx_edma[qtype];
164 while ((skb = __skb_dequeue(&rx_edma->rx_fifo)) != NULL) {
165 bf = SKB_CB_ATHBUF(skb);
167 list_add_tail(&bf->list, &sc->rx.rxbuf);
171 static void ath_rx_edma_cleanup(struct ath_softc *sc)
173 struct ath_hw *ah = sc->sc_ah;
174 struct ath_common *common = ath9k_hw_common(ah);
175 struct ath_rxbuf *bf;
177 ath_rx_remove_buffer(sc, ATH9K_RX_QUEUE_LP);
178 ath_rx_remove_buffer(sc, ATH9K_RX_QUEUE_HP);
180 list_for_each_entry(bf, &sc->rx.rxbuf, list) {
182 dma_unmap_single(sc->dev, bf->bf_buf_addr,
185 dev_kfree_skb_any(bf->bf_mpdu);
192 static void ath_rx_edma_init_queue(struct ath_rx_edma *rx_edma, int size)
194 __skb_queue_head_init(&rx_edma->rx_fifo);
195 rx_edma->rx_fifo_hwsize = size;
198 static int ath_rx_edma_init(struct ath_softc *sc, int nbufs)
200 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
201 struct ath_hw *ah = sc->sc_ah;
203 struct ath_rxbuf *bf;
207 ath9k_hw_set_rx_bufsize(ah, common->rx_bufsize -
208 ah->caps.rx_status_len);
210 ath_rx_edma_init_queue(&sc->rx.rx_edma[ATH9K_RX_QUEUE_LP],
211 ah->caps.rx_lp_qdepth);
212 ath_rx_edma_init_queue(&sc->rx.rx_edma[ATH9K_RX_QUEUE_HP],
213 ah->caps.rx_hp_qdepth);
215 size = sizeof(struct ath_rxbuf) * nbufs;
216 bf = devm_kzalloc(sc->dev, size, GFP_KERNEL);
220 INIT_LIST_HEAD(&sc->rx.rxbuf);
222 for (i = 0; i < nbufs; i++, bf++) {
223 skb = ath_rxbuf_alloc(common, common->rx_bufsize, GFP_KERNEL);
229 memset(skb->data, 0, common->rx_bufsize);
232 bf->bf_buf_addr = dma_map_single(sc->dev, skb->data,
235 if (unlikely(dma_mapping_error(sc->dev,
237 dev_kfree_skb_any(skb);
241 "dma_mapping_error() on RX init\n");
246 list_add_tail(&bf->list, &sc->rx.rxbuf);
252 ath_rx_edma_cleanup(sc);
256 static void ath_edma_start_recv(struct ath_softc *sc)
258 ath9k_hw_rxena(sc->sc_ah);
259 ath_rx_addbuffer_edma(sc, ATH9K_RX_QUEUE_HP);
260 ath_rx_addbuffer_edma(sc, ATH9K_RX_QUEUE_LP);
262 ath9k_hw_startpcureceive(sc->sc_ah, sc->cur_chan->offchannel);
265 static void ath_edma_stop_recv(struct ath_softc *sc)
267 ath_rx_remove_buffer(sc, ATH9K_RX_QUEUE_HP);
268 ath_rx_remove_buffer(sc, ATH9K_RX_QUEUE_LP);
271 int ath_rx_init(struct ath_softc *sc, int nbufs)
273 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
275 struct ath_rxbuf *bf;
278 spin_lock_init(&sc->sc_pcu_lock);
280 common->rx_bufsize = IEEE80211_MAX_MPDU_LEN / 2 +
281 sc->sc_ah->caps.rx_status_len;
283 if (sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_EDMA)
284 return ath_rx_edma_init(sc, nbufs);
286 ath_dbg(common, CONFIG, "cachelsz %u rxbufsize %u\n",
287 common->cachelsz, common->rx_bufsize);
289 /* Initialize rx descriptors */
291 error = ath_descdma_setup(sc, &sc->rx.rxdma, &sc->rx.rxbuf,
295 "failed to allocate rx descriptors: %d\n",
300 list_for_each_entry(bf, &sc->rx.rxbuf, list) {
301 skb = ath_rxbuf_alloc(common, common->rx_bufsize,
309 bf->bf_buf_addr = dma_map_single(sc->dev, skb->data,
312 if (unlikely(dma_mapping_error(sc->dev,
314 dev_kfree_skb_any(skb);
318 "dma_mapping_error() on RX init\n");
323 sc->rx.rxlink = NULL;
331 void ath_rx_cleanup(struct ath_softc *sc)
333 struct ath_hw *ah = sc->sc_ah;
334 struct ath_common *common = ath9k_hw_common(ah);
336 struct ath_rxbuf *bf;
338 if (sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_EDMA) {
339 ath_rx_edma_cleanup(sc);
343 list_for_each_entry(bf, &sc->rx.rxbuf, list) {
346 dma_unmap_single(sc->dev, bf->bf_buf_addr,
357 * Calculate the receive filter according to the
358 * operating mode and state:
360 * o always accept unicast, broadcast, and multicast traffic
361 * o maintain current state of phy error reception (the hal
362 * may enable phy error frames for noise immunity work)
363 * o probe request frames are accepted only when operating in
364 * hostap, adhoc, or monitor modes
365 * o enable promiscuous mode according to the interface state
367 * - when operating in adhoc mode so the 802.11 layer creates
368 * node table entries for peers,
369 * - when operating in station mode for collecting rssi data when
370 * the station is otherwise quiet, or
371 * - when operating as a repeater so we see repeater-sta beacons
375 u32 ath_calcrxfilter(struct ath_softc *sc)
377 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
380 if (IS_ENABLED(CONFIG_ATH9K_TX99))
383 rfilt = ATH9K_RX_FILTER_UCAST | ATH9K_RX_FILTER_BCAST
384 | ATH9K_RX_FILTER_MCAST;
386 /* if operating on a DFS channel, enable radar pulse detection */
387 if (sc->hw->conf.radar_enabled)
388 rfilt |= ATH9K_RX_FILTER_PHYRADAR | ATH9K_RX_FILTER_PHYERR;
390 spin_lock_bh(&sc->chan_lock);
392 if (sc->cur_chan->rxfilter & FIF_PROBE_REQ)
393 rfilt |= ATH9K_RX_FILTER_PROBEREQ;
395 if (sc->sc_ah->is_monitoring)
396 rfilt |= ATH9K_RX_FILTER_PROM;
398 if ((sc->cur_chan->rxfilter & FIF_CONTROL) ||
399 sc->sc_ah->dynack.enabled)
400 rfilt |= ATH9K_RX_FILTER_CONTROL;
402 if ((sc->sc_ah->opmode == NL80211_IFTYPE_STATION) &&
403 (sc->cur_chan->nvifs <= 1) &&
404 !(sc->cur_chan->rxfilter & FIF_BCN_PRBRESP_PROMISC))
405 rfilt |= ATH9K_RX_FILTER_MYBEACON;
406 else if (sc->sc_ah->opmode != NL80211_IFTYPE_OCB)
407 rfilt |= ATH9K_RX_FILTER_BEACON;
409 if ((sc->sc_ah->opmode == NL80211_IFTYPE_AP) ||
410 (sc->cur_chan->rxfilter & FIF_PSPOLL))
411 rfilt |= ATH9K_RX_FILTER_PSPOLL;
413 if (sc->cur_chandef.width != NL80211_CHAN_WIDTH_20_NOHT)
414 rfilt |= ATH9K_RX_FILTER_COMP_BAR;
416 if (sc->cur_chan->nvifs > 1 ||
417 (sc->cur_chan->rxfilter & (FIF_OTHER_BSS | FIF_MCAST_ACTION))) {
418 /* This is needed for older chips */
419 if (sc->sc_ah->hw_version.macVersion <= AR_SREV_VERSION_9160)
420 rfilt |= ATH9K_RX_FILTER_PROM;
421 rfilt |= ATH9K_RX_FILTER_MCAST_BCAST_ALL;
424 if (AR_SREV_9550(sc->sc_ah) || AR_SREV_9531(sc->sc_ah) ||
425 AR_SREV_9561(sc->sc_ah))
426 rfilt |= ATH9K_RX_FILTER_4ADDRESS;
428 if (AR_SREV_9462(sc->sc_ah) || AR_SREV_9565(sc->sc_ah))
429 rfilt |= ATH9K_RX_FILTER_CONTROL_WRAPPER;
431 if (ath9k_is_chanctx_enabled() &&
432 test_bit(ATH_OP_SCANNING, &common->op_flags))
433 rfilt |= ATH9K_RX_FILTER_BEACON;
435 spin_unlock_bh(&sc->chan_lock);
441 void ath_startrecv(struct ath_softc *sc)
443 struct ath_hw *ah = sc->sc_ah;
444 struct ath_rxbuf *bf, *tbf;
446 if (ah->caps.hw_caps & ATH9K_HW_CAP_EDMA) {
447 ath_edma_start_recv(sc);
451 if (list_empty(&sc->rx.rxbuf))
454 sc->rx.buf_hold = NULL;
455 sc->rx.rxlink = NULL;
456 list_for_each_entry_safe(bf, tbf, &sc->rx.rxbuf, list) {
457 ath_rx_buf_link(sc, bf, false);
460 /* We could have deleted elements so the list may be empty now */
461 if (list_empty(&sc->rx.rxbuf))
464 bf = list_first_entry(&sc->rx.rxbuf, struct ath_rxbuf, list);
465 ath9k_hw_putrxbuf(ah, bf->bf_daddr);
470 ath9k_hw_startpcureceive(ah, sc->cur_chan->offchannel);
473 static void ath_flushrecv(struct ath_softc *sc)
475 if (sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_EDMA)
476 ath_rx_tasklet(sc, 1, true);
477 ath_rx_tasklet(sc, 1, false);
480 bool ath_stoprecv(struct ath_softc *sc)
482 struct ath_hw *ah = sc->sc_ah;
483 bool stopped, reset = false;
485 ath9k_hw_abortpcurecv(ah);
486 ath9k_hw_setrxfilter(ah, 0);
487 stopped = ath9k_hw_stopdmarecv(ah, &reset);
491 if (sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_EDMA)
492 ath_edma_stop_recv(sc);
494 sc->rx.rxlink = NULL;
496 if (!(ah->ah_flags & AH_UNPLUGGED) &&
497 unlikely(!stopped)) {
498 ath_dbg(ath9k_hw_common(sc->sc_ah), RESET,
499 "Failed to stop Rx DMA\n");
500 RESET_STAT_INC(sc, RESET_RX_DMA_ERROR);
502 return stopped && !reset;
505 static bool ath_beacon_dtim_pending_cab(struct sk_buff *skb)
507 /* Check whether the Beacon frame has DTIM indicating buffered bc/mc */
508 struct ieee80211_mgmt *mgmt;
509 u8 *pos, *end, id, elen;
510 struct ieee80211_tim_ie *tim;
512 mgmt = (struct ieee80211_mgmt *)skb->data;
513 pos = mgmt->u.beacon.variable;
514 end = skb->data + skb->len;
516 while (pos + 2 < end) {
519 if (pos + elen > end)
522 if (id == WLAN_EID_TIM) {
523 if (elen < sizeof(*tim))
525 tim = (struct ieee80211_tim_ie *) pos;
526 if (tim->dtim_count != 0)
528 return tim->bitmap_ctrl & 0x01;
537 static void ath_rx_ps_beacon(struct ath_softc *sc, struct sk_buff *skb)
539 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
540 bool skip_beacon = false;
542 if (skb->len < 24 + 8 + 2 + 2)
545 sc->ps_flags &= ~PS_WAIT_FOR_BEACON;
547 if (sc->ps_flags & PS_BEACON_SYNC) {
548 sc->ps_flags &= ~PS_BEACON_SYNC;
550 "Reconfigure beacon timers based on synchronized timestamp\n");
552 #ifdef CONFIG_ATH9K_CHANNEL_CONTEXT
553 if (ath9k_is_chanctx_enabled()) {
554 if (sc->cur_chan == &sc->offchannel.chan)
560 !(WARN_ON_ONCE(sc->cur_chan->beacon.beacon_interval == 0)))
561 ath9k_set_beacon(sc);
563 ath9k_p2p_beacon_sync(sc);
566 if (ath_beacon_dtim_pending_cab(skb)) {
568 * Remain awake waiting for buffered broadcast/multicast
569 * frames. If the last broadcast/multicast frame is not
570 * received properly, the next beacon frame will work as
571 * a backup trigger for returning into NETWORK SLEEP state,
572 * so we are waiting for it as well.
575 "Received DTIM beacon indicating buffered broadcast/multicast frame(s)\n");
576 sc->ps_flags |= PS_WAIT_FOR_CAB | PS_WAIT_FOR_BEACON;
580 if (sc->ps_flags & PS_WAIT_FOR_CAB) {
582 * This can happen if a broadcast frame is dropped or the AP
583 * fails to send a frame indicating that all CAB frames have
586 sc->ps_flags &= ~PS_WAIT_FOR_CAB;
587 ath_dbg(common, PS, "PS wait for CAB frames timed out\n");
591 static void ath_rx_ps(struct ath_softc *sc, struct sk_buff *skb, bool mybeacon)
593 struct ieee80211_hdr *hdr;
594 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
596 hdr = (struct ieee80211_hdr *)skb->data;
598 /* Process Beacon and CAB receive in PS state */
599 if (((sc->ps_flags & PS_WAIT_FOR_BEACON) || ath9k_check_auto_sleep(sc))
601 ath_rx_ps_beacon(sc, skb);
602 } else if ((sc->ps_flags & PS_WAIT_FOR_CAB) &&
603 (ieee80211_is_data(hdr->frame_control) ||
604 ieee80211_is_action(hdr->frame_control)) &&
605 is_multicast_ether_addr(hdr->addr1) &&
606 !ieee80211_has_moredata(hdr->frame_control)) {
608 * No more broadcast/multicast frames to be received at this
611 sc->ps_flags &= ~(PS_WAIT_FOR_CAB | PS_WAIT_FOR_BEACON);
613 "All PS CAB frames received, back to sleep\n");
614 } else if ((sc->ps_flags & PS_WAIT_FOR_PSPOLL_DATA) &&
615 !is_multicast_ether_addr(hdr->addr1) &&
616 !ieee80211_has_morefrags(hdr->frame_control)) {
617 sc->ps_flags &= ~PS_WAIT_FOR_PSPOLL_DATA;
619 "Going back to sleep after having received PS-Poll data (0x%lx)\n",
620 sc->ps_flags & (PS_WAIT_FOR_BEACON |
622 PS_WAIT_FOR_PSPOLL_DATA |
623 PS_WAIT_FOR_TX_ACK));
627 static bool ath_edma_get_buffers(struct ath_softc *sc,
628 enum ath9k_rx_qtype qtype,
629 struct ath_rx_status *rs,
630 struct ath_rxbuf **dest)
632 struct ath_rx_edma *rx_edma = &sc->rx.rx_edma[qtype];
633 struct ath_hw *ah = sc->sc_ah;
634 struct ath_common *common = ath9k_hw_common(ah);
636 struct ath_rxbuf *bf;
639 skb = skb_peek(&rx_edma->rx_fifo);
643 bf = SKB_CB_ATHBUF(skb);
646 dma_sync_single_for_cpu(sc->dev, bf->bf_buf_addr,
647 common->rx_bufsize, DMA_FROM_DEVICE);
649 ret = ath9k_hw_process_rxdesc_edma(ah, rs, skb->data);
650 if (ret == -EINPROGRESS) {
651 /*let device gain the buffer again*/
652 dma_sync_single_for_device(sc->dev, bf->bf_buf_addr,
653 common->rx_bufsize, DMA_FROM_DEVICE);
657 __skb_unlink(skb, &rx_edma->rx_fifo);
658 if (ret == -EINVAL) {
659 /* corrupt descriptor, skip this one and the following one */
660 list_add_tail(&bf->list, &sc->rx.rxbuf);
661 ath_rx_edma_buf_link(sc, qtype);
663 skb = skb_peek(&rx_edma->rx_fifo);
665 bf = SKB_CB_ATHBUF(skb);
668 __skb_unlink(skb, &rx_edma->rx_fifo);
669 list_add_tail(&bf->list, &sc->rx.rxbuf);
670 ath_rx_edma_buf_link(sc, qtype);
680 static struct ath_rxbuf *ath_edma_get_next_rx_buf(struct ath_softc *sc,
681 struct ath_rx_status *rs,
682 enum ath9k_rx_qtype qtype)
684 struct ath_rxbuf *bf = NULL;
686 while (ath_edma_get_buffers(sc, qtype, rs, &bf)) {
695 static struct ath_rxbuf *ath_get_next_rx_buf(struct ath_softc *sc,
696 struct ath_rx_status *rs)
698 struct ath_hw *ah = sc->sc_ah;
699 struct ath_common *common = ath9k_hw_common(ah);
701 struct ath_rxbuf *bf;
704 if (list_empty(&sc->rx.rxbuf)) {
705 sc->rx.rxlink = NULL;
709 bf = list_first_entry(&sc->rx.rxbuf, struct ath_rxbuf, list);
710 if (bf == sc->rx.buf_hold)
716 * Must provide the virtual address of the current
717 * descriptor, the physical address, and the virtual
718 * address of the next descriptor in the h/w chain.
719 * This allows the HAL to look ahead to see if the
720 * hardware is done with a descriptor by checking the
721 * done bit in the following descriptor and the address
722 * of the current descriptor the DMA engine is working
723 * on. All this is necessary because of our use of
724 * a self-linked list to avoid rx overruns.
726 ret = ath9k_hw_rxprocdesc(ah, ds, rs);
727 if (ret == -EINPROGRESS) {
728 struct ath_rx_status trs;
729 struct ath_rxbuf *tbf;
730 struct ath_desc *tds;
732 memset(&trs, 0, sizeof(trs));
733 if (list_is_last(&bf->list, &sc->rx.rxbuf)) {
734 sc->rx.rxlink = NULL;
738 tbf = list_entry(bf->list.next, struct ath_rxbuf, list);
741 * On some hardware the descriptor status words could
742 * get corrupted, including the done bit. Because of
743 * this, check if the next descriptor's done bit is
746 * If the next descriptor's done bit is set, the current
747 * descriptor has been corrupted. Force s/w to discard
748 * this descriptor and continue...
752 ret = ath9k_hw_rxprocdesc(ah, tds, &trs);
753 if (ret == -EINPROGRESS)
757 * Re-check previous descriptor, in case it has been filled
760 ret = ath9k_hw_rxprocdesc(ah, ds, rs);
761 if (ret == -EINPROGRESS) {
763 * mark descriptor as zero-length and set the 'more'
764 * flag to ensure that both buffers get discarded
776 * Synchronize the DMA transfer with CPU before
777 * 1. accessing the frame
778 * 2. requeueing the same buffer to h/w
780 dma_sync_single_for_cpu(sc->dev, bf->bf_buf_addr,
787 static void ath9k_process_tsf(struct ath_rx_status *rs,
788 struct ieee80211_rx_status *rxs,
791 u32 tsf_lower = tsf & 0xffffffff;
793 rxs->mactime = (tsf & ~0xffffffffULL) | rs->rs_tstamp;
794 if (rs->rs_tstamp > tsf_lower &&
795 unlikely(rs->rs_tstamp - tsf_lower > 0x10000000))
796 rxs->mactime -= 0x100000000ULL;
798 if (rs->rs_tstamp < tsf_lower &&
799 unlikely(tsf_lower - rs->rs_tstamp > 0x10000000))
800 rxs->mactime += 0x100000000ULL;
804 * For Decrypt or Demic errors, we only mark packet status here and always push
805 * up the frame up to let mac80211 handle the actual error case, be it no
806 * decryption key or real decryption error. This let us keep statistics there.
808 static int ath9k_rx_skb_preprocess(struct ath_softc *sc,
810 struct ath_rx_status *rx_stats,
811 struct ieee80211_rx_status *rx_status,
812 bool *decrypt_error, u64 tsf)
814 struct ieee80211_hw *hw = sc->hw;
815 struct ath_hw *ah = sc->sc_ah;
816 struct ath_common *common = ath9k_hw_common(ah);
817 struct ieee80211_hdr *hdr;
818 bool discard_current = sc->rx.discard_next;
822 * Discard corrupt descriptors which are marked in
823 * ath_get_next_rx_buf().
828 sc->rx.discard_next = false;
831 * Discard zero-length packets and packets smaller than an ACK
832 * which are not PHY_ERROR (short radar pulses have a length of 3)
834 is_phyerr = rx_stats->rs_status & ATH9K_RXERR_PHY;
835 if (!rx_stats->rs_datalen ||
836 (rx_stats->rs_datalen < 10 && !is_phyerr)) {
837 RX_STAT_INC(sc, rx_len_err);
842 * rs_status follows rs_datalen so if rs_datalen is too large
843 * we can take a hint that hardware corrupted it, so ignore
846 if (rx_stats->rs_datalen > (common->rx_bufsize - ah->caps.rx_status_len)) {
847 RX_STAT_INC(sc, rx_len_err);
851 /* Only use status info from the last fragment */
852 if (rx_stats->rs_more)
856 * Return immediately if the RX descriptor has been marked
857 * as corrupt based on the various error bits.
859 * This is different from the other corrupt descriptor
860 * condition handled above.
862 if (rx_stats->rs_status & ATH9K_RXERR_CORRUPT_DESC)
865 hdr = (struct ieee80211_hdr *) (skb->data + ah->caps.rx_status_len);
867 ath9k_process_tsf(rx_stats, rx_status, tsf);
868 ath_debug_stat_rx(sc, rx_stats);
871 * Process PHY errors and return so that the packet
874 if (rx_stats->rs_status & ATH9K_RXERR_PHY) {
876 * DFS and spectral are mutually exclusive
878 * Since some chips use PHYERR_RADAR as indication for both, we
879 * need to double check which feature is enabled to prevent
880 * feeding spectral or dfs-detector with wrong frames.
882 if (hw->conf.radar_enabled) {
883 ath9k_dfs_process_phyerr(sc, hdr, rx_stats,
885 } else if (sc->spec_priv.spectral_mode != SPECTRAL_DISABLED &&
886 ath_cmn_process_fft(&sc->spec_priv, hdr, rx_stats,
887 rx_status->mactime)) {
888 RX_STAT_INC(sc, rx_spectral);
894 * everything but the rate is checked here, the rate check is done
895 * separately to avoid doing two lookups for a rate for each frame.
897 spin_lock_bh(&sc->chan_lock);
898 if (!ath9k_cmn_rx_accept(common, hdr, rx_status, rx_stats, decrypt_error,
899 sc->cur_chan->rxfilter)) {
900 spin_unlock_bh(&sc->chan_lock);
903 spin_unlock_bh(&sc->chan_lock);
905 if (ath_is_mybeacon(common, hdr)) {
906 RX_STAT_INC(sc, rx_beacons);
907 rx_stats->is_mybeacon = true;
911 * This shouldn't happen, but have a safety check anyway.
913 if (WARN_ON(!ah->curchan))
916 if (ath9k_cmn_process_rate(common, hw, rx_stats, rx_status)) {
918 * No valid hardware bitrate found -- we should not get here
919 * because hardware has already validated this frame as OK.
921 ath_dbg(common, ANY, "unsupported hw bitrate detected 0x%02x using 1 Mbit\n",
923 RX_STAT_INC(sc, rx_rate_err);
927 if (ath9k_is_chanctx_enabled()) {
928 if (rx_stats->is_mybeacon)
929 ath_chanctx_beacon_recv_ev(sc,
930 ATH_CHANCTX_EVENT_BEACON_RECEIVED);
933 ath9k_cmn_process_rssi(common, hw, rx_stats, rx_status);
935 rx_status->band = ah->curchan->chan->band;
936 rx_status->freq = ah->curchan->chan->center_freq;
937 rx_status->antenna = rx_stats->rs_antenna;
938 rx_status->flag |= RX_FLAG_MACTIME_END;
940 #ifdef CONFIG_ATH9K_BTCOEX_SUPPORT
941 if (ieee80211_is_data_present(hdr->frame_control) &&
942 !ieee80211_is_qos_nullfunc(hdr->frame_control))
949 sc->rx.discard_next = rx_stats->rs_more;
954 * Run the LNA combining algorithm only in these cases:
956 * Standalone WLAN cards with both LNA/Antenna diversity
957 * enabled in the EEPROM.
959 * WLAN+BT cards which are in the supported card list
960 * in ath_pci_id_table and the user has loaded the
961 * driver with "bt_ant_diversity" set to true.
963 static void ath9k_antenna_check(struct ath_softc *sc,
964 struct ath_rx_status *rs)
966 struct ath_hw *ah = sc->sc_ah;
967 struct ath9k_hw_capabilities *pCap = &ah->caps;
968 struct ath_common *common = ath9k_hw_common(ah);
970 if (!(ah->caps.hw_caps & ATH9K_HW_CAP_ANT_DIV_COMB))
974 * Change the default rx antenna if rx diversity
975 * chooses the other antenna 3 times in a row.
977 if (sc->rx.defant != rs->rs_antenna) {
978 if (++sc->rx.rxotherant >= 3)
979 ath_setdefantenna(sc, rs->rs_antenna);
981 sc->rx.rxotherant = 0;
984 if (pCap->hw_caps & ATH9K_HW_CAP_BT_ANT_DIV) {
985 if (common->bt_ant_diversity)
986 ath_ant_comb_scan(sc, rs);
988 ath_ant_comb_scan(sc, rs);
992 static void ath9k_apply_ampdu_details(struct ath_softc *sc,
993 struct ath_rx_status *rs, struct ieee80211_rx_status *rxs)
996 rxs->flag |= RX_FLAG_AMPDU_DETAILS | RX_FLAG_AMPDU_LAST_KNOWN;
998 rxs->ampdu_reference = sc->rx.ampdu_ref;
1000 if (!rs->rs_moreaggr) {
1001 rxs->flag |= RX_FLAG_AMPDU_IS_LAST;
1005 if (rs->rs_flags & ATH9K_RX_DELIM_CRC_PRE)
1006 rxs->flag |= RX_FLAG_AMPDU_DELIM_CRC_ERROR;
1010 static void ath_rx_count_airtime(struct ath_softc *sc,
1011 struct ath_rx_status *rs,
1012 struct sk_buff *skb)
1014 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
1015 struct ath_hw *ah = sc->sc_ah;
1016 struct ath_common *common = ath9k_hw_common(ah);
1017 struct ieee80211_sta *sta;
1018 struct ieee80211_rx_status *rxs;
1019 const struct ieee80211_rate *rate;
1020 bool is_sgi, is_40, is_sp;
1022 u16 len = rs->rs_datalen;
1026 if (!ieee80211_is_data(hdr->frame_control))
1031 sta = ieee80211_find_sta_by_ifaddr(sc->hw, hdr->addr2, NULL);
1034 tidno = skb->priority & IEEE80211_QOS_CTL_TID_MASK;
1036 rxs = IEEE80211_SKB_RXCB(skb);
1038 is_sgi = !!(rxs->enc_flags & RX_ENC_FLAG_SHORT_GI);
1039 is_40 = !!(rxs->bw == RATE_INFO_BW_40);
1040 is_sp = !!(rxs->enc_flags & RX_ENC_FLAG_SHORTPRE);
1042 if (!!(rxs->encoding == RX_ENC_HT)) {
1045 airtime += ath_pkt_duration(sc, rxs->rate_idx, len,
1046 is_40, is_sgi, is_sp);
1049 phy = IS_CCK_RATE(rs->rs_rate) ? WLAN_RC_PHY_CCK : WLAN_RC_PHY_OFDM;
1050 rate = &common->sbands[rxs->band].bitrates[rxs->rate_idx];
1051 airtime += ath9k_hw_computetxtime(ah, phy, rate->bitrate * 100,
1052 len, rxs->rate_idx, is_sp);
1055 ieee80211_sta_register_airtime(sta, tidno, 0, airtime);
1060 int ath_rx_tasklet(struct ath_softc *sc, int flush, bool hp)
1062 struct ath_rxbuf *bf;
1063 struct sk_buff *skb = NULL, *requeue_skb, *hdr_skb;
1064 struct ieee80211_rx_status *rxs;
1065 struct ath_hw *ah = sc->sc_ah;
1066 struct ath_common *common = ath9k_hw_common(ah);
1067 struct ieee80211_hw *hw = sc->hw;
1069 struct ath_rx_status rs;
1070 enum ath9k_rx_qtype qtype;
1071 bool edma = !!(ah->caps.hw_caps & ATH9K_HW_CAP_EDMA);
1074 unsigned long flags;
1075 dma_addr_t new_buf_addr;
1076 unsigned int budget = 512;
1077 struct ieee80211_hdr *hdr;
1080 dma_type = DMA_BIDIRECTIONAL;
1082 dma_type = DMA_FROM_DEVICE;
1084 qtype = hp ? ATH9K_RX_QUEUE_HP : ATH9K_RX_QUEUE_LP;
1086 tsf = ath9k_hw_gettsf64(ah);
1089 bool decrypt_error = false;
1091 memset(&rs, 0, sizeof(rs));
1093 bf = ath_edma_get_next_rx_buf(sc, &rs, qtype);
1095 bf = ath_get_next_rx_buf(sc, &rs);
1105 * Take frame header from the first fragment and RX status from
1109 hdr_skb = sc->rx.frag;
1113 rxs = IEEE80211_SKB_RXCB(hdr_skb);
1114 memset(rxs, 0, sizeof(struct ieee80211_rx_status));
1116 retval = ath9k_rx_skb_preprocess(sc, hdr_skb, &rs, rxs,
1117 &decrypt_error, tsf);
1119 goto requeue_drop_frag;
1121 /* Ensure we always have an skb to requeue once we are done
1122 * processing the current buffer's skb */
1123 requeue_skb = ath_rxbuf_alloc(common, common->rx_bufsize, GFP_ATOMIC);
1125 /* If there is no memory we ignore the current RX'd frame,
1126 * tell hardware it can give us a new frame using the old
1127 * skb and put it at the tail of the sc->rx.rxbuf list for
1130 RX_STAT_INC(sc, rx_oom_err);
1131 goto requeue_drop_frag;
1134 /* We will now give hardware our shiny new allocated skb */
1135 new_buf_addr = dma_map_single(sc->dev, requeue_skb->data,
1136 common->rx_bufsize, dma_type);
1137 if (unlikely(dma_mapping_error(sc->dev, new_buf_addr))) {
1138 dev_kfree_skb_any(requeue_skb);
1139 goto requeue_drop_frag;
1142 /* Unmap the frame */
1143 dma_unmap_single(sc->dev, bf->bf_buf_addr,
1144 common->rx_bufsize, dma_type);
1146 bf->bf_mpdu = requeue_skb;
1147 bf->bf_buf_addr = new_buf_addr;
1149 skb_put(skb, rs.rs_datalen + ah->caps.rx_status_len);
1150 if (ah->caps.rx_status_len)
1151 skb_pull(skb, ah->caps.rx_status_len);
1154 ath9k_cmn_rx_skb_postprocess(common, hdr_skb, &rs,
1155 rxs, decrypt_error);
1158 RX_STAT_INC(sc, rx_frags);
1160 * rs_more indicates chained descriptors which can be
1161 * used to link buffers together for a sort of
1162 * scatter-gather operation.
1165 /* too many fragments - cannot handle frame */
1166 dev_kfree_skb_any(sc->rx.frag);
1167 dev_kfree_skb_any(skb);
1168 RX_STAT_INC(sc, rx_too_many_frags_err);
1176 int space = skb->len - skb_tailroom(hdr_skb);
1178 if (pskb_expand_head(hdr_skb, 0, space, GFP_ATOMIC) < 0) {
1180 RX_STAT_INC(sc, rx_oom_err);
1181 goto requeue_drop_frag;
1186 skb_copy_from_linear_data(skb, skb_put(hdr_skb, skb->len),
1188 dev_kfree_skb_any(skb);
1192 if (rxs->flag & RX_FLAG_MMIC_STRIPPED)
1193 skb_trim(skb, skb->len - 8);
1195 spin_lock_irqsave(&sc->sc_pm_lock, flags);
1196 if ((sc->ps_flags & (PS_WAIT_FOR_BEACON |
1198 PS_WAIT_FOR_PSPOLL_DATA)) ||
1199 ath9k_check_auto_sleep(sc))
1200 ath_rx_ps(sc, skb, rs.is_mybeacon);
1201 spin_unlock_irqrestore(&sc->sc_pm_lock, flags);
1203 ath9k_antenna_check(sc, &rs);
1204 ath9k_apply_ampdu_details(sc, &rs, rxs);
1205 ath_debug_rate_stats(sc, &rs, skb);
1206 ath_rx_count_airtime(sc, &rs, skb);
1208 hdr = (struct ieee80211_hdr *)skb->data;
1209 if (ieee80211_is_ack(hdr->frame_control))
1210 ath_dynack_sample_ack_ts(sc->sc_ah, skb, rs.rs_tstamp);
1212 ieee80211_rx(hw, skb);
1216 dev_kfree_skb_any(sc->rx.frag);
1220 list_add_tail(&bf->list, &sc->rx.rxbuf);
1223 ath_rx_buf_relink(sc, bf, flush);
1226 } else if (!flush) {
1227 ath_rx_edma_buf_link(sc, qtype);
1234 if (!(ah->imask & ATH9K_INT_RXEOL)) {
1235 ah->imask |= (ATH9K_INT_RXEOL | ATH9K_INT_RXORN);
1236 ath9k_hw_set_interrupts(ah);