2 * Copyright (c) 2008-2009 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.
19 static struct ieee80211_hw
* ath_get_virt_hw(struct ath_softc
*sc
,
20 struct ieee80211_hdr
*hdr
)
22 struct ieee80211_hw
*hw
= sc
->pri_wiphy
->hw
;
25 spin_lock_bh(&sc
->wiphy_lock
);
26 for (i
= 0; i
< sc
->num_sec_wiphy
; i
++) {
27 struct ath_wiphy
*aphy
= sc
->sec_wiphy
[i
];
30 if (compare_ether_addr(hdr
->addr1
, aphy
->hw
->wiphy
->perm_addr
)
36 spin_unlock_bh(&sc
->wiphy_lock
);
41 * Setup and link descriptors.
43 * 11N: we can no longer afford to self link the last descriptor.
44 * MAC acknowledges BA status as long as it copies frames to host
45 * buffer (or rx fifo). This can incorrectly acknowledge packets
46 * to a sender if last desc is self-linked.
48 static void ath_rx_buf_link(struct ath_softc
*sc
, struct ath_buf
*bf
)
50 struct ath_hw
*ah
= sc
->sc_ah
;
57 ds
->ds_link
= 0; /* link to null */
58 ds
->ds_data
= bf
->bf_buf_addr
;
60 /* virtual addr of the beginning of the buffer. */
63 ds
->ds_vdata
= skb
->data
;
65 /* setup rx descriptors. The rx.bufsize here tells the harware
66 * how much data it can DMA to us and that we are prepared
68 ath9k_hw_setuprxdesc(ah
, ds
,
72 if (sc
->rx
.rxlink
== NULL
)
73 ath9k_hw_putrxbuf(ah
, bf
->bf_daddr
);
75 *sc
->rx
.rxlink
= bf
->bf_daddr
;
77 sc
->rx
.rxlink
= &ds
->ds_link
;
81 static void ath_setdefantenna(struct ath_softc
*sc
, u32 antenna
)
83 /* XXX block beacon interrupts */
84 ath9k_hw_setantenna(sc
->sc_ah
, antenna
);
85 sc
->rx
.defant
= antenna
;
86 sc
->rx
.rxotherant
= 0;
90 * For Decrypt or Demic errors, we only mark packet status here and always push
91 * up the frame up to let mac80211 handle the actual error case, be it no
92 * decryption key or real decryption error. This let us keep statistics there.
94 static int ath_rx_prepare(struct ieee80211_hw
*hw
,
95 struct sk_buff
*skb
, struct ath_rx_status
*rx_stats
,
96 struct ieee80211_rx_status
*rx_status
, bool *decrypt_error
,
99 struct ieee80211_hdr
*hdr
;
102 struct ieee80211_sta
*sta
;
104 int last_rssi
= ATH_RSSI_DUMMY_MARKER
;
105 struct ath_common
*common
= ath9k_hw_common(sc
->sc_ah
);
107 hdr
= (struct ieee80211_hdr
*)skb
->data
;
108 fc
= hdr
->frame_control
;
109 memset(rx_status
, 0, sizeof(struct ieee80211_rx_status
));
111 if (rx_stats
->rs_more
) {
113 * Frame spans multiple descriptors; this cannot happen yet
114 * as we don't support jumbograms. If not in monitor mode,
115 * discard the frame. Enable this if you want to see
116 * error frames in Monitor mode.
118 if (sc
->sc_ah
->opmode
!= NL80211_IFTYPE_MONITOR
)
120 } else if (rx_stats
->rs_status
!= 0) {
121 if (rx_stats
->rs_status
& ATH9K_RXERR_CRC
)
122 rx_status
->flag
|= RX_FLAG_FAILED_FCS_CRC
;
123 if (rx_stats
->rs_status
& ATH9K_RXERR_PHY
)
126 if (rx_stats
->rs_status
& ATH9K_RXERR_DECRYPT
) {
127 *decrypt_error
= true;
128 } else if (rx_stats
->rs_status
& ATH9K_RXERR_MIC
) {
129 if (ieee80211_is_ctl(fc
))
131 * Sometimes, we get invalid
132 * MIC failures on valid control frames.
133 * Remove these mic errors.
135 rx_stats
->rs_status
&= ~ATH9K_RXERR_MIC
;
137 rx_status
->flag
|= RX_FLAG_MMIC_ERROR
;
140 * Reject error frames with the exception of
141 * decryption and MIC failures. For monitor mode,
142 * we also ignore the CRC error.
144 if (sc
->sc_ah
->opmode
== NL80211_IFTYPE_MONITOR
) {
145 if (rx_stats
->rs_status
&
146 ~(ATH9K_RXERR_DECRYPT
| ATH9K_RXERR_MIC
|
150 if (rx_stats
->rs_status
&
151 ~(ATH9K_RXERR_DECRYPT
| ATH9K_RXERR_MIC
)) {
157 ratecode
= rx_stats
->rs_rate
;
159 if (ratecode
& 0x80) {
161 rx_status
->flag
|= RX_FLAG_HT
;
162 if (rx_stats
->rs_flags
& ATH9K_RX_2040
)
163 rx_status
->flag
|= RX_FLAG_40MHZ
;
164 if (rx_stats
->rs_flags
& ATH9K_RX_GI
)
165 rx_status
->flag
|= RX_FLAG_SHORT_GI
;
166 rx_status
->rate_idx
= ratecode
& 0x7f;
168 int i
= 0, cur_band
, n_rates
;
170 cur_band
= hw
->conf
.channel
->band
;
171 n_rates
= sc
->sbands
[cur_band
].n_bitrates
;
173 for (i
= 0; i
< n_rates
; i
++) {
174 if (sc
->sbands
[cur_band
].bitrates
[i
].hw_value
==
176 rx_status
->rate_idx
= i
;
180 if (sc
->sbands
[cur_band
].bitrates
[i
].hw_value_short
==
182 rx_status
->rate_idx
= i
;
183 rx_status
->flag
|= RX_FLAG_SHORTPRE
;
190 /* XXX: use ieee80211_find_sta! */
191 sta
= ieee80211_find_sta_by_hw(hw
, hdr
->addr2
);
193 an
= (struct ath_node
*) sta
->drv_priv
;
194 if (rx_stats
->rs_rssi
!= ATH9K_RSSI_BAD
&&
195 !rx_stats
->rs_moreaggr
)
196 ATH_RSSI_LPF(an
->last_rssi
, rx_stats
->rs_rssi
);
197 last_rssi
= an
->last_rssi
;
201 if (likely(last_rssi
!= ATH_RSSI_DUMMY_MARKER
))
202 rx_stats
->rs_rssi
= ATH_EP_RND(last_rssi
,
203 ATH_RSSI_EP_MULTIPLIER
);
204 if (rx_stats
->rs_rssi
< 0)
205 rx_stats
->rs_rssi
= 0;
206 else if (rx_stats
->rs_rssi
> 127)
207 rx_stats
->rs_rssi
= 127;
209 /* Update Beacon RSSI, this is used by ANI. */
210 if (ieee80211_is_beacon(fc
))
211 sc
->sc_ah
->stats
.avgbrssi
= rx_stats
->rs_rssi
;
213 rx_status
->mactime
= ath9k_hw_extend_tsf(sc
->sc_ah
, rx_stats
->rs_tstamp
);
214 rx_status
->band
= hw
->conf
.channel
->band
;
215 rx_status
->freq
= hw
->conf
.channel
->center_freq
;
216 rx_status
->noise
= common
->ani
.noise_floor
;
217 rx_status
->signal
= ATH_DEFAULT_NOISE_FLOOR
+ rx_stats
->rs_rssi
;
218 rx_status
->antenna
= rx_stats
->rs_antenna
;
221 * Theory for reporting quality:
223 * At a hardware RSSI of 45 you will be able to use MCS 7 reliably.
224 * At a hardware RSSI of 45 you will be able to use MCS 15 reliably.
225 * At a hardware RSSI of 35 you should be able use 54 Mbps reliably.
227 * MCS 7 is the highets MCS index usable by a 1-stream device.
228 * MCS 15 is the highest MCS index usable by a 2-stream device.
230 * All ath9k devices are either 1-stream or 2-stream.
232 * How many bars you see is derived from the qual reporting.
234 * A more elaborate scheme can be used here but it requires tables
235 * of SNR/throughput for each possible mode used. For the MCS table
236 * you can refer to the wireless wiki:
238 * http://wireless.kernel.org/en/developers/Documentation/ieee80211/802.11n
241 if (conf_is_ht(&hw
->conf
))
242 rx_status
->qual
= rx_stats
->rs_rssi
* 100 / 45;
244 rx_status
->qual
= rx_stats
->rs_rssi
* 100 / 35;
246 /* rssi can be more than 45 though, anything above that
247 * should be considered at 100% */
248 if (rx_status
->qual
> 100)
249 rx_status
->qual
= 100;
251 rx_status
->flag
|= RX_FLAG_TSFT
;
258 static void ath_opmode_init(struct ath_softc
*sc
)
260 struct ath_hw
*ah
= sc
->sc_ah
;
261 struct ath_common
*common
= ath9k_hw_common(ah
);
265 /* configure rx filter */
266 rfilt
= ath_calcrxfilter(sc
);
267 ath9k_hw_setrxfilter(ah
, rfilt
);
269 /* configure bssid mask */
270 if (ah
->caps
.hw_caps
& ATH9K_HW_CAP_BSSIDMASK
)
271 ath_hw_setbssidmask(common
);
273 /* configure operational mode */
274 ath9k_hw_setopmode(ah
);
276 /* Handle any link-level address change. */
277 ath9k_hw_setmac(ah
, common
->macaddr
);
279 /* calculate and install multicast filter */
280 mfilt
[0] = mfilt
[1] = ~0;
281 ath9k_hw_setmcastfilter(ah
, mfilt
[0], mfilt
[1]);
284 int ath_rx_init(struct ath_softc
*sc
, int nbufs
)
286 struct ath_common
*common
= ath9k_hw_common(sc
->sc_ah
);
291 spin_lock_init(&sc
->rx
.rxflushlock
);
292 sc
->sc_flags
&= ~SC_OP_RXFLUSH
;
293 spin_lock_init(&sc
->rx
.rxbuflock
);
295 sc
->rx
.bufsize
= roundup(IEEE80211_MAX_MPDU_LEN
,
296 min(common
->cachelsz
, (u16
)64));
298 ath_print(common
, ATH_DBG_CONFIG
, "cachelsz %u rxbufsize %u\n",
299 common
->cachelsz
, sc
->rx
.bufsize
);
301 /* Initialize rx descriptors */
303 error
= ath_descdma_setup(sc
, &sc
->rx
.rxdma
, &sc
->rx
.rxbuf
,
306 ath_print(common
, ATH_DBG_FATAL
,
307 "failed to allocate rx descriptors: %d\n", error
);
311 list_for_each_entry(bf
, &sc
->rx
.rxbuf
, list
) {
312 skb
= ath_rxbuf_alloc(common
, sc
->rx
.bufsize
, GFP_KERNEL
);
319 bf
->bf_buf_addr
= dma_map_single(sc
->dev
, skb
->data
,
322 if (unlikely(dma_mapping_error(sc
->dev
,
324 dev_kfree_skb_any(skb
);
326 ath_print(common
, ATH_DBG_FATAL
,
327 "dma_mapping_error() on RX init\n");
331 bf
->bf_dmacontext
= bf
->bf_buf_addr
;
333 sc
->rx
.rxlink
= NULL
;
342 void ath_rx_cleanup(struct ath_softc
*sc
)
347 list_for_each_entry(bf
, &sc
->rx
.rxbuf
, list
) {
350 dma_unmap_single(sc
->dev
, bf
->bf_buf_addr
,
351 sc
->rx
.bufsize
, DMA_FROM_DEVICE
);
356 if (sc
->rx
.rxdma
.dd_desc_len
!= 0)
357 ath_descdma_cleanup(sc
, &sc
->rx
.rxdma
, &sc
->rx
.rxbuf
);
361 * Calculate the receive filter according to the
362 * operating mode and state:
364 * o always accept unicast, broadcast, and multicast traffic
365 * o maintain current state of phy error reception (the hal
366 * may enable phy error frames for noise immunity work)
367 * o probe request frames are accepted only when operating in
368 * hostap, adhoc, or monitor modes
369 * o enable promiscuous mode according to the interface state
371 * - when operating in adhoc mode so the 802.11 layer creates
372 * node table entries for peers,
373 * - when operating in station mode for collecting rssi data when
374 * the station is otherwise quiet, or
375 * - when operating as a repeater so we see repeater-sta beacons
379 u32
ath_calcrxfilter(struct ath_softc
*sc
)
381 #define RX_FILTER_PRESERVE (ATH9K_RX_FILTER_PHYERR | ATH9K_RX_FILTER_PHYRADAR)
385 rfilt
= (ath9k_hw_getrxfilter(sc
->sc_ah
) & RX_FILTER_PRESERVE
)
386 | ATH9K_RX_FILTER_UCAST
| ATH9K_RX_FILTER_BCAST
387 | ATH9K_RX_FILTER_MCAST
;
389 /* If not a STA, enable processing of Probe Requests */
390 if (sc
->sc_ah
->opmode
!= NL80211_IFTYPE_STATION
)
391 rfilt
|= ATH9K_RX_FILTER_PROBEREQ
;
394 * Set promiscuous mode when FIF_PROMISC_IN_BSS is enabled for station
395 * mode interface or when in monitor mode. AP mode does not need this
396 * since it receives all in-BSS frames anyway.
398 if (((sc
->sc_ah
->opmode
!= NL80211_IFTYPE_AP
) &&
399 (sc
->rx
.rxfilter
& FIF_PROMISC_IN_BSS
)) ||
400 (sc
->sc_ah
->opmode
== NL80211_IFTYPE_MONITOR
))
401 rfilt
|= ATH9K_RX_FILTER_PROM
;
403 if (sc
->rx
.rxfilter
& FIF_CONTROL
)
404 rfilt
|= ATH9K_RX_FILTER_CONTROL
;
406 if ((sc
->sc_ah
->opmode
== NL80211_IFTYPE_STATION
) &&
407 !(sc
->rx
.rxfilter
& FIF_BCN_PRBRESP_PROMISC
))
408 rfilt
|= ATH9K_RX_FILTER_MYBEACON
;
410 rfilt
|= ATH9K_RX_FILTER_BEACON
;
412 if ((AR_SREV_9280_10_OR_LATER(sc
->sc_ah
) ||
413 AR_SREV_9285_10_OR_LATER(sc
->sc_ah
)) &&
414 (sc
->sc_ah
->opmode
== NL80211_IFTYPE_AP
) &&
415 (sc
->rx
.rxfilter
& FIF_PSPOLL
))
416 rfilt
|= ATH9K_RX_FILTER_PSPOLL
;
418 if (conf_is_ht(&sc
->hw
->conf
))
419 rfilt
|= ATH9K_RX_FILTER_COMP_BAR
;
421 if (sc
->sec_wiphy
|| (sc
->rx
.rxfilter
& FIF_OTHER_BSS
)) {
422 /* TODO: only needed if more than one BSSID is in use in
423 * station/adhoc mode */
424 /* The following may also be needed for other older chips */
425 if (sc
->sc_ah
->hw_version
.macVersion
== AR_SREV_VERSION_9160
)
426 rfilt
|= ATH9K_RX_FILTER_PROM
;
427 rfilt
|= ATH9K_RX_FILTER_MCAST_BCAST_ALL
;
432 #undef RX_FILTER_PRESERVE
435 int ath_startrecv(struct ath_softc
*sc
)
437 struct ath_hw
*ah
= sc
->sc_ah
;
438 struct ath_buf
*bf
, *tbf
;
440 spin_lock_bh(&sc
->rx
.rxbuflock
);
441 if (list_empty(&sc
->rx
.rxbuf
))
444 sc
->rx
.rxlink
= NULL
;
445 list_for_each_entry_safe(bf
, tbf
, &sc
->rx
.rxbuf
, list
) {
446 ath_rx_buf_link(sc
, bf
);
449 /* We could have deleted elements so the list may be empty now */
450 if (list_empty(&sc
->rx
.rxbuf
))
453 bf
= list_first_entry(&sc
->rx
.rxbuf
, struct ath_buf
, list
);
454 ath9k_hw_putrxbuf(ah
, bf
->bf_daddr
);
458 spin_unlock_bh(&sc
->rx
.rxbuflock
);
460 ath9k_hw_startpcureceive(ah
);
465 bool ath_stoprecv(struct ath_softc
*sc
)
467 struct ath_hw
*ah
= sc
->sc_ah
;
470 ath9k_hw_stoppcurecv(ah
);
471 ath9k_hw_setrxfilter(ah
, 0);
472 stopped
= ath9k_hw_stopdmarecv(ah
);
473 sc
->rx
.rxlink
= NULL
;
478 void ath_flushrecv(struct ath_softc
*sc
)
480 spin_lock_bh(&sc
->rx
.rxflushlock
);
481 sc
->sc_flags
|= SC_OP_RXFLUSH
;
482 ath_rx_tasklet(sc
, 1);
483 sc
->sc_flags
&= ~SC_OP_RXFLUSH
;
484 spin_unlock_bh(&sc
->rx
.rxflushlock
);
487 static bool ath_beacon_dtim_pending_cab(struct sk_buff
*skb
)
489 /* Check whether the Beacon frame has DTIM indicating buffered bc/mc */
490 struct ieee80211_mgmt
*mgmt
;
491 u8
*pos
, *end
, id
, elen
;
492 struct ieee80211_tim_ie
*tim
;
494 mgmt
= (struct ieee80211_mgmt
*)skb
->data
;
495 pos
= mgmt
->u
.beacon
.variable
;
496 end
= skb
->data
+ skb
->len
;
498 while (pos
+ 2 < end
) {
501 if (pos
+ elen
> end
)
504 if (id
== WLAN_EID_TIM
) {
505 if (elen
< sizeof(*tim
))
507 tim
= (struct ieee80211_tim_ie
*) pos
;
508 if (tim
->dtim_count
!= 0)
510 return tim
->bitmap_ctrl
& 0x01;
519 static void ath_rx_ps_beacon(struct ath_softc
*sc
, struct sk_buff
*skb
)
521 struct ieee80211_mgmt
*mgmt
;
522 struct ath_common
*common
= ath9k_hw_common(sc
->sc_ah
);
524 if (skb
->len
< 24 + 8 + 2 + 2)
527 mgmt
= (struct ieee80211_mgmt
*)skb
->data
;
528 if (memcmp(common
->curbssid
, mgmt
->bssid
, ETH_ALEN
) != 0)
529 return; /* not from our current AP */
531 sc
->sc_flags
&= ~SC_OP_WAIT_FOR_BEACON
;
533 if (sc
->sc_flags
& SC_OP_BEACON_SYNC
) {
534 sc
->sc_flags
&= ~SC_OP_BEACON_SYNC
;
535 ath_print(common
, ATH_DBG_PS
,
536 "Reconfigure Beacon timers based on "
537 "timestamp from the AP\n");
538 ath_beacon_config(sc
, NULL
);
541 if (ath_beacon_dtim_pending_cab(skb
)) {
543 * Remain awake waiting for buffered broadcast/multicast
544 * frames. If the last broadcast/multicast frame is not
545 * received properly, the next beacon frame will work as
546 * a backup trigger for returning into NETWORK SLEEP state,
547 * so we are waiting for it as well.
549 ath_print(common
, ATH_DBG_PS
, "Received DTIM beacon indicating "
550 "buffered broadcast/multicast frame(s)\n");
551 sc
->sc_flags
|= SC_OP_WAIT_FOR_CAB
| SC_OP_WAIT_FOR_BEACON
;
555 if (sc
->sc_flags
& SC_OP_WAIT_FOR_CAB
) {
557 * This can happen if a broadcast frame is dropped or the AP
558 * fails to send a frame indicating that all CAB frames have
561 sc
->sc_flags
&= ~SC_OP_WAIT_FOR_CAB
;
562 ath_print(common
, ATH_DBG_PS
,
563 "PS wait for CAB frames timed out\n");
567 static void ath_rx_ps(struct ath_softc
*sc
, struct sk_buff
*skb
)
569 struct ieee80211_hdr
*hdr
;
570 struct ath_common
*common
= ath9k_hw_common(sc
->sc_ah
);
572 hdr
= (struct ieee80211_hdr
*)skb
->data
;
574 /* Process Beacon and CAB receive in PS state */
575 if ((sc
->sc_flags
& SC_OP_WAIT_FOR_BEACON
) &&
576 ieee80211_is_beacon(hdr
->frame_control
))
577 ath_rx_ps_beacon(sc
, skb
);
578 else if ((sc
->sc_flags
& SC_OP_WAIT_FOR_CAB
) &&
579 (ieee80211_is_data(hdr
->frame_control
) ||
580 ieee80211_is_action(hdr
->frame_control
)) &&
581 is_multicast_ether_addr(hdr
->addr1
) &&
582 !ieee80211_has_moredata(hdr
->frame_control
)) {
584 * No more broadcast/multicast frames to be received at this
587 sc
->sc_flags
&= ~SC_OP_WAIT_FOR_CAB
;
588 ath_print(common
, ATH_DBG_PS
,
589 "All PS CAB frames received, back to sleep\n");
590 } else if ((sc
->sc_flags
& SC_OP_WAIT_FOR_PSPOLL_DATA
) &&
591 !is_multicast_ether_addr(hdr
->addr1
) &&
592 !ieee80211_has_morefrags(hdr
->frame_control
)) {
593 sc
->sc_flags
&= ~SC_OP_WAIT_FOR_PSPOLL_DATA
;
594 ath_print(common
, ATH_DBG_PS
,
595 "Going back to sleep after having received "
596 "PS-Poll data (0x%x)\n",
597 sc
->sc_flags
& (SC_OP_WAIT_FOR_BEACON
|
599 SC_OP_WAIT_FOR_PSPOLL_DATA
|
600 SC_OP_WAIT_FOR_TX_ACK
));
604 static void ath_rx_send_to_mac80211(struct ieee80211_hw
*hw
,
605 struct ath_softc
*sc
, struct sk_buff
*skb
,
606 struct ieee80211_rx_status
*rx_status
)
608 struct ieee80211_hdr
*hdr
;
610 hdr
= (struct ieee80211_hdr
*)skb
->data
;
612 /* Send the frame to mac80211 */
613 if (is_multicast_ether_addr(hdr
->addr1
)) {
616 * Deliver broadcast/multicast frames to all suitable
619 /* TODO: filter based on channel configuration */
620 for (i
= 0; i
< sc
->num_sec_wiphy
; i
++) {
621 struct ath_wiphy
*aphy
= sc
->sec_wiphy
[i
];
622 struct sk_buff
*nskb
;
625 nskb
= skb_copy(skb
, GFP_ATOMIC
);
627 memcpy(IEEE80211_SKB_RXCB(nskb
), rx_status
,
629 ieee80211_rx(aphy
->hw
, nskb
);
632 memcpy(IEEE80211_SKB_RXCB(skb
), rx_status
, sizeof(*rx_status
));
633 ieee80211_rx(sc
->hw
, skb
);
635 /* Deliver unicast frames based on receiver address */
636 memcpy(IEEE80211_SKB_RXCB(skb
), rx_status
, sizeof(*rx_status
));
637 ieee80211_rx(hw
, skb
);
641 int ath_rx_tasklet(struct ath_softc
*sc
, int flush
)
643 #define PA2DESC(_sc, _pa) \
644 ((struct ath_desc *)((caddr_t)(_sc)->rx.rxdma.dd_desc + \
645 ((_pa) - (_sc)->rx.rxdma.dd_desc_paddr)))
649 struct ath_rx_status
*rx_stats
;
650 struct sk_buff
*skb
= NULL
, *requeue_skb
;
651 struct ieee80211_rx_status rx_status
;
652 struct ath_hw
*ah
= sc
->sc_ah
;
653 struct ath_common
*common
= ath9k_hw_common(ah
);
655 * The hw can techncically differ from common->hw when using ath9k
656 * virtual wiphy so to account for that we iterate over the active
657 * wiphys and find the appropriate wiphy and therefore hw.
659 struct ieee80211_hw
*hw
= NULL
;
660 struct ieee80211_hdr
*hdr
;
661 int hdrlen
, padsize
, retval
;
662 bool decrypt_error
= false;
666 spin_lock_bh(&sc
->rx
.rxbuflock
);
669 /* If handling rx interrupt and flush is in progress => exit */
670 if ((sc
->sc_flags
& SC_OP_RXFLUSH
) && (flush
== 0))
673 if (list_empty(&sc
->rx
.rxbuf
)) {
674 sc
->rx
.rxlink
= NULL
;
678 bf
= list_first_entry(&sc
->rx
.rxbuf
, struct ath_buf
, list
);
682 * Must provide the virtual address of the current
683 * descriptor, the physical address, and the virtual
684 * address of the next descriptor in the h/w chain.
685 * This allows the HAL to look ahead to see if the
686 * hardware is done with a descriptor by checking the
687 * done bit in the following descriptor and the address
688 * of the current descriptor the DMA engine is working
689 * on. All this is necessary because of our use of
690 * a self-linked list to avoid rx overruns.
692 retval
= ath9k_hw_rxprocdesc(ah
, ds
,
694 PA2DESC(sc
, ds
->ds_link
),
696 if (retval
== -EINPROGRESS
) {
698 struct ath_desc
*tds
;
700 if (list_is_last(&bf
->list
, &sc
->rx
.rxbuf
)) {
701 sc
->rx
.rxlink
= NULL
;
705 tbf
= list_entry(bf
->list
.next
, struct ath_buf
, list
);
708 * On some hardware the descriptor status words could
709 * get corrupted, including the done bit. Because of
710 * this, check if the next descriptor's done bit is
713 * If the next descriptor's done bit is set, the current
714 * descriptor has been corrupted. Force s/w to discard
715 * this descriptor and continue...
719 retval
= ath9k_hw_rxprocdesc(ah
, tds
, tbf
->bf_daddr
,
720 PA2DESC(sc
, tds
->ds_link
), 0);
721 if (retval
== -EINPROGRESS
) {
731 * Synchronize the DMA transfer with CPU before
732 * 1. accessing the frame
733 * 2. requeueing the same buffer to h/w
735 dma_sync_single_for_cpu(sc
->dev
, bf
->bf_buf_addr
,
739 hdr
= (struct ieee80211_hdr
*) skb
->data
;
740 hw
= ath_get_virt_hw(sc
, hdr
);
741 rx_stats
= &ds
->ds_rxstat
;
744 * If we're asked to flush receive queue, directly
745 * chain it back at the queue without processing it.
750 if (!rx_stats
->rs_datalen
)
753 /* The status portion of the descriptor could get corrupted. */
754 if (sc
->rx
.bufsize
< rx_stats
->rs_datalen
)
757 if (!ath_rx_prepare(hw
, skb
, rx_stats
,
758 &rx_status
, &decrypt_error
, sc
))
761 /* Ensure we always have an skb to requeue once we are done
762 * processing the current buffer's skb */
763 requeue_skb
= ath_rxbuf_alloc(common
, sc
->rx
.bufsize
, GFP_ATOMIC
);
765 /* If there is no memory we ignore the current RX'd frame,
766 * tell hardware it can give us a new frame using the old
767 * skb and put it at the tail of the sc->rx.rxbuf list for
772 /* Unmap the frame */
773 dma_unmap_single(sc
->dev
, bf
->bf_buf_addr
,
777 skb_put(skb
, rx_stats
->rs_datalen
);
779 /* see if any padding is done by the hw and remove it */
780 hdrlen
= ieee80211_get_hdrlen_from_skb(skb
);
781 fc
= hdr
->frame_control
;
783 /* The MAC header is padded to have 32-bit boundary if the
784 * packet payload is non-zero. The general calculation for
785 * padsize would take into account odd header lengths:
786 * padsize = (4 - hdrlen % 4) % 4; However, since only
787 * even-length headers are used, padding can only be 0 or 2
788 * bytes and we can optimize this a bit. In addition, we must
789 * not try to remove padding from short control frames that do
790 * not have payload. */
791 padsize
= hdrlen
& 3;
792 if (padsize
&& hdrlen
>= 24) {
793 memmove(skb
->data
+ padsize
, skb
->data
, hdrlen
);
794 skb_pull(skb
, padsize
);
797 keyix
= rx_stats
->rs_keyix
;
799 if (!(keyix
== ATH9K_RXKEYIX_INVALID
) && !decrypt_error
) {
800 rx_status
.flag
|= RX_FLAG_DECRYPTED
;
801 } else if (ieee80211_has_protected(fc
)
802 && !decrypt_error
&& skb
->len
>= hdrlen
+ 4) {
803 keyix
= skb
->data
[hdrlen
+ 3] >> 6;
805 if (test_bit(keyix
, sc
->keymap
))
806 rx_status
.flag
|= RX_FLAG_DECRYPTED
;
808 if (ah
->sw_mgmt_crypto
&&
809 (rx_status
.flag
& RX_FLAG_DECRYPTED
) &&
810 ieee80211_is_mgmt(fc
)) {
811 /* Use software decrypt for management frames. */
812 rx_status
.flag
&= ~RX_FLAG_DECRYPTED
;
815 /* We will now give hardware our shiny new allocated skb */
816 bf
->bf_mpdu
= requeue_skb
;
817 bf
->bf_buf_addr
= dma_map_single(sc
->dev
, requeue_skb
->data
,
820 if (unlikely(dma_mapping_error(sc
->dev
,
822 dev_kfree_skb_any(requeue_skb
);
824 ath_print(common
, ATH_DBG_FATAL
,
825 "dma_mapping_error() on RX\n");
826 ath_rx_send_to_mac80211(hw
, sc
, skb
, &rx_status
);
829 bf
->bf_dmacontext
= bf
->bf_buf_addr
;
832 * change the default rx antenna if rx diversity chooses the
833 * other antenna 3 times in a row.
835 if (sc
->rx
.defant
!= ds
->ds_rxstat
.rs_antenna
) {
836 if (++sc
->rx
.rxotherant
>= 3)
837 ath_setdefantenna(sc
, rx_stats
->rs_antenna
);
839 sc
->rx
.rxotherant
= 0;
842 if (unlikely(sc
->sc_flags
& (SC_OP_WAIT_FOR_BEACON
|
844 SC_OP_WAIT_FOR_PSPOLL_DATA
)))
847 ath_rx_send_to_mac80211(hw
, sc
, skb
, &rx_status
);
850 list_move_tail(&bf
->list
, &sc
->rx
.rxbuf
);
851 ath_rx_buf_link(sc
, bf
);
854 spin_unlock_bh(&sc
->rx
.rxbuflock
);