1203c4805SLuis R. Rodriguez /* 2203c4805SLuis R. Rodriguez * Copyright (c) 2008-2009 Atheros Communications Inc. 3203c4805SLuis R. Rodriguez * 4203c4805SLuis R. Rodriguez * Permission to use, copy, modify, and/or distribute this software for any 5203c4805SLuis R. Rodriguez * purpose with or without fee is hereby granted, provided that the above 6203c4805SLuis R. Rodriguez * copyright notice and this permission notice appear in all copies. 7203c4805SLuis R. Rodriguez * 8203c4805SLuis R. Rodriguez * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 9203c4805SLuis R. Rodriguez * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 10203c4805SLuis R. Rodriguez * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 11203c4805SLuis R. Rodriguez * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 12203c4805SLuis R. Rodriguez * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 13203c4805SLuis R. Rodriguez * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 14203c4805SLuis R. Rodriguez * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 15203c4805SLuis R. Rodriguez */ 16203c4805SLuis R. Rodriguez 17203c4805SLuis R. Rodriguez #include "ath9k.h" 18b622a720SLuis R. Rodriguez #include "ar9003_mac.h" 19203c4805SLuis R. Rodriguez 20b5c80475SFelix Fietkau #define SKB_CB_ATHBUF(__skb) (*((struct ath_buf **)__skb->cb)) 21b5c80475SFelix Fietkau 22102885a5SVasanthakumar Thiagarajan static inline bool ath_is_alt_ant_ratio_better(int alt_ratio, int maxdelta, 23102885a5SVasanthakumar Thiagarajan int mindelta, int main_rssi_avg, 24102885a5SVasanthakumar Thiagarajan int alt_rssi_avg, int pkt_count) 25102885a5SVasanthakumar Thiagarajan { 26102885a5SVasanthakumar Thiagarajan return (((alt_ratio >= ATH_ANT_DIV_COMB_ALT_ANT_RATIO2) && 27102885a5SVasanthakumar Thiagarajan (alt_rssi_avg > main_rssi_avg + maxdelta)) || 28102885a5SVasanthakumar Thiagarajan (alt_rssi_avg > main_rssi_avg + mindelta)) && (pkt_count > 50); 29102885a5SVasanthakumar Thiagarajan } 30102885a5SVasanthakumar Thiagarajan 31ededf1f8SVasanthakumar Thiagarajan static inline bool ath9k_check_auto_sleep(struct ath_softc *sc) 32ededf1f8SVasanthakumar Thiagarajan { 33ededf1f8SVasanthakumar Thiagarajan return sc->ps_enabled && 34ededf1f8SVasanthakumar Thiagarajan (sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_AUTOSLEEP); 35ededf1f8SVasanthakumar Thiagarajan } 36ededf1f8SVasanthakumar Thiagarajan 37203c4805SLuis R. Rodriguez static struct ieee80211_hw * ath_get_virt_hw(struct ath_softc *sc, 38203c4805SLuis R. Rodriguez struct ieee80211_hdr *hdr) 39203c4805SLuis R. Rodriguez { 40203c4805SLuis R. Rodriguez struct ieee80211_hw *hw = sc->pri_wiphy->hw; 41203c4805SLuis R. Rodriguez int i; 42203c4805SLuis R. Rodriguez 43203c4805SLuis R. Rodriguez spin_lock_bh(&sc->wiphy_lock); 44203c4805SLuis R. Rodriguez for (i = 0; i < sc->num_sec_wiphy; i++) { 45203c4805SLuis R. Rodriguez struct ath_wiphy *aphy = sc->sec_wiphy[i]; 46203c4805SLuis R. Rodriguez if (aphy == NULL) 47203c4805SLuis R. Rodriguez continue; 48203c4805SLuis R. Rodriguez if (compare_ether_addr(hdr->addr1, aphy->hw->wiphy->perm_addr) 49203c4805SLuis R. Rodriguez == 0) { 50203c4805SLuis R. Rodriguez hw = aphy->hw; 51203c4805SLuis R. Rodriguez break; 52203c4805SLuis R. Rodriguez } 53203c4805SLuis R. Rodriguez } 54203c4805SLuis R. Rodriguez spin_unlock_bh(&sc->wiphy_lock); 55203c4805SLuis R. Rodriguez return hw; 56203c4805SLuis R. Rodriguez } 57203c4805SLuis R. Rodriguez 58203c4805SLuis R. Rodriguez /* 59203c4805SLuis R. Rodriguez * Setup and link descriptors. 60203c4805SLuis R. Rodriguez * 61203c4805SLuis R. Rodriguez * 11N: we can no longer afford to self link the last descriptor. 62203c4805SLuis R. Rodriguez * MAC acknowledges BA status as long as it copies frames to host 63203c4805SLuis R. Rodriguez * buffer (or rx fifo). This can incorrectly acknowledge packets 64203c4805SLuis R. Rodriguez * to a sender if last desc is self-linked. 65203c4805SLuis R. Rodriguez */ 66203c4805SLuis R. Rodriguez static void ath_rx_buf_link(struct ath_softc *sc, struct ath_buf *bf) 67203c4805SLuis R. Rodriguez { 68203c4805SLuis R. Rodriguez struct ath_hw *ah = sc->sc_ah; 69cc861f74SLuis R. Rodriguez struct ath_common *common = ath9k_hw_common(ah); 70203c4805SLuis R. Rodriguez struct ath_desc *ds; 71203c4805SLuis R. Rodriguez struct sk_buff *skb; 72203c4805SLuis R. Rodriguez 73203c4805SLuis R. Rodriguez ATH_RXBUF_RESET(bf); 74203c4805SLuis R. Rodriguez 75203c4805SLuis R. Rodriguez ds = bf->bf_desc; 76203c4805SLuis R. Rodriguez ds->ds_link = 0; /* link to null */ 77203c4805SLuis R. Rodriguez ds->ds_data = bf->bf_buf_addr; 78203c4805SLuis R. Rodriguez 79203c4805SLuis R. Rodriguez /* virtual addr of the beginning of the buffer. */ 80203c4805SLuis R. Rodriguez skb = bf->bf_mpdu; 819680e8a3SLuis R. Rodriguez BUG_ON(skb == NULL); 82203c4805SLuis R. Rodriguez ds->ds_vdata = skb->data; 83203c4805SLuis R. Rodriguez 84cc861f74SLuis R. Rodriguez /* 85cc861f74SLuis R. Rodriguez * setup rx descriptors. The rx_bufsize here tells the hardware 86203c4805SLuis R. Rodriguez * how much data it can DMA to us and that we are prepared 87cc861f74SLuis R. Rodriguez * to process 88cc861f74SLuis R. Rodriguez */ 89203c4805SLuis R. Rodriguez ath9k_hw_setuprxdesc(ah, ds, 90cc861f74SLuis R. Rodriguez common->rx_bufsize, 91203c4805SLuis R. Rodriguez 0); 92203c4805SLuis R. Rodriguez 93203c4805SLuis R. Rodriguez if (sc->rx.rxlink == NULL) 94203c4805SLuis R. Rodriguez ath9k_hw_putrxbuf(ah, bf->bf_daddr); 95203c4805SLuis R. Rodriguez else 96203c4805SLuis R. Rodriguez *sc->rx.rxlink = bf->bf_daddr; 97203c4805SLuis R. Rodriguez 98203c4805SLuis R. Rodriguez sc->rx.rxlink = &ds->ds_link; 99203c4805SLuis R. Rodriguez ath9k_hw_rxena(ah); 100203c4805SLuis R. Rodriguez } 101203c4805SLuis R. Rodriguez 102203c4805SLuis R. Rodriguez static void ath_setdefantenna(struct ath_softc *sc, u32 antenna) 103203c4805SLuis R. Rodriguez { 104203c4805SLuis R. Rodriguez /* XXX block beacon interrupts */ 105203c4805SLuis R. Rodriguez ath9k_hw_setantenna(sc->sc_ah, antenna); 106203c4805SLuis R. Rodriguez sc->rx.defant = antenna; 107203c4805SLuis R. Rodriguez sc->rx.rxotherant = 0; 108203c4805SLuis R. Rodriguez } 109203c4805SLuis R. Rodriguez 110203c4805SLuis R. Rodriguez static void ath_opmode_init(struct ath_softc *sc) 111203c4805SLuis R. Rodriguez { 112203c4805SLuis R. Rodriguez struct ath_hw *ah = sc->sc_ah; 1131510718dSLuis R. Rodriguez struct ath_common *common = ath9k_hw_common(ah); 1141510718dSLuis R. Rodriguez 115203c4805SLuis R. Rodriguez u32 rfilt, mfilt[2]; 116203c4805SLuis R. Rodriguez 117203c4805SLuis R. Rodriguez /* configure rx filter */ 118203c4805SLuis R. Rodriguez rfilt = ath_calcrxfilter(sc); 119203c4805SLuis R. Rodriguez ath9k_hw_setrxfilter(ah, rfilt); 120203c4805SLuis R. Rodriguez 121203c4805SLuis R. Rodriguez /* configure bssid mask */ 12213b81559SLuis R. Rodriguez ath_hw_setbssidmask(common); 123203c4805SLuis R. Rodriguez 124203c4805SLuis R. Rodriguez /* configure operational mode */ 125203c4805SLuis R. Rodriguez ath9k_hw_setopmode(ah); 126203c4805SLuis R. Rodriguez 127203c4805SLuis R. Rodriguez /* calculate and install multicast filter */ 128203c4805SLuis R. Rodriguez mfilt[0] = mfilt[1] = ~0; 129203c4805SLuis R. Rodriguez ath9k_hw_setmcastfilter(ah, mfilt[0], mfilt[1]); 130203c4805SLuis R. Rodriguez } 131203c4805SLuis R. Rodriguez 132b5c80475SFelix Fietkau static bool ath_rx_edma_buf_link(struct ath_softc *sc, 133b5c80475SFelix Fietkau enum ath9k_rx_qtype qtype) 134b5c80475SFelix Fietkau { 135b5c80475SFelix Fietkau struct ath_hw *ah = sc->sc_ah; 136b5c80475SFelix Fietkau struct ath_rx_edma *rx_edma; 137b5c80475SFelix Fietkau struct sk_buff *skb; 138b5c80475SFelix Fietkau struct ath_buf *bf; 139b5c80475SFelix Fietkau 140b5c80475SFelix Fietkau rx_edma = &sc->rx.rx_edma[qtype]; 141b5c80475SFelix Fietkau if (skb_queue_len(&rx_edma->rx_fifo) >= rx_edma->rx_fifo_hwsize) 142b5c80475SFelix Fietkau return false; 143b5c80475SFelix Fietkau 144b5c80475SFelix Fietkau bf = list_first_entry(&sc->rx.rxbuf, struct ath_buf, list); 145b5c80475SFelix Fietkau list_del_init(&bf->list); 146b5c80475SFelix Fietkau 147b5c80475SFelix Fietkau skb = bf->bf_mpdu; 148b5c80475SFelix Fietkau 149b5c80475SFelix Fietkau ATH_RXBUF_RESET(bf); 150b5c80475SFelix Fietkau memset(skb->data, 0, ah->caps.rx_status_len); 151b5c80475SFelix Fietkau dma_sync_single_for_device(sc->dev, bf->bf_buf_addr, 152b5c80475SFelix Fietkau ah->caps.rx_status_len, DMA_TO_DEVICE); 153b5c80475SFelix Fietkau 154b5c80475SFelix Fietkau SKB_CB_ATHBUF(skb) = bf; 155b5c80475SFelix Fietkau ath9k_hw_addrxbuf_edma(ah, bf->bf_buf_addr, qtype); 156b5c80475SFelix Fietkau skb_queue_tail(&rx_edma->rx_fifo, skb); 157b5c80475SFelix Fietkau 158b5c80475SFelix Fietkau return true; 159b5c80475SFelix Fietkau } 160b5c80475SFelix Fietkau 161b5c80475SFelix Fietkau static void ath_rx_addbuffer_edma(struct ath_softc *sc, 162b5c80475SFelix Fietkau enum ath9k_rx_qtype qtype, int size) 163b5c80475SFelix Fietkau { 164b5c80475SFelix Fietkau struct ath_common *common = ath9k_hw_common(sc->sc_ah); 165b5c80475SFelix Fietkau u32 nbuf = 0; 166b5c80475SFelix Fietkau 167b5c80475SFelix Fietkau if (list_empty(&sc->rx.rxbuf)) { 168b5c80475SFelix Fietkau ath_print(common, ATH_DBG_QUEUE, "No free rx buf available\n"); 169b5c80475SFelix Fietkau return; 170b5c80475SFelix Fietkau } 171b5c80475SFelix Fietkau 172b5c80475SFelix Fietkau while (!list_empty(&sc->rx.rxbuf)) { 173b5c80475SFelix Fietkau nbuf++; 174b5c80475SFelix Fietkau 175b5c80475SFelix Fietkau if (!ath_rx_edma_buf_link(sc, qtype)) 176b5c80475SFelix Fietkau break; 177b5c80475SFelix Fietkau 178b5c80475SFelix Fietkau if (nbuf >= size) 179b5c80475SFelix Fietkau break; 180b5c80475SFelix Fietkau } 181b5c80475SFelix Fietkau } 182b5c80475SFelix Fietkau 183b5c80475SFelix Fietkau static void ath_rx_remove_buffer(struct ath_softc *sc, 184b5c80475SFelix Fietkau enum ath9k_rx_qtype qtype) 185b5c80475SFelix Fietkau { 186b5c80475SFelix Fietkau struct ath_buf *bf; 187b5c80475SFelix Fietkau struct ath_rx_edma *rx_edma; 188b5c80475SFelix Fietkau struct sk_buff *skb; 189b5c80475SFelix Fietkau 190b5c80475SFelix Fietkau rx_edma = &sc->rx.rx_edma[qtype]; 191b5c80475SFelix Fietkau 192b5c80475SFelix Fietkau while ((skb = skb_dequeue(&rx_edma->rx_fifo)) != NULL) { 193b5c80475SFelix Fietkau bf = SKB_CB_ATHBUF(skb); 194b5c80475SFelix Fietkau BUG_ON(!bf); 195b5c80475SFelix Fietkau list_add_tail(&bf->list, &sc->rx.rxbuf); 196b5c80475SFelix Fietkau } 197b5c80475SFelix Fietkau } 198b5c80475SFelix Fietkau 199b5c80475SFelix Fietkau static void ath_rx_edma_cleanup(struct ath_softc *sc) 200b5c80475SFelix Fietkau { 201b5c80475SFelix Fietkau struct ath_buf *bf; 202b5c80475SFelix Fietkau 203b5c80475SFelix Fietkau ath_rx_remove_buffer(sc, ATH9K_RX_QUEUE_LP); 204b5c80475SFelix Fietkau ath_rx_remove_buffer(sc, ATH9K_RX_QUEUE_HP); 205b5c80475SFelix Fietkau 206b5c80475SFelix Fietkau list_for_each_entry(bf, &sc->rx.rxbuf, list) { 207b5c80475SFelix Fietkau if (bf->bf_mpdu) 208b5c80475SFelix Fietkau dev_kfree_skb_any(bf->bf_mpdu); 209b5c80475SFelix Fietkau } 210b5c80475SFelix Fietkau 211b5c80475SFelix Fietkau INIT_LIST_HEAD(&sc->rx.rxbuf); 212b5c80475SFelix Fietkau 213b5c80475SFelix Fietkau kfree(sc->rx.rx_bufptr); 214b5c80475SFelix Fietkau sc->rx.rx_bufptr = NULL; 215b5c80475SFelix Fietkau } 216b5c80475SFelix Fietkau 217b5c80475SFelix Fietkau static void ath_rx_edma_init_queue(struct ath_rx_edma *rx_edma, int size) 218b5c80475SFelix Fietkau { 219b5c80475SFelix Fietkau skb_queue_head_init(&rx_edma->rx_fifo); 220b5c80475SFelix Fietkau skb_queue_head_init(&rx_edma->rx_buffers); 221b5c80475SFelix Fietkau rx_edma->rx_fifo_hwsize = size; 222b5c80475SFelix Fietkau } 223b5c80475SFelix Fietkau 224b5c80475SFelix Fietkau static int ath_rx_edma_init(struct ath_softc *sc, int nbufs) 225b5c80475SFelix Fietkau { 226b5c80475SFelix Fietkau struct ath_common *common = ath9k_hw_common(sc->sc_ah); 227b5c80475SFelix Fietkau struct ath_hw *ah = sc->sc_ah; 228b5c80475SFelix Fietkau struct sk_buff *skb; 229b5c80475SFelix Fietkau struct ath_buf *bf; 230b5c80475SFelix Fietkau int error = 0, i; 231b5c80475SFelix Fietkau u32 size; 232b5c80475SFelix Fietkau 233b5c80475SFelix Fietkau 234b5c80475SFelix Fietkau common->rx_bufsize = roundup(IEEE80211_MAX_MPDU_LEN + 235b5c80475SFelix Fietkau ah->caps.rx_status_len, 236b5c80475SFelix Fietkau min(common->cachelsz, (u16)64)); 237b5c80475SFelix Fietkau 238b5c80475SFelix Fietkau ath9k_hw_set_rx_bufsize(ah, common->rx_bufsize - 239b5c80475SFelix Fietkau ah->caps.rx_status_len); 240b5c80475SFelix Fietkau 241b5c80475SFelix Fietkau ath_rx_edma_init_queue(&sc->rx.rx_edma[ATH9K_RX_QUEUE_LP], 242b5c80475SFelix Fietkau ah->caps.rx_lp_qdepth); 243b5c80475SFelix Fietkau ath_rx_edma_init_queue(&sc->rx.rx_edma[ATH9K_RX_QUEUE_HP], 244b5c80475SFelix Fietkau ah->caps.rx_hp_qdepth); 245b5c80475SFelix Fietkau 246b5c80475SFelix Fietkau size = sizeof(struct ath_buf) * nbufs; 247b5c80475SFelix Fietkau bf = kzalloc(size, GFP_KERNEL); 248b5c80475SFelix Fietkau if (!bf) 249b5c80475SFelix Fietkau return -ENOMEM; 250b5c80475SFelix Fietkau 251b5c80475SFelix Fietkau INIT_LIST_HEAD(&sc->rx.rxbuf); 252b5c80475SFelix Fietkau sc->rx.rx_bufptr = bf; 253b5c80475SFelix Fietkau 254b5c80475SFelix Fietkau for (i = 0; i < nbufs; i++, bf++) { 255b5c80475SFelix Fietkau skb = ath_rxbuf_alloc(common, common->rx_bufsize, GFP_KERNEL); 256b5c80475SFelix Fietkau if (!skb) { 257b5c80475SFelix Fietkau error = -ENOMEM; 258b5c80475SFelix Fietkau goto rx_init_fail; 259b5c80475SFelix Fietkau } 260b5c80475SFelix Fietkau 261b5c80475SFelix Fietkau memset(skb->data, 0, common->rx_bufsize); 262b5c80475SFelix Fietkau bf->bf_mpdu = skb; 263b5c80475SFelix Fietkau 264b5c80475SFelix Fietkau bf->bf_buf_addr = dma_map_single(sc->dev, skb->data, 265b5c80475SFelix Fietkau common->rx_bufsize, 266b5c80475SFelix Fietkau DMA_BIDIRECTIONAL); 267b5c80475SFelix Fietkau if (unlikely(dma_mapping_error(sc->dev, 268b5c80475SFelix Fietkau bf->bf_buf_addr))) { 269b5c80475SFelix Fietkau dev_kfree_skb_any(skb); 270b5c80475SFelix Fietkau bf->bf_mpdu = NULL; 2716cf9e995SBen Greear bf->bf_buf_addr = 0; 272b5c80475SFelix Fietkau ath_print(common, ATH_DBG_FATAL, 273b5c80475SFelix Fietkau "dma_mapping_error() on RX init\n"); 274b5c80475SFelix Fietkau error = -ENOMEM; 275b5c80475SFelix Fietkau goto rx_init_fail; 276b5c80475SFelix Fietkau } 277b5c80475SFelix Fietkau 278b5c80475SFelix Fietkau list_add_tail(&bf->list, &sc->rx.rxbuf); 279b5c80475SFelix Fietkau } 280b5c80475SFelix Fietkau 281b5c80475SFelix Fietkau return 0; 282b5c80475SFelix Fietkau 283b5c80475SFelix Fietkau rx_init_fail: 284b5c80475SFelix Fietkau ath_rx_edma_cleanup(sc); 285b5c80475SFelix Fietkau return error; 286b5c80475SFelix Fietkau } 287b5c80475SFelix Fietkau 288b5c80475SFelix Fietkau static void ath_edma_start_recv(struct ath_softc *sc) 289b5c80475SFelix Fietkau { 290b5c80475SFelix Fietkau spin_lock_bh(&sc->rx.rxbuflock); 291b5c80475SFelix Fietkau 292b5c80475SFelix Fietkau ath9k_hw_rxena(sc->sc_ah); 293b5c80475SFelix Fietkau 294b5c80475SFelix Fietkau ath_rx_addbuffer_edma(sc, ATH9K_RX_QUEUE_HP, 295b5c80475SFelix Fietkau sc->rx.rx_edma[ATH9K_RX_QUEUE_HP].rx_fifo_hwsize); 296b5c80475SFelix Fietkau 297b5c80475SFelix Fietkau ath_rx_addbuffer_edma(sc, ATH9K_RX_QUEUE_LP, 298b5c80475SFelix Fietkau sc->rx.rx_edma[ATH9K_RX_QUEUE_LP].rx_fifo_hwsize); 299b5c80475SFelix Fietkau 300b5c80475SFelix Fietkau ath_opmode_init(sc); 301b5c80475SFelix Fietkau 30248a6a468SLuis R. Rodriguez ath9k_hw_startpcureceive(sc->sc_ah, (sc->sc_flags & SC_OP_OFFCHANNEL)); 303*7583c550SLuis R. Rodriguez 304*7583c550SLuis R. Rodriguez spin_unlock_bh(&sc->rx.rxbuflock); 305b5c80475SFelix Fietkau } 306b5c80475SFelix Fietkau 307b5c80475SFelix Fietkau static void ath_edma_stop_recv(struct ath_softc *sc) 308b5c80475SFelix Fietkau { 309b5c80475SFelix Fietkau ath_rx_remove_buffer(sc, ATH9K_RX_QUEUE_HP); 310b5c80475SFelix Fietkau ath_rx_remove_buffer(sc, ATH9K_RX_QUEUE_LP); 311b5c80475SFelix Fietkau } 312b5c80475SFelix Fietkau 313203c4805SLuis R. Rodriguez int ath_rx_init(struct ath_softc *sc, int nbufs) 314203c4805SLuis R. Rodriguez { 31527c51f1aSLuis R. Rodriguez struct ath_common *common = ath9k_hw_common(sc->sc_ah); 316203c4805SLuis R. Rodriguez struct sk_buff *skb; 317203c4805SLuis R. Rodriguez struct ath_buf *bf; 318203c4805SLuis R. Rodriguez int error = 0; 319203c4805SLuis R. Rodriguez 320203c4805SLuis R. Rodriguez spin_lock_init(&sc->rx.rxflushlock); 321203c4805SLuis R. Rodriguez sc->sc_flags &= ~SC_OP_RXFLUSH; 322203c4805SLuis R. Rodriguez spin_lock_init(&sc->rx.rxbuflock); 323203c4805SLuis R. Rodriguez 324b5c80475SFelix Fietkau if (sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_EDMA) { 325b5c80475SFelix Fietkau return ath_rx_edma_init(sc, nbufs); 326b5c80475SFelix Fietkau } else { 327cc861f74SLuis R. Rodriguez common->rx_bufsize = roundup(IEEE80211_MAX_MPDU_LEN, 32827c51f1aSLuis R. Rodriguez min(common->cachelsz, (u16)64)); 329203c4805SLuis R. Rodriguez 330c46917bbSLuis R. Rodriguez ath_print(common, ATH_DBG_CONFIG, "cachelsz %u rxbufsize %u\n", 331cc861f74SLuis R. Rodriguez common->cachelsz, common->rx_bufsize); 332203c4805SLuis R. Rodriguez 333203c4805SLuis R. Rodriguez /* Initialize rx descriptors */ 334203c4805SLuis R. Rodriguez 335203c4805SLuis R. Rodriguez error = ath_descdma_setup(sc, &sc->rx.rxdma, &sc->rx.rxbuf, 3364adfcdedSVasanthakumar Thiagarajan "rx", nbufs, 1, 0); 337203c4805SLuis R. Rodriguez if (error != 0) { 338c46917bbSLuis R. Rodriguez ath_print(common, ATH_DBG_FATAL, 339b5c80475SFelix Fietkau "failed to allocate rx descriptors: %d\n", 340b5c80475SFelix Fietkau error); 341203c4805SLuis R. Rodriguez goto err; 342203c4805SLuis R. Rodriguez } 343203c4805SLuis R. Rodriguez 344203c4805SLuis R. Rodriguez list_for_each_entry(bf, &sc->rx.rxbuf, list) { 345b5c80475SFelix Fietkau skb = ath_rxbuf_alloc(common, common->rx_bufsize, 346b5c80475SFelix Fietkau GFP_KERNEL); 347203c4805SLuis R. Rodriguez if (skb == NULL) { 348203c4805SLuis R. Rodriguez error = -ENOMEM; 349203c4805SLuis R. Rodriguez goto err; 350203c4805SLuis R. Rodriguez } 351203c4805SLuis R. Rodriguez 352203c4805SLuis R. Rodriguez bf->bf_mpdu = skb; 353203c4805SLuis R. Rodriguez bf->bf_buf_addr = dma_map_single(sc->dev, skb->data, 354cc861f74SLuis R. Rodriguez common->rx_bufsize, 355203c4805SLuis R. Rodriguez DMA_FROM_DEVICE); 356203c4805SLuis R. Rodriguez if (unlikely(dma_mapping_error(sc->dev, 357203c4805SLuis R. Rodriguez bf->bf_buf_addr))) { 358203c4805SLuis R. Rodriguez dev_kfree_skb_any(skb); 359203c4805SLuis R. Rodriguez bf->bf_mpdu = NULL; 3606cf9e995SBen Greear bf->bf_buf_addr = 0; 361c46917bbSLuis R. Rodriguez ath_print(common, ATH_DBG_FATAL, 362203c4805SLuis R. Rodriguez "dma_mapping_error() on RX init\n"); 363203c4805SLuis R. Rodriguez error = -ENOMEM; 364203c4805SLuis R. Rodriguez goto err; 365203c4805SLuis R. Rodriguez } 366203c4805SLuis R. Rodriguez } 367203c4805SLuis R. Rodriguez sc->rx.rxlink = NULL; 368b5c80475SFelix Fietkau } 369203c4805SLuis R. Rodriguez 370203c4805SLuis R. Rodriguez err: 371203c4805SLuis R. Rodriguez if (error) 372203c4805SLuis R. Rodriguez ath_rx_cleanup(sc); 373203c4805SLuis R. Rodriguez 374203c4805SLuis R. Rodriguez return error; 375203c4805SLuis R. Rodriguez } 376203c4805SLuis R. Rodriguez 377203c4805SLuis R. Rodriguez void ath_rx_cleanup(struct ath_softc *sc) 378203c4805SLuis R. Rodriguez { 379cc861f74SLuis R. Rodriguez struct ath_hw *ah = sc->sc_ah; 380cc861f74SLuis R. Rodriguez struct ath_common *common = ath9k_hw_common(ah); 381203c4805SLuis R. Rodriguez struct sk_buff *skb; 382203c4805SLuis R. Rodriguez struct ath_buf *bf; 383203c4805SLuis R. Rodriguez 384b5c80475SFelix Fietkau if (sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_EDMA) { 385b5c80475SFelix Fietkau ath_rx_edma_cleanup(sc); 386b5c80475SFelix Fietkau return; 387b5c80475SFelix Fietkau } else { 388203c4805SLuis R. Rodriguez list_for_each_entry(bf, &sc->rx.rxbuf, list) { 389203c4805SLuis R. Rodriguez skb = bf->bf_mpdu; 390203c4805SLuis R. Rodriguez if (skb) { 391203c4805SLuis R. Rodriguez dma_unmap_single(sc->dev, bf->bf_buf_addr, 392b5c80475SFelix Fietkau common->rx_bufsize, 393b5c80475SFelix Fietkau DMA_FROM_DEVICE); 394203c4805SLuis R. Rodriguez dev_kfree_skb(skb); 3956cf9e995SBen Greear bf->bf_buf_addr = 0; 3966cf9e995SBen Greear bf->bf_mpdu = NULL; 397203c4805SLuis R. Rodriguez } 398203c4805SLuis R. Rodriguez } 399203c4805SLuis R. Rodriguez 400203c4805SLuis R. Rodriguez if (sc->rx.rxdma.dd_desc_len != 0) 401203c4805SLuis R. Rodriguez ath_descdma_cleanup(sc, &sc->rx.rxdma, &sc->rx.rxbuf); 402203c4805SLuis R. Rodriguez } 403b5c80475SFelix Fietkau } 404203c4805SLuis R. Rodriguez 405203c4805SLuis R. Rodriguez /* 406203c4805SLuis R. Rodriguez * Calculate the receive filter according to the 407203c4805SLuis R. Rodriguez * operating mode and state: 408203c4805SLuis R. Rodriguez * 409203c4805SLuis R. Rodriguez * o always accept unicast, broadcast, and multicast traffic 410203c4805SLuis R. Rodriguez * o maintain current state of phy error reception (the hal 411203c4805SLuis R. Rodriguez * may enable phy error frames for noise immunity work) 412203c4805SLuis R. Rodriguez * o probe request frames are accepted only when operating in 413203c4805SLuis R. Rodriguez * hostap, adhoc, or monitor modes 414203c4805SLuis R. Rodriguez * o enable promiscuous mode according to the interface state 415203c4805SLuis R. Rodriguez * o accept beacons: 416203c4805SLuis R. Rodriguez * - when operating in adhoc mode so the 802.11 layer creates 417203c4805SLuis R. Rodriguez * node table entries for peers, 418203c4805SLuis R. Rodriguez * - when operating in station mode for collecting rssi data when 419203c4805SLuis R. Rodriguez * the station is otherwise quiet, or 420203c4805SLuis R. Rodriguez * - when operating as a repeater so we see repeater-sta beacons 421203c4805SLuis R. Rodriguez * - when scanning 422203c4805SLuis R. Rodriguez */ 423203c4805SLuis R. Rodriguez 424203c4805SLuis R. Rodriguez u32 ath_calcrxfilter(struct ath_softc *sc) 425203c4805SLuis R. Rodriguez { 426203c4805SLuis R. Rodriguez #define RX_FILTER_PRESERVE (ATH9K_RX_FILTER_PHYERR | ATH9K_RX_FILTER_PHYRADAR) 427203c4805SLuis R. Rodriguez 428203c4805SLuis R. Rodriguez u32 rfilt; 429203c4805SLuis R. Rodriguez 430203c4805SLuis R. Rodriguez rfilt = (ath9k_hw_getrxfilter(sc->sc_ah) & RX_FILTER_PRESERVE) 431203c4805SLuis R. Rodriguez | ATH9K_RX_FILTER_UCAST | ATH9K_RX_FILTER_BCAST 432203c4805SLuis R. Rodriguez | ATH9K_RX_FILTER_MCAST; 433203c4805SLuis R. Rodriguez 4349c1d8e4aSJouni Malinen if (sc->rx.rxfilter & FIF_PROBE_REQ) 435203c4805SLuis R. Rodriguez rfilt |= ATH9K_RX_FILTER_PROBEREQ; 436203c4805SLuis R. Rodriguez 437203c4805SLuis R. Rodriguez /* 438203c4805SLuis R. Rodriguez * Set promiscuous mode when FIF_PROMISC_IN_BSS is enabled for station 439203c4805SLuis R. Rodriguez * mode interface or when in monitor mode. AP mode does not need this 440203c4805SLuis R. Rodriguez * since it receives all in-BSS frames anyway. 441203c4805SLuis R. Rodriguez */ 442203c4805SLuis R. Rodriguez if (((sc->sc_ah->opmode != NL80211_IFTYPE_AP) && 443203c4805SLuis R. Rodriguez (sc->rx.rxfilter & FIF_PROMISC_IN_BSS)) || 444203c4805SLuis R. Rodriguez (sc->sc_ah->opmode == NL80211_IFTYPE_MONITOR)) 445203c4805SLuis R. Rodriguez rfilt |= ATH9K_RX_FILTER_PROM; 446203c4805SLuis R. Rodriguez 447203c4805SLuis R. Rodriguez if (sc->rx.rxfilter & FIF_CONTROL) 448203c4805SLuis R. Rodriguez rfilt |= ATH9K_RX_FILTER_CONTROL; 449203c4805SLuis R. Rodriguez 450203c4805SLuis R. Rodriguez if ((sc->sc_ah->opmode == NL80211_IFTYPE_STATION) && 451cfda6695SBen Greear (sc->nvifs <= 1) && 452203c4805SLuis R. Rodriguez !(sc->rx.rxfilter & FIF_BCN_PRBRESP_PROMISC)) 453203c4805SLuis R. Rodriguez rfilt |= ATH9K_RX_FILTER_MYBEACON; 454203c4805SLuis R. Rodriguez else 455203c4805SLuis R. Rodriguez rfilt |= ATH9K_RX_FILTER_BEACON; 456203c4805SLuis R. Rodriguez 4577a37081eSFelix Fietkau if ((AR_SREV_9280_20_OR_LATER(sc->sc_ah) || 458e17f83eaSFelix Fietkau AR_SREV_9285_12_OR_LATER(sc->sc_ah)) && 45966afad01SSenthil Balasubramanian (sc->sc_ah->opmode == NL80211_IFTYPE_AP) && 46066afad01SSenthil Balasubramanian (sc->rx.rxfilter & FIF_PSPOLL)) 461203c4805SLuis R. Rodriguez rfilt |= ATH9K_RX_FILTER_PSPOLL; 462203c4805SLuis R. Rodriguez 4637ea310beSSujith if (conf_is_ht(&sc->hw->conf)) 4647ea310beSSujith rfilt |= ATH9K_RX_FILTER_COMP_BAR; 4657ea310beSSujith 466cfda6695SBen Greear if (sc->sec_wiphy || (sc->nvifs > 1) || 467cfda6695SBen Greear (sc->rx.rxfilter & FIF_OTHER_BSS)) { 4685eb6ba83SJavier Cardona /* The following may also be needed for other older chips */ 4695eb6ba83SJavier Cardona if (sc->sc_ah->hw_version.macVersion == AR_SREV_VERSION_9160) 4705eb6ba83SJavier Cardona rfilt |= ATH9K_RX_FILTER_PROM; 471203c4805SLuis R. Rodriguez rfilt |= ATH9K_RX_FILTER_MCAST_BCAST_ALL; 472203c4805SLuis R. Rodriguez } 473203c4805SLuis R. Rodriguez 474203c4805SLuis R. Rodriguez return rfilt; 475203c4805SLuis R. Rodriguez 476203c4805SLuis R. Rodriguez #undef RX_FILTER_PRESERVE 477203c4805SLuis R. Rodriguez } 478203c4805SLuis R. Rodriguez 479203c4805SLuis R. Rodriguez int ath_startrecv(struct ath_softc *sc) 480203c4805SLuis R. Rodriguez { 481203c4805SLuis R. Rodriguez struct ath_hw *ah = sc->sc_ah; 482203c4805SLuis R. Rodriguez struct ath_buf *bf, *tbf; 483203c4805SLuis R. Rodriguez 484b5c80475SFelix Fietkau if (ah->caps.hw_caps & ATH9K_HW_CAP_EDMA) { 485b5c80475SFelix Fietkau ath_edma_start_recv(sc); 486b5c80475SFelix Fietkau return 0; 487b5c80475SFelix Fietkau } 488b5c80475SFelix Fietkau 489203c4805SLuis R. Rodriguez spin_lock_bh(&sc->rx.rxbuflock); 490203c4805SLuis R. Rodriguez if (list_empty(&sc->rx.rxbuf)) 491203c4805SLuis R. Rodriguez goto start_recv; 492203c4805SLuis R. Rodriguez 493203c4805SLuis R. Rodriguez sc->rx.rxlink = NULL; 494203c4805SLuis R. Rodriguez list_for_each_entry_safe(bf, tbf, &sc->rx.rxbuf, list) { 495203c4805SLuis R. Rodriguez ath_rx_buf_link(sc, bf); 496203c4805SLuis R. Rodriguez } 497203c4805SLuis R. Rodriguez 498203c4805SLuis R. Rodriguez /* We could have deleted elements so the list may be empty now */ 499203c4805SLuis R. Rodriguez if (list_empty(&sc->rx.rxbuf)) 500203c4805SLuis R. Rodriguez goto start_recv; 501203c4805SLuis R. Rodriguez 502203c4805SLuis R. Rodriguez bf = list_first_entry(&sc->rx.rxbuf, struct ath_buf, list); 503203c4805SLuis R. Rodriguez ath9k_hw_putrxbuf(ah, bf->bf_daddr); 504203c4805SLuis R. Rodriguez ath9k_hw_rxena(ah); 505203c4805SLuis R. Rodriguez 506203c4805SLuis R. Rodriguez start_recv: 507203c4805SLuis R. Rodriguez ath_opmode_init(sc); 50848a6a468SLuis R. Rodriguez ath9k_hw_startpcureceive(ah, (sc->sc_flags & SC_OP_OFFCHANNEL)); 509203c4805SLuis R. Rodriguez 510*7583c550SLuis R. Rodriguez spin_unlock_bh(&sc->rx.rxbuflock); 511*7583c550SLuis R. Rodriguez 512203c4805SLuis R. Rodriguez return 0; 513203c4805SLuis R. Rodriguez } 514203c4805SLuis R. Rodriguez 515203c4805SLuis R. Rodriguez bool ath_stoprecv(struct ath_softc *sc) 516203c4805SLuis R. Rodriguez { 517203c4805SLuis R. Rodriguez struct ath_hw *ah = sc->sc_ah; 518203c4805SLuis R. Rodriguez bool stopped; 519203c4805SLuis R. Rodriguez 5201e450285SLuis R. Rodriguez spin_lock_bh(&sc->rx.rxbuflock); 521203c4805SLuis R. Rodriguez ath9k_hw_stoppcurecv(ah); 522203c4805SLuis R. Rodriguez ath9k_hw_setrxfilter(ah, 0); 523203c4805SLuis R. Rodriguez stopped = ath9k_hw_stopdmarecv(ah); 524b5c80475SFelix Fietkau 525b5c80475SFelix Fietkau if (sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_EDMA) 526b5c80475SFelix Fietkau ath_edma_stop_recv(sc); 527b5c80475SFelix Fietkau else 528203c4805SLuis R. Rodriguez sc->rx.rxlink = NULL; 5291e450285SLuis R. Rodriguez spin_unlock_bh(&sc->rx.rxbuflock); 530203c4805SLuis R. Rodriguez 531203c4805SLuis R. Rodriguez return stopped; 532203c4805SLuis R. Rodriguez } 533203c4805SLuis R. Rodriguez 534203c4805SLuis R. Rodriguez void ath_flushrecv(struct ath_softc *sc) 535203c4805SLuis R. Rodriguez { 536203c4805SLuis R. Rodriguez spin_lock_bh(&sc->rx.rxflushlock); 537203c4805SLuis R. Rodriguez sc->sc_flags |= SC_OP_RXFLUSH; 538b5c80475SFelix Fietkau if (sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_EDMA) 539b5c80475SFelix Fietkau ath_rx_tasklet(sc, 1, true); 540b5c80475SFelix Fietkau ath_rx_tasklet(sc, 1, false); 541203c4805SLuis R. Rodriguez sc->sc_flags &= ~SC_OP_RXFLUSH; 542203c4805SLuis R. Rodriguez spin_unlock_bh(&sc->rx.rxflushlock); 543203c4805SLuis R. Rodriguez } 544203c4805SLuis R. Rodriguez 545cc65965cSJouni Malinen static bool ath_beacon_dtim_pending_cab(struct sk_buff *skb) 546cc65965cSJouni Malinen { 547cc65965cSJouni Malinen /* Check whether the Beacon frame has DTIM indicating buffered bc/mc */ 548cc65965cSJouni Malinen struct ieee80211_mgmt *mgmt; 549cc65965cSJouni Malinen u8 *pos, *end, id, elen; 550cc65965cSJouni Malinen struct ieee80211_tim_ie *tim; 551cc65965cSJouni Malinen 552cc65965cSJouni Malinen mgmt = (struct ieee80211_mgmt *)skb->data; 553cc65965cSJouni Malinen pos = mgmt->u.beacon.variable; 554cc65965cSJouni Malinen end = skb->data + skb->len; 555cc65965cSJouni Malinen 556cc65965cSJouni Malinen while (pos + 2 < end) { 557cc65965cSJouni Malinen id = *pos++; 558cc65965cSJouni Malinen elen = *pos++; 559cc65965cSJouni Malinen if (pos + elen > end) 560cc65965cSJouni Malinen break; 561cc65965cSJouni Malinen 562cc65965cSJouni Malinen if (id == WLAN_EID_TIM) { 563cc65965cSJouni Malinen if (elen < sizeof(*tim)) 564cc65965cSJouni Malinen break; 565cc65965cSJouni Malinen tim = (struct ieee80211_tim_ie *) pos; 566cc65965cSJouni Malinen if (tim->dtim_count != 0) 567cc65965cSJouni Malinen break; 568cc65965cSJouni Malinen return tim->bitmap_ctrl & 0x01; 569cc65965cSJouni Malinen } 570cc65965cSJouni Malinen 571cc65965cSJouni Malinen pos += elen; 572cc65965cSJouni Malinen } 573cc65965cSJouni Malinen 574cc65965cSJouni Malinen return false; 575cc65965cSJouni Malinen } 576cc65965cSJouni Malinen 577cc65965cSJouni Malinen static void ath_rx_ps_beacon(struct ath_softc *sc, struct sk_buff *skb) 578cc65965cSJouni Malinen { 579cc65965cSJouni Malinen struct ieee80211_mgmt *mgmt; 5801510718dSLuis R. Rodriguez struct ath_common *common = ath9k_hw_common(sc->sc_ah); 581cc65965cSJouni Malinen 582cc65965cSJouni Malinen if (skb->len < 24 + 8 + 2 + 2) 583cc65965cSJouni Malinen return; 584cc65965cSJouni Malinen 585cc65965cSJouni Malinen mgmt = (struct ieee80211_mgmt *)skb->data; 5861510718dSLuis R. Rodriguez if (memcmp(common->curbssid, mgmt->bssid, ETH_ALEN) != 0) 587cc65965cSJouni Malinen return; /* not from our current AP */ 588cc65965cSJouni Malinen 5891b04b930SSujith sc->ps_flags &= ~PS_WAIT_FOR_BEACON; 590293dc5dfSGabor Juhos 5911b04b930SSujith if (sc->ps_flags & PS_BEACON_SYNC) { 5921b04b930SSujith sc->ps_flags &= ~PS_BEACON_SYNC; 593c46917bbSLuis R. Rodriguez ath_print(common, ATH_DBG_PS, 594c46917bbSLuis R. Rodriguez "Reconfigure Beacon timers based on " 595ccdfeab6SJouni Malinen "timestamp from the AP\n"); 596ccdfeab6SJouni Malinen ath_beacon_config(sc, NULL); 597ccdfeab6SJouni Malinen } 598ccdfeab6SJouni Malinen 599cc65965cSJouni Malinen if (ath_beacon_dtim_pending_cab(skb)) { 600cc65965cSJouni Malinen /* 601cc65965cSJouni Malinen * Remain awake waiting for buffered broadcast/multicast 60258f5fffdSGabor Juhos * frames. If the last broadcast/multicast frame is not 60358f5fffdSGabor Juhos * received properly, the next beacon frame will work as 60458f5fffdSGabor Juhos * a backup trigger for returning into NETWORK SLEEP state, 60558f5fffdSGabor Juhos * so we are waiting for it as well. 606cc65965cSJouni Malinen */ 607c46917bbSLuis R. Rodriguez ath_print(common, ATH_DBG_PS, "Received DTIM beacon indicating " 608cc65965cSJouni Malinen "buffered broadcast/multicast frame(s)\n"); 6091b04b930SSujith sc->ps_flags |= PS_WAIT_FOR_CAB | PS_WAIT_FOR_BEACON; 610cc65965cSJouni Malinen return; 611cc65965cSJouni Malinen } 612cc65965cSJouni Malinen 6131b04b930SSujith if (sc->ps_flags & PS_WAIT_FOR_CAB) { 614cc65965cSJouni Malinen /* 615cc65965cSJouni Malinen * This can happen if a broadcast frame is dropped or the AP 616cc65965cSJouni Malinen * fails to send a frame indicating that all CAB frames have 617cc65965cSJouni Malinen * been delivered. 618cc65965cSJouni Malinen */ 6191b04b930SSujith sc->ps_flags &= ~PS_WAIT_FOR_CAB; 620c46917bbSLuis R. Rodriguez ath_print(common, ATH_DBG_PS, 621c46917bbSLuis R. Rodriguez "PS wait for CAB frames timed out\n"); 622cc65965cSJouni Malinen } 623cc65965cSJouni Malinen } 624cc65965cSJouni Malinen 625cc65965cSJouni Malinen static void ath_rx_ps(struct ath_softc *sc, struct sk_buff *skb) 626cc65965cSJouni Malinen { 627cc65965cSJouni Malinen struct ieee80211_hdr *hdr; 628c46917bbSLuis R. Rodriguez struct ath_common *common = ath9k_hw_common(sc->sc_ah); 629cc65965cSJouni Malinen 630cc65965cSJouni Malinen hdr = (struct ieee80211_hdr *)skb->data; 631cc65965cSJouni Malinen 632cc65965cSJouni Malinen /* Process Beacon and CAB receive in PS state */ 633ededf1f8SVasanthakumar Thiagarajan if (((sc->ps_flags & PS_WAIT_FOR_BEACON) || ath9k_check_auto_sleep(sc)) 634ededf1f8SVasanthakumar Thiagarajan && ieee80211_is_beacon(hdr->frame_control)) 635cc65965cSJouni Malinen ath_rx_ps_beacon(sc, skb); 6361b04b930SSujith else if ((sc->ps_flags & PS_WAIT_FOR_CAB) && 637cc65965cSJouni Malinen (ieee80211_is_data(hdr->frame_control) || 638cc65965cSJouni Malinen ieee80211_is_action(hdr->frame_control)) && 639cc65965cSJouni Malinen is_multicast_ether_addr(hdr->addr1) && 640cc65965cSJouni Malinen !ieee80211_has_moredata(hdr->frame_control)) { 641cc65965cSJouni Malinen /* 642cc65965cSJouni Malinen * No more broadcast/multicast frames to be received at this 643cc65965cSJouni Malinen * point. 644cc65965cSJouni Malinen */ 6453fac6dfdSSenthil Balasubramanian sc->ps_flags &= ~(PS_WAIT_FOR_CAB | PS_WAIT_FOR_BEACON); 646c46917bbSLuis R. Rodriguez ath_print(common, ATH_DBG_PS, 647c46917bbSLuis R. Rodriguez "All PS CAB frames received, back to sleep\n"); 6481b04b930SSujith } else if ((sc->ps_flags & PS_WAIT_FOR_PSPOLL_DATA) && 6499a23f9caSJouni Malinen !is_multicast_ether_addr(hdr->addr1) && 6509a23f9caSJouni Malinen !ieee80211_has_morefrags(hdr->frame_control)) { 6511b04b930SSujith sc->ps_flags &= ~PS_WAIT_FOR_PSPOLL_DATA; 652c46917bbSLuis R. Rodriguez ath_print(common, ATH_DBG_PS, 653c46917bbSLuis R. Rodriguez "Going back to sleep after having received " 654f643e51dSPavel Roskin "PS-Poll data (0x%lx)\n", 6551b04b930SSujith sc->ps_flags & (PS_WAIT_FOR_BEACON | 6561b04b930SSujith PS_WAIT_FOR_CAB | 6571b04b930SSujith PS_WAIT_FOR_PSPOLL_DATA | 6581b04b930SSujith PS_WAIT_FOR_TX_ACK)); 659cc65965cSJouni Malinen } 660cc65965cSJouni Malinen } 661cc65965cSJouni Malinen 662b4afffc0SLuis R. Rodriguez static void ath_rx_send_to_mac80211(struct ieee80211_hw *hw, 663b4afffc0SLuis R. Rodriguez struct ath_softc *sc, struct sk_buff *skb, 6645ca42627SLuis R. Rodriguez struct ieee80211_rx_status *rxs) 6659d64a3cfSJouni Malinen { 6669d64a3cfSJouni Malinen struct ieee80211_hdr *hdr; 6679d64a3cfSJouni Malinen 6689d64a3cfSJouni Malinen hdr = (struct ieee80211_hdr *)skb->data; 6699d64a3cfSJouni Malinen 6709d64a3cfSJouni Malinen /* Send the frame to mac80211 */ 6719d64a3cfSJouni Malinen if (is_multicast_ether_addr(hdr->addr1)) { 6729d64a3cfSJouni Malinen int i; 6739d64a3cfSJouni Malinen /* 6749d64a3cfSJouni Malinen * Deliver broadcast/multicast frames to all suitable 6759d64a3cfSJouni Malinen * virtual wiphys. 6769d64a3cfSJouni Malinen */ 6779d64a3cfSJouni Malinen /* TODO: filter based on channel configuration */ 6789d64a3cfSJouni Malinen for (i = 0; i < sc->num_sec_wiphy; i++) { 6799d64a3cfSJouni Malinen struct ath_wiphy *aphy = sc->sec_wiphy[i]; 6809d64a3cfSJouni Malinen struct sk_buff *nskb; 6819d64a3cfSJouni Malinen if (aphy == NULL) 6829d64a3cfSJouni Malinen continue; 6839d64a3cfSJouni Malinen nskb = skb_copy(skb, GFP_ATOMIC); 6845ca42627SLuis R. Rodriguez if (!nskb) 6855ca42627SLuis R. Rodriguez continue; 686f1d58c25SJohannes Berg ieee80211_rx(aphy->hw, nskb); 6879d64a3cfSJouni Malinen } 688f1d58c25SJohannes Berg ieee80211_rx(sc->hw, skb); 6895ca42627SLuis R. Rodriguez } else 6909d64a3cfSJouni Malinen /* Deliver unicast frames based on receiver address */ 691b4afffc0SLuis R. Rodriguez ieee80211_rx(hw, skb); 6929d64a3cfSJouni Malinen } 6939d64a3cfSJouni Malinen 694b5c80475SFelix Fietkau static bool ath_edma_get_buffers(struct ath_softc *sc, 695b5c80475SFelix Fietkau enum ath9k_rx_qtype qtype) 696203c4805SLuis R. Rodriguez { 697b5c80475SFelix Fietkau struct ath_rx_edma *rx_edma = &sc->rx.rx_edma[qtype]; 698203c4805SLuis R. Rodriguez struct ath_hw *ah = sc->sc_ah; 69927c51f1aSLuis R. Rodriguez struct ath_common *common = ath9k_hw_common(ah); 700b5c80475SFelix Fietkau struct sk_buff *skb; 701b5c80475SFelix Fietkau struct ath_buf *bf; 702b5c80475SFelix Fietkau int ret; 703203c4805SLuis R. Rodriguez 704b5c80475SFelix Fietkau skb = skb_peek(&rx_edma->rx_fifo); 705b5c80475SFelix Fietkau if (!skb) 706b5c80475SFelix Fietkau return false; 707203c4805SLuis R. Rodriguez 708b5c80475SFelix Fietkau bf = SKB_CB_ATHBUF(skb); 709b5c80475SFelix Fietkau BUG_ON(!bf); 710b5c80475SFelix Fietkau 711ce9426d1SMing Lei dma_sync_single_for_cpu(sc->dev, bf->bf_buf_addr, 712b5c80475SFelix Fietkau common->rx_bufsize, DMA_FROM_DEVICE); 713b5c80475SFelix Fietkau 714b5c80475SFelix Fietkau ret = ath9k_hw_process_rxdesc_edma(ah, NULL, skb->data); 715ce9426d1SMing Lei if (ret == -EINPROGRESS) { 716ce9426d1SMing Lei /*let device gain the buffer again*/ 717ce9426d1SMing Lei dma_sync_single_for_device(sc->dev, bf->bf_buf_addr, 718ce9426d1SMing Lei common->rx_bufsize, DMA_FROM_DEVICE); 719b5c80475SFelix Fietkau return false; 720ce9426d1SMing Lei } 721b5c80475SFelix Fietkau 722b5c80475SFelix Fietkau __skb_unlink(skb, &rx_edma->rx_fifo); 723b5c80475SFelix Fietkau if (ret == -EINVAL) { 724b5c80475SFelix Fietkau /* corrupt descriptor, skip this one and the following one */ 725b5c80475SFelix Fietkau list_add_tail(&bf->list, &sc->rx.rxbuf); 726b5c80475SFelix Fietkau ath_rx_edma_buf_link(sc, qtype); 727b5c80475SFelix Fietkau skb = skb_peek(&rx_edma->rx_fifo); 728b5c80475SFelix Fietkau if (!skb) 729b5c80475SFelix Fietkau return true; 730b5c80475SFelix Fietkau 731b5c80475SFelix Fietkau bf = SKB_CB_ATHBUF(skb); 732b5c80475SFelix Fietkau BUG_ON(!bf); 733b5c80475SFelix Fietkau 734b5c80475SFelix Fietkau __skb_unlink(skb, &rx_edma->rx_fifo); 735b5c80475SFelix Fietkau list_add_tail(&bf->list, &sc->rx.rxbuf); 736b5c80475SFelix Fietkau ath_rx_edma_buf_link(sc, qtype); 737083e3e8dSVasanthakumar Thiagarajan return true; 738b5c80475SFelix Fietkau } 739b5c80475SFelix Fietkau skb_queue_tail(&rx_edma->rx_buffers, skb); 740b5c80475SFelix Fietkau 741b5c80475SFelix Fietkau return true; 742b5c80475SFelix Fietkau } 743b5c80475SFelix Fietkau 744b5c80475SFelix Fietkau static struct ath_buf *ath_edma_get_next_rx_buf(struct ath_softc *sc, 745b5c80475SFelix Fietkau struct ath_rx_status *rs, 746b5c80475SFelix Fietkau enum ath9k_rx_qtype qtype) 747b5c80475SFelix Fietkau { 748b5c80475SFelix Fietkau struct ath_rx_edma *rx_edma = &sc->rx.rx_edma[qtype]; 749b5c80475SFelix Fietkau struct sk_buff *skb; 750b5c80475SFelix Fietkau struct ath_buf *bf; 751b5c80475SFelix Fietkau 752b5c80475SFelix Fietkau while (ath_edma_get_buffers(sc, qtype)); 753b5c80475SFelix Fietkau skb = __skb_dequeue(&rx_edma->rx_buffers); 754b5c80475SFelix Fietkau if (!skb) 755b5c80475SFelix Fietkau return NULL; 756b5c80475SFelix Fietkau 757b5c80475SFelix Fietkau bf = SKB_CB_ATHBUF(skb); 758b5c80475SFelix Fietkau ath9k_hw_process_rxdesc_edma(sc->sc_ah, rs, skb->data); 759b5c80475SFelix Fietkau return bf; 760b5c80475SFelix Fietkau } 761b5c80475SFelix Fietkau 762b5c80475SFelix Fietkau static struct ath_buf *ath_get_next_rx_buf(struct ath_softc *sc, 763b5c80475SFelix Fietkau struct ath_rx_status *rs) 764b5c80475SFelix Fietkau { 765b5c80475SFelix Fietkau struct ath_hw *ah = sc->sc_ah; 766b5c80475SFelix Fietkau struct ath_common *common = ath9k_hw_common(ah); 767b5c80475SFelix Fietkau struct ath_desc *ds; 768b5c80475SFelix Fietkau struct ath_buf *bf; 769b5c80475SFelix Fietkau int ret; 770203c4805SLuis R. Rodriguez 771203c4805SLuis R. Rodriguez if (list_empty(&sc->rx.rxbuf)) { 772203c4805SLuis R. Rodriguez sc->rx.rxlink = NULL; 773b5c80475SFelix Fietkau return NULL; 774203c4805SLuis R. Rodriguez } 775203c4805SLuis R. Rodriguez 776203c4805SLuis R. Rodriguez bf = list_first_entry(&sc->rx.rxbuf, struct ath_buf, list); 777203c4805SLuis R. Rodriguez ds = bf->bf_desc; 778203c4805SLuis R. Rodriguez 779203c4805SLuis R. Rodriguez /* 780203c4805SLuis R. Rodriguez * Must provide the virtual address of the current 781203c4805SLuis R. Rodriguez * descriptor, the physical address, and the virtual 782203c4805SLuis R. Rodriguez * address of the next descriptor in the h/w chain. 783203c4805SLuis R. Rodriguez * This allows the HAL to look ahead to see if the 784203c4805SLuis R. Rodriguez * hardware is done with a descriptor by checking the 785203c4805SLuis R. Rodriguez * done bit in the following descriptor and the address 786203c4805SLuis R. Rodriguez * of the current descriptor the DMA engine is working 787203c4805SLuis R. Rodriguez * on. All this is necessary because of our use of 788203c4805SLuis R. Rodriguez * a self-linked list to avoid rx overruns. 789203c4805SLuis R. Rodriguez */ 790b5c80475SFelix Fietkau ret = ath9k_hw_rxprocdesc(ah, ds, rs, 0); 791b5c80475SFelix Fietkau if (ret == -EINPROGRESS) { 79229bffa96SFelix Fietkau struct ath_rx_status trs; 793203c4805SLuis R. Rodriguez struct ath_buf *tbf; 794203c4805SLuis R. Rodriguez struct ath_desc *tds; 795203c4805SLuis R. Rodriguez 79629bffa96SFelix Fietkau memset(&trs, 0, sizeof(trs)); 797203c4805SLuis R. Rodriguez if (list_is_last(&bf->list, &sc->rx.rxbuf)) { 798203c4805SLuis R. Rodriguez sc->rx.rxlink = NULL; 799b5c80475SFelix Fietkau return NULL; 800203c4805SLuis R. Rodriguez } 801203c4805SLuis R. Rodriguez 802203c4805SLuis R. Rodriguez tbf = list_entry(bf->list.next, struct ath_buf, list); 803203c4805SLuis R. Rodriguez 804203c4805SLuis R. Rodriguez /* 805203c4805SLuis R. Rodriguez * On some hardware the descriptor status words could 806203c4805SLuis R. Rodriguez * get corrupted, including the done bit. Because of 807203c4805SLuis R. Rodriguez * this, check if the next descriptor's done bit is 808203c4805SLuis R. Rodriguez * set or not. 809203c4805SLuis R. Rodriguez * 810203c4805SLuis R. Rodriguez * If the next descriptor's done bit is set, the current 811203c4805SLuis R. Rodriguez * descriptor has been corrupted. Force s/w to discard 812203c4805SLuis R. Rodriguez * this descriptor and continue... 813203c4805SLuis R. Rodriguez */ 814203c4805SLuis R. Rodriguez 815203c4805SLuis R. Rodriguez tds = tbf->bf_desc; 816b5c80475SFelix Fietkau ret = ath9k_hw_rxprocdesc(ah, tds, &trs, 0); 817b5c80475SFelix Fietkau if (ret == -EINPROGRESS) 818b5c80475SFelix Fietkau return NULL; 819203c4805SLuis R. Rodriguez } 820203c4805SLuis R. Rodriguez 821b5c80475SFelix Fietkau if (!bf->bf_mpdu) 822b5c80475SFelix Fietkau return bf; 823203c4805SLuis R. Rodriguez 824203c4805SLuis R. Rodriguez /* 825203c4805SLuis R. Rodriguez * Synchronize the DMA transfer with CPU before 826203c4805SLuis R. Rodriguez * 1. accessing the frame 827203c4805SLuis R. Rodriguez * 2. requeueing the same buffer to h/w 828203c4805SLuis R. Rodriguez */ 829ce9426d1SMing Lei dma_sync_single_for_cpu(sc->dev, bf->bf_buf_addr, 830cc861f74SLuis R. Rodriguez common->rx_bufsize, 831203c4805SLuis R. Rodriguez DMA_FROM_DEVICE); 832203c4805SLuis R. Rodriguez 833b5c80475SFelix Fietkau return bf; 834b5c80475SFelix Fietkau } 835b5c80475SFelix Fietkau 836d435700fSSujith /* Assumes you've already done the endian to CPU conversion */ 837d435700fSSujith static bool ath9k_rx_accept(struct ath_common *common, 8389f167f64SVasanthakumar Thiagarajan struct ieee80211_hdr *hdr, 839d435700fSSujith struct ieee80211_rx_status *rxs, 840d435700fSSujith struct ath_rx_status *rx_stats, 841d435700fSSujith bool *decrypt_error) 842d435700fSSujith { 843d435700fSSujith struct ath_hw *ah = common->ah; 844d435700fSSujith __le16 fc; 845b7b1b512SVasanthakumar Thiagarajan u8 rx_status_len = ah->caps.rx_status_len; 846d435700fSSujith 847d435700fSSujith fc = hdr->frame_control; 848d435700fSSujith 849d435700fSSujith if (!rx_stats->rs_datalen) 850d435700fSSujith return false; 851d435700fSSujith /* 852d435700fSSujith * rs_status follows rs_datalen so if rs_datalen is too large 853d435700fSSujith * we can take a hint that hardware corrupted it, so ignore 854d435700fSSujith * those frames. 855d435700fSSujith */ 856b7b1b512SVasanthakumar Thiagarajan if (rx_stats->rs_datalen > (common->rx_bufsize - rx_status_len)) 857d435700fSSujith return false; 858d435700fSSujith 859d435700fSSujith /* 860d435700fSSujith * rs_more indicates chained descriptors which can be used 861d435700fSSujith * to link buffers together for a sort of scatter-gather 862d435700fSSujith * operation. 863d435700fSSujith * reject the frame, we don't support scatter-gather yet and 864d435700fSSujith * the frame is probably corrupt anyway 865d435700fSSujith */ 866d435700fSSujith if (rx_stats->rs_more) 867d435700fSSujith return false; 868d435700fSSujith 869d435700fSSujith /* 870d435700fSSujith * The rx_stats->rs_status will not be set until the end of the 871d435700fSSujith * chained descriptors so it can be ignored if rs_more is set. The 872d435700fSSujith * rs_more will be false at the last element of the chained 873d435700fSSujith * descriptors. 874d435700fSSujith */ 875d435700fSSujith if (rx_stats->rs_status != 0) { 876d435700fSSujith if (rx_stats->rs_status & ATH9K_RXERR_CRC) 877d435700fSSujith rxs->flag |= RX_FLAG_FAILED_FCS_CRC; 878d435700fSSujith if (rx_stats->rs_status & ATH9K_RXERR_PHY) 879d435700fSSujith return false; 880d435700fSSujith 881d435700fSSujith if (rx_stats->rs_status & ATH9K_RXERR_DECRYPT) { 882d435700fSSujith *decrypt_error = true; 883d435700fSSujith } else if (rx_stats->rs_status & ATH9K_RXERR_MIC) { 884d435700fSSujith /* 88556363ddeSFelix Fietkau * The MIC error bit is only valid if the frame 88656363ddeSFelix Fietkau * is not a control frame or fragment, and it was 88756363ddeSFelix Fietkau * decrypted using a valid TKIP key. 888d435700fSSujith */ 88956363ddeSFelix Fietkau if (!ieee80211_is_ctl(fc) && 89056363ddeSFelix Fietkau !ieee80211_has_morefrags(fc) && 89156363ddeSFelix Fietkau !(le16_to_cpu(hdr->seq_ctrl) & IEEE80211_SCTL_FRAG) && 89256363ddeSFelix Fietkau test_bit(rx_stats->rs_keyix, common->tkip_keymap)) 893d435700fSSujith rxs->flag |= RX_FLAG_MMIC_ERROR; 89456363ddeSFelix Fietkau else 89556363ddeSFelix Fietkau rx_stats->rs_status &= ~ATH9K_RXERR_MIC; 896d435700fSSujith } 897d435700fSSujith /* 898d435700fSSujith * Reject error frames with the exception of 899d435700fSSujith * decryption and MIC failures. For monitor mode, 900d435700fSSujith * we also ignore the CRC error. 901d435700fSSujith */ 902d435700fSSujith if (ah->opmode == NL80211_IFTYPE_MONITOR) { 903d435700fSSujith if (rx_stats->rs_status & 904d435700fSSujith ~(ATH9K_RXERR_DECRYPT | ATH9K_RXERR_MIC | 905d435700fSSujith ATH9K_RXERR_CRC)) 906d435700fSSujith return false; 907d435700fSSujith } else { 908d435700fSSujith if (rx_stats->rs_status & 909d435700fSSujith ~(ATH9K_RXERR_DECRYPT | ATH9K_RXERR_MIC)) { 910d435700fSSujith return false; 911d435700fSSujith } 912d435700fSSujith } 913d435700fSSujith } 914d435700fSSujith return true; 915d435700fSSujith } 916d435700fSSujith 917d435700fSSujith static int ath9k_process_rate(struct ath_common *common, 918d435700fSSujith struct ieee80211_hw *hw, 919d435700fSSujith struct ath_rx_status *rx_stats, 9209f167f64SVasanthakumar Thiagarajan struct ieee80211_rx_status *rxs) 921d435700fSSujith { 922d435700fSSujith struct ieee80211_supported_band *sband; 923d435700fSSujith enum ieee80211_band band; 924d435700fSSujith unsigned int i = 0; 925d435700fSSujith 926d435700fSSujith band = hw->conf.channel->band; 927d435700fSSujith sband = hw->wiphy->bands[band]; 928d435700fSSujith 929d435700fSSujith if (rx_stats->rs_rate & 0x80) { 930d435700fSSujith /* HT rate */ 931d435700fSSujith rxs->flag |= RX_FLAG_HT; 932d435700fSSujith if (rx_stats->rs_flags & ATH9K_RX_2040) 933d435700fSSujith rxs->flag |= RX_FLAG_40MHZ; 934d435700fSSujith if (rx_stats->rs_flags & ATH9K_RX_GI) 935d435700fSSujith rxs->flag |= RX_FLAG_SHORT_GI; 936d435700fSSujith rxs->rate_idx = rx_stats->rs_rate & 0x7f; 937d435700fSSujith return 0; 938d435700fSSujith } 939d435700fSSujith 940d435700fSSujith for (i = 0; i < sband->n_bitrates; i++) { 941d435700fSSujith if (sband->bitrates[i].hw_value == rx_stats->rs_rate) { 942d435700fSSujith rxs->rate_idx = i; 943d435700fSSujith return 0; 944d435700fSSujith } 945d435700fSSujith if (sband->bitrates[i].hw_value_short == rx_stats->rs_rate) { 946d435700fSSujith rxs->flag |= RX_FLAG_SHORTPRE; 947d435700fSSujith rxs->rate_idx = i; 948d435700fSSujith return 0; 949d435700fSSujith } 950d435700fSSujith } 951d435700fSSujith 952d435700fSSujith /* 953d435700fSSujith * No valid hardware bitrate found -- we should not get here 954d435700fSSujith * because hardware has already validated this frame as OK. 955d435700fSSujith */ 956d435700fSSujith ath_print(common, ATH_DBG_XMIT, "unsupported hw bitrate detected " 957d435700fSSujith "0x%02x using 1 Mbit\n", rx_stats->rs_rate); 958d435700fSSujith 959d435700fSSujith return -EINVAL; 960d435700fSSujith } 961d435700fSSujith 962d435700fSSujith static void ath9k_process_rssi(struct ath_common *common, 963d435700fSSujith struct ieee80211_hw *hw, 9649f167f64SVasanthakumar Thiagarajan struct ieee80211_hdr *hdr, 965d435700fSSujith struct ath_rx_status *rx_stats) 966d435700fSSujith { 967d435700fSSujith struct ath_hw *ah = common->ah; 968d435700fSSujith struct ieee80211_sta *sta; 969d435700fSSujith struct ath_node *an; 970d435700fSSujith int last_rssi = ATH_RSSI_DUMMY_MARKER; 971d435700fSSujith __le16 fc; 972d435700fSSujith 973d435700fSSujith fc = hdr->frame_control; 974d435700fSSujith 975d435700fSSujith rcu_read_lock(); 976d435700fSSujith /* 977d435700fSSujith * XXX: use ieee80211_find_sta! This requires quite a bit of work 978d435700fSSujith * under the current ath9k virtual wiphy implementation as we have 979d435700fSSujith * no way of tying a vif to wiphy. Typically vifs are attached to 980d435700fSSujith * at least one sdata of a wiphy on mac80211 but with ath9k virtual 981d435700fSSujith * wiphy you'd have to iterate over every wiphy and each sdata. 982d435700fSSujith */ 983686b9cb9SBen Greear if (is_multicast_ether_addr(hdr->addr1)) 984686b9cb9SBen Greear sta = ieee80211_find_sta_by_ifaddr(hw, hdr->addr2, NULL); 985686b9cb9SBen Greear else 986686b9cb9SBen Greear sta = ieee80211_find_sta_by_ifaddr(hw, hdr->addr2, hdr->addr1); 987686b9cb9SBen Greear 988d435700fSSujith if (sta) { 989d435700fSSujith an = (struct ath_node *) sta->drv_priv; 990d435700fSSujith if (rx_stats->rs_rssi != ATH9K_RSSI_BAD && 991d435700fSSujith !rx_stats->rs_moreaggr) 992d435700fSSujith ATH_RSSI_LPF(an->last_rssi, rx_stats->rs_rssi); 993d435700fSSujith last_rssi = an->last_rssi; 994d435700fSSujith } 995d435700fSSujith rcu_read_unlock(); 996d435700fSSujith 997d435700fSSujith if (likely(last_rssi != ATH_RSSI_DUMMY_MARKER)) 998d435700fSSujith rx_stats->rs_rssi = ATH_EP_RND(last_rssi, 999d435700fSSujith ATH_RSSI_EP_MULTIPLIER); 1000d435700fSSujith if (rx_stats->rs_rssi < 0) 1001d435700fSSujith rx_stats->rs_rssi = 0; 1002d435700fSSujith 1003d435700fSSujith /* Update Beacon RSSI, this is used by ANI. */ 1004d435700fSSujith if (ieee80211_is_beacon(fc)) 1005d435700fSSujith ah->stats.avgbrssi = rx_stats->rs_rssi; 1006d435700fSSujith } 1007d435700fSSujith 1008d435700fSSujith /* 1009d435700fSSujith * For Decrypt or Demic errors, we only mark packet status here and always push 1010d435700fSSujith * up the frame up to let mac80211 handle the actual error case, be it no 1011d435700fSSujith * decryption key or real decryption error. This let us keep statistics there. 1012d435700fSSujith */ 1013d435700fSSujith static int ath9k_rx_skb_preprocess(struct ath_common *common, 1014d435700fSSujith struct ieee80211_hw *hw, 10159f167f64SVasanthakumar Thiagarajan struct ieee80211_hdr *hdr, 1016d435700fSSujith struct ath_rx_status *rx_stats, 1017d435700fSSujith struct ieee80211_rx_status *rx_status, 1018d435700fSSujith bool *decrypt_error) 1019d435700fSSujith { 1020d435700fSSujith memset(rx_status, 0, sizeof(struct ieee80211_rx_status)); 1021d435700fSSujith 1022d435700fSSujith /* 1023d435700fSSujith * everything but the rate is checked here, the rate check is done 1024d435700fSSujith * separately to avoid doing two lookups for a rate for each frame. 1025d435700fSSujith */ 10269f167f64SVasanthakumar Thiagarajan if (!ath9k_rx_accept(common, hdr, rx_status, rx_stats, decrypt_error)) 1027d435700fSSujith return -EINVAL; 1028d435700fSSujith 10299f167f64SVasanthakumar Thiagarajan ath9k_process_rssi(common, hw, hdr, rx_stats); 1030d435700fSSujith 10319f167f64SVasanthakumar Thiagarajan if (ath9k_process_rate(common, hw, rx_stats, rx_status)) 1032d435700fSSujith return -EINVAL; 1033d435700fSSujith 1034d435700fSSujith rx_status->band = hw->conf.channel->band; 1035d435700fSSujith rx_status->freq = hw->conf.channel->center_freq; 1036d435700fSSujith rx_status->signal = ATH_DEFAULT_NOISE_FLOOR + rx_stats->rs_rssi; 1037d435700fSSujith rx_status->antenna = rx_stats->rs_antenna; 1038d435700fSSujith rx_status->flag |= RX_FLAG_TSFT; 1039d435700fSSujith 1040d435700fSSujith return 0; 1041d435700fSSujith } 1042d435700fSSujith 1043d435700fSSujith static void ath9k_rx_skb_postprocess(struct ath_common *common, 1044d435700fSSujith struct sk_buff *skb, 1045d435700fSSujith struct ath_rx_status *rx_stats, 1046d435700fSSujith struct ieee80211_rx_status *rxs, 1047d435700fSSujith bool decrypt_error) 1048d435700fSSujith { 1049d435700fSSujith struct ath_hw *ah = common->ah; 1050d435700fSSujith struct ieee80211_hdr *hdr; 1051d435700fSSujith int hdrlen, padpos, padsize; 1052d435700fSSujith u8 keyix; 1053d435700fSSujith __le16 fc; 1054d435700fSSujith 1055d435700fSSujith /* see if any padding is done by the hw and remove it */ 1056d435700fSSujith hdr = (struct ieee80211_hdr *) skb->data; 1057d435700fSSujith hdrlen = ieee80211_get_hdrlen_from_skb(skb); 1058d435700fSSujith fc = hdr->frame_control; 1059d435700fSSujith padpos = ath9k_cmn_padpos(hdr->frame_control); 1060d435700fSSujith 1061d435700fSSujith /* The MAC header is padded to have 32-bit boundary if the 1062d435700fSSujith * packet payload is non-zero. The general calculation for 1063d435700fSSujith * padsize would take into account odd header lengths: 1064d435700fSSujith * padsize = (4 - padpos % 4) % 4; However, since only 1065d435700fSSujith * even-length headers are used, padding can only be 0 or 2 1066d435700fSSujith * bytes and we can optimize this a bit. In addition, we must 1067d435700fSSujith * not try to remove padding from short control frames that do 1068d435700fSSujith * not have payload. */ 1069d435700fSSujith padsize = padpos & 3; 1070d435700fSSujith if (padsize && skb->len>=padpos+padsize+FCS_LEN) { 1071d435700fSSujith memmove(skb->data + padsize, skb->data, padpos); 1072d435700fSSujith skb_pull(skb, padsize); 1073d435700fSSujith } 1074d435700fSSujith 1075d435700fSSujith keyix = rx_stats->rs_keyix; 1076d435700fSSujith 1077d435700fSSujith if (!(keyix == ATH9K_RXKEYIX_INVALID) && !decrypt_error && 1078d435700fSSujith ieee80211_has_protected(fc)) { 1079d435700fSSujith rxs->flag |= RX_FLAG_DECRYPTED; 1080d435700fSSujith } else if (ieee80211_has_protected(fc) 1081d435700fSSujith && !decrypt_error && skb->len >= hdrlen + 4) { 1082d435700fSSujith keyix = skb->data[hdrlen + 3] >> 6; 1083d435700fSSujith 1084d435700fSSujith if (test_bit(keyix, common->keymap)) 1085d435700fSSujith rxs->flag |= RX_FLAG_DECRYPTED; 1086d435700fSSujith } 1087d435700fSSujith if (ah->sw_mgmt_crypto && 1088d435700fSSujith (rxs->flag & RX_FLAG_DECRYPTED) && 1089d435700fSSujith ieee80211_is_mgmt(fc)) 1090d435700fSSujith /* Use software decrypt for management frames. */ 1091d435700fSSujith rxs->flag &= ~RX_FLAG_DECRYPTED; 1092d435700fSSujith } 1093b5c80475SFelix Fietkau 1094102885a5SVasanthakumar Thiagarajan static void ath_lnaconf_alt_good_scan(struct ath_ant_comb *antcomb, 1095102885a5SVasanthakumar Thiagarajan struct ath_hw_antcomb_conf ant_conf, 1096102885a5SVasanthakumar Thiagarajan int main_rssi_avg) 1097102885a5SVasanthakumar Thiagarajan { 1098102885a5SVasanthakumar Thiagarajan antcomb->quick_scan_cnt = 0; 1099102885a5SVasanthakumar Thiagarajan 1100102885a5SVasanthakumar Thiagarajan if (ant_conf.main_lna_conf == ATH_ANT_DIV_COMB_LNA2) 1101102885a5SVasanthakumar Thiagarajan antcomb->rssi_lna2 = main_rssi_avg; 1102102885a5SVasanthakumar Thiagarajan else if (ant_conf.main_lna_conf == ATH_ANT_DIV_COMB_LNA1) 1103102885a5SVasanthakumar Thiagarajan antcomb->rssi_lna1 = main_rssi_avg; 1104102885a5SVasanthakumar Thiagarajan 1105102885a5SVasanthakumar Thiagarajan switch ((ant_conf.main_lna_conf << 4) | ant_conf.alt_lna_conf) { 1106102885a5SVasanthakumar Thiagarajan case (0x10): /* LNA2 A-B */ 1107102885a5SVasanthakumar Thiagarajan antcomb->main_conf = ATH_ANT_DIV_COMB_LNA1_MINUS_LNA2; 1108102885a5SVasanthakumar Thiagarajan antcomb->first_quick_scan_conf = 1109102885a5SVasanthakumar Thiagarajan ATH_ANT_DIV_COMB_LNA1_PLUS_LNA2; 1110102885a5SVasanthakumar Thiagarajan antcomb->second_quick_scan_conf = ATH_ANT_DIV_COMB_LNA1; 1111102885a5SVasanthakumar Thiagarajan break; 1112102885a5SVasanthakumar Thiagarajan case (0x20): /* LNA1 A-B */ 1113102885a5SVasanthakumar Thiagarajan antcomb->main_conf = ATH_ANT_DIV_COMB_LNA1_MINUS_LNA2; 1114102885a5SVasanthakumar Thiagarajan antcomb->first_quick_scan_conf = 1115102885a5SVasanthakumar Thiagarajan ATH_ANT_DIV_COMB_LNA1_PLUS_LNA2; 1116102885a5SVasanthakumar Thiagarajan antcomb->second_quick_scan_conf = ATH_ANT_DIV_COMB_LNA2; 1117102885a5SVasanthakumar Thiagarajan break; 1118102885a5SVasanthakumar Thiagarajan case (0x21): /* LNA1 LNA2 */ 1119102885a5SVasanthakumar Thiagarajan antcomb->main_conf = ATH_ANT_DIV_COMB_LNA2; 1120102885a5SVasanthakumar Thiagarajan antcomb->first_quick_scan_conf = 1121102885a5SVasanthakumar Thiagarajan ATH_ANT_DIV_COMB_LNA1_MINUS_LNA2; 1122102885a5SVasanthakumar Thiagarajan antcomb->second_quick_scan_conf = 1123102885a5SVasanthakumar Thiagarajan ATH_ANT_DIV_COMB_LNA1_PLUS_LNA2; 1124102885a5SVasanthakumar Thiagarajan break; 1125102885a5SVasanthakumar Thiagarajan case (0x12): /* LNA2 LNA1 */ 1126102885a5SVasanthakumar Thiagarajan antcomb->main_conf = ATH_ANT_DIV_COMB_LNA1; 1127102885a5SVasanthakumar Thiagarajan antcomb->first_quick_scan_conf = 1128102885a5SVasanthakumar Thiagarajan ATH_ANT_DIV_COMB_LNA1_MINUS_LNA2; 1129102885a5SVasanthakumar Thiagarajan antcomb->second_quick_scan_conf = 1130102885a5SVasanthakumar Thiagarajan ATH_ANT_DIV_COMB_LNA1_PLUS_LNA2; 1131102885a5SVasanthakumar Thiagarajan break; 1132102885a5SVasanthakumar Thiagarajan case (0x13): /* LNA2 A+B */ 1133102885a5SVasanthakumar Thiagarajan antcomb->main_conf = ATH_ANT_DIV_COMB_LNA1_PLUS_LNA2; 1134102885a5SVasanthakumar Thiagarajan antcomb->first_quick_scan_conf = 1135102885a5SVasanthakumar Thiagarajan ATH_ANT_DIV_COMB_LNA1_MINUS_LNA2; 1136102885a5SVasanthakumar Thiagarajan antcomb->second_quick_scan_conf = ATH_ANT_DIV_COMB_LNA1; 1137102885a5SVasanthakumar Thiagarajan break; 1138102885a5SVasanthakumar Thiagarajan case (0x23): /* LNA1 A+B */ 1139102885a5SVasanthakumar Thiagarajan antcomb->main_conf = ATH_ANT_DIV_COMB_LNA1_PLUS_LNA2; 1140102885a5SVasanthakumar Thiagarajan antcomb->first_quick_scan_conf = 1141102885a5SVasanthakumar Thiagarajan ATH_ANT_DIV_COMB_LNA1_MINUS_LNA2; 1142102885a5SVasanthakumar Thiagarajan antcomb->second_quick_scan_conf = ATH_ANT_DIV_COMB_LNA2; 1143102885a5SVasanthakumar Thiagarajan break; 1144102885a5SVasanthakumar Thiagarajan default: 1145102885a5SVasanthakumar Thiagarajan break; 1146102885a5SVasanthakumar Thiagarajan } 1147102885a5SVasanthakumar Thiagarajan } 1148102885a5SVasanthakumar Thiagarajan 1149102885a5SVasanthakumar Thiagarajan static void ath_select_ant_div_from_quick_scan(struct ath_ant_comb *antcomb, 1150102885a5SVasanthakumar Thiagarajan struct ath_hw_antcomb_conf *div_ant_conf, 1151102885a5SVasanthakumar Thiagarajan int main_rssi_avg, int alt_rssi_avg, 1152102885a5SVasanthakumar Thiagarajan int alt_ratio) 1153102885a5SVasanthakumar Thiagarajan { 1154102885a5SVasanthakumar Thiagarajan /* alt_good */ 1155102885a5SVasanthakumar Thiagarajan switch (antcomb->quick_scan_cnt) { 1156102885a5SVasanthakumar Thiagarajan case 0: 1157102885a5SVasanthakumar Thiagarajan /* set alt to main, and alt to first conf */ 1158102885a5SVasanthakumar Thiagarajan div_ant_conf->main_lna_conf = antcomb->main_conf; 1159102885a5SVasanthakumar Thiagarajan div_ant_conf->alt_lna_conf = antcomb->first_quick_scan_conf; 1160102885a5SVasanthakumar Thiagarajan break; 1161102885a5SVasanthakumar Thiagarajan case 1: 1162102885a5SVasanthakumar Thiagarajan /* set alt to main, and alt to first conf */ 1163102885a5SVasanthakumar Thiagarajan div_ant_conf->main_lna_conf = antcomb->main_conf; 1164102885a5SVasanthakumar Thiagarajan div_ant_conf->alt_lna_conf = antcomb->second_quick_scan_conf; 1165102885a5SVasanthakumar Thiagarajan antcomb->rssi_first = main_rssi_avg; 1166102885a5SVasanthakumar Thiagarajan antcomb->rssi_second = alt_rssi_avg; 1167102885a5SVasanthakumar Thiagarajan 1168102885a5SVasanthakumar Thiagarajan if (antcomb->main_conf == ATH_ANT_DIV_COMB_LNA1) { 1169102885a5SVasanthakumar Thiagarajan /* main is LNA1 */ 1170102885a5SVasanthakumar Thiagarajan if (ath_is_alt_ant_ratio_better(alt_ratio, 1171102885a5SVasanthakumar Thiagarajan ATH_ANT_DIV_COMB_LNA1_DELTA_HI, 1172102885a5SVasanthakumar Thiagarajan ATH_ANT_DIV_COMB_LNA1_DELTA_LOW, 1173102885a5SVasanthakumar Thiagarajan main_rssi_avg, alt_rssi_avg, 1174102885a5SVasanthakumar Thiagarajan antcomb->total_pkt_count)) 1175102885a5SVasanthakumar Thiagarajan antcomb->first_ratio = true; 1176102885a5SVasanthakumar Thiagarajan else 1177102885a5SVasanthakumar Thiagarajan antcomb->first_ratio = false; 1178102885a5SVasanthakumar Thiagarajan } else if (antcomb->main_conf == ATH_ANT_DIV_COMB_LNA2) { 1179102885a5SVasanthakumar Thiagarajan if (ath_is_alt_ant_ratio_better(alt_ratio, 1180102885a5SVasanthakumar Thiagarajan ATH_ANT_DIV_COMB_LNA1_DELTA_MID, 1181102885a5SVasanthakumar Thiagarajan ATH_ANT_DIV_COMB_LNA1_DELTA_LOW, 1182102885a5SVasanthakumar Thiagarajan main_rssi_avg, alt_rssi_avg, 1183102885a5SVasanthakumar Thiagarajan antcomb->total_pkt_count)) 1184102885a5SVasanthakumar Thiagarajan antcomb->first_ratio = true; 1185102885a5SVasanthakumar Thiagarajan else 1186102885a5SVasanthakumar Thiagarajan antcomb->first_ratio = false; 1187102885a5SVasanthakumar Thiagarajan } else { 1188102885a5SVasanthakumar Thiagarajan if ((((alt_ratio >= ATH_ANT_DIV_COMB_ALT_ANT_RATIO2) && 1189102885a5SVasanthakumar Thiagarajan (alt_rssi_avg > main_rssi_avg + 1190102885a5SVasanthakumar Thiagarajan ATH_ANT_DIV_COMB_LNA1_DELTA_HI)) || 1191102885a5SVasanthakumar Thiagarajan (alt_rssi_avg > main_rssi_avg)) && 1192102885a5SVasanthakumar Thiagarajan (antcomb->total_pkt_count > 50)) 1193102885a5SVasanthakumar Thiagarajan antcomb->first_ratio = true; 1194102885a5SVasanthakumar Thiagarajan else 1195102885a5SVasanthakumar Thiagarajan antcomb->first_ratio = false; 1196102885a5SVasanthakumar Thiagarajan } 1197102885a5SVasanthakumar Thiagarajan break; 1198102885a5SVasanthakumar Thiagarajan case 2: 1199102885a5SVasanthakumar Thiagarajan antcomb->alt_good = false; 1200102885a5SVasanthakumar Thiagarajan antcomb->scan_not_start = false; 1201102885a5SVasanthakumar Thiagarajan antcomb->scan = false; 1202102885a5SVasanthakumar Thiagarajan antcomb->rssi_first = main_rssi_avg; 1203102885a5SVasanthakumar Thiagarajan antcomb->rssi_third = alt_rssi_avg; 1204102885a5SVasanthakumar Thiagarajan 1205102885a5SVasanthakumar Thiagarajan if (antcomb->second_quick_scan_conf == ATH_ANT_DIV_COMB_LNA1) 1206102885a5SVasanthakumar Thiagarajan antcomb->rssi_lna1 = alt_rssi_avg; 1207102885a5SVasanthakumar Thiagarajan else if (antcomb->second_quick_scan_conf == 1208102885a5SVasanthakumar Thiagarajan ATH_ANT_DIV_COMB_LNA2) 1209102885a5SVasanthakumar Thiagarajan antcomb->rssi_lna2 = alt_rssi_avg; 1210102885a5SVasanthakumar Thiagarajan else if (antcomb->second_quick_scan_conf == 1211102885a5SVasanthakumar Thiagarajan ATH_ANT_DIV_COMB_LNA1_PLUS_LNA2) { 1212102885a5SVasanthakumar Thiagarajan if (antcomb->main_conf == ATH_ANT_DIV_COMB_LNA2) 1213102885a5SVasanthakumar Thiagarajan antcomb->rssi_lna2 = main_rssi_avg; 1214102885a5SVasanthakumar Thiagarajan else if (antcomb->main_conf == ATH_ANT_DIV_COMB_LNA1) 1215102885a5SVasanthakumar Thiagarajan antcomb->rssi_lna1 = main_rssi_avg; 1216102885a5SVasanthakumar Thiagarajan } 1217102885a5SVasanthakumar Thiagarajan 1218102885a5SVasanthakumar Thiagarajan if (antcomb->rssi_lna2 > antcomb->rssi_lna1 + 1219102885a5SVasanthakumar Thiagarajan ATH_ANT_DIV_COMB_LNA1_LNA2_SWITCH_DELTA) 1220102885a5SVasanthakumar Thiagarajan div_ant_conf->main_lna_conf = ATH_ANT_DIV_COMB_LNA2; 1221102885a5SVasanthakumar Thiagarajan else 1222102885a5SVasanthakumar Thiagarajan div_ant_conf->main_lna_conf = ATH_ANT_DIV_COMB_LNA1; 1223102885a5SVasanthakumar Thiagarajan 1224102885a5SVasanthakumar Thiagarajan if (antcomb->main_conf == ATH_ANT_DIV_COMB_LNA1) { 1225102885a5SVasanthakumar Thiagarajan if (ath_is_alt_ant_ratio_better(alt_ratio, 1226102885a5SVasanthakumar Thiagarajan ATH_ANT_DIV_COMB_LNA1_DELTA_HI, 1227102885a5SVasanthakumar Thiagarajan ATH_ANT_DIV_COMB_LNA1_DELTA_LOW, 1228102885a5SVasanthakumar Thiagarajan main_rssi_avg, alt_rssi_avg, 1229102885a5SVasanthakumar Thiagarajan antcomb->total_pkt_count)) 1230102885a5SVasanthakumar Thiagarajan antcomb->second_ratio = true; 1231102885a5SVasanthakumar Thiagarajan else 1232102885a5SVasanthakumar Thiagarajan antcomb->second_ratio = false; 1233102885a5SVasanthakumar Thiagarajan } else if (antcomb->main_conf == ATH_ANT_DIV_COMB_LNA2) { 1234102885a5SVasanthakumar Thiagarajan if (ath_is_alt_ant_ratio_better(alt_ratio, 1235102885a5SVasanthakumar Thiagarajan ATH_ANT_DIV_COMB_LNA1_DELTA_MID, 1236102885a5SVasanthakumar Thiagarajan ATH_ANT_DIV_COMB_LNA1_DELTA_LOW, 1237102885a5SVasanthakumar Thiagarajan main_rssi_avg, alt_rssi_avg, 1238102885a5SVasanthakumar Thiagarajan antcomb->total_pkt_count)) 1239102885a5SVasanthakumar Thiagarajan antcomb->second_ratio = true; 1240102885a5SVasanthakumar Thiagarajan else 1241102885a5SVasanthakumar Thiagarajan antcomb->second_ratio = false; 1242102885a5SVasanthakumar Thiagarajan } else { 1243102885a5SVasanthakumar Thiagarajan if ((((alt_ratio >= ATH_ANT_DIV_COMB_ALT_ANT_RATIO2) && 1244102885a5SVasanthakumar Thiagarajan (alt_rssi_avg > main_rssi_avg + 1245102885a5SVasanthakumar Thiagarajan ATH_ANT_DIV_COMB_LNA1_DELTA_HI)) || 1246102885a5SVasanthakumar Thiagarajan (alt_rssi_avg > main_rssi_avg)) && 1247102885a5SVasanthakumar Thiagarajan (antcomb->total_pkt_count > 50)) 1248102885a5SVasanthakumar Thiagarajan antcomb->second_ratio = true; 1249102885a5SVasanthakumar Thiagarajan else 1250102885a5SVasanthakumar Thiagarajan antcomb->second_ratio = false; 1251102885a5SVasanthakumar Thiagarajan } 1252102885a5SVasanthakumar Thiagarajan 1253102885a5SVasanthakumar Thiagarajan /* set alt to the conf with maximun ratio */ 1254102885a5SVasanthakumar Thiagarajan if (antcomb->first_ratio && antcomb->second_ratio) { 1255102885a5SVasanthakumar Thiagarajan if (antcomb->rssi_second > antcomb->rssi_third) { 1256102885a5SVasanthakumar Thiagarajan /* first alt*/ 1257102885a5SVasanthakumar Thiagarajan if ((antcomb->first_quick_scan_conf == 1258102885a5SVasanthakumar Thiagarajan ATH_ANT_DIV_COMB_LNA1) || 1259102885a5SVasanthakumar Thiagarajan (antcomb->first_quick_scan_conf == 1260102885a5SVasanthakumar Thiagarajan ATH_ANT_DIV_COMB_LNA2)) 1261102885a5SVasanthakumar Thiagarajan /* Set alt LNA1 or LNA2*/ 1262102885a5SVasanthakumar Thiagarajan if (div_ant_conf->main_lna_conf == 1263102885a5SVasanthakumar Thiagarajan ATH_ANT_DIV_COMB_LNA2) 1264102885a5SVasanthakumar Thiagarajan div_ant_conf->alt_lna_conf = 1265102885a5SVasanthakumar Thiagarajan ATH_ANT_DIV_COMB_LNA1; 1266102885a5SVasanthakumar Thiagarajan else 1267102885a5SVasanthakumar Thiagarajan div_ant_conf->alt_lna_conf = 1268102885a5SVasanthakumar Thiagarajan ATH_ANT_DIV_COMB_LNA2; 1269102885a5SVasanthakumar Thiagarajan else 1270102885a5SVasanthakumar Thiagarajan /* Set alt to A+B or A-B */ 1271102885a5SVasanthakumar Thiagarajan div_ant_conf->alt_lna_conf = 1272102885a5SVasanthakumar Thiagarajan antcomb->first_quick_scan_conf; 1273102885a5SVasanthakumar Thiagarajan } else if ((antcomb->second_quick_scan_conf == 1274102885a5SVasanthakumar Thiagarajan ATH_ANT_DIV_COMB_LNA1) || 1275102885a5SVasanthakumar Thiagarajan (antcomb->second_quick_scan_conf == 1276102885a5SVasanthakumar Thiagarajan ATH_ANT_DIV_COMB_LNA2)) { 1277102885a5SVasanthakumar Thiagarajan /* Set alt LNA1 or LNA2 */ 1278102885a5SVasanthakumar Thiagarajan if (div_ant_conf->main_lna_conf == 1279102885a5SVasanthakumar Thiagarajan ATH_ANT_DIV_COMB_LNA2) 1280102885a5SVasanthakumar Thiagarajan div_ant_conf->alt_lna_conf = 1281102885a5SVasanthakumar Thiagarajan ATH_ANT_DIV_COMB_LNA1; 1282102885a5SVasanthakumar Thiagarajan else 1283102885a5SVasanthakumar Thiagarajan div_ant_conf->alt_lna_conf = 1284102885a5SVasanthakumar Thiagarajan ATH_ANT_DIV_COMB_LNA2; 1285102885a5SVasanthakumar Thiagarajan } else { 1286102885a5SVasanthakumar Thiagarajan /* Set alt to A+B or A-B */ 1287102885a5SVasanthakumar Thiagarajan div_ant_conf->alt_lna_conf = 1288102885a5SVasanthakumar Thiagarajan antcomb->second_quick_scan_conf; 1289102885a5SVasanthakumar Thiagarajan } 1290102885a5SVasanthakumar Thiagarajan } else if (antcomb->first_ratio) { 1291102885a5SVasanthakumar Thiagarajan /* first alt */ 1292102885a5SVasanthakumar Thiagarajan if ((antcomb->first_quick_scan_conf == 1293102885a5SVasanthakumar Thiagarajan ATH_ANT_DIV_COMB_LNA1) || 1294102885a5SVasanthakumar Thiagarajan (antcomb->first_quick_scan_conf == 1295102885a5SVasanthakumar Thiagarajan ATH_ANT_DIV_COMB_LNA2)) 1296102885a5SVasanthakumar Thiagarajan /* Set alt LNA1 or LNA2 */ 1297102885a5SVasanthakumar Thiagarajan if (div_ant_conf->main_lna_conf == 1298102885a5SVasanthakumar Thiagarajan ATH_ANT_DIV_COMB_LNA2) 1299102885a5SVasanthakumar Thiagarajan div_ant_conf->alt_lna_conf = 1300102885a5SVasanthakumar Thiagarajan ATH_ANT_DIV_COMB_LNA1; 1301102885a5SVasanthakumar Thiagarajan else 1302102885a5SVasanthakumar Thiagarajan div_ant_conf->alt_lna_conf = 1303102885a5SVasanthakumar Thiagarajan ATH_ANT_DIV_COMB_LNA2; 1304102885a5SVasanthakumar Thiagarajan else 1305102885a5SVasanthakumar Thiagarajan /* Set alt to A+B or A-B */ 1306102885a5SVasanthakumar Thiagarajan div_ant_conf->alt_lna_conf = 1307102885a5SVasanthakumar Thiagarajan antcomb->first_quick_scan_conf; 1308102885a5SVasanthakumar Thiagarajan } else if (antcomb->second_ratio) { 1309102885a5SVasanthakumar Thiagarajan /* second alt */ 1310102885a5SVasanthakumar Thiagarajan if ((antcomb->second_quick_scan_conf == 1311102885a5SVasanthakumar Thiagarajan ATH_ANT_DIV_COMB_LNA1) || 1312102885a5SVasanthakumar Thiagarajan (antcomb->second_quick_scan_conf == 1313102885a5SVasanthakumar Thiagarajan ATH_ANT_DIV_COMB_LNA2)) 1314102885a5SVasanthakumar Thiagarajan /* Set alt LNA1 or LNA2 */ 1315102885a5SVasanthakumar Thiagarajan if (div_ant_conf->main_lna_conf == 1316102885a5SVasanthakumar Thiagarajan ATH_ANT_DIV_COMB_LNA2) 1317102885a5SVasanthakumar Thiagarajan div_ant_conf->alt_lna_conf = 1318102885a5SVasanthakumar Thiagarajan ATH_ANT_DIV_COMB_LNA1; 1319102885a5SVasanthakumar Thiagarajan else 1320102885a5SVasanthakumar Thiagarajan div_ant_conf->alt_lna_conf = 1321102885a5SVasanthakumar Thiagarajan ATH_ANT_DIV_COMB_LNA2; 1322102885a5SVasanthakumar Thiagarajan else 1323102885a5SVasanthakumar Thiagarajan /* Set alt to A+B or A-B */ 1324102885a5SVasanthakumar Thiagarajan div_ant_conf->alt_lna_conf = 1325102885a5SVasanthakumar Thiagarajan antcomb->second_quick_scan_conf; 1326102885a5SVasanthakumar Thiagarajan } else { 1327102885a5SVasanthakumar Thiagarajan /* main is largest */ 1328102885a5SVasanthakumar Thiagarajan if ((antcomb->main_conf == ATH_ANT_DIV_COMB_LNA1) || 1329102885a5SVasanthakumar Thiagarajan (antcomb->main_conf == ATH_ANT_DIV_COMB_LNA2)) 1330102885a5SVasanthakumar Thiagarajan /* Set alt LNA1 or LNA2 */ 1331102885a5SVasanthakumar Thiagarajan if (div_ant_conf->main_lna_conf == 1332102885a5SVasanthakumar Thiagarajan ATH_ANT_DIV_COMB_LNA2) 1333102885a5SVasanthakumar Thiagarajan div_ant_conf->alt_lna_conf = 1334102885a5SVasanthakumar Thiagarajan ATH_ANT_DIV_COMB_LNA1; 1335102885a5SVasanthakumar Thiagarajan else 1336102885a5SVasanthakumar Thiagarajan div_ant_conf->alt_lna_conf = 1337102885a5SVasanthakumar Thiagarajan ATH_ANT_DIV_COMB_LNA2; 1338102885a5SVasanthakumar Thiagarajan else 1339102885a5SVasanthakumar Thiagarajan /* Set alt to A+B or A-B */ 1340102885a5SVasanthakumar Thiagarajan div_ant_conf->alt_lna_conf = antcomb->main_conf; 1341102885a5SVasanthakumar Thiagarajan } 1342102885a5SVasanthakumar Thiagarajan break; 1343102885a5SVasanthakumar Thiagarajan default: 1344102885a5SVasanthakumar Thiagarajan break; 1345102885a5SVasanthakumar Thiagarajan } 1346102885a5SVasanthakumar Thiagarajan } 1347102885a5SVasanthakumar Thiagarajan 13489bad82b8SJohn W. Linville static void ath_ant_div_conf_fast_divbias(struct ath_hw_antcomb_conf *ant_conf) 1349102885a5SVasanthakumar Thiagarajan { 1350102885a5SVasanthakumar Thiagarajan /* Adjust the fast_div_bias based on main and alt lna conf */ 1351102885a5SVasanthakumar Thiagarajan switch ((ant_conf->main_lna_conf << 4) | ant_conf->alt_lna_conf) { 1352102885a5SVasanthakumar Thiagarajan case (0x01): /* A-B LNA2 */ 1353102885a5SVasanthakumar Thiagarajan ant_conf->fast_div_bias = 0x3b; 1354102885a5SVasanthakumar Thiagarajan break; 1355102885a5SVasanthakumar Thiagarajan case (0x02): /* A-B LNA1 */ 1356102885a5SVasanthakumar Thiagarajan ant_conf->fast_div_bias = 0x3d; 1357102885a5SVasanthakumar Thiagarajan break; 1358102885a5SVasanthakumar Thiagarajan case (0x03): /* A-B A+B */ 1359102885a5SVasanthakumar Thiagarajan ant_conf->fast_div_bias = 0x1; 1360102885a5SVasanthakumar Thiagarajan break; 1361102885a5SVasanthakumar Thiagarajan case (0x10): /* LNA2 A-B */ 1362102885a5SVasanthakumar Thiagarajan ant_conf->fast_div_bias = 0x7; 1363102885a5SVasanthakumar Thiagarajan break; 1364102885a5SVasanthakumar Thiagarajan case (0x12): /* LNA2 LNA1 */ 1365102885a5SVasanthakumar Thiagarajan ant_conf->fast_div_bias = 0x2; 1366102885a5SVasanthakumar Thiagarajan break; 1367102885a5SVasanthakumar Thiagarajan case (0x13): /* LNA2 A+B */ 1368102885a5SVasanthakumar Thiagarajan ant_conf->fast_div_bias = 0x7; 1369102885a5SVasanthakumar Thiagarajan break; 1370102885a5SVasanthakumar Thiagarajan case (0x20): /* LNA1 A-B */ 1371102885a5SVasanthakumar Thiagarajan ant_conf->fast_div_bias = 0x6; 1372102885a5SVasanthakumar Thiagarajan break; 1373102885a5SVasanthakumar Thiagarajan case (0x21): /* LNA1 LNA2 */ 1374102885a5SVasanthakumar Thiagarajan ant_conf->fast_div_bias = 0x0; 1375102885a5SVasanthakumar Thiagarajan break; 1376102885a5SVasanthakumar Thiagarajan case (0x23): /* LNA1 A+B */ 1377102885a5SVasanthakumar Thiagarajan ant_conf->fast_div_bias = 0x6; 1378102885a5SVasanthakumar Thiagarajan break; 1379102885a5SVasanthakumar Thiagarajan case (0x30): /* A+B A-B */ 1380102885a5SVasanthakumar Thiagarajan ant_conf->fast_div_bias = 0x1; 1381102885a5SVasanthakumar Thiagarajan break; 1382102885a5SVasanthakumar Thiagarajan case (0x31): /* A+B LNA2 */ 1383102885a5SVasanthakumar Thiagarajan ant_conf->fast_div_bias = 0x3b; 1384102885a5SVasanthakumar Thiagarajan break; 1385102885a5SVasanthakumar Thiagarajan case (0x32): /* A+B LNA1 */ 1386102885a5SVasanthakumar Thiagarajan ant_conf->fast_div_bias = 0x3d; 1387102885a5SVasanthakumar Thiagarajan break; 1388102885a5SVasanthakumar Thiagarajan default: 1389102885a5SVasanthakumar Thiagarajan break; 1390102885a5SVasanthakumar Thiagarajan } 1391102885a5SVasanthakumar Thiagarajan } 1392102885a5SVasanthakumar Thiagarajan 1393102885a5SVasanthakumar Thiagarajan /* Antenna diversity and combining */ 1394102885a5SVasanthakumar Thiagarajan static void ath_ant_comb_scan(struct ath_softc *sc, struct ath_rx_status *rs) 1395102885a5SVasanthakumar Thiagarajan { 1396102885a5SVasanthakumar Thiagarajan struct ath_hw_antcomb_conf div_ant_conf; 1397102885a5SVasanthakumar Thiagarajan struct ath_ant_comb *antcomb = &sc->ant_comb; 1398102885a5SVasanthakumar Thiagarajan int alt_ratio = 0, alt_rssi_avg = 0, main_rssi_avg = 0, curr_alt_set; 1399102885a5SVasanthakumar Thiagarajan int curr_main_set, curr_bias; 1400102885a5SVasanthakumar Thiagarajan int main_rssi = rs->rs_rssi_ctl0; 1401102885a5SVasanthakumar Thiagarajan int alt_rssi = rs->rs_rssi_ctl1; 1402102885a5SVasanthakumar Thiagarajan int rx_ant_conf, main_ant_conf; 1403102885a5SVasanthakumar Thiagarajan bool short_scan = false; 1404102885a5SVasanthakumar Thiagarajan 1405102885a5SVasanthakumar Thiagarajan rx_ant_conf = (rs->rs_rssi_ctl2 >> ATH_ANT_RX_CURRENT_SHIFT) & 1406102885a5SVasanthakumar Thiagarajan ATH_ANT_RX_MASK; 1407102885a5SVasanthakumar Thiagarajan main_ant_conf = (rs->rs_rssi_ctl2 >> ATH_ANT_RX_MAIN_SHIFT) & 1408102885a5SVasanthakumar Thiagarajan ATH_ANT_RX_MASK; 1409102885a5SVasanthakumar Thiagarajan 1410102885a5SVasanthakumar Thiagarajan /* Record packet only when alt_rssi is positive */ 1411102885a5SVasanthakumar Thiagarajan if (alt_rssi > 0) { 1412102885a5SVasanthakumar Thiagarajan antcomb->total_pkt_count++; 1413102885a5SVasanthakumar Thiagarajan antcomb->main_total_rssi += main_rssi; 1414102885a5SVasanthakumar Thiagarajan antcomb->alt_total_rssi += alt_rssi; 1415102885a5SVasanthakumar Thiagarajan if (main_ant_conf == rx_ant_conf) 1416102885a5SVasanthakumar Thiagarajan antcomb->main_recv_cnt++; 1417102885a5SVasanthakumar Thiagarajan else 1418102885a5SVasanthakumar Thiagarajan antcomb->alt_recv_cnt++; 1419102885a5SVasanthakumar Thiagarajan } 1420102885a5SVasanthakumar Thiagarajan 1421102885a5SVasanthakumar Thiagarajan /* Short scan check */ 1422102885a5SVasanthakumar Thiagarajan if (antcomb->scan && antcomb->alt_good) { 1423102885a5SVasanthakumar Thiagarajan if (time_after(jiffies, antcomb->scan_start_time + 1424102885a5SVasanthakumar Thiagarajan msecs_to_jiffies(ATH_ANT_DIV_COMB_SHORT_SCAN_INTR))) 1425102885a5SVasanthakumar Thiagarajan short_scan = true; 1426102885a5SVasanthakumar Thiagarajan else 1427102885a5SVasanthakumar Thiagarajan if (antcomb->total_pkt_count == 1428102885a5SVasanthakumar Thiagarajan ATH_ANT_DIV_COMB_SHORT_SCAN_PKTCOUNT) { 1429102885a5SVasanthakumar Thiagarajan alt_ratio = ((antcomb->alt_recv_cnt * 100) / 1430102885a5SVasanthakumar Thiagarajan antcomb->total_pkt_count); 1431102885a5SVasanthakumar Thiagarajan if (alt_ratio < ATH_ANT_DIV_COMB_ALT_ANT_RATIO) 1432102885a5SVasanthakumar Thiagarajan short_scan = true; 1433102885a5SVasanthakumar Thiagarajan } 1434102885a5SVasanthakumar Thiagarajan } 1435102885a5SVasanthakumar Thiagarajan 1436102885a5SVasanthakumar Thiagarajan if (((antcomb->total_pkt_count < ATH_ANT_DIV_COMB_MAX_PKTCOUNT) || 1437102885a5SVasanthakumar Thiagarajan rs->rs_moreaggr) && !short_scan) 1438102885a5SVasanthakumar Thiagarajan return; 1439102885a5SVasanthakumar Thiagarajan 1440102885a5SVasanthakumar Thiagarajan if (antcomb->total_pkt_count) { 1441102885a5SVasanthakumar Thiagarajan alt_ratio = ((antcomb->alt_recv_cnt * 100) / 1442102885a5SVasanthakumar Thiagarajan antcomb->total_pkt_count); 1443102885a5SVasanthakumar Thiagarajan main_rssi_avg = (antcomb->main_total_rssi / 1444102885a5SVasanthakumar Thiagarajan antcomb->total_pkt_count); 1445102885a5SVasanthakumar Thiagarajan alt_rssi_avg = (antcomb->alt_total_rssi / 1446102885a5SVasanthakumar Thiagarajan antcomb->total_pkt_count); 1447102885a5SVasanthakumar Thiagarajan } 1448102885a5SVasanthakumar Thiagarajan 1449102885a5SVasanthakumar Thiagarajan 1450102885a5SVasanthakumar Thiagarajan ath9k_hw_antdiv_comb_conf_get(sc->sc_ah, &div_ant_conf); 1451102885a5SVasanthakumar Thiagarajan curr_alt_set = div_ant_conf.alt_lna_conf; 1452102885a5SVasanthakumar Thiagarajan curr_main_set = div_ant_conf.main_lna_conf; 1453102885a5SVasanthakumar Thiagarajan curr_bias = div_ant_conf.fast_div_bias; 1454102885a5SVasanthakumar Thiagarajan 1455102885a5SVasanthakumar Thiagarajan antcomb->count++; 1456102885a5SVasanthakumar Thiagarajan 1457102885a5SVasanthakumar Thiagarajan if (antcomb->count == ATH_ANT_DIV_COMB_MAX_COUNT) { 1458102885a5SVasanthakumar Thiagarajan if (alt_ratio > ATH_ANT_DIV_COMB_ALT_ANT_RATIO) { 1459102885a5SVasanthakumar Thiagarajan ath_lnaconf_alt_good_scan(antcomb, div_ant_conf, 1460102885a5SVasanthakumar Thiagarajan main_rssi_avg); 1461102885a5SVasanthakumar Thiagarajan antcomb->alt_good = true; 1462102885a5SVasanthakumar Thiagarajan } else { 1463102885a5SVasanthakumar Thiagarajan antcomb->alt_good = false; 1464102885a5SVasanthakumar Thiagarajan } 1465102885a5SVasanthakumar Thiagarajan 1466102885a5SVasanthakumar Thiagarajan antcomb->count = 0; 1467102885a5SVasanthakumar Thiagarajan antcomb->scan = true; 1468102885a5SVasanthakumar Thiagarajan antcomb->scan_not_start = true; 1469102885a5SVasanthakumar Thiagarajan } 1470102885a5SVasanthakumar Thiagarajan 1471102885a5SVasanthakumar Thiagarajan if (!antcomb->scan) { 1472102885a5SVasanthakumar Thiagarajan if (alt_ratio > ATH_ANT_DIV_COMB_ALT_ANT_RATIO) { 1473102885a5SVasanthakumar Thiagarajan if (curr_alt_set == ATH_ANT_DIV_COMB_LNA2) { 1474102885a5SVasanthakumar Thiagarajan /* Switch main and alt LNA */ 1475102885a5SVasanthakumar Thiagarajan div_ant_conf.main_lna_conf = 1476102885a5SVasanthakumar Thiagarajan ATH_ANT_DIV_COMB_LNA2; 1477102885a5SVasanthakumar Thiagarajan div_ant_conf.alt_lna_conf = 1478102885a5SVasanthakumar Thiagarajan ATH_ANT_DIV_COMB_LNA1; 1479102885a5SVasanthakumar Thiagarajan } else if (curr_alt_set == ATH_ANT_DIV_COMB_LNA1) { 1480102885a5SVasanthakumar Thiagarajan div_ant_conf.main_lna_conf = 1481102885a5SVasanthakumar Thiagarajan ATH_ANT_DIV_COMB_LNA1; 1482102885a5SVasanthakumar Thiagarajan div_ant_conf.alt_lna_conf = 1483102885a5SVasanthakumar Thiagarajan ATH_ANT_DIV_COMB_LNA2; 1484102885a5SVasanthakumar Thiagarajan } 1485102885a5SVasanthakumar Thiagarajan 1486102885a5SVasanthakumar Thiagarajan goto div_comb_done; 1487102885a5SVasanthakumar Thiagarajan } else if ((curr_alt_set != ATH_ANT_DIV_COMB_LNA1) && 1488102885a5SVasanthakumar Thiagarajan (curr_alt_set != ATH_ANT_DIV_COMB_LNA2)) { 1489102885a5SVasanthakumar Thiagarajan /* Set alt to another LNA */ 1490102885a5SVasanthakumar Thiagarajan if (curr_main_set == ATH_ANT_DIV_COMB_LNA2) 1491102885a5SVasanthakumar Thiagarajan div_ant_conf.alt_lna_conf = 1492102885a5SVasanthakumar Thiagarajan ATH_ANT_DIV_COMB_LNA1; 1493102885a5SVasanthakumar Thiagarajan else if (curr_main_set == ATH_ANT_DIV_COMB_LNA1) 1494102885a5SVasanthakumar Thiagarajan div_ant_conf.alt_lna_conf = 1495102885a5SVasanthakumar Thiagarajan ATH_ANT_DIV_COMB_LNA2; 1496102885a5SVasanthakumar Thiagarajan 1497102885a5SVasanthakumar Thiagarajan goto div_comb_done; 1498102885a5SVasanthakumar Thiagarajan } 1499102885a5SVasanthakumar Thiagarajan 1500102885a5SVasanthakumar Thiagarajan if ((alt_rssi_avg < (main_rssi_avg + 1501102885a5SVasanthakumar Thiagarajan ATH_ANT_DIV_COMB_LNA1_LNA2_DELTA))) 1502102885a5SVasanthakumar Thiagarajan goto div_comb_done; 1503102885a5SVasanthakumar Thiagarajan } 1504102885a5SVasanthakumar Thiagarajan 1505102885a5SVasanthakumar Thiagarajan if (!antcomb->scan_not_start) { 1506102885a5SVasanthakumar Thiagarajan switch (curr_alt_set) { 1507102885a5SVasanthakumar Thiagarajan case ATH_ANT_DIV_COMB_LNA2: 1508102885a5SVasanthakumar Thiagarajan antcomb->rssi_lna2 = alt_rssi_avg; 1509102885a5SVasanthakumar Thiagarajan antcomb->rssi_lna1 = main_rssi_avg; 1510102885a5SVasanthakumar Thiagarajan antcomb->scan = true; 1511102885a5SVasanthakumar Thiagarajan /* set to A+B */ 1512102885a5SVasanthakumar Thiagarajan div_ant_conf.main_lna_conf = 1513102885a5SVasanthakumar Thiagarajan ATH_ANT_DIV_COMB_LNA1; 1514102885a5SVasanthakumar Thiagarajan div_ant_conf.alt_lna_conf = 1515102885a5SVasanthakumar Thiagarajan ATH_ANT_DIV_COMB_LNA1_PLUS_LNA2; 1516102885a5SVasanthakumar Thiagarajan break; 1517102885a5SVasanthakumar Thiagarajan case ATH_ANT_DIV_COMB_LNA1: 1518102885a5SVasanthakumar Thiagarajan antcomb->rssi_lna1 = alt_rssi_avg; 1519102885a5SVasanthakumar Thiagarajan antcomb->rssi_lna2 = main_rssi_avg; 1520102885a5SVasanthakumar Thiagarajan antcomb->scan = true; 1521102885a5SVasanthakumar Thiagarajan /* set to A+B */ 1522102885a5SVasanthakumar Thiagarajan div_ant_conf.main_lna_conf = ATH_ANT_DIV_COMB_LNA2; 1523102885a5SVasanthakumar Thiagarajan div_ant_conf.alt_lna_conf = 1524102885a5SVasanthakumar Thiagarajan ATH_ANT_DIV_COMB_LNA1_PLUS_LNA2; 1525102885a5SVasanthakumar Thiagarajan break; 1526102885a5SVasanthakumar Thiagarajan case ATH_ANT_DIV_COMB_LNA1_PLUS_LNA2: 1527102885a5SVasanthakumar Thiagarajan antcomb->rssi_add = alt_rssi_avg; 1528102885a5SVasanthakumar Thiagarajan antcomb->scan = true; 1529102885a5SVasanthakumar Thiagarajan /* set to A-B */ 1530102885a5SVasanthakumar Thiagarajan div_ant_conf.alt_lna_conf = 1531102885a5SVasanthakumar Thiagarajan ATH_ANT_DIV_COMB_LNA1_MINUS_LNA2; 1532102885a5SVasanthakumar Thiagarajan break; 1533102885a5SVasanthakumar Thiagarajan case ATH_ANT_DIV_COMB_LNA1_MINUS_LNA2: 1534102885a5SVasanthakumar Thiagarajan antcomb->rssi_sub = alt_rssi_avg; 1535102885a5SVasanthakumar Thiagarajan antcomb->scan = false; 1536102885a5SVasanthakumar Thiagarajan if (antcomb->rssi_lna2 > 1537102885a5SVasanthakumar Thiagarajan (antcomb->rssi_lna1 + 1538102885a5SVasanthakumar Thiagarajan ATH_ANT_DIV_COMB_LNA1_LNA2_SWITCH_DELTA)) { 1539102885a5SVasanthakumar Thiagarajan /* use LNA2 as main LNA */ 1540102885a5SVasanthakumar Thiagarajan if ((antcomb->rssi_add > antcomb->rssi_lna1) && 1541102885a5SVasanthakumar Thiagarajan (antcomb->rssi_add > antcomb->rssi_sub)) { 1542102885a5SVasanthakumar Thiagarajan /* set to A+B */ 1543102885a5SVasanthakumar Thiagarajan div_ant_conf.main_lna_conf = 1544102885a5SVasanthakumar Thiagarajan ATH_ANT_DIV_COMB_LNA2; 1545102885a5SVasanthakumar Thiagarajan div_ant_conf.alt_lna_conf = 1546102885a5SVasanthakumar Thiagarajan ATH_ANT_DIV_COMB_LNA1_PLUS_LNA2; 1547102885a5SVasanthakumar Thiagarajan } else if (antcomb->rssi_sub > 1548102885a5SVasanthakumar Thiagarajan antcomb->rssi_lna1) { 1549102885a5SVasanthakumar Thiagarajan /* set to A-B */ 1550102885a5SVasanthakumar Thiagarajan div_ant_conf.main_lna_conf = 1551102885a5SVasanthakumar Thiagarajan ATH_ANT_DIV_COMB_LNA2; 1552102885a5SVasanthakumar Thiagarajan div_ant_conf.alt_lna_conf = 1553102885a5SVasanthakumar Thiagarajan ATH_ANT_DIV_COMB_LNA1_MINUS_LNA2; 1554102885a5SVasanthakumar Thiagarajan } else { 1555102885a5SVasanthakumar Thiagarajan /* set to LNA1 */ 1556102885a5SVasanthakumar Thiagarajan div_ant_conf.main_lna_conf = 1557102885a5SVasanthakumar Thiagarajan ATH_ANT_DIV_COMB_LNA2; 1558102885a5SVasanthakumar Thiagarajan div_ant_conf.alt_lna_conf = 1559102885a5SVasanthakumar Thiagarajan ATH_ANT_DIV_COMB_LNA1; 1560102885a5SVasanthakumar Thiagarajan } 1561102885a5SVasanthakumar Thiagarajan } else { 1562102885a5SVasanthakumar Thiagarajan /* use LNA1 as main LNA */ 1563102885a5SVasanthakumar Thiagarajan if ((antcomb->rssi_add > antcomb->rssi_lna2) && 1564102885a5SVasanthakumar Thiagarajan (antcomb->rssi_add > antcomb->rssi_sub)) { 1565102885a5SVasanthakumar Thiagarajan /* set to A+B */ 1566102885a5SVasanthakumar Thiagarajan div_ant_conf.main_lna_conf = 1567102885a5SVasanthakumar Thiagarajan ATH_ANT_DIV_COMB_LNA1; 1568102885a5SVasanthakumar Thiagarajan div_ant_conf.alt_lna_conf = 1569102885a5SVasanthakumar Thiagarajan ATH_ANT_DIV_COMB_LNA1_PLUS_LNA2; 1570102885a5SVasanthakumar Thiagarajan } else if (antcomb->rssi_sub > 1571102885a5SVasanthakumar Thiagarajan antcomb->rssi_lna1) { 1572102885a5SVasanthakumar Thiagarajan /* set to A-B */ 1573102885a5SVasanthakumar Thiagarajan div_ant_conf.main_lna_conf = 1574102885a5SVasanthakumar Thiagarajan ATH_ANT_DIV_COMB_LNA1; 1575102885a5SVasanthakumar Thiagarajan div_ant_conf.alt_lna_conf = 1576102885a5SVasanthakumar Thiagarajan ATH_ANT_DIV_COMB_LNA1_MINUS_LNA2; 1577102885a5SVasanthakumar Thiagarajan } else { 1578102885a5SVasanthakumar Thiagarajan /* set to LNA2 */ 1579102885a5SVasanthakumar Thiagarajan div_ant_conf.main_lna_conf = 1580102885a5SVasanthakumar Thiagarajan ATH_ANT_DIV_COMB_LNA1; 1581102885a5SVasanthakumar Thiagarajan div_ant_conf.alt_lna_conf = 1582102885a5SVasanthakumar Thiagarajan ATH_ANT_DIV_COMB_LNA2; 1583102885a5SVasanthakumar Thiagarajan } 1584102885a5SVasanthakumar Thiagarajan } 1585102885a5SVasanthakumar Thiagarajan break; 1586102885a5SVasanthakumar Thiagarajan default: 1587102885a5SVasanthakumar Thiagarajan break; 1588102885a5SVasanthakumar Thiagarajan } 1589102885a5SVasanthakumar Thiagarajan } else { 1590102885a5SVasanthakumar Thiagarajan if (!antcomb->alt_good) { 1591102885a5SVasanthakumar Thiagarajan antcomb->scan_not_start = false; 1592102885a5SVasanthakumar Thiagarajan /* Set alt to another LNA */ 1593102885a5SVasanthakumar Thiagarajan if (curr_main_set == ATH_ANT_DIV_COMB_LNA2) { 1594102885a5SVasanthakumar Thiagarajan div_ant_conf.main_lna_conf = 1595102885a5SVasanthakumar Thiagarajan ATH_ANT_DIV_COMB_LNA2; 1596102885a5SVasanthakumar Thiagarajan div_ant_conf.alt_lna_conf = 1597102885a5SVasanthakumar Thiagarajan ATH_ANT_DIV_COMB_LNA1; 1598102885a5SVasanthakumar Thiagarajan } else if (curr_main_set == ATH_ANT_DIV_COMB_LNA1) { 1599102885a5SVasanthakumar Thiagarajan div_ant_conf.main_lna_conf = 1600102885a5SVasanthakumar Thiagarajan ATH_ANT_DIV_COMB_LNA1; 1601102885a5SVasanthakumar Thiagarajan div_ant_conf.alt_lna_conf = 1602102885a5SVasanthakumar Thiagarajan ATH_ANT_DIV_COMB_LNA2; 1603102885a5SVasanthakumar Thiagarajan } 1604102885a5SVasanthakumar Thiagarajan goto div_comb_done; 1605102885a5SVasanthakumar Thiagarajan } 1606102885a5SVasanthakumar Thiagarajan } 1607102885a5SVasanthakumar Thiagarajan 1608102885a5SVasanthakumar Thiagarajan ath_select_ant_div_from_quick_scan(antcomb, &div_ant_conf, 1609102885a5SVasanthakumar Thiagarajan main_rssi_avg, alt_rssi_avg, 1610102885a5SVasanthakumar Thiagarajan alt_ratio); 1611102885a5SVasanthakumar Thiagarajan 1612102885a5SVasanthakumar Thiagarajan antcomb->quick_scan_cnt++; 1613102885a5SVasanthakumar Thiagarajan 1614102885a5SVasanthakumar Thiagarajan div_comb_done: 1615102885a5SVasanthakumar Thiagarajan ath_ant_div_conf_fast_divbias(&div_ant_conf); 1616102885a5SVasanthakumar Thiagarajan 1617102885a5SVasanthakumar Thiagarajan ath9k_hw_antdiv_comb_conf_set(sc->sc_ah, &div_ant_conf); 1618102885a5SVasanthakumar Thiagarajan 1619102885a5SVasanthakumar Thiagarajan antcomb->scan_start_time = jiffies; 1620102885a5SVasanthakumar Thiagarajan antcomb->total_pkt_count = 0; 1621102885a5SVasanthakumar Thiagarajan antcomb->main_total_rssi = 0; 1622102885a5SVasanthakumar Thiagarajan antcomb->alt_total_rssi = 0; 1623102885a5SVasanthakumar Thiagarajan antcomb->main_recv_cnt = 0; 1624102885a5SVasanthakumar Thiagarajan antcomb->alt_recv_cnt = 0; 1625102885a5SVasanthakumar Thiagarajan } 1626102885a5SVasanthakumar Thiagarajan 1627b5c80475SFelix Fietkau int ath_rx_tasklet(struct ath_softc *sc, int flush, bool hp) 1628b5c80475SFelix Fietkau { 1629b5c80475SFelix Fietkau struct ath_buf *bf; 1630b5c80475SFelix Fietkau struct sk_buff *skb = NULL, *requeue_skb; 1631b5c80475SFelix Fietkau struct ieee80211_rx_status *rxs; 1632b5c80475SFelix Fietkau struct ath_hw *ah = sc->sc_ah; 1633b5c80475SFelix Fietkau struct ath_common *common = ath9k_hw_common(ah); 1634b5c80475SFelix Fietkau /* 1635b5c80475SFelix Fietkau * The hw can techncically differ from common->hw when using ath9k 1636b5c80475SFelix Fietkau * virtual wiphy so to account for that we iterate over the active 1637b5c80475SFelix Fietkau * wiphys and find the appropriate wiphy and therefore hw. 1638b5c80475SFelix Fietkau */ 1639b5c80475SFelix Fietkau struct ieee80211_hw *hw = NULL; 1640b5c80475SFelix Fietkau struct ieee80211_hdr *hdr; 1641b5c80475SFelix Fietkau int retval; 1642b5c80475SFelix Fietkau bool decrypt_error = false; 1643b5c80475SFelix Fietkau struct ath_rx_status rs; 1644b5c80475SFelix Fietkau enum ath9k_rx_qtype qtype; 1645b5c80475SFelix Fietkau bool edma = !!(ah->caps.hw_caps & ATH9K_HW_CAP_EDMA); 1646b5c80475SFelix Fietkau int dma_type; 16475c6dd921SVasanthakumar Thiagarajan u8 rx_status_len = ah->caps.rx_status_len; 1648a6d2055bSFelix Fietkau u64 tsf = 0; 1649a6d2055bSFelix Fietkau u32 tsf_lower = 0; 16508ab2cd09SLuis R. Rodriguez unsigned long flags; 1651b5c80475SFelix Fietkau 1652b5c80475SFelix Fietkau if (edma) 1653b5c80475SFelix Fietkau dma_type = DMA_BIDIRECTIONAL; 165456824223SMing Lei else 165556824223SMing Lei dma_type = DMA_FROM_DEVICE; 1656b5c80475SFelix Fietkau 1657b5c80475SFelix Fietkau qtype = hp ? ATH9K_RX_QUEUE_HP : ATH9K_RX_QUEUE_LP; 1658b5c80475SFelix Fietkau spin_lock_bh(&sc->rx.rxbuflock); 1659b5c80475SFelix Fietkau 1660a6d2055bSFelix Fietkau tsf = ath9k_hw_gettsf64(ah); 1661a6d2055bSFelix Fietkau tsf_lower = tsf & 0xffffffff; 1662a6d2055bSFelix Fietkau 1663b5c80475SFelix Fietkau do { 1664b5c80475SFelix Fietkau /* If handling rx interrupt and flush is in progress => exit */ 1665b5c80475SFelix Fietkau if ((sc->sc_flags & SC_OP_RXFLUSH) && (flush == 0)) 1666b5c80475SFelix Fietkau break; 1667b5c80475SFelix Fietkau 1668b5c80475SFelix Fietkau memset(&rs, 0, sizeof(rs)); 1669b5c80475SFelix Fietkau if (edma) 1670b5c80475SFelix Fietkau bf = ath_edma_get_next_rx_buf(sc, &rs, qtype); 1671b5c80475SFelix Fietkau else 1672b5c80475SFelix Fietkau bf = ath_get_next_rx_buf(sc, &rs); 1673b5c80475SFelix Fietkau 1674b5c80475SFelix Fietkau if (!bf) 1675b5c80475SFelix Fietkau break; 1676b5c80475SFelix Fietkau 1677b5c80475SFelix Fietkau skb = bf->bf_mpdu; 1678b5c80475SFelix Fietkau if (!skb) 1679b5c80475SFelix Fietkau continue; 1680b5c80475SFelix Fietkau 16815c6dd921SVasanthakumar Thiagarajan hdr = (struct ieee80211_hdr *) (skb->data + rx_status_len); 16825ca42627SLuis R. Rodriguez rxs = IEEE80211_SKB_RXCB(skb); 16835ca42627SLuis R. Rodriguez 1684b4afffc0SLuis R. Rodriguez hw = ath_get_virt_hw(sc, hdr); 1685b4afffc0SLuis R. Rodriguez 168629bffa96SFelix Fietkau ath_debug_stat_rx(sc, &rs); 16871395d3f0SSujith 1688203c4805SLuis R. Rodriguez /* 1689203c4805SLuis R. Rodriguez * If we're asked to flush receive queue, directly 1690203c4805SLuis R. Rodriguez * chain it back at the queue without processing it. 1691203c4805SLuis R. Rodriguez */ 1692203c4805SLuis R. Rodriguez if (flush) 1693203c4805SLuis R. Rodriguez goto requeue; 1694203c4805SLuis R. Rodriguez 1695c8f3b721SJan Friedrich retval = ath9k_rx_skb_preprocess(common, hw, hdr, &rs, 1696c8f3b721SJan Friedrich rxs, &decrypt_error); 1697c8f3b721SJan Friedrich if (retval) 1698c8f3b721SJan Friedrich goto requeue; 1699c8f3b721SJan Friedrich 1700a6d2055bSFelix Fietkau rxs->mactime = (tsf & ~0xffffffffULL) | rs.rs_tstamp; 1701a6d2055bSFelix Fietkau if (rs.rs_tstamp > tsf_lower && 1702a6d2055bSFelix Fietkau unlikely(rs.rs_tstamp - tsf_lower > 0x10000000)) 1703a6d2055bSFelix Fietkau rxs->mactime -= 0x100000000ULL; 1704a6d2055bSFelix Fietkau 1705a6d2055bSFelix Fietkau if (rs.rs_tstamp < tsf_lower && 1706a6d2055bSFelix Fietkau unlikely(tsf_lower - rs.rs_tstamp > 0x10000000)) 1707a6d2055bSFelix Fietkau rxs->mactime += 0x100000000ULL; 1708a6d2055bSFelix Fietkau 1709203c4805SLuis R. Rodriguez /* Ensure we always have an skb to requeue once we are done 1710203c4805SLuis R. Rodriguez * processing the current buffer's skb */ 1711cc861f74SLuis R. Rodriguez requeue_skb = ath_rxbuf_alloc(common, common->rx_bufsize, GFP_ATOMIC); 1712203c4805SLuis R. Rodriguez 1713203c4805SLuis R. Rodriguez /* If there is no memory we ignore the current RX'd frame, 1714203c4805SLuis R. Rodriguez * tell hardware it can give us a new frame using the old 1715203c4805SLuis R. Rodriguez * skb and put it at the tail of the sc->rx.rxbuf list for 1716203c4805SLuis R. Rodriguez * processing. */ 1717203c4805SLuis R. Rodriguez if (!requeue_skb) 1718203c4805SLuis R. Rodriguez goto requeue; 1719203c4805SLuis R. Rodriguez 1720203c4805SLuis R. Rodriguez /* Unmap the frame */ 1721203c4805SLuis R. Rodriguez dma_unmap_single(sc->dev, bf->bf_buf_addr, 1722cc861f74SLuis R. Rodriguez common->rx_bufsize, 1723b5c80475SFelix Fietkau dma_type); 1724203c4805SLuis R. Rodriguez 1725b5c80475SFelix Fietkau skb_put(skb, rs.rs_datalen + ah->caps.rx_status_len); 1726b5c80475SFelix Fietkau if (ah->caps.rx_status_len) 1727b5c80475SFelix Fietkau skb_pull(skb, ah->caps.rx_status_len); 1728203c4805SLuis R. Rodriguez 1729d435700fSSujith ath9k_rx_skb_postprocess(common, skb, &rs, 1730c9b14170SLuis R. Rodriguez rxs, decrypt_error); 1731203c4805SLuis R. Rodriguez 1732203c4805SLuis R. Rodriguez /* We will now give hardware our shiny new allocated skb */ 1733203c4805SLuis R. Rodriguez bf->bf_mpdu = requeue_skb; 1734203c4805SLuis R. Rodriguez bf->bf_buf_addr = dma_map_single(sc->dev, requeue_skb->data, 1735cc861f74SLuis R. Rodriguez common->rx_bufsize, 1736b5c80475SFelix Fietkau dma_type); 1737203c4805SLuis R. Rodriguez if (unlikely(dma_mapping_error(sc->dev, 1738203c4805SLuis R. Rodriguez bf->bf_buf_addr))) { 1739203c4805SLuis R. Rodriguez dev_kfree_skb_any(requeue_skb); 1740203c4805SLuis R. Rodriguez bf->bf_mpdu = NULL; 17416cf9e995SBen Greear bf->bf_buf_addr = 0; 1742c46917bbSLuis R. Rodriguez ath_print(common, ATH_DBG_FATAL, 1743203c4805SLuis R. Rodriguez "dma_mapping_error() on RX\n"); 17445ca42627SLuis R. Rodriguez ath_rx_send_to_mac80211(hw, sc, skb, rxs); 1745203c4805SLuis R. Rodriguez break; 1746203c4805SLuis R. Rodriguez } 1747203c4805SLuis R. Rodriguez 1748203c4805SLuis R. Rodriguez /* 1749203c4805SLuis R. Rodriguez * change the default rx antenna if rx diversity chooses the 1750203c4805SLuis R. Rodriguez * other antenna 3 times in a row. 1751203c4805SLuis R. Rodriguez */ 175229bffa96SFelix Fietkau if (sc->rx.defant != rs.rs_antenna) { 1753203c4805SLuis R. Rodriguez if (++sc->rx.rxotherant >= 3) 175429bffa96SFelix Fietkau ath_setdefantenna(sc, rs.rs_antenna); 1755203c4805SLuis R. Rodriguez } else { 1756203c4805SLuis R. Rodriguez sc->rx.rxotherant = 0; 1757203c4805SLuis R. Rodriguez } 1758203c4805SLuis R. Rodriguez 17598ab2cd09SLuis R. Rodriguez spin_lock_irqsave(&sc->sc_pm_lock, flags); 1760ededf1f8SVasanthakumar Thiagarajan if (unlikely(ath9k_check_auto_sleep(sc) || 1761ededf1f8SVasanthakumar Thiagarajan (sc->ps_flags & (PS_WAIT_FOR_BEACON | 17621b04b930SSujith PS_WAIT_FOR_CAB | 1763ededf1f8SVasanthakumar Thiagarajan PS_WAIT_FOR_PSPOLL_DATA)))) 1764cc65965cSJouni Malinen ath_rx_ps(sc, skb); 17658ab2cd09SLuis R. Rodriguez spin_unlock_irqrestore(&sc->sc_pm_lock, flags); 1766cc65965cSJouni Malinen 1767102885a5SVasanthakumar Thiagarajan if (ah->caps.hw_caps & ATH9K_HW_CAP_ANT_DIV_COMB) 1768102885a5SVasanthakumar Thiagarajan ath_ant_comb_scan(sc, &rs); 1769102885a5SVasanthakumar Thiagarajan 17705ca42627SLuis R. Rodriguez ath_rx_send_to_mac80211(hw, sc, skb, rxs); 1771cc65965cSJouni Malinen 1772203c4805SLuis R. Rodriguez requeue: 1773b5c80475SFelix Fietkau if (edma) { 1774b5c80475SFelix Fietkau list_add_tail(&bf->list, &sc->rx.rxbuf); 1775b5c80475SFelix Fietkau ath_rx_edma_buf_link(sc, qtype); 1776b5c80475SFelix Fietkau } else { 1777203c4805SLuis R. Rodriguez list_move_tail(&bf->list, &sc->rx.rxbuf); 1778203c4805SLuis R. Rodriguez ath_rx_buf_link(sc, bf); 1779b5c80475SFelix Fietkau } 1780203c4805SLuis R. Rodriguez } while (1); 1781203c4805SLuis R. Rodriguez 1782203c4805SLuis R. Rodriguez spin_unlock_bh(&sc->rx.rxbuflock); 1783203c4805SLuis R. Rodriguez 1784203c4805SLuis R. Rodriguez return 0; 1785203c4805SLuis R. Rodriguez } 1786