xref: /openbmc/linux/drivers/net/wireless/ath/ath9k/recv.c (revision 5f841b4130a639e5f0fbcf4a9b26045d734e4ee6)
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));
3037583c550SLuis R. Rodriguez 
3047583c550SLuis 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 
320b79b33c4SLuis R. Rodriguez 	spin_lock_init(&sc->rx.pcu_lock);
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)) ||
444*5f841b41SRajkumar Manoharan 	    (sc->sc_ah->is_monitoring))
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 
5107583c550SLuis R. Rodriguez 	spin_unlock_bh(&sc->rx.rxbuflock);
5117583c550SLuis 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 	sc->sc_flags |= SC_OP_RXFLUSH;
537b5c80475SFelix Fietkau 	if (sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_EDMA)
538b5c80475SFelix Fietkau 		ath_rx_tasklet(sc, 1, true);
539b5c80475SFelix Fietkau 	ath_rx_tasklet(sc, 1, false);
540203c4805SLuis R. Rodriguez 	sc->sc_flags &= ~SC_OP_RXFLUSH;
541203c4805SLuis R. Rodriguez }
542203c4805SLuis R. Rodriguez 
543cc65965cSJouni Malinen static bool ath_beacon_dtim_pending_cab(struct sk_buff *skb)
544cc65965cSJouni Malinen {
545cc65965cSJouni Malinen 	/* Check whether the Beacon frame has DTIM indicating buffered bc/mc */
546cc65965cSJouni Malinen 	struct ieee80211_mgmt *mgmt;
547cc65965cSJouni Malinen 	u8 *pos, *end, id, elen;
548cc65965cSJouni Malinen 	struct ieee80211_tim_ie *tim;
549cc65965cSJouni Malinen 
550cc65965cSJouni Malinen 	mgmt = (struct ieee80211_mgmt *)skb->data;
551cc65965cSJouni Malinen 	pos = mgmt->u.beacon.variable;
552cc65965cSJouni Malinen 	end = skb->data + skb->len;
553cc65965cSJouni Malinen 
554cc65965cSJouni Malinen 	while (pos + 2 < end) {
555cc65965cSJouni Malinen 		id = *pos++;
556cc65965cSJouni Malinen 		elen = *pos++;
557cc65965cSJouni Malinen 		if (pos + elen > end)
558cc65965cSJouni Malinen 			break;
559cc65965cSJouni Malinen 
560cc65965cSJouni Malinen 		if (id == WLAN_EID_TIM) {
561cc65965cSJouni Malinen 			if (elen < sizeof(*tim))
562cc65965cSJouni Malinen 				break;
563cc65965cSJouni Malinen 			tim = (struct ieee80211_tim_ie *) pos;
564cc65965cSJouni Malinen 			if (tim->dtim_count != 0)
565cc65965cSJouni Malinen 				break;
566cc65965cSJouni Malinen 			return tim->bitmap_ctrl & 0x01;
567cc65965cSJouni Malinen 		}
568cc65965cSJouni Malinen 
569cc65965cSJouni Malinen 		pos += elen;
570cc65965cSJouni Malinen 	}
571cc65965cSJouni Malinen 
572cc65965cSJouni Malinen 	return false;
573cc65965cSJouni Malinen }
574cc65965cSJouni Malinen 
575cc65965cSJouni Malinen static void ath_rx_ps_beacon(struct ath_softc *sc, struct sk_buff *skb)
576cc65965cSJouni Malinen {
577cc65965cSJouni Malinen 	struct ieee80211_mgmt *mgmt;
5781510718dSLuis R. Rodriguez 	struct ath_common *common = ath9k_hw_common(sc->sc_ah);
579cc65965cSJouni Malinen 
580cc65965cSJouni Malinen 	if (skb->len < 24 + 8 + 2 + 2)
581cc65965cSJouni Malinen 		return;
582cc65965cSJouni Malinen 
583cc65965cSJouni Malinen 	mgmt = (struct ieee80211_mgmt *)skb->data;
5841510718dSLuis R. Rodriguez 	if (memcmp(common->curbssid, mgmt->bssid, ETH_ALEN) != 0)
585cc65965cSJouni Malinen 		return; /* not from our current AP */
586cc65965cSJouni Malinen 
5871b04b930SSujith 	sc->ps_flags &= ~PS_WAIT_FOR_BEACON;
588293dc5dfSGabor Juhos 
5891b04b930SSujith 	if (sc->ps_flags & PS_BEACON_SYNC) {
5901b04b930SSujith 		sc->ps_flags &= ~PS_BEACON_SYNC;
591c46917bbSLuis R. Rodriguez 		ath_print(common, ATH_DBG_PS,
592c46917bbSLuis R. Rodriguez 			  "Reconfigure Beacon timers based on "
593ccdfeab6SJouni Malinen 			  "timestamp from the AP\n");
594ccdfeab6SJouni Malinen 		ath_beacon_config(sc, NULL);
595ccdfeab6SJouni Malinen 	}
596ccdfeab6SJouni Malinen 
597cc65965cSJouni Malinen 	if (ath_beacon_dtim_pending_cab(skb)) {
598cc65965cSJouni Malinen 		/*
599cc65965cSJouni Malinen 		 * Remain awake waiting for buffered broadcast/multicast
60058f5fffdSGabor Juhos 		 * frames. If the last broadcast/multicast frame is not
60158f5fffdSGabor Juhos 		 * received properly, the next beacon frame will work as
60258f5fffdSGabor Juhos 		 * a backup trigger for returning into NETWORK SLEEP state,
60358f5fffdSGabor Juhos 		 * so we are waiting for it as well.
604cc65965cSJouni Malinen 		 */
605c46917bbSLuis R. Rodriguez 		ath_print(common, ATH_DBG_PS, "Received DTIM beacon indicating "
606cc65965cSJouni Malinen 			  "buffered broadcast/multicast frame(s)\n");
6071b04b930SSujith 		sc->ps_flags |= PS_WAIT_FOR_CAB | PS_WAIT_FOR_BEACON;
608cc65965cSJouni Malinen 		return;
609cc65965cSJouni Malinen 	}
610cc65965cSJouni Malinen 
6111b04b930SSujith 	if (sc->ps_flags & PS_WAIT_FOR_CAB) {
612cc65965cSJouni Malinen 		/*
613cc65965cSJouni Malinen 		 * This can happen if a broadcast frame is dropped or the AP
614cc65965cSJouni Malinen 		 * fails to send a frame indicating that all CAB frames have
615cc65965cSJouni Malinen 		 * been delivered.
616cc65965cSJouni Malinen 		 */
6171b04b930SSujith 		sc->ps_flags &= ~PS_WAIT_FOR_CAB;
618c46917bbSLuis R. Rodriguez 		ath_print(common, ATH_DBG_PS,
619c46917bbSLuis R. Rodriguez 			  "PS wait for CAB frames timed out\n");
620cc65965cSJouni Malinen 	}
621cc65965cSJouni Malinen }
622cc65965cSJouni Malinen 
623cc65965cSJouni Malinen static void ath_rx_ps(struct ath_softc *sc, struct sk_buff *skb)
624cc65965cSJouni Malinen {
625cc65965cSJouni Malinen 	struct ieee80211_hdr *hdr;
626c46917bbSLuis R. Rodriguez 	struct ath_common *common = ath9k_hw_common(sc->sc_ah);
627cc65965cSJouni Malinen 
628cc65965cSJouni Malinen 	hdr = (struct ieee80211_hdr *)skb->data;
629cc65965cSJouni Malinen 
630cc65965cSJouni Malinen 	/* Process Beacon and CAB receive in PS state */
631ededf1f8SVasanthakumar Thiagarajan 	if (((sc->ps_flags & PS_WAIT_FOR_BEACON) || ath9k_check_auto_sleep(sc))
632ededf1f8SVasanthakumar Thiagarajan 	    && ieee80211_is_beacon(hdr->frame_control))
633cc65965cSJouni Malinen 		ath_rx_ps_beacon(sc, skb);
6341b04b930SSujith 	else if ((sc->ps_flags & PS_WAIT_FOR_CAB) &&
635cc65965cSJouni Malinen 		 (ieee80211_is_data(hdr->frame_control) ||
636cc65965cSJouni Malinen 		  ieee80211_is_action(hdr->frame_control)) &&
637cc65965cSJouni Malinen 		 is_multicast_ether_addr(hdr->addr1) &&
638cc65965cSJouni Malinen 		 !ieee80211_has_moredata(hdr->frame_control)) {
639cc65965cSJouni Malinen 		/*
640cc65965cSJouni Malinen 		 * No more broadcast/multicast frames to be received at this
641cc65965cSJouni Malinen 		 * point.
642cc65965cSJouni Malinen 		 */
6433fac6dfdSSenthil Balasubramanian 		sc->ps_flags &= ~(PS_WAIT_FOR_CAB | PS_WAIT_FOR_BEACON);
644c46917bbSLuis R. Rodriguez 		ath_print(common, ATH_DBG_PS,
645c46917bbSLuis R. Rodriguez 			  "All PS CAB frames received, back to sleep\n");
6461b04b930SSujith 	} else if ((sc->ps_flags & PS_WAIT_FOR_PSPOLL_DATA) &&
6479a23f9caSJouni Malinen 		   !is_multicast_ether_addr(hdr->addr1) &&
6489a23f9caSJouni Malinen 		   !ieee80211_has_morefrags(hdr->frame_control)) {
6491b04b930SSujith 		sc->ps_flags &= ~PS_WAIT_FOR_PSPOLL_DATA;
650c46917bbSLuis R. Rodriguez 		ath_print(common, ATH_DBG_PS,
651c46917bbSLuis R. Rodriguez 			  "Going back to sleep after having received "
652f643e51dSPavel Roskin 			  "PS-Poll data (0x%lx)\n",
6531b04b930SSujith 			sc->ps_flags & (PS_WAIT_FOR_BEACON |
6541b04b930SSujith 					PS_WAIT_FOR_CAB |
6551b04b930SSujith 					PS_WAIT_FOR_PSPOLL_DATA |
6561b04b930SSujith 					PS_WAIT_FOR_TX_ACK));
657cc65965cSJouni Malinen 	}
658cc65965cSJouni Malinen }
659cc65965cSJouni Malinen 
660b4afffc0SLuis R. Rodriguez static void ath_rx_send_to_mac80211(struct ieee80211_hw *hw,
661b4afffc0SLuis R. Rodriguez 				    struct ath_softc *sc, struct sk_buff *skb,
6625ca42627SLuis R. Rodriguez 				    struct ieee80211_rx_status *rxs)
6639d64a3cfSJouni Malinen {
6649d64a3cfSJouni Malinen 	struct ieee80211_hdr *hdr;
6659d64a3cfSJouni Malinen 
6669d64a3cfSJouni Malinen 	hdr = (struct ieee80211_hdr *)skb->data;
6679d64a3cfSJouni Malinen 
6689d64a3cfSJouni Malinen 	/* Send the frame to mac80211 */
6699d64a3cfSJouni Malinen 	if (is_multicast_ether_addr(hdr->addr1)) {
6709d64a3cfSJouni Malinen 		int i;
6719d64a3cfSJouni Malinen 		/*
6729d64a3cfSJouni Malinen 		 * Deliver broadcast/multicast frames to all suitable
6739d64a3cfSJouni Malinen 		 * virtual wiphys.
6749d64a3cfSJouni Malinen 		 */
6759d64a3cfSJouni Malinen 		/* TODO: filter based on channel configuration */
6769d64a3cfSJouni Malinen 		for (i = 0; i < sc->num_sec_wiphy; i++) {
6779d64a3cfSJouni Malinen 			struct ath_wiphy *aphy = sc->sec_wiphy[i];
6789d64a3cfSJouni Malinen 			struct sk_buff *nskb;
6799d64a3cfSJouni Malinen 			if (aphy == NULL)
6809d64a3cfSJouni Malinen 				continue;
6819d64a3cfSJouni Malinen 			nskb = skb_copy(skb, GFP_ATOMIC);
6825ca42627SLuis R. Rodriguez 			if (!nskb)
6835ca42627SLuis R. Rodriguez 				continue;
684f1d58c25SJohannes Berg 			ieee80211_rx(aphy->hw, nskb);
6859d64a3cfSJouni Malinen 		}
686f1d58c25SJohannes Berg 		ieee80211_rx(sc->hw, skb);
6875ca42627SLuis R. Rodriguez 	} else
6889d64a3cfSJouni Malinen 		/* Deliver unicast frames based on receiver address */
689b4afffc0SLuis R. Rodriguez 		ieee80211_rx(hw, skb);
6909d64a3cfSJouni Malinen }
6919d64a3cfSJouni Malinen 
692b5c80475SFelix Fietkau static bool ath_edma_get_buffers(struct ath_softc *sc,
693b5c80475SFelix Fietkau 				 enum ath9k_rx_qtype qtype)
694203c4805SLuis R. Rodriguez {
695b5c80475SFelix Fietkau 	struct ath_rx_edma *rx_edma = &sc->rx.rx_edma[qtype];
696203c4805SLuis R. Rodriguez 	struct ath_hw *ah = sc->sc_ah;
69727c51f1aSLuis R. Rodriguez 	struct ath_common *common = ath9k_hw_common(ah);
698b5c80475SFelix Fietkau 	struct sk_buff *skb;
699b5c80475SFelix Fietkau 	struct ath_buf *bf;
700b5c80475SFelix Fietkau 	int ret;
701203c4805SLuis R. Rodriguez 
702b5c80475SFelix Fietkau 	skb = skb_peek(&rx_edma->rx_fifo);
703b5c80475SFelix Fietkau 	if (!skb)
704b5c80475SFelix Fietkau 		return false;
705203c4805SLuis R. Rodriguez 
706b5c80475SFelix Fietkau 	bf = SKB_CB_ATHBUF(skb);
707b5c80475SFelix Fietkau 	BUG_ON(!bf);
708b5c80475SFelix Fietkau 
709ce9426d1SMing Lei 	dma_sync_single_for_cpu(sc->dev, bf->bf_buf_addr,
710b5c80475SFelix Fietkau 				common->rx_bufsize, DMA_FROM_DEVICE);
711b5c80475SFelix Fietkau 
712b5c80475SFelix Fietkau 	ret = ath9k_hw_process_rxdesc_edma(ah, NULL, skb->data);
713ce9426d1SMing Lei 	if (ret == -EINPROGRESS) {
714ce9426d1SMing Lei 		/*let device gain the buffer again*/
715ce9426d1SMing Lei 		dma_sync_single_for_device(sc->dev, bf->bf_buf_addr,
716ce9426d1SMing Lei 				common->rx_bufsize, DMA_FROM_DEVICE);
717b5c80475SFelix Fietkau 		return false;
718ce9426d1SMing Lei 	}
719b5c80475SFelix Fietkau 
720b5c80475SFelix Fietkau 	__skb_unlink(skb, &rx_edma->rx_fifo);
721b5c80475SFelix Fietkau 	if (ret == -EINVAL) {
722b5c80475SFelix Fietkau 		/* corrupt descriptor, skip this one and the following one */
723b5c80475SFelix Fietkau 		list_add_tail(&bf->list, &sc->rx.rxbuf);
724b5c80475SFelix Fietkau 		ath_rx_edma_buf_link(sc, qtype);
725b5c80475SFelix Fietkau 		skb = skb_peek(&rx_edma->rx_fifo);
726b5c80475SFelix Fietkau 		if (!skb)
727b5c80475SFelix Fietkau 			return true;
728b5c80475SFelix Fietkau 
729b5c80475SFelix Fietkau 		bf = SKB_CB_ATHBUF(skb);
730b5c80475SFelix Fietkau 		BUG_ON(!bf);
731b5c80475SFelix Fietkau 
732b5c80475SFelix Fietkau 		__skb_unlink(skb, &rx_edma->rx_fifo);
733b5c80475SFelix Fietkau 		list_add_tail(&bf->list, &sc->rx.rxbuf);
734b5c80475SFelix Fietkau 		ath_rx_edma_buf_link(sc, qtype);
735083e3e8dSVasanthakumar Thiagarajan 		return true;
736b5c80475SFelix Fietkau 	}
737b5c80475SFelix Fietkau 	skb_queue_tail(&rx_edma->rx_buffers, skb);
738b5c80475SFelix Fietkau 
739b5c80475SFelix Fietkau 	return true;
740b5c80475SFelix Fietkau }
741b5c80475SFelix Fietkau 
742b5c80475SFelix Fietkau static struct ath_buf *ath_edma_get_next_rx_buf(struct ath_softc *sc,
743b5c80475SFelix Fietkau 						struct ath_rx_status *rs,
744b5c80475SFelix Fietkau 						enum ath9k_rx_qtype qtype)
745b5c80475SFelix Fietkau {
746b5c80475SFelix Fietkau 	struct ath_rx_edma *rx_edma = &sc->rx.rx_edma[qtype];
747b5c80475SFelix Fietkau 	struct sk_buff *skb;
748b5c80475SFelix Fietkau 	struct ath_buf *bf;
749b5c80475SFelix Fietkau 
750b5c80475SFelix Fietkau 	while (ath_edma_get_buffers(sc, qtype));
751b5c80475SFelix Fietkau 	skb = __skb_dequeue(&rx_edma->rx_buffers);
752b5c80475SFelix Fietkau 	if (!skb)
753b5c80475SFelix Fietkau 		return NULL;
754b5c80475SFelix Fietkau 
755b5c80475SFelix Fietkau 	bf = SKB_CB_ATHBUF(skb);
756b5c80475SFelix Fietkau 	ath9k_hw_process_rxdesc_edma(sc->sc_ah, rs, skb->data);
757b5c80475SFelix Fietkau 	return bf;
758b5c80475SFelix Fietkau }
759b5c80475SFelix Fietkau 
760b5c80475SFelix Fietkau static struct ath_buf *ath_get_next_rx_buf(struct ath_softc *sc,
761b5c80475SFelix Fietkau 					   struct ath_rx_status *rs)
762b5c80475SFelix Fietkau {
763b5c80475SFelix Fietkau 	struct ath_hw *ah = sc->sc_ah;
764b5c80475SFelix Fietkau 	struct ath_common *common = ath9k_hw_common(ah);
765b5c80475SFelix Fietkau 	struct ath_desc *ds;
766b5c80475SFelix Fietkau 	struct ath_buf *bf;
767b5c80475SFelix Fietkau 	int ret;
768203c4805SLuis R. Rodriguez 
769203c4805SLuis R. Rodriguez 	if (list_empty(&sc->rx.rxbuf)) {
770203c4805SLuis R. Rodriguez 		sc->rx.rxlink = NULL;
771b5c80475SFelix Fietkau 		return NULL;
772203c4805SLuis R. Rodriguez 	}
773203c4805SLuis R. Rodriguez 
774203c4805SLuis R. Rodriguez 	bf = list_first_entry(&sc->rx.rxbuf, struct ath_buf, list);
775203c4805SLuis R. Rodriguez 	ds = bf->bf_desc;
776203c4805SLuis R. Rodriguez 
777203c4805SLuis R. Rodriguez 	/*
778203c4805SLuis R. Rodriguez 	 * Must provide the virtual address of the current
779203c4805SLuis R. Rodriguez 	 * descriptor, the physical address, and the virtual
780203c4805SLuis R. Rodriguez 	 * address of the next descriptor in the h/w chain.
781203c4805SLuis R. Rodriguez 	 * This allows the HAL to look ahead to see if the
782203c4805SLuis R. Rodriguez 	 * hardware is done with a descriptor by checking the
783203c4805SLuis R. Rodriguez 	 * done bit in the following descriptor and the address
784203c4805SLuis R. Rodriguez 	 * of the current descriptor the DMA engine is working
785203c4805SLuis R. Rodriguez 	 * on.  All this is necessary because of our use of
786203c4805SLuis R. Rodriguez 	 * a self-linked list to avoid rx overruns.
787203c4805SLuis R. Rodriguez 	 */
788b5c80475SFelix Fietkau 	ret = ath9k_hw_rxprocdesc(ah, ds, rs, 0);
789b5c80475SFelix Fietkau 	if (ret == -EINPROGRESS) {
79029bffa96SFelix Fietkau 		struct ath_rx_status trs;
791203c4805SLuis R. Rodriguez 		struct ath_buf *tbf;
792203c4805SLuis R. Rodriguez 		struct ath_desc *tds;
793203c4805SLuis R. Rodriguez 
79429bffa96SFelix Fietkau 		memset(&trs, 0, sizeof(trs));
795203c4805SLuis R. Rodriguez 		if (list_is_last(&bf->list, &sc->rx.rxbuf)) {
796203c4805SLuis R. Rodriguez 			sc->rx.rxlink = NULL;
797b5c80475SFelix Fietkau 			return NULL;
798203c4805SLuis R. Rodriguez 		}
799203c4805SLuis R. Rodriguez 
800203c4805SLuis R. Rodriguez 		tbf = list_entry(bf->list.next, struct ath_buf, list);
801203c4805SLuis R. Rodriguez 
802203c4805SLuis R. Rodriguez 		/*
803203c4805SLuis R. Rodriguez 		 * On some hardware the descriptor status words could
804203c4805SLuis R. Rodriguez 		 * get corrupted, including the done bit. Because of
805203c4805SLuis R. Rodriguez 		 * this, check if the next descriptor's done bit is
806203c4805SLuis R. Rodriguez 		 * set or not.
807203c4805SLuis R. Rodriguez 		 *
808203c4805SLuis R. Rodriguez 		 * If the next descriptor's done bit is set, the current
809203c4805SLuis R. Rodriguez 		 * descriptor has been corrupted. Force s/w to discard
810203c4805SLuis R. Rodriguez 		 * this descriptor and continue...
811203c4805SLuis R. Rodriguez 		 */
812203c4805SLuis R. Rodriguez 
813203c4805SLuis R. Rodriguez 		tds = tbf->bf_desc;
814b5c80475SFelix Fietkau 		ret = ath9k_hw_rxprocdesc(ah, tds, &trs, 0);
815b5c80475SFelix Fietkau 		if (ret == -EINPROGRESS)
816b5c80475SFelix Fietkau 			return NULL;
817203c4805SLuis R. Rodriguez 	}
818203c4805SLuis R. Rodriguez 
819b5c80475SFelix Fietkau 	if (!bf->bf_mpdu)
820b5c80475SFelix Fietkau 		return bf;
821203c4805SLuis R. Rodriguez 
822203c4805SLuis R. Rodriguez 	/*
823203c4805SLuis R. Rodriguez 	 * Synchronize the DMA transfer with CPU before
824203c4805SLuis R. Rodriguez 	 * 1. accessing the frame
825203c4805SLuis R. Rodriguez 	 * 2. requeueing the same buffer to h/w
826203c4805SLuis R. Rodriguez 	 */
827ce9426d1SMing Lei 	dma_sync_single_for_cpu(sc->dev, bf->bf_buf_addr,
828cc861f74SLuis R. Rodriguez 			common->rx_bufsize,
829203c4805SLuis R. Rodriguez 			DMA_FROM_DEVICE);
830203c4805SLuis R. Rodriguez 
831b5c80475SFelix Fietkau 	return bf;
832b5c80475SFelix Fietkau }
833b5c80475SFelix Fietkau 
834d435700fSSujith /* Assumes you've already done the endian to CPU conversion */
835d435700fSSujith static bool ath9k_rx_accept(struct ath_common *common,
8369f167f64SVasanthakumar Thiagarajan 			    struct ieee80211_hdr *hdr,
837d435700fSSujith 			    struct ieee80211_rx_status *rxs,
838d435700fSSujith 			    struct ath_rx_status *rx_stats,
839d435700fSSujith 			    bool *decrypt_error)
840d435700fSSujith {
841d435700fSSujith 	struct ath_hw *ah = common->ah;
842d435700fSSujith 	__le16 fc;
843b7b1b512SVasanthakumar Thiagarajan 	u8 rx_status_len = ah->caps.rx_status_len;
844d435700fSSujith 
845d435700fSSujith 	fc = hdr->frame_control;
846d435700fSSujith 
847d435700fSSujith 	if (!rx_stats->rs_datalen)
848d435700fSSujith 		return false;
849d435700fSSujith         /*
850d435700fSSujith          * rs_status follows rs_datalen so if rs_datalen is too large
851d435700fSSujith          * we can take a hint that hardware corrupted it, so ignore
852d435700fSSujith          * those frames.
853d435700fSSujith          */
854b7b1b512SVasanthakumar Thiagarajan 	if (rx_stats->rs_datalen > (common->rx_bufsize - rx_status_len))
855d435700fSSujith 		return false;
856d435700fSSujith 
857d435700fSSujith 	/*
858d435700fSSujith 	 * rs_more indicates chained descriptors which can be used
859d435700fSSujith 	 * to link buffers together for a sort of scatter-gather
860d435700fSSujith 	 * operation.
861d435700fSSujith 	 * reject the frame, we don't support scatter-gather yet and
862d435700fSSujith 	 * the frame is probably corrupt anyway
863d435700fSSujith 	 */
864d435700fSSujith 	if (rx_stats->rs_more)
865d435700fSSujith 		return false;
866d435700fSSujith 
867d435700fSSujith 	/*
868d435700fSSujith 	 * The rx_stats->rs_status will not be set until the end of the
869d435700fSSujith 	 * chained descriptors so it can be ignored if rs_more is set. The
870d435700fSSujith 	 * rs_more will be false at the last element of the chained
871d435700fSSujith 	 * descriptors.
872d435700fSSujith 	 */
873d435700fSSujith 	if (rx_stats->rs_status != 0) {
874d435700fSSujith 		if (rx_stats->rs_status & ATH9K_RXERR_CRC)
875d435700fSSujith 			rxs->flag |= RX_FLAG_FAILED_FCS_CRC;
876d435700fSSujith 		if (rx_stats->rs_status & ATH9K_RXERR_PHY)
877d435700fSSujith 			return false;
878d435700fSSujith 
879d435700fSSujith 		if (rx_stats->rs_status & ATH9K_RXERR_DECRYPT) {
880d435700fSSujith 			*decrypt_error = true;
881d435700fSSujith 		} else if (rx_stats->rs_status & ATH9K_RXERR_MIC) {
882d435700fSSujith 			/*
88356363ddeSFelix Fietkau 			 * The MIC error bit is only valid if the frame
88456363ddeSFelix Fietkau 			 * is not a control frame or fragment, and it was
88556363ddeSFelix Fietkau 			 * decrypted using a valid TKIP key.
886d435700fSSujith 			 */
88756363ddeSFelix Fietkau 			if (!ieee80211_is_ctl(fc) &&
88856363ddeSFelix Fietkau 			    !ieee80211_has_morefrags(fc) &&
88956363ddeSFelix Fietkau 			    !(le16_to_cpu(hdr->seq_ctrl) & IEEE80211_SCTL_FRAG) &&
89056363ddeSFelix Fietkau 			    test_bit(rx_stats->rs_keyix, common->tkip_keymap))
891d435700fSSujith 				rxs->flag |= RX_FLAG_MMIC_ERROR;
89256363ddeSFelix Fietkau 			else
89356363ddeSFelix Fietkau 				rx_stats->rs_status &= ~ATH9K_RXERR_MIC;
894d435700fSSujith 		}
895d435700fSSujith 		/*
896d435700fSSujith 		 * Reject error frames with the exception of
897d435700fSSujith 		 * decryption and MIC failures. For monitor mode,
898d435700fSSujith 		 * we also ignore the CRC error.
899d435700fSSujith 		 */
900*5f841b41SRajkumar Manoharan 		if (ah->is_monitoring) {
901d435700fSSujith 			if (rx_stats->rs_status &
902d435700fSSujith 			    ~(ATH9K_RXERR_DECRYPT | ATH9K_RXERR_MIC |
903d435700fSSujith 			      ATH9K_RXERR_CRC))
904d435700fSSujith 				return false;
905d435700fSSujith 		} else {
906d435700fSSujith 			if (rx_stats->rs_status &
907d435700fSSujith 			    ~(ATH9K_RXERR_DECRYPT | ATH9K_RXERR_MIC)) {
908d435700fSSujith 				return false;
909d435700fSSujith 			}
910d435700fSSujith 		}
911d435700fSSujith 	}
912d435700fSSujith 	return true;
913d435700fSSujith }
914d435700fSSujith 
915d435700fSSujith static int ath9k_process_rate(struct ath_common *common,
916d435700fSSujith 			      struct ieee80211_hw *hw,
917d435700fSSujith 			      struct ath_rx_status *rx_stats,
9189f167f64SVasanthakumar Thiagarajan 			      struct ieee80211_rx_status *rxs)
919d435700fSSujith {
920d435700fSSujith 	struct ieee80211_supported_band *sband;
921d435700fSSujith 	enum ieee80211_band band;
922d435700fSSujith 	unsigned int i = 0;
923d435700fSSujith 
924d435700fSSujith 	band = hw->conf.channel->band;
925d435700fSSujith 	sband = hw->wiphy->bands[band];
926d435700fSSujith 
927d435700fSSujith 	if (rx_stats->rs_rate & 0x80) {
928d435700fSSujith 		/* HT rate */
929d435700fSSujith 		rxs->flag |= RX_FLAG_HT;
930d435700fSSujith 		if (rx_stats->rs_flags & ATH9K_RX_2040)
931d435700fSSujith 			rxs->flag |= RX_FLAG_40MHZ;
932d435700fSSujith 		if (rx_stats->rs_flags & ATH9K_RX_GI)
933d435700fSSujith 			rxs->flag |= RX_FLAG_SHORT_GI;
934d435700fSSujith 		rxs->rate_idx = rx_stats->rs_rate & 0x7f;
935d435700fSSujith 		return 0;
936d435700fSSujith 	}
937d435700fSSujith 
938d435700fSSujith 	for (i = 0; i < sband->n_bitrates; i++) {
939d435700fSSujith 		if (sband->bitrates[i].hw_value == rx_stats->rs_rate) {
940d435700fSSujith 			rxs->rate_idx = i;
941d435700fSSujith 			return 0;
942d435700fSSujith 		}
943d435700fSSujith 		if (sband->bitrates[i].hw_value_short == rx_stats->rs_rate) {
944d435700fSSujith 			rxs->flag |= RX_FLAG_SHORTPRE;
945d435700fSSujith 			rxs->rate_idx = i;
946d435700fSSujith 			return 0;
947d435700fSSujith 		}
948d435700fSSujith 	}
949d435700fSSujith 
950d435700fSSujith 	/*
951d435700fSSujith 	 * No valid hardware bitrate found -- we should not get here
952d435700fSSujith 	 * because hardware has already validated this frame as OK.
953d435700fSSujith 	 */
954d435700fSSujith 	ath_print(common, ATH_DBG_XMIT, "unsupported hw bitrate detected "
955d435700fSSujith 		  "0x%02x using 1 Mbit\n", rx_stats->rs_rate);
956d435700fSSujith 
957d435700fSSujith 	return -EINVAL;
958d435700fSSujith }
959d435700fSSujith 
960d435700fSSujith static void ath9k_process_rssi(struct ath_common *common,
961d435700fSSujith 			       struct ieee80211_hw *hw,
9629f167f64SVasanthakumar Thiagarajan 			       struct ieee80211_hdr *hdr,
963d435700fSSujith 			       struct ath_rx_status *rx_stats)
964d435700fSSujith {
965d435700fSSujith 	struct ath_hw *ah = common->ah;
966d435700fSSujith 	struct ieee80211_sta *sta;
967d435700fSSujith 	struct ath_node *an;
968d435700fSSujith 	int last_rssi = ATH_RSSI_DUMMY_MARKER;
969d435700fSSujith 	__le16 fc;
970d435700fSSujith 
971d435700fSSujith 	fc = hdr->frame_control;
972d435700fSSujith 
973d435700fSSujith 	rcu_read_lock();
974d435700fSSujith 	/*
975d435700fSSujith 	 * XXX: use ieee80211_find_sta! This requires quite a bit of work
976d435700fSSujith 	 * under the current ath9k virtual wiphy implementation as we have
977d435700fSSujith 	 * no way of tying a vif to wiphy. Typically vifs are attached to
978d435700fSSujith 	 * at least one sdata of a wiphy on mac80211 but with ath9k virtual
979d435700fSSujith 	 * wiphy you'd have to iterate over every wiphy and each sdata.
980d435700fSSujith 	 */
981686b9cb9SBen Greear 	if (is_multicast_ether_addr(hdr->addr1))
982686b9cb9SBen Greear 		sta = ieee80211_find_sta_by_ifaddr(hw, hdr->addr2, NULL);
983686b9cb9SBen Greear 	else
984686b9cb9SBen Greear 		sta = ieee80211_find_sta_by_ifaddr(hw, hdr->addr2, hdr->addr1);
985686b9cb9SBen Greear 
986d435700fSSujith 	if (sta) {
987d435700fSSujith 		an = (struct ath_node *) sta->drv_priv;
988d435700fSSujith 		if (rx_stats->rs_rssi != ATH9K_RSSI_BAD &&
989d435700fSSujith 		   !rx_stats->rs_moreaggr)
990d435700fSSujith 			ATH_RSSI_LPF(an->last_rssi, rx_stats->rs_rssi);
991d435700fSSujith 		last_rssi = an->last_rssi;
992d435700fSSujith 	}
993d435700fSSujith 	rcu_read_unlock();
994d435700fSSujith 
995d435700fSSujith 	if (likely(last_rssi != ATH_RSSI_DUMMY_MARKER))
996d435700fSSujith 		rx_stats->rs_rssi = ATH_EP_RND(last_rssi,
997d435700fSSujith 					      ATH_RSSI_EP_MULTIPLIER);
998d435700fSSujith 	if (rx_stats->rs_rssi < 0)
999d435700fSSujith 		rx_stats->rs_rssi = 0;
1000d435700fSSujith 
1001d435700fSSujith 	/* Update Beacon RSSI, this is used by ANI. */
1002d435700fSSujith 	if (ieee80211_is_beacon(fc))
1003d435700fSSujith 		ah->stats.avgbrssi = rx_stats->rs_rssi;
1004d435700fSSujith }
1005d435700fSSujith 
1006d435700fSSujith /*
1007d435700fSSujith  * For Decrypt or Demic errors, we only mark packet status here and always push
1008d435700fSSujith  * up the frame up to let mac80211 handle the actual error case, be it no
1009d435700fSSujith  * decryption key or real decryption error. This let us keep statistics there.
1010d435700fSSujith  */
1011d435700fSSujith static int ath9k_rx_skb_preprocess(struct ath_common *common,
1012d435700fSSujith 				   struct ieee80211_hw *hw,
10139f167f64SVasanthakumar Thiagarajan 				   struct ieee80211_hdr *hdr,
1014d435700fSSujith 				   struct ath_rx_status *rx_stats,
1015d435700fSSujith 				   struct ieee80211_rx_status *rx_status,
1016d435700fSSujith 				   bool *decrypt_error)
1017d435700fSSujith {
1018d435700fSSujith 	memset(rx_status, 0, sizeof(struct ieee80211_rx_status));
1019d435700fSSujith 
1020d435700fSSujith 	/*
1021d435700fSSujith 	 * everything but the rate is checked here, the rate check is done
1022d435700fSSujith 	 * separately to avoid doing two lookups for a rate for each frame.
1023d435700fSSujith 	 */
10249f167f64SVasanthakumar Thiagarajan 	if (!ath9k_rx_accept(common, hdr, rx_status, rx_stats, decrypt_error))
1025d435700fSSujith 		return -EINVAL;
1026d435700fSSujith 
10279f167f64SVasanthakumar Thiagarajan 	ath9k_process_rssi(common, hw, hdr, rx_stats);
1028d435700fSSujith 
10299f167f64SVasanthakumar Thiagarajan 	if (ath9k_process_rate(common, hw, rx_stats, rx_status))
1030d435700fSSujith 		return -EINVAL;
1031d435700fSSujith 
1032d435700fSSujith 	rx_status->band = hw->conf.channel->band;
1033d435700fSSujith 	rx_status->freq = hw->conf.channel->center_freq;
1034d435700fSSujith 	rx_status->signal = ATH_DEFAULT_NOISE_FLOOR + rx_stats->rs_rssi;
1035d435700fSSujith 	rx_status->antenna = rx_stats->rs_antenna;
1036d435700fSSujith 	rx_status->flag |= RX_FLAG_TSFT;
1037d435700fSSujith 
1038d435700fSSujith 	return 0;
1039d435700fSSujith }
1040d435700fSSujith 
1041d435700fSSujith static void ath9k_rx_skb_postprocess(struct ath_common *common,
1042d435700fSSujith 				     struct sk_buff *skb,
1043d435700fSSujith 				     struct ath_rx_status *rx_stats,
1044d435700fSSujith 				     struct ieee80211_rx_status *rxs,
1045d435700fSSujith 				     bool decrypt_error)
1046d435700fSSujith {
1047d435700fSSujith 	struct ath_hw *ah = common->ah;
1048d435700fSSujith 	struct ieee80211_hdr *hdr;
1049d435700fSSujith 	int hdrlen, padpos, padsize;
1050d435700fSSujith 	u8 keyix;
1051d435700fSSujith 	__le16 fc;
1052d435700fSSujith 
1053d435700fSSujith 	/* see if any padding is done by the hw and remove it */
1054d435700fSSujith 	hdr = (struct ieee80211_hdr *) skb->data;
1055d435700fSSujith 	hdrlen = ieee80211_get_hdrlen_from_skb(skb);
1056d435700fSSujith 	fc = hdr->frame_control;
1057d435700fSSujith 	padpos = ath9k_cmn_padpos(hdr->frame_control);
1058d435700fSSujith 
1059d435700fSSujith 	/* The MAC header is padded to have 32-bit boundary if the
1060d435700fSSujith 	 * packet payload is non-zero. The general calculation for
1061d435700fSSujith 	 * padsize would take into account odd header lengths:
1062d435700fSSujith 	 * padsize = (4 - padpos % 4) % 4; However, since only
1063d435700fSSujith 	 * even-length headers are used, padding can only be 0 or 2
1064d435700fSSujith 	 * bytes and we can optimize this a bit. In addition, we must
1065d435700fSSujith 	 * not try to remove padding from short control frames that do
1066d435700fSSujith 	 * not have payload. */
1067d435700fSSujith 	padsize = padpos & 3;
1068d435700fSSujith 	if (padsize && skb->len>=padpos+padsize+FCS_LEN) {
1069d435700fSSujith 		memmove(skb->data + padsize, skb->data, padpos);
1070d435700fSSujith 		skb_pull(skb, padsize);
1071d435700fSSujith 	}
1072d435700fSSujith 
1073d435700fSSujith 	keyix = rx_stats->rs_keyix;
1074d435700fSSujith 
1075d435700fSSujith 	if (!(keyix == ATH9K_RXKEYIX_INVALID) && !decrypt_error &&
1076d435700fSSujith 	    ieee80211_has_protected(fc)) {
1077d435700fSSujith 		rxs->flag |= RX_FLAG_DECRYPTED;
1078d435700fSSujith 	} else if (ieee80211_has_protected(fc)
1079d435700fSSujith 		   && !decrypt_error && skb->len >= hdrlen + 4) {
1080d435700fSSujith 		keyix = skb->data[hdrlen + 3] >> 6;
1081d435700fSSujith 
1082d435700fSSujith 		if (test_bit(keyix, common->keymap))
1083d435700fSSujith 			rxs->flag |= RX_FLAG_DECRYPTED;
1084d435700fSSujith 	}
1085d435700fSSujith 	if (ah->sw_mgmt_crypto &&
1086d435700fSSujith 	    (rxs->flag & RX_FLAG_DECRYPTED) &&
1087d435700fSSujith 	    ieee80211_is_mgmt(fc))
1088d435700fSSujith 		/* Use software decrypt for management frames. */
1089d435700fSSujith 		rxs->flag &= ~RX_FLAG_DECRYPTED;
1090d435700fSSujith }
1091b5c80475SFelix Fietkau 
1092102885a5SVasanthakumar Thiagarajan static void ath_lnaconf_alt_good_scan(struct ath_ant_comb *antcomb,
1093102885a5SVasanthakumar Thiagarajan 				      struct ath_hw_antcomb_conf ant_conf,
1094102885a5SVasanthakumar Thiagarajan 				      int main_rssi_avg)
1095102885a5SVasanthakumar Thiagarajan {
1096102885a5SVasanthakumar Thiagarajan 	antcomb->quick_scan_cnt = 0;
1097102885a5SVasanthakumar Thiagarajan 
1098102885a5SVasanthakumar Thiagarajan 	if (ant_conf.main_lna_conf == ATH_ANT_DIV_COMB_LNA2)
1099102885a5SVasanthakumar Thiagarajan 		antcomb->rssi_lna2 = main_rssi_avg;
1100102885a5SVasanthakumar Thiagarajan 	else if (ant_conf.main_lna_conf == ATH_ANT_DIV_COMB_LNA1)
1101102885a5SVasanthakumar Thiagarajan 		antcomb->rssi_lna1 = main_rssi_avg;
1102102885a5SVasanthakumar Thiagarajan 
1103102885a5SVasanthakumar Thiagarajan 	switch ((ant_conf.main_lna_conf << 4) | ant_conf.alt_lna_conf) {
1104102885a5SVasanthakumar Thiagarajan 	case (0x10): /* LNA2 A-B */
1105102885a5SVasanthakumar Thiagarajan 		antcomb->main_conf = ATH_ANT_DIV_COMB_LNA1_MINUS_LNA2;
1106102885a5SVasanthakumar Thiagarajan 		antcomb->first_quick_scan_conf =
1107102885a5SVasanthakumar Thiagarajan 			ATH_ANT_DIV_COMB_LNA1_PLUS_LNA2;
1108102885a5SVasanthakumar Thiagarajan 		antcomb->second_quick_scan_conf = ATH_ANT_DIV_COMB_LNA1;
1109102885a5SVasanthakumar Thiagarajan 		break;
1110102885a5SVasanthakumar Thiagarajan 	case (0x20): /* LNA1 A-B */
1111102885a5SVasanthakumar Thiagarajan 		antcomb->main_conf = ATH_ANT_DIV_COMB_LNA1_MINUS_LNA2;
1112102885a5SVasanthakumar Thiagarajan 		antcomb->first_quick_scan_conf =
1113102885a5SVasanthakumar Thiagarajan 			ATH_ANT_DIV_COMB_LNA1_PLUS_LNA2;
1114102885a5SVasanthakumar Thiagarajan 		antcomb->second_quick_scan_conf = ATH_ANT_DIV_COMB_LNA2;
1115102885a5SVasanthakumar Thiagarajan 		break;
1116102885a5SVasanthakumar Thiagarajan 	case (0x21): /* LNA1 LNA2 */
1117102885a5SVasanthakumar Thiagarajan 		antcomb->main_conf = ATH_ANT_DIV_COMB_LNA2;
1118102885a5SVasanthakumar Thiagarajan 		antcomb->first_quick_scan_conf =
1119102885a5SVasanthakumar Thiagarajan 			ATH_ANT_DIV_COMB_LNA1_MINUS_LNA2;
1120102885a5SVasanthakumar Thiagarajan 		antcomb->second_quick_scan_conf =
1121102885a5SVasanthakumar Thiagarajan 			ATH_ANT_DIV_COMB_LNA1_PLUS_LNA2;
1122102885a5SVasanthakumar Thiagarajan 		break;
1123102885a5SVasanthakumar Thiagarajan 	case (0x12): /* LNA2 LNA1 */
1124102885a5SVasanthakumar Thiagarajan 		antcomb->main_conf = ATH_ANT_DIV_COMB_LNA1;
1125102885a5SVasanthakumar Thiagarajan 		antcomb->first_quick_scan_conf =
1126102885a5SVasanthakumar Thiagarajan 			ATH_ANT_DIV_COMB_LNA1_MINUS_LNA2;
1127102885a5SVasanthakumar Thiagarajan 		antcomb->second_quick_scan_conf =
1128102885a5SVasanthakumar Thiagarajan 			ATH_ANT_DIV_COMB_LNA1_PLUS_LNA2;
1129102885a5SVasanthakumar Thiagarajan 		break;
1130102885a5SVasanthakumar Thiagarajan 	case (0x13): /* LNA2 A+B */
1131102885a5SVasanthakumar Thiagarajan 		antcomb->main_conf = ATH_ANT_DIV_COMB_LNA1_PLUS_LNA2;
1132102885a5SVasanthakumar Thiagarajan 		antcomb->first_quick_scan_conf =
1133102885a5SVasanthakumar Thiagarajan 			ATH_ANT_DIV_COMB_LNA1_MINUS_LNA2;
1134102885a5SVasanthakumar Thiagarajan 		antcomb->second_quick_scan_conf = ATH_ANT_DIV_COMB_LNA1;
1135102885a5SVasanthakumar Thiagarajan 		break;
1136102885a5SVasanthakumar Thiagarajan 	case (0x23): /* LNA1 A+B */
1137102885a5SVasanthakumar Thiagarajan 		antcomb->main_conf = ATH_ANT_DIV_COMB_LNA1_PLUS_LNA2;
1138102885a5SVasanthakumar Thiagarajan 		antcomb->first_quick_scan_conf =
1139102885a5SVasanthakumar Thiagarajan 			ATH_ANT_DIV_COMB_LNA1_MINUS_LNA2;
1140102885a5SVasanthakumar Thiagarajan 		antcomb->second_quick_scan_conf = ATH_ANT_DIV_COMB_LNA2;
1141102885a5SVasanthakumar Thiagarajan 		break;
1142102885a5SVasanthakumar Thiagarajan 	default:
1143102885a5SVasanthakumar Thiagarajan 		break;
1144102885a5SVasanthakumar Thiagarajan 	}
1145102885a5SVasanthakumar Thiagarajan }
1146102885a5SVasanthakumar Thiagarajan 
1147102885a5SVasanthakumar Thiagarajan static void ath_select_ant_div_from_quick_scan(struct ath_ant_comb *antcomb,
1148102885a5SVasanthakumar Thiagarajan 				struct ath_hw_antcomb_conf *div_ant_conf,
1149102885a5SVasanthakumar Thiagarajan 				int main_rssi_avg, int alt_rssi_avg,
1150102885a5SVasanthakumar Thiagarajan 				int alt_ratio)
1151102885a5SVasanthakumar Thiagarajan {
1152102885a5SVasanthakumar Thiagarajan 	/* alt_good */
1153102885a5SVasanthakumar Thiagarajan 	switch (antcomb->quick_scan_cnt) {
1154102885a5SVasanthakumar Thiagarajan 	case 0:
1155102885a5SVasanthakumar Thiagarajan 		/* set alt to main, and alt to first conf */
1156102885a5SVasanthakumar Thiagarajan 		div_ant_conf->main_lna_conf = antcomb->main_conf;
1157102885a5SVasanthakumar Thiagarajan 		div_ant_conf->alt_lna_conf = antcomb->first_quick_scan_conf;
1158102885a5SVasanthakumar Thiagarajan 		break;
1159102885a5SVasanthakumar Thiagarajan 	case 1:
1160102885a5SVasanthakumar Thiagarajan 		/* set alt to main, and alt to first conf */
1161102885a5SVasanthakumar Thiagarajan 		div_ant_conf->main_lna_conf = antcomb->main_conf;
1162102885a5SVasanthakumar Thiagarajan 		div_ant_conf->alt_lna_conf = antcomb->second_quick_scan_conf;
1163102885a5SVasanthakumar Thiagarajan 		antcomb->rssi_first = main_rssi_avg;
1164102885a5SVasanthakumar Thiagarajan 		antcomb->rssi_second = alt_rssi_avg;
1165102885a5SVasanthakumar Thiagarajan 
1166102885a5SVasanthakumar Thiagarajan 		if (antcomb->main_conf == ATH_ANT_DIV_COMB_LNA1) {
1167102885a5SVasanthakumar Thiagarajan 			/* main is LNA1 */
1168102885a5SVasanthakumar Thiagarajan 			if (ath_is_alt_ant_ratio_better(alt_ratio,
1169102885a5SVasanthakumar Thiagarajan 						ATH_ANT_DIV_COMB_LNA1_DELTA_HI,
1170102885a5SVasanthakumar Thiagarajan 						ATH_ANT_DIV_COMB_LNA1_DELTA_LOW,
1171102885a5SVasanthakumar Thiagarajan 						main_rssi_avg, alt_rssi_avg,
1172102885a5SVasanthakumar Thiagarajan 						antcomb->total_pkt_count))
1173102885a5SVasanthakumar Thiagarajan 				antcomb->first_ratio = true;
1174102885a5SVasanthakumar Thiagarajan 			else
1175102885a5SVasanthakumar Thiagarajan 				antcomb->first_ratio = false;
1176102885a5SVasanthakumar Thiagarajan 		} else if (antcomb->main_conf == ATH_ANT_DIV_COMB_LNA2) {
1177102885a5SVasanthakumar Thiagarajan 			if (ath_is_alt_ant_ratio_better(alt_ratio,
1178102885a5SVasanthakumar Thiagarajan 						ATH_ANT_DIV_COMB_LNA1_DELTA_MID,
1179102885a5SVasanthakumar Thiagarajan 						ATH_ANT_DIV_COMB_LNA1_DELTA_LOW,
1180102885a5SVasanthakumar Thiagarajan 						main_rssi_avg, alt_rssi_avg,
1181102885a5SVasanthakumar Thiagarajan 						antcomb->total_pkt_count))
1182102885a5SVasanthakumar Thiagarajan 				antcomb->first_ratio = true;
1183102885a5SVasanthakumar Thiagarajan 			else
1184102885a5SVasanthakumar Thiagarajan 				antcomb->first_ratio = false;
1185102885a5SVasanthakumar Thiagarajan 		} else {
1186102885a5SVasanthakumar Thiagarajan 			if ((((alt_ratio >= ATH_ANT_DIV_COMB_ALT_ANT_RATIO2) &&
1187102885a5SVasanthakumar Thiagarajan 			    (alt_rssi_avg > main_rssi_avg +
1188102885a5SVasanthakumar Thiagarajan 			    ATH_ANT_DIV_COMB_LNA1_DELTA_HI)) ||
1189102885a5SVasanthakumar Thiagarajan 			    (alt_rssi_avg > main_rssi_avg)) &&
1190102885a5SVasanthakumar Thiagarajan 			    (antcomb->total_pkt_count > 50))
1191102885a5SVasanthakumar Thiagarajan 				antcomb->first_ratio = true;
1192102885a5SVasanthakumar Thiagarajan 			else
1193102885a5SVasanthakumar Thiagarajan 				antcomb->first_ratio = false;
1194102885a5SVasanthakumar Thiagarajan 		}
1195102885a5SVasanthakumar Thiagarajan 		break;
1196102885a5SVasanthakumar Thiagarajan 	case 2:
1197102885a5SVasanthakumar Thiagarajan 		antcomb->alt_good = false;
1198102885a5SVasanthakumar Thiagarajan 		antcomb->scan_not_start = false;
1199102885a5SVasanthakumar Thiagarajan 		antcomb->scan = false;
1200102885a5SVasanthakumar Thiagarajan 		antcomb->rssi_first = main_rssi_avg;
1201102885a5SVasanthakumar Thiagarajan 		antcomb->rssi_third = alt_rssi_avg;
1202102885a5SVasanthakumar Thiagarajan 
1203102885a5SVasanthakumar Thiagarajan 		if (antcomb->second_quick_scan_conf == ATH_ANT_DIV_COMB_LNA1)
1204102885a5SVasanthakumar Thiagarajan 			antcomb->rssi_lna1 = alt_rssi_avg;
1205102885a5SVasanthakumar Thiagarajan 		else if (antcomb->second_quick_scan_conf ==
1206102885a5SVasanthakumar Thiagarajan 			 ATH_ANT_DIV_COMB_LNA2)
1207102885a5SVasanthakumar Thiagarajan 			antcomb->rssi_lna2 = alt_rssi_avg;
1208102885a5SVasanthakumar Thiagarajan 		else if (antcomb->second_quick_scan_conf ==
1209102885a5SVasanthakumar Thiagarajan 			 ATH_ANT_DIV_COMB_LNA1_PLUS_LNA2) {
1210102885a5SVasanthakumar Thiagarajan 			if (antcomb->main_conf == ATH_ANT_DIV_COMB_LNA2)
1211102885a5SVasanthakumar Thiagarajan 				antcomb->rssi_lna2 = main_rssi_avg;
1212102885a5SVasanthakumar Thiagarajan 			else if (antcomb->main_conf == ATH_ANT_DIV_COMB_LNA1)
1213102885a5SVasanthakumar Thiagarajan 				antcomb->rssi_lna1 = main_rssi_avg;
1214102885a5SVasanthakumar Thiagarajan 		}
1215102885a5SVasanthakumar Thiagarajan 
1216102885a5SVasanthakumar Thiagarajan 		if (antcomb->rssi_lna2 > antcomb->rssi_lna1 +
1217102885a5SVasanthakumar Thiagarajan 		    ATH_ANT_DIV_COMB_LNA1_LNA2_SWITCH_DELTA)
1218102885a5SVasanthakumar Thiagarajan 			div_ant_conf->main_lna_conf = ATH_ANT_DIV_COMB_LNA2;
1219102885a5SVasanthakumar Thiagarajan 		else
1220102885a5SVasanthakumar Thiagarajan 			div_ant_conf->main_lna_conf = ATH_ANT_DIV_COMB_LNA1;
1221102885a5SVasanthakumar Thiagarajan 
1222102885a5SVasanthakumar Thiagarajan 		if (antcomb->main_conf == ATH_ANT_DIV_COMB_LNA1) {
1223102885a5SVasanthakumar Thiagarajan 			if (ath_is_alt_ant_ratio_better(alt_ratio,
1224102885a5SVasanthakumar Thiagarajan 						ATH_ANT_DIV_COMB_LNA1_DELTA_HI,
1225102885a5SVasanthakumar Thiagarajan 						ATH_ANT_DIV_COMB_LNA1_DELTA_LOW,
1226102885a5SVasanthakumar Thiagarajan 						main_rssi_avg, alt_rssi_avg,
1227102885a5SVasanthakumar Thiagarajan 						antcomb->total_pkt_count))
1228102885a5SVasanthakumar Thiagarajan 				antcomb->second_ratio = true;
1229102885a5SVasanthakumar Thiagarajan 			else
1230102885a5SVasanthakumar Thiagarajan 				antcomb->second_ratio = false;
1231102885a5SVasanthakumar Thiagarajan 		} else if (antcomb->main_conf == ATH_ANT_DIV_COMB_LNA2) {
1232102885a5SVasanthakumar Thiagarajan 			if (ath_is_alt_ant_ratio_better(alt_ratio,
1233102885a5SVasanthakumar Thiagarajan 						ATH_ANT_DIV_COMB_LNA1_DELTA_MID,
1234102885a5SVasanthakumar Thiagarajan 						ATH_ANT_DIV_COMB_LNA1_DELTA_LOW,
1235102885a5SVasanthakumar Thiagarajan 						main_rssi_avg, alt_rssi_avg,
1236102885a5SVasanthakumar Thiagarajan 						antcomb->total_pkt_count))
1237102885a5SVasanthakumar Thiagarajan 				antcomb->second_ratio = true;
1238102885a5SVasanthakumar Thiagarajan 			else
1239102885a5SVasanthakumar Thiagarajan 				antcomb->second_ratio = false;
1240102885a5SVasanthakumar Thiagarajan 		} else {
1241102885a5SVasanthakumar Thiagarajan 			if ((((alt_ratio >= ATH_ANT_DIV_COMB_ALT_ANT_RATIO2) &&
1242102885a5SVasanthakumar Thiagarajan 			    (alt_rssi_avg > main_rssi_avg +
1243102885a5SVasanthakumar Thiagarajan 			    ATH_ANT_DIV_COMB_LNA1_DELTA_HI)) ||
1244102885a5SVasanthakumar Thiagarajan 			    (alt_rssi_avg > main_rssi_avg)) &&
1245102885a5SVasanthakumar Thiagarajan 			    (antcomb->total_pkt_count > 50))
1246102885a5SVasanthakumar Thiagarajan 				antcomb->second_ratio = true;
1247102885a5SVasanthakumar Thiagarajan 			else
1248102885a5SVasanthakumar Thiagarajan 				antcomb->second_ratio = false;
1249102885a5SVasanthakumar Thiagarajan 		}
1250102885a5SVasanthakumar Thiagarajan 
1251102885a5SVasanthakumar Thiagarajan 		/* set alt to the conf with maximun ratio */
1252102885a5SVasanthakumar Thiagarajan 		if (antcomb->first_ratio && antcomb->second_ratio) {
1253102885a5SVasanthakumar Thiagarajan 			if (antcomb->rssi_second > antcomb->rssi_third) {
1254102885a5SVasanthakumar Thiagarajan 				/* first alt*/
1255102885a5SVasanthakumar Thiagarajan 				if ((antcomb->first_quick_scan_conf ==
1256102885a5SVasanthakumar Thiagarajan 				    ATH_ANT_DIV_COMB_LNA1) ||
1257102885a5SVasanthakumar Thiagarajan 				    (antcomb->first_quick_scan_conf ==
1258102885a5SVasanthakumar Thiagarajan 				    ATH_ANT_DIV_COMB_LNA2))
1259102885a5SVasanthakumar Thiagarajan 					/* Set alt LNA1 or LNA2*/
1260102885a5SVasanthakumar Thiagarajan 					if (div_ant_conf->main_lna_conf ==
1261102885a5SVasanthakumar Thiagarajan 					    ATH_ANT_DIV_COMB_LNA2)
1262102885a5SVasanthakumar Thiagarajan 						div_ant_conf->alt_lna_conf =
1263102885a5SVasanthakumar Thiagarajan 							ATH_ANT_DIV_COMB_LNA1;
1264102885a5SVasanthakumar Thiagarajan 					else
1265102885a5SVasanthakumar Thiagarajan 						div_ant_conf->alt_lna_conf =
1266102885a5SVasanthakumar Thiagarajan 							ATH_ANT_DIV_COMB_LNA2;
1267102885a5SVasanthakumar Thiagarajan 				else
1268102885a5SVasanthakumar Thiagarajan 					/* Set alt to A+B or A-B */
1269102885a5SVasanthakumar Thiagarajan 					div_ant_conf->alt_lna_conf =
1270102885a5SVasanthakumar Thiagarajan 						antcomb->first_quick_scan_conf;
1271102885a5SVasanthakumar Thiagarajan 			} else if ((antcomb->second_quick_scan_conf ==
1272102885a5SVasanthakumar Thiagarajan 				   ATH_ANT_DIV_COMB_LNA1) ||
1273102885a5SVasanthakumar Thiagarajan 				   (antcomb->second_quick_scan_conf ==
1274102885a5SVasanthakumar Thiagarajan 				   ATH_ANT_DIV_COMB_LNA2)) {
1275102885a5SVasanthakumar Thiagarajan 				/* Set alt LNA1 or LNA2 */
1276102885a5SVasanthakumar Thiagarajan 				if (div_ant_conf->main_lna_conf ==
1277102885a5SVasanthakumar Thiagarajan 				    ATH_ANT_DIV_COMB_LNA2)
1278102885a5SVasanthakumar Thiagarajan 					div_ant_conf->alt_lna_conf =
1279102885a5SVasanthakumar Thiagarajan 						ATH_ANT_DIV_COMB_LNA1;
1280102885a5SVasanthakumar Thiagarajan 				else
1281102885a5SVasanthakumar Thiagarajan 					div_ant_conf->alt_lna_conf =
1282102885a5SVasanthakumar Thiagarajan 						ATH_ANT_DIV_COMB_LNA2;
1283102885a5SVasanthakumar Thiagarajan 			} else {
1284102885a5SVasanthakumar Thiagarajan 				/* Set alt to A+B or A-B */
1285102885a5SVasanthakumar Thiagarajan 				div_ant_conf->alt_lna_conf =
1286102885a5SVasanthakumar Thiagarajan 					antcomb->second_quick_scan_conf;
1287102885a5SVasanthakumar Thiagarajan 			}
1288102885a5SVasanthakumar Thiagarajan 		} else if (antcomb->first_ratio) {
1289102885a5SVasanthakumar Thiagarajan 			/* first alt */
1290102885a5SVasanthakumar Thiagarajan 			if ((antcomb->first_quick_scan_conf ==
1291102885a5SVasanthakumar Thiagarajan 			    ATH_ANT_DIV_COMB_LNA1) ||
1292102885a5SVasanthakumar Thiagarajan 			    (antcomb->first_quick_scan_conf ==
1293102885a5SVasanthakumar Thiagarajan 			    ATH_ANT_DIV_COMB_LNA2))
1294102885a5SVasanthakumar Thiagarajan 					/* Set alt LNA1 or LNA2 */
1295102885a5SVasanthakumar Thiagarajan 				if (div_ant_conf->main_lna_conf ==
1296102885a5SVasanthakumar Thiagarajan 				    ATH_ANT_DIV_COMB_LNA2)
1297102885a5SVasanthakumar Thiagarajan 					div_ant_conf->alt_lna_conf =
1298102885a5SVasanthakumar Thiagarajan 							ATH_ANT_DIV_COMB_LNA1;
1299102885a5SVasanthakumar Thiagarajan 				else
1300102885a5SVasanthakumar Thiagarajan 					div_ant_conf->alt_lna_conf =
1301102885a5SVasanthakumar Thiagarajan 							ATH_ANT_DIV_COMB_LNA2;
1302102885a5SVasanthakumar Thiagarajan 			else
1303102885a5SVasanthakumar Thiagarajan 				/* Set alt to A+B or A-B */
1304102885a5SVasanthakumar Thiagarajan 				div_ant_conf->alt_lna_conf =
1305102885a5SVasanthakumar Thiagarajan 						antcomb->first_quick_scan_conf;
1306102885a5SVasanthakumar Thiagarajan 		} else if (antcomb->second_ratio) {
1307102885a5SVasanthakumar Thiagarajan 				/* second alt */
1308102885a5SVasanthakumar Thiagarajan 			if ((antcomb->second_quick_scan_conf ==
1309102885a5SVasanthakumar Thiagarajan 			    ATH_ANT_DIV_COMB_LNA1) ||
1310102885a5SVasanthakumar Thiagarajan 			    (antcomb->second_quick_scan_conf ==
1311102885a5SVasanthakumar Thiagarajan 			    ATH_ANT_DIV_COMB_LNA2))
1312102885a5SVasanthakumar Thiagarajan 				/* Set alt LNA1 or LNA2 */
1313102885a5SVasanthakumar Thiagarajan 				if (div_ant_conf->main_lna_conf ==
1314102885a5SVasanthakumar Thiagarajan 				    ATH_ANT_DIV_COMB_LNA2)
1315102885a5SVasanthakumar Thiagarajan 					div_ant_conf->alt_lna_conf =
1316102885a5SVasanthakumar Thiagarajan 						ATH_ANT_DIV_COMB_LNA1;
1317102885a5SVasanthakumar Thiagarajan 				else
1318102885a5SVasanthakumar Thiagarajan 					div_ant_conf->alt_lna_conf =
1319102885a5SVasanthakumar Thiagarajan 						ATH_ANT_DIV_COMB_LNA2;
1320102885a5SVasanthakumar Thiagarajan 			else
1321102885a5SVasanthakumar Thiagarajan 				/* Set alt to A+B or A-B */
1322102885a5SVasanthakumar Thiagarajan 				div_ant_conf->alt_lna_conf =
1323102885a5SVasanthakumar Thiagarajan 						antcomb->second_quick_scan_conf;
1324102885a5SVasanthakumar Thiagarajan 		} else {
1325102885a5SVasanthakumar Thiagarajan 			/* main is largest */
1326102885a5SVasanthakumar Thiagarajan 			if ((antcomb->main_conf == ATH_ANT_DIV_COMB_LNA1) ||
1327102885a5SVasanthakumar Thiagarajan 			    (antcomb->main_conf == ATH_ANT_DIV_COMB_LNA2))
1328102885a5SVasanthakumar Thiagarajan 				/* Set alt LNA1 or LNA2 */
1329102885a5SVasanthakumar Thiagarajan 				if (div_ant_conf->main_lna_conf ==
1330102885a5SVasanthakumar Thiagarajan 				    ATH_ANT_DIV_COMB_LNA2)
1331102885a5SVasanthakumar Thiagarajan 					div_ant_conf->alt_lna_conf =
1332102885a5SVasanthakumar Thiagarajan 							ATH_ANT_DIV_COMB_LNA1;
1333102885a5SVasanthakumar Thiagarajan 				else
1334102885a5SVasanthakumar Thiagarajan 					div_ant_conf->alt_lna_conf =
1335102885a5SVasanthakumar Thiagarajan 							ATH_ANT_DIV_COMB_LNA2;
1336102885a5SVasanthakumar Thiagarajan 			else
1337102885a5SVasanthakumar Thiagarajan 				/* Set alt to A+B or A-B */
1338102885a5SVasanthakumar Thiagarajan 				div_ant_conf->alt_lna_conf = antcomb->main_conf;
1339102885a5SVasanthakumar Thiagarajan 		}
1340102885a5SVasanthakumar Thiagarajan 		break;
1341102885a5SVasanthakumar Thiagarajan 	default:
1342102885a5SVasanthakumar Thiagarajan 		break;
1343102885a5SVasanthakumar Thiagarajan 	}
1344102885a5SVasanthakumar Thiagarajan }
1345102885a5SVasanthakumar Thiagarajan 
13469bad82b8SJohn W. Linville static void ath_ant_div_conf_fast_divbias(struct ath_hw_antcomb_conf *ant_conf)
1347102885a5SVasanthakumar Thiagarajan {
1348102885a5SVasanthakumar Thiagarajan 	/* Adjust the fast_div_bias based on main and alt lna conf */
1349102885a5SVasanthakumar Thiagarajan 	switch ((ant_conf->main_lna_conf << 4) | ant_conf->alt_lna_conf) {
1350102885a5SVasanthakumar Thiagarajan 	case (0x01): /* A-B LNA2 */
1351102885a5SVasanthakumar Thiagarajan 		ant_conf->fast_div_bias = 0x3b;
1352102885a5SVasanthakumar Thiagarajan 		break;
1353102885a5SVasanthakumar Thiagarajan 	case (0x02): /* A-B LNA1 */
1354102885a5SVasanthakumar Thiagarajan 		ant_conf->fast_div_bias = 0x3d;
1355102885a5SVasanthakumar Thiagarajan 		break;
1356102885a5SVasanthakumar Thiagarajan 	case (0x03): /* A-B A+B */
1357102885a5SVasanthakumar Thiagarajan 		ant_conf->fast_div_bias = 0x1;
1358102885a5SVasanthakumar Thiagarajan 		break;
1359102885a5SVasanthakumar Thiagarajan 	case (0x10): /* LNA2 A-B */
1360102885a5SVasanthakumar Thiagarajan 		ant_conf->fast_div_bias = 0x7;
1361102885a5SVasanthakumar Thiagarajan 		break;
1362102885a5SVasanthakumar Thiagarajan 	case (0x12): /* LNA2 LNA1 */
1363102885a5SVasanthakumar Thiagarajan 		ant_conf->fast_div_bias = 0x2;
1364102885a5SVasanthakumar Thiagarajan 		break;
1365102885a5SVasanthakumar Thiagarajan 	case (0x13): /* LNA2 A+B */
1366102885a5SVasanthakumar Thiagarajan 		ant_conf->fast_div_bias = 0x7;
1367102885a5SVasanthakumar Thiagarajan 		break;
1368102885a5SVasanthakumar Thiagarajan 	case (0x20): /* LNA1 A-B */
1369102885a5SVasanthakumar Thiagarajan 		ant_conf->fast_div_bias = 0x6;
1370102885a5SVasanthakumar Thiagarajan 		break;
1371102885a5SVasanthakumar Thiagarajan 	case (0x21): /* LNA1 LNA2 */
1372102885a5SVasanthakumar Thiagarajan 		ant_conf->fast_div_bias = 0x0;
1373102885a5SVasanthakumar Thiagarajan 		break;
1374102885a5SVasanthakumar Thiagarajan 	case (0x23): /* LNA1 A+B */
1375102885a5SVasanthakumar Thiagarajan 		ant_conf->fast_div_bias = 0x6;
1376102885a5SVasanthakumar Thiagarajan 		break;
1377102885a5SVasanthakumar Thiagarajan 	case (0x30): /* A+B A-B */
1378102885a5SVasanthakumar Thiagarajan 		ant_conf->fast_div_bias = 0x1;
1379102885a5SVasanthakumar Thiagarajan 		break;
1380102885a5SVasanthakumar Thiagarajan 	case (0x31): /* A+B LNA2 */
1381102885a5SVasanthakumar Thiagarajan 		ant_conf->fast_div_bias = 0x3b;
1382102885a5SVasanthakumar Thiagarajan 		break;
1383102885a5SVasanthakumar Thiagarajan 	case (0x32): /* A+B LNA1 */
1384102885a5SVasanthakumar Thiagarajan 		ant_conf->fast_div_bias = 0x3d;
1385102885a5SVasanthakumar Thiagarajan 		break;
1386102885a5SVasanthakumar Thiagarajan 	default:
1387102885a5SVasanthakumar Thiagarajan 		break;
1388102885a5SVasanthakumar Thiagarajan 	}
1389102885a5SVasanthakumar Thiagarajan }
1390102885a5SVasanthakumar Thiagarajan 
1391102885a5SVasanthakumar Thiagarajan /* Antenna diversity and combining */
1392102885a5SVasanthakumar Thiagarajan static void ath_ant_comb_scan(struct ath_softc *sc, struct ath_rx_status *rs)
1393102885a5SVasanthakumar Thiagarajan {
1394102885a5SVasanthakumar Thiagarajan 	struct ath_hw_antcomb_conf div_ant_conf;
1395102885a5SVasanthakumar Thiagarajan 	struct ath_ant_comb *antcomb = &sc->ant_comb;
1396102885a5SVasanthakumar Thiagarajan 	int alt_ratio = 0, alt_rssi_avg = 0, main_rssi_avg = 0, curr_alt_set;
1397102885a5SVasanthakumar Thiagarajan 	int curr_main_set, curr_bias;
1398102885a5SVasanthakumar Thiagarajan 	int main_rssi = rs->rs_rssi_ctl0;
1399102885a5SVasanthakumar Thiagarajan 	int alt_rssi = rs->rs_rssi_ctl1;
1400102885a5SVasanthakumar Thiagarajan 	int rx_ant_conf,  main_ant_conf;
1401102885a5SVasanthakumar Thiagarajan 	bool short_scan = false;
1402102885a5SVasanthakumar Thiagarajan 
1403102885a5SVasanthakumar Thiagarajan 	rx_ant_conf = (rs->rs_rssi_ctl2 >> ATH_ANT_RX_CURRENT_SHIFT) &
1404102885a5SVasanthakumar Thiagarajan 		       ATH_ANT_RX_MASK;
1405102885a5SVasanthakumar Thiagarajan 	main_ant_conf = (rs->rs_rssi_ctl2 >> ATH_ANT_RX_MAIN_SHIFT) &
1406102885a5SVasanthakumar Thiagarajan 			 ATH_ANT_RX_MASK;
1407102885a5SVasanthakumar Thiagarajan 
1408102885a5SVasanthakumar Thiagarajan 	/* Record packet only when alt_rssi is positive */
1409102885a5SVasanthakumar Thiagarajan 	if (alt_rssi > 0) {
1410102885a5SVasanthakumar Thiagarajan 		antcomb->total_pkt_count++;
1411102885a5SVasanthakumar Thiagarajan 		antcomb->main_total_rssi += main_rssi;
1412102885a5SVasanthakumar Thiagarajan 		antcomb->alt_total_rssi  += alt_rssi;
1413102885a5SVasanthakumar Thiagarajan 		if (main_ant_conf == rx_ant_conf)
1414102885a5SVasanthakumar Thiagarajan 			antcomb->main_recv_cnt++;
1415102885a5SVasanthakumar Thiagarajan 		else
1416102885a5SVasanthakumar Thiagarajan 			antcomb->alt_recv_cnt++;
1417102885a5SVasanthakumar Thiagarajan 	}
1418102885a5SVasanthakumar Thiagarajan 
1419102885a5SVasanthakumar Thiagarajan 	/* Short scan check */
1420102885a5SVasanthakumar Thiagarajan 	if (antcomb->scan && antcomb->alt_good) {
1421102885a5SVasanthakumar Thiagarajan 		if (time_after(jiffies, antcomb->scan_start_time +
1422102885a5SVasanthakumar Thiagarajan 		    msecs_to_jiffies(ATH_ANT_DIV_COMB_SHORT_SCAN_INTR)))
1423102885a5SVasanthakumar Thiagarajan 			short_scan = true;
1424102885a5SVasanthakumar Thiagarajan 		else
1425102885a5SVasanthakumar Thiagarajan 			if (antcomb->total_pkt_count ==
1426102885a5SVasanthakumar Thiagarajan 			    ATH_ANT_DIV_COMB_SHORT_SCAN_PKTCOUNT) {
1427102885a5SVasanthakumar Thiagarajan 				alt_ratio = ((antcomb->alt_recv_cnt * 100) /
1428102885a5SVasanthakumar Thiagarajan 					    antcomb->total_pkt_count);
1429102885a5SVasanthakumar Thiagarajan 				if (alt_ratio < ATH_ANT_DIV_COMB_ALT_ANT_RATIO)
1430102885a5SVasanthakumar Thiagarajan 					short_scan = true;
1431102885a5SVasanthakumar Thiagarajan 			}
1432102885a5SVasanthakumar Thiagarajan 	}
1433102885a5SVasanthakumar Thiagarajan 
1434102885a5SVasanthakumar Thiagarajan 	if (((antcomb->total_pkt_count < ATH_ANT_DIV_COMB_MAX_PKTCOUNT) ||
1435102885a5SVasanthakumar Thiagarajan 	    rs->rs_moreaggr) && !short_scan)
1436102885a5SVasanthakumar Thiagarajan 		return;
1437102885a5SVasanthakumar Thiagarajan 
1438102885a5SVasanthakumar Thiagarajan 	if (antcomb->total_pkt_count) {
1439102885a5SVasanthakumar Thiagarajan 		alt_ratio = ((antcomb->alt_recv_cnt * 100) /
1440102885a5SVasanthakumar Thiagarajan 			     antcomb->total_pkt_count);
1441102885a5SVasanthakumar Thiagarajan 		main_rssi_avg = (antcomb->main_total_rssi /
1442102885a5SVasanthakumar Thiagarajan 				 antcomb->total_pkt_count);
1443102885a5SVasanthakumar Thiagarajan 		alt_rssi_avg = (antcomb->alt_total_rssi /
1444102885a5SVasanthakumar Thiagarajan 				 antcomb->total_pkt_count);
1445102885a5SVasanthakumar Thiagarajan 	}
1446102885a5SVasanthakumar Thiagarajan 
1447102885a5SVasanthakumar Thiagarajan 
1448102885a5SVasanthakumar Thiagarajan 	ath9k_hw_antdiv_comb_conf_get(sc->sc_ah, &div_ant_conf);
1449102885a5SVasanthakumar Thiagarajan 	curr_alt_set = div_ant_conf.alt_lna_conf;
1450102885a5SVasanthakumar Thiagarajan 	curr_main_set = div_ant_conf.main_lna_conf;
1451102885a5SVasanthakumar Thiagarajan 	curr_bias = div_ant_conf.fast_div_bias;
1452102885a5SVasanthakumar Thiagarajan 
1453102885a5SVasanthakumar Thiagarajan 	antcomb->count++;
1454102885a5SVasanthakumar Thiagarajan 
1455102885a5SVasanthakumar Thiagarajan 	if (antcomb->count == ATH_ANT_DIV_COMB_MAX_COUNT) {
1456102885a5SVasanthakumar Thiagarajan 		if (alt_ratio > ATH_ANT_DIV_COMB_ALT_ANT_RATIO) {
1457102885a5SVasanthakumar Thiagarajan 			ath_lnaconf_alt_good_scan(antcomb, div_ant_conf,
1458102885a5SVasanthakumar Thiagarajan 						  main_rssi_avg);
1459102885a5SVasanthakumar Thiagarajan 			antcomb->alt_good = true;
1460102885a5SVasanthakumar Thiagarajan 		} else {
1461102885a5SVasanthakumar Thiagarajan 			antcomb->alt_good = false;
1462102885a5SVasanthakumar Thiagarajan 		}
1463102885a5SVasanthakumar Thiagarajan 
1464102885a5SVasanthakumar Thiagarajan 		antcomb->count = 0;
1465102885a5SVasanthakumar Thiagarajan 		antcomb->scan = true;
1466102885a5SVasanthakumar Thiagarajan 		antcomb->scan_not_start = true;
1467102885a5SVasanthakumar Thiagarajan 	}
1468102885a5SVasanthakumar Thiagarajan 
1469102885a5SVasanthakumar Thiagarajan 	if (!antcomb->scan) {
1470102885a5SVasanthakumar Thiagarajan 		if (alt_ratio > ATH_ANT_DIV_COMB_ALT_ANT_RATIO) {
1471102885a5SVasanthakumar Thiagarajan 			if (curr_alt_set == ATH_ANT_DIV_COMB_LNA2) {
1472102885a5SVasanthakumar Thiagarajan 				/* Switch main and alt LNA */
1473102885a5SVasanthakumar Thiagarajan 				div_ant_conf.main_lna_conf =
1474102885a5SVasanthakumar Thiagarajan 						ATH_ANT_DIV_COMB_LNA2;
1475102885a5SVasanthakumar Thiagarajan 				div_ant_conf.alt_lna_conf  =
1476102885a5SVasanthakumar Thiagarajan 						ATH_ANT_DIV_COMB_LNA1;
1477102885a5SVasanthakumar Thiagarajan 			} else if (curr_alt_set == ATH_ANT_DIV_COMB_LNA1) {
1478102885a5SVasanthakumar Thiagarajan 				div_ant_conf.main_lna_conf =
1479102885a5SVasanthakumar Thiagarajan 						ATH_ANT_DIV_COMB_LNA1;
1480102885a5SVasanthakumar Thiagarajan 				div_ant_conf.alt_lna_conf  =
1481102885a5SVasanthakumar Thiagarajan 						ATH_ANT_DIV_COMB_LNA2;
1482102885a5SVasanthakumar Thiagarajan 			}
1483102885a5SVasanthakumar Thiagarajan 
1484102885a5SVasanthakumar Thiagarajan 			goto div_comb_done;
1485102885a5SVasanthakumar Thiagarajan 		} else if ((curr_alt_set != ATH_ANT_DIV_COMB_LNA1) &&
1486102885a5SVasanthakumar Thiagarajan 			   (curr_alt_set != ATH_ANT_DIV_COMB_LNA2)) {
1487102885a5SVasanthakumar Thiagarajan 			/* Set alt to another LNA */
1488102885a5SVasanthakumar Thiagarajan 			if (curr_main_set == ATH_ANT_DIV_COMB_LNA2)
1489102885a5SVasanthakumar Thiagarajan 				div_ant_conf.alt_lna_conf =
1490102885a5SVasanthakumar Thiagarajan 						ATH_ANT_DIV_COMB_LNA1;
1491102885a5SVasanthakumar Thiagarajan 			else if (curr_main_set == ATH_ANT_DIV_COMB_LNA1)
1492102885a5SVasanthakumar Thiagarajan 				div_ant_conf.alt_lna_conf =
1493102885a5SVasanthakumar Thiagarajan 						ATH_ANT_DIV_COMB_LNA2;
1494102885a5SVasanthakumar Thiagarajan 
1495102885a5SVasanthakumar Thiagarajan 			goto div_comb_done;
1496102885a5SVasanthakumar Thiagarajan 		}
1497102885a5SVasanthakumar Thiagarajan 
1498102885a5SVasanthakumar Thiagarajan 		if ((alt_rssi_avg < (main_rssi_avg +
1499102885a5SVasanthakumar Thiagarajan 		    ATH_ANT_DIV_COMB_LNA1_LNA2_DELTA)))
1500102885a5SVasanthakumar Thiagarajan 			goto div_comb_done;
1501102885a5SVasanthakumar Thiagarajan 	}
1502102885a5SVasanthakumar Thiagarajan 
1503102885a5SVasanthakumar Thiagarajan 	if (!antcomb->scan_not_start) {
1504102885a5SVasanthakumar Thiagarajan 		switch (curr_alt_set) {
1505102885a5SVasanthakumar Thiagarajan 		case ATH_ANT_DIV_COMB_LNA2:
1506102885a5SVasanthakumar Thiagarajan 			antcomb->rssi_lna2 = alt_rssi_avg;
1507102885a5SVasanthakumar Thiagarajan 			antcomb->rssi_lna1 = main_rssi_avg;
1508102885a5SVasanthakumar Thiagarajan 			antcomb->scan = true;
1509102885a5SVasanthakumar Thiagarajan 			/* set to A+B */
1510102885a5SVasanthakumar Thiagarajan 			div_ant_conf.main_lna_conf =
1511102885a5SVasanthakumar Thiagarajan 				ATH_ANT_DIV_COMB_LNA1;
1512102885a5SVasanthakumar Thiagarajan 			div_ant_conf.alt_lna_conf  =
1513102885a5SVasanthakumar Thiagarajan 				ATH_ANT_DIV_COMB_LNA1_PLUS_LNA2;
1514102885a5SVasanthakumar Thiagarajan 			break;
1515102885a5SVasanthakumar Thiagarajan 		case ATH_ANT_DIV_COMB_LNA1:
1516102885a5SVasanthakumar Thiagarajan 			antcomb->rssi_lna1 = alt_rssi_avg;
1517102885a5SVasanthakumar Thiagarajan 			antcomb->rssi_lna2 = main_rssi_avg;
1518102885a5SVasanthakumar Thiagarajan 			antcomb->scan = true;
1519102885a5SVasanthakumar Thiagarajan 			/* set to A+B */
1520102885a5SVasanthakumar Thiagarajan 			div_ant_conf.main_lna_conf = ATH_ANT_DIV_COMB_LNA2;
1521102885a5SVasanthakumar Thiagarajan 			div_ant_conf.alt_lna_conf  =
1522102885a5SVasanthakumar Thiagarajan 				ATH_ANT_DIV_COMB_LNA1_PLUS_LNA2;
1523102885a5SVasanthakumar Thiagarajan 			break;
1524102885a5SVasanthakumar Thiagarajan 		case ATH_ANT_DIV_COMB_LNA1_PLUS_LNA2:
1525102885a5SVasanthakumar Thiagarajan 			antcomb->rssi_add = alt_rssi_avg;
1526102885a5SVasanthakumar Thiagarajan 			antcomb->scan = true;
1527102885a5SVasanthakumar Thiagarajan 			/* set to A-B */
1528102885a5SVasanthakumar Thiagarajan 			div_ant_conf.alt_lna_conf =
1529102885a5SVasanthakumar Thiagarajan 				ATH_ANT_DIV_COMB_LNA1_MINUS_LNA2;
1530102885a5SVasanthakumar Thiagarajan 			break;
1531102885a5SVasanthakumar Thiagarajan 		case ATH_ANT_DIV_COMB_LNA1_MINUS_LNA2:
1532102885a5SVasanthakumar Thiagarajan 			antcomb->rssi_sub = alt_rssi_avg;
1533102885a5SVasanthakumar Thiagarajan 			antcomb->scan = false;
1534102885a5SVasanthakumar Thiagarajan 			if (antcomb->rssi_lna2 >
1535102885a5SVasanthakumar Thiagarajan 			    (antcomb->rssi_lna1 +
1536102885a5SVasanthakumar Thiagarajan 			    ATH_ANT_DIV_COMB_LNA1_LNA2_SWITCH_DELTA)) {
1537102885a5SVasanthakumar Thiagarajan 				/* use LNA2 as main LNA */
1538102885a5SVasanthakumar Thiagarajan 				if ((antcomb->rssi_add > antcomb->rssi_lna1) &&
1539102885a5SVasanthakumar Thiagarajan 				    (antcomb->rssi_add > antcomb->rssi_sub)) {
1540102885a5SVasanthakumar Thiagarajan 					/* set to A+B */
1541102885a5SVasanthakumar Thiagarajan 					div_ant_conf.main_lna_conf =
1542102885a5SVasanthakumar Thiagarajan 						ATH_ANT_DIV_COMB_LNA2;
1543102885a5SVasanthakumar Thiagarajan 					div_ant_conf.alt_lna_conf  =
1544102885a5SVasanthakumar Thiagarajan 						ATH_ANT_DIV_COMB_LNA1_PLUS_LNA2;
1545102885a5SVasanthakumar Thiagarajan 				} else if (antcomb->rssi_sub >
1546102885a5SVasanthakumar Thiagarajan 					   antcomb->rssi_lna1) {
1547102885a5SVasanthakumar Thiagarajan 					/* set to A-B */
1548102885a5SVasanthakumar Thiagarajan 					div_ant_conf.main_lna_conf =
1549102885a5SVasanthakumar Thiagarajan 						ATH_ANT_DIV_COMB_LNA2;
1550102885a5SVasanthakumar Thiagarajan 					div_ant_conf.alt_lna_conf =
1551102885a5SVasanthakumar Thiagarajan 						ATH_ANT_DIV_COMB_LNA1_MINUS_LNA2;
1552102885a5SVasanthakumar Thiagarajan 				} else {
1553102885a5SVasanthakumar Thiagarajan 					/* set to LNA1 */
1554102885a5SVasanthakumar Thiagarajan 					div_ant_conf.main_lna_conf =
1555102885a5SVasanthakumar Thiagarajan 						ATH_ANT_DIV_COMB_LNA2;
1556102885a5SVasanthakumar Thiagarajan 					div_ant_conf.alt_lna_conf =
1557102885a5SVasanthakumar Thiagarajan 						ATH_ANT_DIV_COMB_LNA1;
1558102885a5SVasanthakumar Thiagarajan 				}
1559102885a5SVasanthakumar Thiagarajan 			} else {
1560102885a5SVasanthakumar Thiagarajan 				/* use LNA1 as main LNA */
1561102885a5SVasanthakumar Thiagarajan 				if ((antcomb->rssi_add > antcomb->rssi_lna2) &&
1562102885a5SVasanthakumar Thiagarajan 				    (antcomb->rssi_add > antcomb->rssi_sub)) {
1563102885a5SVasanthakumar Thiagarajan 					/* set to A+B */
1564102885a5SVasanthakumar Thiagarajan 					div_ant_conf.main_lna_conf =
1565102885a5SVasanthakumar Thiagarajan 						ATH_ANT_DIV_COMB_LNA1;
1566102885a5SVasanthakumar Thiagarajan 					div_ant_conf.alt_lna_conf  =
1567102885a5SVasanthakumar Thiagarajan 						ATH_ANT_DIV_COMB_LNA1_PLUS_LNA2;
1568102885a5SVasanthakumar Thiagarajan 				} else if (antcomb->rssi_sub >
1569102885a5SVasanthakumar Thiagarajan 					   antcomb->rssi_lna1) {
1570102885a5SVasanthakumar Thiagarajan 					/* set to A-B */
1571102885a5SVasanthakumar Thiagarajan 					div_ant_conf.main_lna_conf =
1572102885a5SVasanthakumar Thiagarajan 						ATH_ANT_DIV_COMB_LNA1;
1573102885a5SVasanthakumar Thiagarajan 					div_ant_conf.alt_lna_conf =
1574102885a5SVasanthakumar Thiagarajan 						ATH_ANT_DIV_COMB_LNA1_MINUS_LNA2;
1575102885a5SVasanthakumar Thiagarajan 				} else {
1576102885a5SVasanthakumar Thiagarajan 					/* set to LNA2 */
1577102885a5SVasanthakumar Thiagarajan 					div_ant_conf.main_lna_conf =
1578102885a5SVasanthakumar Thiagarajan 						ATH_ANT_DIV_COMB_LNA1;
1579102885a5SVasanthakumar Thiagarajan 					div_ant_conf.alt_lna_conf =
1580102885a5SVasanthakumar Thiagarajan 						ATH_ANT_DIV_COMB_LNA2;
1581102885a5SVasanthakumar Thiagarajan 				}
1582102885a5SVasanthakumar Thiagarajan 			}
1583102885a5SVasanthakumar Thiagarajan 			break;
1584102885a5SVasanthakumar Thiagarajan 		default:
1585102885a5SVasanthakumar Thiagarajan 			break;
1586102885a5SVasanthakumar Thiagarajan 		}
1587102885a5SVasanthakumar Thiagarajan 	} else {
1588102885a5SVasanthakumar Thiagarajan 		if (!antcomb->alt_good) {
1589102885a5SVasanthakumar Thiagarajan 			antcomb->scan_not_start = false;
1590102885a5SVasanthakumar Thiagarajan 			/* Set alt to another LNA */
1591102885a5SVasanthakumar Thiagarajan 			if (curr_main_set == ATH_ANT_DIV_COMB_LNA2) {
1592102885a5SVasanthakumar Thiagarajan 				div_ant_conf.main_lna_conf =
1593102885a5SVasanthakumar Thiagarajan 						ATH_ANT_DIV_COMB_LNA2;
1594102885a5SVasanthakumar Thiagarajan 				div_ant_conf.alt_lna_conf =
1595102885a5SVasanthakumar Thiagarajan 						ATH_ANT_DIV_COMB_LNA1;
1596102885a5SVasanthakumar Thiagarajan 			} else if (curr_main_set == ATH_ANT_DIV_COMB_LNA1) {
1597102885a5SVasanthakumar Thiagarajan 				div_ant_conf.main_lna_conf =
1598102885a5SVasanthakumar Thiagarajan 						ATH_ANT_DIV_COMB_LNA1;
1599102885a5SVasanthakumar Thiagarajan 				div_ant_conf.alt_lna_conf =
1600102885a5SVasanthakumar Thiagarajan 						ATH_ANT_DIV_COMB_LNA2;
1601102885a5SVasanthakumar Thiagarajan 			}
1602102885a5SVasanthakumar Thiagarajan 			goto div_comb_done;
1603102885a5SVasanthakumar Thiagarajan 		}
1604102885a5SVasanthakumar Thiagarajan 	}
1605102885a5SVasanthakumar Thiagarajan 
1606102885a5SVasanthakumar Thiagarajan 	ath_select_ant_div_from_quick_scan(antcomb, &div_ant_conf,
1607102885a5SVasanthakumar Thiagarajan 					   main_rssi_avg, alt_rssi_avg,
1608102885a5SVasanthakumar Thiagarajan 					   alt_ratio);
1609102885a5SVasanthakumar Thiagarajan 
1610102885a5SVasanthakumar Thiagarajan 	antcomb->quick_scan_cnt++;
1611102885a5SVasanthakumar Thiagarajan 
1612102885a5SVasanthakumar Thiagarajan div_comb_done:
1613102885a5SVasanthakumar Thiagarajan 	ath_ant_div_conf_fast_divbias(&div_ant_conf);
1614102885a5SVasanthakumar Thiagarajan 
1615102885a5SVasanthakumar Thiagarajan 	ath9k_hw_antdiv_comb_conf_set(sc->sc_ah, &div_ant_conf);
1616102885a5SVasanthakumar Thiagarajan 
1617102885a5SVasanthakumar Thiagarajan 	antcomb->scan_start_time = jiffies;
1618102885a5SVasanthakumar Thiagarajan 	antcomb->total_pkt_count = 0;
1619102885a5SVasanthakumar Thiagarajan 	antcomb->main_total_rssi = 0;
1620102885a5SVasanthakumar Thiagarajan 	antcomb->alt_total_rssi = 0;
1621102885a5SVasanthakumar Thiagarajan 	antcomb->main_recv_cnt = 0;
1622102885a5SVasanthakumar Thiagarajan 	antcomb->alt_recv_cnt = 0;
1623102885a5SVasanthakumar Thiagarajan }
1624102885a5SVasanthakumar Thiagarajan 
1625b5c80475SFelix Fietkau int ath_rx_tasklet(struct ath_softc *sc, int flush, bool hp)
1626b5c80475SFelix Fietkau {
1627b5c80475SFelix Fietkau 	struct ath_buf *bf;
1628b5c80475SFelix Fietkau 	struct sk_buff *skb = NULL, *requeue_skb;
1629b5c80475SFelix Fietkau 	struct ieee80211_rx_status *rxs;
1630b5c80475SFelix Fietkau 	struct ath_hw *ah = sc->sc_ah;
1631b5c80475SFelix Fietkau 	struct ath_common *common = ath9k_hw_common(ah);
1632b5c80475SFelix Fietkau 	/*
1633b5c80475SFelix Fietkau 	 * The hw can techncically differ from common->hw when using ath9k
1634b5c80475SFelix Fietkau 	 * virtual wiphy so to account for that we iterate over the active
1635b5c80475SFelix Fietkau 	 * wiphys and find the appropriate wiphy and therefore hw.
1636b5c80475SFelix Fietkau 	 */
1637b5c80475SFelix Fietkau 	struct ieee80211_hw *hw = NULL;
1638b5c80475SFelix Fietkau 	struct ieee80211_hdr *hdr;
1639b5c80475SFelix Fietkau 	int retval;
1640b5c80475SFelix Fietkau 	bool decrypt_error = false;
1641b5c80475SFelix Fietkau 	struct ath_rx_status rs;
1642b5c80475SFelix Fietkau 	enum ath9k_rx_qtype qtype;
1643b5c80475SFelix Fietkau 	bool edma = !!(ah->caps.hw_caps & ATH9K_HW_CAP_EDMA);
1644b5c80475SFelix Fietkau 	int dma_type;
16455c6dd921SVasanthakumar Thiagarajan 	u8 rx_status_len = ah->caps.rx_status_len;
1646a6d2055bSFelix Fietkau 	u64 tsf = 0;
1647a6d2055bSFelix Fietkau 	u32 tsf_lower = 0;
16488ab2cd09SLuis R. Rodriguez 	unsigned long flags;
1649b5c80475SFelix Fietkau 
1650b5c80475SFelix Fietkau 	if (edma)
1651b5c80475SFelix Fietkau 		dma_type = DMA_BIDIRECTIONAL;
165256824223SMing Lei 	else
165356824223SMing Lei 		dma_type = DMA_FROM_DEVICE;
1654b5c80475SFelix Fietkau 
1655b5c80475SFelix Fietkau 	qtype = hp ? ATH9K_RX_QUEUE_HP : ATH9K_RX_QUEUE_LP;
1656b5c80475SFelix Fietkau 	spin_lock_bh(&sc->rx.rxbuflock);
1657b5c80475SFelix Fietkau 
1658a6d2055bSFelix Fietkau 	tsf = ath9k_hw_gettsf64(ah);
1659a6d2055bSFelix Fietkau 	tsf_lower = tsf & 0xffffffff;
1660a6d2055bSFelix Fietkau 
1661b5c80475SFelix Fietkau 	do {
1662b5c80475SFelix Fietkau 		/* If handling rx interrupt and flush is in progress => exit */
1663b5c80475SFelix Fietkau 		if ((sc->sc_flags & SC_OP_RXFLUSH) && (flush == 0))
1664b5c80475SFelix Fietkau 			break;
1665b5c80475SFelix Fietkau 
1666b5c80475SFelix Fietkau 		memset(&rs, 0, sizeof(rs));
1667b5c80475SFelix Fietkau 		if (edma)
1668b5c80475SFelix Fietkau 			bf = ath_edma_get_next_rx_buf(sc, &rs, qtype);
1669b5c80475SFelix Fietkau 		else
1670b5c80475SFelix Fietkau 			bf = ath_get_next_rx_buf(sc, &rs);
1671b5c80475SFelix Fietkau 
1672b5c80475SFelix Fietkau 		if (!bf)
1673b5c80475SFelix Fietkau 			break;
1674b5c80475SFelix Fietkau 
1675b5c80475SFelix Fietkau 		skb = bf->bf_mpdu;
1676b5c80475SFelix Fietkau 		if (!skb)
1677b5c80475SFelix Fietkau 			continue;
1678b5c80475SFelix Fietkau 
16795c6dd921SVasanthakumar Thiagarajan 		hdr = (struct ieee80211_hdr *) (skb->data + rx_status_len);
16805ca42627SLuis R. Rodriguez 		rxs =  IEEE80211_SKB_RXCB(skb);
16815ca42627SLuis R. Rodriguez 
1682b4afffc0SLuis R. Rodriguez 		hw = ath_get_virt_hw(sc, hdr);
1683b4afffc0SLuis R. Rodriguez 
168429bffa96SFelix Fietkau 		ath_debug_stat_rx(sc, &rs);
16851395d3f0SSujith 
1686203c4805SLuis R. Rodriguez 		/*
1687203c4805SLuis R. Rodriguez 		 * If we're asked to flush receive queue, directly
1688203c4805SLuis R. Rodriguez 		 * chain it back at the queue without processing it.
1689203c4805SLuis R. Rodriguez 		 */
1690203c4805SLuis R. Rodriguez 		if (flush)
1691203c4805SLuis R. Rodriguez 			goto requeue;
1692203c4805SLuis R. Rodriguez 
1693c8f3b721SJan Friedrich 		retval = ath9k_rx_skb_preprocess(common, hw, hdr, &rs,
1694c8f3b721SJan Friedrich 						 rxs, &decrypt_error);
1695c8f3b721SJan Friedrich 		if (retval)
1696c8f3b721SJan Friedrich 			goto requeue;
1697c8f3b721SJan Friedrich 
1698a6d2055bSFelix Fietkau 		rxs->mactime = (tsf & ~0xffffffffULL) | rs.rs_tstamp;
1699a6d2055bSFelix Fietkau 		if (rs.rs_tstamp > tsf_lower &&
1700a6d2055bSFelix Fietkau 		    unlikely(rs.rs_tstamp - tsf_lower > 0x10000000))
1701a6d2055bSFelix Fietkau 			rxs->mactime -= 0x100000000ULL;
1702a6d2055bSFelix Fietkau 
1703a6d2055bSFelix Fietkau 		if (rs.rs_tstamp < tsf_lower &&
1704a6d2055bSFelix Fietkau 		    unlikely(tsf_lower - rs.rs_tstamp > 0x10000000))
1705a6d2055bSFelix Fietkau 			rxs->mactime += 0x100000000ULL;
1706a6d2055bSFelix Fietkau 
1707203c4805SLuis R. Rodriguez 		/* Ensure we always have an skb to requeue once we are done
1708203c4805SLuis R. Rodriguez 		 * processing the current buffer's skb */
1709cc861f74SLuis R. Rodriguez 		requeue_skb = ath_rxbuf_alloc(common, common->rx_bufsize, GFP_ATOMIC);
1710203c4805SLuis R. Rodriguez 
1711203c4805SLuis R. Rodriguez 		/* If there is no memory we ignore the current RX'd frame,
1712203c4805SLuis R. Rodriguez 		 * tell hardware it can give us a new frame using the old
1713203c4805SLuis R. Rodriguez 		 * skb and put it at the tail of the sc->rx.rxbuf list for
1714203c4805SLuis R. Rodriguez 		 * processing. */
1715203c4805SLuis R. Rodriguez 		if (!requeue_skb)
1716203c4805SLuis R. Rodriguez 			goto requeue;
1717203c4805SLuis R. Rodriguez 
1718203c4805SLuis R. Rodriguez 		/* Unmap the frame */
1719203c4805SLuis R. Rodriguez 		dma_unmap_single(sc->dev, bf->bf_buf_addr,
1720cc861f74SLuis R. Rodriguez 				 common->rx_bufsize,
1721b5c80475SFelix Fietkau 				 dma_type);
1722203c4805SLuis R. Rodriguez 
1723b5c80475SFelix Fietkau 		skb_put(skb, rs.rs_datalen + ah->caps.rx_status_len);
1724b5c80475SFelix Fietkau 		if (ah->caps.rx_status_len)
1725b5c80475SFelix Fietkau 			skb_pull(skb, ah->caps.rx_status_len);
1726203c4805SLuis R. Rodriguez 
1727d435700fSSujith 		ath9k_rx_skb_postprocess(common, skb, &rs,
1728c9b14170SLuis R. Rodriguez 					 rxs, decrypt_error);
1729203c4805SLuis R. Rodriguez 
1730203c4805SLuis R. Rodriguez 		/* We will now give hardware our shiny new allocated skb */
1731203c4805SLuis R. Rodriguez 		bf->bf_mpdu = requeue_skb;
1732203c4805SLuis R. Rodriguez 		bf->bf_buf_addr = dma_map_single(sc->dev, requeue_skb->data,
1733cc861f74SLuis R. Rodriguez 						 common->rx_bufsize,
1734b5c80475SFelix Fietkau 						 dma_type);
1735203c4805SLuis R. Rodriguez 		if (unlikely(dma_mapping_error(sc->dev,
1736203c4805SLuis R. Rodriguez 			  bf->bf_buf_addr))) {
1737203c4805SLuis R. Rodriguez 			dev_kfree_skb_any(requeue_skb);
1738203c4805SLuis R. Rodriguez 			bf->bf_mpdu = NULL;
17396cf9e995SBen Greear 			bf->bf_buf_addr = 0;
1740c46917bbSLuis R. Rodriguez 			ath_print(common, ATH_DBG_FATAL,
1741203c4805SLuis R. Rodriguez 				  "dma_mapping_error() on RX\n");
17425ca42627SLuis R. Rodriguez 			ath_rx_send_to_mac80211(hw, sc, skb, rxs);
1743203c4805SLuis R. Rodriguez 			break;
1744203c4805SLuis R. Rodriguez 		}
1745203c4805SLuis R. Rodriguez 
1746203c4805SLuis R. Rodriguez 		/*
1747203c4805SLuis R. Rodriguez 		 * change the default rx antenna if rx diversity chooses the
1748203c4805SLuis R. Rodriguez 		 * other antenna 3 times in a row.
1749203c4805SLuis R. Rodriguez 		 */
175029bffa96SFelix Fietkau 		if (sc->rx.defant != rs.rs_antenna) {
1751203c4805SLuis R. Rodriguez 			if (++sc->rx.rxotherant >= 3)
175229bffa96SFelix Fietkau 				ath_setdefantenna(sc, rs.rs_antenna);
1753203c4805SLuis R. Rodriguez 		} else {
1754203c4805SLuis R. Rodriguez 			sc->rx.rxotherant = 0;
1755203c4805SLuis R. Rodriguez 		}
1756203c4805SLuis R. Rodriguez 
17578ab2cd09SLuis R. Rodriguez 		spin_lock_irqsave(&sc->sc_pm_lock, flags);
1758ededf1f8SVasanthakumar Thiagarajan 		if (unlikely(ath9k_check_auto_sleep(sc) ||
1759ededf1f8SVasanthakumar Thiagarajan 			     (sc->ps_flags & (PS_WAIT_FOR_BEACON |
17601b04b930SSujith 					      PS_WAIT_FOR_CAB |
1761ededf1f8SVasanthakumar Thiagarajan 					      PS_WAIT_FOR_PSPOLL_DATA))))
1762cc65965cSJouni Malinen 			ath_rx_ps(sc, skb);
17638ab2cd09SLuis R. Rodriguez 		spin_unlock_irqrestore(&sc->sc_pm_lock, flags);
1764cc65965cSJouni Malinen 
1765102885a5SVasanthakumar Thiagarajan 		if (ah->caps.hw_caps & ATH9K_HW_CAP_ANT_DIV_COMB)
1766102885a5SVasanthakumar Thiagarajan 			ath_ant_comb_scan(sc, &rs);
1767102885a5SVasanthakumar Thiagarajan 
17685ca42627SLuis R. Rodriguez 		ath_rx_send_to_mac80211(hw, sc, skb, rxs);
1769cc65965cSJouni Malinen 
1770203c4805SLuis R. Rodriguez requeue:
1771b5c80475SFelix Fietkau 		if (edma) {
1772b5c80475SFelix Fietkau 			list_add_tail(&bf->list, &sc->rx.rxbuf);
1773b5c80475SFelix Fietkau 			ath_rx_edma_buf_link(sc, qtype);
1774b5c80475SFelix Fietkau 		} else {
1775203c4805SLuis R. Rodriguez 			list_move_tail(&bf->list, &sc->rx.rxbuf);
1776203c4805SLuis R. Rodriguez 			ath_rx_buf_link(sc, bf);
1777b5c80475SFelix Fietkau 		}
1778203c4805SLuis R. Rodriguez 	} while (1);
1779203c4805SLuis R. Rodriguez 
1780203c4805SLuis R. Rodriguez 	spin_unlock_bh(&sc->rx.rxbuflock);
1781203c4805SLuis R. Rodriguez 
1782203c4805SLuis R. Rodriguez 	return 0;
1783203c4805SLuis R. Rodriguez }
1784