Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1 | /* |
Sujith Manoharan | 5b68138 | 2011-05-17 13:36:18 +0530 | [diff] [blame] | 2 | * Copyright (c) 2008-2011 Atheros Communications Inc. |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 3 | * |
| 4 | * Permission to use, copy, modify, and/or distribute this software for any |
| 5 | * purpose with or without fee is hereby granted, provided that the above |
| 6 | * copyright notice and this permission notice appear in all copies. |
| 7 | * |
| 8 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| 9 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| 10 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| 11 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 12 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 13 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 14 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 15 | */ |
| 16 | |
Alexey Dobriyan | b7f080c | 2011-06-16 11:01:34 +0000 | [diff] [blame] | 17 | #include <linux/dma-mapping.h> |
Sujith | 394cf0a | 2009-02-09 13:26:54 +0530 | [diff] [blame] | 18 | #include "ath9k.h" |
Luis R. Rodriguez | b622a72 | 2010-04-15 17:39:28 -0400 | [diff] [blame] | 19 | #include "ar9003_mac.h" |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 20 | |
Felix Fietkau | b5c80475 | 2010-04-15 17:38:48 -0400 | [diff] [blame] | 21 | #define SKB_CB_ATHBUF(__skb) (*((struct ath_buf **)__skb->cb)) |
| 22 | |
Vasanthakumar Thiagarajan | ededf1f | 2010-05-22 23:58:13 -0700 | [diff] [blame] | 23 | static inline bool ath9k_check_auto_sleep(struct ath_softc *sc) |
| 24 | { |
| 25 | return sc->ps_enabled && |
| 26 | (sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_AUTOSLEEP); |
| 27 | } |
| 28 | |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 29 | /* |
| 30 | * Setup and link descriptors. |
| 31 | * |
| 32 | * 11N: we can no longer afford to self link the last descriptor. |
| 33 | * MAC acknowledges BA status as long as it copies frames to host |
| 34 | * buffer (or rx fifo). This can incorrectly acknowledge packets |
| 35 | * to a sender if last desc is self-linked. |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 36 | */ |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 37 | static void ath_rx_buf_link(struct ath_softc *sc, struct ath_buf *bf) |
| 38 | { |
Sujith | cbe61d8 | 2009-02-09 13:27:12 +0530 | [diff] [blame] | 39 | struct ath_hw *ah = sc->sc_ah; |
Luis R. Rodriguez | cc861f7 | 2009-11-04 09:11:34 -0800 | [diff] [blame] | 40 | struct ath_common *common = ath9k_hw_common(ah); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 41 | struct ath_desc *ds; |
| 42 | struct sk_buff *skb; |
| 43 | |
| 44 | ATH_RXBUF_RESET(bf); |
| 45 | |
| 46 | ds = bf->bf_desc; |
Sujith | be0418a | 2008-11-18 09:05:55 +0530 | [diff] [blame] | 47 | ds->ds_link = 0; /* link to null */ |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 48 | ds->ds_data = bf->bf_buf_addr; |
| 49 | |
Sujith | be0418a | 2008-11-18 09:05:55 +0530 | [diff] [blame] | 50 | /* virtual addr of the beginning of the buffer. */ |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 51 | skb = bf->bf_mpdu; |
Luis R. Rodriguez | 9680e8a | 2009-09-13 23:28:00 -0700 | [diff] [blame] | 52 | BUG_ON(skb == NULL); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 53 | ds->ds_vdata = skb->data; |
| 54 | |
Luis R. Rodriguez | cc861f7 | 2009-11-04 09:11:34 -0800 | [diff] [blame] | 55 | /* |
| 56 | * setup rx descriptors. The rx_bufsize here tells the hardware |
Luis R. Rodriguez | b4b6cda | 2008-11-20 17:15:13 -0800 | [diff] [blame] | 57 | * how much data it can DMA to us and that we are prepared |
Luis R. Rodriguez | cc861f7 | 2009-11-04 09:11:34 -0800 | [diff] [blame] | 58 | * to process |
| 59 | */ |
Sujith | b77f483 | 2008-12-07 21:44:03 +0530 | [diff] [blame] | 60 | ath9k_hw_setuprxdesc(ah, ds, |
Luis R. Rodriguez | cc861f7 | 2009-11-04 09:11:34 -0800 | [diff] [blame] | 61 | common->rx_bufsize, |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 62 | 0); |
| 63 | |
Sujith | b77f483 | 2008-12-07 21:44:03 +0530 | [diff] [blame] | 64 | if (sc->rx.rxlink == NULL) |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 65 | ath9k_hw_putrxbuf(ah, bf->bf_daddr); |
| 66 | else |
Sujith | b77f483 | 2008-12-07 21:44:03 +0530 | [diff] [blame] | 67 | *sc->rx.rxlink = bf->bf_daddr; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 68 | |
Sujith | b77f483 | 2008-12-07 21:44:03 +0530 | [diff] [blame] | 69 | sc->rx.rxlink = &ds->ds_link; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 70 | } |
| 71 | |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 72 | static void ath_setdefantenna(struct ath_softc *sc, u32 antenna) |
| 73 | { |
| 74 | /* XXX block beacon interrupts */ |
| 75 | ath9k_hw_setantenna(sc->sc_ah, antenna); |
Sujith | b77f483 | 2008-12-07 21:44:03 +0530 | [diff] [blame] | 76 | sc->rx.defant = antenna; |
| 77 | sc->rx.rxotherant = 0; |
Sujith | ff37e33 | 2008-11-24 12:07:55 +0530 | [diff] [blame] | 78 | } |
| 79 | |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 80 | static void ath_opmode_init(struct ath_softc *sc) |
| 81 | { |
Sujith | cbe61d8 | 2009-02-09 13:27:12 +0530 | [diff] [blame] | 82 | struct ath_hw *ah = sc->sc_ah; |
Luis R. Rodriguez | 1510718 | 2009-09-10 09:22:37 -0700 | [diff] [blame] | 83 | struct ath_common *common = ath9k_hw_common(ah); |
| 84 | |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 85 | u32 rfilt, mfilt[2]; |
| 86 | |
| 87 | /* configure rx filter */ |
| 88 | rfilt = ath_calcrxfilter(sc); |
| 89 | ath9k_hw_setrxfilter(ah, rfilt); |
| 90 | |
| 91 | /* configure bssid mask */ |
Felix Fietkau | 364734f | 2010-09-14 20:22:44 +0200 | [diff] [blame] | 92 | ath_hw_setbssidmask(common); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 93 | |
| 94 | /* configure operational mode */ |
| 95 | ath9k_hw_setopmode(ah); |
| 96 | |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 97 | /* calculate and install multicast filter */ |
| 98 | mfilt[0] = mfilt[1] = ~0; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 99 | ath9k_hw_setmcastfilter(ah, mfilt[0], mfilt[1]); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 100 | } |
| 101 | |
Felix Fietkau | b5c80475 | 2010-04-15 17:38:48 -0400 | [diff] [blame] | 102 | static bool ath_rx_edma_buf_link(struct ath_softc *sc, |
| 103 | enum ath9k_rx_qtype qtype) |
| 104 | { |
| 105 | struct ath_hw *ah = sc->sc_ah; |
| 106 | struct ath_rx_edma *rx_edma; |
| 107 | struct sk_buff *skb; |
| 108 | struct ath_buf *bf; |
| 109 | |
| 110 | rx_edma = &sc->rx.rx_edma[qtype]; |
| 111 | if (skb_queue_len(&rx_edma->rx_fifo) >= rx_edma->rx_fifo_hwsize) |
| 112 | return false; |
| 113 | |
| 114 | bf = list_first_entry(&sc->rx.rxbuf, struct ath_buf, list); |
| 115 | list_del_init(&bf->list); |
| 116 | |
| 117 | skb = bf->bf_mpdu; |
| 118 | |
| 119 | ATH_RXBUF_RESET(bf); |
| 120 | memset(skb->data, 0, ah->caps.rx_status_len); |
| 121 | dma_sync_single_for_device(sc->dev, bf->bf_buf_addr, |
| 122 | ah->caps.rx_status_len, DMA_TO_DEVICE); |
| 123 | |
| 124 | SKB_CB_ATHBUF(skb) = bf; |
| 125 | ath9k_hw_addrxbuf_edma(ah, bf->bf_buf_addr, qtype); |
| 126 | skb_queue_tail(&rx_edma->rx_fifo, skb); |
| 127 | |
| 128 | return true; |
| 129 | } |
| 130 | |
| 131 | static void ath_rx_addbuffer_edma(struct ath_softc *sc, |
| 132 | enum ath9k_rx_qtype qtype, int size) |
| 133 | { |
Felix Fietkau | b5c80475 | 2010-04-15 17:38:48 -0400 | [diff] [blame] | 134 | struct ath_common *common = ath9k_hw_common(sc->sc_ah); |
Mohammed Shafi Shajakhan | 6a01f0c | 2012-02-28 20:54:44 +0530 | [diff] [blame] | 135 | struct ath_buf *bf, *tbf; |
Felix Fietkau | b5c80475 | 2010-04-15 17:38:48 -0400 | [diff] [blame] | 136 | |
Felix Fietkau | b5c80475 | 2010-04-15 17:38:48 -0400 | [diff] [blame] | 137 | if (list_empty(&sc->rx.rxbuf)) { |
Joe Perches | d2182b6 | 2011-12-15 14:55:53 -0800 | [diff] [blame] | 138 | ath_dbg(common, QUEUE, "No free rx buf available\n"); |
Felix Fietkau | b5c80475 | 2010-04-15 17:38:48 -0400 | [diff] [blame] | 139 | return; |
| 140 | } |
| 141 | |
Mohammed Shafi Shajakhan | 6a01f0c | 2012-02-28 20:54:44 +0530 | [diff] [blame] | 142 | list_for_each_entry_safe(bf, tbf, &sc->rx.rxbuf, list) |
Felix Fietkau | b5c80475 | 2010-04-15 17:38:48 -0400 | [diff] [blame] | 143 | if (!ath_rx_edma_buf_link(sc, qtype)) |
| 144 | break; |
| 145 | |
Felix Fietkau | b5c80475 | 2010-04-15 17:38:48 -0400 | [diff] [blame] | 146 | } |
| 147 | |
| 148 | static void ath_rx_remove_buffer(struct ath_softc *sc, |
| 149 | enum ath9k_rx_qtype qtype) |
| 150 | { |
| 151 | struct ath_buf *bf; |
| 152 | struct ath_rx_edma *rx_edma; |
| 153 | struct sk_buff *skb; |
| 154 | |
| 155 | rx_edma = &sc->rx.rx_edma[qtype]; |
| 156 | |
| 157 | while ((skb = skb_dequeue(&rx_edma->rx_fifo)) != NULL) { |
| 158 | bf = SKB_CB_ATHBUF(skb); |
| 159 | BUG_ON(!bf); |
| 160 | list_add_tail(&bf->list, &sc->rx.rxbuf); |
| 161 | } |
| 162 | } |
| 163 | |
| 164 | static void ath_rx_edma_cleanup(struct ath_softc *sc) |
| 165 | { |
Mohammed Shafi Shajakhan | ba54238 | 2011-09-23 14:33:14 +0530 | [diff] [blame] | 166 | struct ath_hw *ah = sc->sc_ah; |
| 167 | struct ath_common *common = ath9k_hw_common(ah); |
Felix Fietkau | b5c80475 | 2010-04-15 17:38:48 -0400 | [diff] [blame] | 168 | struct ath_buf *bf; |
| 169 | |
| 170 | ath_rx_remove_buffer(sc, ATH9K_RX_QUEUE_LP); |
| 171 | ath_rx_remove_buffer(sc, ATH9K_RX_QUEUE_HP); |
| 172 | |
| 173 | list_for_each_entry(bf, &sc->rx.rxbuf, list) { |
Mohammed Shafi Shajakhan | ba54238 | 2011-09-23 14:33:14 +0530 | [diff] [blame] | 174 | if (bf->bf_mpdu) { |
| 175 | dma_unmap_single(sc->dev, bf->bf_buf_addr, |
| 176 | common->rx_bufsize, |
| 177 | DMA_BIDIRECTIONAL); |
Felix Fietkau | b5c80475 | 2010-04-15 17:38:48 -0400 | [diff] [blame] | 178 | dev_kfree_skb_any(bf->bf_mpdu); |
Mohammed Shafi Shajakhan | ba54238 | 2011-09-23 14:33:14 +0530 | [diff] [blame] | 179 | bf->bf_buf_addr = 0; |
| 180 | bf->bf_mpdu = NULL; |
| 181 | } |
Felix Fietkau | b5c80475 | 2010-04-15 17:38:48 -0400 | [diff] [blame] | 182 | } |
| 183 | |
| 184 | INIT_LIST_HEAD(&sc->rx.rxbuf); |
| 185 | |
| 186 | kfree(sc->rx.rx_bufptr); |
| 187 | sc->rx.rx_bufptr = NULL; |
| 188 | } |
| 189 | |
| 190 | static void ath_rx_edma_init_queue(struct ath_rx_edma *rx_edma, int size) |
| 191 | { |
| 192 | skb_queue_head_init(&rx_edma->rx_fifo); |
Felix Fietkau | b5c80475 | 2010-04-15 17:38:48 -0400 | [diff] [blame] | 193 | rx_edma->rx_fifo_hwsize = size; |
| 194 | } |
| 195 | |
| 196 | static int ath_rx_edma_init(struct ath_softc *sc, int nbufs) |
| 197 | { |
| 198 | struct ath_common *common = ath9k_hw_common(sc->sc_ah); |
| 199 | struct ath_hw *ah = sc->sc_ah; |
| 200 | struct sk_buff *skb; |
| 201 | struct ath_buf *bf; |
| 202 | int error = 0, i; |
| 203 | u32 size; |
| 204 | |
Felix Fietkau | b5c80475 | 2010-04-15 17:38:48 -0400 | [diff] [blame] | 205 | ath9k_hw_set_rx_bufsize(ah, common->rx_bufsize - |
| 206 | ah->caps.rx_status_len); |
| 207 | |
| 208 | ath_rx_edma_init_queue(&sc->rx.rx_edma[ATH9K_RX_QUEUE_LP], |
| 209 | ah->caps.rx_lp_qdepth); |
| 210 | ath_rx_edma_init_queue(&sc->rx.rx_edma[ATH9K_RX_QUEUE_HP], |
| 211 | ah->caps.rx_hp_qdepth); |
| 212 | |
| 213 | size = sizeof(struct ath_buf) * nbufs; |
| 214 | bf = kzalloc(size, GFP_KERNEL); |
| 215 | if (!bf) |
| 216 | return -ENOMEM; |
| 217 | |
| 218 | INIT_LIST_HEAD(&sc->rx.rxbuf); |
| 219 | sc->rx.rx_bufptr = bf; |
| 220 | |
| 221 | for (i = 0; i < nbufs; i++, bf++) { |
| 222 | skb = ath_rxbuf_alloc(common, common->rx_bufsize, GFP_KERNEL); |
| 223 | if (!skb) { |
| 224 | error = -ENOMEM; |
| 225 | goto rx_init_fail; |
| 226 | } |
| 227 | |
| 228 | memset(skb->data, 0, common->rx_bufsize); |
| 229 | bf->bf_mpdu = skb; |
| 230 | |
| 231 | bf->bf_buf_addr = dma_map_single(sc->dev, skb->data, |
| 232 | common->rx_bufsize, |
| 233 | DMA_BIDIRECTIONAL); |
| 234 | if (unlikely(dma_mapping_error(sc->dev, |
| 235 | bf->bf_buf_addr))) { |
| 236 | dev_kfree_skb_any(skb); |
| 237 | bf->bf_mpdu = NULL; |
Ben Greear | 6cf9e99 | 2010-10-14 12:45:30 -0700 | [diff] [blame] | 238 | bf->bf_buf_addr = 0; |
Joe Perches | 3800276 | 2010-12-02 19:12:36 -0800 | [diff] [blame] | 239 | ath_err(common, |
Felix Fietkau | b5c80475 | 2010-04-15 17:38:48 -0400 | [diff] [blame] | 240 | "dma_mapping_error() on RX init\n"); |
| 241 | error = -ENOMEM; |
| 242 | goto rx_init_fail; |
| 243 | } |
| 244 | |
| 245 | list_add_tail(&bf->list, &sc->rx.rxbuf); |
| 246 | } |
| 247 | |
| 248 | return 0; |
| 249 | |
| 250 | rx_init_fail: |
| 251 | ath_rx_edma_cleanup(sc); |
| 252 | return error; |
| 253 | } |
| 254 | |
| 255 | static void ath_edma_start_recv(struct ath_softc *sc) |
| 256 | { |
| 257 | spin_lock_bh(&sc->rx.rxbuflock); |
| 258 | |
| 259 | ath9k_hw_rxena(sc->sc_ah); |
| 260 | |
| 261 | ath_rx_addbuffer_edma(sc, ATH9K_RX_QUEUE_HP, |
| 262 | sc->rx.rx_edma[ATH9K_RX_QUEUE_HP].rx_fifo_hwsize); |
| 263 | |
| 264 | ath_rx_addbuffer_edma(sc, ATH9K_RX_QUEUE_LP, |
| 265 | sc->rx.rx_edma[ATH9K_RX_QUEUE_LP].rx_fifo_hwsize); |
| 266 | |
Felix Fietkau | b5c80475 | 2010-04-15 17:38:48 -0400 | [diff] [blame] | 267 | ath_opmode_init(sc); |
| 268 | |
Sujith Manoharan | 4cb54fa | 2012-06-04 16:27:52 +0530 | [diff] [blame] | 269 | ath9k_hw_startpcureceive(sc->sc_ah, !!(sc->hw->conf.flags & IEEE80211_CONF_OFFCHANNEL)); |
Luis R. Rodriguez | 7583c550 | 2010-10-20 16:07:04 -0700 | [diff] [blame] | 270 | |
| 271 | spin_unlock_bh(&sc->rx.rxbuflock); |
Felix Fietkau | b5c80475 | 2010-04-15 17:38:48 -0400 | [diff] [blame] | 272 | } |
| 273 | |
| 274 | static void ath_edma_stop_recv(struct ath_softc *sc) |
| 275 | { |
Felix Fietkau | b5c80475 | 2010-04-15 17:38:48 -0400 | [diff] [blame] | 276 | ath_rx_remove_buffer(sc, ATH9K_RX_QUEUE_HP); |
| 277 | ath_rx_remove_buffer(sc, ATH9K_RX_QUEUE_LP); |
Felix Fietkau | b5c80475 | 2010-04-15 17:38:48 -0400 | [diff] [blame] | 278 | } |
| 279 | |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 280 | int ath_rx_init(struct ath_softc *sc, int nbufs) |
| 281 | { |
Luis R. Rodriguez | 27c51f1 | 2009-09-10 11:08:14 -0700 | [diff] [blame] | 282 | struct ath_common *common = ath9k_hw_common(sc->sc_ah); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 283 | struct sk_buff *skb; |
| 284 | struct ath_buf *bf; |
| 285 | int error = 0; |
| 286 | |
Luis R. Rodriguez | 4bdd1e9 | 2010-10-26 15:27:24 -0700 | [diff] [blame] | 287 | spin_lock_init(&sc->sc_pcu_lock); |
Sujith | 797fe5cb | 2009-03-30 15:28:45 +0530 | [diff] [blame] | 288 | spin_lock_init(&sc->rx.rxbuflock); |
Sujith Manoharan | 781b14a | 2012-06-04 20:23:55 +0530 | [diff] [blame] | 289 | clear_bit(SC_OP_RXFLUSH, &sc->sc_flags); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 290 | |
Felix Fietkau | 0d95521 | 2011-01-26 18:23:27 +0100 | [diff] [blame] | 291 | common->rx_bufsize = IEEE80211_MAX_MPDU_LEN / 2 + |
| 292 | sc->sc_ah->caps.rx_status_len; |
| 293 | |
Felix Fietkau | b5c80475 | 2010-04-15 17:38:48 -0400 | [diff] [blame] | 294 | if (sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_EDMA) { |
| 295 | return ath_rx_edma_init(sc, nbufs); |
| 296 | } else { |
Joe Perches | d2182b6 | 2011-12-15 14:55:53 -0800 | [diff] [blame] | 297 | ath_dbg(common, CONFIG, "cachelsz %u rxbufsize %u\n", |
Joe Perches | 226afe6 | 2010-12-02 19:12:37 -0800 | [diff] [blame] | 298 | common->cachelsz, common->rx_bufsize); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 299 | |
Felix Fietkau | b5c80475 | 2010-04-15 17:38:48 -0400 | [diff] [blame] | 300 | /* Initialize rx descriptors */ |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 301 | |
Felix Fietkau | b5c80475 | 2010-04-15 17:38:48 -0400 | [diff] [blame] | 302 | error = ath_descdma_setup(sc, &sc->rx.rxdma, &sc->rx.rxbuf, |
Vasanthakumar Thiagarajan | 4adfcde | 2010-04-15 17:39:33 -0400 | [diff] [blame] | 303 | "rx", nbufs, 1, 0); |
Felix Fietkau | b5c80475 | 2010-04-15 17:38:48 -0400 | [diff] [blame] | 304 | if (error != 0) { |
Joe Perches | 3800276 | 2010-12-02 19:12:36 -0800 | [diff] [blame] | 305 | ath_err(common, |
| 306 | "failed to allocate rx descriptors: %d\n", |
| 307 | error); |
Sujith | 797fe5cb | 2009-03-30 15:28:45 +0530 | [diff] [blame] | 308 | goto err; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 309 | } |
Felix Fietkau | b5c80475 | 2010-04-15 17:38:48 -0400 | [diff] [blame] | 310 | |
| 311 | list_for_each_entry(bf, &sc->rx.rxbuf, list) { |
| 312 | skb = ath_rxbuf_alloc(common, common->rx_bufsize, |
| 313 | GFP_KERNEL); |
| 314 | if (skb == NULL) { |
| 315 | error = -ENOMEM; |
| 316 | goto err; |
| 317 | } |
| 318 | |
| 319 | bf->bf_mpdu = skb; |
| 320 | bf->bf_buf_addr = dma_map_single(sc->dev, skb->data, |
| 321 | common->rx_bufsize, |
| 322 | DMA_FROM_DEVICE); |
| 323 | if (unlikely(dma_mapping_error(sc->dev, |
| 324 | bf->bf_buf_addr))) { |
| 325 | dev_kfree_skb_any(skb); |
| 326 | bf->bf_mpdu = NULL; |
Ben Greear | 6cf9e99 | 2010-10-14 12:45:30 -0700 | [diff] [blame] | 327 | bf->bf_buf_addr = 0; |
Joe Perches | 3800276 | 2010-12-02 19:12:36 -0800 | [diff] [blame] | 328 | ath_err(common, |
| 329 | "dma_mapping_error() on RX init\n"); |
Felix Fietkau | b5c80475 | 2010-04-15 17:38:48 -0400 | [diff] [blame] | 330 | error = -ENOMEM; |
| 331 | goto err; |
| 332 | } |
Felix Fietkau | b5c80475 | 2010-04-15 17:38:48 -0400 | [diff] [blame] | 333 | } |
| 334 | sc->rx.rxlink = NULL; |
Sujith | 797fe5cb | 2009-03-30 15:28:45 +0530 | [diff] [blame] | 335 | } |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 336 | |
Sujith | 797fe5cb | 2009-03-30 15:28:45 +0530 | [diff] [blame] | 337 | err: |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 338 | if (error) |
| 339 | ath_rx_cleanup(sc); |
| 340 | |
| 341 | return error; |
| 342 | } |
| 343 | |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 344 | void ath_rx_cleanup(struct ath_softc *sc) |
| 345 | { |
Luis R. Rodriguez | cc861f7 | 2009-11-04 09:11:34 -0800 | [diff] [blame] | 346 | struct ath_hw *ah = sc->sc_ah; |
| 347 | struct ath_common *common = ath9k_hw_common(ah); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 348 | struct sk_buff *skb; |
| 349 | struct ath_buf *bf; |
| 350 | |
Felix Fietkau | b5c80475 | 2010-04-15 17:38:48 -0400 | [diff] [blame] | 351 | if (sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_EDMA) { |
| 352 | ath_rx_edma_cleanup(sc); |
| 353 | return; |
| 354 | } else { |
| 355 | list_for_each_entry(bf, &sc->rx.rxbuf, list) { |
| 356 | skb = bf->bf_mpdu; |
| 357 | if (skb) { |
| 358 | dma_unmap_single(sc->dev, bf->bf_buf_addr, |
| 359 | common->rx_bufsize, |
| 360 | DMA_FROM_DEVICE); |
| 361 | dev_kfree_skb(skb); |
Ben Greear | 6cf9e99 | 2010-10-14 12:45:30 -0700 | [diff] [blame] | 362 | bf->bf_buf_addr = 0; |
| 363 | bf->bf_mpdu = NULL; |
Felix Fietkau | b5c80475 | 2010-04-15 17:38:48 -0400 | [diff] [blame] | 364 | } |
Luis R. Rodriguez | 051b919 | 2009-03-23 18:25:01 -0400 | [diff] [blame] | 365 | } |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 366 | |
Felix Fietkau | b5c80475 | 2010-04-15 17:38:48 -0400 | [diff] [blame] | 367 | if (sc->rx.rxdma.dd_desc_len != 0) |
| 368 | ath_descdma_cleanup(sc, &sc->rx.rxdma, &sc->rx.rxbuf); |
| 369 | } |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 370 | } |
| 371 | |
| 372 | /* |
| 373 | * Calculate the receive filter according to the |
| 374 | * operating mode and state: |
| 375 | * |
| 376 | * o always accept unicast, broadcast, and multicast traffic |
| 377 | * o maintain current state of phy error reception (the hal |
| 378 | * may enable phy error frames for noise immunity work) |
| 379 | * o probe request frames are accepted only when operating in |
| 380 | * hostap, adhoc, or monitor modes |
| 381 | * o enable promiscuous mode according to the interface state |
| 382 | * o accept beacons: |
| 383 | * - when operating in adhoc mode so the 802.11 layer creates |
| 384 | * node table entries for peers, |
| 385 | * - when operating in station mode for collecting rssi data when |
| 386 | * the station is otherwise quiet, or |
| 387 | * - when operating as a repeater so we see repeater-sta beacons |
| 388 | * - when scanning |
| 389 | */ |
| 390 | |
| 391 | u32 ath_calcrxfilter(struct ath_softc *sc) |
| 392 | { |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 393 | u32 rfilt; |
| 394 | |
Felix Fietkau | ac06697 | 2011-10-08 15:49:57 +0200 | [diff] [blame] | 395 | rfilt = ATH9K_RX_FILTER_UCAST | ATH9K_RX_FILTER_BCAST |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 396 | | ATH9K_RX_FILTER_MCAST; |
| 397 | |
Jouni Malinen | 9c1d8e4 | 2010-10-13 17:29:31 +0300 | [diff] [blame] | 398 | if (sc->rx.rxfilter & FIF_PROBE_REQ) |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 399 | rfilt |= ATH9K_RX_FILTER_PROBEREQ; |
| 400 | |
Jouni Malinen | 217ba9d | 2009-03-10 10:55:50 +0200 | [diff] [blame] | 401 | /* |
| 402 | * Set promiscuous mode when FIF_PROMISC_IN_BSS is enabled for station |
| 403 | * mode interface or when in monitor mode. AP mode does not need this |
| 404 | * since it receives all in-BSS frames anyway. |
| 405 | */ |
Felix Fietkau | 2e28694 | 2011-03-09 01:48:12 +0100 | [diff] [blame] | 406 | if (sc->sc_ah->is_monitoring) |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 407 | rfilt |= ATH9K_RX_FILTER_PROM; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 408 | |
Sujith | d42c6b7 | 2009-02-04 08:10:22 +0530 | [diff] [blame] | 409 | if (sc->rx.rxfilter & FIF_CONTROL) |
| 410 | rfilt |= ATH9K_RX_FILTER_CONTROL; |
| 411 | |
Vasanthakumar Thiagarajan | dbaaa14 | 2009-02-19 15:41:52 +0530 | [diff] [blame] | 412 | if ((sc->sc_ah->opmode == NL80211_IFTYPE_STATION) && |
Ben Greear | cfda669 | 2010-09-14 12:00:22 -0700 | [diff] [blame] | 413 | (sc->nvifs <= 1) && |
Vasanthakumar Thiagarajan | dbaaa14 | 2009-02-19 15:41:52 +0530 | [diff] [blame] | 414 | !(sc->rx.rxfilter & FIF_BCN_PRBRESP_PROMISC)) |
| 415 | rfilt |= ATH9K_RX_FILTER_MYBEACON; |
| 416 | else |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 417 | rfilt |= ATH9K_RX_FILTER_BEACON; |
| 418 | |
Felix Fietkau | 264bbec | 2011-04-07 19:24:23 +0200 | [diff] [blame] | 419 | if ((sc->sc_ah->opmode == NL80211_IFTYPE_AP) || |
Senthil Balasubramanian | 66afad0 | 2009-09-18 15:06:07 +0530 | [diff] [blame] | 420 | (sc->rx.rxfilter & FIF_PSPOLL)) |
Vasanthakumar Thiagarajan | dbaaa14 | 2009-02-19 15:41:52 +0530 | [diff] [blame] | 421 | rfilt |= ATH9K_RX_FILTER_PSPOLL; |
Sujith | be0418a | 2008-11-18 09:05:55 +0530 | [diff] [blame] | 422 | |
Sujith | 7ea310b | 2009-09-03 12:08:43 +0530 | [diff] [blame] | 423 | if (conf_is_ht(&sc->hw->conf)) |
| 424 | rfilt |= ATH9K_RX_FILTER_COMP_BAR; |
| 425 | |
Felix Fietkau | 7545daf | 2011-01-24 19:23:16 +0100 | [diff] [blame] | 426 | if (sc->nvifs > 1 || (sc->rx.rxfilter & FIF_OTHER_BSS)) { |
Javier Cardona | 5eb6ba8 | 2009-08-20 19:12:07 -0700 | [diff] [blame] | 427 | /* The following may also be needed for other older chips */ |
| 428 | if (sc->sc_ah->hw_version.macVersion == AR_SREV_VERSION_9160) |
| 429 | rfilt |= ATH9K_RX_FILTER_PROM; |
Jouni Malinen | b93bce2 | 2009-03-03 19:23:30 +0200 | [diff] [blame] | 430 | rfilt |= ATH9K_RX_FILTER_MCAST_BCAST_ALL; |
| 431 | } |
| 432 | |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 433 | return rfilt; |
Sujith | 7dcfdcd | 2008-08-11 14:03:13 +0530 | [diff] [blame] | 434 | |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 435 | } |
| 436 | |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 437 | int ath_startrecv(struct ath_softc *sc) |
| 438 | { |
Sujith | cbe61d8 | 2009-02-09 13:27:12 +0530 | [diff] [blame] | 439 | struct ath_hw *ah = sc->sc_ah; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 440 | struct ath_buf *bf, *tbf; |
| 441 | |
Felix Fietkau | b5c80475 | 2010-04-15 17:38:48 -0400 | [diff] [blame] | 442 | if (ah->caps.hw_caps & ATH9K_HW_CAP_EDMA) { |
| 443 | ath_edma_start_recv(sc); |
| 444 | return 0; |
| 445 | } |
| 446 | |
Sujith | b77f483 | 2008-12-07 21:44:03 +0530 | [diff] [blame] | 447 | spin_lock_bh(&sc->rx.rxbuflock); |
| 448 | if (list_empty(&sc->rx.rxbuf)) |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 449 | goto start_recv; |
| 450 | |
Sujith | b77f483 | 2008-12-07 21:44:03 +0530 | [diff] [blame] | 451 | sc->rx.rxlink = NULL; |
| 452 | list_for_each_entry_safe(bf, tbf, &sc->rx.rxbuf, list) { |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 453 | ath_rx_buf_link(sc, bf); |
| 454 | } |
| 455 | |
| 456 | /* We could have deleted elements so the list may be empty now */ |
Sujith | b77f483 | 2008-12-07 21:44:03 +0530 | [diff] [blame] | 457 | if (list_empty(&sc->rx.rxbuf)) |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 458 | goto start_recv; |
| 459 | |
Sujith | b77f483 | 2008-12-07 21:44:03 +0530 | [diff] [blame] | 460 | bf = list_first_entry(&sc->rx.rxbuf, struct ath_buf, list); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 461 | ath9k_hw_putrxbuf(ah, bf->bf_daddr); |
Sujith | be0418a | 2008-11-18 09:05:55 +0530 | [diff] [blame] | 462 | ath9k_hw_rxena(ah); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 463 | |
| 464 | start_recv: |
Sujith | be0418a | 2008-11-18 09:05:55 +0530 | [diff] [blame] | 465 | ath_opmode_init(sc); |
Sujith Manoharan | 4cb54fa | 2012-06-04 16:27:52 +0530 | [diff] [blame] | 466 | ath9k_hw_startpcureceive(ah, !!(sc->hw->conf.flags & IEEE80211_CONF_OFFCHANNEL)); |
Sujith | be0418a | 2008-11-18 09:05:55 +0530 | [diff] [blame] | 467 | |
Luis R. Rodriguez | 7583c550 | 2010-10-20 16:07:04 -0700 | [diff] [blame] | 468 | spin_unlock_bh(&sc->rx.rxbuflock); |
| 469 | |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 470 | return 0; |
| 471 | } |
| 472 | |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 473 | bool ath_stoprecv(struct ath_softc *sc) |
| 474 | { |
Sujith | cbe61d8 | 2009-02-09 13:27:12 +0530 | [diff] [blame] | 475 | struct ath_hw *ah = sc->sc_ah; |
Felix Fietkau | 5882da02 | 2011-04-08 20:13:18 +0200 | [diff] [blame] | 476 | bool stopped, reset = false; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 477 | |
Luis R. Rodriguez | 1e45028 | 2010-10-20 16:07:03 -0700 | [diff] [blame] | 478 | spin_lock_bh(&sc->rx.rxbuflock); |
Felix Fietkau | d47844a | 2010-11-20 03:08:47 +0100 | [diff] [blame] | 479 | ath9k_hw_abortpcurecv(ah); |
Sujith | be0418a | 2008-11-18 09:05:55 +0530 | [diff] [blame] | 480 | ath9k_hw_setrxfilter(ah, 0); |
Felix Fietkau | 5882da02 | 2011-04-08 20:13:18 +0200 | [diff] [blame] | 481 | stopped = ath9k_hw_stopdmarecv(ah, &reset); |
Felix Fietkau | b5c80475 | 2010-04-15 17:38:48 -0400 | [diff] [blame] | 482 | |
| 483 | if (sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_EDMA) |
| 484 | ath_edma_stop_recv(sc); |
| 485 | else |
| 486 | sc->rx.rxlink = NULL; |
Luis R. Rodriguez | 1e45028 | 2010-10-20 16:07:03 -0700 | [diff] [blame] | 487 | spin_unlock_bh(&sc->rx.rxbuflock); |
Sujith | be0418a | 2008-11-18 09:05:55 +0530 | [diff] [blame] | 488 | |
Rajkumar Manoharan | d584747 | 2010-12-20 14:39:51 +0530 | [diff] [blame] | 489 | if (!(ah->ah_flags & AH_UNPLUGGED) && |
| 490 | unlikely(!stopped)) { |
Ben Greear | d7fd1b50 | 2010-12-06 13:13:07 -0800 | [diff] [blame] | 491 | ath_err(ath9k_hw_common(sc->sc_ah), |
| 492 | "Could not stop RX, we could be " |
| 493 | "confusing the DMA engine when we start RX up\n"); |
| 494 | ATH_DBG_WARN_ON_ONCE(!stopped); |
| 495 | } |
Felix Fietkau | 2232d31 | 2011-04-15 00:41:43 +0200 | [diff] [blame] | 496 | return stopped && !reset; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 497 | } |
| 498 | |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 499 | void ath_flushrecv(struct ath_softc *sc) |
| 500 | { |
Sujith Manoharan | 781b14a | 2012-06-04 20:23:55 +0530 | [diff] [blame] | 501 | set_bit(SC_OP_RXFLUSH, &sc->sc_flags); |
Felix Fietkau | b5c80475 | 2010-04-15 17:38:48 -0400 | [diff] [blame] | 502 | if (sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_EDMA) |
| 503 | ath_rx_tasklet(sc, 1, true); |
| 504 | ath_rx_tasklet(sc, 1, false); |
Sujith Manoharan | 781b14a | 2012-06-04 20:23:55 +0530 | [diff] [blame] | 505 | clear_bit(SC_OP_RXFLUSH, &sc->sc_flags); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 506 | } |
| 507 | |
Jouni Malinen | cc65965 | 2009-05-14 21:28:48 +0300 | [diff] [blame] | 508 | static bool ath_beacon_dtim_pending_cab(struct sk_buff *skb) |
| 509 | { |
| 510 | /* Check whether the Beacon frame has DTIM indicating buffered bc/mc */ |
| 511 | struct ieee80211_mgmt *mgmt; |
| 512 | u8 *pos, *end, id, elen; |
| 513 | struct ieee80211_tim_ie *tim; |
| 514 | |
| 515 | mgmt = (struct ieee80211_mgmt *)skb->data; |
| 516 | pos = mgmt->u.beacon.variable; |
| 517 | end = skb->data + skb->len; |
| 518 | |
| 519 | while (pos + 2 < end) { |
| 520 | id = *pos++; |
| 521 | elen = *pos++; |
| 522 | if (pos + elen > end) |
| 523 | break; |
| 524 | |
| 525 | if (id == WLAN_EID_TIM) { |
| 526 | if (elen < sizeof(*tim)) |
| 527 | break; |
| 528 | tim = (struct ieee80211_tim_ie *) pos; |
| 529 | if (tim->dtim_count != 0) |
| 530 | break; |
| 531 | return tim->bitmap_ctrl & 0x01; |
| 532 | } |
| 533 | |
| 534 | pos += elen; |
| 535 | } |
| 536 | |
| 537 | return false; |
| 538 | } |
| 539 | |
Jouni Malinen | cc65965 | 2009-05-14 21:28:48 +0300 | [diff] [blame] | 540 | static void ath_rx_ps_beacon(struct ath_softc *sc, struct sk_buff *skb) |
| 541 | { |
Luis R. Rodriguez | 1510718 | 2009-09-10 09:22:37 -0700 | [diff] [blame] | 542 | struct ath_common *common = ath9k_hw_common(sc->sc_ah); |
Jouni Malinen | cc65965 | 2009-05-14 21:28:48 +0300 | [diff] [blame] | 543 | |
| 544 | if (skb->len < 24 + 8 + 2 + 2) |
| 545 | return; |
| 546 | |
Sujith | 1b04b93 | 2010-01-08 10:36:05 +0530 | [diff] [blame] | 547 | sc->ps_flags &= ~PS_WAIT_FOR_BEACON; |
Gabor Juhos | 293dc5d | 2009-06-19 12:17:48 +0200 | [diff] [blame] | 548 | |
Sujith | 1b04b93 | 2010-01-08 10:36:05 +0530 | [diff] [blame] | 549 | if (sc->ps_flags & PS_BEACON_SYNC) { |
| 550 | sc->ps_flags &= ~PS_BEACON_SYNC; |
Joe Perches | d2182b6 | 2011-12-15 14:55:53 -0800 | [diff] [blame] | 551 | ath_dbg(common, PS, |
Joe Perches | 226afe6 | 2010-12-02 19:12:37 -0800 | [diff] [blame] | 552 | "Reconfigure Beacon timers based on timestamp from the AP\n"); |
Rajkumar Manoharan | 99e4d43 | 2011-04-04 22:56:19 +0530 | [diff] [blame] | 553 | ath_set_beacon(sc); |
Jouni Malinen | ccdfeab | 2009-05-20 21:59:08 +0300 | [diff] [blame] | 554 | } |
| 555 | |
Jouni Malinen | cc65965 | 2009-05-14 21:28:48 +0300 | [diff] [blame] | 556 | if (ath_beacon_dtim_pending_cab(skb)) { |
| 557 | /* |
| 558 | * Remain awake waiting for buffered broadcast/multicast |
Gabor Juhos | 58f5fff | 2009-06-17 20:53:20 +0200 | [diff] [blame] | 559 | * frames. If the last broadcast/multicast frame is not |
| 560 | * received properly, the next beacon frame will work as |
| 561 | * a backup trigger for returning into NETWORK SLEEP state, |
| 562 | * so we are waiting for it as well. |
Jouni Malinen | cc65965 | 2009-05-14 21:28:48 +0300 | [diff] [blame] | 563 | */ |
Joe Perches | d2182b6 | 2011-12-15 14:55:53 -0800 | [diff] [blame] | 564 | ath_dbg(common, PS, |
Joe Perches | 226afe6 | 2010-12-02 19:12:37 -0800 | [diff] [blame] | 565 | "Received DTIM beacon indicating buffered broadcast/multicast frame(s)\n"); |
Sujith | 1b04b93 | 2010-01-08 10:36:05 +0530 | [diff] [blame] | 566 | sc->ps_flags |= PS_WAIT_FOR_CAB | PS_WAIT_FOR_BEACON; |
Jouni Malinen | cc65965 | 2009-05-14 21:28:48 +0300 | [diff] [blame] | 567 | return; |
| 568 | } |
| 569 | |
Sujith | 1b04b93 | 2010-01-08 10:36:05 +0530 | [diff] [blame] | 570 | if (sc->ps_flags & PS_WAIT_FOR_CAB) { |
Jouni Malinen | cc65965 | 2009-05-14 21:28:48 +0300 | [diff] [blame] | 571 | /* |
| 572 | * This can happen if a broadcast frame is dropped or the AP |
| 573 | * fails to send a frame indicating that all CAB frames have |
| 574 | * been delivered. |
| 575 | */ |
Sujith | 1b04b93 | 2010-01-08 10:36:05 +0530 | [diff] [blame] | 576 | sc->ps_flags &= ~PS_WAIT_FOR_CAB; |
Joe Perches | d2182b6 | 2011-12-15 14:55:53 -0800 | [diff] [blame] | 577 | ath_dbg(common, PS, "PS wait for CAB frames timed out\n"); |
Jouni Malinen | cc65965 | 2009-05-14 21:28:48 +0300 | [diff] [blame] | 578 | } |
Jouni Malinen | cc65965 | 2009-05-14 21:28:48 +0300 | [diff] [blame] | 579 | } |
| 580 | |
Rajkumar Manoharan | f73c604 | 2011-09-26 22:16:56 +0530 | [diff] [blame] | 581 | static void ath_rx_ps(struct ath_softc *sc, struct sk_buff *skb, bool mybeacon) |
Jouni Malinen | cc65965 | 2009-05-14 21:28:48 +0300 | [diff] [blame] | 582 | { |
| 583 | struct ieee80211_hdr *hdr; |
Luis R. Rodriguez | c46917b | 2009-09-13 02:42:02 -0700 | [diff] [blame] | 584 | struct ath_common *common = ath9k_hw_common(sc->sc_ah); |
Jouni Malinen | cc65965 | 2009-05-14 21:28:48 +0300 | [diff] [blame] | 585 | |
| 586 | hdr = (struct ieee80211_hdr *)skb->data; |
| 587 | |
| 588 | /* Process Beacon and CAB receive in PS state */ |
Vasanthakumar Thiagarajan | ededf1f | 2010-05-22 23:58:13 -0700 | [diff] [blame] | 589 | if (((sc->ps_flags & PS_WAIT_FOR_BEACON) || ath9k_check_auto_sleep(sc)) |
Rajkumar Manoharan | f73c604 | 2011-09-26 22:16:56 +0530 | [diff] [blame] | 590 | && mybeacon) |
Jouni Malinen | cc65965 | 2009-05-14 21:28:48 +0300 | [diff] [blame] | 591 | ath_rx_ps_beacon(sc, skb); |
Sujith | 1b04b93 | 2010-01-08 10:36:05 +0530 | [diff] [blame] | 592 | else if ((sc->ps_flags & PS_WAIT_FOR_CAB) && |
Jouni Malinen | cc65965 | 2009-05-14 21:28:48 +0300 | [diff] [blame] | 593 | (ieee80211_is_data(hdr->frame_control) || |
| 594 | ieee80211_is_action(hdr->frame_control)) && |
| 595 | is_multicast_ether_addr(hdr->addr1) && |
| 596 | !ieee80211_has_moredata(hdr->frame_control)) { |
Jouni Malinen | cc65965 | 2009-05-14 21:28:48 +0300 | [diff] [blame] | 597 | /* |
| 598 | * No more broadcast/multicast frames to be received at this |
| 599 | * point. |
| 600 | */ |
Senthil Balasubramanian | 3fac6df | 2010-09-16 15:12:35 -0400 | [diff] [blame] | 601 | sc->ps_flags &= ~(PS_WAIT_FOR_CAB | PS_WAIT_FOR_BEACON); |
Joe Perches | d2182b6 | 2011-12-15 14:55:53 -0800 | [diff] [blame] | 602 | ath_dbg(common, PS, |
Joe Perches | 226afe6 | 2010-12-02 19:12:37 -0800 | [diff] [blame] | 603 | "All PS CAB frames received, back to sleep\n"); |
Sujith | 1b04b93 | 2010-01-08 10:36:05 +0530 | [diff] [blame] | 604 | } else if ((sc->ps_flags & PS_WAIT_FOR_PSPOLL_DATA) && |
Jouni Malinen | 9a23f9c | 2009-05-19 17:01:38 +0300 | [diff] [blame] | 605 | !is_multicast_ether_addr(hdr->addr1) && |
| 606 | !ieee80211_has_morefrags(hdr->frame_control)) { |
Sujith | 1b04b93 | 2010-01-08 10:36:05 +0530 | [diff] [blame] | 607 | sc->ps_flags &= ~PS_WAIT_FOR_PSPOLL_DATA; |
Joe Perches | d2182b6 | 2011-12-15 14:55:53 -0800 | [diff] [blame] | 608 | ath_dbg(common, PS, |
Joe Perches | 226afe6 | 2010-12-02 19:12:37 -0800 | [diff] [blame] | 609 | "Going back to sleep after having received PS-Poll data (0x%lx)\n", |
Sujith | 1b04b93 | 2010-01-08 10:36:05 +0530 | [diff] [blame] | 610 | sc->ps_flags & (PS_WAIT_FOR_BEACON | |
| 611 | PS_WAIT_FOR_CAB | |
| 612 | PS_WAIT_FOR_PSPOLL_DATA | |
| 613 | PS_WAIT_FOR_TX_ACK)); |
Jouni Malinen | cc65965 | 2009-05-14 21:28:48 +0300 | [diff] [blame] | 614 | } |
| 615 | } |
| 616 | |
Felix Fietkau | b5c80475 | 2010-04-15 17:38:48 -0400 | [diff] [blame] | 617 | static bool ath_edma_get_buffers(struct ath_softc *sc, |
Felix Fietkau | 3a2923e | 2012-03-03 15:17:05 +0100 | [diff] [blame] | 618 | enum ath9k_rx_qtype qtype, |
| 619 | struct ath_rx_status *rs, |
| 620 | struct ath_buf **dest) |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 621 | { |
Felix Fietkau | b5c80475 | 2010-04-15 17:38:48 -0400 | [diff] [blame] | 622 | struct ath_rx_edma *rx_edma = &sc->rx.rx_edma[qtype]; |
| 623 | struct ath_hw *ah = sc->sc_ah; |
| 624 | struct ath_common *common = ath9k_hw_common(ah); |
| 625 | struct sk_buff *skb; |
Sujith | be0418a | 2008-11-18 09:05:55 +0530 | [diff] [blame] | 626 | struct ath_buf *bf; |
Felix Fietkau | b5c80475 | 2010-04-15 17:38:48 -0400 | [diff] [blame] | 627 | int ret; |
| 628 | |
| 629 | skb = skb_peek(&rx_edma->rx_fifo); |
| 630 | if (!skb) |
| 631 | return false; |
| 632 | |
| 633 | bf = SKB_CB_ATHBUF(skb); |
| 634 | BUG_ON(!bf); |
| 635 | |
Ming Lei | ce9426d | 2010-05-15 18:25:40 +0800 | [diff] [blame] | 636 | dma_sync_single_for_cpu(sc->dev, bf->bf_buf_addr, |
Felix Fietkau | b5c80475 | 2010-04-15 17:38:48 -0400 | [diff] [blame] | 637 | common->rx_bufsize, DMA_FROM_DEVICE); |
| 638 | |
Felix Fietkau | 3a2923e | 2012-03-03 15:17:05 +0100 | [diff] [blame] | 639 | ret = ath9k_hw_process_rxdesc_edma(ah, rs, skb->data); |
Ming Lei | ce9426d | 2010-05-15 18:25:40 +0800 | [diff] [blame] | 640 | if (ret == -EINPROGRESS) { |
| 641 | /*let device gain the buffer again*/ |
| 642 | dma_sync_single_for_device(sc->dev, bf->bf_buf_addr, |
| 643 | common->rx_bufsize, DMA_FROM_DEVICE); |
Felix Fietkau | b5c80475 | 2010-04-15 17:38:48 -0400 | [diff] [blame] | 644 | return false; |
Ming Lei | ce9426d | 2010-05-15 18:25:40 +0800 | [diff] [blame] | 645 | } |
Felix Fietkau | b5c80475 | 2010-04-15 17:38:48 -0400 | [diff] [blame] | 646 | |
| 647 | __skb_unlink(skb, &rx_edma->rx_fifo); |
| 648 | if (ret == -EINVAL) { |
| 649 | /* corrupt descriptor, skip this one and the following one */ |
| 650 | list_add_tail(&bf->list, &sc->rx.rxbuf); |
| 651 | ath_rx_edma_buf_link(sc, qtype); |
Felix Fietkau | 3a2923e | 2012-03-03 15:17:05 +0100 | [diff] [blame] | 652 | |
Felix Fietkau | b5c80475 | 2010-04-15 17:38:48 -0400 | [diff] [blame] | 653 | skb = skb_peek(&rx_edma->rx_fifo); |
Felix Fietkau | 3a2923e | 2012-03-03 15:17:05 +0100 | [diff] [blame] | 654 | if (skb) { |
| 655 | bf = SKB_CB_ATHBUF(skb); |
| 656 | BUG_ON(!bf); |
Felix Fietkau | b5c80475 | 2010-04-15 17:38:48 -0400 | [diff] [blame] | 657 | |
Felix Fietkau | 3a2923e | 2012-03-03 15:17:05 +0100 | [diff] [blame] | 658 | __skb_unlink(skb, &rx_edma->rx_fifo); |
| 659 | list_add_tail(&bf->list, &sc->rx.rxbuf); |
| 660 | ath_rx_edma_buf_link(sc, qtype); |
| 661 | } else { |
| 662 | bf = NULL; |
| 663 | } |
Felix Fietkau | b5c80475 | 2010-04-15 17:38:48 -0400 | [diff] [blame] | 664 | } |
Felix Fietkau | b5c80475 | 2010-04-15 17:38:48 -0400 | [diff] [blame] | 665 | |
Felix Fietkau | 3a2923e | 2012-03-03 15:17:05 +0100 | [diff] [blame] | 666 | *dest = bf; |
Felix Fietkau | b5c80475 | 2010-04-15 17:38:48 -0400 | [diff] [blame] | 667 | return true; |
| 668 | } |
| 669 | |
| 670 | static struct ath_buf *ath_edma_get_next_rx_buf(struct ath_softc *sc, |
| 671 | struct ath_rx_status *rs, |
| 672 | enum ath9k_rx_qtype qtype) |
| 673 | { |
Felix Fietkau | 3a2923e | 2012-03-03 15:17:05 +0100 | [diff] [blame] | 674 | struct ath_buf *bf = NULL; |
Felix Fietkau | b5c80475 | 2010-04-15 17:38:48 -0400 | [diff] [blame] | 675 | |
Felix Fietkau | 3a2923e | 2012-03-03 15:17:05 +0100 | [diff] [blame] | 676 | while (ath_edma_get_buffers(sc, qtype, rs, &bf)) { |
| 677 | if (!bf) |
| 678 | continue; |
Felix Fietkau | b5c80475 | 2010-04-15 17:38:48 -0400 | [diff] [blame] | 679 | |
Felix Fietkau | 3a2923e | 2012-03-03 15:17:05 +0100 | [diff] [blame] | 680 | return bf; |
| 681 | } |
| 682 | return NULL; |
Felix Fietkau | b5c80475 | 2010-04-15 17:38:48 -0400 | [diff] [blame] | 683 | } |
| 684 | |
| 685 | static struct ath_buf *ath_get_next_rx_buf(struct ath_softc *sc, |
| 686 | struct ath_rx_status *rs) |
| 687 | { |
| 688 | struct ath_hw *ah = sc->sc_ah; |
| 689 | struct ath_common *common = ath9k_hw_common(ah); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 690 | struct ath_desc *ds; |
Felix Fietkau | b5c80475 | 2010-04-15 17:38:48 -0400 | [diff] [blame] | 691 | struct ath_buf *bf; |
| 692 | int ret; |
| 693 | |
| 694 | if (list_empty(&sc->rx.rxbuf)) { |
| 695 | sc->rx.rxlink = NULL; |
| 696 | return NULL; |
| 697 | } |
| 698 | |
| 699 | bf = list_first_entry(&sc->rx.rxbuf, struct ath_buf, list); |
| 700 | ds = bf->bf_desc; |
| 701 | |
| 702 | /* |
| 703 | * Must provide the virtual address of the current |
| 704 | * descriptor, the physical address, and the virtual |
| 705 | * address of the next descriptor in the h/w chain. |
| 706 | * This allows the HAL to look ahead to see if the |
| 707 | * hardware is done with a descriptor by checking the |
| 708 | * done bit in the following descriptor and the address |
| 709 | * of the current descriptor the DMA engine is working |
| 710 | * on. All this is necessary because of our use of |
| 711 | * a self-linked list to avoid rx overruns. |
| 712 | */ |
Rajkumar Manoharan | 3de2111 | 2011-08-13 10:28:11 +0530 | [diff] [blame] | 713 | ret = ath9k_hw_rxprocdesc(ah, ds, rs); |
Felix Fietkau | b5c80475 | 2010-04-15 17:38:48 -0400 | [diff] [blame] | 714 | if (ret == -EINPROGRESS) { |
| 715 | struct ath_rx_status trs; |
| 716 | struct ath_buf *tbf; |
| 717 | struct ath_desc *tds; |
| 718 | |
| 719 | memset(&trs, 0, sizeof(trs)); |
| 720 | if (list_is_last(&bf->list, &sc->rx.rxbuf)) { |
| 721 | sc->rx.rxlink = NULL; |
| 722 | return NULL; |
| 723 | } |
| 724 | |
| 725 | tbf = list_entry(bf->list.next, struct ath_buf, list); |
| 726 | |
| 727 | /* |
| 728 | * On some hardware the descriptor status words could |
| 729 | * get corrupted, including the done bit. Because of |
| 730 | * this, check if the next descriptor's done bit is |
| 731 | * set or not. |
| 732 | * |
| 733 | * If the next descriptor's done bit is set, the current |
| 734 | * descriptor has been corrupted. Force s/w to discard |
| 735 | * this descriptor and continue... |
| 736 | */ |
| 737 | |
| 738 | tds = tbf->bf_desc; |
Rajkumar Manoharan | 3de2111 | 2011-08-13 10:28:11 +0530 | [diff] [blame] | 739 | ret = ath9k_hw_rxprocdesc(ah, tds, &trs); |
Felix Fietkau | b5c80475 | 2010-04-15 17:38:48 -0400 | [diff] [blame] | 740 | if (ret == -EINPROGRESS) |
| 741 | return NULL; |
| 742 | } |
| 743 | |
| 744 | if (!bf->bf_mpdu) |
| 745 | return bf; |
| 746 | |
| 747 | /* |
| 748 | * Synchronize the DMA transfer with CPU before |
| 749 | * 1. accessing the frame |
| 750 | * 2. requeueing the same buffer to h/w |
| 751 | */ |
Ming Lei | ce9426d | 2010-05-15 18:25:40 +0800 | [diff] [blame] | 752 | dma_sync_single_for_cpu(sc->dev, bf->bf_buf_addr, |
Felix Fietkau | b5c80475 | 2010-04-15 17:38:48 -0400 | [diff] [blame] | 753 | common->rx_bufsize, |
| 754 | DMA_FROM_DEVICE); |
| 755 | |
| 756 | return bf; |
| 757 | } |
| 758 | |
Sujith | d435700 | 2010-05-20 15:34:38 +0530 | [diff] [blame] | 759 | /* Assumes you've already done the endian to CPU conversion */ |
| 760 | static bool ath9k_rx_accept(struct ath_common *common, |
Vasanthakumar Thiagarajan | 9f167f6 | 2010-05-20 14:34:46 -0700 | [diff] [blame] | 761 | struct ieee80211_hdr *hdr, |
Sujith | d435700 | 2010-05-20 15:34:38 +0530 | [diff] [blame] | 762 | struct ieee80211_rx_status *rxs, |
| 763 | struct ath_rx_status *rx_stats, |
| 764 | bool *decrypt_error) |
| 765 | { |
Felix Fietkau | ec20599 | 2011-10-08 22:02:59 +0200 | [diff] [blame] | 766 | struct ath_softc *sc = (struct ath_softc *) common->priv; |
Felix Fietkau | 66760ea | 2011-07-13 23:35:05 +0800 | [diff] [blame] | 767 | bool is_mc, is_valid_tkip, strip_mic, mic_error; |
Sujith | d435700 | 2010-05-20 15:34:38 +0530 | [diff] [blame] | 768 | struct ath_hw *ah = common->ah; |
Sujith | d435700 | 2010-05-20 15:34:38 +0530 | [diff] [blame] | 769 | __le16 fc; |
Vasanthakumar Thiagarajan | b7b1b51 | 2010-05-20 14:34:48 -0700 | [diff] [blame] | 770 | u8 rx_status_len = ah->caps.rx_status_len; |
Sujith | d435700 | 2010-05-20 15:34:38 +0530 | [diff] [blame] | 771 | |
Sujith | d435700 | 2010-05-20 15:34:38 +0530 | [diff] [blame] | 772 | fc = hdr->frame_control; |
| 773 | |
Felix Fietkau | 66760ea | 2011-07-13 23:35:05 +0800 | [diff] [blame] | 774 | is_mc = !!is_multicast_ether_addr(hdr->addr1); |
| 775 | is_valid_tkip = rx_stats->rs_keyix != ATH9K_RXKEYIX_INVALID && |
| 776 | test_bit(rx_stats->rs_keyix, common->tkip_keymap); |
Bill Jordan | 152e585 | 2011-08-19 11:10:22 -0400 | [diff] [blame] | 777 | strip_mic = is_valid_tkip && ieee80211_is_data(fc) && |
Michael Liang | 2a5783b | 2012-04-20 17:11:57 +0800 | [diff] [blame] | 778 | ieee80211_has_protected(fc) && |
Bill Jordan | 152e585 | 2011-08-19 11:10:22 -0400 | [diff] [blame] | 779 | !(rx_stats->rs_status & |
Felix Fietkau | 846d936 | 2011-10-08 22:02:58 +0200 | [diff] [blame] | 780 | (ATH9K_RXERR_DECRYPT | ATH9K_RXERR_CRC | ATH9K_RXERR_MIC | |
| 781 | ATH9K_RXERR_KEYMISS)); |
Felix Fietkau | 66760ea | 2011-07-13 23:35:05 +0800 | [diff] [blame] | 782 | |
Felix Fietkau | f88373f | 2012-02-05 21:15:17 +0100 | [diff] [blame] | 783 | /* |
| 784 | * Key miss events are only relevant for pairwise keys where the |
| 785 | * descriptor does contain a valid key index. This has been observed |
| 786 | * mostly with CCMP encryption. |
| 787 | */ |
| 788 | if (rx_stats->rs_keyix == ATH9K_RXKEYIX_INVALID) |
| 789 | rx_stats->rs_status &= ~ATH9K_RXERR_KEYMISS; |
| 790 | |
Ben Greear | 1507218 | 2012-04-03 09:18:59 -0700 | [diff] [blame] | 791 | if (!rx_stats->rs_datalen) { |
| 792 | RX_STAT_INC(rx_len_err); |
Sujith | d435700 | 2010-05-20 15:34:38 +0530 | [diff] [blame] | 793 | return false; |
Ben Greear | 1507218 | 2012-04-03 09:18:59 -0700 | [diff] [blame] | 794 | } |
| 795 | |
Sujith | d435700 | 2010-05-20 15:34:38 +0530 | [diff] [blame] | 796 | /* |
| 797 | * rs_status follows rs_datalen so if rs_datalen is too large |
| 798 | * we can take a hint that hardware corrupted it, so ignore |
| 799 | * those frames. |
| 800 | */ |
Ben Greear | 1507218 | 2012-04-03 09:18:59 -0700 | [diff] [blame] | 801 | if (rx_stats->rs_datalen > (common->rx_bufsize - rx_status_len)) { |
| 802 | RX_STAT_INC(rx_len_err); |
Sujith | d435700 | 2010-05-20 15:34:38 +0530 | [diff] [blame] | 803 | return false; |
Ben Greear | 1507218 | 2012-04-03 09:18:59 -0700 | [diff] [blame] | 804 | } |
Sujith | d435700 | 2010-05-20 15:34:38 +0530 | [diff] [blame] | 805 | |
Felix Fietkau | 0d95521 | 2011-01-26 18:23:27 +0100 | [diff] [blame] | 806 | /* Only use error bits from the last fragment */ |
Sujith | d435700 | 2010-05-20 15:34:38 +0530 | [diff] [blame] | 807 | if (rx_stats->rs_more) |
Felix Fietkau | 0d95521 | 2011-01-26 18:23:27 +0100 | [diff] [blame] | 808 | return true; |
Sujith | d435700 | 2010-05-20 15:34:38 +0530 | [diff] [blame] | 809 | |
Felix Fietkau | 66760ea | 2011-07-13 23:35:05 +0800 | [diff] [blame] | 810 | mic_error = is_valid_tkip && !ieee80211_is_ctl(fc) && |
| 811 | !ieee80211_has_morefrags(fc) && |
| 812 | !(le16_to_cpu(hdr->seq_ctrl) & IEEE80211_SCTL_FRAG) && |
| 813 | (rx_stats->rs_status & ATH9K_RXERR_MIC); |
| 814 | |
Sujith | d435700 | 2010-05-20 15:34:38 +0530 | [diff] [blame] | 815 | /* |
| 816 | * The rx_stats->rs_status will not be set until the end of the |
| 817 | * chained descriptors so it can be ignored if rs_more is set. The |
| 818 | * rs_more will be false at the last element of the chained |
| 819 | * descriptors. |
| 820 | */ |
| 821 | if (rx_stats->rs_status != 0) { |
Felix Fietkau | 846d936 | 2011-10-08 22:02:58 +0200 | [diff] [blame] | 822 | u8 status_mask; |
| 823 | |
Felix Fietkau | 66760ea | 2011-07-13 23:35:05 +0800 | [diff] [blame] | 824 | if (rx_stats->rs_status & ATH9K_RXERR_CRC) { |
Sujith | d435700 | 2010-05-20 15:34:38 +0530 | [diff] [blame] | 825 | rxs->flag |= RX_FLAG_FAILED_FCS_CRC; |
Felix Fietkau | 66760ea | 2011-07-13 23:35:05 +0800 | [diff] [blame] | 826 | mic_error = false; |
| 827 | } |
Sujith | d435700 | 2010-05-20 15:34:38 +0530 | [diff] [blame] | 828 | if (rx_stats->rs_status & ATH9K_RXERR_PHY) |
| 829 | return false; |
| 830 | |
Felix Fietkau | 846d936 | 2011-10-08 22:02:58 +0200 | [diff] [blame] | 831 | if ((rx_stats->rs_status & ATH9K_RXERR_DECRYPT) || |
| 832 | (!is_mc && (rx_stats->rs_status & ATH9K_RXERR_KEYMISS))) { |
Sujith | d435700 | 2010-05-20 15:34:38 +0530 | [diff] [blame] | 833 | *decrypt_error = true; |
Felix Fietkau | 66760ea | 2011-07-13 23:35:05 +0800 | [diff] [blame] | 834 | mic_error = false; |
Sujith | d435700 | 2010-05-20 15:34:38 +0530 | [diff] [blame] | 835 | } |
Felix Fietkau | 66760ea | 2011-07-13 23:35:05 +0800 | [diff] [blame] | 836 | |
Sujith | d435700 | 2010-05-20 15:34:38 +0530 | [diff] [blame] | 837 | /* |
| 838 | * Reject error frames with the exception of |
| 839 | * decryption and MIC failures. For monitor mode, |
| 840 | * we also ignore the CRC error. |
| 841 | */ |
Felix Fietkau | 846d936 | 2011-10-08 22:02:58 +0200 | [diff] [blame] | 842 | status_mask = ATH9K_RXERR_DECRYPT | ATH9K_RXERR_MIC | |
| 843 | ATH9K_RXERR_KEYMISS; |
| 844 | |
Felix Fietkau | ec20599 | 2011-10-08 22:02:59 +0200 | [diff] [blame] | 845 | if (ah->is_monitoring && (sc->rx.rxfilter & FIF_FCSFAIL)) |
Felix Fietkau | 846d936 | 2011-10-08 22:02:58 +0200 | [diff] [blame] | 846 | status_mask |= ATH9K_RXERR_CRC; |
| 847 | |
| 848 | if (rx_stats->rs_status & ~status_mask) |
| 849 | return false; |
Sujith | d435700 | 2010-05-20 15:34:38 +0530 | [diff] [blame] | 850 | } |
Felix Fietkau | 66760ea | 2011-07-13 23:35:05 +0800 | [diff] [blame] | 851 | |
| 852 | /* |
| 853 | * For unicast frames the MIC error bit can have false positives, |
| 854 | * so all MIC error reports need to be validated in software. |
| 855 | * False negatives are not common, so skip software verification |
| 856 | * if the hardware considers the MIC valid. |
| 857 | */ |
| 858 | if (strip_mic) |
| 859 | rxs->flag |= RX_FLAG_MMIC_STRIPPED; |
| 860 | else if (is_mc && mic_error) |
| 861 | rxs->flag |= RX_FLAG_MMIC_ERROR; |
| 862 | |
Sujith | d435700 | 2010-05-20 15:34:38 +0530 | [diff] [blame] | 863 | return true; |
| 864 | } |
| 865 | |
| 866 | static int ath9k_process_rate(struct ath_common *common, |
| 867 | struct ieee80211_hw *hw, |
| 868 | struct ath_rx_status *rx_stats, |
Vasanthakumar Thiagarajan | 9f167f6 | 2010-05-20 14:34:46 -0700 | [diff] [blame] | 869 | struct ieee80211_rx_status *rxs) |
Sujith | d435700 | 2010-05-20 15:34:38 +0530 | [diff] [blame] | 870 | { |
| 871 | struct ieee80211_supported_band *sband; |
| 872 | enum ieee80211_band band; |
| 873 | unsigned int i = 0; |
Ben Greear | 990e08a | 2012-04-17 15:19:03 -0700 | [diff] [blame] | 874 | struct ath_softc __maybe_unused *sc = common->priv; |
Sujith | d435700 | 2010-05-20 15:34:38 +0530 | [diff] [blame] | 875 | |
| 876 | band = hw->conf.channel->band; |
| 877 | sband = hw->wiphy->bands[band]; |
| 878 | |
| 879 | if (rx_stats->rs_rate & 0x80) { |
| 880 | /* HT rate */ |
| 881 | rxs->flag |= RX_FLAG_HT; |
| 882 | if (rx_stats->rs_flags & ATH9K_RX_2040) |
| 883 | rxs->flag |= RX_FLAG_40MHZ; |
| 884 | if (rx_stats->rs_flags & ATH9K_RX_GI) |
| 885 | rxs->flag |= RX_FLAG_SHORT_GI; |
| 886 | rxs->rate_idx = rx_stats->rs_rate & 0x7f; |
| 887 | return 0; |
| 888 | } |
| 889 | |
| 890 | for (i = 0; i < sband->n_bitrates; i++) { |
| 891 | if (sband->bitrates[i].hw_value == rx_stats->rs_rate) { |
| 892 | rxs->rate_idx = i; |
| 893 | return 0; |
| 894 | } |
| 895 | if (sband->bitrates[i].hw_value_short == rx_stats->rs_rate) { |
| 896 | rxs->flag |= RX_FLAG_SHORTPRE; |
| 897 | rxs->rate_idx = i; |
| 898 | return 0; |
| 899 | } |
| 900 | } |
| 901 | |
| 902 | /* |
| 903 | * No valid hardware bitrate found -- we should not get here |
| 904 | * because hardware has already validated this frame as OK. |
| 905 | */ |
Joe Perches | d2182b6 | 2011-12-15 14:55:53 -0800 | [diff] [blame] | 906 | ath_dbg(common, ANY, |
Joe Perches | 226afe6 | 2010-12-02 19:12:37 -0800 | [diff] [blame] | 907 | "unsupported hw bitrate detected 0x%02x using 1 Mbit\n", |
| 908 | rx_stats->rs_rate); |
Ben Greear | 1507218 | 2012-04-03 09:18:59 -0700 | [diff] [blame] | 909 | RX_STAT_INC(rx_rate_err); |
Sujith | d435700 | 2010-05-20 15:34:38 +0530 | [diff] [blame] | 910 | return -EINVAL; |
| 911 | } |
| 912 | |
| 913 | static void ath9k_process_rssi(struct ath_common *common, |
| 914 | struct ieee80211_hw *hw, |
Vasanthakumar Thiagarajan | 9f167f6 | 2010-05-20 14:34:46 -0700 | [diff] [blame] | 915 | struct ieee80211_hdr *hdr, |
Sujith | d435700 | 2010-05-20 15:34:38 +0530 | [diff] [blame] | 916 | struct ath_rx_status *rx_stats) |
| 917 | { |
Felix Fietkau | 9ac58615 | 2011-01-24 19:23:18 +0100 | [diff] [blame] | 918 | struct ath_softc *sc = hw->priv; |
Sujith | d435700 | 2010-05-20 15:34:38 +0530 | [diff] [blame] | 919 | struct ath_hw *ah = common->ah; |
Felix Fietkau | 9fa23e1 | 2010-10-15 20:03:31 +0200 | [diff] [blame] | 920 | int last_rssi; |
Felix Fietkau | 2ef1675 | 2012-03-03 15:17:06 +0100 | [diff] [blame] | 921 | int rssi = rx_stats->rs_rssi; |
Sujith | d435700 | 2010-05-20 15:34:38 +0530 | [diff] [blame] | 922 | |
Rajkumar Manoharan | cf3af74 | 2011-08-27 16:17:47 +0530 | [diff] [blame] | 923 | if (!rx_stats->is_mybeacon || |
| 924 | ((ah->opmode != NL80211_IFTYPE_STATION) && |
| 925 | (ah->opmode != NL80211_IFTYPE_ADHOC))) |
Felix Fietkau | 9fa23e1 | 2010-10-15 20:03:31 +0200 | [diff] [blame] | 926 | return; |
| 927 | |
Felix Fietkau | 9fa23e1 | 2010-10-15 20:03:31 +0200 | [diff] [blame] | 928 | if (rx_stats->rs_rssi != ATH9K_RSSI_BAD && !rx_stats->rs_moreaggr) |
Felix Fietkau | 9ac58615 | 2011-01-24 19:23:18 +0100 | [diff] [blame] | 929 | ATH_RSSI_LPF(sc->last_rssi, rx_stats->rs_rssi); |
Ben Greear | 686b9cb | 2010-09-23 09:44:36 -0700 | [diff] [blame] | 930 | |
Felix Fietkau | 9ac58615 | 2011-01-24 19:23:18 +0100 | [diff] [blame] | 931 | last_rssi = sc->last_rssi; |
Sujith | d435700 | 2010-05-20 15:34:38 +0530 | [diff] [blame] | 932 | if (likely(last_rssi != ATH_RSSI_DUMMY_MARKER)) |
Felix Fietkau | 2ef1675 | 2012-03-03 15:17:06 +0100 | [diff] [blame] | 933 | rssi = ATH_EP_RND(last_rssi, ATH_RSSI_EP_MULTIPLIER); |
| 934 | if (rssi < 0) |
| 935 | rssi = 0; |
Sujith | d435700 | 2010-05-20 15:34:38 +0530 | [diff] [blame] | 936 | |
| 937 | /* Update Beacon RSSI, this is used by ANI. */ |
Felix Fietkau | 2ef1675 | 2012-03-03 15:17:06 +0100 | [diff] [blame] | 938 | ah->stats.avgbrssi = rssi; |
Sujith | d435700 | 2010-05-20 15:34:38 +0530 | [diff] [blame] | 939 | } |
| 940 | |
| 941 | /* |
| 942 | * For Decrypt or Demic errors, we only mark packet status here and always push |
| 943 | * up the frame up to let mac80211 handle the actual error case, be it no |
| 944 | * decryption key or real decryption error. This let us keep statistics there. |
| 945 | */ |
| 946 | static int ath9k_rx_skb_preprocess(struct ath_common *common, |
| 947 | struct ieee80211_hw *hw, |
Vasanthakumar Thiagarajan | 9f167f6 | 2010-05-20 14:34:46 -0700 | [diff] [blame] | 948 | struct ieee80211_hdr *hdr, |
Sujith | d435700 | 2010-05-20 15:34:38 +0530 | [diff] [blame] | 949 | struct ath_rx_status *rx_stats, |
| 950 | struct ieee80211_rx_status *rx_status, |
| 951 | bool *decrypt_error) |
| 952 | { |
Felix Fietkau | f749b94 | 2011-07-28 14:08:57 +0200 | [diff] [blame] | 953 | struct ath_hw *ah = common->ah; |
| 954 | |
Sujith | d435700 | 2010-05-20 15:34:38 +0530 | [diff] [blame] | 955 | /* |
| 956 | * everything but the rate is checked here, the rate check is done |
| 957 | * separately to avoid doing two lookups for a rate for each frame. |
| 958 | */ |
Vasanthakumar Thiagarajan | 9f167f6 | 2010-05-20 14:34:46 -0700 | [diff] [blame] | 959 | if (!ath9k_rx_accept(common, hdr, rx_status, rx_stats, decrypt_error)) |
Sujith | d435700 | 2010-05-20 15:34:38 +0530 | [diff] [blame] | 960 | return -EINVAL; |
| 961 | |
Felix Fietkau | 0d95521 | 2011-01-26 18:23:27 +0100 | [diff] [blame] | 962 | /* Only use status info from the last fragment */ |
| 963 | if (rx_stats->rs_more) |
| 964 | return 0; |
| 965 | |
Vasanthakumar Thiagarajan | 9f167f6 | 2010-05-20 14:34:46 -0700 | [diff] [blame] | 966 | ath9k_process_rssi(common, hw, hdr, rx_stats); |
Sujith | d435700 | 2010-05-20 15:34:38 +0530 | [diff] [blame] | 967 | |
Vasanthakumar Thiagarajan | 9f167f6 | 2010-05-20 14:34:46 -0700 | [diff] [blame] | 968 | if (ath9k_process_rate(common, hw, rx_stats, rx_status)) |
Sujith | d435700 | 2010-05-20 15:34:38 +0530 | [diff] [blame] | 969 | return -EINVAL; |
| 970 | |
Sujith | d435700 | 2010-05-20 15:34:38 +0530 | [diff] [blame] | 971 | rx_status->band = hw->conf.channel->band; |
| 972 | rx_status->freq = hw->conf.channel->center_freq; |
Felix Fietkau | f749b94 | 2011-07-28 14:08:57 +0200 | [diff] [blame] | 973 | rx_status->signal = ah->noise + rx_stats->rs_rssi; |
Sujith | d435700 | 2010-05-20 15:34:38 +0530 | [diff] [blame] | 974 | rx_status->antenna = rx_stats->rs_antenna; |
Johannes Berg | 6ebacbb | 2011-02-23 15:06:08 +0100 | [diff] [blame] | 975 | rx_status->flag |= RX_FLAG_MACTIME_MPDU; |
Felix Fietkau | 2ef1675 | 2012-03-03 15:17:06 +0100 | [diff] [blame] | 976 | if (rx_stats->rs_moreaggr) |
| 977 | rx_status->flag |= RX_FLAG_NO_SIGNAL_VAL; |
Sujith | d435700 | 2010-05-20 15:34:38 +0530 | [diff] [blame] | 978 | |
| 979 | return 0; |
| 980 | } |
| 981 | |
| 982 | static void ath9k_rx_skb_postprocess(struct ath_common *common, |
| 983 | struct sk_buff *skb, |
| 984 | struct ath_rx_status *rx_stats, |
| 985 | struct ieee80211_rx_status *rxs, |
| 986 | bool decrypt_error) |
| 987 | { |
| 988 | struct ath_hw *ah = common->ah; |
| 989 | struct ieee80211_hdr *hdr; |
| 990 | int hdrlen, padpos, padsize; |
| 991 | u8 keyix; |
| 992 | __le16 fc; |
| 993 | |
| 994 | /* see if any padding is done by the hw and remove it */ |
| 995 | hdr = (struct ieee80211_hdr *) skb->data; |
| 996 | hdrlen = ieee80211_get_hdrlen_from_skb(skb); |
| 997 | fc = hdr->frame_control; |
| 998 | padpos = ath9k_cmn_padpos(hdr->frame_control); |
| 999 | |
| 1000 | /* The MAC header is padded to have 32-bit boundary if the |
| 1001 | * packet payload is non-zero. The general calculation for |
| 1002 | * padsize would take into account odd header lengths: |
| 1003 | * padsize = (4 - padpos % 4) % 4; However, since only |
| 1004 | * even-length headers are used, padding can only be 0 or 2 |
| 1005 | * bytes and we can optimize this a bit. In addition, we must |
| 1006 | * not try to remove padding from short control frames that do |
| 1007 | * not have payload. */ |
| 1008 | padsize = padpos & 3; |
| 1009 | if (padsize && skb->len>=padpos+padsize+FCS_LEN) { |
| 1010 | memmove(skb->data + padsize, skb->data, padpos); |
| 1011 | skb_pull(skb, padsize); |
| 1012 | } |
| 1013 | |
| 1014 | keyix = rx_stats->rs_keyix; |
| 1015 | |
| 1016 | if (!(keyix == ATH9K_RXKEYIX_INVALID) && !decrypt_error && |
| 1017 | ieee80211_has_protected(fc)) { |
| 1018 | rxs->flag |= RX_FLAG_DECRYPTED; |
| 1019 | } else if (ieee80211_has_protected(fc) |
| 1020 | && !decrypt_error && skb->len >= hdrlen + 4) { |
| 1021 | keyix = skb->data[hdrlen + 3] >> 6; |
| 1022 | |
| 1023 | if (test_bit(keyix, common->keymap)) |
| 1024 | rxs->flag |= RX_FLAG_DECRYPTED; |
| 1025 | } |
| 1026 | if (ah->sw_mgmt_crypto && |
| 1027 | (rxs->flag & RX_FLAG_DECRYPTED) && |
| 1028 | ieee80211_is_mgmt(fc)) |
| 1029 | /* Use software decrypt for management frames. */ |
| 1030 | rxs->flag &= ~RX_FLAG_DECRYPTED; |
| 1031 | } |
Felix Fietkau | b5c80475 | 2010-04-15 17:38:48 -0400 | [diff] [blame] | 1032 | |
| 1033 | int ath_rx_tasklet(struct ath_softc *sc, int flush, bool hp) |
| 1034 | { |
| 1035 | struct ath_buf *bf; |
Felix Fietkau | 0d95521 | 2011-01-26 18:23:27 +0100 | [diff] [blame] | 1036 | struct sk_buff *skb = NULL, *requeue_skb, *hdr_skb; |
Luis R. Rodriguez | 5ca4262 | 2009-11-04 08:20:42 -0800 | [diff] [blame] | 1037 | struct ieee80211_rx_status *rxs; |
Sujith | cbe61d8 | 2009-02-09 13:27:12 +0530 | [diff] [blame] | 1038 | struct ath_hw *ah = sc->sc_ah; |
Luis R. Rodriguez | 27c51f1 | 2009-09-10 11:08:14 -0700 | [diff] [blame] | 1039 | struct ath_common *common = ath9k_hw_common(ah); |
Felix Fietkau | 7545daf | 2011-01-24 19:23:16 +0100 | [diff] [blame] | 1040 | struct ieee80211_hw *hw = sc->hw; |
Sujith | be0418a | 2008-11-18 09:05:55 +0530 | [diff] [blame] | 1041 | struct ieee80211_hdr *hdr; |
Luis R. Rodriguez | c9b1417 | 2009-11-04 16:47:22 -0800 | [diff] [blame] | 1042 | int retval; |
Sujith | be0418a | 2008-11-18 09:05:55 +0530 | [diff] [blame] | 1043 | bool decrypt_error = false; |
Felix Fietkau | 29bffa9 | 2010-03-29 20:14:23 -0700 | [diff] [blame] | 1044 | struct ath_rx_status rs; |
Felix Fietkau | b5c80475 | 2010-04-15 17:38:48 -0400 | [diff] [blame] | 1045 | enum ath9k_rx_qtype qtype; |
| 1046 | bool edma = !!(ah->caps.hw_caps & ATH9K_HW_CAP_EDMA); |
| 1047 | int dma_type; |
Vasanthakumar Thiagarajan | 5c6dd92 | 2010-05-20 14:34:47 -0700 | [diff] [blame] | 1048 | u8 rx_status_len = ah->caps.rx_status_len; |
Felix Fietkau | a6d2055 | 2010-06-12 00:33:54 -0400 | [diff] [blame] | 1049 | u64 tsf = 0; |
| 1050 | u32 tsf_lower = 0; |
Luis R. Rodriguez | 8ab2cd0 | 2010-09-16 15:12:26 -0400 | [diff] [blame] | 1051 | unsigned long flags; |
Sujith | be0418a | 2008-11-18 09:05:55 +0530 | [diff] [blame] | 1052 | |
Felix Fietkau | b5c80475 | 2010-04-15 17:38:48 -0400 | [diff] [blame] | 1053 | if (edma) |
Felix Fietkau | b5c80475 | 2010-04-15 17:38:48 -0400 | [diff] [blame] | 1054 | dma_type = DMA_BIDIRECTIONAL; |
Ming Lei | 5682422 | 2010-05-14 21:15:38 +0800 | [diff] [blame] | 1055 | else |
| 1056 | dma_type = DMA_FROM_DEVICE; |
Felix Fietkau | b5c80475 | 2010-04-15 17:38:48 -0400 | [diff] [blame] | 1057 | |
| 1058 | qtype = hp ? ATH9K_RX_QUEUE_HP : ATH9K_RX_QUEUE_LP; |
Sujith | b77f483 | 2008-12-07 21:44:03 +0530 | [diff] [blame] | 1059 | spin_lock_bh(&sc->rx.rxbuflock); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1060 | |
Felix Fietkau | a6d2055 | 2010-06-12 00:33:54 -0400 | [diff] [blame] | 1061 | tsf = ath9k_hw_gettsf64(ah); |
| 1062 | tsf_lower = tsf & 0xffffffff; |
| 1063 | |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1064 | do { |
| 1065 | /* If handling rx interrupt and flush is in progress => exit */ |
Sujith Manoharan | 781b14a | 2012-06-04 20:23:55 +0530 | [diff] [blame] | 1066 | if (test_bit(SC_OP_RXFLUSH, &sc->sc_flags) && (flush == 0)) |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1067 | break; |
| 1068 | |
Felix Fietkau | 29bffa9 | 2010-03-29 20:14:23 -0700 | [diff] [blame] | 1069 | memset(&rs, 0, sizeof(rs)); |
Felix Fietkau | b5c80475 | 2010-04-15 17:38:48 -0400 | [diff] [blame] | 1070 | if (edma) |
| 1071 | bf = ath_edma_get_next_rx_buf(sc, &rs, qtype); |
| 1072 | else |
| 1073 | bf = ath_get_next_rx_buf(sc, &rs); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1074 | |
Felix Fietkau | b5c80475 | 2010-04-15 17:38:48 -0400 | [diff] [blame] | 1075 | if (!bf) |
| 1076 | break; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1077 | |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1078 | skb = bf->bf_mpdu; |
Sujith | be0418a | 2008-11-18 09:05:55 +0530 | [diff] [blame] | 1079 | if (!skb) |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1080 | continue; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1081 | |
Felix Fietkau | 0d95521 | 2011-01-26 18:23:27 +0100 | [diff] [blame] | 1082 | /* |
| 1083 | * Take frame header from the first fragment and RX status from |
| 1084 | * the last one. |
| 1085 | */ |
| 1086 | if (sc->rx.frag) |
| 1087 | hdr_skb = sc->rx.frag; |
| 1088 | else |
| 1089 | hdr_skb = skb; |
| 1090 | |
| 1091 | hdr = (struct ieee80211_hdr *) (hdr_skb->data + rx_status_len); |
| 1092 | rxs = IEEE80211_SKB_RXCB(hdr_skb); |
Ben Greear | 1507218 | 2012-04-03 09:18:59 -0700 | [diff] [blame] | 1093 | if (ieee80211_is_beacon(hdr->frame_control)) { |
| 1094 | RX_STAT_INC(rx_beacons); |
| 1095 | if (!is_zero_ether_addr(common->curbssid) && |
Joe Perches | 2e42e47 | 2012-05-09 17:17:46 +0000 | [diff] [blame] | 1096 | ether_addr_equal(hdr->addr3, common->curbssid)) |
Ben Greear | 1507218 | 2012-04-03 09:18:59 -0700 | [diff] [blame] | 1097 | rs.is_mybeacon = true; |
| 1098 | else |
| 1099 | rs.is_mybeacon = false; |
| 1100 | } |
Rajkumar Manoharan | cf3af74 | 2011-08-27 16:17:47 +0530 | [diff] [blame] | 1101 | else |
| 1102 | rs.is_mybeacon = false; |
Luis R. Rodriguez | 5ca4262 | 2009-11-04 08:20:42 -0800 | [diff] [blame] | 1103 | |
Rajkumar Manoharan | 6995fb8 | 2012-06-04 16:28:52 +0530 | [diff] [blame] | 1104 | sc->rx.num_pkts++; |
Felix Fietkau | 29bffa9 | 2010-03-29 20:14:23 -0700 | [diff] [blame] | 1105 | ath_debug_stat_rx(sc, &rs); |
Sujith | 1395d3f | 2010-01-08 10:36:11 +0530 | [diff] [blame] | 1106 | |
Vasanthakumar Thiagarajan | 9bf9fca | 2008-12-15 20:40:46 +0530 | [diff] [blame] | 1107 | /* |
Sujith | be0418a | 2008-11-18 09:05:55 +0530 | [diff] [blame] | 1108 | * If we're asked to flush receive queue, directly |
| 1109 | * chain it back at the queue without processing it. |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1110 | */ |
Sujith Manoharan | 781b14a | 2012-06-04 20:23:55 +0530 | [diff] [blame] | 1111 | if (test_bit(SC_OP_RXFLUSH, &sc->sc_flags)) { |
Ben Greear | 1507218 | 2012-04-03 09:18:59 -0700 | [diff] [blame] | 1112 | RX_STAT_INC(rx_drop_rxflush); |
Felix Fietkau | 0d95521 | 2011-01-26 18:23:27 +0100 | [diff] [blame] | 1113 | goto requeue_drop_frag; |
Ben Greear | 1507218 | 2012-04-03 09:18:59 -0700 | [diff] [blame] | 1114 | } |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1115 | |
Ashok Nagarajan | ffb1c56 | 2012-03-09 18:57:39 -0800 | [diff] [blame] | 1116 | memset(rxs, 0, sizeof(struct ieee80211_rx_status)); |
| 1117 | |
Felix Fietkau | a6d2055 | 2010-06-12 00:33:54 -0400 | [diff] [blame] | 1118 | rxs->mactime = (tsf & ~0xffffffffULL) | rs.rs_tstamp; |
| 1119 | if (rs.rs_tstamp > tsf_lower && |
| 1120 | unlikely(rs.rs_tstamp - tsf_lower > 0x10000000)) |
| 1121 | rxs->mactime -= 0x100000000ULL; |
| 1122 | |
| 1123 | if (rs.rs_tstamp < tsf_lower && |
| 1124 | unlikely(tsf_lower - rs.rs_tstamp > 0x10000000)) |
| 1125 | rxs->mactime += 0x100000000ULL; |
| 1126 | |
Zefir Kurtisi | 83c7657 | 2011-11-16 11:09:44 +0100 | [diff] [blame] | 1127 | retval = ath9k_rx_skb_preprocess(common, hw, hdr, &rs, |
| 1128 | rxs, &decrypt_error); |
| 1129 | if (retval) |
| 1130 | goto requeue_drop_frag; |
| 1131 | |
Rajkumar Manoharan | 01e1891 | 2012-03-15 05:34:27 +0530 | [diff] [blame] | 1132 | if (rs.is_mybeacon) { |
| 1133 | sc->hw_busy_count = 0; |
| 1134 | ath_start_rx_poll(sc, 3); |
| 1135 | } |
Luis R. Rodriguez | cb71d9b | 2008-11-21 17:41:33 -0800 | [diff] [blame] | 1136 | /* Ensure we always have an skb to requeue once we are done |
| 1137 | * processing the current buffer's skb */ |
Luis R. Rodriguez | cc861f7 | 2009-11-04 09:11:34 -0800 | [diff] [blame] | 1138 | requeue_skb = ath_rxbuf_alloc(common, common->rx_bufsize, GFP_ATOMIC); |
Luis R. Rodriguez | cb71d9b | 2008-11-21 17:41:33 -0800 | [diff] [blame] | 1139 | |
| 1140 | /* If there is no memory we ignore the current RX'd frame, |
| 1141 | * tell hardware it can give us a new frame using the old |
Sujith | b77f483 | 2008-12-07 21:44:03 +0530 | [diff] [blame] | 1142 | * skb and put it at the tail of the sc->rx.rxbuf list for |
Luis R. Rodriguez | cb71d9b | 2008-11-21 17:41:33 -0800 | [diff] [blame] | 1143 | * processing. */ |
Ben Greear | 1507218 | 2012-04-03 09:18:59 -0700 | [diff] [blame] | 1144 | if (!requeue_skb) { |
| 1145 | RX_STAT_INC(rx_oom_err); |
Felix Fietkau | 0d95521 | 2011-01-26 18:23:27 +0100 | [diff] [blame] | 1146 | goto requeue_drop_frag; |
Ben Greear | 1507218 | 2012-04-03 09:18:59 -0700 | [diff] [blame] | 1147 | } |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1148 | |
Vasanthakumar Thiagarajan | 9bf9fca | 2008-12-15 20:40:46 +0530 | [diff] [blame] | 1149 | /* Unmap the frame */ |
Gabor Juhos | 7da3c55 | 2009-01-14 20:17:03 +0100 | [diff] [blame] | 1150 | dma_unmap_single(sc->dev, bf->bf_buf_addr, |
Luis R. Rodriguez | cc861f7 | 2009-11-04 09:11:34 -0800 | [diff] [blame] | 1151 | common->rx_bufsize, |
Felix Fietkau | b5c80475 | 2010-04-15 17:38:48 -0400 | [diff] [blame] | 1152 | dma_type); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1153 | |
Felix Fietkau | b5c80475 | 2010-04-15 17:38:48 -0400 | [diff] [blame] | 1154 | skb_put(skb, rs.rs_datalen + ah->caps.rx_status_len); |
| 1155 | if (ah->caps.rx_status_len) |
| 1156 | skb_pull(skb, ah->caps.rx_status_len); |
Sujith | be0418a | 2008-11-18 09:05:55 +0530 | [diff] [blame] | 1157 | |
Felix Fietkau | 0d95521 | 2011-01-26 18:23:27 +0100 | [diff] [blame] | 1158 | if (!rs.rs_more) |
| 1159 | ath9k_rx_skb_postprocess(common, hdr_skb, &rs, |
| 1160 | rxs, decrypt_error); |
Sujith | be0418a | 2008-11-18 09:05:55 +0530 | [diff] [blame] | 1161 | |
Luis R. Rodriguez | cb71d9b | 2008-11-21 17:41:33 -0800 | [diff] [blame] | 1162 | /* We will now give hardware our shiny new allocated skb */ |
| 1163 | bf->bf_mpdu = requeue_skb; |
Gabor Juhos | 7da3c55 | 2009-01-14 20:17:03 +0100 | [diff] [blame] | 1164 | bf->bf_buf_addr = dma_map_single(sc->dev, requeue_skb->data, |
Luis R. Rodriguez | cc861f7 | 2009-11-04 09:11:34 -0800 | [diff] [blame] | 1165 | common->rx_bufsize, |
Felix Fietkau | b5c80475 | 2010-04-15 17:38:48 -0400 | [diff] [blame] | 1166 | dma_type); |
Gabor Juhos | 7da3c55 | 2009-01-14 20:17:03 +0100 | [diff] [blame] | 1167 | if (unlikely(dma_mapping_error(sc->dev, |
Luis R. Rodriguez | f8316df | 2008-12-03 03:35:29 -0800 | [diff] [blame] | 1168 | bf->bf_buf_addr))) { |
| 1169 | dev_kfree_skb_any(requeue_skb); |
| 1170 | bf->bf_mpdu = NULL; |
Ben Greear | 6cf9e99 | 2010-10-14 12:45:30 -0700 | [diff] [blame] | 1171 | bf->bf_buf_addr = 0; |
Joe Perches | 3800276 | 2010-12-02 19:12:36 -0800 | [diff] [blame] | 1172 | ath_err(common, "dma_mapping_error() on RX\n"); |
Felix Fietkau | 7545daf | 2011-01-24 19:23:16 +0100 | [diff] [blame] | 1173 | ieee80211_rx(hw, skb); |
Luis R. Rodriguez | f8316df | 2008-12-03 03:35:29 -0800 | [diff] [blame] | 1174 | break; |
| 1175 | } |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1176 | |
Felix Fietkau | 0d95521 | 2011-01-26 18:23:27 +0100 | [diff] [blame] | 1177 | if (rs.rs_more) { |
Ben Greear | 1507218 | 2012-04-03 09:18:59 -0700 | [diff] [blame] | 1178 | RX_STAT_INC(rx_frags); |
Felix Fietkau | 0d95521 | 2011-01-26 18:23:27 +0100 | [diff] [blame] | 1179 | /* |
| 1180 | * rs_more indicates chained descriptors which can be |
| 1181 | * used to link buffers together for a sort of |
| 1182 | * scatter-gather operation. |
| 1183 | */ |
| 1184 | if (sc->rx.frag) { |
| 1185 | /* too many fragments - cannot handle frame */ |
| 1186 | dev_kfree_skb_any(sc->rx.frag); |
| 1187 | dev_kfree_skb_any(skb); |
Ben Greear | 1507218 | 2012-04-03 09:18:59 -0700 | [diff] [blame] | 1188 | RX_STAT_INC(rx_too_many_frags_err); |
Felix Fietkau | 0d95521 | 2011-01-26 18:23:27 +0100 | [diff] [blame] | 1189 | skb = NULL; |
| 1190 | } |
| 1191 | sc->rx.frag = skb; |
| 1192 | goto requeue; |
| 1193 | } |
| 1194 | |
| 1195 | if (sc->rx.frag) { |
| 1196 | int space = skb->len - skb_tailroom(hdr_skb); |
| 1197 | |
Felix Fietkau | 0d95521 | 2011-01-26 18:23:27 +0100 | [diff] [blame] | 1198 | if (pskb_expand_head(hdr_skb, 0, space, GFP_ATOMIC) < 0) { |
| 1199 | dev_kfree_skb(skb); |
Ben Greear | 1507218 | 2012-04-03 09:18:59 -0700 | [diff] [blame] | 1200 | RX_STAT_INC(rx_oom_err); |
Felix Fietkau | 0d95521 | 2011-01-26 18:23:27 +0100 | [diff] [blame] | 1201 | goto requeue_drop_frag; |
| 1202 | } |
| 1203 | |
Eric Dumazet | b5447ff | 2012-03-15 13:43:29 -0700 | [diff] [blame] | 1204 | sc->rx.frag = NULL; |
| 1205 | |
Felix Fietkau | 0d95521 | 2011-01-26 18:23:27 +0100 | [diff] [blame] | 1206 | skb_copy_from_linear_data(skb, skb_put(hdr_skb, skb->len), |
| 1207 | skb->len); |
| 1208 | dev_kfree_skb_any(skb); |
| 1209 | skb = hdr_skb; |
| 1210 | } |
| 1211 | |
Mohammed Shafi Shajakhan | eb840a8 | 2011-11-29 20:30:35 +0530 | [diff] [blame] | 1212 | |
| 1213 | if (ah->caps.hw_caps & ATH9K_HW_CAP_ANT_DIV_COMB) { |
| 1214 | |
| 1215 | /* |
| 1216 | * change the default rx antenna if rx diversity |
| 1217 | * chooses the other antenna 3 times in a row. |
| 1218 | */ |
| 1219 | if (sc->rx.defant != rs.rs_antenna) { |
| 1220 | if (++sc->rx.rxotherant >= 3) |
| 1221 | ath_setdefantenna(sc, rs.rs_antenna); |
| 1222 | } else { |
| 1223 | sc->rx.rxotherant = 0; |
| 1224 | } |
| 1225 | |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1226 | } |
Vivek Natarajan | 3cbb5dd | 2009-01-20 11:17:08 +0530 | [diff] [blame] | 1227 | |
Felix Fietkau | 66760ea | 2011-07-13 23:35:05 +0800 | [diff] [blame] | 1228 | if (rxs->flag & RX_FLAG_MMIC_STRIPPED) |
| 1229 | skb_trim(skb, skb->len - 8); |
| 1230 | |
Luis R. Rodriguez | 8ab2cd0 | 2010-09-16 15:12:26 -0400 | [diff] [blame] | 1231 | spin_lock_irqsave(&sc->sc_pm_lock, flags); |
Mohammed Shafi Shajakhan | aaef24b | 2010-12-07 20:40:58 +0530 | [diff] [blame] | 1232 | |
| 1233 | if ((sc->ps_flags & (PS_WAIT_FOR_BEACON | |
Rajkumar Manoharan | f73c604 | 2011-09-26 22:16:56 +0530 | [diff] [blame] | 1234 | PS_WAIT_FOR_CAB | |
| 1235 | PS_WAIT_FOR_PSPOLL_DATA)) || |
| 1236 | ath9k_check_auto_sleep(sc)) |
| 1237 | ath_rx_ps(sc, skb, rs.is_mybeacon); |
Luis R. Rodriguez | 8ab2cd0 | 2010-09-16 15:12:26 -0400 | [diff] [blame] | 1238 | spin_unlock_irqrestore(&sc->sc_pm_lock, flags); |
Jouni Malinen | cc65965 | 2009-05-14 21:28:48 +0300 | [diff] [blame] | 1239 | |
Felix Fietkau | 43c3528 | 2011-09-03 01:40:27 +0200 | [diff] [blame] | 1240 | if ((ah->caps.hw_caps & ATH9K_HW_CAP_ANT_DIV_COMB) && sc->ant_rx == 3) |
Vasanthakumar Thiagarajan | 102885a | 2010-09-02 01:34:43 -0700 | [diff] [blame] | 1241 | ath_ant_comb_scan(sc, &rs); |
| 1242 | |
Felix Fietkau | 7545daf | 2011-01-24 19:23:16 +0100 | [diff] [blame] | 1243 | ieee80211_rx(hw, skb); |
Jouni Malinen | cc65965 | 2009-05-14 21:28:48 +0300 | [diff] [blame] | 1244 | |
Felix Fietkau | 0d95521 | 2011-01-26 18:23:27 +0100 | [diff] [blame] | 1245 | requeue_drop_frag: |
| 1246 | if (sc->rx.frag) { |
| 1247 | dev_kfree_skb_any(sc->rx.frag); |
| 1248 | sc->rx.frag = NULL; |
| 1249 | } |
Luis R. Rodriguez | cb71d9b | 2008-11-21 17:41:33 -0800 | [diff] [blame] | 1250 | requeue: |
Felix Fietkau | b5c80475 | 2010-04-15 17:38:48 -0400 | [diff] [blame] | 1251 | if (edma) { |
| 1252 | list_add_tail(&bf->list, &sc->rx.rxbuf); |
| 1253 | ath_rx_edma_buf_link(sc, qtype); |
| 1254 | } else { |
| 1255 | list_move_tail(&bf->list, &sc->rx.rxbuf); |
| 1256 | ath_rx_buf_link(sc, bf); |
Felix Fietkau | 3483288 | 2011-09-14 21:23:03 +0200 | [diff] [blame] | 1257 | if (!flush) |
| 1258 | ath9k_hw_rxena(ah); |
Felix Fietkau | b5c80475 | 2010-04-15 17:38:48 -0400 | [diff] [blame] | 1259 | } |
Sujith | be0418a | 2008-11-18 09:05:55 +0530 | [diff] [blame] | 1260 | } while (1); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1261 | |
Sujith | b77f483 | 2008-12-07 21:44:03 +0530 | [diff] [blame] | 1262 | spin_unlock_bh(&sc->rx.rxbuflock); |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1263 | |
Rajkumar Manoharan | 29ab0b3 | 2011-08-13 10:28:10 +0530 | [diff] [blame] | 1264 | if (!(ah->imask & ATH9K_INT_RXEOL)) { |
| 1265 | ah->imask |= (ATH9K_INT_RXEOL | ATH9K_INT_RXORN); |
Felix Fietkau | 72d874c | 2011-10-08 20:06:19 +0200 | [diff] [blame] | 1266 | ath9k_hw_set_interrupts(ah); |
Rajkumar Manoharan | 29ab0b3 | 2011-08-13 10:28:10 +0530 | [diff] [blame] | 1267 | } |
| 1268 | |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1269 | return 0; |
Luis R. Rodriguez | f078f20 | 2008-08-04 00:16:41 -0700 | [diff] [blame] | 1270 | } |