blob: b54e857c03100f9b17436df94b4aa61fd8c51b2d [file] [log] [blame]
Sujithf1dc5602008-10-29 10:16:30 +05301/*
Sujithcee075a2009-03-13 09:07:23 +05302 * Copyright (c) 2008-2009 Atheros Communications Inc.
Sujithf1dc5602008-10-29 10:16:30 +05303 *
4 * Permission to use, copy, modify, and/or distribute this software for any
5 * purpose with or without fee is hereby granted, provided that the above
6 * copyright notice and this permission notice appear in all copies.
7 *
8 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 */
16
Luis R. Rodriguez990b70a2009-09-13 23:55:05 -070017#include "hw.h"
Sujithf1dc5602008-10-29 10:16:30 +053018
Sujithcbe61d82009-02-09 13:27:12 +053019static void ath9k_hw_set_txq_interrupts(struct ath_hw *ah,
Sujithf1dc5602008-10-29 10:16:30 +053020 struct ath9k_tx_queue_info *qi)
21{
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -070022 ath_print(ath9k_hw_common(ah), ATH_DBG_INTERRUPT,
23 "tx ok 0x%x err 0x%x desc 0x%x eol 0x%x urn 0x%x\n",
24 ah->txok_interrupt_mask, ah->txerr_interrupt_mask,
25 ah->txdesc_interrupt_mask, ah->txeol_interrupt_mask,
26 ah->txurn_interrupt_mask);
Sujithf1dc5602008-10-29 10:16:30 +053027
28 REG_WRITE(ah, AR_IMR_S0,
Sujith2660b812009-02-09 13:27:26 +053029 SM(ah->txok_interrupt_mask, AR_IMR_S0_QCU_TXOK)
30 | SM(ah->txdesc_interrupt_mask, AR_IMR_S0_QCU_TXDESC));
Sujithf1dc5602008-10-29 10:16:30 +053031 REG_WRITE(ah, AR_IMR_S1,
Sujith2660b812009-02-09 13:27:26 +053032 SM(ah->txerr_interrupt_mask, AR_IMR_S1_QCU_TXERR)
33 | SM(ah->txeol_interrupt_mask, AR_IMR_S1_QCU_TXEOL));
Pavel Roskin74bad5c2010-02-23 18:15:27 -050034
35 ah->imrs2_reg &= ~AR_IMR_S2_QCU_TXURN;
36 ah->imrs2_reg |= (ah->txurn_interrupt_mask & AR_IMR_S2_QCU_TXURN);
37 REG_WRITE(ah, AR_IMR_S2, ah->imrs2_reg);
Sujithf1dc5602008-10-29 10:16:30 +053038}
39
Sujithcbe61d82009-02-09 13:27:12 +053040u32 ath9k_hw_gettxbuf(struct ath_hw *ah, u32 q)
Sujithf1dc5602008-10-29 10:16:30 +053041{
42 return REG_READ(ah, AR_QTXDP(q));
43}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -040044EXPORT_SYMBOL(ath9k_hw_gettxbuf);
Sujithf1dc5602008-10-29 10:16:30 +053045
Sujith54e4cec2009-08-07 09:45:09 +053046void ath9k_hw_puttxbuf(struct ath_hw *ah, u32 q, u32 txdp)
Sujithf1dc5602008-10-29 10:16:30 +053047{
48 REG_WRITE(ah, AR_QTXDP(q), txdp);
Sujithf1dc5602008-10-29 10:16:30 +053049}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -040050EXPORT_SYMBOL(ath9k_hw_puttxbuf);
Sujithf1dc5602008-10-29 10:16:30 +053051
Sujith54e4cec2009-08-07 09:45:09 +053052void ath9k_hw_txstart(struct ath_hw *ah, u32 q)
Sujithf1dc5602008-10-29 10:16:30 +053053{
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -070054 ath_print(ath9k_hw_common(ah), ATH_DBG_QUEUE,
55 "Enable TXE on queue: %u\n", q);
Sujithf1dc5602008-10-29 10:16:30 +053056 REG_WRITE(ah, AR_Q_TXE, 1 << q);
Sujithf1dc5602008-10-29 10:16:30 +053057}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -040058EXPORT_SYMBOL(ath9k_hw_txstart);
Sujithf1dc5602008-10-29 10:16:30 +053059
Vasanthakumar Thiagarajancc610ac02010-04-15 17:39:26 -040060void ath9k_hw_cleartxdesc(struct ath_hw *ah, void *ds)
61{
62 struct ar5416_desc *ads = AR5416DESC(ds);
63
64 ads->ds_txstatus0 = ads->ds_txstatus1 = 0;
65 ads->ds_txstatus2 = ads->ds_txstatus3 = 0;
66 ads->ds_txstatus4 = ads->ds_txstatus5 = 0;
67 ads->ds_txstatus6 = ads->ds_txstatus7 = 0;
68 ads->ds_txstatus8 = ads->ds_txstatus9 = 0;
69}
70EXPORT_SYMBOL(ath9k_hw_cleartxdesc);
71
Sujithcbe61d82009-02-09 13:27:12 +053072u32 ath9k_hw_numtxpending(struct ath_hw *ah, u32 q)
Sujithf1dc5602008-10-29 10:16:30 +053073{
74 u32 npend;
75
76 npend = REG_READ(ah, AR_QSTS(q)) & AR_Q_STS_PEND_FR_CNT;
77 if (npend == 0) {
78
79 if (REG_READ(ah, AR_Q_TXE) & (1 << q))
80 npend = 1;
81 }
82
83 return npend;
84}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -040085EXPORT_SYMBOL(ath9k_hw_numtxpending);
Sujithf1dc5602008-10-29 10:16:30 +053086
Luis R. Rodriguezf4709fd2009-11-24 21:37:57 -050087/**
88 * ath9k_hw_updatetxtriglevel - adjusts the frame trigger level
89 *
90 * @ah: atheros hardware struct
91 * @bIncTrigLevel: whether or not the frame trigger level should be updated
92 *
93 * The frame trigger level specifies the minimum number of bytes,
94 * in units of 64 bytes, that must be DMA'ed into the PCU TX FIFO
95 * before the PCU will initiate sending the frame on the air. This can
96 * mean we initiate transmit before a full frame is on the PCU TX FIFO.
97 * Resets to 0x1 (meaning 64 bytes or a full frame, whichever occurs
98 * first)
99 *
100 * Caution must be taken to ensure to set the frame trigger level based
101 * on the DMA request size. For example if the DMA request size is set to
102 * 128 bytes the trigger level cannot exceed 6 * 64 = 384. This is because
103 * there need to be enough space in the tx FIFO for the requested transfer
104 * size. Hence the tx FIFO will stop with 512 - 128 = 384 bytes. If we set
105 * the threshold to a value beyond 6, then the transmit will hang.
106 *
107 * Current dual stream devices have a PCU TX FIFO size of 8 KB.
108 * Current single stream devices have a PCU TX FIFO size of 4 KB, however,
109 * there is a hardware issue which forces us to use 2 KB instead so the
110 * frame trigger level must not exceed 2 KB for these chipsets.
111 */
Sujithcbe61d82009-02-09 13:27:12 +0530112bool ath9k_hw_updatetxtriglevel(struct ath_hw *ah, bool bIncTrigLevel)
Sujithf1dc5602008-10-29 10:16:30 +0530113{
Sujithf1dc5602008-10-29 10:16:30 +0530114 u32 txcfg, curLevel, newLevel;
115 enum ath9k_int omask;
116
Luis R. Rodriguezf4709fd2009-11-24 21:37:57 -0500117 if (ah->tx_trig_level >= ah->config.max_txtrig_level)
Sujithf1dc5602008-10-29 10:16:30 +0530118 return false;
119
Pavel Roskin152d5302010-03-31 18:05:37 -0400120 omask = ath9k_hw_set_interrupts(ah, ah->imask & ~ATH9K_INT_GLOBAL);
Sujithf1dc5602008-10-29 10:16:30 +0530121
122 txcfg = REG_READ(ah, AR_TXCFG);
123 curLevel = MS(txcfg, AR_FTRIG);
124 newLevel = curLevel;
125 if (bIncTrigLevel) {
Luis R. Rodriguezf4709fd2009-11-24 21:37:57 -0500126 if (curLevel < ah->config.max_txtrig_level)
Sujithf1dc5602008-10-29 10:16:30 +0530127 newLevel++;
128 } else if (curLevel > MIN_TX_FIFO_THRESHOLD)
129 newLevel--;
130 if (newLevel != curLevel)
131 REG_WRITE(ah, AR_TXCFG,
132 (txcfg & ~AR_FTRIG) | SM(newLevel, AR_FTRIG));
133
134 ath9k_hw_set_interrupts(ah, omask);
135
Sujith2660b812009-02-09 13:27:26 +0530136 ah->tx_trig_level = newLevel;
Sujithf1dc5602008-10-29 10:16:30 +0530137
138 return newLevel != curLevel;
139}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -0400140EXPORT_SYMBOL(ath9k_hw_updatetxtriglevel);
Sujithf1dc5602008-10-29 10:16:30 +0530141
Sujithcbe61d82009-02-09 13:27:12 +0530142bool ath9k_hw_stoptxdma(struct ath_hw *ah, u32 q)
Sujithf1dc5602008-10-29 10:16:30 +0530143{
Sujith94ff91d2009-01-27 15:06:38 +0530144#define ATH9K_TX_STOP_DMA_TIMEOUT 4000 /* usec */
145#define ATH9K_TIME_QUANTUM 100 /* usec */
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700146 struct ath_common *common = ath9k_hw_common(ah);
Sujith2660b812009-02-09 13:27:26 +0530147 struct ath9k_hw_capabilities *pCap = &ah->caps;
Sujith94ff91d2009-01-27 15:06:38 +0530148 struct ath9k_tx_queue_info *qi;
Sujithf1dc5602008-10-29 10:16:30 +0530149 u32 tsfLow, j, wait;
Sujith94ff91d2009-01-27 15:06:38 +0530150 u32 wait_time = ATH9K_TX_STOP_DMA_TIMEOUT / ATH9K_TIME_QUANTUM;
151
152 if (q >= pCap->total_queues) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700153 ath_print(common, ATH_DBG_QUEUE, "Stopping TX DMA, "
154 "invalid queue: %u\n", q);
Sujith94ff91d2009-01-27 15:06:38 +0530155 return false;
156 }
157
Sujith2660b812009-02-09 13:27:26 +0530158 qi = &ah->txq[q];
Sujith94ff91d2009-01-27 15:06:38 +0530159 if (qi->tqi_type == ATH9K_TX_QUEUE_INACTIVE) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700160 ath_print(common, ATH_DBG_QUEUE, "Stopping TX DMA, "
161 "inactive queue: %u\n", q);
Sujith94ff91d2009-01-27 15:06:38 +0530162 return false;
163 }
Sujithf1dc5602008-10-29 10:16:30 +0530164
165 REG_WRITE(ah, AR_Q_TXD, 1 << q);
166
Sujith94ff91d2009-01-27 15:06:38 +0530167 for (wait = wait_time; wait != 0; wait--) {
Sujithf1dc5602008-10-29 10:16:30 +0530168 if (ath9k_hw_numtxpending(ah, q) == 0)
169 break;
Sujith94ff91d2009-01-27 15:06:38 +0530170 udelay(ATH9K_TIME_QUANTUM);
Sujithf1dc5602008-10-29 10:16:30 +0530171 }
172
173 if (ath9k_hw_numtxpending(ah, q)) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700174 ath_print(common, ATH_DBG_QUEUE,
175 "%s: Num of pending TX Frames %d on Q %d\n",
176 __func__, ath9k_hw_numtxpending(ah, q), q);
Sujithf1dc5602008-10-29 10:16:30 +0530177
178 for (j = 0; j < 2; j++) {
179 tsfLow = REG_READ(ah, AR_TSF_L32);
180 REG_WRITE(ah, AR_QUIET2,
181 SM(10, AR_QUIET2_QUIET_DUR));
182 REG_WRITE(ah, AR_QUIET_PERIOD, 100);
183 REG_WRITE(ah, AR_NEXT_QUIET_TIMER, tsfLow >> 10);
184 REG_SET_BIT(ah, AR_TIMER_MODE,
185 AR_QUIET_TIMER_EN);
186
187 if ((REG_READ(ah, AR_TSF_L32) >> 10) == (tsfLow >> 10))
188 break;
189
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700190 ath_print(common, ATH_DBG_QUEUE,
191 "TSF has moved while trying to set "
192 "quiet time TSF: 0x%08x\n", tsfLow);
Sujithf1dc5602008-10-29 10:16:30 +0530193 }
194
195 REG_SET_BIT(ah, AR_DIAG_SW, AR_DIAG_FORCE_CH_IDLE_HIGH);
196
197 udelay(200);
198 REG_CLR_BIT(ah, AR_TIMER_MODE, AR_QUIET_TIMER_EN);
199
Sujith94ff91d2009-01-27 15:06:38 +0530200 wait = wait_time;
Sujithf1dc5602008-10-29 10:16:30 +0530201 while (ath9k_hw_numtxpending(ah, q)) {
202 if ((--wait) == 0) {
Sujithe8009e92009-12-14 14:57:08 +0530203 ath_print(common, ATH_DBG_FATAL,
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700204 "Failed to stop TX DMA in 100 "
205 "msec after killing last frame\n");
Sujithf1dc5602008-10-29 10:16:30 +0530206 break;
207 }
Sujith94ff91d2009-01-27 15:06:38 +0530208 udelay(ATH9K_TIME_QUANTUM);
Sujithf1dc5602008-10-29 10:16:30 +0530209 }
210
211 REG_CLR_BIT(ah, AR_DIAG_SW, AR_DIAG_FORCE_CH_IDLE_HIGH);
212 }
213
214 REG_WRITE(ah, AR_Q_TXD, 0);
Sujithf1dc5602008-10-29 10:16:30 +0530215 return wait != 0;
Sujith94ff91d2009-01-27 15:06:38 +0530216
217#undef ATH9K_TX_STOP_DMA_TIMEOUT
218#undef ATH9K_TIME_QUANTUM
Sujithf1dc5602008-10-29 10:16:30 +0530219}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -0400220EXPORT_SYMBOL(ath9k_hw_stoptxdma);
Sujithf1dc5602008-10-29 10:16:30 +0530221
Sujithcbe61d82009-02-09 13:27:12 +0530222void ath9k_hw_gettxintrtxqs(struct ath_hw *ah, u32 *txqs)
Sujithf1dc5602008-10-29 10:16:30 +0530223{
Sujith2660b812009-02-09 13:27:26 +0530224 *txqs &= ah->intr_txqs;
225 ah->intr_txqs &= ~(*txqs);
Sujithf1dc5602008-10-29 10:16:30 +0530226}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -0400227EXPORT_SYMBOL(ath9k_hw_gettxintrtxqs);
Sujithf1dc5602008-10-29 10:16:30 +0530228
Sujithcbe61d82009-02-09 13:27:12 +0530229bool ath9k_hw_set_txq_props(struct ath_hw *ah, int q,
Sujithf1dc5602008-10-29 10:16:30 +0530230 const struct ath9k_tx_queue_info *qinfo)
231{
232 u32 cw;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700233 struct ath_common *common = ath9k_hw_common(ah);
Sujith2660b812009-02-09 13:27:26 +0530234 struct ath9k_hw_capabilities *pCap = &ah->caps;
Sujithf1dc5602008-10-29 10:16:30 +0530235 struct ath9k_tx_queue_info *qi;
236
237 if (q >= pCap->total_queues) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700238 ath_print(common, ATH_DBG_QUEUE, "Set TXQ properties, "
239 "invalid queue: %u\n", q);
Sujithf1dc5602008-10-29 10:16:30 +0530240 return false;
241 }
242
Sujith2660b812009-02-09 13:27:26 +0530243 qi = &ah->txq[q];
Sujithf1dc5602008-10-29 10:16:30 +0530244 if (qi->tqi_type == ATH9K_TX_QUEUE_INACTIVE) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700245 ath_print(common, ATH_DBG_QUEUE, "Set TXQ properties, "
246 "inactive queue: %u\n", q);
Sujithf1dc5602008-10-29 10:16:30 +0530247 return false;
248 }
249
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700250 ath_print(common, ATH_DBG_QUEUE, "Set queue properties for: %u\n", q);
Sujithf1dc5602008-10-29 10:16:30 +0530251
252 qi->tqi_ver = qinfo->tqi_ver;
253 qi->tqi_subtype = qinfo->tqi_subtype;
254 qi->tqi_qflags = qinfo->tqi_qflags;
255 qi->tqi_priority = qinfo->tqi_priority;
256 if (qinfo->tqi_aifs != ATH9K_TXQ_USEDEFAULT)
257 qi->tqi_aifs = min(qinfo->tqi_aifs, 255U);
258 else
259 qi->tqi_aifs = INIT_AIFS;
260 if (qinfo->tqi_cwmin != ATH9K_TXQ_USEDEFAULT) {
261 cw = min(qinfo->tqi_cwmin, 1024U);
262 qi->tqi_cwmin = 1;
263 while (qi->tqi_cwmin < cw)
264 qi->tqi_cwmin = (qi->tqi_cwmin << 1) | 1;
265 } else
266 qi->tqi_cwmin = qinfo->tqi_cwmin;
267 if (qinfo->tqi_cwmax != ATH9K_TXQ_USEDEFAULT) {
268 cw = min(qinfo->tqi_cwmax, 1024U);
269 qi->tqi_cwmax = 1;
270 while (qi->tqi_cwmax < cw)
271 qi->tqi_cwmax = (qi->tqi_cwmax << 1) | 1;
272 } else
273 qi->tqi_cwmax = INIT_CWMAX;
274
275 if (qinfo->tqi_shretry != 0)
276 qi->tqi_shretry = min((u32) qinfo->tqi_shretry, 15U);
277 else
278 qi->tqi_shretry = INIT_SH_RETRY;
279 if (qinfo->tqi_lgretry != 0)
280 qi->tqi_lgretry = min((u32) qinfo->tqi_lgretry, 15U);
281 else
282 qi->tqi_lgretry = INIT_LG_RETRY;
283 qi->tqi_cbrPeriod = qinfo->tqi_cbrPeriod;
284 qi->tqi_cbrOverflowLimit = qinfo->tqi_cbrOverflowLimit;
285 qi->tqi_burstTime = qinfo->tqi_burstTime;
286 qi->tqi_readyTime = qinfo->tqi_readyTime;
287
288 switch (qinfo->tqi_subtype) {
289 case ATH9K_WME_UPSD:
290 if (qi->tqi_type == ATH9K_TX_QUEUE_DATA)
291 qi->tqi_intFlags = ATH9K_TXQ_USE_LOCKOUT_BKOFF_DIS;
292 break;
293 default:
294 break;
295 }
296
297 return true;
298}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -0400299EXPORT_SYMBOL(ath9k_hw_set_txq_props);
Sujithf1dc5602008-10-29 10:16:30 +0530300
Sujithcbe61d82009-02-09 13:27:12 +0530301bool ath9k_hw_get_txq_props(struct ath_hw *ah, int q,
Sujithf1dc5602008-10-29 10:16:30 +0530302 struct ath9k_tx_queue_info *qinfo)
303{
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700304 struct ath_common *common = ath9k_hw_common(ah);
Sujith2660b812009-02-09 13:27:26 +0530305 struct ath9k_hw_capabilities *pCap = &ah->caps;
Sujithf1dc5602008-10-29 10:16:30 +0530306 struct ath9k_tx_queue_info *qi;
307
308 if (q >= pCap->total_queues) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700309 ath_print(common, ATH_DBG_QUEUE, "Get TXQ properties, "
310 "invalid queue: %u\n", q);
Sujithf1dc5602008-10-29 10:16:30 +0530311 return false;
312 }
313
Sujith2660b812009-02-09 13:27:26 +0530314 qi = &ah->txq[q];
Sujithf1dc5602008-10-29 10:16:30 +0530315 if (qi->tqi_type == ATH9K_TX_QUEUE_INACTIVE) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700316 ath_print(common, ATH_DBG_QUEUE, "Get TXQ properties, "
317 "inactive queue: %u\n", q);
Sujithf1dc5602008-10-29 10:16:30 +0530318 return false;
319 }
320
321 qinfo->tqi_qflags = qi->tqi_qflags;
322 qinfo->tqi_ver = qi->tqi_ver;
323 qinfo->tqi_subtype = qi->tqi_subtype;
324 qinfo->tqi_qflags = qi->tqi_qflags;
325 qinfo->tqi_priority = qi->tqi_priority;
326 qinfo->tqi_aifs = qi->tqi_aifs;
327 qinfo->tqi_cwmin = qi->tqi_cwmin;
328 qinfo->tqi_cwmax = qi->tqi_cwmax;
329 qinfo->tqi_shretry = qi->tqi_shretry;
330 qinfo->tqi_lgretry = qi->tqi_lgretry;
331 qinfo->tqi_cbrPeriod = qi->tqi_cbrPeriod;
332 qinfo->tqi_cbrOverflowLimit = qi->tqi_cbrOverflowLimit;
333 qinfo->tqi_burstTime = qi->tqi_burstTime;
334 qinfo->tqi_readyTime = qi->tqi_readyTime;
335
336 return true;
337}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -0400338EXPORT_SYMBOL(ath9k_hw_get_txq_props);
Sujithf1dc5602008-10-29 10:16:30 +0530339
Sujithcbe61d82009-02-09 13:27:12 +0530340int ath9k_hw_setuptxqueue(struct ath_hw *ah, enum ath9k_tx_queue type,
Sujithf1dc5602008-10-29 10:16:30 +0530341 const struct ath9k_tx_queue_info *qinfo)
342{
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700343 struct ath_common *common = ath9k_hw_common(ah);
Sujithf1dc5602008-10-29 10:16:30 +0530344 struct ath9k_tx_queue_info *qi;
Sujith2660b812009-02-09 13:27:26 +0530345 struct ath9k_hw_capabilities *pCap = &ah->caps;
Sujithf1dc5602008-10-29 10:16:30 +0530346 int q;
347
348 switch (type) {
349 case ATH9K_TX_QUEUE_BEACON:
350 q = pCap->total_queues - 1;
351 break;
352 case ATH9K_TX_QUEUE_CAB:
353 q = pCap->total_queues - 2;
354 break;
355 case ATH9K_TX_QUEUE_PSPOLL:
356 q = 1;
357 break;
358 case ATH9K_TX_QUEUE_UAPSD:
359 q = pCap->total_queues - 3;
360 break;
361 case ATH9K_TX_QUEUE_DATA:
362 for (q = 0; q < pCap->total_queues; q++)
Sujith2660b812009-02-09 13:27:26 +0530363 if (ah->txq[q].tqi_type ==
Sujithf1dc5602008-10-29 10:16:30 +0530364 ATH9K_TX_QUEUE_INACTIVE)
365 break;
366 if (q == pCap->total_queues) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700367 ath_print(common, ATH_DBG_FATAL,
368 "No available TX queue\n");
Sujithf1dc5602008-10-29 10:16:30 +0530369 return -1;
370 }
371 break;
372 default:
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700373 ath_print(common, ATH_DBG_FATAL,
374 "Invalid TX queue type: %u\n", type);
Sujithf1dc5602008-10-29 10:16:30 +0530375 return -1;
376 }
377
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700378 ath_print(common, ATH_DBG_QUEUE, "Setup TX queue: %u\n", q);
Sujithf1dc5602008-10-29 10:16:30 +0530379
Sujith2660b812009-02-09 13:27:26 +0530380 qi = &ah->txq[q];
Sujithf1dc5602008-10-29 10:16:30 +0530381 if (qi->tqi_type != ATH9K_TX_QUEUE_INACTIVE) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700382 ath_print(common, ATH_DBG_FATAL,
383 "TX queue: %u already active\n", q);
Sujithf1dc5602008-10-29 10:16:30 +0530384 return -1;
385 }
386 memset(qi, 0, sizeof(struct ath9k_tx_queue_info));
387 qi->tqi_type = type;
388 if (qinfo == NULL) {
389 qi->tqi_qflags =
390 TXQ_FLAG_TXOKINT_ENABLE
391 | TXQ_FLAG_TXERRINT_ENABLE
392 | TXQ_FLAG_TXDESCINT_ENABLE | TXQ_FLAG_TXURNINT_ENABLE;
393 qi->tqi_aifs = INIT_AIFS;
394 qi->tqi_cwmin = ATH9K_TXQ_USEDEFAULT;
395 qi->tqi_cwmax = INIT_CWMAX;
396 qi->tqi_shretry = INIT_SH_RETRY;
397 qi->tqi_lgretry = INIT_LG_RETRY;
398 qi->tqi_physCompBuf = 0;
399 } else {
400 qi->tqi_physCompBuf = qinfo->tqi_physCompBuf;
401 (void) ath9k_hw_set_txq_props(ah, q, qinfo);
402 }
403
404 return q;
405}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -0400406EXPORT_SYMBOL(ath9k_hw_setuptxqueue);
Sujithf1dc5602008-10-29 10:16:30 +0530407
Sujithcbe61d82009-02-09 13:27:12 +0530408bool ath9k_hw_releasetxqueue(struct ath_hw *ah, u32 q)
Sujithf1dc5602008-10-29 10:16:30 +0530409{
Sujith2660b812009-02-09 13:27:26 +0530410 struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700411 struct ath_common *common = ath9k_hw_common(ah);
Sujithf1dc5602008-10-29 10:16:30 +0530412 struct ath9k_tx_queue_info *qi;
413
414 if (q >= pCap->total_queues) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700415 ath_print(common, ATH_DBG_QUEUE, "Release TXQ, "
416 "invalid queue: %u\n", q);
Sujithf1dc5602008-10-29 10:16:30 +0530417 return false;
418 }
Sujith2660b812009-02-09 13:27:26 +0530419 qi = &ah->txq[q];
Sujithf1dc5602008-10-29 10:16:30 +0530420 if (qi->tqi_type == ATH9K_TX_QUEUE_INACTIVE) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700421 ath_print(common, ATH_DBG_QUEUE, "Release TXQ, "
422 "inactive queue: %u\n", q);
Sujithf1dc5602008-10-29 10:16:30 +0530423 return false;
424 }
425
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700426 ath_print(common, ATH_DBG_QUEUE, "Release TX queue: %u\n", q);
Sujithf1dc5602008-10-29 10:16:30 +0530427
428 qi->tqi_type = ATH9K_TX_QUEUE_INACTIVE;
Sujith2660b812009-02-09 13:27:26 +0530429 ah->txok_interrupt_mask &= ~(1 << q);
430 ah->txerr_interrupt_mask &= ~(1 << q);
431 ah->txdesc_interrupt_mask &= ~(1 << q);
432 ah->txeol_interrupt_mask &= ~(1 << q);
433 ah->txurn_interrupt_mask &= ~(1 << q);
Sujithf1dc5602008-10-29 10:16:30 +0530434 ath9k_hw_set_txq_interrupts(ah, qi);
435
436 return true;
437}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -0400438EXPORT_SYMBOL(ath9k_hw_releasetxqueue);
Sujithf1dc5602008-10-29 10:16:30 +0530439
Sujithcbe61d82009-02-09 13:27:12 +0530440bool ath9k_hw_resettxqueue(struct ath_hw *ah, u32 q)
Sujithf1dc5602008-10-29 10:16:30 +0530441{
Sujith2660b812009-02-09 13:27:26 +0530442 struct ath9k_hw_capabilities *pCap = &ah->caps;
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700443 struct ath_common *common = ath9k_hw_common(ah);
Sujith2660b812009-02-09 13:27:26 +0530444 struct ath9k_channel *chan = ah->curchan;
Sujithf1dc5602008-10-29 10:16:30 +0530445 struct ath9k_tx_queue_info *qi;
446 u32 cwMin, chanCwMin, value;
447
448 if (q >= pCap->total_queues) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700449 ath_print(common, ATH_DBG_QUEUE, "Reset TXQ, "
450 "invalid queue: %u\n", q);
Sujithf1dc5602008-10-29 10:16:30 +0530451 return false;
452 }
453
Sujith2660b812009-02-09 13:27:26 +0530454 qi = &ah->txq[q];
Sujithf1dc5602008-10-29 10:16:30 +0530455 if (qi->tqi_type == ATH9K_TX_QUEUE_INACTIVE) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700456 ath_print(common, ATH_DBG_QUEUE, "Reset TXQ, "
457 "inactive queue: %u\n", q);
Sujithf1dc5602008-10-29 10:16:30 +0530458 return true;
459 }
460
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700461 ath_print(common, ATH_DBG_QUEUE, "Reset TX queue: %u\n", q);
Sujithf1dc5602008-10-29 10:16:30 +0530462
463 if (qi->tqi_cwmin == ATH9K_TXQ_USEDEFAULT) {
464 if (chan && IS_CHAN_B(chan))
465 chanCwMin = INIT_CWMIN_11B;
466 else
467 chanCwMin = INIT_CWMIN;
468
469 for (cwMin = 1; cwMin < chanCwMin; cwMin = (cwMin << 1) | 1);
470 } else
471 cwMin = qi->tqi_cwmin;
472
473 REG_WRITE(ah, AR_DLCL_IFS(q),
474 SM(cwMin, AR_D_LCL_IFS_CWMIN) |
475 SM(qi->tqi_cwmax, AR_D_LCL_IFS_CWMAX) |
476 SM(qi->tqi_aifs, AR_D_LCL_IFS_AIFS));
477
478 REG_WRITE(ah, AR_DRETRY_LIMIT(q),
479 SM(INIT_SSH_RETRY, AR_D_RETRY_LIMIT_STA_SH) |
480 SM(INIT_SLG_RETRY, AR_D_RETRY_LIMIT_STA_LG) |
481 SM(qi->tqi_shretry, AR_D_RETRY_LIMIT_FR_SH));
482
483 REG_WRITE(ah, AR_QMISC(q), AR_Q_MISC_DCU_EARLY_TERM_REQ);
484 REG_WRITE(ah, AR_DMISC(q),
485 AR_D_MISC_CW_BKOFF_EN | AR_D_MISC_FRAG_WAIT_EN | 0x2);
486
487 if (qi->tqi_cbrPeriod) {
488 REG_WRITE(ah, AR_QCBRCFG(q),
489 SM(qi->tqi_cbrPeriod, AR_Q_CBRCFG_INTERVAL) |
490 SM(qi->tqi_cbrOverflowLimit, AR_Q_CBRCFG_OVF_THRESH));
491 REG_WRITE(ah, AR_QMISC(q),
492 REG_READ(ah, AR_QMISC(q)) | AR_Q_MISC_FSP_CBR |
493 (qi->tqi_cbrOverflowLimit ?
494 AR_Q_MISC_CBR_EXP_CNTR_LIMIT_EN : 0));
495 }
496 if (qi->tqi_readyTime && (qi->tqi_type != ATH9K_TX_QUEUE_CAB)) {
497 REG_WRITE(ah, AR_QRDYTIMECFG(q),
498 SM(qi->tqi_readyTime, AR_Q_RDYTIMECFG_DURATION) |
499 AR_Q_RDYTIMECFG_EN);
500 }
501
502 REG_WRITE(ah, AR_DCHNTIME(q),
503 SM(qi->tqi_burstTime, AR_D_CHNTIME_DUR) |
504 (qi->tqi_burstTime ? AR_D_CHNTIME_EN : 0));
505
506 if (qi->tqi_burstTime
507 && (qi->tqi_qflags & TXQ_FLAG_RDYTIME_EXP_POLICY_ENABLE)) {
508 REG_WRITE(ah, AR_QMISC(q),
509 REG_READ(ah, AR_QMISC(q)) |
510 AR_Q_MISC_RDYTIME_EXP_POLICY);
511
512 }
513
514 if (qi->tqi_qflags & TXQ_FLAG_BACKOFF_DISABLE) {
515 REG_WRITE(ah, AR_DMISC(q),
516 REG_READ(ah, AR_DMISC(q)) |
517 AR_D_MISC_POST_FR_BKOFF_DIS);
518 }
519 if (qi->tqi_qflags & TXQ_FLAG_FRAG_BURST_BACKOFF_ENABLE) {
520 REG_WRITE(ah, AR_DMISC(q),
521 REG_READ(ah, AR_DMISC(q)) |
522 AR_D_MISC_FRAG_BKOFF_EN);
523 }
524 switch (qi->tqi_type) {
525 case ATH9K_TX_QUEUE_BEACON:
526 REG_WRITE(ah, AR_QMISC(q), REG_READ(ah, AR_QMISC(q))
527 | AR_Q_MISC_FSP_DBA_GATED
528 | AR_Q_MISC_BEACON_USE
529 | AR_Q_MISC_CBR_INCR_DIS1);
530
531 REG_WRITE(ah, AR_DMISC(q), REG_READ(ah, AR_DMISC(q))
532 | (AR_D_MISC_ARB_LOCKOUT_CNTRL_GLOBAL <<
533 AR_D_MISC_ARB_LOCKOUT_CNTRL_S)
534 | AR_D_MISC_BEACON_USE
535 | AR_D_MISC_POST_FR_BKOFF_DIS);
Luis R. Rodriguez3deb4da2010-04-15 17:39:32 -0400536 /* cwmin and cwmax should be 0 for beacon queue */
537 if (AR_SREV_9300_20_OR_LATER(ah)) {
538 REG_WRITE(ah, AR_DLCL_IFS(q), SM(0, AR_D_LCL_IFS_CWMIN)
539 | SM(0, AR_D_LCL_IFS_CWMAX)
540 | SM(qi->tqi_aifs, AR_D_LCL_IFS_AIFS));
541 }
Sujithf1dc5602008-10-29 10:16:30 +0530542 break;
543 case ATH9K_TX_QUEUE_CAB:
544 REG_WRITE(ah, AR_QMISC(q), REG_READ(ah, AR_QMISC(q))
545 | AR_Q_MISC_FSP_DBA_GATED
546 | AR_Q_MISC_CBR_INCR_DIS1
547 | AR_Q_MISC_CBR_INCR_DIS0);
548 value = (qi->tqi_readyTime -
Sujith2660b812009-02-09 13:27:26 +0530549 (ah->config.sw_beacon_response_time -
550 ah->config.dma_beacon_response_time) -
551 ah->config.additional_swba_backoff) * 1024;
Sujithf1dc5602008-10-29 10:16:30 +0530552 REG_WRITE(ah, AR_QRDYTIMECFG(q),
553 value | AR_Q_RDYTIMECFG_EN);
554 REG_WRITE(ah, AR_DMISC(q), REG_READ(ah, AR_DMISC(q))
555 | (AR_D_MISC_ARB_LOCKOUT_CNTRL_GLOBAL <<
556 AR_D_MISC_ARB_LOCKOUT_CNTRL_S));
557 break;
558 case ATH9K_TX_QUEUE_PSPOLL:
559 REG_WRITE(ah, AR_QMISC(q),
560 REG_READ(ah, AR_QMISC(q)) | AR_Q_MISC_CBR_INCR_DIS1);
561 break;
562 case ATH9K_TX_QUEUE_UAPSD:
563 REG_WRITE(ah, AR_DMISC(q), REG_READ(ah, AR_DMISC(q)) |
564 AR_D_MISC_POST_FR_BKOFF_DIS);
565 break;
566 default:
567 break;
568 }
569
570 if (qi->tqi_intFlags & ATH9K_TXQ_USE_LOCKOUT_BKOFF_DIS) {
571 REG_WRITE(ah, AR_DMISC(q),
572 REG_READ(ah, AR_DMISC(q)) |
573 SM(AR_D_MISC_ARB_LOCKOUT_CNTRL_GLOBAL,
574 AR_D_MISC_ARB_LOCKOUT_CNTRL) |
575 AR_D_MISC_POST_FR_BKOFF_DIS);
576 }
577
Luis R. Rodriguez79de2372010-04-15 17:39:31 -0400578 if (AR_SREV_9300_20_OR_LATER(ah))
579 REG_WRITE(ah, AR_Q_DESC_CRCCHK, AR_Q_DESC_CRCCHK_EN);
580
Sujithf1dc5602008-10-29 10:16:30 +0530581 if (qi->tqi_qflags & TXQ_FLAG_TXOKINT_ENABLE)
Sujith2660b812009-02-09 13:27:26 +0530582 ah->txok_interrupt_mask |= 1 << q;
Sujithf1dc5602008-10-29 10:16:30 +0530583 else
Sujith2660b812009-02-09 13:27:26 +0530584 ah->txok_interrupt_mask &= ~(1 << q);
Sujithf1dc5602008-10-29 10:16:30 +0530585 if (qi->tqi_qflags & TXQ_FLAG_TXERRINT_ENABLE)
Sujith2660b812009-02-09 13:27:26 +0530586 ah->txerr_interrupt_mask |= 1 << q;
Sujithf1dc5602008-10-29 10:16:30 +0530587 else
Sujith2660b812009-02-09 13:27:26 +0530588 ah->txerr_interrupt_mask &= ~(1 << q);
Sujithf1dc5602008-10-29 10:16:30 +0530589 if (qi->tqi_qflags & TXQ_FLAG_TXDESCINT_ENABLE)
Sujith2660b812009-02-09 13:27:26 +0530590 ah->txdesc_interrupt_mask |= 1 << q;
Sujithf1dc5602008-10-29 10:16:30 +0530591 else
Sujith2660b812009-02-09 13:27:26 +0530592 ah->txdesc_interrupt_mask &= ~(1 << q);
Sujithf1dc5602008-10-29 10:16:30 +0530593 if (qi->tqi_qflags & TXQ_FLAG_TXEOLINT_ENABLE)
Sujith2660b812009-02-09 13:27:26 +0530594 ah->txeol_interrupt_mask |= 1 << q;
Sujithf1dc5602008-10-29 10:16:30 +0530595 else
Sujith2660b812009-02-09 13:27:26 +0530596 ah->txeol_interrupt_mask &= ~(1 << q);
Sujithf1dc5602008-10-29 10:16:30 +0530597 if (qi->tqi_qflags & TXQ_FLAG_TXURNINT_ENABLE)
Sujith2660b812009-02-09 13:27:26 +0530598 ah->txurn_interrupt_mask |= 1 << q;
Sujithf1dc5602008-10-29 10:16:30 +0530599 else
Sujith2660b812009-02-09 13:27:26 +0530600 ah->txurn_interrupt_mask &= ~(1 << q);
Sujithf1dc5602008-10-29 10:16:30 +0530601 ath9k_hw_set_txq_interrupts(ah, qi);
602
603 return true;
604}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -0400605EXPORT_SYMBOL(ath9k_hw_resettxqueue);
Sujithf1dc5602008-10-29 10:16:30 +0530606
Sujithcbe61d82009-02-09 13:27:12 +0530607int ath9k_hw_rxprocdesc(struct ath_hw *ah, struct ath_desc *ds,
Felix Fietkau8e6f5aa2010-03-29 20:09:27 -0700608 struct ath_rx_status *rs, u64 tsf)
Sujithf1dc5602008-10-29 10:16:30 +0530609{
610 struct ar5416_desc ads;
611 struct ar5416_desc *adsp = AR5416DESC(ds);
612 u32 phyerr;
613
614 if ((adsp->ds_rxstatus8 & AR_RxDone) == 0)
615 return -EINPROGRESS;
616
617 ads.u.rx = adsp->u.rx;
618
Felix Fietkau8e6f5aa2010-03-29 20:09:27 -0700619 rs->rs_status = 0;
620 rs->rs_flags = 0;
Sujithf1dc5602008-10-29 10:16:30 +0530621
Felix Fietkau8e6f5aa2010-03-29 20:09:27 -0700622 rs->rs_datalen = ads.ds_rxstatus1 & AR_DataLen;
623 rs->rs_tstamp = ads.AR_RcvTimestamp;
Sujithf1dc5602008-10-29 10:16:30 +0530624
Senthil Balasubramaniandd8b15b2009-07-14 20:17:08 -0400625 if (ads.ds_rxstatus8 & AR_PostDelimCRCErr) {
Felix Fietkau8e6f5aa2010-03-29 20:09:27 -0700626 rs->rs_rssi = ATH9K_RSSI_BAD;
627 rs->rs_rssi_ctl0 = ATH9K_RSSI_BAD;
628 rs->rs_rssi_ctl1 = ATH9K_RSSI_BAD;
629 rs->rs_rssi_ctl2 = ATH9K_RSSI_BAD;
630 rs->rs_rssi_ext0 = ATH9K_RSSI_BAD;
631 rs->rs_rssi_ext1 = ATH9K_RSSI_BAD;
632 rs->rs_rssi_ext2 = ATH9K_RSSI_BAD;
Senthil Balasubramaniandd8b15b2009-07-14 20:17:08 -0400633 } else {
Felix Fietkau8e6f5aa2010-03-29 20:09:27 -0700634 rs->rs_rssi = MS(ads.ds_rxstatus4, AR_RxRSSICombined);
635 rs->rs_rssi_ctl0 = MS(ads.ds_rxstatus0,
Senthil Balasubramaniandd8b15b2009-07-14 20:17:08 -0400636 AR_RxRSSIAnt00);
Felix Fietkau8e6f5aa2010-03-29 20:09:27 -0700637 rs->rs_rssi_ctl1 = MS(ads.ds_rxstatus0,
Senthil Balasubramaniandd8b15b2009-07-14 20:17:08 -0400638 AR_RxRSSIAnt01);
Felix Fietkau8e6f5aa2010-03-29 20:09:27 -0700639 rs->rs_rssi_ctl2 = MS(ads.ds_rxstatus0,
Senthil Balasubramaniandd8b15b2009-07-14 20:17:08 -0400640 AR_RxRSSIAnt02);
Felix Fietkau8e6f5aa2010-03-29 20:09:27 -0700641 rs->rs_rssi_ext0 = MS(ads.ds_rxstatus4,
Senthil Balasubramaniandd8b15b2009-07-14 20:17:08 -0400642 AR_RxRSSIAnt10);
Felix Fietkau8e6f5aa2010-03-29 20:09:27 -0700643 rs->rs_rssi_ext1 = MS(ads.ds_rxstatus4,
Senthil Balasubramaniandd8b15b2009-07-14 20:17:08 -0400644 AR_RxRSSIAnt11);
Felix Fietkau8e6f5aa2010-03-29 20:09:27 -0700645 rs->rs_rssi_ext2 = MS(ads.ds_rxstatus4,
Senthil Balasubramaniandd8b15b2009-07-14 20:17:08 -0400646 AR_RxRSSIAnt12);
647 }
Sujithf1dc5602008-10-29 10:16:30 +0530648 if (ads.ds_rxstatus8 & AR_RxKeyIdxValid)
Felix Fietkau8e6f5aa2010-03-29 20:09:27 -0700649 rs->rs_keyix = MS(ads.ds_rxstatus8, AR_KeyIdx);
Sujithf1dc5602008-10-29 10:16:30 +0530650 else
Felix Fietkau8e6f5aa2010-03-29 20:09:27 -0700651 rs->rs_keyix = ATH9K_RXKEYIX_INVALID;
Sujithf1dc5602008-10-29 10:16:30 +0530652
Felix Fietkau8e6f5aa2010-03-29 20:09:27 -0700653 rs->rs_rate = RXSTATUS_RATE(ah, (&ads));
654 rs->rs_more = (ads.ds_rxstatus1 & AR_RxMore) ? 1 : 0;
Sujithf1dc5602008-10-29 10:16:30 +0530655
Felix Fietkau8e6f5aa2010-03-29 20:09:27 -0700656 rs->rs_isaggr = (ads.ds_rxstatus8 & AR_RxAggr) ? 1 : 0;
657 rs->rs_moreaggr =
Sujithf1dc5602008-10-29 10:16:30 +0530658 (ads.ds_rxstatus8 & AR_RxMoreAggr) ? 1 : 0;
Felix Fietkau8e6f5aa2010-03-29 20:09:27 -0700659 rs->rs_antenna = MS(ads.ds_rxstatus3, AR_RxAntenna);
660 rs->rs_flags =
Sujithf1dc5602008-10-29 10:16:30 +0530661 (ads.ds_rxstatus3 & AR_GI) ? ATH9K_RX_GI : 0;
Felix Fietkau8e6f5aa2010-03-29 20:09:27 -0700662 rs->rs_flags |=
Sujithf1dc5602008-10-29 10:16:30 +0530663 (ads.ds_rxstatus3 & AR_2040) ? ATH9K_RX_2040 : 0;
664
665 if (ads.ds_rxstatus8 & AR_PreDelimCRCErr)
Felix Fietkau8e6f5aa2010-03-29 20:09:27 -0700666 rs->rs_flags |= ATH9K_RX_DELIM_CRC_PRE;
Sujithf1dc5602008-10-29 10:16:30 +0530667 if (ads.ds_rxstatus8 & AR_PostDelimCRCErr)
Felix Fietkau8e6f5aa2010-03-29 20:09:27 -0700668 rs->rs_flags |= ATH9K_RX_DELIM_CRC_POST;
Sujithf1dc5602008-10-29 10:16:30 +0530669 if (ads.ds_rxstatus8 & AR_DecryptBusyErr)
Felix Fietkau8e6f5aa2010-03-29 20:09:27 -0700670 rs->rs_flags |= ATH9K_RX_DECRYPT_BUSY;
Sujithf1dc5602008-10-29 10:16:30 +0530671
672 if ((ads.ds_rxstatus8 & AR_RxFrameOK) == 0) {
673 if (ads.ds_rxstatus8 & AR_CRCErr)
Felix Fietkau8e6f5aa2010-03-29 20:09:27 -0700674 rs->rs_status |= ATH9K_RXERR_CRC;
Sujithf1dc5602008-10-29 10:16:30 +0530675 else if (ads.ds_rxstatus8 & AR_PHYErr) {
Felix Fietkau8e6f5aa2010-03-29 20:09:27 -0700676 rs->rs_status |= ATH9K_RXERR_PHY;
Sujithf1dc5602008-10-29 10:16:30 +0530677 phyerr = MS(ads.ds_rxstatus8, AR_PHYErrCode);
Felix Fietkau8e6f5aa2010-03-29 20:09:27 -0700678 rs->rs_phyerr = phyerr;
Sujithf1dc5602008-10-29 10:16:30 +0530679 } else if (ads.ds_rxstatus8 & AR_DecryptCRCErr)
Felix Fietkau8e6f5aa2010-03-29 20:09:27 -0700680 rs->rs_status |= ATH9K_RXERR_DECRYPT;
Sujithf1dc5602008-10-29 10:16:30 +0530681 else if (ads.ds_rxstatus8 & AR_MichaelErr)
Felix Fietkau8e6f5aa2010-03-29 20:09:27 -0700682 rs->rs_status |= ATH9K_RXERR_MIC;
Sujithf1dc5602008-10-29 10:16:30 +0530683 }
684
685 return 0;
686}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -0400687EXPORT_SYMBOL(ath9k_hw_rxprocdesc);
Sujithf1dc5602008-10-29 10:16:30 +0530688
Luis R. Rodrigueze7824a52009-11-24 02:53:25 -0500689/*
690 * This can stop or re-enables RX.
691 *
692 * If bool is set this will kill any frame which is currently being
693 * transferred between the MAC and baseband and also prevent any new
694 * frames from getting started.
695 */
Sujithcbe61d82009-02-09 13:27:12 +0530696bool ath9k_hw_setrxabort(struct ath_hw *ah, bool set)
Sujithf1dc5602008-10-29 10:16:30 +0530697{
698 u32 reg;
699
700 if (set) {
701 REG_SET_BIT(ah, AR_DIAG_SW,
702 (AR_DIAG_RX_DIS | AR_DIAG_RX_ABORT));
703
Sujith0caa7b12009-02-16 13:23:20 +0530704 if (!ath9k_hw_wait(ah, AR_OBS_BUS_1, AR_OBS_BUS_1_RX_STATE,
705 0, AH_WAIT_TIMEOUT)) {
Sujithf1dc5602008-10-29 10:16:30 +0530706 REG_CLR_BIT(ah, AR_DIAG_SW,
707 (AR_DIAG_RX_DIS |
708 AR_DIAG_RX_ABORT));
709
710 reg = REG_READ(ah, AR_OBS_BUS_1);
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700711 ath_print(ath9k_hw_common(ah), ATH_DBG_FATAL,
712 "RX failed to go idle in 10 ms RXSM=0x%x\n",
713 reg);
Sujithf1dc5602008-10-29 10:16:30 +0530714
715 return false;
716 }
717 } else {
718 REG_CLR_BIT(ah, AR_DIAG_SW,
719 (AR_DIAG_RX_DIS | AR_DIAG_RX_ABORT));
720 }
721
722 return true;
723}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -0400724EXPORT_SYMBOL(ath9k_hw_setrxabort);
Sujithf1dc5602008-10-29 10:16:30 +0530725
Sujithcbe61d82009-02-09 13:27:12 +0530726void ath9k_hw_putrxbuf(struct ath_hw *ah, u32 rxdp)
Sujithf1dc5602008-10-29 10:16:30 +0530727{
728 REG_WRITE(ah, AR_RXDP, rxdp);
729}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -0400730EXPORT_SYMBOL(ath9k_hw_putrxbuf);
Sujithf1dc5602008-10-29 10:16:30 +0530731
Sujithcbe61d82009-02-09 13:27:12 +0530732void ath9k_hw_startpcureceive(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530733{
Sujithf1dc5602008-10-29 10:16:30 +0530734 ath9k_enable_mib_counters(ah);
735
736 ath9k_ani_reset(ah);
Senthil Balasubramaniane7594072008-12-08 19:43:48 +0530737
Senthil Balasubramanian8aa15e12008-12-08 19:43:50 +0530738 REG_CLR_BIT(ah, AR_DIAG_SW, (AR_DIAG_RX_DIS | AR_DIAG_RX_ABORT));
Sujithf1dc5602008-10-29 10:16:30 +0530739}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -0400740EXPORT_SYMBOL(ath9k_hw_startpcureceive);
Sujithf1dc5602008-10-29 10:16:30 +0530741
Sujithcbe61d82009-02-09 13:27:12 +0530742void ath9k_hw_stoppcurecv(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530743{
744 REG_SET_BIT(ah, AR_DIAG_SW, AR_DIAG_RX_DIS);
745
746 ath9k_hw_disable_mib_counters(ah);
747}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -0400748EXPORT_SYMBOL(ath9k_hw_stoppcurecv);
Sujithf1dc5602008-10-29 10:16:30 +0530749
Vasanthakumar Thiagarajan9b9cc612010-04-15 17:39:41 -0400750void ath9k_hw_abortpcurecv(struct ath_hw *ah)
751{
752 REG_SET_BIT(ah, AR_DIAG_SW, AR_DIAG_RX_ABORT | AR_DIAG_RX_DIS);
753
754 ath9k_hw_disable_mib_counters(ah);
755}
756EXPORT_SYMBOL(ath9k_hw_abortpcurecv);
757
Sujithcbe61d82009-02-09 13:27:12 +0530758bool ath9k_hw_stopdmarecv(struct ath_hw *ah)
Sujithf1dc5602008-10-29 10:16:30 +0530759{
Sujith0caa7b12009-02-16 13:23:20 +0530760#define AH_RX_STOP_DMA_TIMEOUT 10000 /* usec */
761#define AH_RX_TIME_QUANTUM 100 /* usec */
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700762 struct ath_common *common = ath9k_hw_common(ah);
Sujith0caa7b12009-02-16 13:23:20 +0530763 int i;
764
Sujithf1dc5602008-10-29 10:16:30 +0530765 REG_WRITE(ah, AR_CR, AR_CR_RXD);
766
Sujith0caa7b12009-02-16 13:23:20 +0530767 /* Wait for rx enable bit to go low */
768 for (i = AH_RX_STOP_DMA_TIMEOUT / AH_TIME_QUANTUM; i != 0; i--) {
769 if ((REG_READ(ah, AR_CR) & AR_CR_RXE) == 0)
770 break;
771 udelay(AH_TIME_QUANTUM);
772 }
773
774 if (i == 0) {
Luis R. Rodriguezc46917b2009-09-13 02:42:02 -0700775 ath_print(common, ATH_DBG_FATAL,
776 "DMA failed to stop in %d ms "
777 "AR_CR=0x%08x AR_DIAG_SW=0x%08x\n",
778 AH_RX_STOP_DMA_TIMEOUT / 1000,
779 REG_READ(ah, AR_CR),
780 REG_READ(ah, AR_DIAG_SW));
Sujithf1dc5602008-10-29 10:16:30 +0530781 return false;
782 } else {
783 return true;
784 }
Sujith0caa7b12009-02-16 13:23:20 +0530785
786#undef AH_RX_TIME_QUANTUM
787#undef AH_RX_STOP_DMA_TIMEOUT
Sujithf1dc5602008-10-29 10:16:30 +0530788}
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -0400789EXPORT_SYMBOL(ath9k_hw_stopdmarecv);
Luis R. Rodriguez536b3a72009-10-06 21:19:11 -0400790
791int ath9k_hw_beaconq_setup(struct ath_hw *ah)
792{
793 struct ath9k_tx_queue_info qi;
794
795 memset(&qi, 0, sizeof(qi));
796 qi.tqi_aifs = 1;
797 qi.tqi_cwmin = 0;
798 qi.tqi_cwmax = 0;
799 /* NB: don't enable any interrupts */
800 return ath9k_hw_setuptxqueue(ah, ATH9K_TX_QUEUE_BEACON, &qi);
801}
802EXPORT_SYMBOL(ath9k_hw_beaconq_setup);
Vasanthakumar Thiagarajan55e82df2010-04-15 17:39:06 -0400803
804bool ath9k_hw_intrpend(struct ath_hw *ah)
805{
806 u32 host_isr;
807
808 if (AR_SREV_9100(ah))
809 return true;
810
811 host_isr = REG_READ(ah, AR_INTR_ASYNC_CAUSE);
812 if ((host_isr & AR_INTR_MAC_IRQ) && (host_isr != AR_INTR_SPURIOUS))
813 return true;
814
815 host_isr = REG_READ(ah, AR_INTR_SYNC_CAUSE);
816 if ((host_isr & AR_INTR_SYNC_DEFAULT)
817 && (host_isr != AR_INTR_SPURIOUS))
818 return true;
819
820 return false;
821}
822EXPORT_SYMBOL(ath9k_hw_intrpend);
823
824enum ath9k_int ath9k_hw_set_interrupts(struct ath_hw *ah,
825 enum ath9k_int ints)
826{
827 enum ath9k_int omask = ah->imask;
828 u32 mask, mask2;
829 struct ath9k_hw_capabilities *pCap = &ah->caps;
830 struct ath_common *common = ath9k_hw_common(ah);
831
832 ath_print(common, ATH_DBG_INTERRUPT, "0x%x => 0x%x\n", omask, ints);
833
834 if (omask & ATH9K_INT_GLOBAL) {
835 ath_print(common, ATH_DBG_INTERRUPT, "disable IER\n");
836 REG_WRITE(ah, AR_IER, AR_IER_DISABLE);
837 (void) REG_READ(ah, AR_IER);
838 if (!AR_SREV_9100(ah)) {
839 REG_WRITE(ah, AR_INTR_ASYNC_ENABLE, 0);
840 (void) REG_READ(ah, AR_INTR_ASYNC_ENABLE);
841
842 REG_WRITE(ah, AR_INTR_SYNC_ENABLE, 0);
843 (void) REG_READ(ah, AR_INTR_SYNC_ENABLE);
844 }
845 }
846
847 /* TODO: global int Ref count */
848 mask = ints & ATH9K_INT_COMMON;
849 mask2 = 0;
850
851 if (ints & ATH9K_INT_TX) {
852 if (ah->config.tx_intr_mitigation)
853 mask |= AR_IMR_TXMINTR | AR_IMR_TXINTM;
854 if (ah->txok_interrupt_mask)
855 mask |= AR_IMR_TXOK;
856 if (ah->txdesc_interrupt_mask)
857 mask |= AR_IMR_TXDESC;
858 if (ah->txerr_interrupt_mask)
859 mask |= AR_IMR_TXERR;
860 if (ah->txeol_interrupt_mask)
861 mask |= AR_IMR_TXEOL;
862 }
863 if (ints & ATH9K_INT_RX) {
864 if (AR_SREV_9300_20_OR_LATER(ah)) {
865 mask |= AR_IMR_RXERR | AR_IMR_RXOK_HP;
866 if (ah->config.rx_intr_mitigation) {
867 mask &= ~AR_IMR_RXOK_LP;
868 mask |= AR_IMR_RXMINTR | AR_IMR_RXINTM;
869 } else {
870 mask |= AR_IMR_RXOK_LP;
871 }
872 } else {
873 if (ah->config.rx_intr_mitigation)
874 mask |= AR_IMR_RXMINTR | AR_IMR_RXINTM;
875 else
876 mask |= AR_IMR_RXOK | AR_IMR_RXDESC;
877 }
878 if (!(pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP))
879 mask |= AR_IMR_GENTMR;
880 }
881
882 if (ints & (ATH9K_INT_BMISC)) {
883 mask |= AR_IMR_BCNMISC;
884 if (ints & ATH9K_INT_TIM)
885 mask2 |= AR_IMR_S2_TIM;
886 if (ints & ATH9K_INT_DTIM)
887 mask2 |= AR_IMR_S2_DTIM;
888 if (ints & ATH9K_INT_DTIMSYNC)
889 mask2 |= AR_IMR_S2_DTIMSYNC;
890 if (ints & ATH9K_INT_CABEND)
891 mask2 |= AR_IMR_S2_CABEND;
892 if (ints & ATH9K_INT_TSFOOR)
893 mask2 |= AR_IMR_S2_TSFOOR;
894 }
895
896 if (ints & (ATH9K_INT_GTT | ATH9K_INT_CST)) {
897 mask |= AR_IMR_BCNMISC;
898 if (ints & ATH9K_INT_GTT)
899 mask2 |= AR_IMR_S2_GTT;
900 if (ints & ATH9K_INT_CST)
901 mask2 |= AR_IMR_S2_CST;
902 }
903
904 ath_print(common, ATH_DBG_INTERRUPT, "new IMR 0x%x\n", mask);
905 REG_WRITE(ah, AR_IMR, mask);
906 ah->imrs2_reg &= ~(AR_IMR_S2_TIM | AR_IMR_S2_DTIM | AR_IMR_S2_DTIMSYNC |
907 AR_IMR_S2_CABEND | AR_IMR_S2_CABTO |
908 AR_IMR_S2_TSFOOR | AR_IMR_S2_GTT | AR_IMR_S2_CST);
909 ah->imrs2_reg |= mask2;
910 REG_WRITE(ah, AR_IMR_S2, ah->imrs2_reg);
911
912 if (!(pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP)) {
913 if (ints & ATH9K_INT_TIM_TIMER)
914 REG_SET_BIT(ah, AR_IMR_S5, AR_IMR_S5_TIM_TIMER);
915 else
916 REG_CLR_BIT(ah, AR_IMR_S5, AR_IMR_S5_TIM_TIMER);
917 }
918
919 if (ints & ATH9K_INT_GLOBAL) {
920 ath_print(common, ATH_DBG_INTERRUPT, "enable IER\n");
921 REG_WRITE(ah, AR_IER, AR_IER_ENABLE);
922 if (!AR_SREV_9100(ah)) {
923 REG_WRITE(ah, AR_INTR_ASYNC_ENABLE,
924 AR_INTR_MAC_IRQ);
925 REG_WRITE(ah, AR_INTR_ASYNC_MASK, AR_INTR_MAC_IRQ);
926
927
928 REG_WRITE(ah, AR_INTR_SYNC_ENABLE,
929 AR_INTR_SYNC_DEFAULT);
930 REG_WRITE(ah, AR_INTR_SYNC_MASK,
931 AR_INTR_SYNC_DEFAULT);
932 }
933 ath_print(common, ATH_DBG_INTERRUPT, "AR_IMR 0x%x IER 0x%x\n",
934 REG_READ(ah, AR_IMR), REG_READ(ah, AR_IER));
935 }
936
937 return omask;
938}
939EXPORT_SYMBOL(ath9k_hw_set_interrupts);