2 * Copyright (c) 2004-2008 Reyk Floeter <reyk@openbsd.org>
3 * Copyright (c) 2006-2008 Nick Kossifidis <mickflemm@gmail.com>
5 * Permission to use, copy, modify, and 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.
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.
19 /*************************************\
20 * DMA and interrupt masking functions *
21 \*************************************/
24 * dma.c - DMA and interrupt masking functions
26 * Here we setup descriptor pointers (rxdp/txdp) start/stop dma engine and
27 * handle queue setup for 5210 chipset (rest are handled on qcu.c).
28 * Also we setup interrupt mask register (IMR) and read the various iterrupt
29 * status registers (ISR).
31 * TODO: Handle SISR on 5211+ and introduce a function to return the queue
32 * number that resulted the interrupt.
46 * ath5k_hw_start_rx_dma - Start DMA receive
48 * @ah: The &struct ath5k_hw
50 void ath5k_hw_start_rx_dma(struct ath5k_hw
*ah
)
52 ath5k_hw_reg_write(ah
, AR5K_CR_RXE
, AR5K_CR
);
53 ath5k_hw_reg_read(ah
, AR5K_CR
);
57 * ath5k_hw_stop_rx_dma - Stop DMA receive
59 * @ah: The &struct ath5k_hw
61 static int ath5k_hw_stop_rx_dma(struct ath5k_hw
*ah
)
65 ath5k_hw_reg_write(ah
, AR5K_CR_RXD
, AR5K_CR
);
68 * It may take some time to disable the DMA receive unit
70 for (i
= 1000; i
> 0 &&
71 (ath5k_hw_reg_read(ah
, AR5K_CR
) & AR5K_CR_RXE
) != 0;
76 ATH5K_DBG(ah
->ah_sc
, ATH5K_DEBUG_DMA
,
77 "failed to stop RX DMA !\n");
79 return i
? 0 : -EBUSY
;
83 * ath5k_hw_get_rxdp - Get RX Descriptor's address
85 * @ah: The &struct ath5k_hw
87 u32
ath5k_hw_get_rxdp(struct ath5k_hw
*ah
)
89 return ath5k_hw_reg_read(ah
, AR5K_RXDP
);
93 * ath5k_hw_set_rxdp - Set RX Descriptor's address
95 * @ah: The &struct ath5k_hw
96 * @phys_addr: RX descriptor address
98 * Returns -EIO if rx is active
100 int ath5k_hw_set_rxdp(struct ath5k_hw
*ah
, u32 phys_addr
)
102 if (ath5k_hw_reg_read(ah
, AR5K_CR
) & AR5K_CR_RXE
) {
103 ATH5K_DBG(ah
->ah_sc
, ATH5K_DEBUG_DMA
,
104 "tried to set RXDP while rx was active !\n");
108 ath5k_hw_reg_write(ah
, phys_addr
, AR5K_RXDP
);
118 * ath5k_hw_start_tx_dma - Start DMA transmit for a specific queue
120 * @ah: The &struct ath5k_hw
121 * @queue: The hw queue number
123 * Start DMA transmit for a specific queue and since 5210 doesn't have
124 * QCU/DCU, set up queue parameters for 5210 here based on queue type (one
125 * queue for normal data and one queue for beacons). For queue setup
126 * on newer chips check out qcu.c. Returns -EINVAL if queue number is out
127 * of range or if queue is already disabled.
129 * NOTE: Must be called after setting up tx control descriptor for that
132 int ath5k_hw_start_tx_dma(struct ath5k_hw
*ah
, unsigned int queue
)
136 AR5K_ASSERT_ENTRY(queue
, ah
->ah_capabilities
.cap_queues
.q_tx_num
);
138 /* Return if queue is declared inactive */
139 if (ah
->ah_txq
[queue
].tqi_type
== AR5K_TX_QUEUE_INACTIVE
)
142 if (ah
->ah_version
== AR5K_AR5210
) {
143 tx_queue
= ath5k_hw_reg_read(ah
, AR5K_CR
);
146 * Set the queue by type on 5210
148 switch (ah
->ah_txq
[queue
].tqi_type
) {
149 case AR5K_TX_QUEUE_DATA
:
150 tx_queue
|= AR5K_CR_TXE0
& ~AR5K_CR_TXD0
;
152 case AR5K_TX_QUEUE_BEACON
:
153 tx_queue
|= AR5K_CR_TXE1
& ~AR5K_CR_TXD1
;
154 ath5k_hw_reg_write(ah
, AR5K_BCR_TQ1V
| AR5K_BCR_BDMAE
,
157 case AR5K_TX_QUEUE_CAB
:
158 tx_queue
|= AR5K_CR_TXE1
& ~AR5K_CR_TXD1
;
159 ath5k_hw_reg_write(ah
, AR5K_BCR_TQ1FV
| AR5K_BCR_TQ1V
|
160 AR5K_BCR_BDMAE
, AR5K_BSR
);
166 ath5k_hw_reg_write(ah
, tx_queue
, AR5K_CR
);
167 ath5k_hw_reg_read(ah
, AR5K_CR
);
169 /* Return if queue is disabled */
170 if (AR5K_REG_READ_Q(ah
, AR5K_QCU_TXD
, queue
))
174 AR5K_REG_WRITE_Q(ah
, AR5K_QCU_TXE
, queue
);
181 * ath5k_hw_stop_tx_dma - Stop DMA transmit on a specific queue
183 * @ah: The &struct ath5k_hw
184 * @queue: The hw queue number
186 * Stop DMA transmit on a specific hw queue and drain queue so we don't
187 * have any pending frames. Returns -EBUSY if we still have pending frames,
188 * -EINVAL if queue number is out of range or inactive.
191 static int ath5k_hw_stop_tx_dma(struct ath5k_hw
*ah
, unsigned int queue
)
194 u32 tx_queue
, pending
;
196 AR5K_ASSERT_ENTRY(queue
, ah
->ah_capabilities
.cap_queues
.q_tx_num
);
198 /* Return if queue is declared inactive */
199 if (ah
->ah_txq
[queue
].tqi_type
== AR5K_TX_QUEUE_INACTIVE
)
202 if (ah
->ah_version
== AR5K_AR5210
) {
203 tx_queue
= ath5k_hw_reg_read(ah
, AR5K_CR
);
208 switch (ah
->ah_txq
[queue
].tqi_type
) {
209 case AR5K_TX_QUEUE_DATA
:
210 tx_queue
|= AR5K_CR_TXD0
& ~AR5K_CR_TXE0
;
212 case AR5K_TX_QUEUE_BEACON
:
213 case AR5K_TX_QUEUE_CAB
:
215 tx_queue
|= AR5K_CR_TXD1
& ~AR5K_CR_TXD1
;
216 ath5k_hw_reg_write(ah
, 0, AR5K_BSR
);
223 ath5k_hw_reg_write(ah
, tx_queue
, AR5K_CR
);
224 ath5k_hw_reg_read(ah
, AR5K_CR
);
228 * Enable DCU early termination to quickly
229 * flush any pending frames from QCU
231 AR5K_REG_ENABLE_BITS(ah
, AR5K_QUEUE_MISC(queue
),
232 AR5K_QCU_MISC_DCU_EARLY
);
235 * Schedule TX disable and wait until queue is empty
237 AR5K_REG_WRITE_Q(ah
, AR5K_QCU_TXD
, queue
);
239 /* Wait for queue to stop */
240 for (i
= 1000; i
> 0 &&
241 (AR5K_REG_READ_Q(ah
, AR5K_QCU_TXE
, queue
) != 0);
245 if (AR5K_REG_READ_Q(ah
, AR5K_QCU_TXE
, queue
))
246 ATH5K_DBG(ah
->ah_sc
, ATH5K_DEBUG_DMA
,
247 "queue %i didn't stop !\n", queue
);
249 /* Check for pending frames */
252 pending
= ath5k_hw_reg_read(ah
,
253 AR5K_QUEUE_STATUS(queue
)) &
254 AR5K_QCU_STS_FRMPENDCNT
;
256 } while (--i
&& pending
);
258 /* For 2413+ order PCU to drop packets using
260 if (ah
->ah_mac_version
>= (AR5K_SREV_AR2414
>> 4) &&
262 /* Set periodicity and duration */
263 ath5k_hw_reg_write(ah
,
264 AR5K_REG_SM(100, AR5K_QUIET_CTL2_QT_PER
)|
265 AR5K_REG_SM(10, AR5K_QUIET_CTL2_QT_DUR
),
268 /* Enable quiet period for current TSF */
269 ath5k_hw_reg_write(ah
,
270 AR5K_QUIET_CTL1_QT_EN
|
271 AR5K_REG_SM(ath5k_hw_reg_read(ah
,
272 AR5K_TSF_L32_5211
) >> 10,
273 AR5K_QUIET_CTL1_NEXT_QT_TSF
),
276 /* Force channel idle high */
277 AR5K_REG_ENABLE_BITS(ah
, AR5K_DIAG_SW_5211
,
278 AR5K_DIAG_SW_CHANNEL_IDLE_HIGH
);
280 /* Wait a while and disable mechanism */
282 AR5K_REG_DISABLE_BITS(ah
, AR5K_QUIET_CTL1
,
283 AR5K_QUIET_CTL1_QT_EN
);
285 /* Re-check for pending frames */
288 pending
= ath5k_hw_reg_read(ah
,
289 AR5K_QUEUE_STATUS(queue
)) &
290 AR5K_QCU_STS_FRMPENDCNT
;
292 } while (--i
&& pending
);
294 AR5K_REG_DISABLE_BITS(ah
, AR5K_DIAG_SW_5211
,
295 AR5K_DIAG_SW_CHANNEL_IDLE_HIGH
);
298 ATH5K_DBG(ah
->ah_sc
, ATH5K_DEBUG_DMA
,
299 "quiet mechanism didn't work q:%i !\n",
304 * Disable DCU early termination
306 AR5K_REG_DISABLE_BITS(ah
, AR5K_QUEUE_MISC(queue
),
307 AR5K_QCU_MISC_DCU_EARLY
);
310 ath5k_hw_reg_write(ah
, 0, AR5K_QCU_TXD
);
312 ATH5K_DBG(ah
->ah_sc
, ATH5K_DEBUG_DMA
,
313 "tx dma didn't stop (q:%i, frm:%i) !\n",
319 /* TODO: Check for success on 5210 else return error */
324 * ath5k_hw_stop_beacon_queue - Stop beacon queue
326 * @ah The &struct ath5k_hw
327 * @queue The queue number
329 * Returns -EIO if queue didn't stop
331 int ath5k_hw_stop_beacon_queue(struct ath5k_hw
*ah
, unsigned int queue
)
334 ret
= ath5k_hw_stop_tx_dma(ah
, queue
);
336 ATH5K_DBG(ah
->ah_sc
, ATH5K_DEBUG_DMA
,
337 "beacon queue didn't stop !\n");
344 * ath5k_hw_get_txdp - Get TX Descriptor's address for a specific queue
346 * @ah: The &struct ath5k_hw
347 * @queue: The hw queue number
349 * Get TX descriptor's address for a specific queue. For 5210 we ignore
350 * the queue number and use tx queue type since we only have 2 queues.
351 * We use TXDP0 for normal data queue and TXDP1 for beacon queue.
352 * For newer chips with QCU/DCU we just read the corresponding TXDP register.
354 * XXX: Is TXDP read and clear ?
356 u32
ath5k_hw_get_txdp(struct ath5k_hw
*ah
, unsigned int queue
)
360 AR5K_ASSERT_ENTRY(queue
, ah
->ah_capabilities
.cap_queues
.q_tx_num
);
363 * Get the transmit queue descriptor pointer from the selected queue
365 /*5210 doesn't have QCU*/
366 if (ah
->ah_version
== AR5K_AR5210
) {
367 switch (ah
->ah_txq
[queue
].tqi_type
) {
368 case AR5K_TX_QUEUE_DATA
:
369 tx_reg
= AR5K_NOQCU_TXDP0
;
371 case AR5K_TX_QUEUE_BEACON
:
372 case AR5K_TX_QUEUE_CAB
:
373 tx_reg
= AR5K_NOQCU_TXDP1
;
379 tx_reg
= AR5K_QUEUE_TXDP(queue
);
382 return ath5k_hw_reg_read(ah
, tx_reg
);
386 * ath5k_hw_set_txdp - Set TX Descriptor's address for a specific queue
388 * @ah: The &struct ath5k_hw
389 * @queue: The hw queue number
391 * Set TX descriptor's address for a specific queue. For 5210 we ignore
392 * the queue number and we use tx queue type since we only have 2 queues
393 * so as above we use TXDP0 for normal data queue and TXDP1 for beacon queue.
394 * For newer chips with QCU/DCU we just set the corresponding TXDP register.
395 * Returns -EINVAL if queue type is invalid for 5210 and -EIO if queue is still
398 int ath5k_hw_set_txdp(struct ath5k_hw
*ah
, unsigned int queue
, u32 phys_addr
)
402 AR5K_ASSERT_ENTRY(queue
, ah
->ah_capabilities
.cap_queues
.q_tx_num
);
405 * Set the transmit queue descriptor pointer register by type
408 if (ah
->ah_version
== AR5K_AR5210
) {
409 switch (ah
->ah_txq
[queue
].tqi_type
) {
410 case AR5K_TX_QUEUE_DATA
:
411 tx_reg
= AR5K_NOQCU_TXDP0
;
413 case AR5K_TX_QUEUE_BEACON
:
414 case AR5K_TX_QUEUE_CAB
:
415 tx_reg
= AR5K_NOQCU_TXDP1
;
422 * Set the transmit queue descriptor pointer for
423 * the selected queue on QCU for 5211+
424 * (this won't work if the queue is still active)
426 if (AR5K_REG_READ_Q(ah
, AR5K_QCU_TXE
, queue
))
429 tx_reg
= AR5K_QUEUE_TXDP(queue
);
432 /* Set descriptor pointer */
433 ath5k_hw_reg_write(ah
, phys_addr
, tx_reg
);
439 * ath5k_hw_update_tx_triglevel - Update tx trigger level
441 * @ah: The &struct ath5k_hw
442 * @increase: Flag to force increase of trigger level
444 * This function increases/decreases the tx trigger level for the tx fifo
445 * buffer (aka FIFO threshold) that is used to indicate when PCU flushes
446 * the buffer and transmits its data. Lowering this results sending small
447 * frames more quickly but can lead to tx underruns, raising it a lot can
448 * result other problems (i think bmiss is related). Right now we start with
449 * the lowest possible (64Bytes) and if we get tx underrun we increase it using
450 * the increase flag. Returns -EIO if we have reached maximum/minimum.
452 * XXX: Link this with tx DMA size ?
453 * XXX: Use it to save interrupts ?
454 * TODO: Needs testing, i think it's related to bmiss...
456 int ath5k_hw_update_tx_triglevel(struct ath5k_hw
*ah
, bool increase
)
458 u32 trigger_level
, imr
;
462 * Disable interrupts by setting the mask
464 imr
= ath5k_hw_set_imr(ah
, ah
->ah_imr
& ~AR5K_INT_GLOBAL
);
466 trigger_level
= AR5K_REG_MS(ath5k_hw_reg_read(ah
, AR5K_TXCFG
),
470 if (--trigger_level
< AR5K_TUNE_MIN_TX_FIFO_THRES
)
474 ((AR5K_TUNE_MAX_TX_FIFO_THRES
- trigger_level
) / 2);
477 * Update trigger level on success
479 if (ah
->ah_version
== AR5K_AR5210
)
480 ath5k_hw_reg_write(ah
, trigger_level
, AR5K_TRIG_LVL
);
482 AR5K_REG_WRITE_BITS(ah
, AR5K_TXCFG
,
483 AR5K_TXCFG_TXFULL
, trigger_level
);
489 * Restore interrupt mask
491 ath5k_hw_set_imr(ah
, imr
);
497 /*******************\
498 * Interrupt masking *
499 \*******************/
502 * ath5k_hw_is_intr_pending - Check if we have pending interrupts
504 * @ah: The &struct ath5k_hw
506 * Check if we have pending interrupts to process. Returns 1 if we
507 * have pending interrupts and 0 if we haven't.
509 bool ath5k_hw_is_intr_pending(struct ath5k_hw
*ah
)
511 return ath5k_hw_reg_read(ah
, AR5K_INTPEND
) == 1 ? 1 : 0;
515 * ath5k_hw_get_isr - Get interrupt status
517 * @ah: The @struct ath5k_hw
518 * @interrupt_mask: Driver's interrupt mask used to filter out
521 * This function is used inside our interrupt handler to determine the reason
522 * for the interrupt by reading Primary Interrupt Status Register. Returns an
523 * abstract interrupt status mask which is mostly ISR with some uncommon bits
524 * being mapped on some standard non hw-specific positions
525 * (check out &ath5k_int).
527 * NOTE: We use read-and-clear register, so after this function is called ISR
530 int ath5k_hw_get_isr(struct ath5k_hw
*ah
, enum ath5k_int
*interrupt_mask
)
535 * Read interrupt status from the Interrupt Status register
538 if (ah
->ah_version
== AR5K_AR5210
) {
539 data
= ath5k_hw_reg_read(ah
, AR5K_ISR
);
540 if (unlikely(data
== AR5K_INT_NOCARD
)) {
541 *interrupt_mask
= data
;
546 * Read interrupt status from Interrupt
547 * Status Register shadow copy (Read And Clear)
549 * Note: PISR/SISR Not available on 5210
551 data
= ath5k_hw_reg_read(ah
, AR5K_RAC_PISR
);
552 if (unlikely(data
== AR5K_INT_NOCARD
)) {
553 *interrupt_mask
= data
;
559 * Get abstract interrupt mask (driver-compatible)
561 *interrupt_mask
= (data
& AR5K_INT_COMMON
) & ah
->ah_imr
;
563 if (ah
->ah_version
!= AR5K_AR5210
) {
564 u32 sisr2
= ath5k_hw_reg_read(ah
, AR5K_RAC_SISR2
);
566 /*HIU = Host Interface Unit (PCI etc)*/
567 if (unlikely(data
& (AR5K_ISR_HIUERR
)))
568 *interrupt_mask
|= AR5K_INT_FATAL
;
571 if (unlikely(data
& (AR5K_ISR_BNR
)))
572 *interrupt_mask
|= AR5K_INT_BNR
;
574 if (unlikely(sisr2
& (AR5K_SISR2_SSERR
|
577 *interrupt_mask
|= AR5K_INT_FATAL
;
579 if (data
& AR5K_ISR_TIM
)
580 *interrupt_mask
|= AR5K_INT_TIM
;
582 if (data
& AR5K_ISR_BCNMISC
) {
583 if (sisr2
& AR5K_SISR2_TIM
)
584 *interrupt_mask
|= AR5K_INT_TIM
;
585 if (sisr2
& AR5K_SISR2_DTIM
)
586 *interrupt_mask
|= AR5K_INT_DTIM
;
587 if (sisr2
& AR5K_SISR2_DTIM_SYNC
)
588 *interrupt_mask
|= AR5K_INT_DTIM_SYNC
;
589 if (sisr2
& AR5K_SISR2_BCN_TIMEOUT
)
590 *interrupt_mask
|= AR5K_INT_BCN_TIMEOUT
;
591 if (sisr2
& AR5K_SISR2_CAB_TIMEOUT
)
592 *interrupt_mask
|= AR5K_INT_CAB_TIMEOUT
;
595 if (data
& AR5K_ISR_RXDOPPLER
)
596 *interrupt_mask
|= AR5K_INT_RX_DOPPLER
;
597 if (data
& AR5K_ISR_QCBRORN
) {
598 *interrupt_mask
|= AR5K_INT_QCBRORN
;
599 ah
->ah_txq_isr
|= AR5K_REG_MS(
600 ath5k_hw_reg_read(ah
, AR5K_RAC_SISR3
),
603 if (data
& AR5K_ISR_QCBRURN
) {
604 *interrupt_mask
|= AR5K_INT_QCBRURN
;
605 ah
->ah_txq_isr
|= AR5K_REG_MS(
606 ath5k_hw_reg_read(ah
, AR5K_RAC_SISR3
),
609 if (data
& AR5K_ISR_QTRIG
) {
610 *interrupt_mask
|= AR5K_INT_QTRIG
;
611 ah
->ah_txq_isr
|= AR5K_REG_MS(
612 ath5k_hw_reg_read(ah
, AR5K_RAC_SISR4
),
616 if (data
& AR5K_ISR_TXOK
)
617 ah
->ah_txq_isr
|= AR5K_REG_MS(
618 ath5k_hw_reg_read(ah
, AR5K_RAC_SISR0
),
619 AR5K_SISR0_QCU_TXOK
);
621 if (data
& AR5K_ISR_TXDESC
)
622 ah
->ah_txq_isr
|= AR5K_REG_MS(
623 ath5k_hw_reg_read(ah
, AR5K_RAC_SISR0
),
624 AR5K_SISR0_QCU_TXDESC
);
626 if (data
& AR5K_ISR_TXERR
)
627 ah
->ah_txq_isr
|= AR5K_REG_MS(
628 ath5k_hw_reg_read(ah
, AR5K_RAC_SISR1
),
629 AR5K_SISR1_QCU_TXERR
);
631 if (data
& AR5K_ISR_TXEOL
)
632 ah
->ah_txq_isr
|= AR5K_REG_MS(
633 ath5k_hw_reg_read(ah
, AR5K_RAC_SISR1
),
634 AR5K_SISR1_QCU_TXEOL
);
636 if (data
& AR5K_ISR_TXURN
)
637 ah
->ah_txq_isr
|= AR5K_REG_MS(
638 ath5k_hw_reg_read(ah
, AR5K_RAC_SISR2
),
639 AR5K_SISR2_QCU_TXURN
);
641 if (unlikely(data
& (AR5K_ISR_SSERR
| AR5K_ISR_MCABT
642 | AR5K_ISR_HIUERR
| AR5K_ISR_DPERR
)))
643 *interrupt_mask
|= AR5K_INT_FATAL
;
646 * XXX: BMISS interrupts may occur after association.
647 * I found this on 5210 code but it needs testing. If this is
648 * true we should disable them before assoc and re-enable them
649 * after a successful assoc + some jiffies.
650 interrupt_mask &= ~AR5K_INT_BMISS;
655 * In case we didn't handle anything,
656 * print the register value.
658 if (unlikely(*interrupt_mask
== 0 && net_ratelimit()))
659 ATH5K_PRINTF("ISR: 0x%08x IMR: 0x%08x\n", data
, ah
->ah_imr
);
665 * ath5k_hw_set_imr - Set interrupt mask
667 * @ah: The &struct ath5k_hw
668 * @new_mask: The new interrupt mask to be set
670 * Set the interrupt mask in hw to save interrupts. We do that by mapping
671 * ath5k_int bits to hw-specific bits to remove abstraction and writing
672 * Interrupt Mask Register.
674 enum ath5k_int
ath5k_hw_set_imr(struct ath5k_hw
*ah
, enum ath5k_int new_mask
)
676 enum ath5k_int old_mask
, int_mask
;
678 old_mask
= ah
->ah_imr
;
681 * Disable card interrupts to prevent any race conditions
682 * (they will be re-enabled afterwards if AR5K_INT GLOBAL
683 * is set again on the new mask).
685 if (old_mask
& AR5K_INT_GLOBAL
) {
686 ath5k_hw_reg_write(ah
, AR5K_IER_DISABLE
, AR5K_IER
);
687 ath5k_hw_reg_read(ah
, AR5K_IER
);
691 * Add additional, chipset-dependent interrupt mask flags
692 * and write them to the IMR (interrupt mask register).
694 int_mask
= new_mask
& AR5K_INT_COMMON
;
696 if (ah
->ah_version
!= AR5K_AR5210
) {
697 /* Preserve per queue TXURN interrupt mask */
698 u32 simr2
= ath5k_hw_reg_read(ah
, AR5K_SIMR2
)
699 & AR5K_SIMR2_QCU_TXURN
;
701 if (new_mask
& AR5K_INT_FATAL
) {
702 int_mask
|= AR5K_IMR_HIUERR
;
703 simr2
|= (AR5K_SIMR2_MCABT
| AR5K_SIMR2_SSERR
708 if (new_mask
& AR5K_INT_BNR
)
709 int_mask
|= AR5K_INT_BNR
;
711 if (new_mask
& AR5K_INT_TIM
)
712 int_mask
|= AR5K_IMR_TIM
;
714 if (new_mask
& AR5K_INT_TIM
)
715 simr2
|= AR5K_SISR2_TIM
;
716 if (new_mask
& AR5K_INT_DTIM
)
717 simr2
|= AR5K_SISR2_DTIM
;
718 if (new_mask
& AR5K_INT_DTIM_SYNC
)
719 simr2
|= AR5K_SISR2_DTIM_SYNC
;
720 if (new_mask
& AR5K_INT_BCN_TIMEOUT
)
721 simr2
|= AR5K_SISR2_BCN_TIMEOUT
;
722 if (new_mask
& AR5K_INT_CAB_TIMEOUT
)
723 simr2
|= AR5K_SISR2_CAB_TIMEOUT
;
725 if (new_mask
& AR5K_INT_RX_DOPPLER
)
726 int_mask
|= AR5K_IMR_RXDOPPLER
;
728 /* Note: Per queue interrupt masks
729 * are set via reset_tx_queue (qcu.c) */
730 ath5k_hw_reg_write(ah
, int_mask
, AR5K_PIMR
);
731 ath5k_hw_reg_write(ah
, simr2
, AR5K_SIMR2
);
734 if (new_mask
& AR5K_INT_FATAL
)
735 int_mask
|= (AR5K_IMR_SSERR
| AR5K_IMR_MCABT
736 | AR5K_IMR_HIUERR
| AR5K_IMR_DPERR
);
738 ath5k_hw_reg_write(ah
, int_mask
, AR5K_IMR
);
741 /* If RXNOFRM interrupt is masked disable it
742 * by setting AR5K_RXNOFRM to zero */
743 if (!(new_mask
& AR5K_INT_RXNOFRM
))
744 ath5k_hw_reg_write(ah
, 0, AR5K_RXNOFRM
);
746 /* Store new interrupt mask */
747 ah
->ah_imr
= new_mask
;
749 /* ..re-enable interrupts if AR5K_INT_GLOBAL is set */
750 if (new_mask
& AR5K_INT_GLOBAL
) {
751 ath5k_hw_reg_write(ah
, AR5K_IER_ENABLE
, AR5K_IER
);
752 ath5k_hw_reg_read(ah
, AR5K_IER
);
759 /********************\
761 \********************/
764 * ath5k_hw_dma_init - Initialize DMA unit
766 * @ah: The &struct ath5k_hw
768 * Set DMA size and pre-enable interrupts
769 * (driver handles tx/rx buffer setup and
772 * XXX: Save/restore RXDP/TXDP registers ?
774 void ath5k_hw_dma_init(struct ath5k_hw
*ah
)
777 * Set Rx/Tx DMA Configuration
779 * Set standard DMA size (128). Note that
780 * a DMA size of 512 causes rx overruns and tx errors
781 * on pci-e cards (tested on 5424 but since rx overruns
782 * also occur on 5416/5418 with madwifi we set 128
783 * for all PCI-E cards to be safe).
785 * XXX: need to check 5210 for this
786 * TODO: Check out tx triger level, it's always 64 on dumps but I
787 * guess we can tweak it and see how it goes ;-)
789 if (ah
->ah_version
!= AR5K_AR5210
) {
790 AR5K_REG_WRITE_BITS(ah
, AR5K_TXCFG
,
791 AR5K_TXCFG_SDMAMR
, AR5K_DMASIZE_128B
);
792 AR5K_REG_WRITE_BITS(ah
, AR5K_RXCFG
,
793 AR5K_RXCFG_SDMAMW
, AR5K_DMASIZE_128B
);
796 /* Pre-enable interrupts on 5211/5212*/
797 if (ah
->ah_version
!= AR5K_AR5210
)
798 ath5k_hw_set_imr(ah
, ah
->ah_imr
);
803 * ath5k_hw_dma_stop - stop DMA unit
805 * @ah: The &struct ath5k_hw
807 * Stop tx/rx DMA and interrupts. Returns
808 * -EBUSY if tx or rx dma failed to stop.
810 * XXX: Sometimes DMA unit hangs and we have
811 * stuck frames on tx queues, only a reset
814 int ath5k_hw_dma_stop(struct ath5k_hw
*ah
)
819 /* Disable interrupts */
820 ath5k_hw_set_imr(ah
, 0);
823 err
= ath5k_hw_stop_rx_dma(ah
);
827 /* Clear any pending interrupts
828 * and disable tx dma */
829 if (ah
->ah_version
!= AR5K_AR5210
) {
830 ath5k_hw_reg_write(ah
, 0xffffffff, AR5K_PISR
);
831 qmax
= AR5K_NUM_TX_QUEUES
;
833 /* PISR/SISR Not available on 5210 */
834 ath5k_hw_reg_read(ah
, AR5K_ISR
);
835 qmax
= AR5K_NUM_TX_QUEUES_NOQCU
;
838 for (i
= 0; i
< qmax
; i
++) {
839 err
= ath5k_hw_stop_tx_dma(ah
, i
);
840 /* -EINVAL -> queue inactive */
841 if (err
&& err
!= -EINVAL
)