ath9k_hw: move ath_extend_tsf() to hw code to share as ath9k_hw_extend_tsf()
[linux-flexiantxendom0-natty.git] / drivers / net / wireless / ath / ath9k / recv.c
1 /*
2  * Copyright (c) 2008-2009 Atheros Communications Inc.
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
17 #include "ath9k.h"
18
19 static struct ieee80211_hw * ath_get_virt_hw(struct ath_softc *sc,
20                                              struct ieee80211_hdr *hdr)
21 {
22         struct ieee80211_hw *hw = sc->pri_wiphy->hw;
23         int i;
24
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];
28                 if (aphy == NULL)
29                         continue;
30                 if (compare_ether_addr(hdr->addr1, aphy->hw->wiphy->perm_addr)
31                     == 0) {
32                         hw = aphy->hw;
33                         break;
34                 }
35         }
36         spin_unlock_bh(&sc->wiphy_lock);
37         return hw;
38 }
39
40 /*
41  * Setup and link descriptors.
42  *
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.
47  */
48 static void ath_rx_buf_link(struct ath_softc *sc, struct ath_buf *bf)
49 {
50         struct ath_hw *ah = sc->sc_ah;
51         struct ath_desc *ds;
52         struct sk_buff *skb;
53
54         ATH_RXBUF_RESET(bf);
55
56         ds = bf->bf_desc;
57         ds->ds_link = 0; /* link to null */
58         ds->ds_data = bf->bf_buf_addr;
59
60         /* virtual addr of the beginning of the buffer. */
61         skb = bf->bf_mpdu;
62         BUG_ON(skb == NULL);
63         ds->ds_vdata = skb->data;
64
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
67          * to process */
68         ath9k_hw_setuprxdesc(ah, ds,
69                              sc->rx.bufsize,
70                              0);
71
72         if (sc->rx.rxlink == NULL)
73                 ath9k_hw_putrxbuf(ah, bf->bf_daddr);
74         else
75                 *sc->rx.rxlink = bf->bf_daddr;
76
77         sc->rx.rxlink = &ds->ds_link;
78         ath9k_hw_rxena(ah);
79 }
80
81 static void ath_setdefantenna(struct ath_softc *sc, u32 antenna)
82 {
83         /* XXX block beacon interrupts */
84         ath9k_hw_setantenna(sc->sc_ah, antenna);
85         sc->rx.defant = antenna;
86         sc->rx.rxotherant = 0;
87 }
88
89 /*
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.
93  */
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,
97                           struct ath_softc *sc)
98 {
99         struct ieee80211_hdr *hdr;
100         u8 ratecode;
101         __le16 fc;
102         struct ieee80211_sta *sta;
103         struct ath_node *an;
104         int last_rssi = ATH_RSSI_DUMMY_MARKER;
105
106         hdr = (struct ieee80211_hdr *)skb->data;
107         fc = hdr->frame_control;
108         memset(rx_status, 0, sizeof(struct ieee80211_rx_status));
109
110         if (rx_stats->rs_more) {
111                 /*
112                  * Frame spans multiple descriptors; this cannot happen yet
113                  * as we don't support jumbograms. If not in monitor mode,
114                  * discard the frame. Enable this if you want to see
115                  * error frames in Monitor mode.
116                  */
117                 if (sc->sc_ah->opmode != NL80211_IFTYPE_MONITOR)
118                         goto rx_next;
119         } else if (rx_stats->rs_status != 0) {
120                 if (rx_stats->rs_status & ATH9K_RXERR_CRC)
121                         rx_status->flag |= RX_FLAG_FAILED_FCS_CRC;
122                 if (rx_stats->rs_status & ATH9K_RXERR_PHY)
123                         goto rx_next;
124
125                 if (rx_stats->rs_status & ATH9K_RXERR_DECRYPT) {
126                         *decrypt_error = true;
127                 } else if (rx_stats->rs_status & ATH9K_RXERR_MIC) {
128                         if (ieee80211_is_ctl(fc))
129                                 /*
130                                  * Sometimes, we get invalid
131                                  * MIC failures on valid control frames.
132                                  * Remove these mic errors.
133                                  */
134                                 rx_stats->rs_status &= ~ATH9K_RXERR_MIC;
135                         else
136                                 rx_status->flag |= RX_FLAG_MMIC_ERROR;
137                 }
138                 /*
139                  * Reject error frames with the exception of
140                  * decryption and MIC failures. For monitor mode,
141                  * we also ignore the CRC error.
142                  */
143                 if (sc->sc_ah->opmode == NL80211_IFTYPE_MONITOR) {
144                         if (rx_stats->rs_status &
145                             ~(ATH9K_RXERR_DECRYPT | ATH9K_RXERR_MIC |
146                               ATH9K_RXERR_CRC))
147                                 goto rx_next;
148                 } else {
149                         if (rx_stats->rs_status &
150                             ~(ATH9K_RXERR_DECRYPT | ATH9K_RXERR_MIC)) {
151                                 goto rx_next;
152                         }
153                 }
154         }
155
156         ratecode = rx_stats->rs_rate;
157
158         if (ratecode & 0x80) {
159                 /* HT rate */
160                 rx_status->flag |= RX_FLAG_HT;
161                 if (rx_stats->rs_flags & ATH9K_RX_2040)
162                         rx_status->flag |= RX_FLAG_40MHZ;
163                 if (rx_stats->rs_flags & ATH9K_RX_GI)
164                         rx_status->flag |= RX_FLAG_SHORT_GI;
165                 rx_status->rate_idx = ratecode & 0x7f;
166         } else {
167                 int i = 0, cur_band, n_rates;
168
169                 cur_band = hw->conf.channel->band;
170                 n_rates = sc->sbands[cur_band].n_bitrates;
171
172                 for (i = 0; i < n_rates; i++) {
173                         if (sc->sbands[cur_band].bitrates[i].hw_value ==
174                             ratecode) {
175                                 rx_status->rate_idx = i;
176                                 break;
177                         }
178
179                         if (sc->sbands[cur_band].bitrates[i].hw_value_short ==
180                             ratecode) {
181                                 rx_status->rate_idx = i;
182                                 rx_status->flag |= RX_FLAG_SHORTPRE;
183                                 break;
184                         }
185                 }
186         }
187
188         rcu_read_lock();
189         /* XXX: use ieee80211_find_sta! */
190         sta = ieee80211_find_sta_by_hw(hw, hdr->addr2);
191         if (sta) {
192                 an = (struct ath_node *) sta->drv_priv;
193                 if (rx_stats->rs_rssi != ATH9K_RSSI_BAD &&
194                    !rx_stats->rs_moreaggr)
195                         ATH_RSSI_LPF(an->last_rssi, rx_stats->rs_rssi);
196                 last_rssi = an->last_rssi;
197         }
198         rcu_read_unlock();
199
200         if (likely(last_rssi != ATH_RSSI_DUMMY_MARKER))
201                 rx_stats->rs_rssi = ATH_EP_RND(last_rssi,
202                                               ATH_RSSI_EP_MULTIPLIER);
203         if (rx_stats->rs_rssi < 0)
204                 rx_stats->rs_rssi = 0;
205         else if (rx_stats->rs_rssi > 127)
206                 rx_stats->rs_rssi = 127;
207
208         /* Update Beacon RSSI, this is used by ANI. */
209         if (ieee80211_is_beacon(fc))
210                 sc->sc_ah->stats.avgbrssi = rx_stats->rs_rssi;
211
212         rx_status->mactime = ath9k_hw_extend_tsf(sc->sc_ah, rx_stats->rs_tstamp);
213         rx_status->band = hw->conf.channel->band;
214         rx_status->freq = hw->conf.channel->center_freq;
215         rx_status->noise = sc->ani.noise_floor;
216         rx_status->signal = ATH_DEFAULT_NOISE_FLOOR + rx_stats->rs_rssi;
217         rx_status->antenna = rx_stats->rs_antenna;
218
219         /*
220          * Theory for reporting quality:
221          *
222          * At a hardware RSSI of 45 you will be able to use MCS 7  reliably.
223          * At a hardware RSSI of 45 you will be able to use MCS 15 reliably.
224          * At a hardware RSSI of 35 you should be able use 54 Mbps reliably.
225          *
226          * MCS 7  is the highets MCS index usable by a 1-stream device.
227          * MCS 15 is the highest MCS index usable by a 2-stream device.
228          *
229          * All ath9k devices are either 1-stream or 2-stream.
230          *
231          * How many bars you see is derived from the qual reporting.
232          *
233          * A more elaborate scheme can be used here but it requires tables
234          * of SNR/throughput for each possible mode used. For the MCS table
235          * you can refer to the wireless wiki:
236          *
237          * http://wireless.kernel.org/en/developers/Documentation/ieee80211/802.11n
238          *
239          */
240         if (conf_is_ht(&hw->conf))
241                 rx_status->qual =  rx_stats->rs_rssi * 100 / 45;
242         else
243                 rx_status->qual =  rx_stats->rs_rssi * 100 / 35;
244
245         /* rssi can be more than 45 though, anything above that
246          * should be considered at 100% */
247         if (rx_status->qual > 100)
248                 rx_status->qual = 100;
249
250         rx_status->flag |= RX_FLAG_TSFT;
251
252         return 1;
253 rx_next:
254         return 0;
255 }
256
257 static void ath_opmode_init(struct ath_softc *sc)
258 {
259         struct ath_hw *ah = sc->sc_ah;
260         struct ath_common *common = ath9k_hw_common(ah);
261
262         u32 rfilt, mfilt[2];
263
264         /* configure rx filter */
265         rfilt = ath_calcrxfilter(sc);
266         ath9k_hw_setrxfilter(ah, rfilt);
267
268         /* configure bssid mask */
269         if (ah->caps.hw_caps & ATH9K_HW_CAP_BSSIDMASK)
270                 ath_hw_setbssidmask(common);
271
272         /* configure operational mode */
273         ath9k_hw_setopmode(ah);
274
275         /* Handle any link-level address change. */
276         ath9k_hw_setmac(ah, common->macaddr);
277
278         /* calculate and install multicast filter */
279         mfilt[0] = mfilt[1] = ~0;
280         ath9k_hw_setmcastfilter(ah, mfilt[0], mfilt[1]);
281 }
282
283 int ath_rx_init(struct ath_softc *sc, int nbufs)
284 {
285         struct ath_common *common = ath9k_hw_common(sc->sc_ah);
286         struct sk_buff *skb;
287         struct ath_buf *bf;
288         int error = 0;
289
290         spin_lock_init(&sc->rx.rxflushlock);
291         sc->sc_flags &= ~SC_OP_RXFLUSH;
292         spin_lock_init(&sc->rx.rxbuflock);
293
294         sc->rx.bufsize = roundup(IEEE80211_MAX_MPDU_LEN,
295                                  min(common->cachelsz, (u16)64));
296
297         ath_print(common, ATH_DBG_CONFIG, "cachelsz %u rxbufsize %u\n",
298                   common->cachelsz, sc->rx.bufsize);
299
300         /* Initialize rx descriptors */
301
302         error = ath_descdma_setup(sc, &sc->rx.rxdma, &sc->rx.rxbuf,
303                                   "rx", nbufs, 1);
304         if (error != 0) {
305                 ath_print(common, ATH_DBG_FATAL,
306                           "failed to allocate rx descriptors: %d\n", error);
307                 goto err;
308         }
309
310         list_for_each_entry(bf, &sc->rx.rxbuf, list) {
311                 skb = ath_rxbuf_alloc(common, sc->rx.bufsize, GFP_KERNEL);
312                 if (skb == NULL) {
313                         error = -ENOMEM;
314                         goto err;
315                 }
316
317                 bf->bf_mpdu = skb;
318                 bf->bf_buf_addr = dma_map_single(sc->dev, skb->data,
319                                                  sc->rx.bufsize,
320                                                  DMA_FROM_DEVICE);
321                 if (unlikely(dma_mapping_error(sc->dev,
322                                                bf->bf_buf_addr))) {
323                         dev_kfree_skb_any(skb);
324                         bf->bf_mpdu = NULL;
325                         ath_print(common, ATH_DBG_FATAL,
326                                   "dma_mapping_error() on RX init\n");
327                         error = -ENOMEM;
328                         goto err;
329                 }
330                 bf->bf_dmacontext = bf->bf_buf_addr;
331         }
332         sc->rx.rxlink = NULL;
333
334 err:
335         if (error)
336                 ath_rx_cleanup(sc);
337
338         return error;
339 }
340
341 void ath_rx_cleanup(struct ath_softc *sc)
342 {
343         struct sk_buff *skb;
344         struct ath_buf *bf;
345
346         list_for_each_entry(bf, &sc->rx.rxbuf, list) {
347                 skb = bf->bf_mpdu;
348                 if (skb) {
349                         dma_unmap_single(sc->dev, bf->bf_buf_addr,
350                                          sc->rx.bufsize, DMA_FROM_DEVICE);
351                         dev_kfree_skb(skb);
352                 }
353         }
354
355         if (sc->rx.rxdma.dd_desc_len != 0)
356                 ath_descdma_cleanup(sc, &sc->rx.rxdma, &sc->rx.rxbuf);
357 }
358
359 /*
360  * Calculate the receive filter according to the
361  * operating mode and state:
362  *
363  * o always accept unicast, broadcast, and multicast traffic
364  * o maintain current state of phy error reception (the hal
365  *   may enable phy error frames for noise immunity work)
366  * o probe request frames are accepted only when operating in
367  *   hostap, adhoc, or monitor modes
368  * o enable promiscuous mode according to the interface state
369  * o accept beacons:
370  *   - when operating in adhoc mode so the 802.11 layer creates
371  *     node table entries for peers,
372  *   - when operating in station mode for collecting rssi data when
373  *     the station is otherwise quiet, or
374  *   - when operating as a repeater so we see repeater-sta beacons
375  *   - when scanning
376  */
377
378 u32 ath_calcrxfilter(struct ath_softc *sc)
379 {
380 #define RX_FILTER_PRESERVE (ATH9K_RX_FILTER_PHYERR | ATH9K_RX_FILTER_PHYRADAR)
381
382         u32 rfilt;
383
384         rfilt = (ath9k_hw_getrxfilter(sc->sc_ah) & RX_FILTER_PRESERVE)
385                 | ATH9K_RX_FILTER_UCAST | ATH9K_RX_FILTER_BCAST
386                 | ATH9K_RX_FILTER_MCAST;
387
388         /* If not a STA, enable processing of Probe Requests */
389         if (sc->sc_ah->opmode != NL80211_IFTYPE_STATION)
390                 rfilt |= ATH9K_RX_FILTER_PROBEREQ;
391
392         /*
393          * Set promiscuous mode when FIF_PROMISC_IN_BSS is enabled for station
394          * mode interface or when in monitor mode. AP mode does not need this
395          * since it receives all in-BSS frames anyway.
396          */
397         if (((sc->sc_ah->opmode != NL80211_IFTYPE_AP) &&
398              (sc->rx.rxfilter & FIF_PROMISC_IN_BSS)) ||
399             (sc->sc_ah->opmode == NL80211_IFTYPE_MONITOR))
400                 rfilt |= ATH9K_RX_FILTER_PROM;
401
402         if (sc->rx.rxfilter & FIF_CONTROL)
403                 rfilt |= ATH9K_RX_FILTER_CONTROL;
404
405         if ((sc->sc_ah->opmode == NL80211_IFTYPE_STATION) &&
406             !(sc->rx.rxfilter & FIF_BCN_PRBRESP_PROMISC))
407                 rfilt |= ATH9K_RX_FILTER_MYBEACON;
408         else
409                 rfilt |= ATH9K_RX_FILTER_BEACON;
410
411         if ((AR_SREV_9280_10_OR_LATER(sc->sc_ah) ||
412             AR_SREV_9285_10_OR_LATER(sc->sc_ah)) &&
413             (sc->sc_ah->opmode == NL80211_IFTYPE_AP) &&
414             (sc->rx.rxfilter & FIF_PSPOLL))
415                 rfilt |= ATH9K_RX_FILTER_PSPOLL;
416
417         if (conf_is_ht(&sc->hw->conf))
418                 rfilt |= ATH9K_RX_FILTER_COMP_BAR;
419
420         if (sc->sec_wiphy || (sc->rx.rxfilter & FIF_OTHER_BSS)) {
421                 /* TODO: only needed if more than one BSSID is in use in
422                  * station/adhoc mode */
423                 /* The following may also be needed for other older chips */
424                 if (sc->sc_ah->hw_version.macVersion == AR_SREV_VERSION_9160)
425                         rfilt |= ATH9K_RX_FILTER_PROM;
426                 rfilt |= ATH9K_RX_FILTER_MCAST_BCAST_ALL;
427         }
428
429         return rfilt;
430
431 #undef RX_FILTER_PRESERVE
432 }
433
434 int ath_startrecv(struct ath_softc *sc)
435 {
436         struct ath_hw *ah = sc->sc_ah;
437         struct ath_buf *bf, *tbf;
438
439         spin_lock_bh(&sc->rx.rxbuflock);
440         if (list_empty(&sc->rx.rxbuf))
441                 goto start_recv;
442
443         sc->rx.rxlink = NULL;
444         list_for_each_entry_safe(bf, tbf, &sc->rx.rxbuf, list) {
445                 ath_rx_buf_link(sc, bf);
446         }
447
448         /* We could have deleted elements so the list may be empty now */
449         if (list_empty(&sc->rx.rxbuf))
450                 goto start_recv;
451
452         bf = list_first_entry(&sc->rx.rxbuf, struct ath_buf, list);
453         ath9k_hw_putrxbuf(ah, bf->bf_daddr);
454         ath9k_hw_rxena(ah);
455
456 start_recv:
457         spin_unlock_bh(&sc->rx.rxbuflock);
458         ath_opmode_init(sc);
459         ath9k_hw_startpcureceive(ah);
460
461         return 0;
462 }
463
464 bool ath_stoprecv(struct ath_softc *sc)
465 {
466         struct ath_hw *ah = sc->sc_ah;
467         bool stopped;
468
469         ath9k_hw_stoppcurecv(ah);
470         ath9k_hw_setrxfilter(ah, 0);
471         stopped = ath9k_hw_stopdmarecv(ah);
472         sc->rx.rxlink = NULL;
473
474         return stopped;
475 }
476
477 void ath_flushrecv(struct ath_softc *sc)
478 {
479         spin_lock_bh(&sc->rx.rxflushlock);
480         sc->sc_flags |= SC_OP_RXFLUSH;
481         ath_rx_tasklet(sc, 1);
482         sc->sc_flags &= ~SC_OP_RXFLUSH;
483         spin_unlock_bh(&sc->rx.rxflushlock);
484 }
485
486 static bool ath_beacon_dtim_pending_cab(struct sk_buff *skb)
487 {
488         /* Check whether the Beacon frame has DTIM indicating buffered bc/mc */
489         struct ieee80211_mgmt *mgmt;
490         u8 *pos, *end, id, elen;
491         struct ieee80211_tim_ie *tim;
492
493         mgmt = (struct ieee80211_mgmt *)skb->data;
494         pos = mgmt->u.beacon.variable;
495         end = skb->data + skb->len;
496
497         while (pos + 2 < end) {
498                 id = *pos++;
499                 elen = *pos++;
500                 if (pos + elen > end)
501                         break;
502
503                 if (id == WLAN_EID_TIM) {
504                         if (elen < sizeof(*tim))
505                                 break;
506                         tim = (struct ieee80211_tim_ie *) pos;
507                         if (tim->dtim_count != 0)
508                                 break;
509                         return tim->bitmap_ctrl & 0x01;
510                 }
511
512                 pos += elen;
513         }
514
515         return false;
516 }
517
518 static void ath_rx_ps_beacon(struct ath_softc *sc, struct sk_buff *skb)
519 {
520         struct ieee80211_mgmt *mgmt;
521         struct ath_common *common = ath9k_hw_common(sc->sc_ah);
522
523         if (skb->len < 24 + 8 + 2 + 2)
524                 return;
525
526         mgmt = (struct ieee80211_mgmt *)skb->data;
527         if (memcmp(common->curbssid, mgmt->bssid, ETH_ALEN) != 0)
528                 return; /* not from our current AP */
529
530         sc->sc_flags &= ~SC_OP_WAIT_FOR_BEACON;
531
532         if (sc->sc_flags & SC_OP_BEACON_SYNC) {
533                 sc->sc_flags &= ~SC_OP_BEACON_SYNC;
534                 ath_print(common, ATH_DBG_PS,
535                           "Reconfigure Beacon timers based on "
536                           "timestamp from the AP\n");
537                 ath_beacon_config(sc, NULL);
538         }
539
540         if (ath_beacon_dtim_pending_cab(skb)) {
541                 /*
542                  * Remain awake waiting for buffered broadcast/multicast
543                  * frames. If the last broadcast/multicast frame is not
544                  * received properly, the next beacon frame will work as
545                  * a backup trigger for returning into NETWORK SLEEP state,
546                  * so we are waiting for it as well.
547                  */
548                 ath_print(common, ATH_DBG_PS, "Received DTIM beacon indicating "
549                           "buffered broadcast/multicast frame(s)\n");
550                 sc->sc_flags |= SC_OP_WAIT_FOR_CAB | SC_OP_WAIT_FOR_BEACON;
551                 return;
552         }
553
554         if (sc->sc_flags & SC_OP_WAIT_FOR_CAB) {
555                 /*
556                  * This can happen if a broadcast frame is dropped or the AP
557                  * fails to send a frame indicating that all CAB frames have
558                  * been delivered.
559                  */
560                 sc->sc_flags &= ~SC_OP_WAIT_FOR_CAB;
561                 ath_print(common, ATH_DBG_PS,
562                           "PS wait for CAB frames timed out\n");
563         }
564 }
565
566 static void ath_rx_ps(struct ath_softc *sc, struct sk_buff *skb)
567 {
568         struct ieee80211_hdr *hdr;
569         struct ath_common *common = ath9k_hw_common(sc->sc_ah);
570
571         hdr = (struct ieee80211_hdr *)skb->data;
572
573         /* Process Beacon and CAB receive in PS state */
574         if ((sc->sc_flags & SC_OP_WAIT_FOR_BEACON) &&
575             ieee80211_is_beacon(hdr->frame_control))
576                 ath_rx_ps_beacon(sc, skb);
577         else if ((sc->sc_flags & SC_OP_WAIT_FOR_CAB) &&
578                  (ieee80211_is_data(hdr->frame_control) ||
579                   ieee80211_is_action(hdr->frame_control)) &&
580                  is_multicast_ether_addr(hdr->addr1) &&
581                  !ieee80211_has_moredata(hdr->frame_control)) {
582                 /*
583                  * No more broadcast/multicast frames to be received at this
584                  * point.
585                  */
586                 sc->sc_flags &= ~SC_OP_WAIT_FOR_CAB;
587                 ath_print(common, ATH_DBG_PS,
588                           "All PS CAB frames received, back to sleep\n");
589         } else if ((sc->sc_flags & SC_OP_WAIT_FOR_PSPOLL_DATA) &&
590                    !is_multicast_ether_addr(hdr->addr1) &&
591                    !ieee80211_has_morefrags(hdr->frame_control)) {
592                 sc->sc_flags &= ~SC_OP_WAIT_FOR_PSPOLL_DATA;
593                 ath_print(common, ATH_DBG_PS,
594                           "Going back to sleep after having received "
595                           "PS-Poll data (0x%x)\n",
596                         sc->sc_flags & (SC_OP_WAIT_FOR_BEACON |
597                                         SC_OP_WAIT_FOR_CAB |
598                                         SC_OP_WAIT_FOR_PSPOLL_DATA |
599                                         SC_OP_WAIT_FOR_TX_ACK));
600         }
601 }
602
603 static void ath_rx_send_to_mac80211(struct ieee80211_hw *hw,
604                                     struct ath_softc *sc, struct sk_buff *skb,
605                                     struct ieee80211_rx_status *rx_status)
606 {
607         struct ieee80211_hdr *hdr;
608
609         hdr = (struct ieee80211_hdr *)skb->data;
610
611         /* Send the frame to mac80211 */
612         if (is_multicast_ether_addr(hdr->addr1)) {
613                 int i;
614                 /*
615                  * Deliver broadcast/multicast frames to all suitable
616                  * virtual wiphys.
617                  */
618                 /* TODO: filter based on channel configuration */
619                 for (i = 0; i < sc->num_sec_wiphy; i++) {
620                         struct ath_wiphy *aphy = sc->sec_wiphy[i];
621                         struct sk_buff *nskb;
622                         if (aphy == NULL)
623                                 continue;
624                         nskb = skb_copy(skb, GFP_ATOMIC);
625                         if (nskb) {
626                                 memcpy(IEEE80211_SKB_RXCB(nskb), rx_status,
627                                         sizeof(*rx_status));
628                                 ieee80211_rx(aphy->hw, nskb);
629                         }
630                 }
631                 memcpy(IEEE80211_SKB_RXCB(skb), rx_status, sizeof(*rx_status));
632                 ieee80211_rx(sc->hw, skb);
633         } else {
634                 /* Deliver unicast frames based on receiver address */
635                 memcpy(IEEE80211_SKB_RXCB(skb), rx_status, sizeof(*rx_status));
636                 ieee80211_rx(hw, skb);
637         }
638 }
639
640 int ath_rx_tasklet(struct ath_softc *sc, int flush)
641 {
642 #define PA2DESC(_sc, _pa)                                               \
643         ((struct ath_desc *)((caddr_t)(_sc)->rx.rxdma.dd_desc +         \
644                              ((_pa) - (_sc)->rx.rxdma.dd_desc_paddr)))
645
646         struct ath_buf *bf;
647         struct ath_desc *ds;
648         struct ath_rx_status *rx_stats;
649         struct sk_buff *skb = NULL, *requeue_skb;
650         struct ieee80211_rx_status rx_status;
651         struct ath_hw *ah = sc->sc_ah;
652         struct ath_common *common = ath9k_hw_common(ah);
653         /*
654          * The hw can techncically differ from common->hw when using ath9k
655          * virtual wiphy so to account for that we iterate over the active
656          * wiphys and find the appropriate wiphy and therefore hw.
657          */
658         struct ieee80211_hw *hw = NULL;
659         struct ieee80211_hdr *hdr;
660         int hdrlen, padsize, retval;
661         bool decrypt_error = false;
662         u8 keyix;
663         __le16 fc;
664
665         spin_lock_bh(&sc->rx.rxbuflock);
666
667         do {
668                 /* If handling rx interrupt and flush is in progress => exit */
669                 if ((sc->sc_flags & SC_OP_RXFLUSH) && (flush == 0))
670                         break;
671
672                 if (list_empty(&sc->rx.rxbuf)) {
673                         sc->rx.rxlink = NULL;
674                         break;
675                 }
676
677                 bf = list_first_entry(&sc->rx.rxbuf, struct ath_buf, list);
678                 ds = bf->bf_desc;
679
680                 /*
681                  * Must provide the virtual address of the current
682                  * descriptor, the physical address, and the virtual
683                  * address of the next descriptor in the h/w chain.
684                  * This allows the HAL to look ahead to see if the
685                  * hardware is done with a descriptor by checking the
686                  * done bit in the following descriptor and the address
687                  * of the current descriptor the DMA engine is working
688                  * on.  All this is necessary because of our use of
689                  * a self-linked list to avoid rx overruns.
690                  */
691                 retval = ath9k_hw_rxprocdesc(ah, ds,
692                                              bf->bf_daddr,
693                                              PA2DESC(sc, ds->ds_link),
694                                              0);
695                 if (retval == -EINPROGRESS) {
696                         struct ath_buf *tbf;
697                         struct ath_desc *tds;
698
699                         if (list_is_last(&bf->list, &sc->rx.rxbuf)) {
700                                 sc->rx.rxlink = NULL;
701                                 break;
702                         }
703
704                         tbf = list_entry(bf->list.next, struct ath_buf, list);
705
706                         /*
707                          * On some hardware the descriptor status words could
708                          * get corrupted, including the done bit. Because of
709                          * this, check if the next descriptor's done bit is
710                          * set or not.
711                          *
712                          * If the next descriptor's done bit is set, the current
713                          * descriptor has been corrupted. Force s/w to discard
714                          * this descriptor and continue...
715                          */
716
717                         tds = tbf->bf_desc;
718                         retval = ath9k_hw_rxprocdesc(ah, tds, tbf->bf_daddr,
719                                              PA2DESC(sc, tds->ds_link), 0);
720                         if (retval == -EINPROGRESS) {
721                                 break;
722                         }
723                 }
724
725                 skb = bf->bf_mpdu;
726                 if (!skb)
727                         continue;
728
729                 /*
730                  * Synchronize the DMA transfer with CPU before
731                  * 1. accessing the frame
732                  * 2. requeueing the same buffer to h/w
733                  */
734                 dma_sync_single_for_cpu(sc->dev, bf->bf_buf_addr,
735                                 sc->rx.bufsize,
736                                 DMA_FROM_DEVICE);
737
738                 hdr = (struct ieee80211_hdr *) skb->data;
739                 hw = ath_get_virt_hw(sc, hdr);
740                 rx_stats = &ds->ds_rxstat;
741
742                 /*
743                  * If we're asked to flush receive queue, directly
744                  * chain it back at the queue without processing it.
745                  */
746                 if (flush)
747                         goto requeue;
748
749                 if (!rx_stats->rs_datalen)
750                         goto requeue;
751
752                 /* The status portion of the descriptor could get corrupted. */
753                 if (sc->rx.bufsize < rx_stats->rs_datalen)
754                         goto requeue;
755
756                 if (!ath_rx_prepare(hw, skb, rx_stats,
757                                     &rx_status, &decrypt_error, sc))
758                         goto requeue;
759
760                 /* Ensure we always have an skb to requeue once we are done
761                  * processing the current buffer's skb */
762                 requeue_skb = ath_rxbuf_alloc(common, sc->rx.bufsize, GFP_ATOMIC);
763
764                 /* If there is no memory we ignore the current RX'd frame,
765                  * tell hardware it can give us a new frame using the old
766                  * skb and put it at the tail of the sc->rx.rxbuf list for
767                  * processing. */
768                 if (!requeue_skb)
769                         goto requeue;
770
771                 /* Unmap the frame */
772                 dma_unmap_single(sc->dev, bf->bf_buf_addr,
773                                  sc->rx.bufsize,
774                                  DMA_FROM_DEVICE);
775
776                 skb_put(skb, rx_stats->rs_datalen);
777
778                 /* see if any padding is done by the hw and remove it */
779                 hdrlen = ieee80211_get_hdrlen_from_skb(skb);
780                 fc = hdr->frame_control;
781
782                 /* The MAC header is padded to have 32-bit boundary if the
783                  * packet payload is non-zero. The general calculation for
784                  * padsize would take into account odd header lengths:
785                  * padsize = (4 - hdrlen % 4) % 4; However, since only
786                  * even-length headers are used, padding can only be 0 or 2
787                  * bytes and we can optimize this a bit. In addition, we must
788                  * not try to remove padding from short control frames that do
789                  * not have payload. */
790                 padsize = hdrlen & 3;
791                 if (padsize && hdrlen >= 24) {
792                         memmove(skb->data + padsize, skb->data, hdrlen);
793                         skb_pull(skb, padsize);
794                 }
795
796                 keyix = rx_stats->rs_keyix;
797
798                 if (!(keyix == ATH9K_RXKEYIX_INVALID) && !decrypt_error) {
799                         rx_status.flag |= RX_FLAG_DECRYPTED;
800                 } else if (ieee80211_has_protected(fc)
801                            && !decrypt_error && skb->len >= hdrlen + 4) {
802                         keyix = skb->data[hdrlen + 3] >> 6;
803
804                         if (test_bit(keyix, sc->keymap))
805                                 rx_status.flag |= RX_FLAG_DECRYPTED;
806                 }
807                 if (ah->sw_mgmt_crypto &&
808                     (rx_status.flag & RX_FLAG_DECRYPTED) &&
809                     ieee80211_is_mgmt(fc)) {
810                         /* Use software decrypt for management frames. */
811                         rx_status.flag &= ~RX_FLAG_DECRYPTED;
812                 }
813
814                 /* We will now give hardware our shiny new allocated skb */
815                 bf->bf_mpdu = requeue_skb;
816                 bf->bf_buf_addr = dma_map_single(sc->dev, requeue_skb->data,
817                                          sc->rx.bufsize,
818                                          DMA_FROM_DEVICE);
819                 if (unlikely(dma_mapping_error(sc->dev,
820                           bf->bf_buf_addr))) {
821                         dev_kfree_skb_any(requeue_skb);
822                         bf->bf_mpdu = NULL;
823                         ath_print(common, ATH_DBG_FATAL,
824                                   "dma_mapping_error() on RX\n");
825                         ath_rx_send_to_mac80211(hw, sc, skb, &rx_status);
826                         break;
827                 }
828                 bf->bf_dmacontext = bf->bf_buf_addr;
829
830                 /*
831                  * change the default rx antenna if rx diversity chooses the
832                  * other antenna 3 times in a row.
833                  */
834                 if (sc->rx.defant != ds->ds_rxstat.rs_antenna) {
835                         if (++sc->rx.rxotherant >= 3)
836                                 ath_setdefantenna(sc, rx_stats->rs_antenna);
837                 } else {
838                         sc->rx.rxotherant = 0;
839                 }
840
841                 if (unlikely(sc->sc_flags & (SC_OP_WAIT_FOR_BEACON |
842                                              SC_OP_WAIT_FOR_CAB |
843                                              SC_OP_WAIT_FOR_PSPOLL_DATA)))
844                         ath_rx_ps(sc, skb);
845
846                 ath_rx_send_to_mac80211(hw, sc, skb, &rx_status);
847
848 requeue:
849                 list_move_tail(&bf->list, &sc->rx.rxbuf);
850                 ath_rx_buf_link(sc, bf);
851         } while (1);
852
853         spin_unlock_bh(&sc->rx.rxbuflock);
854
855         return 0;
856 #undef PA2DESC
857 }