blob: 865e043e8aa6408c92e2b512ffcc7ba69c4ed39f [file] [log] [blame]
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001/*
Sujith Manoharan5b681382011-05-17 13:36:18 +05302 * Copyright (c) 2008-2011 Atheros Communications Inc.
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07003 *
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
Alexey Dobriyanb7f080c2011-06-16 11:01:34 +000017#include <linux/dma-mapping.h>
Simon Wunderliche93d0832013-01-08 14:48:58 +010018#include <linux/relay.h>
Sujith394cf0a2009-02-09 13:26:54 +053019#include "ath9k.h"
Luis R. Rodriguezb622a722010-04-15 17:39:28 -040020#include "ar9003_mac.h"
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070021
Felix Fietkaub5c804752010-04-15 17:38:48 -040022#define SKB_CB_ATHBUF(__skb) (*((struct ath_buf **)__skb->cb))
23
Vasanthakumar Thiagarajanededf1f2010-05-22 23:58:13 -070024static inline bool ath9k_check_auto_sleep(struct ath_softc *sc)
25{
26 return sc->ps_enabled &&
27 (sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_AUTOSLEEP);
28}
29
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070030/*
31 * Setup and link descriptors.
32 *
33 * 11N: we can no longer afford to self link the last descriptor.
34 * MAC acknowledges BA status as long as it copies frames to host
35 * buffer (or rx fifo). This can incorrectly acknowledge packets
36 * to a sender if last desc is self-linked.
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070037 */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070038static void ath_rx_buf_link(struct ath_softc *sc, struct ath_buf *bf)
39{
Sujithcbe61d82009-02-09 13:27:12 +053040 struct ath_hw *ah = sc->sc_ah;
Luis R. Rodriguezcc861f72009-11-04 09:11:34 -080041 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070042 struct ath_desc *ds;
43 struct sk_buff *skb;
44
45 ATH_RXBUF_RESET(bf);
46
47 ds = bf->bf_desc;
Sujithbe0418a2008-11-18 09:05:55 +053048 ds->ds_link = 0; /* link to null */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070049 ds->ds_data = bf->bf_buf_addr;
50
Sujithbe0418a2008-11-18 09:05:55 +053051 /* virtual addr of the beginning of the buffer. */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070052 skb = bf->bf_mpdu;
Luis R. Rodriguez9680e8a2009-09-13 23:28:00 -070053 BUG_ON(skb == NULL);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070054 ds->ds_vdata = skb->data;
55
Luis R. Rodriguezcc861f72009-11-04 09:11:34 -080056 /*
57 * setup rx descriptors. The rx_bufsize here tells the hardware
Luis R. Rodriguezb4b6cda2008-11-20 17:15:13 -080058 * how much data it can DMA to us and that we are prepared
Luis R. Rodriguezcc861f72009-11-04 09:11:34 -080059 * to process
60 */
Sujithb77f4832008-12-07 21:44:03 +053061 ath9k_hw_setuprxdesc(ah, ds,
Luis R. Rodriguezcc861f72009-11-04 09:11:34 -080062 common->rx_bufsize,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070063 0);
64
Sujithb77f4832008-12-07 21:44:03 +053065 if (sc->rx.rxlink == NULL)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070066 ath9k_hw_putrxbuf(ah, bf->bf_daddr);
67 else
Sujithb77f4832008-12-07 21:44:03 +053068 *sc->rx.rxlink = bf->bf_daddr;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070069
Sujithb77f4832008-12-07 21:44:03 +053070 sc->rx.rxlink = &ds->ds_link;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070071}
72
Sujithff37e332008-11-24 12:07:55 +053073static void ath_setdefantenna(struct ath_softc *sc, u32 antenna)
74{
75 /* XXX block beacon interrupts */
76 ath9k_hw_setantenna(sc->sc_ah, antenna);
Sujithb77f4832008-12-07 21:44:03 +053077 sc->rx.defant = antenna;
78 sc->rx.rxotherant = 0;
Sujithff37e332008-11-24 12:07:55 +053079}
80
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070081static void ath_opmode_init(struct ath_softc *sc)
82{
Sujithcbe61d82009-02-09 13:27:12 +053083 struct ath_hw *ah = sc->sc_ah;
Luis R. Rodriguez15107182009-09-10 09:22:37 -070084 struct ath_common *common = ath9k_hw_common(ah);
85
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070086 u32 rfilt, mfilt[2];
87
88 /* configure rx filter */
89 rfilt = ath_calcrxfilter(sc);
90 ath9k_hw_setrxfilter(ah, rfilt);
91
92 /* configure bssid mask */
Felix Fietkau364734f2010-09-14 20:22:44 +020093 ath_hw_setbssidmask(common);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070094
95 /* configure operational mode */
96 ath9k_hw_setopmode(ah);
97
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070098 /* calculate and install multicast filter */
99 mfilt[0] = mfilt[1] = ~0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700100 ath9k_hw_setmcastfilter(ah, mfilt[0], mfilt[1]);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700101}
102
Felix Fietkaub5c804752010-04-15 17:38:48 -0400103static bool ath_rx_edma_buf_link(struct ath_softc *sc,
104 enum ath9k_rx_qtype qtype)
105{
106 struct ath_hw *ah = sc->sc_ah;
107 struct ath_rx_edma *rx_edma;
108 struct sk_buff *skb;
109 struct ath_buf *bf;
110
111 rx_edma = &sc->rx.rx_edma[qtype];
112 if (skb_queue_len(&rx_edma->rx_fifo) >= rx_edma->rx_fifo_hwsize)
113 return false;
114
115 bf = list_first_entry(&sc->rx.rxbuf, struct ath_buf, list);
116 list_del_init(&bf->list);
117
118 skb = bf->bf_mpdu;
119
120 ATH_RXBUF_RESET(bf);
121 memset(skb->data, 0, ah->caps.rx_status_len);
122 dma_sync_single_for_device(sc->dev, bf->bf_buf_addr,
123 ah->caps.rx_status_len, DMA_TO_DEVICE);
124
125 SKB_CB_ATHBUF(skb) = bf;
126 ath9k_hw_addrxbuf_edma(ah, bf->bf_buf_addr, qtype);
Sujith Manoharan07236bf2013-04-23 12:22:18 +0530127 __skb_queue_tail(&rx_edma->rx_fifo, skb);
Felix Fietkaub5c804752010-04-15 17:38:48 -0400128
129 return true;
130}
131
132static void ath_rx_addbuffer_edma(struct ath_softc *sc,
Sujith Manoharan7a8972032013-04-23 12:22:16 +0530133 enum ath9k_rx_qtype qtype)
Felix Fietkaub5c804752010-04-15 17:38:48 -0400134{
Felix Fietkaub5c804752010-04-15 17:38:48 -0400135 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Mohammed Shafi Shajakhan6a01f0c2012-02-28 20:54:44 +0530136 struct ath_buf *bf, *tbf;
Felix Fietkaub5c804752010-04-15 17:38:48 -0400137
Felix Fietkaub5c804752010-04-15 17:38:48 -0400138 if (list_empty(&sc->rx.rxbuf)) {
Joe Perchesd2182b62011-12-15 14:55:53 -0800139 ath_dbg(common, QUEUE, "No free rx buf available\n");
Felix Fietkaub5c804752010-04-15 17:38:48 -0400140 return;
141 }
142
Mohammed Shafi Shajakhan6a01f0c2012-02-28 20:54:44 +0530143 list_for_each_entry_safe(bf, tbf, &sc->rx.rxbuf, list)
Felix Fietkaub5c804752010-04-15 17:38:48 -0400144 if (!ath_rx_edma_buf_link(sc, qtype))
145 break;
146
Felix Fietkaub5c804752010-04-15 17:38:48 -0400147}
148
149static void ath_rx_remove_buffer(struct ath_softc *sc,
150 enum ath9k_rx_qtype qtype)
151{
152 struct ath_buf *bf;
153 struct ath_rx_edma *rx_edma;
154 struct sk_buff *skb;
155
156 rx_edma = &sc->rx.rx_edma[qtype];
157
Sujith Manoharan07236bf2013-04-23 12:22:18 +0530158 while ((skb = __skb_dequeue(&rx_edma->rx_fifo)) != NULL) {
Felix Fietkaub5c804752010-04-15 17:38:48 -0400159 bf = SKB_CB_ATHBUF(skb);
160 BUG_ON(!bf);
161 list_add_tail(&bf->list, &sc->rx.rxbuf);
162 }
163}
164
165static void ath_rx_edma_cleanup(struct ath_softc *sc)
166{
Mohammed Shafi Shajakhanba542382011-09-23 14:33:14 +0530167 struct ath_hw *ah = sc->sc_ah;
168 struct ath_common *common = ath9k_hw_common(ah);
Felix Fietkaub5c804752010-04-15 17:38:48 -0400169 struct ath_buf *bf;
170
171 ath_rx_remove_buffer(sc, ATH9K_RX_QUEUE_LP);
172 ath_rx_remove_buffer(sc, ATH9K_RX_QUEUE_HP);
173
174 list_for_each_entry(bf, &sc->rx.rxbuf, list) {
Mohammed Shafi Shajakhanba542382011-09-23 14:33:14 +0530175 if (bf->bf_mpdu) {
176 dma_unmap_single(sc->dev, bf->bf_buf_addr,
177 common->rx_bufsize,
178 DMA_BIDIRECTIONAL);
Felix Fietkaub5c804752010-04-15 17:38:48 -0400179 dev_kfree_skb_any(bf->bf_mpdu);
Mohammed Shafi Shajakhanba542382011-09-23 14:33:14 +0530180 bf->bf_buf_addr = 0;
181 bf->bf_mpdu = NULL;
182 }
Felix Fietkaub5c804752010-04-15 17:38:48 -0400183 }
Felix Fietkaub5c804752010-04-15 17:38:48 -0400184}
185
186static void ath_rx_edma_init_queue(struct ath_rx_edma *rx_edma, int size)
187{
188 skb_queue_head_init(&rx_edma->rx_fifo);
Felix Fietkaub5c804752010-04-15 17:38:48 -0400189 rx_edma->rx_fifo_hwsize = size;
190}
191
192static int ath_rx_edma_init(struct ath_softc *sc, int nbufs)
193{
194 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
195 struct ath_hw *ah = sc->sc_ah;
196 struct sk_buff *skb;
197 struct ath_buf *bf;
198 int error = 0, i;
199 u32 size;
200
Felix Fietkaub5c804752010-04-15 17:38:48 -0400201 ath9k_hw_set_rx_bufsize(ah, common->rx_bufsize -
202 ah->caps.rx_status_len);
203
204 ath_rx_edma_init_queue(&sc->rx.rx_edma[ATH9K_RX_QUEUE_LP],
205 ah->caps.rx_lp_qdepth);
206 ath_rx_edma_init_queue(&sc->rx.rx_edma[ATH9K_RX_QUEUE_HP],
207 ah->caps.rx_hp_qdepth);
208
209 size = sizeof(struct ath_buf) * nbufs;
Felix Fietkaub81950b12012-12-12 13:14:22 +0100210 bf = devm_kzalloc(sc->dev, size, GFP_KERNEL);
Felix Fietkaub5c804752010-04-15 17:38:48 -0400211 if (!bf)
212 return -ENOMEM;
213
214 INIT_LIST_HEAD(&sc->rx.rxbuf);
Felix Fietkaub5c804752010-04-15 17:38:48 -0400215
216 for (i = 0; i < nbufs; i++, bf++) {
217 skb = ath_rxbuf_alloc(common, common->rx_bufsize, GFP_KERNEL);
218 if (!skb) {
219 error = -ENOMEM;
220 goto rx_init_fail;
221 }
222
223 memset(skb->data, 0, common->rx_bufsize);
224 bf->bf_mpdu = skb;
225
226 bf->bf_buf_addr = dma_map_single(sc->dev, skb->data,
227 common->rx_bufsize,
228 DMA_BIDIRECTIONAL);
229 if (unlikely(dma_mapping_error(sc->dev,
230 bf->bf_buf_addr))) {
231 dev_kfree_skb_any(skb);
232 bf->bf_mpdu = NULL;
Ben Greear6cf9e992010-10-14 12:45:30 -0700233 bf->bf_buf_addr = 0;
Joe Perches38002762010-12-02 19:12:36 -0800234 ath_err(common,
Felix Fietkaub5c804752010-04-15 17:38:48 -0400235 "dma_mapping_error() on RX init\n");
236 error = -ENOMEM;
237 goto rx_init_fail;
238 }
239
240 list_add_tail(&bf->list, &sc->rx.rxbuf);
241 }
242
243 return 0;
244
245rx_init_fail:
246 ath_rx_edma_cleanup(sc);
247 return error;
248}
249
250static void ath_edma_start_recv(struct ath_softc *sc)
251{
Felix Fietkaub5c804752010-04-15 17:38:48 -0400252 ath9k_hw_rxena(sc->sc_ah);
Sujith Manoharan7a8972032013-04-23 12:22:16 +0530253 ath_rx_addbuffer_edma(sc, ATH9K_RX_QUEUE_HP);
254 ath_rx_addbuffer_edma(sc, ATH9K_RX_QUEUE_LP);
Felix Fietkaub5c804752010-04-15 17:38:48 -0400255 ath_opmode_init(sc);
Sujith Manoharan4cb54fa2012-06-04 16:27:52 +0530256 ath9k_hw_startpcureceive(sc->sc_ah, !!(sc->hw->conf.flags & IEEE80211_CONF_OFFCHANNEL));
Felix Fietkaub5c804752010-04-15 17:38:48 -0400257}
258
259static void ath_edma_stop_recv(struct ath_softc *sc)
260{
Felix Fietkaub5c804752010-04-15 17:38:48 -0400261 ath_rx_remove_buffer(sc, ATH9K_RX_QUEUE_HP);
262 ath_rx_remove_buffer(sc, ATH9K_RX_QUEUE_LP);
Felix Fietkaub5c804752010-04-15 17:38:48 -0400263}
264
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700265int ath_rx_init(struct ath_softc *sc, int nbufs)
266{
Luis R. Rodriguez27c51f12009-09-10 11:08:14 -0700267 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700268 struct sk_buff *skb;
269 struct ath_buf *bf;
270 int error = 0;
271
Luis R. Rodriguez4bdd1e92010-10-26 15:27:24 -0700272 spin_lock_init(&sc->sc_pcu_lock);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700273
Felix Fietkau0d955212011-01-26 18:23:27 +0100274 common->rx_bufsize = IEEE80211_MAX_MPDU_LEN / 2 +
275 sc->sc_ah->caps.rx_status_len;
276
Sujith Manoharane87f3d52013-04-23 12:22:17 +0530277 if (sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_EDMA)
Felix Fietkaub5c804752010-04-15 17:38:48 -0400278 return ath_rx_edma_init(sc, nbufs);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700279
Sujith Manoharane87f3d52013-04-23 12:22:17 +0530280 ath_dbg(common, CONFIG, "cachelsz %u rxbufsize %u\n",
281 common->cachelsz, common->rx_bufsize);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700282
Sujith Manoharane87f3d52013-04-23 12:22:17 +0530283 /* Initialize rx descriptors */
284
285 error = ath_descdma_setup(sc, &sc->rx.rxdma, &sc->rx.rxbuf,
286 "rx", nbufs, 1, 0);
287 if (error != 0) {
288 ath_err(common,
289 "failed to allocate rx descriptors: %d\n",
290 error);
291 goto err;
292 }
293
294 list_for_each_entry(bf, &sc->rx.rxbuf, list) {
295 skb = ath_rxbuf_alloc(common, common->rx_bufsize,
296 GFP_KERNEL);
297 if (skb == NULL) {
298 error = -ENOMEM;
Sujith797fe5cb2009-03-30 15:28:45 +0530299 goto err;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700300 }
Felix Fietkaub5c804752010-04-15 17:38:48 -0400301
Sujith Manoharane87f3d52013-04-23 12:22:17 +0530302 bf->bf_mpdu = skb;
303 bf->bf_buf_addr = dma_map_single(sc->dev, skb->data,
304 common->rx_bufsize,
305 DMA_FROM_DEVICE);
306 if (unlikely(dma_mapping_error(sc->dev,
307 bf->bf_buf_addr))) {
308 dev_kfree_skb_any(skb);
309 bf->bf_mpdu = NULL;
310 bf->bf_buf_addr = 0;
311 ath_err(common,
312 "dma_mapping_error() on RX init\n");
313 error = -ENOMEM;
314 goto err;
Felix Fietkaub5c804752010-04-15 17:38:48 -0400315 }
Sujith797fe5cb2009-03-30 15:28:45 +0530316 }
Sujith Manoharane87f3d52013-04-23 12:22:17 +0530317 sc->rx.rxlink = NULL;
Sujith797fe5cb2009-03-30 15:28:45 +0530318err:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700319 if (error)
320 ath_rx_cleanup(sc);
321
322 return error;
323}
324
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700325void ath_rx_cleanup(struct ath_softc *sc)
326{
Luis R. Rodriguezcc861f72009-11-04 09:11:34 -0800327 struct ath_hw *ah = sc->sc_ah;
328 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700329 struct sk_buff *skb;
330 struct ath_buf *bf;
331
Felix Fietkaub5c804752010-04-15 17:38:48 -0400332 if (sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_EDMA) {
333 ath_rx_edma_cleanup(sc);
334 return;
Sujith Manoharane87f3d52013-04-23 12:22:17 +0530335 }
336
337 list_for_each_entry(bf, &sc->rx.rxbuf, list) {
338 skb = bf->bf_mpdu;
339 if (skb) {
340 dma_unmap_single(sc->dev, bf->bf_buf_addr,
341 common->rx_bufsize,
342 DMA_FROM_DEVICE);
343 dev_kfree_skb(skb);
344 bf->bf_buf_addr = 0;
345 bf->bf_mpdu = NULL;
Luis R. Rodriguez051b9192009-03-23 18:25:01 -0400346 }
Felix Fietkaub5c804752010-04-15 17:38:48 -0400347 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700348}
349
350/*
351 * Calculate the receive filter according to the
352 * operating mode and state:
353 *
354 * o always accept unicast, broadcast, and multicast traffic
355 * o maintain current state of phy error reception (the hal
356 * may enable phy error frames for noise immunity work)
357 * o probe request frames are accepted only when operating in
358 * hostap, adhoc, or monitor modes
359 * o enable promiscuous mode according to the interface state
360 * o accept beacons:
361 * - when operating in adhoc mode so the 802.11 layer creates
362 * node table entries for peers,
363 * - when operating in station mode for collecting rssi data when
364 * the station is otherwise quiet, or
365 * - when operating as a repeater so we see repeater-sta beacons
366 * - when scanning
367 */
368
369u32 ath_calcrxfilter(struct ath_softc *sc)
370{
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700371 u32 rfilt;
372
Felix Fietkauac066972011-10-08 15:49:57 +0200373 rfilt = ATH9K_RX_FILTER_UCAST | ATH9K_RX_FILTER_BCAST
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700374 | ATH9K_RX_FILTER_MCAST;
375
Zefir Kurtisi73e49372013-04-03 18:31:31 +0200376 /* if operating on a DFS channel, enable radar pulse detection */
377 if (sc->hw->conf.radar_enabled)
378 rfilt |= ATH9K_RX_FILTER_PHYRADAR | ATH9K_RX_FILTER_PHYERR;
379
Jouni Malinen9c1d8e42010-10-13 17:29:31 +0300380 if (sc->rx.rxfilter & FIF_PROBE_REQ)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700381 rfilt |= ATH9K_RX_FILTER_PROBEREQ;
382
Jouni Malinen217ba9d2009-03-10 10:55:50 +0200383 /*
384 * Set promiscuous mode when FIF_PROMISC_IN_BSS is enabled for station
385 * mode interface or when in monitor mode. AP mode does not need this
386 * since it receives all in-BSS frames anyway.
387 */
Felix Fietkau2e286942011-03-09 01:48:12 +0100388 if (sc->sc_ah->is_monitoring)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700389 rfilt |= ATH9K_RX_FILTER_PROM;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700390
Sujithd42c6b72009-02-04 08:10:22 +0530391 if (sc->rx.rxfilter & FIF_CONTROL)
392 rfilt |= ATH9K_RX_FILTER_CONTROL;
393
Vasanthakumar Thiagarajandbaaa142009-02-19 15:41:52 +0530394 if ((sc->sc_ah->opmode == NL80211_IFTYPE_STATION) &&
Ben Greearcfda6692010-09-14 12:00:22 -0700395 (sc->nvifs <= 1) &&
Vasanthakumar Thiagarajandbaaa142009-02-19 15:41:52 +0530396 !(sc->rx.rxfilter & FIF_BCN_PRBRESP_PROMISC))
397 rfilt |= ATH9K_RX_FILTER_MYBEACON;
398 else
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700399 rfilt |= ATH9K_RX_FILTER_BEACON;
400
Felix Fietkau264bbec2011-04-07 19:24:23 +0200401 if ((sc->sc_ah->opmode == NL80211_IFTYPE_AP) ||
Senthil Balasubramanian66afad02009-09-18 15:06:07 +0530402 (sc->rx.rxfilter & FIF_PSPOLL))
Vasanthakumar Thiagarajandbaaa142009-02-19 15:41:52 +0530403 rfilt |= ATH9K_RX_FILTER_PSPOLL;
Sujithbe0418a2008-11-18 09:05:55 +0530404
Sujith7ea310b2009-09-03 12:08:43 +0530405 if (conf_is_ht(&sc->hw->conf))
406 rfilt |= ATH9K_RX_FILTER_COMP_BAR;
407
Felix Fietkau7545daf2011-01-24 19:23:16 +0100408 if (sc->nvifs > 1 || (sc->rx.rxfilter & FIF_OTHER_BSS)) {
Thomas Wagnera5494592012-09-25 21:32:55 +0530409 /* This is needed for older chips */
410 if (sc->sc_ah->hw_version.macVersion <= AR_SREV_VERSION_9160)
Javier Cardona5eb6ba82009-08-20 19:12:07 -0700411 rfilt |= ATH9K_RX_FILTER_PROM;
Jouni Malinenb93bce22009-03-03 19:23:30 +0200412 rfilt |= ATH9K_RX_FILTER_MCAST_BCAST_ALL;
413 }
414
Gabor Juhosb3d7aa42012-07-03 19:13:33 +0200415 if (AR_SREV_9550(sc->sc_ah))
416 rfilt |= ATH9K_RX_FILTER_4ADDRESS;
417
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700418 return rfilt;
Sujith7dcfdcd2008-08-11 14:03:13 +0530419
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700420}
421
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700422int ath_startrecv(struct ath_softc *sc)
423{
Sujithcbe61d82009-02-09 13:27:12 +0530424 struct ath_hw *ah = sc->sc_ah;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700425 struct ath_buf *bf, *tbf;
426
Felix Fietkaub5c804752010-04-15 17:38:48 -0400427 if (ah->caps.hw_caps & ATH9K_HW_CAP_EDMA) {
428 ath_edma_start_recv(sc);
429 return 0;
430 }
431
Sujithb77f4832008-12-07 21:44:03 +0530432 if (list_empty(&sc->rx.rxbuf))
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700433 goto start_recv;
434
Sujithb77f4832008-12-07 21:44:03 +0530435 sc->rx.rxlink = NULL;
436 list_for_each_entry_safe(bf, tbf, &sc->rx.rxbuf, list) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700437 ath_rx_buf_link(sc, bf);
438 }
439
440 /* We could have deleted elements so the list may be empty now */
Sujithb77f4832008-12-07 21:44:03 +0530441 if (list_empty(&sc->rx.rxbuf))
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700442 goto start_recv;
443
Sujithb77f4832008-12-07 21:44:03 +0530444 bf = list_first_entry(&sc->rx.rxbuf, struct ath_buf, list);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700445 ath9k_hw_putrxbuf(ah, bf->bf_daddr);
Sujithbe0418a2008-11-18 09:05:55 +0530446 ath9k_hw_rxena(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700447
448start_recv:
Sujithbe0418a2008-11-18 09:05:55 +0530449 ath_opmode_init(sc);
Sujith Manoharan4cb54fa2012-06-04 16:27:52 +0530450 ath9k_hw_startpcureceive(ah, !!(sc->hw->conf.flags & IEEE80211_CONF_OFFCHANNEL));
Sujithbe0418a2008-11-18 09:05:55 +0530451
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700452 return 0;
453}
454
Felix Fietkau4b883f02013-01-09 16:16:56 +0100455static void ath_flushrecv(struct ath_softc *sc)
456{
457 if (sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_EDMA)
458 ath_rx_tasklet(sc, 1, true);
459 ath_rx_tasklet(sc, 1, false);
460}
461
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700462bool ath_stoprecv(struct ath_softc *sc)
463{
Sujithcbe61d82009-02-09 13:27:12 +0530464 struct ath_hw *ah = sc->sc_ah;
Felix Fietkau5882da022011-04-08 20:13:18 +0200465 bool stopped, reset = false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700466
Felix Fietkaud47844a2010-11-20 03:08:47 +0100467 ath9k_hw_abortpcurecv(ah);
Sujithbe0418a2008-11-18 09:05:55 +0530468 ath9k_hw_setrxfilter(ah, 0);
Felix Fietkau5882da022011-04-08 20:13:18 +0200469 stopped = ath9k_hw_stopdmarecv(ah, &reset);
Felix Fietkaub5c804752010-04-15 17:38:48 -0400470
Felix Fietkau4b883f02013-01-09 16:16:56 +0100471 ath_flushrecv(sc);
472
Felix Fietkaub5c804752010-04-15 17:38:48 -0400473 if (sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_EDMA)
474 ath_edma_stop_recv(sc);
475 else
476 sc->rx.rxlink = NULL;
Sujithbe0418a2008-11-18 09:05:55 +0530477
Rajkumar Manoharand5847472010-12-20 14:39:51 +0530478 if (!(ah->ah_flags & AH_UNPLUGGED) &&
479 unlikely(!stopped)) {
Ben Greeard7fd1b502010-12-06 13:13:07 -0800480 ath_err(ath9k_hw_common(sc->sc_ah),
481 "Could not stop RX, we could be "
482 "confusing the DMA engine when we start RX up\n");
483 ATH_DBG_WARN_ON_ONCE(!stopped);
484 }
Felix Fietkau2232d312011-04-15 00:41:43 +0200485 return stopped && !reset;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700486}
487
Jouni Malinencc659652009-05-14 21:28:48 +0300488static bool ath_beacon_dtim_pending_cab(struct sk_buff *skb)
489{
490 /* Check whether the Beacon frame has DTIM indicating buffered bc/mc */
491 struct ieee80211_mgmt *mgmt;
492 u8 *pos, *end, id, elen;
493 struct ieee80211_tim_ie *tim;
494
495 mgmt = (struct ieee80211_mgmt *)skb->data;
496 pos = mgmt->u.beacon.variable;
497 end = skb->data + skb->len;
498
499 while (pos + 2 < end) {
500 id = *pos++;
501 elen = *pos++;
502 if (pos + elen > end)
503 break;
504
505 if (id == WLAN_EID_TIM) {
506 if (elen < sizeof(*tim))
507 break;
508 tim = (struct ieee80211_tim_ie *) pos;
509 if (tim->dtim_count != 0)
510 break;
511 return tim->bitmap_ctrl & 0x01;
512 }
513
514 pos += elen;
515 }
516
517 return false;
518}
519
Jouni Malinencc659652009-05-14 21:28:48 +0300520static void ath_rx_ps_beacon(struct ath_softc *sc, struct sk_buff *skb)
521{
Luis R. Rodriguez15107182009-09-10 09:22:37 -0700522 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Jouni Malinencc659652009-05-14 21:28:48 +0300523
524 if (skb->len < 24 + 8 + 2 + 2)
525 return;
526
Sujith1b04b932010-01-08 10:36:05 +0530527 sc->ps_flags &= ~PS_WAIT_FOR_BEACON;
Gabor Juhos293dc5d2009-06-19 12:17:48 +0200528
Sujith1b04b932010-01-08 10:36:05 +0530529 if (sc->ps_flags & PS_BEACON_SYNC) {
530 sc->ps_flags &= ~PS_BEACON_SYNC;
Joe Perchesd2182b62011-12-15 14:55:53 -0800531 ath_dbg(common, PS,
Sujith Manoharan1a6404a2013-02-04 15:38:24 +0530532 "Reconfigure beacon timers based on synchronized timestamp\n");
Sujith Manoharanef4ad632012-07-17 17:15:56 +0530533 ath9k_set_beacon(sc);
Jouni Malinenccdfeab2009-05-20 21:59:08 +0300534 }
535
Jouni Malinencc659652009-05-14 21:28:48 +0300536 if (ath_beacon_dtim_pending_cab(skb)) {
537 /*
538 * Remain awake waiting for buffered broadcast/multicast
Gabor Juhos58f5fff2009-06-17 20:53:20 +0200539 * frames. If the last broadcast/multicast frame is not
540 * received properly, the next beacon frame will work as
541 * a backup trigger for returning into NETWORK SLEEP state,
542 * so we are waiting for it as well.
Jouni Malinencc659652009-05-14 21:28:48 +0300543 */
Joe Perchesd2182b62011-12-15 14:55:53 -0800544 ath_dbg(common, PS,
Joe Perches226afe62010-12-02 19:12:37 -0800545 "Received DTIM beacon indicating buffered broadcast/multicast frame(s)\n");
Sujith1b04b932010-01-08 10:36:05 +0530546 sc->ps_flags |= PS_WAIT_FOR_CAB | PS_WAIT_FOR_BEACON;
Jouni Malinencc659652009-05-14 21:28:48 +0300547 return;
548 }
549
Sujith1b04b932010-01-08 10:36:05 +0530550 if (sc->ps_flags & PS_WAIT_FOR_CAB) {
Jouni Malinencc659652009-05-14 21:28:48 +0300551 /*
552 * This can happen if a broadcast frame is dropped or the AP
553 * fails to send a frame indicating that all CAB frames have
554 * been delivered.
555 */
Sujith1b04b932010-01-08 10:36:05 +0530556 sc->ps_flags &= ~PS_WAIT_FOR_CAB;
Joe Perchesd2182b62011-12-15 14:55:53 -0800557 ath_dbg(common, PS, "PS wait for CAB frames timed out\n");
Jouni Malinencc659652009-05-14 21:28:48 +0300558 }
Jouni Malinencc659652009-05-14 21:28:48 +0300559}
560
Rajkumar Manoharanf73c6042011-09-26 22:16:56 +0530561static void ath_rx_ps(struct ath_softc *sc, struct sk_buff *skb, bool mybeacon)
Jouni Malinencc659652009-05-14 21:28:48 +0300562{
563 struct ieee80211_hdr *hdr;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700564 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Jouni Malinencc659652009-05-14 21:28:48 +0300565
566 hdr = (struct ieee80211_hdr *)skb->data;
567
568 /* Process Beacon and CAB receive in PS state */
Vasanthakumar Thiagarajanededf1f2010-05-22 23:58:13 -0700569 if (((sc->ps_flags & PS_WAIT_FOR_BEACON) || ath9k_check_auto_sleep(sc))
Sujith Manoharan07c15a32012-06-04 20:24:07 +0530570 && mybeacon) {
Jouni Malinencc659652009-05-14 21:28:48 +0300571 ath_rx_ps_beacon(sc, skb);
Sujith Manoharan07c15a32012-06-04 20:24:07 +0530572 } else if ((sc->ps_flags & PS_WAIT_FOR_CAB) &&
573 (ieee80211_is_data(hdr->frame_control) ||
574 ieee80211_is_action(hdr->frame_control)) &&
575 is_multicast_ether_addr(hdr->addr1) &&
576 !ieee80211_has_moredata(hdr->frame_control)) {
Jouni Malinencc659652009-05-14 21:28:48 +0300577 /*
578 * No more broadcast/multicast frames to be received at this
579 * point.
580 */
Senthil Balasubramanian3fac6df2010-09-16 15:12:35 -0400581 sc->ps_flags &= ~(PS_WAIT_FOR_CAB | PS_WAIT_FOR_BEACON);
Joe Perchesd2182b62011-12-15 14:55:53 -0800582 ath_dbg(common, PS,
Joe Perches226afe62010-12-02 19:12:37 -0800583 "All PS CAB frames received, back to sleep\n");
Sujith1b04b932010-01-08 10:36:05 +0530584 } else if ((sc->ps_flags & PS_WAIT_FOR_PSPOLL_DATA) &&
Jouni Malinen9a23f9c2009-05-19 17:01:38 +0300585 !is_multicast_ether_addr(hdr->addr1) &&
586 !ieee80211_has_morefrags(hdr->frame_control)) {
Sujith1b04b932010-01-08 10:36:05 +0530587 sc->ps_flags &= ~PS_WAIT_FOR_PSPOLL_DATA;
Joe Perchesd2182b62011-12-15 14:55:53 -0800588 ath_dbg(common, PS,
Joe Perches226afe62010-12-02 19:12:37 -0800589 "Going back to sleep after having received PS-Poll data (0x%lx)\n",
Sujith1b04b932010-01-08 10:36:05 +0530590 sc->ps_flags & (PS_WAIT_FOR_BEACON |
591 PS_WAIT_FOR_CAB |
592 PS_WAIT_FOR_PSPOLL_DATA |
593 PS_WAIT_FOR_TX_ACK));
Jouni Malinencc659652009-05-14 21:28:48 +0300594 }
595}
596
Felix Fietkaub5c804752010-04-15 17:38:48 -0400597static bool ath_edma_get_buffers(struct ath_softc *sc,
Felix Fietkau3a2923e2012-03-03 15:17:05 +0100598 enum ath9k_rx_qtype qtype,
599 struct ath_rx_status *rs,
600 struct ath_buf **dest)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700601{
Felix Fietkaub5c804752010-04-15 17:38:48 -0400602 struct ath_rx_edma *rx_edma = &sc->rx.rx_edma[qtype];
603 struct ath_hw *ah = sc->sc_ah;
604 struct ath_common *common = ath9k_hw_common(ah);
605 struct sk_buff *skb;
Sujithbe0418a2008-11-18 09:05:55 +0530606 struct ath_buf *bf;
Felix Fietkaub5c804752010-04-15 17:38:48 -0400607 int ret;
608
609 skb = skb_peek(&rx_edma->rx_fifo);
610 if (!skb)
611 return false;
612
613 bf = SKB_CB_ATHBUF(skb);
614 BUG_ON(!bf);
615
Ming Leice9426d2010-05-15 18:25:40 +0800616 dma_sync_single_for_cpu(sc->dev, bf->bf_buf_addr,
Felix Fietkaub5c804752010-04-15 17:38:48 -0400617 common->rx_bufsize, DMA_FROM_DEVICE);
618
Felix Fietkau3a2923e2012-03-03 15:17:05 +0100619 ret = ath9k_hw_process_rxdesc_edma(ah, rs, skb->data);
Ming Leice9426d2010-05-15 18:25:40 +0800620 if (ret == -EINPROGRESS) {
621 /*let device gain the buffer again*/
622 dma_sync_single_for_device(sc->dev, bf->bf_buf_addr,
623 common->rx_bufsize, DMA_FROM_DEVICE);
Felix Fietkaub5c804752010-04-15 17:38:48 -0400624 return false;
Ming Leice9426d2010-05-15 18:25:40 +0800625 }
Felix Fietkaub5c804752010-04-15 17:38:48 -0400626
627 __skb_unlink(skb, &rx_edma->rx_fifo);
628 if (ret == -EINVAL) {
629 /* corrupt descriptor, skip this one and the following one */
630 list_add_tail(&bf->list, &sc->rx.rxbuf);
631 ath_rx_edma_buf_link(sc, qtype);
Felix Fietkau3a2923e2012-03-03 15:17:05 +0100632
Felix Fietkaub5c804752010-04-15 17:38:48 -0400633 skb = skb_peek(&rx_edma->rx_fifo);
Felix Fietkau3a2923e2012-03-03 15:17:05 +0100634 if (skb) {
635 bf = SKB_CB_ATHBUF(skb);
636 BUG_ON(!bf);
Felix Fietkaub5c804752010-04-15 17:38:48 -0400637
Felix Fietkau3a2923e2012-03-03 15:17:05 +0100638 __skb_unlink(skb, &rx_edma->rx_fifo);
639 list_add_tail(&bf->list, &sc->rx.rxbuf);
640 ath_rx_edma_buf_link(sc, qtype);
Felix Fietkau3a2923e2012-03-03 15:17:05 +0100641 }
Tom Hughes6bb51c72012-06-27 18:21:15 +0100642
643 bf = NULL;
Felix Fietkaub5c804752010-04-15 17:38:48 -0400644 }
Felix Fietkaub5c804752010-04-15 17:38:48 -0400645
Felix Fietkau3a2923e2012-03-03 15:17:05 +0100646 *dest = bf;
Felix Fietkaub5c804752010-04-15 17:38:48 -0400647 return true;
648}
649
650static struct ath_buf *ath_edma_get_next_rx_buf(struct ath_softc *sc,
651 struct ath_rx_status *rs,
652 enum ath9k_rx_qtype qtype)
653{
Felix Fietkau3a2923e2012-03-03 15:17:05 +0100654 struct ath_buf *bf = NULL;
Felix Fietkaub5c804752010-04-15 17:38:48 -0400655
Felix Fietkau3a2923e2012-03-03 15:17:05 +0100656 while (ath_edma_get_buffers(sc, qtype, rs, &bf)) {
657 if (!bf)
658 continue;
Felix Fietkaub5c804752010-04-15 17:38:48 -0400659
Felix Fietkau3a2923e2012-03-03 15:17:05 +0100660 return bf;
661 }
662 return NULL;
Felix Fietkaub5c804752010-04-15 17:38:48 -0400663}
664
665static struct ath_buf *ath_get_next_rx_buf(struct ath_softc *sc,
666 struct ath_rx_status *rs)
667{
668 struct ath_hw *ah = sc->sc_ah;
669 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700670 struct ath_desc *ds;
Felix Fietkaub5c804752010-04-15 17:38:48 -0400671 struct ath_buf *bf;
672 int ret;
673
674 if (list_empty(&sc->rx.rxbuf)) {
675 sc->rx.rxlink = NULL;
676 return NULL;
677 }
678
679 bf = list_first_entry(&sc->rx.rxbuf, struct ath_buf, list);
680 ds = bf->bf_desc;
681
682 /*
683 * Must provide the virtual address of the current
684 * descriptor, the physical address, and the virtual
685 * address of the next descriptor in the h/w chain.
686 * This allows the HAL to look ahead to see if the
687 * hardware is done with a descriptor by checking the
688 * done bit in the following descriptor and the address
689 * of the current descriptor the DMA engine is working
690 * on. All this is necessary because of our use of
691 * a self-linked list to avoid rx overruns.
692 */
Rajkumar Manoharan3de21112011-08-13 10:28:11 +0530693 ret = ath9k_hw_rxprocdesc(ah, ds, rs);
Felix Fietkaub5c804752010-04-15 17:38:48 -0400694 if (ret == -EINPROGRESS) {
695 struct ath_rx_status trs;
696 struct ath_buf *tbf;
697 struct ath_desc *tds;
698
699 memset(&trs, 0, sizeof(trs));
700 if (list_is_last(&bf->list, &sc->rx.rxbuf)) {
701 sc->rx.rxlink = NULL;
702 return NULL;
703 }
704
705 tbf = list_entry(bf->list.next, struct ath_buf, list);
706
707 /*
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
711 * set or not.
712 *
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...
716 */
717
718 tds = tbf->bf_desc;
Rajkumar Manoharan3de21112011-08-13 10:28:11 +0530719 ret = ath9k_hw_rxprocdesc(ah, tds, &trs);
Felix Fietkaub5c804752010-04-15 17:38:48 -0400720 if (ret == -EINPROGRESS)
721 return NULL;
Felix Fietkau723e7112013-04-08 00:04:11 +0200722
723 /*
724 * mark descriptor as zero-length and set the 'more'
725 * flag to ensure that both buffers get discarded
726 */
727 rs->rs_datalen = 0;
728 rs->rs_more = true;
Felix Fietkaub5c804752010-04-15 17:38:48 -0400729 }
730
Felix Fietkaua3dc48e2013-01-09 16:16:52 +0100731 list_del(&bf->list);
Felix Fietkaub5c804752010-04-15 17:38:48 -0400732 if (!bf->bf_mpdu)
733 return bf;
734
735 /*
736 * Synchronize the DMA transfer with CPU before
737 * 1. accessing the frame
738 * 2. requeueing the same buffer to h/w
739 */
Ming Leice9426d2010-05-15 18:25:40 +0800740 dma_sync_single_for_cpu(sc->dev, bf->bf_buf_addr,
Felix Fietkaub5c804752010-04-15 17:38:48 -0400741 common->rx_bufsize,
742 DMA_FROM_DEVICE);
743
744 return bf;
745}
746
Sujithd4357002010-05-20 15:34:38 +0530747/* Assumes you've already done the endian to CPU conversion */
748static bool ath9k_rx_accept(struct ath_common *common,
Vasanthakumar Thiagarajan9f167f62010-05-20 14:34:46 -0700749 struct ieee80211_hdr *hdr,
Sujithd4357002010-05-20 15:34:38 +0530750 struct ieee80211_rx_status *rxs,
751 struct ath_rx_status *rx_stats,
752 bool *decrypt_error)
753{
Felix Fietkauec205992011-10-08 22:02:59 +0200754 struct ath_softc *sc = (struct ath_softc *) common->priv;
Felix Fietkau66760ea2011-07-13 23:35:05 +0800755 bool is_mc, is_valid_tkip, strip_mic, mic_error;
Sujithd4357002010-05-20 15:34:38 +0530756 struct ath_hw *ah = common->ah;
Sujithd4357002010-05-20 15:34:38 +0530757 __le16 fc;
Vasanthakumar Thiagarajanb7b1b512010-05-20 14:34:48 -0700758 u8 rx_status_len = ah->caps.rx_status_len;
Sujithd4357002010-05-20 15:34:38 +0530759
Sujithd4357002010-05-20 15:34:38 +0530760 fc = hdr->frame_control;
761
Felix Fietkau66760ea2011-07-13 23:35:05 +0800762 is_mc = !!is_multicast_ether_addr(hdr->addr1);
763 is_valid_tkip = rx_stats->rs_keyix != ATH9K_RXKEYIX_INVALID &&
764 test_bit(rx_stats->rs_keyix, common->tkip_keymap);
Bill Jordan152e5852011-08-19 11:10:22 -0400765 strip_mic = is_valid_tkip && ieee80211_is_data(fc) &&
Michael Liang2a5783b2012-04-20 17:11:57 +0800766 ieee80211_has_protected(fc) &&
Bill Jordan152e5852011-08-19 11:10:22 -0400767 !(rx_stats->rs_status &
Felix Fietkau846d9362011-10-08 22:02:58 +0200768 (ATH9K_RXERR_DECRYPT | ATH9K_RXERR_CRC | ATH9K_RXERR_MIC |
769 ATH9K_RXERR_KEYMISS));
Felix Fietkau66760ea2011-07-13 23:35:05 +0800770
Felix Fietkauf88373f2012-02-05 21:15:17 +0100771 /*
772 * Key miss events are only relevant for pairwise keys where the
773 * descriptor does contain a valid key index. This has been observed
774 * mostly with CCMP encryption.
775 */
Felix Fietkaubed3d9c2012-06-23 19:23:31 +0200776 if (rx_stats->rs_keyix == ATH9K_RXKEYIX_INVALID ||
777 !test_bit(rx_stats->rs_keyix, common->ccmp_keymap))
Felix Fietkauf88373f2012-02-05 21:15:17 +0100778 rx_stats->rs_status &= ~ATH9K_RXERR_KEYMISS;
779
Ben Greear15072182012-04-03 09:18:59 -0700780 if (!rx_stats->rs_datalen) {
781 RX_STAT_INC(rx_len_err);
Sujithd4357002010-05-20 15:34:38 +0530782 return false;
Ben Greear15072182012-04-03 09:18:59 -0700783 }
784
Sujithd4357002010-05-20 15:34:38 +0530785 /*
786 * rs_status follows rs_datalen so if rs_datalen is too large
787 * we can take a hint that hardware corrupted it, so ignore
788 * those frames.
789 */
Ben Greear15072182012-04-03 09:18:59 -0700790 if (rx_stats->rs_datalen > (common->rx_bufsize - rx_status_len)) {
791 RX_STAT_INC(rx_len_err);
Sujithd4357002010-05-20 15:34:38 +0530792 return false;
Ben Greear15072182012-04-03 09:18:59 -0700793 }
Sujithd4357002010-05-20 15:34:38 +0530794
Felix Fietkau0d955212011-01-26 18:23:27 +0100795 /* Only use error bits from the last fragment */
Sujithd4357002010-05-20 15:34:38 +0530796 if (rx_stats->rs_more)
Felix Fietkau0d955212011-01-26 18:23:27 +0100797 return true;
Sujithd4357002010-05-20 15:34:38 +0530798
Felix Fietkau66760ea2011-07-13 23:35:05 +0800799 mic_error = is_valid_tkip && !ieee80211_is_ctl(fc) &&
800 !ieee80211_has_morefrags(fc) &&
801 !(le16_to_cpu(hdr->seq_ctrl) & IEEE80211_SCTL_FRAG) &&
802 (rx_stats->rs_status & ATH9K_RXERR_MIC);
803
Sujithd4357002010-05-20 15:34:38 +0530804 /*
805 * The rx_stats->rs_status will not be set until the end of the
806 * chained descriptors so it can be ignored if rs_more is set. The
807 * rs_more will be false at the last element of the chained
808 * descriptors.
809 */
810 if (rx_stats->rs_status != 0) {
Felix Fietkau846d9362011-10-08 22:02:58 +0200811 u8 status_mask;
812
Felix Fietkau66760ea2011-07-13 23:35:05 +0800813 if (rx_stats->rs_status & ATH9K_RXERR_CRC) {
Sujithd4357002010-05-20 15:34:38 +0530814 rxs->flag |= RX_FLAG_FAILED_FCS_CRC;
Felix Fietkau66760ea2011-07-13 23:35:05 +0800815 mic_error = false;
816 }
Sujithd4357002010-05-20 15:34:38 +0530817 if (rx_stats->rs_status & ATH9K_RXERR_PHY)
818 return false;
819
Felix Fietkau846d9362011-10-08 22:02:58 +0200820 if ((rx_stats->rs_status & ATH9K_RXERR_DECRYPT) ||
821 (!is_mc && (rx_stats->rs_status & ATH9K_RXERR_KEYMISS))) {
Sujithd4357002010-05-20 15:34:38 +0530822 *decrypt_error = true;
Felix Fietkau66760ea2011-07-13 23:35:05 +0800823 mic_error = false;
Sujithd4357002010-05-20 15:34:38 +0530824 }
Felix Fietkau66760ea2011-07-13 23:35:05 +0800825
Sujithd4357002010-05-20 15:34:38 +0530826 /*
827 * Reject error frames with the exception of
828 * decryption and MIC failures. For monitor mode,
829 * we also ignore the CRC error.
830 */
Felix Fietkau846d9362011-10-08 22:02:58 +0200831 status_mask = ATH9K_RXERR_DECRYPT | ATH9K_RXERR_MIC |
832 ATH9K_RXERR_KEYMISS;
833
Felix Fietkauec205992011-10-08 22:02:59 +0200834 if (ah->is_monitoring && (sc->rx.rxfilter & FIF_FCSFAIL))
Felix Fietkau846d9362011-10-08 22:02:58 +0200835 status_mask |= ATH9K_RXERR_CRC;
836
837 if (rx_stats->rs_status & ~status_mask)
838 return false;
Sujithd4357002010-05-20 15:34:38 +0530839 }
Felix Fietkau66760ea2011-07-13 23:35:05 +0800840
841 /*
842 * For unicast frames the MIC error bit can have false positives,
843 * so all MIC error reports need to be validated in software.
844 * False negatives are not common, so skip software verification
845 * if the hardware considers the MIC valid.
846 */
847 if (strip_mic)
848 rxs->flag |= RX_FLAG_MMIC_STRIPPED;
849 else if (is_mc && mic_error)
850 rxs->flag |= RX_FLAG_MMIC_ERROR;
851
Sujithd4357002010-05-20 15:34:38 +0530852 return true;
853}
854
855static int ath9k_process_rate(struct ath_common *common,
856 struct ieee80211_hw *hw,
857 struct ath_rx_status *rx_stats,
Vasanthakumar Thiagarajan9f167f62010-05-20 14:34:46 -0700858 struct ieee80211_rx_status *rxs)
Sujithd4357002010-05-20 15:34:38 +0530859{
860 struct ieee80211_supported_band *sband;
861 enum ieee80211_band band;
862 unsigned int i = 0;
Ben Greear990e08a2012-04-17 15:19:03 -0700863 struct ath_softc __maybe_unused *sc = common->priv;
Sujithd4357002010-05-20 15:34:38 +0530864
Karl Beldan675a0b02013-03-25 16:26:57 +0100865 band = hw->conf.chandef.chan->band;
Sujithd4357002010-05-20 15:34:38 +0530866 sband = hw->wiphy->bands[band];
867
868 if (rx_stats->rs_rate & 0x80) {
869 /* HT rate */
870 rxs->flag |= RX_FLAG_HT;
Oleksij Rempelab276102013-05-24 12:18:30 +0200871 rxs->flag |= rx_stats->flag;
Sujithd4357002010-05-20 15:34:38 +0530872 rxs->rate_idx = rx_stats->rs_rate & 0x7f;
873 return 0;
874 }
875
876 for (i = 0; i < sband->n_bitrates; i++) {
877 if (sband->bitrates[i].hw_value == rx_stats->rs_rate) {
878 rxs->rate_idx = i;
879 return 0;
880 }
881 if (sband->bitrates[i].hw_value_short == rx_stats->rs_rate) {
882 rxs->flag |= RX_FLAG_SHORTPRE;
883 rxs->rate_idx = i;
884 return 0;
885 }
886 }
887
888 /*
889 * No valid hardware bitrate found -- we should not get here
890 * because hardware has already validated this frame as OK.
891 */
Joe Perchesd2182b62011-12-15 14:55:53 -0800892 ath_dbg(common, ANY,
Joe Perches226afe62010-12-02 19:12:37 -0800893 "unsupported hw bitrate detected 0x%02x using 1 Mbit\n",
894 rx_stats->rs_rate);
Ben Greear15072182012-04-03 09:18:59 -0700895 RX_STAT_INC(rx_rate_err);
Sujithd4357002010-05-20 15:34:38 +0530896 return -EINVAL;
897}
898
899static void ath9k_process_rssi(struct ath_common *common,
900 struct ieee80211_hw *hw,
Vasanthakumar Thiagarajan9f167f62010-05-20 14:34:46 -0700901 struct ieee80211_hdr *hdr,
Sujithd4357002010-05-20 15:34:38 +0530902 struct ath_rx_status *rx_stats)
903{
Felix Fietkau9ac586152011-01-24 19:23:18 +0100904 struct ath_softc *sc = hw->priv;
Sujithd4357002010-05-20 15:34:38 +0530905 struct ath_hw *ah = common->ah;
Felix Fietkau9fa23e12010-10-15 20:03:31 +0200906 int last_rssi;
Felix Fietkau2ef16752012-03-03 15:17:06 +0100907 int rssi = rx_stats->rs_rssi;
Sujithd4357002010-05-20 15:34:38 +0530908
Rajkumar Manoharancf3af742011-08-27 16:17:47 +0530909 if (!rx_stats->is_mybeacon ||
910 ((ah->opmode != NL80211_IFTYPE_STATION) &&
911 (ah->opmode != NL80211_IFTYPE_ADHOC)))
Felix Fietkau9fa23e12010-10-15 20:03:31 +0200912 return;
913
Felix Fietkau9fa23e12010-10-15 20:03:31 +0200914 if (rx_stats->rs_rssi != ATH9K_RSSI_BAD && !rx_stats->rs_moreaggr)
Felix Fietkau9ac586152011-01-24 19:23:18 +0100915 ATH_RSSI_LPF(sc->last_rssi, rx_stats->rs_rssi);
Ben Greear686b9cb2010-09-23 09:44:36 -0700916
Felix Fietkau9ac586152011-01-24 19:23:18 +0100917 last_rssi = sc->last_rssi;
Sujithd4357002010-05-20 15:34:38 +0530918 if (likely(last_rssi != ATH_RSSI_DUMMY_MARKER))
Felix Fietkau2ef16752012-03-03 15:17:06 +0100919 rssi = ATH_EP_RND(last_rssi, ATH_RSSI_EP_MULTIPLIER);
920 if (rssi < 0)
921 rssi = 0;
Sujithd4357002010-05-20 15:34:38 +0530922
923 /* Update Beacon RSSI, this is used by ANI. */
Felix Fietkau2ef16752012-03-03 15:17:06 +0100924 ah->stats.avgbrssi = rssi;
Sujithd4357002010-05-20 15:34:38 +0530925}
926
927/*
928 * For Decrypt or Demic errors, we only mark packet status here and always push
929 * up the frame up to let mac80211 handle the actual error case, be it no
930 * decryption key or real decryption error. This let us keep statistics there.
931 */
Felix Fietkau723e7112013-04-08 00:04:11 +0200932static int ath9k_rx_skb_preprocess(struct ath_softc *sc,
Vasanthakumar Thiagarajan9f167f62010-05-20 14:34:46 -0700933 struct ieee80211_hdr *hdr,
Sujithd4357002010-05-20 15:34:38 +0530934 struct ath_rx_status *rx_stats,
935 struct ieee80211_rx_status *rx_status,
936 bool *decrypt_error)
937{
Felix Fietkau723e7112013-04-08 00:04:11 +0200938 struct ieee80211_hw *hw = sc->hw;
939 struct ath_hw *ah = sc->sc_ah;
940 struct ath_common *common = ath9k_hw_common(ah);
941 bool discard_current = sc->rx.discard_next;
942
943 sc->rx.discard_next = rx_stats->rs_more;
944 if (discard_current)
945 return -EINVAL;
Felix Fietkauf749b942011-07-28 14:08:57 +0200946
Sujithd4357002010-05-20 15:34:38 +0530947 /*
948 * everything but the rate is checked here, the rate check is done
949 * separately to avoid doing two lookups for a rate for each frame.
950 */
Vasanthakumar Thiagarajan9f167f62010-05-20 14:34:46 -0700951 if (!ath9k_rx_accept(common, hdr, rx_status, rx_stats, decrypt_error))
Sujithd4357002010-05-20 15:34:38 +0530952 return -EINVAL;
953
Felix Fietkau0d955212011-01-26 18:23:27 +0100954 /* Only use status info from the last fragment */
955 if (rx_stats->rs_more)
956 return 0;
957
Vasanthakumar Thiagarajan9f167f62010-05-20 14:34:46 -0700958 if (ath9k_process_rate(common, hw, rx_stats, rx_status))
Sujithd4357002010-05-20 15:34:38 +0530959 return -EINVAL;
960
Sujith Manoharan74a97752013-06-03 09:19:23 +0530961 ath9k_process_rssi(common, hw, hdr, rx_stats);
962
Karl Beldan675a0b02013-03-25 16:26:57 +0100963 rx_status->band = hw->conf.chandef.chan->band;
964 rx_status->freq = hw->conf.chandef.chan->center_freq;
Felix Fietkauf749b942011-07-28 14:08:57 +0200965 rx_status->signal = ah->noise + rx_stats->rs_rssi;
Sujithd4357002010-05-20 15:34:38 +0530966 rx_status->antenna = rx_stats->rs_antenna;
Thomas Pedersen96d21372012-12-10 14:48:01 -0800967 rx_status->flag |= RX_FLAG_MACTIME_END;
Felix Fietkau2ef16752012-03-03 15:17:06 +0100968 if (rx_stats->rs_moreaggr)
969 rx_status->flag |= RX_FLAG_NO_SIGNAL_VAL;
Sujithd4357002010-05-20 15:34:38 +0530970
Felix Fietkau723e7112013-04-08 00:04:11 +0200971 sc->rx.discard_next = false;
Sujithd4357002010-05-20 15:34:38 +0530972 return 0;
973}
974
975static void ath9k_rx_skb_postprocess(struct ath_common *common,
976 struct sk_buff *skb,
977 struct ath_rx_status *rx_stats,
978 struct ieee80211_rx_status *rxs,
979 bool decrypt_error)
980{
981 struct ath_hw *ah = common->ah;
982 struct ieee80211_hdr *hdr;
983 int hdrlen, padpos, padsize;
984 u8 keyix;
985 __le16 fc;
986
987 /* see if any padding is done by the hw and remove it */
988 hdr = (struct ieee80211_hdr *) skb->data;
989 hdrlen = ieee80211_get_hdrlen_from_skb(skb);
990 fc = hdr->frame_control;
Felix Fietkauc60c9922013-04-08 00:04:09 +0200991 padpos = ieee80211_hdrlen(fc);
Sujithd4357002010-05-20 15:34:38 +0530992
993 /* The MAC header is padded to have 32-bit boundary if the
994 * packet payload is non-zero. The general calculation for
995 * padsize would take into account odd header lengths:
996 * padsize = (4 - padpos % 4) % 4; However, since only
997 * even-length headers are used, padding can only be 0 or 2
998 * bytes and we can optimize this a bit. In addition, we must
999 * not try to remove padding from short control frames that do
1000 * not have payload. */
1001 padsize = padpos & 3;
1002 if (padsize && skb->len>=padpos+padsize+FCS_LEN) {
1003 memmove(skb->data + padsize, skb->data, padpos);
1004 skb_pull(skb, padsize);
1005 }
1006
1007 keyix = rx_stats->rs_keyix;
1008
1009 if (!(keyix == ATH9K_RXKEYIX_INVALID) && !decrypt_error &&
1010 ieee80211_has_protected(fc)) {
1011 rxs->flag |= RX_FLAG_DECRYPTED;
1012 } else if (ieee80211_has_protected(fc)
1013 && !decrypt_error && skb->len >= hdrlen + 4) {
1014 keyix = skb->data[hdrlen + 3] >> 6;
1015
1016 if (test_bit(keyix, common->keymap))
1017 rxs->flag |= RX_FLAG_DECRYPTED;
1018 }
1019 if (ah->sw_mgmt_crypto &&
1020 (rxs->flag & RX_FLAG_DECRYPTED) &&
1021 ieee80211_is_mgmt(fc))
1022 /* Use software decrypt for management frames. */
1023 rxs->flag &= ~RX_FLAG_DECRYPTED;
1024}
Felix Fietkaub5c804752010-04-15 17:38:48 -04001025
Sven Eckelmannab2e2fc2013-01-31 10:26:46 +01001026#ifdef CONFIG_ATH9K_DEBUGFS
Simon Wunderliche93d0832013-01-08 14:48:58 +01001027static s8 fix_rssi_inv_only(u8 rssi_val)
1028{
1029 if (rssi_val == 128)
1030 rssi_val = 0;
1031 return (s8) rssi_val;
1032}
Sven Eckelmannab2e2fc2013-01-31 10:26:46 +01001033#endif
Simon Wunderliche93d0832013-01-08 14:48:58 +01001034
Simon Wunderlich9b99e662013-01-23 17:38:05 +01001035/* returns 1 if this was a spectral frame, even if not handled. */
1036static int ath_process_fft(struct ath_softc *sc, struct ieee80211_hdr *hdr,
1037 struct ath_rx_status *rs, u64 tsf)
Simon Wunderliche93d0832013-01-08 14:48:58 +01001038{
Sven Eckelmannbd2ffe12013-01-31 10:26:45 +01001039#ifdef CONFIG_ATH9K_DEBUGFS
Simon Wunderliche93d0832013-01-08 14:48:58 +01001040 struct ath_hw *ah = sc->sc_ah;
1041 u8 bins[SPECTRAL_HT20_NUM_BINS];
1042 u8 *vdata = (u8 *)hdr;
1043 struct fft_sample_ht20 fft_sample;
1044 struct ath_radar_info *radar_info;
1045 struct ath_ht20_mag_info *mag_info;
1046 int len = rs->rs_datalen;
Sven Eckelmann4ab0b0a2013-01-23 20:12:39 +01001047 int dc_pos;
Sven Eckelmann12824372013-01-31 10:26:48 +01001048 u16 length, max_magnitude;
Simon Wunderliche93d0832013-01-08 14:48:58 +01001049
1050 /* AR9280 and before report via ATH9K_PHYERR_RADAR, AR93xx and newer
1051 * via ATH9K_PHYERR_SPECTRAL. Haven't seen ATH9K_PHYERR_FALSE_RADAR_EXT
1052 * yet, but this is supposed to be possible as well.
1053 */
1054 if (rs->rs_phyerr != ATH9K_PHYERR_RADAR &&
1055 rs->rs_phyerr != ATH9K_PHYERR_FALSE_RADAR_EXT &&
1056 rs->rs_phyerr != ATH9K_PHYERR_SPECTRAL)
Simon Wunderlich9b99e662013-01-23 17:38:05 +01001057 return 0;
1058
1059 /* check if spectral scan bit is set. This does not have to be checked
1060 * if received through a SPECTRAL phy error, but shouldn't hurt.
1061 */
1062 radar_info = ((struct ath_radar_info *)&vdata[len]) - 1;
1063 if (!(radar_info->pulse_bw_info & SPECTRAL_SCAN_BITMASK))
1064 return 0;
Simon Wunderliche93d0832013-01-08 14:48:58 +01001065
1066 /* Variation in the data length is possible and will be fixed later.
1067 * Note that we only support HT20 for now.
1068 *
1069 * TODO: add HT20_40 support as well.
1070 */
1071 if ((len > SPECTRAL_HT20_TOTAL_DATA_LEN + 2) ||
1072 (len < SPECTRAL_HT20_TOTAL_DATA_LEN - 1))
Simon Wunderlich9b99e662013-01-23 17:38:05 +01001073 return 1;
Simon Wunderliche93d0832013-01-08 14:48:58 +01001074
1075 fft_sample.tlv.type = ATH_FFT_SAMPLE_HT20;
Sven Eckelmann12824372013-01-31 10:26:48 +01001076 length = sizeof(fft_sample) - sizeof(fft_sample.tlv);
1077 fft_sample.tlv.length = __cpu_to_be16(length);
Simon Wunderliche93d0832013-01-08 14:48:58 +01001078
Sven Eckelmann4ab0b0a2013-01-23 20:12:39 +01001079 fft_sample.freq = __cpu_to_be16(ah->curchan->chan->center_freq);
Simon Wunderliche93d0832013-01-08 14:48:58 +01001080 fft_sample.rssi = fix_rssi_inv_only(rs->rs_rssi_ctl0);
1081 fft_sample.noise = ah->noise;
1082
1083 switch (len - SPECTRAL_HT20_TOTAL_DATA_LEN) {
1084 case 0:
1085 /* length correct, nothing to do. */
1086 memcpy(bins, vdata, SPECTRAL_HT20_NUM_BINS);
1087 break;
1088 case -1:
1089 /* first byte missing, duplicate it. */
1090 memcpy(&bins[1], vdata, SPECTRAL_HT20_NUM_BINS - 1);
1091 bins[0] = vdata[0];
1092 break;
1093 case 2:
1094 /* MAC added 2 extra bytes at bin 30 and 32, remove them. */
1095 memcpy(bins, vdata, 30);
1096 bins[30] = vdata[31];
1097 memcpy(&bins[31], &vdata[33], SPECTRAL_HT20_NUM_BINS - 31);
1098 break;
1099 case 1:
1100 /* MAC added 2 extra bytes AND first byte is missing. */
1101 bins[0] = vdata[0];
1102 memcpy(&bins[0], vdata, 30);
1103 bins[31] = vdata[31];
1104 memcpy(&bins[32], &vdata[33], SPECTRAL_HT20_NUM_BINS - 32);
1105 break;
1106 default:
Simon Wunderlich9b99e662013-01-23 17:38:05 +01001107 return 1;
Simon Wunderliche93d0832013-01-08 14:48:58 +01001108 }
1109
1110 /* DC value (value in the middle) is the blind spot of the spectral
1111 * sample and invalid, interpolate it.
1112 */
1113 dc_pos = SPECTRAL_HT20_NUM_BINS / 2;
1114 bins[dc_pos] = (bins[dc_pos + 1] + bins[dc_pos - 1]) / 2;
1115
1116 /* mag data is at the end of the frame, in front of radar_info */
1117 mag_info = ((struct ath_ht20_mag_info *)radar_info) - 1;
1118
Sven Eckelmann4ab0b0a2013-01-23 20:12:39 +01001119 /* copy raw bins without scaling them */
1120 memcpy(fft_sample.data, bins, SPECTRAL_HT20_NUM_BINS);
1121 fft_sample.max_exp = mag_info->max_exp & 0xf;
Simon Wunderliche93d0832013-01-08 14:48:58 +01001122
Sven Eckelmann12824372013-01-31 10:26:48 +01001123 max_magnitude = spectral_max_magnitude(mag_info->all_bins);
1124 fft_sample.max_magnitude = __cpu_to_be16(max_magnitude);
Simon Wunderliche93d0832013-01-08 14:48:58 +01001125 fft_sample.max_index = spectral_max_index(mag_info->all_bins);
1126 fft_sample.bitmap_weight = spectral_bitmap_weight(mag_info->all_bins);
Sven Eckelmann4ab0b0a2013-01-23 20:12:39 +01001127 fft_sample.tsf = __cpu_to_be64(tsf);
Simon Wunderliche93d0832013-01-08 14:48:58 +01001128
1129 ath_debug_send_fft_sample(sc, &fft_sample.tlv);
Simon Wunderlich9b99e662013-01-23 17:38:05 +01001130 return 1;
1131#else
1132 return 0;
Simon Wunderliche93d0832013-01-08 14:48:58 +01001133#endif
1134}
1135
Christian Lamparter21fbbca2013-01-30 23:37:41 +01001136static void ath9k_apply_ampdu_details(struct ath_softc *sc,
1137 struct ath_rx_status *rs, struct ieee80211_rx_status *rxs)
1138{
1139 if (rs->rs_isaggr) {
1140 rxs->flag |= RX_FLAG_AMPDU_DETAILS | RX_FLAG_AMPDU_LAST_KNOWN;
1141
1142 rxs->ampdu_reference = sc->rx.ampdu_ref;
1143
1144 if (!rs->rs_moreaggr) {
1145 rxs->flag |= RX_FLAG_AMPDU_IS_LAST;
1146 sc->rx.ampdu_ref++;
1147 }
1148
1149 if (rs->rs_flags & ATH9K_RX_DELIM_CRC_PRE)
1150 rxs->flag |= RX_FLAG_AMPDU_DELIM_CRC_ERROR;
1151 }
1152}
1153
Felix Fietkaub5c804752010-04-15 17:38:48 -04001154int ath_rx_tasklet(struct ath_softc *sc, int flush, bool hp)
1155{
1156 struct ath_buf *bf;
Felix Fietkau0d955212011-01-26 18:23:27 +01001157 struct sk_buff *skb = NULL, *requeue_skb, *hdr_skb;
Luis R. Rodriguez5ca42622009-11-04 08:20:42 -08001158 struct ieee80211_rx_status *rxs;
Sujithcbe61d82009-02-09 13:27:12 +05301159 struct ath_hw *ah = sc->sc_ah;
Luis R. Rodriguez27c51f12009-09-10 11:08:14 -07001160 struct ath_common *common = ath9k_hw_common(ah);
Felix Fietkau7545daf2011-01-24 19:23:16 +01001161 struct ieee80211_hw *hw = sc->hw;
Sujithbe0418a2008-11-18 09:05:55 +05301162 struct ieee80211_hdr *hdr;
Luis R. Rodriguezc9b14172009-11-04 16:47:22 -08001163 int retval;
Felix Fietkau29bffa92010-03-29 20:14:23 -07001164 struct ath_rx_status rs;
Felix Fietkaub5c804752010-04-15 17:38:48 -04001165 enum ath9k_rx_qtype qtype;
1166 bool edma = !!(ah->caps.hw_caps & ATH9K_HW_CAP_EDMA);
1167 int dma_type;
Vasanthakumar Thiagarajan5c6dd922010-05-20 14:34:47 -07001168 u8 rx_status_len = ah->caps.rx_status_len;
Felix Fietkaua6d20552010-06-12 00:33:54 -04001169 u64 tsf = 0;
1170 u32 tsf_lower = 0;
Luis R. Rodriguez8ab2cd02010-09-16 15:12:26 -04001171 unsigned long flags;
Felix Fietkau2e1cd492013-04-08 00:04:10 +02001172 dma_addr_t new_buf_addr;
Sujithbe0418a2008-11-18 09:05:55 +05301173
Felix Fietkaub5c804752010-04-15 17:38:48 -04001174 if (edma)
Felix Fietkaub5c804752010-04-15 17:38:48 -04001175 dma_type = DMA_BIDIRECTIONAL;
Ming Lei56824222010-05-14 21:15:38 +08001176 else
1177 dma_type = DMA_FROM_DEVICE;
Felix Fietkaub5c804752010-04-15 17:38:48 -04001178
1179 qtype = hp ? ATH9K_RX_QUEUE_HP : ATH9K_RX_QUEUE_LP;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001180
Felix Fietkaua6d20552010-06-12 00:33:54 -04001181 tsf = ath9k_hw_gettsf64(ah);
1182 tsf_lower = tsf & 0xffffffff;
1183
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001184 do {
Lorenzo Bianconie1352fd2012-08-10 11:00:24 +02001185 bool decrypt_error = false;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001186
Felix Fietkau29bffa92010-03-29 20:14:23 -07001187 memset(&rs, 0, sizeof(rs));
Felix Fietkaub5c804752010-04-15 17:38:48 -04001188 if (edma)
1189 bf = ath_edma_get_next_rx_buf(sc, &rs, qtype);
1190 else
1191 bf = ath_get_next_rx_buf(sc, &rs);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001192
Felix Fietkaub5c804752010-04-15 17:38:48 -04001193 if (!bf)
1194 break;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001195
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001196 skb = bf->bf_mpdu;
Sujithbe0418a2008-11-18 09:05:55 +05301197 if (!skb)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001198 continue;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001199
Felix Fietkau0d955212011-01-26 18:23:27 +01001200 /*
1201 * Take frame header from the first fragment and RX status from
1202 * the last one.
1203 */
1204 if (sc->rx.frag)
1205 hdr_skb = sc->rx.frag;
1206 else
1207 hdr_skb = skb;
1208
1209 hdr = (struct ieee80211_hdr *) (hdr_skb->data + rx_status_len);
1210 rxs = IEEE80211_SKB_RXCB(hdr_skb);
Ben Greear15072182012-04-03 09:18:59 -07001211 if (ieee80211_is_beacon(hdr->frame_control)) {
1212 RX_STAT_INC(rx_beacons);
1213 if (!is_zero_ether_addr(common->curbssid) &&
Joe Perches2e42e472012-05-09 17:17:46 +00001214 ether_addr_equal(hdr->addr3, common->curbssid))
Ben Greear15072182012-04-03 09:18:59 -07001215 rs.is_mybeacon = true;
1216 else
1217 rs.is_mybeacon = false;
1218 }
Rajkumar Manoharancf3af742011-08-27 16:17:47 +05301219 else
1220 rs.is_mybeacon = false;
Luis R. Rodriguez5ca42622009-11-04 08:20:42 -08001221
Mohammed Shafi Shajakhanbe41b052012-10-08 21:30:51 +05301222 if (ieee80211_is_data_present(hdr->frame_control) &&
1223 !ieee80211_is_qos_nullfunc(hdr->frame_control))
1224 sc->rx.num_pkts++;
1225
Felix Fietkau29bffa92010-03-29 20:14:23 -07001226 ath_debug_stat_rx(sc, &rs);
Sujith1395d3f2010-01-08 10:36:11 +05301227
Ashok Nagarajanffb1c562012-03-09 18:57:39 -08001228 memset(rxs, 0, sizeof(struct ieee80211_rx_status));
1229
Felix Fietkaua6d20552010-06-12 00:33:54 -04001230 rxs->mactime = (tsf & ~0xffffffffULL) | rs.rs_tstamp;
1231 if (rs.rs_tstamp > tsf_lower &&
1232 unlikely(rs.rs_tstamp - tsf_lower > 0x10000000))
1233 rxs->mactime -= 0x100000000ULL;
1234
1235 if (rs.rs_tstamp < tsf_lower &&
1236 unlikely(tsf_lower - rs.rs_tstamp > 0x10000000))
1237 rxs->mactime += 0x100000000ULL;
1238
Zefir Kurtisi73e49372013-04-03 18:31:31 +02001239 if (rs.rs_phyerr == ATH9K_PHYERR_RADAR)
1240 ath9k_dfs_process_phyerr(sc, hdr, &rs, rxs->mactime);
1241
Simon Wunderlich9b99e662013-01-23 17:38:05 +01001242 if (rs.rs_status & ATH9K_RXERR_PHY) {
1243 if (ath_process_fft(sc, hdr, &rs, rxs->mactime)) {
1244 RX_STAT_INC(rx_spectral);
1245 goto requeue_drop_frag;
1246 }
1247 }
Simon Wunderliche93d0832013-01-08 14:48:58 +01001248
Felix Fietkau723e7112013-04-08 00:04:11 +02001249 retval = ath9k_rx_skb_preprocess(sc, hdr, &rs, rxs,
1250 &decrypt_error);
Zefir Kurtisi83c76572011-11-16 11:09:44 +01001251 if (retval)
1252 goto requeue_drop_frag;
1253
Rajkumar Manoharan01e18912012-03-15 05:34:27 +05301254 if (rs.is_mybeacon) {
1255 sc->hw_busy_count = 0;
1256 ath_start_rx_poll(sc, 3);
1257 }
Luis R. Rodriguezcb71d9b2008-11-21 17:41:33 -08001258 /* Ensure we always have an skb to requeue once we are done
1259 * processing the current buffer's skb */
Luis R. Rodriguezcc861f72009-11-04 09:11:34 -08001260 requeue_skb = ath_rxbuf_alloc(common, common->rx_bufsize, GFP_ATOMIC);
Luis R. Rodriguezcb71d9b2008-11-21 17:41:33 -08001261
1262 /* If there is no memory we ignore the current RX'd frame,
1263 * tell hardware it can give us a new frame using the old
Sujithb77f4832008-12-07 21:44:03 +05301264 * skb and put it at the tail of the sc->rx.rxbuf list for
Luis R. Rodriguezcb71d9b2008-11-21 17:41:33 -08001265 * processing. */
Ben Greear15072182012-04-03 09:18:59 -07001266 if (!requeue_skb) {
1267 RX_STAT_INC(rx_oom_err);
Felix Fietkau0d955212011-01-26 18:23:27 +01001268 goto requeue_drop_frag;
Ben Greear15072182012-04-03 09:18:59 -07001269 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001270
Felix Fietkau2e1cd492013-04-08 00:04:10 +02001271 /* We will now give hardware our shiny new allocated skb */
1272 new_buf_addr = dma_map_single(sc->dev, requeue_skb->data,
1273 common->rx_bufsize, dma_type);
1274 if (unlikely(dma_mapping_error(sc->dev, new_buf_addr))) {
1275 dev_kfree_skb_any(requeue_skb);
1276 goto requeue_drop_frag;
1277 }
1278
Vasanthakumar Thiagarajan9bf9fca2008-12-15 20:40:46 +05301279 /* Unmap the frame */
Gabor Juhos7da3c552009-01-14 20:17:03 +01001280 dma_unmap_single(sc->dev, bf->bf_buf_addr,
Felix Fietkau2e1cd492013-04-08 00:04:10 +02001281 common->rx_bufsize, dma_type);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001282
Sujith Manoharan176f0e82013-04-23 12:22:19 +05301283 bf->bf_mpdu = requeue_skb;
1284 bf->bf_buf_addr = new_buf_addr;
1285
Felix Fietkaub5c804752010-04-15 17:38:48 -04001286 skb_put(skb, rs.rs_datalen + ah->caps.rx_status_len);
1287 if (ah->caps.rx_status_len)
1288 skb_pull(skb, ah->caps.rx_status_len);
Sujithbe0418a2008-11-18 09:05:55 +05301289
Felix Fietkau0d955212011-01-26 18:23:27 +01001290 if (!rs.rs_more)
1291 ath9k_rx_skb_postprocess(common, hdr_skb, &rs,
1292 rxs, decrypt_error);
Sujithbe0418a2008-11-18 09:05:55 +05301293
Felix Fietkau0d955212011-01-26 18:23:27 +01001294 if (rs.rs_more) {
Ben Greear15072182012-04-03 09:18:59 -07001295 RX_STAT_INC(rx_frags);
Felix Fietkau0d955212011-01-26 18:23:27 +01001296 /*
1297 * rs_more indicates chained descriptors which can be
1298 * used to link buffers together for a sort of
1299 * scatter-gather operation.
1300 */
1301 if (sc->rx.frag) {
1302 /* too many fragments - cannot handle frame */
1303 dev_kfree_skb_any(sc->rx.frag);
1304 dev_kfree_skb_any(skb);
Ben Greear15072182012-04-03 09:18:59 -07001305 RX_STAT_INC(rx_too_many_frags_err);
Felix Fietkau0d955212011-01-26 18:23:27 +01001306 skb = NULL;
1307 }
1308 sc->rx.frag = skb;
1309 goto requeue;
1310 }
Felix Fietkau3747c3e2013-04-08 00:04:12 +02001311 if (rs.rs_status & ATH9K_RXERR_CORRUPT_DESC)
1312 goto requeue_drop_frag;
Felix Fietkau0d955212011-01-26 18:23:27 +01001313
1314 if (sc->rx.frag) {
1315 int space = skb->len - skb_tailroom(hdr_skb);
1316
Felix Fietkau0d955212011-01-26 18:23:27 +01001317 if (pskb_expand_head(hdr_skb, 0, space, GFP_ATOMIC) < 0) {
1318 dev_kfree_skb(skb);
Ben Greear15072182012-04-03 09:18:59 -07001319 RX_STAT_INC(rx_oom_err);
Felix Fietkau0d955212011-01-26 18:23:27 +01001320 goto requeue_drop_frag;
1321 }
1322
Eric Dumazetb5447ff2012-03-15 13:43:29 -07001323 sc->rx.frag = NULL;
1324
Felix Fietkau0d955212011-01-26 18:23:27 +01001325 skb_copy_from_linear_data(skb, skb_put(hdr_skb, skb->len),
1326 skb->len);
1327 dev_kfree_skb_any(skb);
1328 skb = hdr_skb;
1329 }
1330
Mohammed Shafi Shajakhaneb840a82011-11-29 20:30:35 +05301331
1332 if (ah->caps.hw_caps & ATH9K_HW_CAP_ANT_DIV_COMB) {
1333
1334 /*
1335 * change the default rx antenna if rx diversity
1336 * chooses the other antenna 3 times in a row.
1337 */
1338 if (sc->rx.defant != rs.rs_antenna) {
1339 if (++sc->rx.rxotherant >= 3)
1340 ath_setdefantenna(sc, rs.rs_antenna);
1341 } else {
1342 sc->rx.rxotherant = 0;
1343 }
1344
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001345 }
Vivek Natarajan3cbb5dd2009-01-20 11:17:08 +05301346
Felix Fietkau66760ea2011-07-13 23:35:05 +08001347 if (rxs->flag & RX_FLAG_MMIC_STRIPPED)
1348 skb_trim(skb, skb->len - 8);
1349
Luis R. Rodriguez8ab2cd02010-09-16 15:12:26 -04001350 spin_lock_irqsave(&sc->sc_pm_lock, flags);
Mohammed Shafi Shajakhanaaef24b2010-12-07 20:40:58 +05301351 if ((sc->ps_flags & (PS_WAIT_FOR_BEACON |
Rajkumar Manoharanf73c6042011-09-26 22:16:56 +05301352 PS_WAIT_FOR_CAB |
1353 PS_WAIT_FOR_PSPOLL_DATA)) ||
1354 ath9k_check_auto_sleep(sc))
1355 ath_rx_ps(sc, skb, rs.is_mybeacon);
Luis R. Rodriguez8ab2cd02010-09-16 15:12:26 -04001356 spin_unlock_irqrestore(&sc->sc_pm_lock, flags);
Jouni Malinencc659652009-05-14 21:28:48 +03001357
Felix Fietkau43c35282011-09-03 01:40:27 +02001358 if ((ah->caps.hw_caps & ATH9K_HW_CAP_ANT_DIV_COMB) && sc->ant_rx == 3)
Vasanthakumar Thiagarajan102885a2010-09-02 01:34:43 -07001359 ath_ant_comb_scan(sc, &rs);
1360
Christian Lamparter21fbbca2013-01-30 23:37:41 +01001361 ath9k_apply_ampdu_details(sc, &rs, rxs);
1362
Felix Fietkau7545daf2011-01-24 19:23:16 +01001363 ieee80211_rx(hw, skb);
Jouni Malinencc659652009-05-14 21:28:48 +03001364
Felix Fietkau0d955212011-01-26 18:23:27 +01001365requeue_drop_frag:
1366 if (sc->rx.frag) {
1367 dev_kfree_skb_any(sc->rx.frag);
1368 sc->rx.frag = NULL;
1369 }
Luis R. Rodriguezcb71d9b2008-11-21 17:41:33 -08001370requeue:
Felix Fietkaua3dc48e2013-01-09 16:16:52 +01001371 list_add_tail(&bf->list, &sc->rx.rxbuf);
1372 if (flush)
1373 continue;
1374
Felix Fietkaub5c804752010-04-15 17:38:48 -04001375 if (edma) {
Felix Fietkaub5c804752010-04-15 17:38:48 -04001376 ath_rx_edma_buf_link(sc, qtype);
1377 } else {
Felix Fietkaub5c804752010-04-15 17:38:48 -04001378 ath_rx_buf_link(sc, bf);
Felix Fietkaua3dc48e2013-01-09 16:16:52 +01001379 ath9k_hw_rxena(ah);
Felix Fietkaub5c804752010-04-15 17:38:48 -04001380 }
Sujithbe0418a2008-11-18 09:05:55 +05301381 } while (1);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001382
Rajkumar Manoharan29ab0b32011-08-13 10:28:10 +05301383 if (!(ah->imask & ATH9K_INT_RXEOL)) {
1384 ah->imask |= (ATH9K_INT_RXEOL | ATH9K_INT_RXORN);
Felix Fietkau72d874c2011-10-08 20:06:19 +02001385 ath9k_hw_set_interrupts(ah);
Rajkumar Manoharan29ab0b32011-08-13 10:28:10 +05301386 }
1387
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001388 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001389}