xref: /dragonfly/sys/dev/netif/ath/ath_hal/ar5211/ar5211_xmit.c (revision 572ff6f6e8b95055988f178b6ba12ce77bb5b3c2)
1 /*
2  * Copyright (c) 2002-2009 Sam Leffler, Errno Consulting
3  * Copyright (c) 2002-2006 Atheros Communications, Inc.
4  *
5  * Permission to use, copy, modify, and/or distribute this software for any
6  * purpose with or without fee is hereby granted, provided that the above
7  * copyright notice and this permission notice appear in all copies.
8  *
9  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16  *
17  * $FreeBSD$
18  */
19 #include "opt_ah.h"
20 
21 #include "ah.h"
22 #include "ah_internal.h"
23 #include "ah_desc.h"
24 
25 #include "ar5211/ar5211.h"
26 #include "ar5211/ar5211reg.h"
27 #include "ar5211/ar5211desc.h"
28 
29 /*
30  * Update Tx FIFO trigger level.
31  *
32  * Set bIncTrigLevel to TRUE to increase the trigger level.
33  * Set bIncTrigLevel to FALSE to decrease the trigger level.
34  *
35  * Returns TRUE if the trigger level was updated
36  */
37 HAL_BOOL
ar5211UpdateTxTrigLevel(struct ath_hal * ah,HAL_BOOL bIncTrigLevel)38 ar5211UpdateTxTrigLevel(struct ath_hal *ah, HAL_BOOL bIncTrigLevel)
39 {
40           uint32_t curTrigLevel, txcfg;
41           HAL_INT ints = ar5211GetInterrupts(ah);
42 
43           /*
44            * Disable chip interrupts. This is because halUpdateTxTrigLevel
45            * is called from both ISR and non-ISR contexts.
46            */
47           ar5211SetInterrupts(ah, ints &~ HAL_INT_GLOBAL);
48           txcfg = OS_REG_READ(ah, AR_TXCFG);
49           curTrigLevel = (txcfg & AR_TXCFG_FTRIG_M) >> AR_TXCFG_FTRIG_S;
50           if (bIncTrigLevel){
51                     /* increase the trigger level */
52                     curTrigLevel = curTrigLevel +
53                               ((MAX_TX_FIFO_THRESHOLD - curTrigLevel) / 2);
54           } else {
55                     /* decrease the trigger level if not already at the minimum */
56                     if (curTrigLevel > MIN_TX_FIFO_THRESHOLD) {
57                               /* decrease the trigger level */
58                               curTrigLevel--;
59                     } else {
60                               /* no update to the trigger level */
61                               /* re-enable chip interrupts */
62                               ar5211SetInterrupts(ah, ints);
63                               return AH_FALSE;
64                     }
65           }
66           /* Update the trigger level */
67           OS_REG_WRITE(ah, AR_TXCFG, (txcfg &~ AR_TXCFG_FTRIG_M) |
68                     ((curTrigLevel << AR_TXCFG_FTRIG_S) & AR_TXCFG_FTRIG_M));
69           /* re-enable chip interrupts */
70           ar5211SetInterrupts(ah, ints);
71           return AH_TRUE;
72 }
73 
74 /*
75  * Set the properties of the tx queue with the parameters
76  * from qInfo.  The queue must previously have been setup
77  * with a call to ar5211SetupTxQueue.
78  */
79 HAL_BOOL
ar5211SetTxQueueProps(struct ath_hal * ah,int q,const HAL_TXQ_INFO * qInfo)80 ar5211SetTxQueueProps(struct ath_hal *ah, int q, const HAL_TXQ_INFO *qInfo)
81 {
82           struct ath_hal_5211 *ahp = AH5211(ah);
83 
84           if (q >= HAL_NUM_TX_QUEUES) {
85                     HALDEBUG(ah, HAL_DEBUG_ANY, "%s: invalid queue num %u\n",
86                         __func__, q);
87                     return AH_FALSE;
88           }
89           return ath_hal_setTxQProps(ah, &ahp->ah_txq[q], qInfo);
90 }
91 
92 /*
93  * Return the properties for the specified tx queue.
94  */
95 HAL_BOOL
ar5211GetTxQueueProps(struct ath_hal * ah,int q,HAL_TXQ_INFO * qInfo)96 ar5211GetTxQueueProps(struct ath_hal *ah, int q, HAL_TXQ_INFO *qInfo)
97 {
98           struct ath_hal_5211 *ahp = AH5211(ah);
99 
100           if (q >= HAL_NUM_TX_QUEUES) {
101                     HALDEBUG(ah, HAL_DEBUG_ANY, "%s: invalid queue num %u\n",
102                         __func__, q);
103                     return AH_FALSE;
104           }
105           return ath_hal_getTxQProps(ah, qInfo, &ahp->ah_txq[q]);
106 }
107 
108 /*
109  * Allocate and initialize a tx DCU/QCU combination.
110  */
111 int
ar5211SetupTxQueue(struct ath_hal * ah,HAL_TX_QUEUE type,const HAL_TXQ_INFO * qInfo)112 ar5211SetupTxQueue(struct ath_hal *ah, HAL_TX_QUEUE type,
113           const HAL_TXQ_INFO *qInfo)
114 {
115           struct ath_hal_5211 *ahp = AH5211(ah);
116           HAL_TX_QUEUE_INFO *qi;
117           int q;
118 
119           switch (type) {
120           case HAL_TX_QUEUE_BEACON:
121                     q = 9;
122                     break;
123           case HAL_TX_QUEUE_CAB:
124                     q = 8;
125                     break;
126           case HAL_TX_QUEUE_DATA:
127                     q = 0;
128                     if (ahp->ah_txq[q].tqi_type != HAL_TX_QUEUE_INACTIVE)
129                               return q;
130                     break;
131           default:
132                     HALDEBUG(ah, HAL_DEBUG_ANY, "%s: bad tx queue type %u\n",
133                         __func__, type);
134                     return -1;
135           }
136 
137           HALDEBUG(ah, HAL_DEBUG_TXQUEUE, "%s: queue %u\n", __func__, q);
138 
139           qi = &ahp->ah_txq[q];
140           if (qi->tqi_type != HAL_TX_QUEUE_INACTIVE) {
141                     HALDEBUG(ah, HAL_DEBUG_ANY, "%s: tx queue %u already active\n",
142                         __func__, q);
143                     return -1;
144           }
145           OS_MEMZERO(qi, sizeof(HAL_TX_QUEUE_INFO));
146           qi->tqi_type = type;
147           if (qInfo == AH_NULL) {
148                     /* by default enable OK+ERR+DESC+URN interrupts */
149                     qi->tqi_qflags =
150                                 HAL_TXQ_TXOKINT_ENABLE
151                               | HAL_TXQ_TXERRINT_ENABLE
152                               | HAL_TXQ_TXDESCINT_ENABLE
153                               | HAL_TXQ_TXURNINT_ENABLE
154                               ;
155                     qi->tqi_aifs = INIT_AIFS;
156                     qi->tqi_cwmin = HAL_TXQ_USEDEFAULT;     /* NB: do at reset */
157                     qi->tqi_cwmax = INIT_CWMAX;
158                     qi->tqi_shretry = INIT_SH_RETRY;
159                     qi->tqi_lgretry = INIT_LG_RETRY;
160           } else
161                     (void) ar5211SetTxQueueProps(ah, q, qInfo);
162           return q;
163 }
164 
165 /*
166  * Update the h/w interrupt registers to reflect a tx q's configuration.
167  */
168 static void
setTxQInterrupts(struct ath_hal * ah,HAL_TX_QUEUE_INFO * qi)169 setTxQInterrupts(struct ath_hal *ah, HAL_TX_QUEUE_INFO *qi)
170 {
171           struct ath_hal_5211 *ahp = AH5211(ah);
172 
173           HALDEBUG(ah, HAL_DEBUG_TXQUEUE,
174               "%s: tx ok 0x%x err 0x%x desc 0x%x eol 0x%x urn 0x%x\n", __func__
175                     , ahp->ah_txOkInterruptMask
176                     , ahp->ah_txErrInterruptMask
177                     , ahp->ah_txDescInterruptMask
178                     , ahp->ah_txEolInterruptMask
179                     , ahp->ah_txUrnInterruptMask
180           );
181 
182           OS_REG_WRITE(ah, AR_IMR_S0,
183                       SM(ahp->ah_txOkInterruptMask, AR_IMR_S0_QCU_TXOK)
184                     | SM(ahp->ah_txDescInterruptMask, AR_IMR_S0_QCU_TXDESC)
185           );
186           OS_REG_WRITE(ah, AR_IMR_S1,
187                       SM(ahp->ah_txErrInterruptMask, AR_IMR_S1_QCU_TXERR)
188                     | SM(ahp->ah_txEolInterruptMask, AR_IMR_S1_QCU_TXEOL)
189           );
190           OS_REG_RMW_FIELD(ah, AR_IMR_S2,
191                     AR_IMR_S2_QCU_TXURN, ahp->ah_txUrnInterruptMask);
192 }
193 
194 
195 /*
196  * Free a tx DCU/QCU combination.
197  */
198 HAL_BOOL
ar5211ReleaseTxQueue(struct ath_hal * ah,u_int q)199 ar5211ReleaseTxQueue(struct ath_hal *ah, u_int q)
200 {
201           struct ath_hal_5211 *ahp = AH5211(ah);
202           HAL_TX_QUEUE_INFO *qi;
203 
204           if (q >= HAL_NUM_TX_QUEUES) {
205                     HALDEBUG(ah, HAL_DEBUG_ANY, "%s: invalid queue num %u\n",
206                         __func__, q);
207                     return AH_FALSE;
208           }
209           qi = &ahp->ah_txq[q];
210           if (qi->tqi_type == HAL_TX_QUEUE_INACTIVE) {
211                     HALDEBUG(ah, HAL_DEBUG_TXQUEUE, "%s: inactive queue %u\n",
212                         __func__, q);
213                     return AH_FALSE;
214           }
215 
216           HALDEBUG(ah, HAL_DEBUG_TXQUEUE, "%s: release queue %u\n", __func__, q);
217 
218           qi->tqi_type = HAL_TX_QUEUE_INACTIVE;
219           ahp->ah_txOkInterruptMask &= ~(1 << q);
220           ahp->ah_txErrInterruptMask &= ~(1 << q);
221           ahp->ah_txDescInterruptMask &= ~(1 << q);
222           ahp->ah_txEolInterruptMask &= ~(1 << q);
223           ahp->ah_txUrnInterruptMask &= ~(1 << q);
224           setTxQInterrupts(ah, qi);
225 
226           return AH_TRUE;
227 }
228 
229 /*
230  * Set the retry, aifs, cwmin/max, readyTime regs for specified queue
231  */
232 HAL_BOOL
ar5211ResetTxQueue(struct ath_hal * ah,u_int q)233 ar5211ResetTxQueue(struct ath_hal *ah, u_int q)
234 {
235           struct ath_hal_5211 *ahp = AH5211(ah);
236           const struct ieee80211_channel *chan = AH_PRIVATE(ah)->ah_curchan;
237           HAL_TX_QUEUE_INFO *qi;
238           uint32_t cwMin, chanCwMin, value;
239 
240           if (q >= HAL_NUM_TX_QUEUES) {
241                     HALDEBUG(ah, HAL_DEBUG_ANY, "%s: invalid queue num %u\n",
242                         __func__, q);
243                     return AH_FALSE;
244           }
245           qi = &ahp->ah_txq[q];
246           if (qi->tqi_type == HAL_TX_QUEUE_INACTIVE) {
247                     HALDEBUG(ah, HAL_DEBUG_TXQUEUE, "%s: inactive queue %u\n",
248                         __func__, q);
249                     return AH_TRUE;               /* XXX??? */
250           }
251 
252           if (qi->tqi_cwmin == HAL_TXQ_USEDEFAULT) {
253                     /*
254                      * Select cwmin according to channel type.
255                      * NB: chan can be NULL during attach
256                      */
257                     if (chan && IEEE80211_IS_CHAN_B(chan))
258                               chanCwMin = INIT_CWMIN_11B;
259                     else
260                               chanCwMin = INIT_CWMIN;
261                     /* make sure that the CWmin is of the form (2^n - 1) */
262                     for (cwMin = 1; cwMin < chanCwMin; cwMin = (cwMin << 1) | 1)
263                               ;
264           } else
265                     cwMin = qi->tqi_cwmin;
266 
267           /* set cwMin/Max and AIFS values */
268           OS_REG_WRITE(ah, AR_DLCL_IFS(q),
269                       SM(cwMin, AR_D_LCL_IFS_CWMIN)
270                     | SM(qi->tqi_cwmax, AR_D_LCL_IFS_CWMAX)
271                     | SM(qi->tqi_aifs, AR_D_LCL_IFS_AIFS));
272 
273           /* Set retry limit values */
274           OS_REG_WRITE(ah, AR_DRETRY_LIMIT(q),
275                        SM(INIT_SSH_RETRY, AR_D_RETRY_LIMIT_STA_SH)
276                      | SM(INIT_SLG_RETRY, AR_D_RETRY_LIMIT_STA_LG)
277                      | SM(qi->tqi_lgretry, AR_D_RETRY_LIMIT_FR_LG)
278                      | SM(qi->tqi_shretry, AR_D_RETRY_LIMIT_FR_SH)
279           );
280 
281           /* enable early termination on the QCU */
282           OS_REG_WRITE(ah, AR_QMISC(q), AR_Q_MISC_DCU_EARLY_TERM_REQ);
283 
284           if (AH_PRIVATE(ah)->ah_macVersion < AR_SREV_VERSION_OAHU) {
285                     /* Configure DCU to use the global sequence count */
286                     OS_REG_WRITE(ah, AR_DMISC(q), AR5311_D_MISC_SEQ_NUM_CONTROL);
287           }
288           /* multiqueue support */
289           if (qi->tqi_cbrPeriod) {
290                     OS_REG_WRITE(ah, AR_QCBRCFG(q),
291                                 SM(qi->tqi_cbrPeriod,AR_Q_CBRCFG_CBR_INTERVAL)
292                               | SM(qi->tqi_cbrOverflowLimit, AR_Q_CBRCFG_CBR_OVF_THRESH));
293                     OS_REG_WRITE(ah, AR_QMISC(q),
294                               OS_REG_READ(ah, AR_QMISC(q)) |
295                               AR_Q_MISC_FSP_CBR |
296                               (qi->tqi_cbrOverflowLimit ?
297                                         AR_Q_MISC_CBR_EXP_CNTR_LIMIT : 0));
298           }
299           if (qi->tqi_readyTime) {
300                     OS_REG_WRITE(ah, AR_QRDYTIMECFG(q),
301                               SM(qi->tqi_readyTime, AR_Q_RDYTIMECFG_INT) |
302                               AR_Q_RDYTIMECFG_EN);
303           }
304           if (qi->tqi_burstTime) {
305                     OS_REG_WRITE(ah, AR_DCHNTIME(q),
306                               SM(qi->tqi_burstTime, AR_D_CHNTIME_DUR) |
307                               AR_D_CHNTIME_EN);
308                     if (qi->tqi_qflags & HAL_TXQ_RDYTIME_EXP_POLICY_ENABLE) {
309                               OS_REG_WRITE(ah, AR_QMISC(q),
310                                    OS_REG_READ(ah, AR_QMISC(q)) |
311                                    AR_Q_MISC_RDYTIME_EXP_POLICY);
312                     }
313           }
314 
315           if (qi->tqi_qflags & HAL_TXQ_BACKOFF_DISABLE) {
316                     OS_REG_WRITE(ah, AR_DMISC(q),
317                               OS_REG_READ(ah, AR_DMISC(q)) |
318                               AR_D_MISC_POST_FR_BKOFF_DIS);
319           }
320           if (qi->tqi_qflags & HAL_TXQ_FRAG_BURST_BACKOFF_ENABLE) {
321                     OS_REG_WRITE(ah, AR_DMISC(q),
322                               OS_REG_READ(ah, AR_DMISC(q)) |
323                               AR_D_MISC_FRAG_BKOFF_EN);
324           }
325           switch (qi->tqi_type) {
326           case HAL_TX_QUEUE_BEACON:
327                     /* Configure QCU for beacons */
328                     OS_REG_WRITE(ah, AR_QMISC(q),
329                               OS_REG_READ(ah, AR_QMISC(q))
330                               | AR_Q_MISC_FSP_DBA_GATED
331                               | AR_Q_MISC_BEACON_USE
332                               | AR_Q_MISC_CBR_INCR_DIS1);
333                     /* Configure DCU for beacons */
334                     value = (AR_D_MISC_ARB_LOCKOUT_CNTRL_GLOBAL << AR_D_MISC_ARB_LOCKOUT_CNTRL_S)
335                               | AR_D_MISC_BEACON_USE | AR_D_MISC_POST_FR_BKOFF_DIS;
336                     if (AH_PRIVATE(ah)->ah_macVersion < AR_SREV_VERSION_OAHU)
337                               value |= AR5311_D_MISC_SEQ_NUM_CONTROL;
338                     OS_REG_WRITE(ah, AR_DMISC(q), value);
339                     break;
340           case HAL_TX_QUEUE_CAB:
341                     /* Configure QCU for CAB (Crap After Beacon) frames */
342                     OS_REG_WRITE(ah, AR_QMISC(q),
343                               OS_REG_READ(ah, AR_QMISC(q))
344                               | AR_Q_MISC_FSP_DBA_GATED | AR_Q_MISC_CBR_INCR_DIS1
345                               | AR_Q_MISC_CBR_INCR_DIS0 | AR_Q_MISC_RDYTIME_EXP_POLICY);
346 
347                     value = (ahp->ah_beaconInterval
348                               - (ah->ah_config.ah_sw_beacon_response_time
349                                       - ah->ah_config.ah_dma_beacon_response_time)
350                               - ah->ah_config.ah_additional_swba_backoff) * 1024;
351                     OS_REG_WRITE(ah, AR_QRDYTIMECFG(q), value | AR_Q_RDYTIMECFG_EN);
352 
353                     /* Configure DCU for CAB */
354                     value = (AR_D_MISC_ARB_LOCKOUT_CNTRL_GLOBAL << AR_D_MISC_ARB_LOCKOUT_CNTRL_S);
355                     if (AH_PRIVATE(ah)->ah_macVersion < AR_SREV_VERSION_OAHU)
356                               value |= AR5311_D_MISC_SEQ_NUM_CONTROL;
357                     OS_REG_WRITE(ah, AR_QMISC(q), value);
358                     break;
359           default:
360                     /* NB: silence compiler */
361                     break;
362           }
363 
364           /*
365            * Always update the secondary interrupt mask registers - this
366            * could be a new queue getting enabled in a running system or
367            * hw getting re-initialized during a reset!
368            *
369            * Since we don't differentiate between tx interrupts corresponding
370            * to individual queues - secondary tx mask regs are always unmasked;
371            * tx interrupts are enabled/disabled for all queues collectively
372            * using the primary mask reg
373            */
374           if (qi->tqi_qflags & HAL_TXQ_TXOKINT_ENABLE)
375                     ahp->ah_txOkInterruptMask |= 1 << q;
376           else
377                     ahp->ah_txOkInterruptMask &= ~(1 << q);
378           if (qi->tqi_qflags & HAL_TXQ_TXERRINT_ENABLE)
379                     ahp->ah_txErrInterruptMask |= 1 << q;
380           else
381                     ahp->ah_txErrInterruptMask &= ~(1 << q);
382           if (qi->tqi_qflags & HAL_TXQ_TXDESCINT_ENABLE)
383                     ahp->ah_txDescInterruptMask |= 1 << q;
384           else
385                     ahp->ah_txDescInterruptMask &= ~(1 << q);
386           if (qi->tqi_qflags & HAL_TXQ_TXEOLINT_ENABLE)
387                     ahp->ah_txEolInterruptMask |= 1 << q;
388           else
389                     ahp->ah_txEolInterruptMask &= ~(1 << q);
390           if (qi->tqi_qflags & HAL_TXQ_TXURNINT_ENABLE)
391                     ahp->ah_txUrnInterruptMask |= 1 << q;
392           else
393                     ahp->ah_txUrnInterruptMask &= ~(1 << q);
394           setTxQInterrupts(ah, qi);
395 
396           return AH_TRUE;
397 }
398 
399 /*
400  * Get the TXDP for the specified data queue.
401  */
402 uint32_t
ar5211GetTxDP(struct ath_hal * ah,u_int q)403 ar5211GetTxDP(struct ath_hal *ah, u_int q)
404 {
405           HALASSERT(q < HAL_NUM_TX_QUEUES);
406           return OS_REG_READ(ah, AR_QTXDP(q));
407 }
408 
409 /*
410  * Set the TxDP for the specified tx queue.
411  */
412 HAL_BOOL
ar5211SetTxDP(struct ath_hal * ah,u_int q,uint32_t txdp)413 ar5211SetTxDP(struct ath_hal *ah, u_int q, uint32_t txdp)
414 {
415           HALASSERT(q < HAL_NUM_TX_QUEUES);
416           HALASSERT(AH5211(ah)->ah_txq[q].tqi_type != HAL_TX_QUEUE_INACTIVE);
417 
418           /*
419            * Make sure that TXE is deasserted before setting the TXDP.  If TXE
420            * is still asserted, setting TXDP will have no effect.
421            */
422           HALASSERT((OS_REG_READ(ah, AR_Q_TXE) & (1 << q)) == 0);
423 
424           OS_REG_WRITE(ah, AR_QTXDP(q), txdp);
425 
426           return AH_TRUE;
427 }
428 
429 /*
430  * Set Transmit Enable bits for the specified queues.
431  */
432 HAL_BOOL
ar5211StartTxDma(struct ath_hal * ah,u_int q)433 ar5211StartTxDma(struct ath_hal *ah, u_int q)
434 {
435           HALASSERT(q < HAL_NUM_TX_QUEUES);
436           HALASSERT(AH5211(ah)->ah_txq[q].tqi_type != HAL_TX_QUEUE_INACTIVE);
437 
438           /* Check that queue is not already active */
439           HALASSERT((OS_REG_READ(ah, AR_Q_TXD) & (1<<q)) == 0);
440 
441           HALDEBUG(ah, HAL_DEBUG_TXQUEUE, "%s: queue %u\n", __func__, q);
442 
443           /* Check to be sure we're not enabling a q that has its TXD bit set. */
444           HALASSERT((OS_REG_READ(ah, AR_Q_TXD) & (1 << q)) == 0);
445 
446           OS_REG_WRITE(ah, AR_Q_TXE, 1 << q);
447           return AH_TRUE;
448 }
449 
450 /*
451  * Return the number of frames pending on the specified queue.
452  */
453 uint32_t
ar5211NumTxPending(struct ath_hal * ah,u_int q)454 ar5211NumTxPending(struct ath_hal *ah, u_int q)
455 {
456           uint32_t n;
457 
458           HALASSERT(q < HAL_NUM_TX_QUEUES);
459           HALASSERT(AH5211(ah)->ah_txq[q].tqi_type != HAL_TX_QUEUE_INACTIVE);
460 
461           n = OS_REG_READ(ah, AR_QSTS(q)) & AR_Q_STS_PEND_FR_CNT_M;
462           /*
463            * Pending frame count (PFC) can momentarily go to zero
464            * while TXE remains asserted.  In other words a PFC of
465            * zero is not sufficient to say that the queue has stopped.
466            */
467           if (n == 0 && (OS_REG_READ(ah, AR_Q_TXE) & (1<<q)))
468                     n = 1;                        /* arbitrarily pick 1 */
469           return n;
470 }
471 
472 /*
473  * Stop transmit on the specified queue
474  */
475 HAL_BOOL
ar5211StopTxDma(struct ath_hal * ah,u_int q)476 ar5211StopTxDma(struct ath_hal *ah, u_int q)
477 {
478           int i;
479 
480           HALASSERT(q < HAL_NUM_TX_QUEUES);
481           HALASSERT(AH5211(ah)->ah_txq[q].tqi_type != HAL_TX_QUEUE_INACTIVE);
482 
483           OS_REG_WRITE(ah, AR_Q_TXD, 1<<q);
484           for (i = 0; i < 10000; i++) {
485                     if (ar5211NumTxPending(ah, q) == 0)
486                               break;
487                     OS_DELAY(10);
488           }
489           OS_REG_WRITE(ah, AR_Q_TXD, 0);
490 
491           return (i < 10000);
492 }
493 
494 /*
495  * Descriptor Access Functions
496  */
497 
498 #define   VALID_PKT_TYPES \
499           ((1<<HAL_PKT_TYPE_NORMAL)|(1<<HAL_PKT_TYPE_ATIM)|\
500            (1<<HAL_PKT_TYPE_PSPOLL)|(1<<HAL_PKT_TYPE_PROBE_RESP)|\
501            (1<<HAL_PKT_TYPE_BEACON))
502 #define   isValidPktType(_t)  ((1<<(_t)) & VALID_PKT_TYPES)
503 #define   VALID_TX_RATES \
504           ((1<<0x0b)|(1<<0x0f)|(1<<0x0a)|(1<<0x0e)|(1<<0x09)|(1<<0x0d)|\
505            (1<<0x08)|(1<<0x0c)|(1<<0x1b)|(1<<0x1a)|(1<<0x1e)|(1<<0x19)|\
506            (1<<0x1d)|(1<<0x18)|(1<<0x1c))
507 #define   isValidTxRate(_r)   ((1<<(_r)) & VALID_TX_RATES)
508 
509 HAL_BOOL
ar5211SetupTxDesc(struct ath_hal * ah,struct ath_desc * ds,u_int pktLen,u_int hdrLen,HAL_PKT_TYPE type,u_int txPower,u_int txRate0,u_int txTries0,u_int keyIx,u_int antMode,u_int flags,u_int rtsctsRate,u_int rtsctsDuration,u_int compicvLen,u_int compivLen,u_int comp)510 ar5211SetupTxDesc(struct ath_hal *ah, struct ath_desc *ds,
511           u_int pktLen,
512           u_int hdrLen,
513           HAL_PKT_TYPE type,
514           u_int txPower,
515           u_int txRate0, u_int txTries0,
516           u_int keyIx,
517           u_int antMode,
518           u_int flags,
519           u_int rtsctsRate,
520           u_int rtsctsDuration,
521           u_int compicvLen,
522           u_int compivLen,
523           u_int comp)
524 {
525           struct ar5211_desc *ads = AR5211DESC(ds);
526 
527           (void) hdrLen;
528           (void) txPower;
529           (void) rtsctsRate; (void) rtsctsDuration;
530 
531           HALASSERT(txTries0 != 0);
532           HALASSERT(isValidPktType(type));
533           HALASSERT(isValidTxRate(txRate0));
534           /* XXX validate antMode */
535 
536           ads->ds_ctl0 = (pktLen & AR_FrameLen)
537                          | (txRate0 << AR_XmitRate_S)
538                          | (antMode << AR_AntModeXmit_S)
539                          | (flags & HAL_TXDESC_CLRDMASK ? AR_ClearDestMask : 0)
540                          | (flags & HAL_TXDESC_INTREQ ? AR_TxInterReq : 0)
541                          | (flags & HAL_TXDESC_RTSENA ? AR_RTSCTSEnable : 0)
542                          | (flags & HAL_TXDESC_VEOL ? AR_VEOL : 0)
543                          ;
544           ads->ds_ctl1 = (type << 26)
545                          | (flags & HAL_TXDESC_NOACK ? AR_NoAck : 0)
546                          ;
547 
548           if (keyIx != HAL_TXKEYIX_INVALID) {
549                     ads->ds_ctl1 |=
550                               (keyIx << AR_EncryptKeyIdx_S) & AR_EncryptKeyIdx;
551                     ads->ds_ctl0 |= AR_EncryptKeyValid;
552           }
553           return AH_TRUE;
554 #undef RATE
555 }
556 
557 HAL_BOOL
ar5211SetupXTxDesc(struct ath_hal * ah,struct ath_desc * ds,u_int txRate1,u_int txTries1,u_int txRate2,u_int txTries2,u_int txRate3,u_int txTries3)558 ar5211SetupXTxDesc(struct ath_hal *ah, struct ath_desc *ds,
559           u_int txRate1, u_int txTries1,
560           u_int txRate2, u_int txTries2,
561           u_int txRate3, u_int txTries3)
562 {
563           (void) ah; (void) ds;
564           (void) txRate1; (void) txTries1;
565           (void) txRate2; (void) txTries2;
566           (void) txRate3; (void) txTries3;
567           return AH_FALSE;
568 }
569 
570 void
ar5211IntrReqTxDesc(struct ath_hal * ah,struct ath_desc * ds)571 ar5211IntrReqTxDesc(struct ath_hal *ah, struct ath_desc *ds)
572 {
573           struct ar5211_desc *ads = AR5211DESC(ds);
574 
575           ads->ds_ctl0 |= AR_TxInterReq;
576 }
577 
578 HAL_BOOL
ar5211FillTxDesc(struct ath_hal * ah,struct ath_desc * ds,HAL_DMA_ADDR * bufAddrList,uint32_t * segLenList,u_int qcuId,u_int descId,HAL_BOOL firstSeg,HAL_BOOL lastSeg,const struct ath_desc * ds0)579 ar5211FillTxDesc(struct ath_hal *ah, struct ath_desc *ds,
580           HAL_DMA_ADDR *bufAddrList, uint32_t *segLenList, u_int qcuId,
581           u_int descId, HAL_BOOL firstSeg, HAL_BOOL lastSeg,
582           const struct ath_desc *ds0)
583 {
584           struct ar5211_desc *ads = AR5211DESC(ds);
585           uint32_t segLen = segLenList[0];
586 
587           ds->ds_data = bufAddrList[0];
588 
589           HALASSERT((segLen &~ AR_BufLen) == 0);
590 
591           if (firstSeg) {
592                     /*
593                      * First descriptor, don't clobber xmit control data
594                      * setup by ar5211SetupTxDesc.
595                      */
596                     ads->ds_ctl1 |= segLen | (lastSeg ? 0 : AR_More);
597           } else if (lastSeg) {                   /* !firstSeg && lastSeg */
598                     /*
599                      * Last descriptor in a multi-descriptor frame,
600                      * copy the transmit parameters from the first
601                      * frame for processing on completion.
602                      */
603                     ads->ds_ctl0 = AR5211DESC_CONST(ds0)->ds_ctl0;
604                     ads->ds_ctl1 = segLen;
605           } else {                      /* !firstSeg && !lastSeg */
606                     /*
607                      * Intermediate descriptor in a multi-descriptor frame.
608                      */
609                     ads->ds_ctl0 = 0;
610                     ads->ds_ctl1 = segLen | AR_More;
611           }
612           ads->ds_status0 = ads->ds_status1 = 0;
613           return AH_TRUE;
614 }
615 
616 /*
617  * Processing of HW TX descriptor.
618  */
619 HAL_STATUS
ar5211ProcTxDesc(struct ath_hal * ah,struct ath_desc * ds,struct ath_tx_status * ts)620 ar5211ProcTxDesc(struct ath_hal *ah,
621           struct ath_desc *ds, struct ath_tx_status *ts)
622 {
623           struct ar5211_desc *ads = AR5211DESC(ds);
624 
625           if ((ads->ds_status1 & AR_Done) == 0)
626                     return HAL_EINPROGRESS;
627 
628           /* Update software copies of the HW status */
629           ts->ts_seqnum = MS(ads->ds_status1, AR_SeqNum);
630           ts->ts_tstamp = MS(ads->ds_status0, AR_SendTimestamp);
631           ts->ts_status = 0;
632           if ((ads->ds_status0 & AR_FrmXmitOK) == 0) {
633                     if (ads->ds_status0 & AR_ExcessiveRetries)
634                               ts->ts_status |= HAL_TXERR_XRETRY;
635                     if (ads->ds_status0 & AR_Filtered)
636                               ts->ts_status |= HAL_TXERR_FILT;
637                     if (ads->ds_status0 & AR_FIFOUnderrun)
638                               ts->ts_status |= HAL_TXERR_FIFO;
639           }
640           ts->ts_rate = MS(ads->ds_ctl0, AR_XmitRate);
641           ts->ts_rssi = MS(ads->ds_status1, AR_AckSigStrength);
642           ts->ts_shortretry = MS(ads->ds_status0, AR_ShortRetryCnt);
643           ts->ts_longretry = MS(ads->ds_status0, AR_LongRetryCnt);
644           ts->ts_virtcol = MS(ads->ds_status0, AR_VirtCollCnt);
645           ts->ts_antenna = 0;           /* NB: don't know */
646           ts->ts_finaltsi = 0;
647           /*
648            * NB: the number of retries is one less than it should be.
649            * Also, 0 retries and 1 retry are both reported as 0 retries.
650            */
651           if (ts->ts_shortretry > 0)
652                     ts->ts_shortretry++;
653           if (ts->ts_longretry > 0)
654                     ts->ts_longretry++;
655 
656           return HAL_OK;
657 }
658 
659 /*
660  * Determine which tx queues need interrupt servicing.
661  * STUB.
662  */
663 void
ar5211GetTxIntrQueue(struct ath_hal * ah,uint32_t * txqs)664 ar5211GetTxIntrQueue(struct ath_hal *ah, uint32_t *txqs)
665 {
666           return;
667 }
668 
669 /*
670  * Retrieve the rate table from the given TX completion descriptor
671  */
672 HAL_BOOL
ar5211GetTxCompletionRates(struct ath_hal * ah,const struct ath_desc * ds0,int * rates,int * tries)673 ar5211GetTxCompletionRates(struct ath_hal *ah, const struct ath_desc *ds0, int *rates, int *tries)
674 {
675           return AH_FALSE;
676 }
677 
678 
679 void
ar5211SetTxDescLink(struct ath_hal * ah,void * ds,uint32_t link)680 ar5211SetTxDescLink(struct ath_hal *ah, void *ds, uint32_t link)
681 {
682           struct ar5211_desc *ads = AR5211DESC(ds);
683 
684           ads->ds_link = link;
685 }
686 
687 void
ar5211GetTxDescLink(struct ath_hal * ah,void * ds,uint32_t * link)688 ar5211GetTxDescLink(struct ath_hal *ah, void *ds, uint32_t *link)
689 {
690           struct ar5211_desc *ads = AR5211DESC(ds);
691 
692           *link = ads->ds_link;
693 }
694 
695 void
ar5211GetTxDescLinkPtr(struct ath_hal * ah,void * ds,uint32_t ** linkptr)696 ar5211GetTxDescLinkPtr(struct ath_hal *ah, void *ds, uint32_t **linkptr)
697 {
698           struct ar5211_desc *ads = AR5211DESC(ds);
699 
700           *linkptr = &ads->ds_link;
701 }
702