blob: b27ea89bbc97d98564f8ab5132076e2bdbb24240 [file] [log] [blame]
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07001/*
Sujithcee075a2009-03-13 09:07:23 +05302 * Copyright (c) 2008-2009 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
Sujith394cf0a2009-02-09 13:26:54 +053017#include "ath9k.h"
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070018
Jouni Malinenbce048d2009-03-03 19:23:28 +020019static struct ieee80211_hw * ath_get_virt_hw(struct ath_softc *sc,
20 struct ieee80211_hdr *hdr)
21{
Jouni Malinenc52f33d2009-03-03 19:23:29 +020022 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;
Jouni Malinenbce048d2009-03-03 19:23:28 +020038}
39
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070040/*
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.
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070047 */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070048static void ath_rx_buf_link(struct ath_softc *sc, struct ath_buf *bf)
49{
Sujithcbe61d82009-02-09 13:27:12 +053050 struct ath_hw *ah = sc->sc_ah;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070051 struct ath_desc *ds;
52 struct sk_buff *skb;
53
54 ATH_RXBUF_RESET(bf);
55
56 ds = bf->bf_desc;
Sujithbe0418a2008-11-18 09:05:55 +053057 ds->ds_link = 0; /* link to null */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070058 ds->ds_data = bf->bf_buf_addr;
59
Sujithbe0418a2008-11-18 09:05:55 +053060 /* virtual addr of the beginning of the buffer. */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070061 skb = bf->bf_mpdu;
Luis R. Rodriguez9680e8a2009-09-13 23:28:00 -070062 BUG_ON(skb == NULL);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070063 ds->ds_vdata = skb->data;
64
Sujithb77f4832008-12-07 21:44:03 +053065 /* setup rx descriptors. The rx.bufsize here tells the harware
Luis R. Rodriguezb4b6cda2008-11-20 17:15:13 -080066 * how much data it can DMA to us and that we are prepared
67 * to process */
Sujithb77f4832008-12-07 21:44:03 +053068 ath9k_hw_setuprxdesc(ah, ds,
69 sc->rx.bufsize,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070070 0);
71
Sujithb77f4832008-12-07 21:44:03 +053072 if (sc->rx.rxlink == NULL)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070073 ath9k_hw_putrxbuf(ah, bf->bf_daddr);
74 else
Sujithb77f4832008-12-07 21:44:03 +053075 *sc->rx.rxlink = bf->bf_daddr;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070076
Sujithb77f4832008-12-07 21:44:03 +053077 sc->rx.rxlink = &ds->ds_link;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070078 ath9k_hw_rxena(ah);
79}
80
Sujithff37e332008-11-24 12:07:55 +053081static void ath_setdefantenna(struct ath_softc *sc, u32 antenna)
82{
83 /* XXX block beacon interrupts */
84 ath9k_hw_setantenna(sc->sc_ah, antenna);
Sujithb77f4832008-12-07 21:44:03 +053085 sc->rx.defant = antenna;
86 sc->rx.rxotherant = 0;
Sujithff37e332008-11-24 12:07:55 +053087}
88
89/*
Sujithbe0418a2008-11-18 09:05:55 +053090 * 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.
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070093 */
Luis R. Rodriguezb4afffc2009-11-02 11:36:08 -080094static int ath_rx_prepare(struct ieee80211_hw *hw,
Luis R. Rodriguez26ab2642009-11-02 18:49:56 -080095 struct sk_buff *skb, struct ath_rx_status *rx_stats,
Sujithbe0418a2008-11-18 09:05:55 +053096 struct ieee80211_rx_status *rx_status, bool *decrypt_error,
97 struct ath_softc *sc)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070098{
Sujithbe0418a2008-11-18 09:05:55 +053099 struct ieee80211_hdr *hdr;
Sujithbe0418a2008-11-18 09:05:55 +0530100 u8 ratecode;
101 __le16 fc;
Senthil Balasubramaniana59b5a52009-07-14 20:17:07 -0400102 struct ieee80211_sta *sta;
103 struct ath_node *an;
104 int last_rssi = ATH_RSSI_DUMMY_MARKER;
105
Sujithbe0418a2008-11-18 09:05:55 +0530106 hdr = (struct ieee80211_hdr *)skb->data;
107 fc = hdr->frame_control;
108 memset(rx_status, 0, sizeof(struct ieee80211_rx_status));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700109
Luis R. Rodriguez26ab2642009-11-02 18:49:56 -0800110 if (rx_stats->rs_more) {
Sujithbe0418a2008-11-18 09:05:55 +0530111 /*
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 */
Sujith2660b812009-02-09 13:27:26 +0530117 if (sc->sc_ah->opmode != NL80211_IFTYPE_MONITOR)
Sujithbe0418a2008-11-18 09:05:55 +0530118 goto rx_next;
Luis R. Rodriguez26ab2642009-11-02 18:49:56 -0800119 } else if (rx_stats->rs_status != 0) {
120 if (rx_stats->rs_status & ATH9K_RXERR_CRC)
Sujithbe0418a2008-11-18 09:05:55 +0530121 rx_status->flag |= RX_FLAG_FAILED_FCS_CRC;
Luis R. Rodriguez26ab2642009-11-02 18:49:56 -0800122 if (rx_stats->rs_status & ATH9K_RXERR_PHY)
Sujithbe0418a2008-11-18 09:05:55 +0530123 goto rx_next;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700124
Luis R. Rodriguez26ab2642009-11-02 18:49:56 -0800125 if (rx_stats->rs_status & ATH9K_RXERR_DECRYPT) {
Sujithbe0418a2008-11-18 09:05:55 +0530126 *decrypt_error = true;
Luis R. Rodriguez26ab2642009-11-02 18:49:56 -0800127 } else if (rx_stats->rs_status & ATH9K_RXERR_MIC) {
Sujithbe0418a2008-11-18 09:05:55 +0530128 if (ieee80211_is_ctl(fc))
129 /*
130 * Sometimes, we get invalid
131 * MIC failures on valid control frames.
132 * Remove these mic errors.
133 */
Luis R. Rodriguez26ab2642009-11-02 18:49:56 -0800134 rx_stats->rs_status &= ~ATH9K_RXERR_MIC;
Sujithbe0418a2008-11-18 09:05:55 +0530135 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 */
Sujith2660b812009-02-09 13:27:26 +0530143 if (sc->sc_ah->opmode == NL80211_IFTYPE_MONITOR) {
Luis R. Rodriguez26ab2642009-11-02 18:49:56 -0800144 if (rx_stats->rs_status &
Sujithbe0418a2008-11-18 09:05:55 +0530145 ~(ATH9K_RXERR_DECRYPT | ATH9K_RXERR_MIC |
146 ATH9K_RXERR_CRC))
147 goto rx_next;
148 } else {
Luis R. Rodriguez26ab2642009-11-02 18:49:56 -0800149 if (rx_stats->rs_status &
Sujithbe0418a2008-11-18 09:05:55 +0530150 ~(ATH9K_RXERR_DECRYPT | ATH9K_RXERR_MIC)) {
151 goto rx_next;
152 }
153 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700154 }
155
Luis R. Rodriguez26ab2642009-11-02 18:49:56 -0800156 ratecode = rx_stats->rs_rate;
Sujithbe0418a2008-11-18 09:05:55 +0530157
Sujithbe0418a2008-11-18 09:05:55 +0530158 if (ratecode & 0x80) {
Jouni Malinenbaad1d92008-12-12 14:38:34 +0200159 /* HT rate */
160 rx_status->flag |= RX_FLAG_HT;
Luis R. Rodriguez26ab2642009-11-02 18:49:56 -0800161 if (rx_stats->rs_flags & ATH9K_RX_2040)
Jouni Malinenbaad1d92008-12-12 14:38:34 +0200162 rx_status->flag |= RX_FLAG_40MHZ;
Luis R. Rodriguez26ab2642009-11-02 18:49:56 -0800163 if (rx_stats->rs_flags & ATH9K_RX_GI)
Jouni Malinenbaad1d92008-12-12 14:38:34 +0200164 rx_status->flag |= RX_FLAG_SHORT_GI;
165 rx_status->rate_idx = ratecode & 0x7f;
166 } else {
167 int i = 0, cur_band, n_rates;
Jouni Malinenbaad1d92008-12-12 14:38:34 +0200168
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 }
Sujithbe0418a2008-11-18 09:05:55 +0530186 }
187
Senthil Balasubramaniana59b5a52009-07-14 20:17:07 -0400188 rcu_read_lock();
Johannes Berg5ed176e2009-11-04 14:42:28 +0100189 /* XXX: use ieee80211_find_sta! */
Luis R. Rodriguezcee71d62009-11-02 14:17:51 -0800190 sta = ieee80211_find_sta_by_hw(hw, hdr->addr2);
Senthil Balasubramaniana59b5a52009-07-14 20:17:07 -0400191 if (sta) {
192 an = (struct ath_node *) sta->drv_priv;
Luis R. Rodriguez26ab2642009-11-02 18:49:56 -0800193 if (rx_stats->rs_rssi != ATH9K_RSSI_BAD &&
194 !rx_stats->rs_moreaggr)
195 ATH_RSSI_LPF(an->last_rssi, rx_stats->rs_rssi);
Senthil Balasubramaniana59b5a52009-07-14 20:17:07 -0400196 last_rssi = an->last_rssi;
197 }
198 rcu_read_unlock();
199
200 if (likely(last_rssi != ATH_RSSI_DUMMY_MARKER))
Luis R. Rodriguez26ab2642009-11-02 18:49:56 -0800201 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;
Senthil Balasubramaniana59b5a52009-07-14 20:17:07 -0400207
Sujith5e32b1e2009-08-07 09:45:36 +0530208 /* Update Beacon RSSI, this is used by ANI. */
209 if (ieee80211_is_beacon(fc))
Luis R. Rodriguez26ab2642009-11-02 18:49:56 -0800210 sc->sc_ah->stats.avgbrssi = rx_stats->rs_rssi;
Sujith5e32b1e2009-08-07 09:45:36 +0530211
Luis R. Rodriguez30cbd422009-11-03 16:10:46 -0800212 rx_status->mactime = ath9k_hw_extend_tsf(sc->sc_ah, rx_stats->rs_tstamp);
Jouni Malinenbce048d2009-03-03 19:23:28 +0200213 rx_status->band = hw->conf.channel->band;
214 rx_status->freq = hw->conf.channel->center_freq;
Sujith17d79042009-02-09 13:27:03 +0530215 rx_status->noise = sc->ani.noise_floor;
Luis R. Rodriguez26ab2642009-11-02 18:49:56 -0800216 rx_status->signal = ATH_DEFAULT_NOISE_FLOOR + rx_stats->rs_rssi;
217 rx_status->antenna = rx_stats->rs_antenna;
Sujithbe0418a2008-11-18 09:05:55 +0530218
Luis R. Rodriguez7d5ca3b2009-06-19 11:57:59 -0700219 /*
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))
Luis R. Rodriguez26ab2642009-11-02 18:49:56 -0800241 rx_status->qual = rx_stats->rs_rssi * 100 / 45;
Luis R. Rodriguez7d5ca3b2009-06-19 11:57:59 -0700242 else
Luis R. Rodriguez26ab2642009-11-02 18:49:56 -0800243 rx_status->qual = rx_stats->rs_rssi * 100 / 35;
Sujithbe0418a2008-11-18 09:05:55 +0530244
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;
253rx_next:
254 return 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700255}
256
257static void ath_opmode_init(struct ath_softc *sc)
258{
Sujithcbe61d82009-02-09 13:27:12 +0530259 struct ath_hw *ah = sc->sc_ah;
Luis R. Rodriguez15107182009-09-10 09:22:37 -0700260 struct ath_common *common = ath9k_hw_common(ah);
261
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700262 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 */
Sujith2660b812009-02-09 13:27:26 +0530269 if (ah->caps.hw_caps & ATH9K_HW_CAP_BSSIDMASK)
Luis R. Rodriguez13b81552009-09-10 17:52:45 -0700270 ath_hw_setbssidmask(common);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700271
272 /* configure operational mode */
273 ath9k_hw_setopmode(ah);
274
275 /* Handle any link-level address change. */
Luis R. Rodriguez15107182009-09-10 09:22:37 -0700276 ath9k_hw_setmac(ah, common->macaddr);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700277
278 /* calculate and install multicast filter */
279 mfilt[0] = mfilt[1] = ~0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700280 ath9k_hw_setmcastfilter(ah, mfilt[0], mfilt[1]);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700281}
282
283int ath_rx_init(struct ath_softc *sc, int nbufs)
284{
Luis R. Rodriguez27c51f12009-09-10 11:08:14 -0700285 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700286 struct sk_buff *skb;
287 struct ath_buf *bf;
288 int error = 0;
289
Sujith797fe5cb2009-03-30 15:28:45 +0530290 spin_lock_init(&sc->rx.rxflushlock);
291 sc->sc_flags &= ~SC_OP_RXFLUSH;
292 spin_lock_init(&sc->rx.rxbuflock);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700293
Sujith797fe5cb2009-03-30 15:28:45 +0530294 sc->rx.bufsize = roundup(IEEE80211_MAX_MPDU_LEN,
Luis R. Rodriguez27c51f12009-09-10 11:08:14 -0700295 min(common->cachelsz, (u16)64));
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700296
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700297 ath_print(common, ATH_DBG_CONFIG, "cachelsz %u rxbufsize %u\n",
298 common->cachelsz, sc->rx.bufsize);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700299
Sujith797fe5cb2009-03-30 15:28:45 +0530300 /* Initialize rx descriptors */
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700301
Sujith797fe5cb2009-03-30 15:28:45 +0530302 error = ath_descdma_setup(sc, &sc->rx.rxdma, &sc->rx.rxbuf,
303 "rx", nbufs, 1);
304 if (error != 0) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700305 ath_print(common, ATH_DBG_FATAL,
306 "failed to allocate rx descriptors: %d\n", error);
Sujith797fe5cb2009-03-30 15:28:45 +0530307 goto err;
308 }
309
310 list_for_each_entry(bf, &sc->rx.rxbuf, list) {
Luis R. Rodriguez27c51f12009-09-10 11:08:14 -0700311 skb = ath_rxbuf_alloc(common, sc->rx.bufsize, GFP_KERNEL);
Sujith797fe5cb2009-03-30 15:28:45 +0530312 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;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700325 ath_print(common, ATH_DBG_FATAL,
326 "dma_mapping_error() on RX init\n");
Sujith797fe5cb2009-03-30 15:28:45 +0530327 error = -ENOMEM;
328 goto err;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700329 }
Sujith797fe5cb2009-03-30 15:28:45 +0530330 bf->bf_dmacontext = bf->bf_buf_addr;
331 }
332 sc->rx.rxlink = NULL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700333
Sujith797fe5cb2009-03-30 15:28:45 +0530334err:
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700335 if (error)
336 ath_rx_cleanup(sc);
337
338 return error;
339}
340
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700341void ath_rx_cleanup(struct ath_softc *sc)
342{
343 struct sk_buff *skb;
344 struct ath_buf *bf;
345
Sujithb77f4832008-12-07 21:44:03 +0530346 list_for_each_entry(bf, &sc->rx.rxbuf, list) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700347 skb = bf->bf_mpdu;
Luis R. Rodriguez051b9192009-03-23 18:25:01 -0400348 if (skb) {
Sujith797fe5cb2009-03-30 15:28:45 +0530349 dma_unmap_single(sc->dev, bf->bf_buf_addr,
350 sc->rx.bufsize, DMA_FROM_DEVICE);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700351 dev_kfree_skb(skb);
Luis R. Rodriguez051b9192009-03-23 18:25:01 -0400352 }
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700353 }
354
Sujithb77f4832008-12-07 21:44:03 +0530355 if (sc->rx.rxdma.dd_desc_len != 0)
356 ath_descdma_cleanup(sc, &sc->rx.rxdma, &sc->rx.rxbuf);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700357}
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
378u32 ath_calcrxfilter(struct ath_softc *sc)
379{
380#define RX_FILTER_PRESERVE (ATH9K_RX_FILTER_PHYERR | ATH9K_RX_FILTER_PHYRADAR)
Sujith7dcfdcd2008-08-11 14:03:13 +0530381
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700382 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 */
Sujith2660b812009-02-09 13:27:26 +0530389 if (sc->sc_ah->opmode != NL80211_IFTYPE_STATION)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700390 rfilt |= ATH9K_RX_FILTER_PROBEREQ;
391
Jouni Malinen217ba9d2009-03-10 10:55:50 +0200392 /*
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 */
Sujith2660b812009-02-09 13:27:26 +0530397 if (((sc->sc_ah->opmode != NL80211_IFTYPE_AP) &&
Sujithb77f4832008-12-07 21:44:03 +0530398 (sc->rx.rxfilter & FIF_PROMISC_IN_BSS)) ||
Jouni Malinen217ba9d2009-03-10 10:55:50 +0200399 (sc->sc_ah->opmode == NL80211_IFTYPE_MONITOR))
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700400 rfilt |= ATH9K_RX_FILTER_PROM;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700401
Sujithd42c6b72009-02-04 08:10:22 +0530402 if (sc->rx.rxfilter & FIF_CONTROL)
403 rfilt |= ATH9K_RX_FILTER_CONTROL;
404
Vasanthakumar Thiagarajandbaaa142009-02-19 15:41:52 +0530405 if ((sc->sc_ah->opmode == NL80211_IFTYPE_STATION) &&
406 !(sc->rx.rxfilter & FIF_BCN_PRBRESP_PROMISC))
407 rfilt |= ATH9K_RX_FILTER_MYBEACON;
408 else
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700409 rfilt |= ATH9K_RX_FILTER_BEACON;
410
Senthil Balasubramanian66afad02009-09-18 15:06:07 +0530411 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))
Vasanthakumar Thiagarajandbaaa142009-02-19 15:41:52 +0530415 rfilt |= ATH9K_RX_FILTER_PSPOLL;
Sujithbe0418a2008-11-18 09:05:55 +0530416
Sujith7ea310b2009-09-03 12:08:43 +0530417 if (conf_is_ht(&sc->hw->conf))
418 rfilt |= ATH9K_RX_FILTER_COMP_BAR;
419
Javier Cardona5eb6ba82009-08-20 19:12:07 -0700420 if (sc->sec_wiphy || (sc->rx.rxfilter & FIF_OTHER_BSS)) {
Jouni Malinenb93bce22009-03-03 19:23:30 +0200421 /* TODO: only needed if more than one BSSID is in use in
422 * station/adhoc mode */
Javier Cardona5eb6ba82009-08-20 19:12:07 -0700423 /* 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;
Jouni Malinenb93bce22009-03-03 19:23:30 +0200426 rfilt |= ATH9K_RX_FILTER_MCAST_BCAST_ALL;
427 }
428
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700429 return rfilt;
Sujith7dcfdcd2008-08-11 14:03:13 +0530430
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700431#undef RX_FILTER_PRESERVE
432}
433
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700434int ath_startrecv(struct ath_softc *sc)
435{
Sujithcbe61d82009-02-09 13:27:12 +0530436 struct ath_hw *ah = sc->sc_ah;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700437 struct ath_buf *bf, *tbf;
438
Sujithb77f4832008-12-07 21:44:03 +0530439 spin_lock_bh(&sc->rx.rxbuflock);
440 if (list_empty(&sc->rx.rxbuf))
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700441 goto start_recv;
442
Sujithb77f4832008-12-07 21:44:03 +0530443 sc->rx.rxlink = NULL;
444 list_for_each_entry_safe(bf, tbf, &sc->rx.rxbuf, list) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700445 ath_rx_buf_link(sc, bf);
446 }
447
448 /* We could have deleted elements so the list may be empty now */
Sujithb77f4832008-12-07 21:44:03 +0530449 if (list_empty(&sc->rx.rxbuf))
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700450 goto start_recv;
451
Sujithb77f4832008-12-07 21:44:03 +0530452 bf = list_first_entry(&sc->rx.rxbuf, struct ath_buf, list);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700453 ath9k_hw_putrxbuf(ah, bf->bf_daddr);
Sujithbe0418a2008-11-18 09:05:55 +0530454 ath9k_hw_rxena(ah);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700455
456start_recv:
Sujithb77f4832008-12-07 21:44:03 +0530457 spin_unlock_bh(&sc->rx.rxbuflock);
Sujithbe0418a2008-11-18 09:05:55 +0530458 ath_opmode_init(sc);
459 ath9k_hw_startpcureceive(ah);
460
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700461 return 0;
462}
463
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700464bool ath_stoprecv(struct ath_softc *sc)
465{
Sujithcbe61d82009-02-09 13:27:12 +0530466 struct ath_hw *ah = sc->sc_ah;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700467 bool stopped;
468
Sujithbe0418a2008-11-18 09:05:55 +0530469 ath9k_hw_stoppcurecv(ah);
470 ath9k_hw_setrxfilter(ah, 0);
471 stopped = ath9k_hw_stopdmarecv(ah);
Sujithb77f4832008-12-07 21:44:03 +0530472 sc->rx.rxlink = NULL;
Sujithbe0418a2008-11-18 09:05:55 +0530473
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700474 return stopped;
475}
476
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700477void ath_flushrecv(struct ath_softc *sc)
478{
Sujithb77f4832008-12-07 21:44:03 +0530479 spin_lock_bh(&sc->rx.rxflushlock);
Sujith98deeea2008-08-11 14:05:46 +0530480 sc->sc_flags |= SC_OP_RXFLUSH;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700481 ath_rx_tasklet(sc, 1);
Sujith98deeea2008-08-11 14:05:46 +0530482 sc->sc_flags &= ~SC_OP_RXFLUSH;
Sujithb77f4832008-12-07 21:44:03 +0530483 spin_unlock_bh(&sc->rx.rxflushlock);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700484}
485
Jouni Malinencc659652009-05-14 21:28:48 +0300486static 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
Jouni Malinencc659652009-05-14 21:28:48 +0300518static void ath_rx_ps_beacon(struct ath_softc *sc, struct sk_buff *skb)
519{
520 struct ieee80211_mgmt *mgmt;
Luis R. Rodriguez15107182009-09-10 09:22:37 -0700521 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Jouni Malinencc659652009-05-14 21:28:48 +0300522
523 if (skb->len < 24 + 8 + 2 + 2)
524 return;
525
526 mgmt = (struct ieee80211_mgmt *)skb->data;
Luis R. Rodriguez15107182009-09-10 09:22:37 -0700527 if (memcmp(common->curbssid, mgmt->bssid, ETH_ALEN) != 0)
Jouni Malinencc659652009-05-14 21:28:48 +0300528 return; /* not from our current AP */
529
Gabor Juhos293dc5d2009-06-19 12:17:48 +0200530 sc->sc_flags &= ~SC_OP_WAIT_FOR_BEACON;
531
Jouni Malinenccdfeab2009-05-20 21:59:08 +0300532 if (sc->sc_flags & SC_OP_BEACON_SYNC) {
533 sc->sc_flags &= ~SC_OP_BEACON_SYNC;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700534 ath_print(common, ATH_DBG_PS,
535 "Reconfigure Beacon timers based on "
536 "timestamp from the AP\n");
Jouni Malinenccdfeab2009-05-20 21:59:08 +0300537 ath_beacon_config(sc, NULL);
538 }
539
Jouni Malinencc659652009-05-14 21:28:48 +0300540 if (ath_beacon_dtim_pending_cab(skb)) {
541 /*
542 * Remain awake waiting for buffered broadcast/multicast
Gabor Juhos58f5fff2009-06-17 20:53:20 +0200543 * 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.
Jouni Malinencc659652009-05-14 21:28:48 +0300547 */
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700548 ath_print(common, ATH_DBG_PS, "Received DTIM beacon indicating "
549 "buffered broadcast/multicast frame(s)\n");
Gabor Juhos58f5fff2009-06-17 20:53:20 +0200550 sc->sc_flags |= SC_OP_WAIT_FOR_CAB | SC_OP_WAIT_FOR_BEACON;
Jouni Malinencc659652009-05-14 21:28:48 +0300551 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 */
Gabor Juhos293dc5d2009-06-19 12:17:48 +0200560 sc->sc_flags &= ~SC_OP_WAIT_FOR_CAB;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700561 ath_print(common, ATH_DBG_PS,
562 "PS wait for CAB frames timed out\n");
Jouni Malinencc659652009-05-14 21:28:48 +0300563 }
Jouni Malinencc659652009-05-14 21:28:48 +0300564}
565
566static void ath_rx_ps(struct ath_softc *sc, struct sk_buff *skb)
567{
568 struct ieee80211_hdr *hdr;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700569 struct ath_common *common = ath9k_hw_common(sc->sc_ah);
Jouni Malinencc659652009-05-14 21:28:48 +0300570
571 hdr = (struct ieee80211_hdr *)skb->data;
572
573 /* Process Beacon and CAB receive in PS state */
Jouni Malinen9a23f9c2009-05-19 17:01:38 +0300574 if ((sc->sc_flags & SC_OP_WAIT_FOR_BEACON) &&
575 ieee80211_is_beacon(hdr->frame_control))
Jouni Malinencc659652009-05-14 21:28:48 +0300576 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)) {
Jouni Malinencc659652009-05-14 21:28:48 +0300582 /*
583 * No more broadcast/multicast frames to be received at this
584 * point.
585 */
Gabor Juhos293dc5d2009-06-19 12:17:48 +0200586 sc->sc_flags &= ~SC_OP_WAIT_FOR_CAB;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700587 ath_print(common, ATH_DBG_PS,
588 "All PS CAB frames received, back to sleep\n");
Jouni Malinen9a23f9c2009-05-19 17:01:38 +0300589 } 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;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700593 ath_print(common, ATH_DBG_PS,
594 "Going back to sleep after having received "
595 "PS-Poll data (0x%x)\n",
Jouni Malinen9a23f9c2009-05-19 17:01:38 +0300596 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));
Jouni Malinencc659652009-05-14 21:28:48 +0300600 }
601}
602
Luis R. Rodriguezb4afffc2009-11-02 11:36:08 -0800603static void ath_rx_send_to_mac80211(struct ieee80211_hw *hw,
604 struct ath_softc *sc, struct sk_buff *skb,
Jouni Malinen9d64a3c2009-05-14 21:28:47 +0300605 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);
Johannes Bergf1d58c22009-06-17 13:13:00 +0200625 if (nskb) {
626 memcpy(IEEE80211_SKB_RXCB(nskb), rx_status,
627 sizeof(*rx_status));
628 ieee80211_rx(aphy->hw, nskb);
629 }
Jouni Malinen9d64a3c2009-05-14 21:28:47 +0300630 }
Johannes Bergf1d58c22009-06-17 13:13:00 +0200631 memcpy(IEEE80211_SKB_RXCB(skb), rx_status, sizeof(*rx_status));
632 ieee80211_rx(sc->hw, skb);
Jouni Malinen9d64a3c2009-05-14 21:28:47 +0300633 } else {
634 /* Deliver unicast frames based on receiver address */
Johannes Bergf1d58c22009-06-17 13:13:00 +0200635 memcpy(IEEE80211_SKB_RXCB(skb), rx_status, sizeof(*rx_status));
Luis R. Rodriguezb4afffc2009-11-02 11:36:08 -0800636 ieee80211_rx(hw, skb);
Jouni Malinen9d64a3c2009-05-14 21:28:47 +0300637 }
638}
639
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700640int ath_rx_tasklet(struct ath_softc *sc, int flush)
641{
642#define PA2DESC(_sc, _pa) \
Sujithb77f4832008-12-07 21:44:03 +0530643 ((struct ath_desc *)((caddr_t)(_sc)->rx.rxdma.dd_desc + \
644 ((_pa) - (_sc)->rx.rxdma.dd_desc_paddr)))
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700645
Sujithbe0418a2008-11-18 09:05:55 +0530646 struct ath_buf *bf;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700647 struct ath_desc *ds;
Luis R. Rodriguez26ab2642009-11-02 18:49:56 -0800648 struct ath_rx_status *rx_stats;
Luis R. Rodriguezcb71d9b2008-11-21 17:41:33 -0800649 struct sk_buff *skb = NULL, *requeue_skb;
Sujithbe0418a2008-11-18 09:05:55 +0530650 struct ieee80211_rx_status rx_status;
Sujithcbe61d82009-02-09 13:27:12 +0530651 struct ath_hw *ah = sc->sc_ah;
Luis R. Rodriguez27c51f12009-09-10 11:08:14 -0700652 struct ath_common *common = ath9k_hw_common(ah);
Luis R. Rodriguezb4afffc2009-11-02 11:36:08 -0800653 /*
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;
Sujithbe0418a2008-11-18 09:05:55 +0530659 struct ieee80211_hdr *hdr;
660 int hdrlen, padsize, retval;
661 bool decrypt_error = false;
662 u8 keyix;
Pavel Roskin853da112009-04-03 20:10:26 -0400663 __le16 fc;
Sujithbe0418a2008-11-18 09:05:55 +0530664
Sujithb77f4832008-12-07 21:44:03 +0530665 spin_lock_bh(&sc->rx.rxbuflock);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700666
667 do {
668 /* If handling rx interrupt and flush is in progress => exit */
Sujith98deeea2008-08-11 14:05:46 +0530669 if ((sc->sc_flags & SC_OP_RXFLUSH) && (flush == 0))
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700670 break;
671
Sujithb77f4832008-12-07 21:44:03 +0530672 if (list_empty(&sc->rx.rxbuf)) {
673 sc->rx.rxlink = NULL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700674 break;
675 }
676
Sujithb77f4832008-12-07 21:44:03 +0530677 bf = list_first_entry(&sc->rx.rxbuf, struct ath_buf, list);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700678 ds = bf->bf_desc;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700679
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 */
Sujithbe0418a2008-11-18 09:05:55 +0530691 retval = ath9k_hw_rxprocdesc(ah, ds,
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700692 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
Sujithb77f4832008-12-07 21:44:03 +0530699 if (list_is_last(&bf->list, &sc->rx.rxbuf)) {
700 sc->rx.rxlink = NULL;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700701 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;
Sujithbe0418a2008-11-18 09:05:55 +0530718 retval = ath9k_hw_rxprocdesc(ah, tds, tbf->bf_daddr,
719 PA2DESC(sc, tds->ds_link), 0);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700720 if (retval == -EINPROGRESS) {
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700721 break;
722 }
723 }
724
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700725 skb = bf->bf_mpdu;
Sujithbe0418a2008-11-18 09:05:55 +0530726 if (!skb)
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700727 continue;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700728
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700729 /*
Vasanthakumar Thiagarajan9bf9fca2008-12-15 20:40:46 +0530730 * Synchronize the DMA transfer with CPU before
731 * 1. accessing the frame
732 * 2. requeueing the same buffer to h/w
733 */
Gabor Juhos7da3c552009-01-14 20:17:03 +0100734 dma_sync_single_for_cpu(sc->dev, bf->bf_buf_addr,
Vasanthakumar Thiagarajan9bf9fca2008-12-15 20:40:46 +0530735 sc->rx.bufsize,
Gabor Juhos7da3c552009-01-14 20:17:03 +0100736 DMA_FROM_DEVICE);
Vasanthakumar Thiagarajan9bf9fca2008-12-15 20:40:46 +0530737
Luis R. Rodriguezb4afffc2009-11-02 11:36:08 -0800738 hdr = (struct ieee80211_hdr *) skb->data;
739 hw = ath_get_virt_hw(sc, hdr);
Luis R. Rodriguez26ab2642009-11-02 18:49:56 -0800740 rx_stats = &ds->ds_rxstat;
Luis R. Rodriguezb4afffc2009-11-02 11:36:08 -0800741
Vasanthakumar Thiagarajan9bf9fca2008-12-15 20:40:46 +0530742 /*
Sujithbe0418a2008-11-18 09:05:55 +0530743 * If we're asked to flush receive queue, directly
744 * chain it back at the queue without processing it.
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700745 */
Sujithbe0418a2008-11-18 09:05:55 +0530746 if (flush)
Luis R. Rodriguezcb71d9b2008-11-21 17:41:33 -0800747 goto requeue;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700748
Luis R. Rodriguez26ab2642009-11-02 18:49:56 -0800749 if (!rx_stats->rs_datalen)
Luis R. Rodriguezcb71d9b2008-11-21 17:41:33 -0800750 goto requeue;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700751
Sujithbe0418a2008-11-18 09:05:55 +0530752 /* The status portion of the descriptor could get corrupted. */
Luis R. Rodriguez26ab2642009-11-02 18:49:56 -0800753 if (sc->rx.bufsize < rx_stats->rs_datalen)
Luis R. Rodriguezcb71d9b2008-11-21 17:41:33 -0800754 goto requeue;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700755
Luis R. Rodriguez26ab2642009-11-02 18:49:56 -0800756 if (!ath_rx_prepare(hw, skb, rx_stats,
Luis R. Rodriguezb4afffc2009-11-02 11:36:08 -0800757 &rx_status, &decrypt_error, sc))
Luis R. Rodriguezcb71d9b2008-11-21 17:41:33 -0800758 goto requeue;
759
760 /* Ensure we always have an skb to requeue once we are done
761 * processing the current buffer's skb */
Luis R. Rodriguez27c51f12009-09-10 11:08:14 -0700762 requeue_skb = ath_rxbuf_alloc(common, sc->rx.bufsize, GFP_ATOMIC);
Luis R. Rodriguezcb71d9b2008-11-21 17:41:33 -0800763
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
Sujithb77f4832008-12-07 21:44:03 +0530766 * skb and put it at the tail of the sc->rx.rxbuf list for
Luis R. Rodriguezcb71d9b2008-11-21 17:41:33 -0800767 * processing. */
768 if (!requeue_skb)
769 goto requeue;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700770
Vasanthakumar Thiagarajan9bf9fca2008-12-15 20:40:46 +0530771 /* Unmap the frame */
Gabor Juhos7da3c552009-01-14 20:17:03 +0100772 dma_unmap_single(sc->dev, bf->bf_buf_addr,
Sujithb77f4832008-12-07 21:44:03 +0530773 sc->rx.bufsize,
Gabor Juhos7da3c552009-01-14 20:17:03 +0100774 DMA_FROM_DEVICE);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700775
Luis R. Rodriguez26ab2642009-11-02 18:49:56 -0800776 skb_put(skb, rx_stats->rs_datalen);
Sujithbe0418a2008-11-18 09:05:55 +0530777
778 /* see if any padding is done by the hw and remove it */
Sujithbe0418a2008-11-18 09:05:55 +0530779 hdrlen = ieee80211_get_hdrlen_from_skb(skb);
Pavel Roskin853da112009-04-03 20:10:26 -0400780 fc = hdr->frame_control;
Sujithbe0418a2008-11-18 09:05:55 +0530781
Jouni Malinen9c5f89b2008-12-11 18:22:13 +0200782 /* 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) {
Sujithbe0418a2008-11-18 09:05:55 +0530792 memmove(skb->data + padsize, skb->data, hdrlen);
793 skb_pull(skb, padsize);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700794 }
795
Luis R. Rodriguez26ab2642009-11-02 18:49:56 -0800796 keyix = rx_stats->rs_keyix;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700797
Sujithbe0418a2008-11-18 09:05:55 +0530798 if (!(keyix == ATH9K_RXKEYIX_INVALID) && !decrypt_error) {
799 rx_status.flag |= RX_FLAG_DECRYPTED;
Jouni Malinen9d64a3c2009-05-14 21:28:47 +0300800 } else if (ieee80211_has_protected(fc)
Sujithbe0418a2008-11-18 09:05:55 +0530801 && !decrypt_error && skb->len >= hdrlen + 4) {
802 keyix = skb->data[hdrlen + 3] >> 6;
803
Sujith17d79042009-02-09 13:27:03 +0530804 if (test_bit(keyix, sc->keymap))
Sujithbe0418a2008-11-18 09:05:55 +0530805 rx_status.flag |= RX_FLAG_DECRYPTED;
806 }
Jouni Malinen0ced0e12009-01-08 13:32:13 +0200807 if (ah->sw_mgmt_crypto &&
808 (rx_status.flag & RX_FLAG_DECRYPTED) &&
Jouni Malinen9d64a3c2009-05-14 21:28:47 +0300809 ieee80211_is_mgmt(fc)) {
Jouni Malinen0ced0e12009-01-08 13:32:13 +0200810 /* Use software decrypt for management frames. */
811 rx_status.flag &= ~RX_FLAG_DECRYPTED;
812 }
Sujithbe0418a2008-11-18 09:05:55 +0530813
Luis R. Rodriguezcb71d9b2008-11-21 17:41:33 -0800814 /* We will now give hardware our shiny new allocated skb */
815 bf->bf_mpdu = requeue_skb;
Gabor Juhos7da3c552009-01-14 20:17:03 +0100816 bf->bf_buf_addr = dma_map_single(sc->dev, requeue_skb->data,
Sujithb77f4832008-12-07 21:44:03 +0530817 sc->rx.bufsize,
Gabor Juhos7da3c552009-01-14 20:17:03 +0100818 DMA_FROM_DEVICE);
819 if (unlikely(dma_mapping_error(sc->dev,
Luis R. Rodriguezf8316df2008-12-03 03:35:29 -0800820 bf->bf_buf_addr))) {
821 dev_kfree_skb_any(requeue_skb);
822 bf->bf_mpdu = NULL;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700823 ath_print(common, ATH_DBG_FATAL,
824 "dma_mapping_error() on RX\n");
Luis R. Rodriguezb4afffc2009-11-02 11:36:08 -0800825 ath_rx_send_to_mac80211(hw, sc, skb, &rx_status);
Luis R. Rodriguezf8316df2008-12-03 03:35:29 -0800826 break;
827 }
Luis R. Rodriguezcb71d9b2008-11-21 17:41:33 -0800828 bf->bf_dmacontext = bf->bf_buf_addr;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700829
830 /*
831 * change the default rx antenna if rx diversity chooses the
832 * other antenna 3 times in a row.
833 */
Sujithb77f4832008-12-07 21:44:03 +0530834 if (sc->rx.defant != ds->ds_rxstat.rs_antenna) {
835 if (++sc->rx.rxotherant >= 3)
Luis R. Rodriguez26ab2642009-11-02 18:49:56 -0800836 ath_setdefantenna(sc, rx_stats->rs_antenna);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700837 } else {
Sujithb77f4832008-12-07 21:44:03 +0530838 sc->rx.rxotherant = 0;
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700839 }
Vivek Natarajan3cbb5dd2009-01-20 11:17:08 +0530840
Jouni Malinen9a23f9c2009-05-19 17:01:38 +0300841 if (unlikely(sc->sc_flags & (SC_OP_WAIT_FOR_BEACON |
Gabor Juhosf0e9a862009-06-15 17:49:11 +0200842 SC_OP_WAIT_FOR_CAB |
Jouni Malinen9a23f9c2009-05-19 17:01:38 +0300843 SC_OP_WAIT_FOR_PSPOLL_DATA)))
Jouni Malinencc659652009-05-14 21:28:48 +0300844 ath_rx_ps(sc, skb);
845
Luis R. Rodriguezb4afffc2009-11-02 11:36:08 -0800846 ath_rx_send_to_mac80211(hw, sc, skb, &rx_status);
Jouni Malinencc659652009-05-14 21:28:48 +0300847
Luis R. Rodriguezcb71d9b2008-11-21 17:41:33 -0800848requeue:
Sujithb77f4832008-12-07 21:44:03 +0530849 list_move_tail(&bf->list, &sc->rx.rxbuf);
Luis R. Rodriguezcb71d9b2008-11-21 17:41:33 -0800850 ath_rx_buf_link(sc, bf);
Sujithbe0418a2008-11-18 09:05:55 +0530851 } while (1);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700852
Sujithb77f4832008-12-07 21:44:03 +0530853 spin_unlock_bh(&sc->rx.rxbuflock);
Luis R. Rodriguezf078f202008-08-04 00:16:41 -0700854
855 return 0;
856#undef PA2DESC
857}