xref: /openbmc/linux/drivers/net/wireless/ath/ath9k/recv.c (revision 1e450285281bdf766272c181ecd43d4f2f0711ce)
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 	spin_unlock_bh(&sc->rx.rxbuflock);
301b5c80475SFelix Fietkau 
302b5c80475SFelix Fietkau 	ath_opmode_init(sc);
303b5c80475SFelix Fietkau 
30448a6a468SLuis R. Rodriguez 	ath9k_hw_startpcureceive(sc->sc_ah, (sc->sc_flags & SC_OP_OFFCHANNEL));
305b5c80475SFelix Fietkau }
306b5c80475SFelix Fietkau 
307b5c80475SFelix Fietkau static void ath_edma_stop_recv(struct ath_softc *sc)
308b5c80475SFelix Fietkau {
309b5c80475SFelix Fietkau 	ath_rx_remove_buffer(sc, ATH9K_RX_QUEUE_HP);
310b5c80475SFelix Fietkau 	ath_rx_remove_buffer(sc, ATH9K_RX_QUEUE_LP);
311b5c80475SFelix Fietkau }
312b5c80475SFelix Fietkau 
313203c4805SLuis R. Rodriguez int ath_rx_init(struct ath_softc *sc, int nbufs)
314203c4805SLuis R. Rodriguez {
31527c51f1aSLuis R. Rodriguez 	struct ath_common *common = ath9k_hw_common(sc->sc_ah);
316203c4805SLuis R. Rodriguez 	struct sk_buff *skb;
317203c4805SLuis R. Rodriguez 	struct ath_buf *bf;
318203c4805SLuis R. Rodriguez 	int error = 0;
319203c4805SLuis R. Rodriguez 
320203c4805SLuis R. Rodriguez 	spin_lock_init(&sc->rx.rxflushlock);
321203c4805SLuis R. Rodriguez 	sc->sc_flags &= ~SC_OP_RXFLUSH;
322203c4805SLuis R. Rodriguez 	spin_lock_init(&sc->rx.rxbuflock);
323203c4805SLuis R. Rodriguez 
324b5c80475SFelix Fietkau 	if (sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_EDMA) {
325b5c80475SFelix Fietkau 		return ath_rx_edma_init(sc, nbufs);
326b5c80475SFelix Fietkau 	} else {
327cc861f74SLuis R. Rodriguez 		common->rx_bufsize = roundup(IEEE80211_MAX_MPDU_LEN,
32827c51f1aSLuis R. Rodriguez 				min(common->cachelsz, (u16)64));
329203c4805SLuis R. Rodriguez 
330c46917bbSLuis R. Rodriguez 		ath_print(common, ATH_DBG_CONFIG, "cachelsz %u rxbufsize %u\n",
331cc861f74SLuis R. Rodriguez 				common->cachelsz, common->rx_bufsize);
332203c4805SLuis R. Rodriguez 
333203c4805SLuis R. Rodriguez 		/* Initialize rx descriptors */
334203c4805SLuis R. Rodriguez 
335203c4805SLuis R. Rodriguez 		error = ath_descdma_setup(sc, &sc->rx.rxdma, &sc->rx.rxbuf,
3364adfcdedSVasanthakumar Thiagarajan 				"rx", nbufs, 1, 0);
337203c4805SLuis R. Rodriguez 		if (error != 0) {
338c46917bbSLuis R. Rodriguez 			ath_print(common, ATH_DBG_FATAL,
339b5c80475SFelix Fietkau 				  "failed to allocate rx descriptors: %d\n",
340b5c80475SFelix Fietkau 				  error);
341203c4805SLuis R. Rodriguez 			goto err;
342203c4805SLuis R. Rodriguez 		}
343203c4805SLuis R. Rodriguez 
344203c4805SLuis R. Rodriguez 		list_for_each_entry(bf, &sc->rx.rxbuf, list) {
345b5c80475SFelix Fietkau 			skb = ath_rxbuf_alloc(common, common->rx_bufsize,
346b5c80475SFelix Fietkau 					      GFP_KERNEL);
347203c4805SLuis R. Rodriguez 			if (skb == NULL) {
348203c4805SLuis R. Rodriguez 				error = -ENOMEM;
349203c4805SLuis R. Rodriguez 				goto err;
350203c4805SLuis R. Rodriguez 			}
351203c4805SLuis R. Rodriguez 
352203c4805SLuis R. Rodriguez 			bf->bf_mpdu = skb;
353203c4805SLuis R. Rodriguez 			bf->bf_buf_addr = dma_map_single(sc->dev, skb->data,
354cc861f74SLuis R. Rodriguez 					common->rx_bufsize,
355203c4805SLuis R. Rodriguez 					DMA_FROM_DEVICE);
356203c4805SLuis R. Rodriguez 			if (unlikely(dma_mapping_error(sc->dev,
357203c4805SLuis R. Rodriguez 							bf->bf_buf_addr))) {
358203c4805SLuis R. Rodriguez 				dev_kfree_skb_any(skb);
359203c4805SLuis R. Rodriguez 				bf->bf_mpdu = NULL;
3606cf9e995SBen Greear 				bf->bf_buf_addr = 0;
361c46917bbSLuis R. Rodriguez 				ath_print(common, ATH_DBG_FATAL,
362203c4805SLuis R. Rodriguez 					  "dma_mapping_error() on RX init\n");
363203c4805SLuis R. Rodriguez 				error = -ENOMEM;
364203c4805SLuis R. Rodriguez 				goto err;
365203c4805SLuis R. Rodriguez 			}
366203c4805SLuis R. Rodriguez 		}
367203c4805SLuis R. Rodriguez 		sc->rx.rxlink = NULL;
368b5c80475SFelix Fietkau 	}
369203c4805SLuis R. Rodriguez 
370203c4805SLuis R. Rodriguez err:
371203c4805SLuis R. Rodriguez 	if (error)
372203c4805SLuis R. Rodriguez 		ath_rx_cleanup(sc);
373203c4805SLuis R. Rodriguez 
374203c4805SLuis R. Rodriguez 	return error;
375203c4805SLuis R. Rodriguez }
376203c4805SLuis R. Rodriguez 
377203c4805SLuis R. Rodriguez void ath_rx_cleanup(struct ath_softc *sc)
378203c4805SLuis R. Rodriguez {
379cc861f74SLuis R. Rodriguez 	struct ath_hw *ah = sc->sc_ah;
380cc861f74SLuis R. Rodriguez 	struct ath_common *common = ath9k_hw_common(ah);
381203c4805SLuis R. Rodriguez 	struct sk_buff *skb;
382203c4805SLuis R. Rodriguez 	struct ath_buf *bf;
383203c4805SLuis R. Rodriguez 
384b5c80475SFelix Fietkau 	if (sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_EDMA) {
385b5c80475SFelix Fietkau 		ath_rx_edma_cleanup(sc);
386b5c80475SFelix Fietkau 		return;
387b5c80475SFelix Fietkau 	} else {
388203c4805SLuis R. Rodriguez 		list_for_each_entry(bf, &sc->rx.rxbuf, list) {
389203c4805SLuis R. Rodriguez 			skb = bf->bf_mpdu;
390203c4805SLuis R. Rodriguez 			if (skb) {
391203c4805SLuis R. Rodriguez 				dma_unmap_single(sc->dev, bf->bf_buf_addr,
392b5c80475SFelix Fietkau 						common->rx_bufsize,
393b5c80475SFelix Fietkau 						DMA_FROM_DEVICE);
394203c4805SLuis R. Rodriguez 				dev_kfree_skb(skb);
3956cf9e995SBen Greear 				bf->bf_buf_addr = 0;
3966cf9e995SBen Greear 				bf->bf_mpdu = NULL;
397203c4805SLuis R. Rodriguez 			}
398203c4805SLuis R. Rodriguez 		}
399203c4805SLuis R. Rodriguez 
400203c4805SLuis R. Rodriguez 		if (sc->rx.rxdma.dd_desc_len != 0)
401203c4805SLuis R. Rodriguez 			ath_descdma_cleanup(sc, &sc->rx.rxdma, &sc->rx.rxbuf);
402203c4805SLuis R. Rodriguez 	}
403b5c80475SFelix Fietkau }
404203c4805SLuis R. Rodriguez 
405203c4805SLuis R. Rodriguez /*
406203c4805SLuis R. Rodriguez  * Calculate the receive filter according to the
407203c4805SLuis R. Rodriguez  * operating mode and state:
408203c4805SLuis R. Rodriguez  *
409203c4805SLuis R. Rodriguez  * o always accept unicast, broadcast, and multicast traffic
410203c4805SLuis R. Rodriguez  * o maintain current state of phy error reception (the hal
411203c4805SLuis R. Rodriguez  *   may enable phy error frames for noise immunity work)
412203c4805SLuis R. Rodriguez  * o probe request frames are accepted only when operating in
413203c4805SLuis R. Rodriguez  *   hostap, adhoc, or monitor modes
414203c4805SLuis R. Rodriguez  * o enable promiscuous mode according to the interface state
415203c4805SLuis R. Rodriguez  * o accept beacons:
416203c4805SLuis R. Rodriguez  *   - when operating in adhoc mode so the 802.11 layer creates
417203c4805SLuis R. Rodriguez  *     node table entries for peers,
418203c4805SLuis R. Rodriguez  *   - when operating in station mode for collecting rssi data when
419203c4805SLuis R. Rodriguez  *     the station is otherwise quiet, or
420203c4805SLuis R. Rodriguez  *   - when operating as a repeater so we see repeater-sta beacons
421203c4805SLuis R. Rodriguez  *   - when scanning
422203c4805SLuis R. Rodriguez  */
423203c4805SLuis R. Rodriguez 
424203c4805SLuis R. Rodriguez u32 ath_calcrxfilter(struct ath_softc *sc)
425203c4805SLuis R. Rodriguez {
426203c4805SLuis R. Rodriguez #define	RX_FILTER_PRESERVE (ATH9K_RX_FILTER_PHYERR | ATH9K_RX_FILTER_PHYRADAR)
427203c4805SLuis R. Rodriguez 
428203c4805SLuis R. Rodriguez 	u32 rfilt;
429203c4805SLuis R. Rodriguez 
430203c4805SLuis R. Rodriguez 	rfilt = (ath9k_hw_getrxfilter(sc->sc_ah) & RX_FILTER_PRESERVE)
431203c4805SLuis R. Rodriguez 		| ATH9K_RX_FILTER_UCAST | ATH9K_RX_FILTER_BCAST
432203c4805SLuis R. Rodriguez 		| ATH9K_RX_FILTER_MCAST;
433203c4805SLuis R. Rodriguez 
4349c1d8e4aSJouni Malinen 	if (sc->rx.rxfilter & FIF_PROBE_REQ)
435203c4805SLuis R. Rodriguez 		rfilt |= ATH9K_RX_FILTER_PROBEREQ;
436203c4805SLuis R. Rodriguez 
437203c4805SLuis R. Rodriguez 	/*
438203c4805SLuis R. Rodriguez 	 * Set promiscuous mode when FIF_PROMISC_IN_BSS is enabled for station
439203c4805SLuis R. Rodriguez 	 * mode interface or when in monitor mode. AP mode does not need this
440203c4805SLuis R. Rodriguez 	 * since it receives all in-BSS frames anyway.
441203c4805SLuis R. Rodriguez 	 */
442203c4805SLuis R. Rodriguez 	if (((sc->sc_ah->opmode != NL80211_IFTYPE_AP) &&
443203c4805SLuis R. Rodriguez 	     (sc->rx.rxfilter & FIF_PROMISC_IN_BSS)) ||
444203c4805SLuis R. Rodriguez 	    (sc->sc_ah->opmode == NL80211_IFTYPE_MONITOR))
445203c4805SLuis R. Rodriguez 		rfilt |= ATH9K_RX_FILTER_PROM;
446203c4805SLuis R. Rodriguez 
447203c4805SLuis R. Rodriguez 	if (sc->rx.rxfilter & FIF_CONTROL)
448203c4805SLuis R. Rodriguez 		rfilt |= ATH9K_RX_FILTER_CONTROL;
449203c4805SLuis R. Rodriguez 
450203c4805SLuis R. Rodriguez 	if ((sc->sc_ah->opmode == NL80211_IFTYPE_STATION) &&
451cfda6695SBen Greear 	    (sc->nvifs <= 1) &&
452203c4805SLuis R. Rodriguez 	    !(sc->rx.rxfilter & FIF_BCN_PRBRESP_PROMISC))
453203c4805SLuis R. Rodriguez 		rfilt |= ATH9K_RX_FILTER_MYBEACON;
454203c4805SLuis R. Rodriguez 	else
455203c4805SLuis R. Rodriguez 		rfilt |= ATH9K_RX_FILTER_BEACON;
456203c4805SLuis R. Rodriguez 
4577a37081eSFelix Fietkau 	if ((AR_SREV_9280_20_OR_LATER(sc->sc_ah) ||
458e17f83eaSFelix Fietkau 	    AR_SREV_9285_12_OR_LATER(sc->sc_ah)) &&
45966afad01SSenthil Balasubramanian 	    (sc->sc_ah->opmode == NL80211_IFTYPE_AP) &&
46066afad01SSenthil Balasubramanian 	    (sc->rx.rxfilter & FIF_PSPOLL))
461203c4805SLuis R. Rodriguez 		rfilt |= ATH9K_RX_FILTER_PSPOLL;
462203c4805SLuis R. Rodriguez 
4637ea310beSSujith 	if (conf_is_ht(&sc->hw->conf))
4647ea310beSSujith 		rfilt |= ATH9K_RX_FILTER_COMP_BAR;
4657ea310beSSujith 
466cfda6695SBen Greear 	if (sc->sec_wiphy || (sc->nvifs > 1) ||
467cfda6695SBen Greear 	    (sc->rx.rxfilter & FIF_OTHER_BSS)) {
4685eb6ba83SJavier Cardona 		/* The following may also be needed for other older chips */
4695eb6ba83SJavier Cardona 		if (sc->sc_ah->hw_version.macVersion == AR_SREV_VERSION_9160)
4705eb6ba83SJavier Cardona 			rfilt |= ATH9K_RX_FILTER_PROM;
471203c4805SLuis R. Rodriguez 		rfilt |= ATH9K_RX_FILTER_MCAST_BCAST_ALL;
472203c4805SLuis R. Rodriguez 	}
473203c4805SLuis R. Rodriguez 
474203c4805SLuis R. Rodriguez 	return rfilt;
475203c4805SLuis R. Rodriguez 
476203c4805SLuis R. Rodriguez #undef RX_FILTER_PRESERVE
477203c4805SLuis R. Rodriguez }
478203c4805SLuis R. Rodriguez 
479203c4805SLuis R. Rodriguez int ath_startrecv(struct ath_softc *sc)
480203c4805SLuis R. Rodriguez {
481203c4805SLuis R. Rodriguez 	struct ath_hw *ah = sc->sc_ah;
482203c4805SLuis R. Rodriguez 	struct ath_buf *bf, *tbf;
483203c4805SLuis R. Rodriguez 
484b5c80475SFelix Fietkau 	if (ah->caps.hw_caps & ATH9K_HW_CAP_EDMA) {
485b5c80475SFelix Fietkau 		ath_edma_start_recv(sc);
486b5c80475SFelix Fietkau 		return 0;
487b5c80475SFelix Fietkau 	}
488b5c80475SFelix Fietkau 
489203c4805SLuis R. Rodriguez 	spin_lock_bh(&sc->rx.rxbuflock);
490203c4805SLuis R. Rodriguez 	if (list_empty(&sc->rx.rxbuf))
491203c4805SLuis R. Rodriguez 		goto start_recv;
492203c4805SLuis R. Rodriguez 
493203c4805SLuis R. Rodriguez 	sc->rx.rxlink = NULL;
494203c4805SLuis R. Rodriguez 	list_for_each_entry_safe(bf, tbf, &sc->rx.rxbuf, list) {
495203c4805SLuis R. Rodriguez 		ath_rx_buf_link(sc, bf);
496203c4805SLuis R. Rodriguez 	}
497203c4805SLuis R. Rodriguez 
498203c4805SLuis R. Rodriguez 	/* We could have deleted elements so the list may be empty now */
499203c4805SLuis R. Rodriguez 	if (list_empty(&sc->rx.rxbuf))
500203c4805SLuis R. Rodriguez 		goto start_recv;
501203c4805SLuis R. Rodriguez 
502203c4805SLuis R. Rodriguez 	bf = list_first_entry(&sc->rx.rxbuf, struct ath_buf, list);
503203c4805SLuis R. Rodriguez 	ath9k_hw_putrxbuf(ah, bf->bf_daddr);
504203c4805SLuis R. Rodriguez 	ath9k_hw_rxena(ah);
505203c4805SLuis R. Rodriguez 
506203c4805SLuis R. Rodriguez start_recv:
507203c4805SLuis R. Rodriguez 	spin_unlock_bh(&sc->rx.rxbuflock);
508203c4805SLuis R. Rodriguez 	ath_opmode_init(sc);
50948a6a468SLuis R. Rodriguez 	ath9k_hw_startpcureceive(ah, (sc->sc_flags & SC_OP_OFFCHANNEL));
510203c4805SLuis R. Rodriguez 
511203c4805SLuis R. Rodriguez 	return 0;
512203c4805SLuis R. Rodriguez }
513203c4805SLuis R. Rodriguez 
514203c4805SLuis R. Rodriguez bool ath_stoprecv(struct ath_softc *sc)
515203c4805SLuis R. Rodriguez {
516203c4805SLuis R. Rodriguez 	struct ath_hw *ah = sc->sc_ah;
517203c4805SLuis R. Rodriguez 	bool stopped;
518203c4805SLuis R. Rodriguez 
519*1e450285SLuis R. Rodriguez 	spin_lock_bh(&sc->rx.rxbuflock);
520203c4805SLuis R. Rodriguez 	ath9k_hw_stoppcurecv(ah);
521203c4805SLuis R. Rodriguez 	ath9k_hw_setrxfilter(ah, 0);
522203c4805SLuis R. Rodriguez 	stopped = ath9k_hw_stopdmarecv(ah);
523b5c80475SFelix Fietkau 
524b5c80475SFelix Fietkau 	if (sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_EDMA)
525b5c80475SFelix Fietkau 		ath_edma_stop_recv(sc);
526b5c80475SFelix Fietkau 	else
527203c4805SLuis R. Rodriguez 		sc->rx.rxlink = NULL;
528*1e450285SLuis R. Rodriguez 	spin_unlock_bh(&sc->rx.rxbuflock);
529203c4805SLuis R. Rodriguez 
530203c4805SLuis R. Rodriguez 	return stopped;
531203c4805SLuis R. Rodriguez }
532203c4805SLuis R. Rodriguez 
533203c4805SLuis R. Rodriguez void ath_flushrecv(struct ath_softc *sc)
534203c4805SLuis R. Rodriguez {
535203c4805SLuis R. Rodriguez 	spin_lock_bh(&sc->rx.rxflushlock);
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 	spin_unlock_bh(&sc->rx.rxflushlock);
542203c4805SLuis R. Rodriguez }
543203c4805SLuis R. Rodriguez 
544cc65965cSJouni Malinen static bool ath_beacon_dtim_pending_cab(struct sk_buff *skb)
545cc65965cSJouni Malinen {
546cc65965cSJouni Malinen 	/* Check whether the Beacon frame has DTIM indicating buffered bc/mc */
547cc65965cSJouni Malinen 	struct ieee80211_mgmt *mgmt;
548cc65965cSJouni Malinen 	u8 *pos, *end, id, elen;
549cc65965cSJouni Malinen 	struct ieee80211_tim_ie *tim;
550cc65965cSJouni Malinen 
551cc65965cSJouni Malinen 	mgmt = (struct ieee80211_mgmt *)skb->data;
552cc65965cSJouni Malinen 	pos = mgmt->u.beacon.variable;
553cc65965cSJouni Malinen 	end = skb->data + skb->len;
554cc65965cSJouni Malinen 
555cc65965cSJouni Malinen 	while (pos + 2 < end) {
556cc65965cSJouni Malinen 		id = *pos++;
557cc65965cSJouni Malinen 		elen = *pos++;
558cc65965cSJouni Malinen 		if (pos + elen > end)
559cc65965cSJouni Malinen 			break;
560cc65965cSJouni Malinen 
561cc65965cSJouni Malinen 		if (id == WLAN_EID_TIM) {
562cc65965cSJouni Malinen 			if (elen < sizeof(*tim))
563cc65965cSJouni Malinen 				break;
564cc65965cSJouni Malinen 			tim = (struct ieee80211_tim_ie *) pos;
565cc65965cSJouni Malinen 			if (tim->dtim_count != 0)
566cc65965cSJouni Malinen 				break;
567cc65965cSJouni Malinen 			return tim->bitmap_ctrl & 0x01;
568cc65965cSJouni Malinen 		}
569cc65965cSJouni Malinen 
570cc65965cSJouni Malinen 		pos += elen;
571cc65965cSJouni Malinen 	}
572cc65965cSJouni Malinen 
573cc65965cSJouni Malinen 	return false;
574cc65965cSJouni Malinen }
575cc65965cSJouni Malinen 
576cc65965cSJouni Malinen static void ath_rx_ps_beacon(struct ath_softc *sc, struct sk_buff *skb)
577cc65965cSJouni Malinen {
578cc65965cSJouni Malinen 	struct ieee80211_mgmt *mgmt;
5791510718dSLuis R. Rodriguez 	struct ath_common *common = ath9k_hw_common(sc->sc_ah);
580cc65965cSJouni Malinen 
581cc65965cSJouni Malinen 	if (skb->len < 24 + 8 + 2 + 2)
582cc65965cSJouni Malinen 		return;
583cc65965cSJouni Malinen 
584cc65965cSJouni Malinen 	mgmt = (struct ieee80211_mgmt *)skb->data;
5851510718dSLuis R. Rodriguez 	if (memcmp(common->curbssid, mgmt->bssid, ETH_ALEN) != 0)
586cc65965cSJouni Malinen 		return; /* not from our current AP */
587cc65965cSJouni Malinen 
5881b04b930SSujith 	sc->ps_flags &= ~PS_WAIT_FOR_BEACON;
589293dc5dfSGabor Juhos 
5901b04b930SSujith 	if (sc->ps_flags & PS_BEACON_SYNC) {
5911b04b930SSujith 		sc->ps_flags &= ~PS_BEACON_SYNC;
592c46917bbSLuis R. Rodriguez 		ath_print(common, ATH_DBG_PS,
593c46917bbSLuis R. Rodriguez 			  "Reconfigure Beacon timers based on "
594ccdfeab6SJouni Malinen 			  "timestamp from the AP\n");
595ccdfeab6SJouni Malinen 		ath_beacon_config(sc, NULL);
596ccdfeab6SJouni Malinen 	}
597ccdfeab6SJouni Malinen 
598cc65965cSJouni Malinen 	if (ath_beacon_dtim_pending_cab(skb)) {
599cc65965cSJouni Malinen 		/*
600cc65965cSJouni Malinen 		 * Remain awake waiting for buffered broadcast/multicast
60158f5fffdSGabor Juhos 		 * frames. If the last broadcast/multicast frame is not
60258f5fffdSGabor Juhos 		 * received properly, the next beacon frame will work as
60358f5fffdSGabor Juhos 		 * a backup trigger for returning into NETWORK SLEEP state,
60458f5fffdSGabor Juhos 		 * so we are waiting for it as well.
605cc65965cSJouni Malinen 		 */
606c46917bbSLuis R. Rodriguez 		ath_print(common, ATH_DBG_PS, "Received DTIM beacon indicating "
607cc65965cSJouni Malinen 			  "buffered broadcast/multicast frame(s)\n");
6081b04b930SSujith 		sc->ps_flags |= PS_WAIT_FOR_CAB | PS_WAIT_FOR_BEACON;
609cc65965cSJouni Malinen 		return;
610cc65965cSJouni Malinen 	}
611cc65965cSJouni Malinen 
6121b04b930SSujith 	if (sc->ps_flags & PS_WAIT_FOR_CAB) {
613cc65965cSJouni Malinen 		/*
614cc65965cSJouni Malinen 		 * This can happen if a broadcast frame is dropped or the AP
615cc65965cSJouni Malinen 		 * fails to send a frame indicating that all CAB frames have
616cc65965cSJouni Malinen 		 * been delivered.
617cc65965cSJouni Malinen 		 */
6181b04b930SSujith 		sc->ps_flags &= ~PS_WAIT_FOR_CAB;
619c46917bbSLuis R. Rodriguez 		ath_print(common, ATH_DBG_PS,
620c46917bbSLuis R. Rodriguez 			  "PS wait for CAB frames timed out\n");
621cc65965cSJouni Malinen 	}
622cc65965cSJouni Malinen }
623cc65965cSJouni Malinen 
624cc65965cSJouni Malinen static void ath_rx_ps(struct ath_softc *sc, struct sk_buff *skb)
625cc65965cSJouni Malinen {
626cc65965cSJouni Malinen 	struct ieee80211_hdr *hdr;
627c46917bbSLuis R. Rodriguez 	struct ath_common *common = ath9k_hw_common(sc->sc_ah);
628cc65965cSJouni Malinen 
629cc65965cSJouni Malinen 	hdr = (struct ieee80211_hdr *)skb->data;
630cc65965cSJouni Malinen 
631cc65965cSJouni Malinen 	/* Process Beacon and CAB receive in PS state */
632ededf1f8SVasanthakumar Thiagarajan 	if (((sc->ps_flags & PS_WAIT_FOR_BEACON) || ath9k_check_auto_sleep(sc))
633ededf1f8SVasanthakumar Thiagarajan 	    && ieee80211_is_beacon(hdr->frame_control))
634cc65965cSJouni Malinen 		ath_rx_ps_beacon(sc, skb);
6351b04b930SSujith 	else if ((sc->ps_flags & PS_WAIT_FOR_CAB) &&
636cc65965cSJouni Malinen 		 (ieee80211_is_data(hdr->frame_control) ||
637cc65965cSJouni Malinen 		  ieee80211_is_action(hdr->frame_control)) &&
638cc65965cSJouni Malinen 		 is_multicast_ether_addr(hdr->addr1) &&
639cc65965cSJouni Malinen 		 !ieee80211_has_moredata(hdr->frame_control)) {
640cc65965cSJouni Malinen 		/*
641cc65965cSJouni Malinen 		 * No more broadcast/multicast frames to be received at this
642cc65965cSJouni Malinen 		 * point.
643cc65965cSJouni Malinen 		 */
6443fac6dfdSSenthil Balasubramanian 		sc->ps_flags &= ~(PS_WAIT_FOR_CAB | PS_WAIT_FOR_BEACON);
645c46917bbSLuis R. Rodriguez 		ath_print(common, ATH_DBG_PS,
646c46917bbSLuis R. Rodriguez 			  "All PS CAB frames received, back to sleep\n");
6471b04b930SSujith 	} else if ((sc->ps_flags & PS_WAIT_FOR_PSPOLL_DATA) &&
6489a23f9caSJouni Malinen 		   !is_multicast_ether_addr(hdr->addr1) &&
6499a23f9caSJouni Malinen 		   !ieee80211_has_morefrags(hdr->frame_control)) {
6501b04b930SSujith 		sc->ps_flags &= ~PS_WAIT_FOR_PSPOLL_DATA;
651c46917bbSLuis R. Rodriguez 		ath_print(common, ATH_DBG_PS,
652c46917bbSLuis R. Rodriguez 			  "Going back to sleep after having received "
653f643e51dSPavel Roskin 			  "PS-Poll data (0x%lx)\n",
6541b04b930SSujith 			sc->ps_flags & (PS_WAIT_FOR_BEACON |
6551b04b930SSujith 					PS_WAIT_FOR_CAB |
6561b04b930SSujith 					PS_WAIT_FOR_PSPOLL_DATA |
6571b04b930SSujith 					PS_WAIT_FOR_TX_ACK));
658cc65965cSJouni Malinen 	}
659cc65965cSJouni Malinen }
660cc65965cSJouni Malinen 
661b4afffc0SLuis R. Rodriguez static void ath_rx_send_to_mac80211(struct ieee80211_hw *hw,
662b4afffc0SLuis R. Rodriguez 				    struct ath_softc *sc, struct sk_buff *skb,
6635ca42627SLuis R. Rodriguez 				    struct ieee80211_rx_status *rxs)
6649d64a3cfSJouni Malinen {
6659d64a3cfSJouni Malinen 	struct ieee80211_hdr *hdr;
6669d64a3cfSJouni Malinen 
6679d64a3cfSJouni Malinen 	hdr = (struct ieee80211_hdr *)skb->data;
6689d64a3cfSJouni Malinen 
6699d64a3cfSJouni Malinen 	/* Send the frame to mac80211 */
6709d64a3cfSJouni Malinen 	if (is_multicast_ether_addr(hdr->addr1)) {
6719d64a3cfSJouni Malinen 		int i;
6729d64a3cfSJouni Malinen 		/*
6739d64a3cfSJouni Malinen 		 * Deliver broadcast/multicast frames to all suitable
6749d64a3cfSJouni Malinen 		 * virtual wiphys.
6759d64a3cfSJouni Malinen 		 */
6769d64a3cfSJouni Malinen 		/* TODO: filter based on channel configuration */
6779d64a3cfSJouni Malinen 		for (i = 0; i < sc->num_sec_wiphy; i++) {
6789d64a3cfSJouni Malinen 			struct ath_wiphy *aphy = sc->sec_wiphy[i];
6799d64a3cfSJouni Malinen 			struct sk_buff *nskb;
6809d64a3cfSJouni Malinen 			if (aphy == NULL)
6819d64a3cfSJouni Malinen 				continue;
6829d64a3cfSJouni Malinen 			nskb = skb_copy(skb, GFP_ATOMIC);
6835ca42627SLuis R. Rodriguez 			if (!nskb)
6845ca42627SLuis R. Rodriguez 				continue;
685f1d58c25SJohannes Berg 			ieee80211_rx(aphy->hw, nskb);
6869d64a3cfSJouni Malinen 		}
687f1d58c25SJohannes Berg 		ieee80211_rx(sc->hw, skb);
6885ca42627SLuis R. Rodriguez 	} else
6899d64a3cfSJouni Malinen 		/* Deliver unicast frames based on receiver address */
690b4afffc0SLuis R. Rodriguez 		ieee80211_rx(hw, skb);
6919d64a3cfSJouni Malinen }
6929d64a3cfSJouni Malinen 
693b5c80475SFelix Fietkau static bool ath_edma_get_buffers(struct ath_softc *sc,
694b5c80475SFelix Fietkau 				 enum ath9k_rx_qtype qtype)
695203c4805SLuis R. Rodriguez {
696b5c80475SFelix Fietkau 	struct ath_rx_edma *rx_edma = &sc->rx.rx_edma[qtype];
697203c4805SLuis R. Rodriguez 	struct ath_hw *ah = sc->sc_ah;
69827c51f1aSLuis R. Rodriguez 	struct ath_common *common = ath9k_hw_common(ah);
699b5c80475SFelix Fietkau 	struct sk_buff *skb;
700b5c80475SFelix Fietkau 	struct ath_buf *bf;
701b5c80475SFelix Fietkau 	int ret;
702203c4805SLuis R. Rodriguez 
703b5c80475SFelix Fietkau 	skb = skb_peek(&rx_edma->rx_fifo);
704b5c80475SFelix Fietkau 	if (!skb)
705b5c80475SFelix Fietkau 		return false;
706203c4805SLuis R. Rodriguez 
707b5c80475SFelix Fietkau 	bf = SKB_CB_ATHBUF(skb);
708b5c80475SFelix Fietkau 	BUG_ON(!bf);
709b5c80475SFelix Fietkau 
710ce9426d1SMing Lei 	dma_sync_single_for_cpu(sc->dev, bf->bf_buf_addr,
711b5c80475SFelix Fietkau 				common->rx_bufsize, DMA_FROM_DEVICE);
712b5c80475SFelix Fietkau 
713b5c80475SFelix Fietkau 	ret = ath9k_hw_process_rxdesc_edma(ah, NULL, skb->data);
714ce9426d1SMing Lei 	if (ret == -EINPROGRESS) {
715ce9426d1SMing Lei 		/*let device gain the buffer again*/
716ce9426d1SMing Lei 		dma_sync_single_for_device(sc->dev, bf->bf_buf_addr,
717ce9426d1SMing Lei 				common->rx_bufsize, DMA_FROM_DEVICE);
718b5c80475SFelix Fietkau 		return false;
719ce9426d1SMing Lei 	}
720b5c80475SFelix Fietkau 
721b5c80475SFelix Fietkau 	__skb_unlink(skb, &rx_edma->rx_fifo);
722b5c80475SFelix Fietkau 	if (ret == -EINVAL) {
723b5c80475SFelix Fietkau 		/* corrupt descriptor, skip this one and the following one */
724b5c80475SFelix Fietkau 		list_add_tail(&bf->list, &sc->rx.rxbuf);
725b5c80475SFelix Fietkau 		ath_rx_edma_buf_link(sc, qtype);
726b5c80475SFelix Fietkau 		skb = skb_peek(&rx_edma->rx_fifo);
727b5c80475SFelix Fietkau 		if (!skb)
728b5c80475SFelix Fietkau 			return true;
729b5c80475SFelix Fietkau 
730b5c80475SFelix Fietkau 		bf = SKB_CB_ATHBUF(skb);
731b5c80475SFelix Fietkau 		BUG_ON(!bf);
732b5c80475SFelix Fietkau 
733b5c80475SFelix Fietkau 		__skb_unlink(skb, &rx_edma->rx_fifo);
734b5c80475SFelix Fietkau 		list_add_tail(&bf->list, &sc->rx.rxbuf);
735b5c80475SFelix Fietkau 		ath_rx_edma_buf_link(sc, qtype);
736083e3e8dSVasanthakumar Thiagarajan 		return true;
737b5c80475SFelix Fietkau 	}
738b5c80475SFelix Fietkau 	skb_queue_tail(&rx_edma->rx_buffers, skb);
739b5c80475SFelix Fietkau 
740b5c80475SFelix Fietkau 	return true;
741b5c80475SFelix Fietkau }
742b5c80475SFelix Fietkau 
743b5c80475SFelix Fietkau static struct ath_buf *ath_edma_get_next_rx_buf(struct ath_softc *sc,
744b5c80475SFelix Fietkau 						struct ath_rx_status *rs,
745b5c80475SFelix Fietkau 						enum ath9k_rx_qtype qtype)
746b5c80475SFelix Fietkau {
747b5c80475SFelix Fietkau 	struct ath_rx_edma *rx_edma = &sc->rx.rx_edma[qtype];
748b5c80475SFelix Fietkau 	struct sk_buff *skb;
749b5c80475SFelix Fietkau 	struct ath_buf *bf;
750b5c80475SFelix Fietkau 
751b5c80475SFelix Fietkau 	while (ath_edma_get_buffers(sc, qtype));
752b5c80475SFelix Fietkau 	skb = __skb_dequeue(&rx_edma->rx_buffers);
753b5c80475SFelix Fietkau 	if (!skb)
754b5c80475SFelix Fietkau 		return NULL;
755b5c80475SFelix Fietkau 
756b5c80475SFelix Fietkau 	bf = SKB_CB_ATHBUF(skb);
757b5c80475SFelix Fietkau 	ath9k_hw_process_rxdesc_edma(sc->sc_ah, rs, skb->data);
758b5c80475SFelix Fietkau 	return bf;
759b5c80475SFelix Fietkau }
760b5c80475SFelix Fietkau 
761b5c80475SFelix Fietkau static struct ath_buf *ath_get_next_rx_buf(struct ath_softc *sc,
762b5c80475SFelix Fietkau 					   struct ath_rx_status *rs)
763b5c80475SFelix Fietkau {
764b5c80475SFelix Fietkau 	struct ath_hw *ah = sc->sc_ah;
765b5c80475SFelix Fietkau 	struct ath_common *common = ath9k_hw_common(ah);
766b5c80475SFelix Fietkau 	struct ath_desc *ds;
767b5c80475SFelix Fietkau 	struct ath_buf *bf;
768b5c80475SFelix Fietkau 	int ret;
769203c4805SLuis R. Rodriguez 
770203c4805SLuis R. Rodriguez 	if (list_empty(&sc->rx.rxbuf)) {
771203c4805SLuis R. Rodriguez 		sc->rx.rxlink = NULL;
772b5c80475SFelix Fietkau 		return NULL;
773203c4805SLuis R. Rodriguez 	}
774203c4805SLuis R. Rodriguez 
775203c4805SLuis R. Rodriguez 	bf = list_first_entry(&sc->rx.rxbuf, struct ath_buf, list);
776203c4805SLuis R. Rodriguez 	ds = bf->bf_desc;
777203c4805SLuis R. Rodriguez 
778203c4805SLuis R. Rodriguez 	/*
779203c4805SLuis R. Rodriguez 	 * Must provide the virtual address of the current
780203c4805SLuis R. Rodriguez 	 * descriptor, the physical address, and the virtual
781203c4805SLuis R. Rodriguez 	 * address of the next descriptor in the h/w chain.
782203c4805SLuis R. Rodriguez 	 * This allows the HAL to look ahead to see if the
783203c4805SLuis R. Rodriguez 	 * hardware is done with a descriptor by checking the
784203c4805SLuis R. Rodriguez 	 * done bit in the following descriptor and the address
785203c4805SLuis R. Rodriguez 	 * of the current descriptor the DMA engine is working
786203c4805SLuis R. Rodriguez 	 * on.  All this is necessary because of our use of
787203c4805SLuis R. Rodriguez 	 * a self-linked list to avoid rx overruns.
788203c4805SLuis R. Rodriguez 	 */
789b5c80475SFelix Fietkau 	ret = ath9k_hw_rxprocdesc(ah, ds, rs, 0);
790b5c80475SFelix Fietkau 	if (ret == -EINPROGRESS) {
79129bffa96SFelix Fietkau 		struct ath_rx_status trs;
792203c4805SLuis R. Rodriguez 		struct ath_buf *tbf;
793203c4805SLuis R. Rodriguez 		struct ath_desc *tds;
794203c4805SLuis R. Rodriguez 
79529bffa96SFelix Fietkau 		memset(&trs, 0, sizeof(trs));
796203c4805SLuis R. Rodriguez 		if (list_is_last(&bf->list, &sc->rx.rxbuf)) {
797203c4805SLuis R. Rodriguez 			sc->rx.rxlink = NULL;
798b5c80475SFelix Fietkau 			return NULL;
799203c4805SLuis R. Rodriguez 		}
800203c4805SLuis R. Rodriguez 
801203c4805SLuis R. Rodriguez 		tbf = list_entry(bf->list.next, struct ath_buf, list);
802203c4805SLuis R. Rodriguez 
803203c4805SLuis R. Rodriguez 		/*
804203c4805SLuis R. Rodriguez 		 * On some hardware the descriptor status words could
805203c4805SLuis R. Rodriguez 		 * get corrupted, including the done bit. Because of
806203c4805SLuis R. Rodriguez 		 * this, check if the next descriptor's done bit is
807203c4805SLuis R. Rodriguez 		 * set or not.
808203c4805SLuis R. Rodriguez 		 *
809203c4805SLuis R. Rodriguez 		 * If the next descriptor's done bit is set, the current
810203c4805SLuis R. Rodriguez 		 * descriptor has been corrupted. Force s/w to discard
811203c4805SLuis R. Rodriguez 		 * this descriptor and continue...
812203c4805SLuis R. Rodriguez 		 */
813203c4805SLuis R. Rodriguez 
814203c4805SLuis R. Rodriguez 		tds = tbf->bf_desc;
815b5c80475SFelix Fietkau 		ret = ath9k_hw_rxprocdesc(ah, tds, &trs, 0);
816b5c80475SFelix Fietkau 		if (ret == -EINPROGRESS)
817b5c80475SFelix Fietkau 			return NULL;
818203c4805SLuis R. Rodriguez 	}
819203c4805SLuis R. Rodriguez 
820b5c80475SFelix Fietkau 	if (!bf->bf_mpdu)
821b5c80475SFelix Fietkau 		return bf;
822203c4805SLuis R. Rodriguez 
823203c4805SLuis R. Rodriguez 	/*
824203c4805SLuis R. Rodriguez 	 * Synchronize the DMA transfer with CPU before
825203c4805SLuis R. Rodriguez 	 * 1. accessing the frame
826203c4805SLuis R. Rodriguez 	 * 2. requeueing the same buffer to h/w
827203c4805SLuis R. Rodriguez 	 */
828ce9426d1SMing Lei 	dma_sync_single_for_cpu(sc->dev, bf->bf_buf_addr,
829cc861f74SLuis R. Rodriguez 			common->rx_bufsize,
830203c4805SLuis R. Rodriguez 			DMA_FROM_DEVICE);
831203c4805SLuis R. Rodriguez 
832b5c80475SFelix Fietkau 	return bf;
833b5c80475SFelix Fietkau }
834b5c80475SFelix Fietkau 
835d435700fSSujith /* Assumes you've already done the endian to CPU conversion */
836d435700fSSujith static bool ath9k_rx_accept(struct ath_common *common,
8379f167f64SVasanthakumar Thiagarajan 			    struct ieee80211_hdr *hdr,
838d435700fSSujith 			    struct ieee80211_rx_status *rxs,
839d435700fSSujith 			    struct ath_rx_status *rx_stats,
840d435700fSSujith 			    bool *decrypt_error)
841d435700fSSujith {
842d435700fSSujith 	struct ath_hw *ah = common->ah;
843d435700fSSujith 	__le16 fc;
844b7b1b512SVasanthakumar Thiagarajan 	u8 rx_status_len = ah->caps.rx_status_len;
845d435700fSSujith 
846d435700fSSujith 	fc = hdr->frame_control;
847d435700fSSujith 
848d435700fSSujith 	if (!rx_stats->rs_datalen)
849d435700fSSujith 		return false;
850d435700fSSujith         /*
851d435700fSSujith          * rs_status follows rs_datalen so if rs_datalen is too large
852d435700fSSujith          * we can take a hint that hardware corrupted it, so ignore
853d435700fSSujith          * those frames.
854d435700fSSujith          */
855b7b1b512SVasanthakumar Thiagarajan 	if (rx_stats->rs_datalen > (common->rx_bufsize - rx_status_len))
856d435700fSSujith 		return false;
857d435700fSSujith 
858d435700fSSujith 	/*
859d435700fSSujith 	 * rs_more indicates chained descriptors which can be used
860d435700fSSujith 	 * to link buffers together for a sort of scatter-gather
861d435700fSSujith 	 * operation.
862d435700fSSujith 	 * reject the frame, we don't support scatter-gather yet and
863d435700fSSujith 	 * the frame is probably corrupt anyway
864d435700fSSujith 	 */
865d435700fSSujith 	if (rx_stats->rs_more)
866d435700fSSujith 		return false;
867d435700fSSujith 
868d435700fSSujith 	/*
869d435700fSSujith 	 * The rx_stats->rs_status will not be set until the end of the
870d435700fSSujith 	 * chained descriptors so it can be ignored if rs_more is set. The
871d435700fSSujith 	 * rs_more will be false at the last element of the chained
872d435700fSSujith 	 * descriptors.
873d435700fSSujith 	 */
874d435700fSSujith 	if (rx_stats->rs_status != 0) {
875d435700fSSujith 		if (rx_stats->rs_status & ATH9K_RXERR_CRC)
876d435700fSSujith 			rxs->flag |= RX_FLAG_FAILED_FCS_CRC;
877d435700fSSujith 		if (rx_stats->rs_status & ATH9K_RXERR_PHY)
878d435700fSSujith 			return false;
879d435700fSSujith 
880d435700fSSujith 		if (rx_stats->rs_status & ATH9K_RXERR_DECRYPT) {
881d435700fSSujith 			*decrypt_error = true;
882d435700fSSujith 		} else if (rx_stats->rs_status & ATH9K_RXERR_MIC) {
883d435700fSSujith 			/*
88456363ddeSFelix Fietkau 			 * The MIC error bit is only valid if the frame
88556363ddeSFelix Fietkau 			 * is not a control frame or fragment, and it was
88656363ddeSFelix Fietkau 			 * decrypted using a valid TKIP key.
887d435700fSSujith 			 */
88856363ddeSFelix Fietkau 			if (!ieee80211_is_ctl(fc) &&
88956363ddeSFelix Fietkau 			    !ieee80211_has_morefrags(fc) &&
89056363ddeSFelix Fietkau 			    !(le16_to_cpu(hdr->seq_ctrl) & IEEE80211_SCTL_FRAG) &&
89156363ddeSFelix Fietkau 			    test_bit(rx_stats->rs_keyix, common->tkip_keymap))
892d435700fSSujith 				rxs->flag |= RX_FLAG_MMIC_ERROR;
89356363ddeSFelix Fietkau 			else
89456363ddeSFelix Fietkau 				rx_stats->rs_status &= ~ATH9K_RXERR_MIC;
895d435700fSSujith 		}
896d435700fSSujith 		/*
897d435700fSSujith 		 * Reject error frames with the exception of
898d435700fSSujith 		 * decryption and MIC failures. For monitor mode,
899d435700fSSujith 		 * we also ignore the CRC error.
900d435700fSSujith 		 */
901d435700fSSujith 		if (ah->opmode == NL80211_IFTYPE_MONITOR) {
902d435700fSSujith 			if (rx_stats->rs_status &
903d435700fSSujith 			    ~(ATH9K_RXERR_DECRYPT | ATH9K_RXERR_MIC |
904d435700fSSujith 			      ATH9K_RXERR_CRC))
905d435700fSSujith 				return false;
906d435700fSSujith 		} else {
907d435700fSSujith 			if (rx_stats->rs_status &
908d435700fSSujith 			    ~(ATH9K_RXERR_DECRYPT | ATH9K_RXERR_MIC)) {
909d435700fSSujith 				return false;
910d435700fSSujith 			}
911d435700fSSujith 		}
912d435700fSSujith 	}
913d435700fSSujith 	return true;
914d435700fSSujith }
915d435700fSSujith 
916d435700fSSujith static int ath9k_process_rate(struct ath_common *common,
917d435700fSSujith 			      struct ieee80211_hw *hw,
918d435700fSSujith 			      struct ath_rx_status *rx_stats,
9199f167f64SVasanthakumar Thiagarajan 			      struct ieee80211_rx_status *rxs)
920d435700fSSujith {
921d435700fSSujith 	struct ieee80211_supported_band *sband;
922d435700fSSujith 	enum ieee80211_band band;
923d435700fSSujith 	unsigned int i = 0;
924d435700fSSujith 
925d435700fSSujith 	band = hw->conf.channel->band;
926d435700fSSujith 	sband = hw->wiphy->bands[band];
927d435700fSSujith 
928d435700fSSujith 	if (rx_stats->rs_rate & 0x80) {
929d435700fSSujith 		/* HT rate */
930d435700fSSujith 		rxs->flag |= RX_FLAG_HT;
931d435700fSSujith 		if (rx_stats->rs_flags & ATH9K_RX_2040)
932d435700fSSujith 			rxs->flag |= RX_FLAG_40MHZ;
933d435700fSSujith 		if (rx_stats->rs_flags & ATH9K_RX_GI)
934d435700fSSujith 			rxs->flag |= RX_FLAG_SHORT_GI;
935d435700fSSujith 		rxs->rate_idx = rx_stats->rs_rate & 0x7f;
936d435700fSSujith 		return 0;
937d435700fSSujith 	}
938d435700fSSujith 
939d435700fSSujith 	for (i = 0; i < sband->n_bitrates; i++) {
940d435700fSSujith 		if (sband->bitrates[i].hw_value == rx_stats->rs_rate) {
941d435700fSSujith 			rxs->rate_idx = i;
942d435700fSSujith 			return 0;
943d435700fSSujith 		}
944d435700fSSujith 		if (sband->bitrates[i].hw_value_short == rx_stats->rs_rate) {
945d435700fSSujith 			rxs->flag |= RX_FLAG_SHORTPRE;
946d435700fSSujith 			rxs->rate_idx = i;
947d435700fSSujith 			return 0;
948d435700fSSujith 		}
949d435700fSSujith 	}
950d435700fSSujith 
951d435700fSSujith 	/*
952d435700fSSujith 	 * No valid hardware bitrate found -- we should not get here
953d435700fSSujith 	 * because hardware has already validated this frame as OK.
954d435700fSSujith 	 */
955d435700fSSujith 	ath_print(common, ATH_DBG_XMIT, "unsupported hw bitrate detected "
956d435700fSSujith 		  "0x%02x using 1 Mbit\n", rx_stats->rs_rate);
957d435700fSSujith 
958d435700fSSujith 	return -EINVAL;
959d435700fSSujith }
960d435700fSSujith 
961d435700fSSujith static void ath9k_process_rssi(struct ath_common *common,
962d435700fSSujith 			       struct ieee80211_hw *hw,
9639f167f64SVasanthakumar Thiagarajan 			       struct ieee80211_hdr *hdr,
964d435700fSSujith 			       struct ath_rx_status *rx_stats)
965d435700fSSujith {
966d435700fSSujith 	struct ath_hw *ah = common->ah;
967d435700fSSujith 	struct ieee80211_sta *sta;
968d435700fSSujith 	struct ath_node *an;
969d435700fSSujith 	int last_rssi = ATH_RSSI_DUMMY_MARKER;
970d435700fSSujith 	__le16 fc;
971d435700fSSujith 
972d435700fSSujith 	fc = hdr->frame_control;
973d435700fSSujith 
974d435700fSSujith 	rcu_read_lock();
975d435700fSSujith 	/*
976d435700fSSujith 	 * XXX: use ieee80211_find_sta! This requires quite a bit of work
977d435700fSSujith 	 * under the current ath9k virtual wiphy implementation as we have
978d435700fSSujith 	 * no way of tying a vif to wiphy. Typically vifs are attached to
979d435700fSSujith 	 * at least one sdata of a wiphy on mac80211 but with ath9k virtual
980d435700fSSujith 	 * wiphy you'd have to iterate over every wiphy and each sdata.
981d435700fSSujith 	 */
982686b9cb9SBen Greear 	if (is_multicast_ether_addr(hdr->addr1))
983686b9cb9SBen Greear 		sta = ieee80211_find_sta_by_ifaddr(hw, hdr->addr2, NULL);
984686b9cb9SBen Greear 	else
985686b9cb9SBen Greear 		sta = ieee80211_find_sta_by_ifaddr(hw, hdr->addr2, hdr->addr1);
986686b9cb9SBen Greear 
987d435700fSSujith 	if (sta) {
988d435700fSSujith 		an = (struct ath_node *) sta->drv_priv;
989d435700fSSujith 		if (rx_stats->rs_rssi != ATH9K_RSSI_BAD &&
990d435700fSSujith 		   !rx_stats->rs_moreaggr)
991d435700fSSujith 			ATH_RSSI_LPF(an->last_rssi, rx_stats->rs_rssi);
992d435700fSSujith 		last_rssi = an->last_rssi;
993d435700fSSujith 	}
994d435700fSSujith 	rcu_read_unlock();
995d435700fSSujith 
996d435700fSSujith 	if (likely(last_rssi != ATH_RSSI_DUMMY_MARKER))
997d435700fSSujith 		rx_stats->rs_rssi = ATH_EP_RND(last_rssi,
998d435700fSSujith 					      ATH_RSSI_EP_MULTIPLIER);
999d435700fSSujith 	if (rx_stats->rs_rssi < 0)
1000d435700fSSujith 		rx_stats->rs_rssi = 0;
1001d435700fSSujith 
1002d435700fSSujith 	/* Update Beacon RSSI, this is used by ANI. */
1003d435700fSSujith 	if (ieee80211_is_beacon(fc))
1004d435700fSSujith 		ah->stats.avgbrssi = rx_stats->rs_rssi;
1005d435700fSSujith }
1006d435700fSSujith 
1007d435700fSSujith /*
1008d435700fSSujith  * For Decrypt or Demic errors, we only mark packet status here and always push
1009d435700fSSujith  * up the frame up to let mac80211 handle the actual error case, be it no
1010d435700fSSujith  * decryption key or real decryption error. This let us keep statistics there.
1011d435700fSSujith  */
1012d435700fSSujith static int ath9k_rx_skb_preprocess(struct ath_common *common,
1013d435700fSSujith 				   struct ieee80211_hw *hw,
10149f167f64SVasanthakumar Thiagarajan 				   struct ieee80211_hdr *hdr,
1015d435700fSSujith 				   struct ath_rx_status *rx_stats,
1016d435700fSSujith 				   struct ieee80211_rx_status *rx_status,
1017d435700fSSujith 				   bool *decrypt_error)
1018d435700fSSujith {
1019d435700fSSujith 	memset(rx_status, 0, sizeof(struct ieee80211_rx_status));
1020d435700fSSujith 
1021d435700fSSujith 	/*
1022d435700fSSujith 	 * everything but the rate is checked here, the rate check is done
1023d435700fSSujith 	 * separately to avoid doing two lookups for a rate for each frame.
1024d435700fSSujith 	 */
10259f167f64SVasanthakumar Thiagarajan 	if (!ath9k_rx_accept(common, hdr, rx_status, rx_stats, decrypt_error))
1026d435700fSSujith 		return -EINVAL;
1027d435700fSSujith 
10289f167f64SVasanthakumar Thiagarajan 	ath9k_process_rssi(common, hw, hdr, rx_stats);
1029d435700fSSujith 
10309f167f64SVasanthakumar Thiagarajan 	if (ath9k_process_rate(common, hw, rx_stats, rx_status))
1031d435700fSSujith 		return -EINVAL;
1032d435700fSSujith 
1033d435700fSSujith 	rx_status->band = hw->conf.channel->band;
1034d435700fSSujith 	rx_status->freq = hw->conf.channel->center_freq;
1035d435700fSSujith 	rx_status->signal = ATH_DEFAULT_NOISE_FLOOR + rx_stats->rs_rssi;
1036d435700fSSujith 	rx_status->antenna = rx_stats->rs_antenna;
1037d435700fSSujith 	rx_status->flag |= RX_FLAG_TSFT;
1038d435700fSSujith 
1039d435700fSSujith 	return 0;
1040d435700fSSujith }
1041d435700fSSujith 
1042d435700fSSujith static void ath9k_rx_skb_postprocess(struct ath_common *common,
1043d435700fSSujith 				     struct sk_buff *skb,
1044d435700fSSujith 				     struct ath_rx_status *rx_stats,
1045d435700fSSujith 				     struct ieee80211_rx_status *rxs,
1046d435700fSSujith 				     bool decrypt_error)
1047d435700fSSujith {
1048d435700fSSujith 	struct ath_hw *ah = common->ah;
1049d435700fSSujith 	struct ieee80211_hdr *hdr;
1050d435700fSSujith 	int hdrlen, padpos, padsize;
1051d435700fSSujith 	u8 keyix;
1052d435700fSSujith 	__le16 fc;
1053d435700fSSujith 
1054d435700fSSujith 	/* see if any padding is done by the hw and remove it */
1055d435700fSSujith 	hdr = (struct ieee80211_hdr *) skb->data;
1056d435700fSSujith 	hdrlen = ieee80211_get_hdrlen_from_skb(skb);
1057d435700fSSujith 	fc = hdr->frame_control;
1058d435700fSSujith 	padpos = ath9k_cmn_padpos(hdr->frame_control);
1059d435700fSSujith 
1060d435700fSSujith 	/* The MAC header is padded to have 32-bit boundary if the
1061d435700fSSujith 	 * packet payload is non-zero. The general calculation for
1062d435700fSSujith 	 * padsize would take into account odd header lengths:
1063d435700fSSujith 	 * padsize = (4 - padpos % 4) % 4; However, since only
1064d435700fSSujith 	 * even-length headers are used, padding can only be 0 or 2
1065d435700fSSujith 	 * bytes and we can optimize this a bit. In addition, we must
1066d435700fSSujith 	 * not try to remove padding from short control frames that do
1067d435700fSSujith 	 * not have payload. */
1068d435700fSSujith 	padsize = padpos & 3;
1069d435700fSSujith 	if (padsize && skb->len>=padpos+padsize+FCS_LEN) {
1070d435700fSSujith 		memmove(skb->data + padsize, skb->data, padpos);
1071d435700fSSujith 		skb_pull(skb, padsize);
1072d435700fSSujith 	}
1073d435700fSSujith 
1074d435700fSSujith 	keyix = rx_stats->rs_keyix;
1075d435700fSSujith 
1076d435700fSSujith 	if (!(keyix == ATH9K_RXKEYIX_INVALID) && !decrypt_error &&
1077d435700fSSujith 	    ieee80211_has_protected(fc)) {
1078d435700fSSujith 		rxs->flag |= RX_FLAG_DECRYPTED;
1079d435700fSSujith 	} else if (ieee80211_has_protected(fc)
1080d435700fSSujith 		   && !decrypt_error && skb->len >= hdrlen + 4) {
1081d435700fSSujith 		keyix = skb->data[hdrlen + 3] >> 6;
1082d435700fSSujith 
1083d435700fSSujith 		if (test_bit(keyix, common->keymap))
1084d435700fSSujith 			rxs->flag |= RX_FLAG_DECRYPTED;
1085d435700fSSujith 	}
1086d435700fSSujith 	if (ah->sw_mgmt_crypto &&
1087d435700fSSujith 	    (rxs->flag & RX_FLAG_DECRYPTED) &&
1088d435700fSSujith 	    ieee80211_is_mgmt(fc))
1089d435700fSSujith 		/* Use software decrypt for management frames. */
1090d435700fSSujith 		rxs->flag &= ~RX_FLAG_DECRYPTED;
1091d435700fSSujith }
1092b5c80475SFelix Fietkau 
1093102885a5SVasanthakumar Thiagarajan static void ath_lnaconf_alt_good_scan(struct ath_ant_comb *antcomb,
1094102885a5SVasanthakumar Thiagarajan 				      struct ath_hw_antcomb_conf ant_conf,
1095102885a5SVasanthakumar Thiagarajan 				      int main_rssi_avg)
1096102885a5SVasanthakumar Thiagarajan {
1097102885a5SVasanthakumar Thiagarajan 	antcomb->quick_scan_cnt = 0;
1098102885a5SVasanthakumar Thiagarajan 
1099102885a5SVasanthakumar Thiagarajan 	if (ant_conf.main_lna_conf == ATH_ANT_DIV_COMB_LNA2)
1100102885a5SVasanthakumar Thiagarajan 		antcomb->rssi_lna2 = main_rssi_avg;
1101102885a5SVasanthakumar Thiagarajan 	else if (ant_conf.main_lna_conf == ATH_ANT_DIV_COMB_LNA1)
1102102885a5SVasanthakumar Thiagarajan 		antcomb->rssi_lna1 = main_rssi_avg;
1103102885a5SVasanthakumar Thiagarajan 
1104102885a5SVasanthakumar Thiagarajan 	switch ((ant_conf.main_lna_conf << 4) | ant_conf.alt_lna_conf) {
1105102885a5SVasanthakumar Thiagarajan 	case (0x10): /* LNA2 A-B */
1106102885a5SVasanthakumar Thiagarajan 		antcomb->main_conf = ATH_ANT_DIV_COMB_LNA1_MINUS_LNA2;
1107102885a5SVasanthakumar Thiagarajan 		antcomb->first_quick_scan_conf =
1108102885a5SVasanthakumar Thiagarajan 			ATH_ANT_DIV_COMB_LNA1_PLUS_LNA2;
1109102885a5SVasanthakumar Thiagarajan 		antcomb->second_quick_scan_conf = ATH_ANT_DIV_COMB_LNA1;
1110102885a5SVasanthakumar Thiagarajan 		break;
1111102885a5SVasanthakumar Thiagarajan 	case (0x20): /* LNA1 A-B */
1112102885a5SVasanthakumar Thiagarajan 		antcomb->main_conf = ATH_ANT_DIV_COMB_LNA1_MINUS_LNA2;
1113102885a5SVasanthakumar Thiagarajan 		antcomb->first_quick_scan_conf =
1114102885a5SVasanthakumar Thiagarajan 			ATH_ANT_DIV_COMB_LNA1_PLUS_LNA2;
1115102885a5SVasanthakumar Thiagarajan 		antcomb->second_quick_scan_conf = ATH_ANT_DIV_COMB_LNA2;
1116102885a5SVasanthakumar Thiagarajan 		break;
1117102885a5SVasanthakumar Thiagarajan 	case (0x21): /* LNA1 LNA2 */
1118102885a5SVasanthakumar Thiagarajan 		antcomb->main_conf = ATH_ANT_DIV_COMB_LNA2;
1119102885a5SVasanthakumar Thiagarajan 		antcomb->first_quick_scan_conf =
1120102885a5SVasanthakumar Thiagarajan 			ATH_ANT_DIV_COMB_LNA1_MINUS_LNA2;
1121102885a5SVasanthakumar Thiagarajan 		antcomb->second_quick_scan_conf =
1122102885a5SVasanthakumar Thiagarajan 			ATH_ANT_DIV_COMB_LNA1_PLUS_LNA2;
1123102885a5SVasanthakumar Thiagarajan 		break;
1124102885a5SVasanthakumar Thiagarajan 	case (0x12): /* LNA2 LNA1 */
1125102885a5SVasanthakumar Thiagarajan 		antcomb->main_conf = ATH_ANT_DIV_COMB_LNA1;
1126102885a5SVasanthakumar Thiagarajan 		antcomb->first_quick_scan_conf =
1127102885a5SVasanthakumar Thiagarajan 			ATH_ANT_DIV_COMB_LNA1_MINUS_LNA2;
1128102885a5SVasanthakumar Thiagarajan 		antcomb->second_quick_scan_conf =
1129102885a5SVasanthakumar Thiagarajan 			ATH_ANT_DIV_COMB_LNA1_PLUS_LNA2;
1130102885a5SVasanthakumar Thiagarajan 		break;
1131102885a5SVasanthakumar Thiagarajan 	case (0x13): /* LNA2 A+B */
1132102885a5SVasanthakumar Thiagarajan 		antcomb->main_conf = ATH_ANT_DIV_COMB_LNA1_PLUS_LNA2;
1133102885a5SVasanthakumar Thiagarajan 		antcomb->first_quick_scan_conf =
1134102885a5SVasanthakumar Thiagarajan 			ATH_ANT_DIV_COMB_LNA1_MINUS_LNA2;
1135102885a5SVasanthakumar Thiagarajan 		antcomb->second_quick_scan_conf = ATH_ANT_DIV_COMB_LNA1;
1136102885a5SVasanthakumar Thiagarajan 		break;
1137102885a5SVasanthakumar Thiagarajan 	case (0x23): /* LNA1 A+B */
1138102885a5SVasanthakumar Thiagarajan 		antcomb->main_conf = ATH_ANT_DIV_COMB_LNA1_PLUS_LNA2;
1139102885a5SVasanthakumar Thiagarajan 		antcomb->first_quick_scan_conf =
1140102885a5SVasanthakumar Thiagarajan 			ATH_ANT_DIV_COMB_LNA1_MINUS_LNA2;
1141102885a5SVasanthakumar Thiagarajan 		antcomb->second_quick_scan_conf = ATH_ANT_DIV_COMB_LNA2;
1142102885a5SVasanthakumar Thiagarajan 		break;
1143102885a5SVasanthakumar Thiagarajan 	default:
1144102885a5SVasanthakumar Thiagarajan 		break;
1145102885a5SVasanthakumar Thiagarajan 	}
1146102885a5SVasanthakumar Thiagarajan }
1147102885a5SVasanthakumar Thiagarajan 
1148102885a5SVasanthakumar Thiagarajan static void ath_select_ant_div_from_quick_scan(struct ath_ant_comb *antcomb,
1149102885a5SVasanthakumar Thiagarajan 				struct ath_hw_antcomb_conf *div_ant_conf,
1150102885a5SVasanthakumar Thiagarajan 				int main_rssi_avg, int alt_rssi_avg,
1151102885a5SVasanthakumar Thiagarajan 				int alt_ratio)
1152102885a5SVasanthakumar Thiagarajan {
1153102885a5SVasanthakumar Thiagarajan 	/* alt_good */
1154102885a5SVasanthakumar Thiagarajan 	switch (antcomb->quick_scan_cnt) {
1155102885a5SVasanthakumar Thiagarajan 	case 0:
1156102885a5SVasanthakumar Thiagarajan 		/* set alt to main, and alt to first conf */
1157102885a5SVasanthakumar Thiagarajan 		div_ant_conf->main_lna_conf = antcomb->main_conf;
1158102885a5SVasanthakumar Thiagarajan 		div_ant_conf->alt_lna_conf = antcomb->first_quick_scan_conf;
1159102885a5SVasanthakumar Thiagarajan 		break;
1160102885a5SVasanthakumar Thiagarajan 	case 1:
1161102885a5SVasanthakumar Thiagarajan 		/* set alt to main, and alt to first conf */
1162102885a5SVasanthakumar Thiagarajan 		div_ant_conf->main_lna_conf = antcomb->main_conf;
1163102885a5SVasanthakumar Thiagarajan 		div_ant_conf->alt_lna_conf = antcomb->second_quick_scan_conf;
1164102885a5SVasanthakumar Thiagarajan 		antcomb->rssi_first = main_rssi_avg;
1165102885a5SVasanthakumar Thiagarajan 		antcomb->rssi_second = alt_rssi_avg;
1166102885a5SVasanthakumar Thiagarajan 
1167102885a5SVasanthakumar Thiagarajan 		if (antcomb->main_conf == ATH_ANT_DIV_COMB_LNA1) {
1168102885a5SVasanthakumar Thiagarajan 			/* main is LNA1 */
1169102885a5SVasanthakumar Thiagarajan 			if (ath_is_alt_ant_ratio_better(alt_ratio,
1170102885a5SVasanthakumar Thiagarajan 						ATH_ANT_DIV_COMB_LNA1_DELTA_HI,
1171102885a5SVasanthakumar Thiagarajan 						ATH_ANT_DIV_COMB_LNA1_DELTA_LOW,
1172102885a5SVasanthakumar Thiagarajan 						main_rssi_avg, alt_rssi_avg,
1173102885a5SVasanthakumar Thiagarajan 						antcomb->total_pkt_count))
1174102885a5SVasanthakumar Thiagarajan 				antcomb->first_ratio = true;
1175102885a5SVasanthakumar Thiagarajan 			else
1176102885a5SVasanthakumar Thiagarajan 				antcomb->first_ratio = false;
1177102885a5SVasanthakumar Thiagarajan 		} else if (antcomb->main_conf == ATH_ANT_DIV_COMB_LNA2) {
1178102885a5SVasanthakumar Thiagarajan 			if (ath_is_alt_ant_ratio_better(alt_ratio,
1179102885a5SVasanthakumar Thiagarajan 						ATH_ANT_DIV_COMB_LNA1_DELTA_MID,
1180102885a5SVasanthakumar Thiagarajan 						ATH_ANT_DIV_COMB_LNA1_DELTA_LOW,
1181102885a5SVasanthakumar Thiagarajan 						main_rssi_avg, alt_rssi_avg,
1182102885a5SVasanthakumar Thiagarajan 						antcomb->total_pkt_count))
1183102885a5SVasanthakumar Thiagarajan 				antcomb->first_ratio = true;
1184102885a5SVasanthakumar Thiagarajan 			else
1185102885a5SVasanthakumar Thiagarajan 				antcomb->first_ratio = false;
1186102885a5SVasanthakumar Thiagarajan 		} else {
1187102885a5SVasanthakumar Thiagarajan 			if ((((alt_ratio >= ATH_ANT_DIV_COMB_ALT_ANT_RATIO2) &&
1188102885a5SVasanthakumar Thiagarajan 			    (alt_rssi_avg > main_rssi_avg +
1189102885a5SVasanthakumar Thiagarajan 			    ATH_ANT_DIV_COMB_LNA1_DELTA_HI)) ||
1190102885a5SVasanthakumar Thiagarajan 			    (alt_rssi_avg > main_rssi_avg)) &&
1191102885a5SVasanthakumar Thiagarajan 			    (antcomb->total_pkt_count > 50))
1192102885a5SVasanthakumar Thiagarajan 				antcomb->first_ratio = true;
1193102885a5SVasanthakumar Thiagarajan 			else
1194102885a5SVasanthakumar Thiagarajan 				antcomb->first_ratio = false;
1195102885a5SVasanthakumar Thiagarajan 		}
1196102885a5SVasanthakumar Thiagarajan 		break;
1197102885a5SVasanthakumar Thiagarajan 	case 2:
1198102885a5SVasanthakumar Thiagarajan 		antcomb->alt_good = false;
1199102885a5SVasanthakumar Thiagarajan 		antcomb->scan_not_start = false;
1200102885a5SVasanthakumar Thiagarajan 		antcomb->scan = false;
1201102885a5SVasanthakumar Thiagarajan 		antcomb->rssi_first = main_rssi_avg;
1202102885a5SVasanthakumar Thiagarajan 		antcomb->rssi_third = alt_rssi_avg;
1203102885a5SVasanthakumar Thiagarajan 
1204102885a5SVasanthakumar Thiagarajan 		if (antcomb->second_quick_scan_conf == ATH_ANT_DIV_COMB_LNA1)
1205102885a5SVasanthakumar Thiagarajan 			antcomb->rssi_lna1 = alt_rssi_avg;
1206102885a5SVasanthakumar Thiagarajan 		else if (antcomb->second_quick_scan_conf ==
1207102885a5SVasanthakumar Thiagarajan 			 ATH_ANT_DIV_COMB_LNA2)
1208102885a5SVasanthakumar Thiagarajan 			antcomb->rssi_lna2 = alt_rssi_avg;
1209102885a5SVasanthakumar Thiagarajan 		else if (antcomb->second_quick_scan_conf ==
1210102885a5SVasanthakumar Thiagarajan 			 ATH_ANT_DIV_COMB_LNA1_PLUS_LNA2) {
1211102885a5SVasanthakumar Thiagarajan 			if (antcomb->main_conf == ATH_ANT_DIV_COMB_LNA2)
1212102885a5SVasanthakumar Thiagarajan 				antcomb->rssi_lna2 = main_rssi_avg;
1213102885a5SVasanthakumar Thiagarajan 			else if (antcomb->main_conf == ATH_ANT_DIV_COMB_LNA1)
1214102885a5SVasanthakumar Thiagarajan 				antcomb->rssi_lna1 = main_rssi_avg;
1215102885a5SVasanthakumar Thiagarajan 		}
1216102885a5SVasanthakumar Thiagarajan 
1217102885a5SVasanthakumar Thiagarajan 		if (antcomb->rssi_lna2 > antcomb->rssi_lna1 +
1218102885a5SVasanthakumar Thiagarajan 		    ATH_ANT_DIV_COMB_LNA1_LNA2_SWITCH_DELTA)
1219102885a5SVasanthakumar Thiagarajan 			div_ant_conf->main_lna_conf = ATH_ANT_DIV_COMB_LNA2;
1220102885a5SVasanthakumar Thiagarajan 		else
1221102885a5SVasanthakumar Thiagarajan 			div_ant_conf->main_lna_conf = ATH_ANT_DIV_COMB_LNA1;
1222102885a5SVasanthakumar Thiagarajan 
1223102885a5SVasanthakumar Thiagarajan 		if (antcomb->main_conf == ATH_ANT_DIV_COMB_LNA1) {
1224102885a5SVasanthakumar Thiagarajan 			if (ath_is_alt_ant_ratio_better(alt_ratio,
1225102885a5SVasanthakumar Thiagarajan 						ATH_ANT_DIV_COMB_LNA1_DELTA_HI,
1226102885a5SVasanthakumar Thiagarajan 						ATH_ANT_DIV_COMB_LNA1_DELTA_LOW,
1227102885a5SVasanthakumar Thiagarajan 						main_rssi_avg, alt_rssi_avg,
1228102885a5SVasanthakumar Thiagarajan 						antcomb->total_pkt_count))
1229102885a5SVasanthakumar Thiagarajan 				antcomb->second_ratio = true;
1230102885a5SVasanthakumar Thiagarajan 			else
1231102885a5SVasanthakumar Thiagarajan 				antcomb->second_ratio = false;
1232102885a5SVasanthakumar Thiagarajan 		} else if (antcomb->main_conf == ATH_ANT_DIV_COMB_LNA2) {
1233102885a5SVasanthakumar Thiagarajan 			if (ath_is_alt_ant_ratio_better(alt_ratio,
1234102885a5SVasanthakumar Thiagarajan 						ATH_ANT_DIV_COMB_LNA1_DELTA_MID,
1235102885a5SVasanthakumar Thiagarajan 						ATH_ANT_DIV_COMB_LNA1_DELTA_LOW,
1236102885a5SVasanthakumar Thiagarajan 						main_rssi_avg, alt_rssi_avg,
1237102885a5SVasanthakumar Thiagarajan 						antcomb->total_pkt_count))
1238102885a5SVasanthakumar Thiagarajan 				antcomb->second_ratio = true;
1239102885a5SVasanthakumar Thiagarajan 			else
1240102885a5SVasanthakumar Thiagarajan 				antcomb->second_ratio = false;
1241102885a5SVasanthakumar Thiagarajan 		} else {
1242102885a5SVasanthakumar Thiagarajan 			if ((((alt_ratio >= ATH_ANT_DIV_COMB_ALT_ANT_RATIO2) &&
1243102885a5SVasanthakumar Thiagarajan 			    (alt_rssi_avg > main_rssi_avg +
1244102885a5SVasanthakumar Thiagarajan 			    ATH_ANT_DIV_COMB_LNA1_DELTA_HI)) ||
1245102885a5SVasanthakumar Thiagarajan 			    (alt_rssi_avg > main_rssi_avg)) &&
1246102885a5SVasanthakumar Thiagarajan 			    (antcomb->total_pkt_count > 50))
1247102885a5SVasanthakumar Thiagarajan 				antcomb->second_ratio = true;
1248102885a5SVasanthakumar Thiagarajan 			else
1249102885a5SVasanthakumar Thiagarajan 				antcomb->second_ratio = false;
1250102885a5SVasanthakumar Thiagarajan 		}
1251102885a5SVasanthakumar Thiagarajan 
1252102885a5SVasanthakumar Thiagarajan 		/* set alt to the conf with maximun ratio */
1253102885a5SVasanthakumar Thiagarajan 		if (antcomb->first_ratio && antcomb->second_ratio) {
1254102885a5SVasanthakumar Thiagarajan 			if (antcomb->rssi_second > antcomb->rssi_third) {
1255102885a5SVasanthakumar Thiagarajan 				/* first alt*/
1256102885a5SVasanthakumar Thiagarajan 				if ((antcomb->first_quick_scan_conf ==
1257102885a5SVasanthakumar Thiagarajan 				    ATH_ANT_DIV_COMB_LNA1) ||
1258102885a5SVasanthakumar Thiagarajan 				    (antcomb->first_quick_scan_conf ==
1259102885a5SVasanthakumar Thiagarajan 				    ATH_ANT_DIV_COMB_LNA2))
1260102885a5SVasanthakumar Thiagarajan 					/* Set alt LNA1 or LNA2*/
1261102885a5SVasanthakumar Thiagarajan 					if (div_ant_conf->main_lna_conf ==
1262102885a5SVasanthakumar Thiagarajan 					    ATH_ANT_DIV_COMB_LNA2)
1263102885a5SVasanthakumar Thiagarajan 						div_ant_conf->alt_lna_conf =
1264102885a5SVasanthakumar Thiagarajan 							ATH_ANT_DIV_COMB_LNA1;
1265102885a5SVasanthakumar Thiagarajan 					else
1266102885a5SVasanthakumar Thiagarajan 						div_ant_conf->alt_lna_conf =
1267102885a5SVasanthakumar Thiagarajan 							ATH_ANT_DIV_COMB_LNA2;
1268102885a5SVasanthakumar Thiagarajan 				else
1269102885a5SVasanthakumar Thiagarajan 					/* Set alt to A+B or A-B */
1270102885a5SVasanthakumar Thiagarajan 					div_ant_conf->alt_lna_conf =
1271102885a5SVasanthakumar Thiagarajan 						antcomb->first_quick_scan_conf;
1272102885a5SVasanthakumar Thiagarajan 			} else if ((antcomb->second_quick_scan_conf ==
1273102885a5SVasanthakumar Thiagarajan 				   ATH_ANT_DIV_COMB_LNA1) ||
1274102885a5SVasanthakumar Thiagarajan 				   (antcomb->second_quick_scan_conf ==
1275102885a5SVasanthakumar Thiagarajan 				   ATH_ANT_DIV_COMB_LNA2)) {
1276102885a5SVasanthakumar Thiagarajan 				/* Set alt LNA1 or LNA2 */
1277102885a5SVasanthakumar Thiagarajan 				if (div_ant_conf->main_lna_conf ==
1278102885a5SVasanthakumar Thiagarajan 				    ATH_ANT_DIV_COMB_LNA2)
1279102885a5SVasanthakumar Thiagarajan 					div_ant_conf->alt_lna_conf =
1280102885a5SVasanthakumar Thiagarajan 						ATH_ANT_DIV_COMB_LNA1;
1281102885a5SVasanthakumar Thiagarajan 				else
1282102885a5SVasanthakumar Thiagarajan 					div_ant_conf->alt_lna_conf =
1283102885a5SVasanthakumar Thiagarajan 						ATH_ANT_DIV_COMB_LNA2;
1284102885a5SVasanthakumar Thiagarajan 			} else {
1285102885a5SVasanthakumar Thiagarajan 				/* Set alt to A+B or A-B */
1286102885a5SVasanthakumar Thiagarajan 				div_ant_conf->alt_lna_conf =
1287102885a5SVasanthakumar Thiagarajan 					antcomb->second_quick_scan_conf;
1288102885a5SVasanthakumar Thiagarajan 			}
1289102885a5SVasanthakumar Thiagarajan 		} else if (antcomb->first_ratio) {
1290102885a5SVasanthakumar Thiagarajan 			/* first alt */
1291102885a5SVasanthakumar Thiagarajan 			if ((antcomb->first_quick_scan_conf ==
1292102885a5SVasanthakumar Thiagarajan 			    ATH_ANT_DIV_COMB_LNA1) ||
1293102885a5SVasanthakumar Thiagarajan 			    (antcomb->first_quick_scan_conf ==
1294102885a5SVasanthakumar Thiagarajan 			    ATH_ANT_DIV_COMB_LNA2))
1295102885a5SVasanthakumar Thiagarajan 					/* Set alt LNA1 or LNA2 */
1296102885a5SVasanthakumar Thiagarajan 				if (div_ant_conf->main_lna_conf ==
1297102885a5SVasanthakumar Thiagarajan 				    ATH_ANT_DIV_COMB_LNA2)
1298102885a5SVasanthakumar Thiagarajan 					div_ant_conf->alt_lna_conf =
1299102885a5SVasanthakumar Thiagarajan 							ATH_ANT_DIV_COMB_LNA1;
1300102885a5SVasanthakumar Thiagarajan 				else
1301102885a5SVasanthakumar Thiagarajan 					div_ant_conf->alt_lna_conf =
1302102885a5SVasanthakumar Thiagarajan 							ATH_ANT_DIV_COMB_LNA2;
1303102885a5SVasanthakumar Thiagarajan 			else
1304102885a5SVasanthakumar Thiagarajan 				/* Set alt to A+B or A-B */
1305102885a5SVasanthakumar Thiagarajan 				div_ant_conf->alt_lna_conf =
1306102885a5SVasanthakumar Thiagarajan 						antcomb->first_quick_scan_conf;
1307102885a5SVasanthakumar Thiagarajan 		} else if (antcomb->second_ratio) {
1308102885a5SVasanthakumar Thiagarajan 				/* second alt */
1309102885a5SVasanthakumar Thiagarajan 			if ((antcomb->second_quick_scan_conf ==
1310102885a5SVasanthakumar Thiagarajan 			    ATH_ANT_DIV_COMB_LNA1) ||
1311102885a5SVasanthakumar Thiagarajan 			    (antcomb->second_quick_scan_conf ==
1312102885a5SVasanthakumar Thiagarajan 			    ATH_ANT_DIV_COMB_LNA2))
1313102885a5SVasanthakumar Thiagarajan 				/* Set alt LNA1 or LNA2 */
1314102885a5SVasanthakumar Thiagarajan 				if (div_ant_conf->main_lna_conf ==
1315102885a5SVasanthakumar Thiagarajan 				    ATH_ANT_DIV_COMB_LNA2)
1316102885a5SVasanthakumar Thiagarajan 					div_ant_conf->alt_lna_conf =
1317102885a5SVasanthakumar Thiagarajan 						ATH_ANT_DIV_COMB_LNA1;
1318102885a5SVasanthakumar Thiagarajan 				else
1319102885a5SVasanthakumar Thiagarajan 					div_ant_conf->alt_lna_conf =
1320102885a5SVasanthakumar Thiagarajan 						ATH_ANT_DIV_COMB_LNA2;
1321102885a5SVasanthakumar Thiagarajan 			else
1322102885a5SVasanthakumar Thiagarajan 				/* Set alt to A+B or A-B */
1323102885a5SVasanthakumar Thiagarajan 				div_ant_conf->alt_lna_conf =
1324102885a5SVasanthakumar Thiagarajan 						antcomb->second_quick_scan_conf;
1325102885a5SVasanthakumar Thiagarajan 		} else {
1326102885a5SVasanthakumar Thiagarajan 			/* main is largest */
1327102885a5SVasanthakumar Thiagarajan 			if ((antcomb->main_conf == ATH_ANT_DIV_COMB_LNA1) ||
1328102885a5SVasanthakumar Thiagarajan 			    (antcomb->main_conf == ATH_ANT_DIV_COMB_LNA2))
1329102885a5SVasanthakumar Thiagarajan 				/* Set alt LNA1 or LNA2 */
1330102885a5SVasanthakumar Thiagarajan 				if (div_ant_conf->main_lna_conf ==
1331102885a5SVasanthakumar Thiagarajan 				    ATH_ANT_DIV_COMB_LNA2)
1332102885a5SVasanthakumar Thiagarajan 					div_ant_conf->alt_lna_conf =
1333102885a5SVasanthakumar Thiagarajan 							ATH_ANT_DIV_COMB_LNA1;
1334102885a5SVasanthakumar Thiagarajan 				else
1335102885a5SVasanthakumar Thiagarajan 					div_ant_conf->alt_lna_conf =
1336102885a5SVasanthakumar Thiagarajan 							ATH_ANT_DIV_COMB_LNA2;
1337102885a5SVasanthakumar Thiagarajan 			else
1338102885a5SVasanthakumar Thiagarajan 				/* Set alt to A+B or A-B */
1339102885a5SVasanthakumar Thiagarajan 				div_ant_conf->alt_lna_conf = antcomb->main_conf;
1340102885a5SVasanthakumar Thiagarajan 		}
1341102885a5SVasanthakumar Thiagarajan 		break;
1342102885a5SVasanthakumar Thiagarajan 	default:
1343102885a5SVasanthakumar Thiagarajan 		break;
1344102885a5SVasanthakumar Thiagarajan 	}
1345102885a5SVasanthakumar Thiagarajan }
1346102885a5SVasanthakumar Thiagarajan 
13479bad82b8SJohn W. Linville static void ath_ant_div_conf_fast_divbias(struct ath_hw_antcomb_conf *ant_conf)
1348102885a5SVasanthakumar Thiagarajan {
1349102885a5SVasanthakumar Thiagarajan 	/* Adjust the fast_div_bias based on main and alt lna conf */
1350102885a5SVasanthakumar Thiagarajan 	switch ((ant_conf->main_lna_conf << 4) | ant_conf->alt_lna_conf) {
1351102885a5SVasanthakumar Thiagarajan 	case (0x01): /* A-B LNA2 */
1352102885a5SVasanthakumar Thiagarajan 		ant_conf->fast_div_bias = 0x3b;
1353102885a5SVasanthakumar Thiagarajan 		break;
1354102885a5SVasanthakumar Thiagarajan 	case (0x02): /* A-B LNA1 */
1355102885a5SVasanthakumar Thiagarajan 		ant_conf->fast_div_bias = 0x3d;
1356102885a5SVasanthakumar Thiagarajan 		break;
1357102885a5SVasanthakumar Thiagarajan 	case (0x03): /* A-B A+B */
1358102885a5SVasanthakumar Thiagarajan 		ant_conf->fast_div_bias = 0x1;
1359102885a5SVasanthakumar Thiagarajan 		break;
1360102885a5SVasanthakumar Thiagarajan 	case (0x10): /* LNA2 A-B */
1361102885a5SVasanthakumar Thiagarajan 		ant_conf->fast_div_bias = 0x7;
1362102885a5SVasanthakumar Thiagarajan 		break;
1363102885a5SVasanthakumar Thiagarajan 	case (0x12): /* LNA2 LNA1 */
1364102885a5SVasanthakumar Thiagarajan 		ant_conf->fast_div_bias = 0x2;
1365102885a5SVasanthakumar Thiagarajan 		break;
1366102885a5SVasanthakumar Thiagarajan 	case (0x13): /* LNA2 A+B */
1367102885a5SVasanthakumar Thiagarajan 		ant_conf->fast_div_bias = 0x7;
1368102885a5SVasanthakumar Thiagarajan 		break;
1369102885a5SVasanthakumar Thiagarajan 	case (0x20): /* LNA1 A-B */
1370102885a5SVasanthakumar Thiagarajan 		ant_conf->fast_div_bias = 0x6;
1371102885a5SVasanthakumar Thiagarajan 		break;
1372102885a5SVasanthakumar Thiagarajan 	case (0x21): /* LNA1 LNA2 */
1373102885a5SVasanthakumar Thiagarajan 		ant_conf->fast_div_bias = 0x0;
1374102885a5SVasanthakumar Thiagarajan 		break;
1375102885a5SVasanthakumar Thiagarajan 	case (0x23): /* LNA1 A+B */
1376102885a5SVasanthakumar Thiagarajan 		ant_conf->fast_div_bias = 0x6;
1377102885a5SVasanthakumar Thiagarajan 		break;
1378102885a5SVasanthakumar Thiagarajan 	case (0x30): /* A+B A-B */
1379102885a5SVasanthakumar Thiagarajan 		ant_conf->fast_div_bias = 0x1;
1380102885a5SVasanthakumar Thiagarajan 		break;
1381102885a5SVasanthakumar Thiagarajan 	case (0x31): /* A+B LNA2 */
1382102885a5SVasanthakumar Thiagarajan 		ant_conf->fast_div_bias = 0x3b;
1383102885a5SVasanthakumar Thiagarajan 		break;
1384102885a5SVasanthakumar Thiagarajan 	case (0x32): /* A+B LNA1 */
1385102885a5SVasanthakumar Thiagarajan 		ant_conf->fast_div_bias = 0x3d;
1386102885a5SVasanthakumar Thiagarajan 		break;
1387102885a5SVasanthakumar Thiagarajan 	default:
1388102885a5SVasanthakumar Thiagarajan 		break;
1389102885a5SVasanthakumar Thiagarajan 	}
1390102885a5SVasanthakumar Thiagarajan }
1391102885a5SVasanthakumar Thiagarajan 
1392102885a5SVasanthakumar Thiagarajan /* Antenna diversity and combining */
1393102885a5SVasanthakumar Thiagarajan static void ath_ant_comb_scan(struct ath_softc *sc, struct ath_rx_status *rs)
1394102885a5SVasanthakumar Thiagarajan {
1395102885a5SVasanthakumar Thiagarajan 	struct ath_hw_antcomb_conf div_ant_conf;
1396102885a5SVasanthakumar Thiagarajan 	struct ath_ant_comb *antcomb = &sc->ant_comb;
1397102885a5SVasanthakumar Thiagarajan 	int alt_ratio = 0, alt_rssi_avg = 0, main_rssi_avg = 0, curr_alt_set;
1398102885a5SVasanthakumar Thiagarajan 	int curr_main_set, curr_bias;
1399102885a5SVasanthakumar Thiagarajan 	int main_rssi = rs->rs_rssi_ctl0;
1400102885a5SVasanthakumar Thiagarajan 	int alt_rssi = rs->rs_rssi_ctl1;
1401102885a5SVasanthakumar Thiagarajan 	int rx_ant_conf,  main_ant_conf;
1402102885a5SVasanthakumar Thiagarajan 	bool short_scan = false;
1403102885a5SVasanthakumar Thiagarajan 
1404102885a5SVasanthakumar Thiagarajan 	rx_ant_conf = (rs->rs_rssi_ctl2 >> ATH_ANT_RX_CURRENT_SHIFT) &
1405102885a5SVasanthakumar Thiagarajan 		       ATH_ANT_RX_MASK;
1406102885a5SVasanthakumar Thiagarajan 	main_ant_conf = (rs->rs_rssi_ctl2 >> ATH_ANT_RX_MAIN_SHIFT) &
1407102885a5SVasanthakumar Thiagarajan 			 ATH_ANT_RX_MASK;
1408102885a5SVasanthakumar Thiagarajan 
1409102885a5SVasanthakumar Thiagarajan 	/* Record packet only when alt_rssi is positive */
1410102885a5SVasanthakumar Thiagarajan 	if (alt_rssi > 0) {
1411102885a5SVasanthakumar Thiagarajan 		antcomb->total_pkt_count++;
1412102885a5SVasanthakumar Thiagarajan 		antcomb->main_total_rssi += main_rssi;
1413102885a5SVasanthakumar Thiagarajan 		antcomb->alt_total_rssi  += alt_rssi;
1414102885a5SVasanthakumar Thiagarajan 		if (main_ant_conf == rx_ant_conf)
1415102885a5SVasanthakumar Thiagarajan 			antcomb->main_recv_cnt++;
1416102885a5SVasanthakumar Thiagarajan 		else
1417102885a5SVasanthakumar Thiagarajan 			antcomb->alt_recv_cnt++;
1418102885a5SVasanthakumar Thiagarajan 	}
1419102885a5SVasanthakumar Thiagarajan 
1420102885a5SVasanthakumar Thiagarajan 	/* Short scan check */
1421102885a5SVasanthakumar Thiagarajan 	if (antcomb->scan && antcomb->alt_good) {
1422102885a5SVasanthakumar Thiagarajan 		if (time_after(jiffies, antcomb->scan_start_time +
1423102885a5SVasanthakumar Thiagarajan 		    msecs_to_jiffies(ATH_ANT_DIV_COMB_SHORT_SCAN_INTR)))
1424102885a5SVasanthakumar Thiagarajan 			short_scan = true;
1425102885a5SVasanthakumar Thiagarajan 		else
1426102885a5SVasanthakumar Thiagarajan 			if (antcomb->total_pkt_count ==
1427102885a5SVasanthakumar Thiagarajan 			    ATH_ANT_DIV_COMB_SHORT_SCAN_PKTCOUNT) {
1428102885a5SVasanthakumar Thiagarajan 				alt_ratio = ((antcomb->alt_recv_cnt * 100) /
1429102885a5SVasanthakumar Thiagarajan 					    antcomb->total_pkt_count);
1430102885a5SVasanthakumar Thiagarajan 				if (alt_ratio < ATH_ANT_DIV_COMB_ALT_ANT_RATIO)
1431102885a5SVasanthakumar Thiagarajan 					short_scan = true;
1432102885a5SVasanthakumar Thiagarajan 			}
1433102885a5SVasanthakumar Thiagarajan 	}
1434102885a5SVasanthakumar Thiagarajan 
1435102885a5SVasanthakumar Thiagarajan 	if (((antcomb->total_pkt_count < ATH_ANT_DIV_COMB_MAX_PKTCOUNT) ||
1436102885a5SVasanthakumar Thiagarajan 	    rs->rs_moreaggr) && !short_scan)
1437102885a5SVasanthakumar Thiagarajan 		return;
1438102885a5SVasanthakumar Thiagarajan 
1439102885a5SVasanthakumar Thiagarajan 	if (antcomb->total_pkt_count) {
1440102885a5SVasanthakumar Thiagarajan 		alt_ratio = ((antcomb->alt_recv_cnt * 100) /
1441102885a5SVasanthakumar Thiagarajan 			     antcomb->total_pkt_count);
1442102885a5SVasanthakumar Thiagarajan 		main_rssi_avg = (antcomb->main_total_rssi /
1443102885a5SVasanthakumar Thiagarajan 				 antcomb->total_pkt_count);
1444102885a5SVasanthakumar Thiagarajan 		alt_rssi_avg = (antcomb->alt_total_rssi /
1445102885a5SVasanthakumar Thiagarajan 				 antcomb->total_pkt_count);
1446102885a5SVasanthakumar Thiagarajan 	}
1447102885a5SVasanthakumar Thiagarajan 
1448102885a5SVasanthakumar Thiagarajan 
1449102885a5SVasanthakumar Thiagarajan 	ath9k_hw_antdiv_comb_conf_get(sc->sc_ah, &div_ant_conf);
1450102885a5SVasanthakumar Thiagarajan 	curr_alt_set = div_ant_conf.alt_lna_conf;
1451102885a5SVasanthakumar Thiagarajan 	curr_main_set = div_ant_conf.main_lna_conf;
1452102885a5SVasanthakumar Thiagarajan 	curr_bias = div_ant_conf.fast_div_bias;
1453102885a5SVasanthakumar Thiagarajan 
1454102885a5SVasanthakumar Thiagarajan 	antcomb->count++;
1455102885a5SVasanthakumar Thiagarajan 
1456102885a5SVasanthakumar Thiagarajan 	if (antcomb->count == ATH_ANT_DIV_COMB_MAX_COUNT) {
1457102885a5SVasanthakumar Thiagarajan 		if (alt_ratio > ATH_ANT_DIV_COMB_ALT_ANT_RATIO) {
1458102885a5SVasanthakumar Thiagarajan 			ath_lnaconf_alt_good_scan(antcomb, div_ant_conf,
1459102885a5SVasanthakumar Thiagarajan 						  main_rssi_avg);
1460102885a5SVasanthakumar Thiagarajan 			antcomb->alt_good = true;
1461102885a5SVasanthakumar Thiagarajan 		} else {
1462102885a5SVasanthakumar Thiagarajan 			antcomb->alt_good = false;
1463102885a5SVasanthakumar Thiagarajan 		}
1464102885a5SVasanthakumar Thiagarajan 
1465102885a5SVasanthakumar Thiagarajan 		antcomb->count = 0;
1466102885a5SVasanthakumar Thiagarajan 		antcomb->scan = true;
1467102885a5SVasanthakumar Thiagarajan 		antcomb->scan_not_start = true;
1468102885a5SVasanthakumar Thiagarajan 	}
1469102885a5SVasanthakumar Thiagarajan 
1470102885a5SVasanthakumar Thiagarajan 	if (!antcomb->scan) {
1471102885a5SVasanthakumar Thiagarajan 		if (alt_ratio > ATH_ANT_DIV_COMB_ALT_ANT_RATIO) {
1472102885a5SVasanthakumar Thiagarajan 			if (curr_alt_set == ATH_ANT_DIV_COMB_LNA2) {
1473102885a5SVasanthakumar Thiagarajan 				/* Switch main and alt LNA */
1474102885a5SVasanthakumar Thiagarajan 				div_ant_conf.main_lna_conf =
1475102885a5SVasanthakumar Thiagarajan 						ATH_ANT_DIV_COMB_LNA2;
1476102885a5SVasanthakumar Thiagarajan 				div_ant_conf.alt_lna_conf  =
1477102885a5SVasanthakumar Thiagarajan 						ATH_ANT_DIV_COMB_LNA1;
1478102885a5SVasanthakumar Thiagarajan 			} else if (curr_alt_set == ATH_ANT_DIV_COMB_LNA1) {
1479102885a5SVasanthakumar Thiagarajan 				div_ant_conf.main_lna_conf =
1480102885a5SVasanthakumar Thiagarajan 						ATH_ANT_DIV_COMB_LNA1;
1481102885a5SVasanthakumar Thiagarajan 				div_ant_conf.alt_lna_conf  =
1482102885a5SVasanthakumar Thiagarajan 						ATH_ANT_DIV_COMB_LNA2;
1483102885a5SVasanthakumar Thiagarajan 			}
1484102885a5SVasanthakumar Thiagarajan 
1485102885a5SVasanthakumar Thiagarajan 			goto div_comb_done;
1486102885a5SVasanthakumar Thiagarajan 		} else if ((curr_alt_set != ATH_ANT_DIV_COMB_LNA1) &&
1487102885a5SVasanthakumar Thiagarajan 			   (curr_alt_set != ATH_ANT_DIV_COMB_LNA2)) {
1488102885a5SVasanthakumar Thiagarajan 			/* Set alt to another LNA */
1489102885a5SVasanthakumar Thiagarajan 			if (curr_main_set == ATH_ANT_DIV_COMB_LNA2)
1490102885a5SVasanthakumar Thiagarajan 				div_ant_conf.alt_lna_conf =
1491102885a5SVasanthakumar Thiagarajan 						ATH_ANT_DIV_COMB_LNA1;
1492102885a5SVasanthakumar Thiagarajan 			else if (curr_main_set == ATH_ANT_DIV_COMB_LNA1)
1493102885a5SVasanthakumar Thiagarajan 				div_ant_conf.alt_lna_conf =
1494102885a5SVasanthakumar Thiagarajan 						ATH_ANT_DIV_COMB_LNA2;
1495102885a5SVasanthakumar Thiagarajan 
1496102885a5SVasanthakumar Thiagarajan 			goto div_comb_done;
1497102885a5SVasanthakumar Thiagarajan 		}
1498102885a5SVasanthakumar Thiagarajan 
1499102885a5SVasanthakumar Thiagarajan 		if ((alt_rssi_avg < (main_rssi_avg +
1500102885a5SVasanthakumar Thiagarajan 		    ATH_ANT_DIV_COMB_LNA1_LNA2_DELTA)))
1501102885a5SVasanthakumar Thiagarajan 			goto div_comb_done;
1502102885a5SVasanthakumar Thiagarajan 	}
1503102885a5SVasanthakumar Thiagarajan 
1504102885a5SVasanthakumar Thiagarajan 	if (!antcomb->scan_not_start) {
1505102885a5SVasanthakumar Thiagarajan 		switch (curr_alt_set) {
1506102885a5SVasanthakumar Thiagarajan 		case ATH_ANT_DIV_COMB_LNA2:
1507102885a5SVasanthakumar Thiagarajan 			antcomb->rssi_lna2 = alt_rssi_avg;
1508102885a5SVasanthakumar Thiagarajan 			antcomb->rssi_lna1 = main_rssi_avg;
1509102885a5SVasanthakumar Thiagarajan 			antcomb->scan = true;
1510102885a5SVasanthakumar Thiagarajan 			/* set to A+B */
1511102885a5SVasanthakumar Thiagarajan 			div_ant_conf.main_lna_conf =
1512102885a5SVasanthakumar Thiagarajan 				ATH_ANT_DIV_COMB_LNA1;
1513102885a5SVasanthakumar Thiagarajan 			div_ant_conf.alt_lna_conf  =
1514102885a5SVasanthakumar Thiagarajan 				ATH_ANT_DIV_COMB_LNA1_PLUS_LNA2;
1515102885a5SVasanthakumar Thiagarajan 			break;
1516102885a5SVasanthakumar Thiagarajan 		case ATH_ANT_DIV_COMB_LNA1:
1517102885a5SVasanthakumar Thiagarajan 			antcomb->rssi_lna1 = alt_rssi_avg;
1518102885a5SVasanthakumar Thiagarajan 			antcomb->rssi_lna2 = main_rssi_avg;
1519102885a5SVasanthakumar Thiagarajan 			antcomb->scan = true;
1520102885a5SVasanthakumar Thiagarajan 			/* set to A+B */
1521102885a5SVasanthakumar Thiagarajan 			div_ant_conf.main_lna_conf = ATH_ANT_DIV_COMB_LNA2;
1522102885a5SVasanthakumar Thiagarajan 			div_ant_conf.alt_lna_conf  =
1523102885a5SVasanthakumar Thiagarajan 				ATH_ANT_DIV_COMB_LNA1_PLUS_LNA2;
1524102885a5SVasanthakumar Thiagarajan 			break;
1525102885a5SVasanthakumar Thiagarajan 		case ATH_ANT_DIV_COMB_LNA1_PLUS_LNA2:
1526102885a5SVasanthakumar Thiagarajan 			antcomb->rssi_add = alt_rssi_avg;
1527102885a5SVasanthakumar Thiagarajan 			antcomb->scan = true;
1528102885a5SVasanthakumar Thiagarajan 			/* set to A-B */
1529102885a5SVasanthakumar Thiagarajan 			div_ant_conf.alt_lna_conf =
1530102885a5SVasanthakumar Thiagarajan 				ATH_ANT_DIV_COMB_LNA1_MINUS_LNA2;
1531102885a5SVasanthakumar Thiagarajan 			break;
1532102885a5SVasanthakumar Thiagarajan 		case ATH_ANT_DIV_COMB_LNA1_MINUS_LNA2:
1533102885a5SVasanthakumar Thiagarajan 			antcomb->rssi_sub = alt_rssi_avg;
1534102885a5SVasanthakumar Thiagarajan 			antcomb->scan = false;
1535102885a5SVasanthakumar Thiagarajan 			if (antcomb->rssi_lna2 >
1536102885a5SVasanthakumar Thiagarajan 			    (antcomb->rssi_lna1 +
1537102885a5SVasanthakumar Thiagarajan 			    ATH_ANT_DIV_COMB_LNA1_LNA2_SWITCH_DELTA)) {
1538102885a5SVasanthakumar Thiagarajan 				/* use LNA2 as main LNA */
1539102885a5SVasanthakumar Thiagarajan 				if ((antcomb->rssi_add > antcomb->rssi_lna1) &&
1540102885a5SVasanthakumar Thiagarajan 				    (antcomb->rssi_add > antcomb->rssi_sub)) {
1541102885a5SVasanthakumar Thiagarajan 					/* set to A+B */
1542102885a5SVasanthakumar Thiagarajan 					div_ant_conf.main_lna_conf =
1543102885a5SVasanthakumar Thiagarajan 						ATH_ANT_DIV_COMB_LNA2;
1544102885a5SVasanthakumar Thiagarajan 					div_ant_conf.alt_lna_conf  =
1545102885a5SVasanthakumar Thiagarajan 						ATH_ANT_DIV_COMB_LNA1_PLUS_LNA2;
1546102885a5SVasanthakumar Thiagarajan 				} else if (antcomb->rssi_sub >
1547102885a5SVasanthakumar Thiagarajan 					   antcomb->rssi_lna1) {
1548102885a5SVasanthakumar Thiagarajan 					/* set to A-B */
1549102885a5SVasanthakumar Thiagarajan 					div_ant_conf.main_lna_conf =
1550102885a5SVasanthakumar Thiagarajan 						ATH_ANT_DIV_COMB_LNA2;
1551102885a5SVasanthakumar Thiagarajan 					div_ant_conf.alt_lna_conf =
1552102885a5SVasanthakumar Thiagarajan 						ATH_ANT_DIV_COMB_LNA1_MINUS_LNA2;
1553102885a5SVasanthakumar Thiagarajan 				} else {
1554102885a5SVasanthakumar Thiagarajan 					/* set to LNA1 */
1555102885a5SVasanthakumar Thiagarajan 					div_ant_conf.main_lna_conf =
1556102885a5SVasanthakumar Thiagarajan 						ATH_ANT_DIV_COMB_LNA2;
1557102885a5SVasanthakumar Thiagarajan 					div_ant_conf.alt_lna_conf =
1558102885a5SVasanthakumar Thiagarajan 						ATH_ANT_DIV_COMB_LNA1;
1559102885a5SVasanthakumar Thiagarajan 				}
1560102885a5SVasanthakumar Thiagarajan 			} else {
1561102885a5SVasanthakumar Thiagarajan 				/* use LNA1 as main LNA */
1562102885a5SVasanthakumar Thiagarajan 				if ((antcomb->rssi_add > antcomb->rssi_lna2) &&
1563102885a5SVasanthakumar Thiagarajan 				    (antcomb->rssi_add > antcomb->rssi_sub)) {
1564102885a5SVasanthakumar Thiagarajan 					/* set to A+B */
1565102885a5SVasanthakumar Thiagarajan 					div_ant_conf.main_lna_conf =
1566102885a5SVasanthakumar Thiagarajan 						ATH_ANT_DIV_COMB_LNA1;
1567102885a5SVasanthakumar Thiagarajan 					div_ant_conf.alt_lna_conf  =
1568102885a5SVasanthakumar Thiagarajan 						ATH_ANT_DIV_COMB_LNA1_PLUS_LNA2;
1569102885a5SVasanthakumar Thiagarajan 				} else if (antcomb->rssi_sub >
1570102885a5SVasanthakumar Thiagarajan 					   antcomb->rssi_lna1) {
1571102885a5SVasanthakumar Thiagarajan 					/* set to A-B */
1572102885a5SVasanthakumar Thiagarajan 					div_ant_conf.main_lna_conf =
1573102885a5SVasanthakumar Thiagarajan 						ATH_ANT_DIV_COMB_LNA1;
1574102885a5SVasanthakumar Thiagarajan 					div_ant_conf.alt_lna_conf =
1575102885a5SVasanthakumar Thiagarajan 						ATH_ANT_DIV_COMB_LNA1_MINUS_LNA2;
1576102885a5SVasanthakumar Thiagarajan 				} else {
1577102885a5SVasanthakumar Thiagarajan 					/* set to LNA2 */
1578102885a5SVasanthakumar Thiagarajan 					div_ant_conf.main_lna_conf =
1579102885a5SVasanthakumar Thiagarajan 						ATH_ANT_DIV_COMB_LNA1;
1580102885a5SVasanthakumar Thiagarajan 					div_ant_conf.alt_lna_conf =
1581102885a5SVasanthakumar Thiagarajan 						ATH_ANT_DIV_COMB_LNA2;
1582102885a5SVasanthakumar Thiagarajan 				}
1583102885a5SVasanthakumar Thiagarajan 			}
1584102885a5SVasanthakumar Thiagarajan 			break;
1585102885a5SVasanthakumar Thiagarajan 		default:
1586102885a5SVasanthakumar Thiagarajan 			break;
1587102885a5SVasanthakumar Thiagarajan 		}
1588102885a5SVasanthakumar Thiagarajan 	} else {
1589102885a5SVasanthakumar Thiagarajan 		if (!antcomb->alt_good) {
1590102885a5SVasanthakumar Thiagarajan 			antcomb->scan_not_start = false;
1591102885a5SVasanthakumar Thiagarajan 			/* Set alt to another LNA */
1592102885a5SVasanthakumar Thiagarajan 			if (curr_main_set == ATH_ANT_DIV_COMB_LNA2) {
1593102885a5SVasanthakumar Thiagarajan 				div_ant_conf.main_lna_conf =
1594102885a5SVasanthakumar Thiagarajan 						ATH_ANT_DIV_COMB_LNA2;
1595102885a5SVasanthakumar Thiagarajan 				div_ant_conf.alt_lna_conf =
1596102885a5SVasanthakumar Thiagarajan 						ATH_ANT_DIV_COMB_LNA1;
1597102885a5SVasanthakumar Thiagarajan 			} else if (curr_main_set == ATH_ANT_DIV_COMB_LNA1) {
1598102885a5SVasanthakumar Thiagarajan 				div_ant_conf.main_lna_conf =
1599102885a5SVasanthakumar Thiagarajan 						ATH_ANT_DIV_COMB_LNA1;
1600102885a5SVasanthakumar Thiagarajan 				div_ant_conf.alt_lna_conf =
1601102885a5SVasanthakumar Thiagarajan 						ATH_ANT_DIV_COMB_LNA2;
1602102885a5SVasanthakumar Thiagarajan 			}
1603102885a5SVasanthakumar Thiagarajan 			goto div_comb_done;
1604102885a5SVasanthakumar Thiagarajan 		}
1605102885a5SVasanthakumar Thiagarajan 	}
1606102885a5SVasanthakumar Thiagarajan 
1607102885a5SVasanthakumar Thiagarajan 	ath_select_ant_div_from_quick_scan(antcomb, &div_ant_conf,
1608102885a5SVasanthakumar Thiagarajan 					   main_rssi_avg, alt_rssi_avg,
1609102885a5SVasanthakumar Thiagarajan 					   alt_ratio);
1610102885a5SVasanthakumar Thiagarajan 
1611102885a5SVasanthakumar Thiagarajan 	antcomb->quick_scan_cnt++;
1612102885a5SVasanthakumar Thiagarajan 
1613102885a5SVasanthakumar Thiagarajan div_comb_done:
1614102885a5SVasanthakumar Thiagarajan 	ath_ant_div_conf_fast_divbias(&div_ant_conf);
1615102885a5SVasanthakumar Thiagarajan 
1616102885a5SVasanthakumar Thiagarajan 	ath9k_hw_antdiv_comb_conf_set(sc->sc_ah, &div_ant_conf);
1617102885a5SVasanthakumar Thiagarajan 
1618102885a5SVasanthakumar Thiagarajan 	antcomb->scan_start_time = jiffies;
1619102885a5SVasanthakumar Thiagarajan 	antcomb->total_pkt_count = 0;
1620102885a5SVasanthakumar Thiagarajan 	antcomb->main_total_rssi = 0;
1621102885a5SVasanthakumar Thiagarajan 	antcomb->alt_total_rssi = 0;
1622102885a5SVasanthakumar Thiagarajan 	antcomb->main_recv_cnt = 0;
1623102885a5SVasanthakumar Thiagarajan 	antcomb->alt_recv_cnt = 0;
1624102885a5SVasanthakumar Thiagarajan }
1625102885a5SVasanthakumar Thiagarajan 
1626b5c80475SFelix Fietkau int ath_rx_tasklet(struct ath_softc *sc, int flush, bool hp)
1627b5c80475SFelix Fietkau {
1628b5c80475SFelix Fietkau 	struct ath_buf *bf;
1629b5c80475SFelix Fietkau 	struct sk_buff *skb = NULL, *requeue_skb;
1630b5c80475SFelix Fietkau 	struct ieee80211_rx_status *rxs;
1631b5c80475SFelix Fietkau 	struct ath_hw *ah = sc->sc_ah;
1632b5c80475SFelix Fietkau 	struct ath_common *common = ath9k_hw_common(ah);
1633b5c80475SFelix Fietkau 	/*
1634b5c80475SFelix Fietkau 	 * The hw can techncically differ from common->hw when using ath9k
1635b5c80475SFelix Fietkau 	 * virtual wiphy so to account for that we iterate over the active
1636b5c80475SFelix Fietkau 	 * wiphys and find the appropriate wiphy and therefore hw.
1637b5c80475SFelix Fietkau 	 */
1638b5c80475SFelix Fietkau 	struct ieee80211_hw *hw = NULL;
1639b5c80475SFelix Fietkau 	struct ieee80211_hdr *hdr;
1640b5c80475SFelix Fietkau 	int retval;
1641b5c80475SFelix Fietkau 	bool decrypt_error = false;
1642b5c80475SFelix Fietkau 	struct ath_rx_status rs;
1643b5c80475SFelix Fietkau 	enum ath9k_rx_qtype qtype;
1644b5c80475SFelix Fietkau 	bool edma = !!(ah->caps.hw_caps & ATH9K_HW_CAP_EDMA);
1645b5c80475SFelix Fietkau 	int dma_type;
16465c6dd921SVasanthakumar Thiagarajan 	u8 rx_status_len = ah->caps.rx_status_len;
1647a6d2055bSFelix Fietkau 	u64 tsf = 0;
1648a6d2055bSFelix Fietkau 	u32 tsf_lower = 0;
16498ab2cd09SLuis R. Rodriguez 	unsigned long flags;
1650b5c80475SFelix Fietkau 
1651b5c80475SFelix Fietkau 	if (edma)
1652b5c80475SFelix Fietkau 		dma_type = DMA_BIDIRECTIONAL;
165356824223SMing Lei 	else
165456824223SMing Lei 		dma_type = DMA_FROM_DEVICE;
1655b5c80475SFelix Fietkau 
1656b5c80475SFelix Fietkau 	qtype = hp ? ATH9K_RX_QUEUE_HP : ATH9K_RX_QUEUE_LP;
1657b5c80475SFelix Fietkau 	spin_lock_bh(&sc->rx.rxbuflock);
1658b5c80475SFelix Fietkau 
1659a6d2055bSFelix Fietkau 	tsf = ath9k_hw_gettsf64(ah);
1660a6d2055bSFelix Fietkau 	tsf_lower = tsf & 0xffffffff;
1661a6d2055bSFelix Fietkau 
1662b5c80475SFelix Fietkau 	do {
1663b5c80475SFelix Fietkau 		/* If handling rx interrupt and flush is in progress => exit */
1664b5c80475SFelix Fietkau 		if ((sc->sc_flags & SC_OP_RXFLUSH) && (flush == 0))
1665b5c80475SFelix Fietkau 			break;
1666b5c80475SFelix Fietkau 
1667b5c80475SFelix Fietkau 		memset(&rs, 0, sizeof(rs));
1668b5c80475SFelix Fietkau 		if (edma)
1669b5c80475SFelix Fietkau 			bf = ath_edma_get_next_rx_buf(sc, &rs, qtype);
1670b5c80475SFelix Fietkau 		else
1671b5c80475SFelix Fietkau 			bf = ath_get_next_rx_buf(sc, &rs);
1672b5c80475SFelix Fietkau 
1673b5c80475SFelix Fietkau 		if (!bf)
1674b5c80475SFelix Fietkau 			break;
1675b5c80475SFelix Fietkau 
1676b5c80475SFelix Fietkau 		skb = bf->bf_mpdu;
1677b5c80475SFelix Fietkau 		if (!skb)
1678b5c80475SFelix Fietkau 			continue;
1679b5c80475SFelix Fietkau 
16805c6dd921SVasanthakumar Thiagarajan 		hdr = (struct ieee80211_hdr *) (skb->data + rx_status_len);
16815ca42627SLuis R. Rodriguez 		rxs =  IEEE80211_SKB_RXCB(skb);
16825ca42627SLuis R. Rodriguez 
1683b4afffc0SLuis R. Rodriguez 		hw = ath_get_virt_hw(sc, hdr);
1684b4afffc0SLuis R. Rodriguez 
168529bffa96SFelix Fietkau 		ath_debug_stat_rx(sc, &rs);
16861395d3f0SSujith 
1687203c4805SLuis R. Rodriguez 		/*
1688203c4805SLuis R. Rodriguez 		 * If we're asked to flush receive queue, directly
1689203c4805SLuis R. Rodriguez 		 * chain it back at the queue without processing it.
1690203c4805SLuis R. Rodriguez 		 */
1691203c4805SLuis R. Rodriguez 		if (flush)
1692203c4805SLuis R. Rodriguez 			goto requeue;
1693203c4805SLuis R. Rodriguez 
1694c8f3b721SJan Friedrich 		retval = ath9k_rx_skb_preprocess(common, hw, hdr, &rs,
1695c8f3b721SJan Friedrich 						 rxs, &decrypt_error);
1696c8f3b721SJan Friedrich 		if (retval)
1697c8f3b721SJan Friedrich 			goto requeue;
1698c8f3b721SJan Friedrich 
1699a6d2055bSFelix Fietkau 		rxs->mactime = (tsf & ~0xffffffffULL) | rs.rs_tstamp;
1700a6d2055bSFelix Fietkau 		if (rs.rs_tstamp > tsf_lower &&
1701a6d2055bSFelix Fietkau 		    unlikely(rs.rs_tstamp - tsf_lower > 0x10000000))
1702a6d2055bSFelix Fietkau 			rxs->mactime -= 0x100000000ULL;
1703a6d2055bSFelix Fietkau 
1704a6d2055bSFelix Fietkau 		if (rs.rs_tstamp < tsf_lower &&
1705a6d2055bSFelix Fietkau 		    unlikely(tsf_lower - rs.rs_tstamp > 0x10000000))
1706a6d2055bSFelix Fietkau 			rxs->mactime += 0x100000000ULL;
1707a6d2055bSFelix Fietkau 
1708203c4805SLuis R. Rodriguez 		/* Ensure we always have an skb to requeue once we are done
1709203c4805SLuis R. Rodriguez 		 * processing the current buffer's skb */
1710cc861f74SLuis R. Rodriguez 		requeue_skb = ath_rxbuf_alloc(common, common->rx_bufsize, GFP_ATOMIC);
1711203c4805SLuis R. Rodriguez 
1712203c4805SLuis R. Rodriguez 		/* If there is no memory we ignore the current RX'd frame,
1713203c4805SLuis R. Rodriguez 		 * tell hardware it can give us a new frame using the old
1714203c4805SLuis R. Rodriguez 		 * skb and put it at the tail of the sc->rx.rxbuf list for
1715203c4805SLuis R. Rodriguez 		 * processing. */
1716203c4805SLuis R. Rodriguez 		if (!requeue_skb)
1717203c4805SLuis R. Rodriguez 			goto requeue;
1718203c4805SLuis R. Rodriguez 
1719203c4805SLuis R. Rodriguez 		/* Unmap the frame */
1720203c4805SLuis R. Rodriguez 		dma_unmap_single(sc->dev, bf->bf_buf_addr,
1721cc861f74SLuis R. Rodriguez 				 common->rx_bufsize,
1722b5c80475SFelix Fietkau 				 dma_type);
1723203c4805SLuis R. Rodriguez 
1724b5c80475SFelix Fietkau 		skb_put(skb, rs.rs_datalen + ah->caps.rx_status_len);
1725b5c80475SFelix Fietkau 		if (ah->caps.rx_status_len)
1726b5c80475SFelix Fietkau 			skb_pull(skb, ah->caps.rx_status_len);
1727203c4805SLuis R. Rodriguez 
1728d435700fSSujith 		ath9k_rx_skb_postprocess(common, skb, &rs,
1729c9b14170SLuis R. Rodriguez 					 rxs, decrypt_error);
1730203c4805SLuis R. Rodriguez 
1731203c4805SLuis R. Rodriguez 		/* We will now give hardware our shiny new allocated skb */
1732203c4805SLuis R. Rodriguez 		bf->bf_mpdu = requeue_skb;
1733203c4805SLuis R. Rodriguez 		bf->bf_buf_addr = dma_map_single(sc->dev, requeue_skb->data,
1734cc861f74SLuis R. Rodriguez 						 common->rx_bufsize,
1735b5c80475SFelix Fietkau 						 dma_type);
1736203c4805SLuis R. Rodriguez 		if (unlikely(dma_mapping_error(sc->dev,
1737203c4805SLuis R. Rodriguez 			  bf->bf_buf_addr))) {
1738203c4805SLuis R. Rodriguez 			dev_kfree_skb_any(requeue_skb);
1739203c4805SLuis R. Rodriguez 			bf->bf_mpdu = NULL;
17406cf9e995SBen Greear 			bf->bf_buf_addr = 0;
1741c46917bbSLuis R. Rodriguez 			ath_print(common, ATH_DBG_FATAL,
1742203c4805SLuis R. Rodriguez 				  "dma_mapping_error() on RX\n");
17435ca42627SLuis R. Rodriguez 			ath_rx_send_to_mac80211(hw, sc, skb, rxs);
1744203c4805SLuis R. Rodriguez 			break;
1745203c4805SLuis R. Rodriguez 		}
1746203c4805SLuis R. Rodriguez 
1747203c4805SLuis R. Rodriguez 		/*
1748203c4805SLuis R. Rodriguez 		 * change the default rx antenna if rx diversity chooses the
1749203c4805SLuis R. Rodriguez 		 * other antenna 3 times in a row.
1750203c4805SLuis R. Rodriguez 		 */
175129bffa96SFelix Fietkau 		if (sc->rx.defant != rs.rs_antenna) {
1752203c4805SLuis R. Rodriguez 			if (++sc->rx.rxotherant >= 3)
175329bffa96SFelix Fietkau 				ath_setdefantenna(sc, rs.rs_antenna);
1754203c4805SLuis R. Rodriguez 		} else {
1755203c4805SLuis R. Rodriguez 			sc->rx.rxotherant = 0;
1756203c4805SLuis R. Rodriguez 		}
1757203c4805SLuis R. Rodriguez 
17588ab2cd09SLuis R. Rodriguez 		spin_lock_irqsave(&sc->sc_pm_lock, flags);
1759ededf1f8SVasanthakumar Thiagarajan 		if (unlikely(ath9k_check_auto_sleep(sc) ||
1760ededf1f8SVasanthakumar Thiagarajan 			     (sc->ps_flags & (PS_WAIT_FOR_BEACON |
17611b04b930SSujith 					      PS_WAIT_FOR_CAB |
1762ededf1f8SVasanthakumar Thiagarajan 					      PS_WAIT_FOR_PSPOLL_DATA))))
1763cc65965cSJouni Malinen 			ath_rx_ps(sc, skb);
17648ab2cd09SLuis R. Rodriguez 		spin_unlock_irqrestore(&sc->sc_pm_lock, flags);
1765cc65965cSJouni Malinen 
1766102885a5SVasanthakumar Thiagarajan 		if (ah->caps.hw_caps & ATH9K_HW_CAP_ANT_DIV_COMB)
1767102885a5SVasanthakumar Thiagarajan 			ath_ant_comb_scan(sc, &rs);
1768102885a5SVasanthakumar Thiagarajan 
17695ca42627SLuis R. Rodriguez 		ath_rx_send_to_mac80211(hw, sc, skb, rxs);
1770cc65965cSJouni Malinen 
1771203c4805SLuis R. Rodriguez requeue:
1772b5c80475SFelix Fietkau 		if (edma) {
1773b5c80475SFelix Fietkau 			list_add_tail(&bf->list, &sc->rx.rxbuf);
1774b5c80475SFelix Fietkau 			ath_rx_edma_buf_link(sc, qtype);
1775b5c80475SFelix Fietkau 		} else {
1776203c4805SLuis R. Rodriguez 			list_move_tail(&bf->list, &sc->rx.rxbuf);
1777203c4805SLuis R. Rodriguez 			ath_rx_buf_link(sc, bf);
1778b5c80475SFelix Fietkau 		}
1779203c4805SLuis R. Rodriguez 	} while (1);
1780203c4805SLuis R. Rodriguez 
1781203c4805SLuis R. Rodriguez 	spin_unlock_bh(&sc->rx.rxbuflock);
1782203c4805SLuis R. Rodriguez 
1783203c4805SLuis R. Rodriguez 	return 0;
1784203c4805SLuis R. Rodriguez }
1785