xref: /freebsd/sys/dev/ath/ath_hal/ar5416/ar5416_recv.c (revision 315ee00f)
1 /*-
2  * SPDX-License-Identifier: ISC
3  *
4  * Copyright (c) 2002-2008 Sam Leffler, Errno Consulting
5  * Copyright (c) 2002-2008 Atheros Communications, Inc.
6  *
7  * Permission to use, copy, modify, and/or distribute this software for any
8  * purpose with or without fee is hereby granted, provided that the above
9  * copyright notice and this permission notice appear in all copies.
10  *
11  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
12  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
13  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
14  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
15  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
16  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
17  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
18  */
19 #include "opt_ah.h"
20 
21 #include "ah.h"
22 #include "ah_desc.h"
23 #include "ah_internal.h"
24 
25 #include "ar5416/ar5416.h"
26 #include "ar5416/ar5416reg.h"
27 #include "ar5416/ar5416desc.h"
28 
29 /*
30  * Get the receive filter.
31  */
32 uint32_t
33 ar5416GetRxFilter(struct ath_hal *ah)
34 {
35 	uint32_t bits = OS_REG_READ(ah, AR_RX_FILTER);
36 	uint32_t phybits = OS_REG_READ(ah, AR_PHY_ERR);
37 
38 	if (phybits & AR_PHY_ERR_RADAR)
39 		bits |= HAL_RX_FILTER_PHYRADAR;
40 	if (phybits & (AR_PHY_ERR_OFDM_TIMING | AR_PHY_ERR_CCK_TIMING))
41 		bits |= HAL_RX_FILTER_PHYERR;
42 	return bits;
43 }
44 
45 /*
46  * Set the receive filter.
47  */
48 void
49 ar5416SetRxFilter(struct ath_hal *ah, u_int32_t bits)
50 {
51 	uint32_t phybits;
52 
53 	OS_REG_WRITE(ah, AR_RX_FILTER, (bits & 0xffff));
54 	phybits = 0;
55 	if (bits & HAL_RX_FILTER_PHYRADAR)
56 		phybits |= AR_PHY_ERR_RADAR;
57 	if (bits & HAL_RX_FILTER_PHYERR)
58 		phybits |= AR_PHY_ERR_OFDM_TIMING | AR_PHY_ERR_CCK_TIMING;
59 	OS_REG_WRITE(ah, AR_PHY_ERR, phybits);
60 	if (phybits) {
61 		OS_REG_WRITE(ah, AR_RXCFG,
62 		    OS_REG_READ(ah, AR_RXCFG) | AR_RXCFG_ZLFDMA);
63 	} else {
64 		OS_REG_WRITE(ah, AR_RXCFG,
65 		    OS_REG_READ(ah, AR_RXCFG) &~ AR_RXCFG_ZLFDMA);
66 	}
67 }
68 
69 /*
70  * Stop Receive at the DMA engine
71  */
72 HAL_BOOL
73 ar5416StopDmaReceive(struct ath_hal *ah)
74 {
75 	HAL_BOOL status;
76 
77 	OS_MARK(ah, AH_MARK_RX_CTL, AH_MARK_RX_CTL_DMA_STOP);
78 	OS_REG_WRITE(ah, AR_CR, AR_CR_RXD);	/* Set receive disable bit */
79 	if (!ath_hal_wait(ah, AR_CR, AR_CR_RXE, 0)) {
80 		OS_MARK(ah, AH_MARK_RX_CTL, AH_MARK_RX_CTL_DMA_STOP_ERR);
81 #ifdef AH_DEBUG
82 		ath_hal_printf(ah, "%s: dma failed to stop in 10ms\n"
83 			"AR_CR=0x%08x\nAR_DIAG_SW=0x%08x\n",
84 			__func__,
85 			OS_REG_READ(ah, AR_CR),
86 			OS_REG_READ(ah, AR_DIAG_SW));
87 #endif
88 		status = AH_FALSE;
89 	} else {
90 		status = AH_TRUE;
91 	}
92 
93 	/*
94 	 * XXX Is this to flush whatever is in a FIFO somewhere?
95 	 * XXX If so, what should the correct behaviour should be?
96 	 */
97 	if (AR_SREV_9100(ah))
98 		OS_DELAY(3000);
99 
100 	return (status);
101 }
102 
103 /*
104  * Start receive at the PCU engine
105  */
106 void
107 ar5416StartPcuReceive(struct ath_hal *ah, HAL_BOOL is_scanning)
108 {
109 	struct ath_hal_private *ahp = AH_PRIVATE(ah);
110 
111 	HALDEBUG(ah, HAL_DEBUG_RX, "%s: Start PCU Receive \n", __func__);
112 	ar5212EnableMibCounters(ah);
113 	/* NB: restore current settings if we're not scanning */
114 	ar5416AniReset(ah, ahp->ah_curchan, ahp->ah_opmode, ! is_scanning);
115 	/*
116 	 * NB: must do after enabling phy errors to avoid rx
117 	 *     frames w/ corrupted descriptor status.
118 	 */
119 	OS_REG_CLR_BIT(ah, AR_DIAG_SW, AR_DIAG_RX_DIS | AR_DIAG_RX_ABORT);
120 }
121 
122 /*
123  * Stop receive at the PCU engine
124  * and abort current frame in PCU
125  */
126 void
127 ar5416StopPcuReceive(struct ath_hal *ah)
128 {
129 	OS_REG_SET_BIT(ah, AR_DIAG_SW, AR_DIAG_RX_DIS | AR_DIAG_RX_ABORT);
130 
131 	HALDEBUG(ah, HAL_DEBUG_RX, "%s: Stop PCU Receive \n", __func__);
132 	ar5212DisableMibCounters(ah);
133 }
134 
135 /*
136  * Initialize RX descriptor, by clearing the status and setting
137  * the size (and any other flags).
138  */
139 HAL_BOOL
140 ar5416SetupRxDesc(struct ath_hal *ah, struct ath_desc *ds,
141     uint32_t size, u_int flags)
142 {
143 	struct ar5416_desc *ads = AR5416DESC(ds);
144 
145 	HALASSERT((size &~ AR_BufLen) == 0);
146 
147 	ads->ds_ctl1 = size & AR_BufLen;
148 	if (flags & HAL_RXDESC_INTREQ)
149 		ads->ds_ctl1 |= AR_RxIntrReq;
150 
151 	/* this should be enough */
152 	ads->ds_rxstatus8 &= ~AR_RxDone;
153 
154 	/* clear the rest of the status fields */
155 	OS_MEMZERO(&(ads->u), sizeof(ads->u));
156 
157 	return AH_TRUE;
158 }
159 
160 /*
161  * Process an RX descriptor, and return the status to the caller.
162  * Copy some hardware specific items into the software portion
163  * of the descriptor.
164  *
165  * NB: the caller is responsible for validating the memory contents
166  *     of the descriptor (e.g. flushing any cached copy).
167  */
168 HAL_STATUS
169 ar5416ProcRxDesc(struct ath_hal *ah, struct ath_desc *ds,
170     uint32_t pa, struct ath_desc *nds, uint64_t tsf,
171     struct ath_rx_status *rs)
172 {
173 	struct ar5416_desc *ads = AR5416DESC(ds);
174 
175 	if ((ads->ds_rxstatus8 & AR_RxDone) == 0)
176 		return HAL_EINPROGRESS;
177 
178 	rs->rs_status = 0;
179 	rs->rs_flags = 0;
180 
181 	rs->rs_datalen = ads->ds_rxstatus1 & AR_DataLen;
182 	rs->rs_tstamp =  ads->AR_RcvTimestamp;
183 
184 	rs->rs_rssi = MS(ads->ds_rxstatus4, AR_RxRSSICombined);
185 	rs->rs_rssi_ctl[0] = MS(ads->ds_rxstatus0, AR_RxRSSIAnt00);
186 	rs->rs_rssi_ctl[1] = MS(ads->ds_rxstatus0, AR_RxRSSIAnt01);
187 	rs->rs_rssi_ctl[2] = MS(ads->ds_rxstatus0, AR_RxRSSIAnt02);
188 	rs->rs_rssi_ext[0] = MS(ads->ds_rxstatus4, AR_RxRSSIAnt10);
189 	rs->rs_rssi_ext[1] = MS(ads->ds_rxstatus4, AR_RxRSSIAnt11);
190 	rs->rs_rssi_ext[2] = MS(ads->ds_rxstatus4, AR_RxRSSIAnt12);
191 
192 	if (ads->ds_rxstatus8 & AR_RxKeyIdxValid)
193 		rs->rs_keyix = MS(ads->ds_rxstatus8, AR_KeyIdx);
194 	else
195 		rs->rs_keyix = HAL_RXKEYIX_INVALID;
196 
197 	/* NB: caller expected to do rate table mapping */
198 	rs->rs_rate = RXSTATUS_RATE(ah, ads);
199 	rs->rs_more = (ads->ds_rxstatus1 & AR_RxMore) ? 1 : 0;
200 
201 	rs->rs_isaggr = (ads->ds_rxstatus8 & AR_RxAggr) ? 1 : 0;
202 	rs->rs_moreaggr = (ads->ds_rxstatus8 & AR_RxMoreAggr) ? 1 : 0;
203 	rs->rs_antenna = MS(ads->ds_rxstatus3, AR_RxAntenna);
204 
205 	if (ads->ds_rxstatus3 & AR_GI)
206 		rs->rs_flags |= HAL_RX_GI;
207 	if (ads->ds_rxstatus3 & AR_2040)
208 		rs->rs_flags |= HAL_RX_2040;
209 
210 	/*
211 	 * Only the AR9280 and later chips support STBC RX, so
212 	 * ensure we only set this bit for those chips.
213 	 */
214 	if (AR_SREV_MERLIN_10_OR_LATER(ah)
215 	    && ads->ds_rxstatus3 & AR_STBCFrame)
216 		rs->rs_flags |= HAL_RX_STBC;
217 
218 	if (ads->ds_rxstatus8 & AR_PreDelimCRCErr)
219 		rs->rs_flags |= HAL_RX_DELIM_CRC_PRE;
220 	if (ads->ds_rxstatus8 & AR_PostDelimCRCErr)
221 		rs->rs_flags |= HAL_RX_DELIM_CRC_POST;
222 	if (ads->ds_rxstatus8 & AR_DecryptBusyErr)
223 		rs->rs_flags |= HAL_RX_DECRYPT_BUSY;
224 	if (ads->ds_rxstatus8 & AR_HiRxChain)
225 		rs->rs_flags |= HAL_RX_HI_RX_CHAIN;
226 
227 	if ((ads->ds_rxstatus8 & AR_RxFrameOK) == 0) {
228 		/*
229 		 * These four bits should not be set together.  The
230 		 * 5416 spec states a Michael error can only occur if
231 		 * DecryptCRCErr not set (and TKIP is used).  Experience
232 		 * indicates however that you can also get Michael errors
233 		 * when a CRC error is detected, but these are specious.
234 		 * Consequently we filter them out here so we don't
235 		 * confuse and/or complicate drivers.
236 		 */
237 
238 		/*
239 		 * The AR5416 sometimes sets both AR_CRCErr and AR_PHYErr
240 		 * when reporting radar pulses.  In this instance
241 		 * set HAL_RXERR_PHY as well as HAL_RXERR_CRC and
242 		 * let the driver layer figure out what to do.
243 		 *
244 		 * See PR kern/169362.
245 		 */
246 		if (ads->ds_rxstatus8 & AR_PHYErr) {
247 			u_int phyerr;
248 
249 			/*
250 			 * Packets with OFDM_RESTART on post delimiter are CRC OK and
251 			 * usable and MAC ACKs them.
252 			 * To avoid packet from being lost, we remove the PHY Err flag
253 			 * so that driver layer does not drop them.
254 			 */
255 			phyerr = MS(ads->ds_rxstatus8, AR_PHYErrCode);
256 
257 			if ((phyerr == HAL_PHYERR_OFDM_RESTART) &&
258 			    (ads->ds_rxstatus8 & AR_PostDelimCRCErr)) {
259 				ath_hal_printf(ah,
260 				    "%s: OFDM_RESTART on post-delim CRC error\n",
261 				    __func__);
262 				rs->rs_phyerr = 0;
263 			} else {
264 				rs->rs_status |= HAL_RXERR_PHY;
265 				rs->rs_phyerr = phyerr;
266 			}
267 		}
268 		if (ads->ds_rxstatus8 & AR_CRCErr)
269 			rs->rs_status |= HAL_RXERR_CRC;
270 		else if (ads->ds_rxstatus8 & AR_DecryptCRCErr)
271 			rs->rs_status |= HAL_RXERR_DECRYPT;
272 		else if (ads->ds_rxstatus8 & AR_MichaelErr)
273 			rs->rs_status |= HAL_RXERR_MIC;
274 	}
275 
276 	if (ads->ds_rxstatus8 & AR_KeyMiss)
277 		rs->rs_status |= HAL_RXERR_KEYMISS;
278 
279 	return HAL_OK;
280 }
281