2 * Copyright (c) 2002-2008 Sam Leffler, Errno Consulting
3 * Copyright (c) 2002-2006 Atheros Communications, Inc.
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.
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.
21 #ifdef AH_SUPPORT_AR5211
24 #include "ah_internal.h"
26 #include "ar5211/ar5211.h"
27 #include "ar5211/ar5211reg.h"
30 * Checks to see if an interrupt is pending on our NIC
32 * Returns: TRUE if an interrupt is pending
36 ar5211IsInterruptPending(struct ath_hal
*ah
)
38 return OS_REG_READ(ah
, AR_INTPEND
) != 0;
42 * Reads the Interrupt Status Register value from the NIC, thus deasserting
43 * the interrupt line, and returns both the masked and unmasked mapped ISR
44 * values. The value returned is mapped to abstract the hw-specific bit
45 * locations in the Interrupt Status Register.
47 * Returns: A hardware-abstracted bitmap of all non-masked-out
48 * interrupts pending, as well as an unmasked value
51 ar5211GetPendingInterrupts(struct ath_hal
*ah
, HAL_INT
*masked
)
55 isr
= OS_REG_READ(ah
, AR_ISR_RAC
);
56 if (isr
== 0xffffffff) {
61 *masked
= isr
& HAL_INT_COMMON
;
63 if (isr
& AR_ISR_HIUERR
)
64 *masked
|= HAL_INT_FATAL
;
65 if (isr
& (AR_ISR_RXOK
| AR_ISR_RXERR
))
66 *masked
|= HAL_INT_RX
;
67 if (isr
& (AR_ISR_TXOK
| AR_ISR_TXDESC
| AR_ISR_TXERR
| AR_ISR_TXEOL
))
68 *masked
|= HAL_INT_TX
;
70 * RXORN can hang the receive path so we force a hardware
72 if ((isr
& AR_ISR_RXORN
) && AH_PRIVATE(ah
)->ah_rxornIsFatal
) {
73 HALDEBUG(ah
, HAL_DEBUG_ANY
,
74 "%s: receive FIFO overrun interrupt\n", __func__
);
75 *masked
|= HAL_INT_FATAL
;
79 * On fatal errors collect ISR state for debugging.
81 if (*masked
& HAL_INT_FATAL
) {
82 AH_PRIVATE(ah
)->ah_fatalState
[0] = isr
;
83 AH_PRIVATE(ah
)->ah_fatalState
[1] = OS_REG_READ(ah
, AR_ISR_S0_S
);
84 AH_PRIVATE(ah
)->ah_fatalState
[2] = OS_REG_READ(ah
, AR_ISR_S1_S
);
85 AH_PRIVATE(ah
)->ah_fatalState
[3] = OS_REG_READ(ah
, AR_ISR_S2_S
);
86 AH_PRIVATE(ah
)->ah_fatalState
[4] = OS_REG_READ(ah
, AR_ISR_S3_S
);
87 AH_PRIVATE(ah
)->ah_fatalState
[5] = OS_REG_READ(ah
, AR_ISR_S4_S
);
88 HALDEBUG(ah
, HAL_DEBUG_ANY
,
89 "%s: fatal error, ISR_RAC=0x%x ISR_S2_S=0x%x\n",
90 __func__
, isr
, AH_PRIVATE(ah
)->ah_fatalState
[3]);
96 ar5211GetInterrupts(struct ath_hal
*ah
)
98 return AH5211(ah
)->ah_maskReg
;
102 * Atomically enables NIC interrupts. Interrupts are passed in
103 * via the enumerated bitmask in ints.
106 ar5211SetInterrupts(struct ath_hal
*ah
, HAL_INT ints
)
108 struct ath_hal_5211
*ahp
= AH5211(ah
);
109 uint32_t omask
= ahp
->ah_maskReg
;
112 HALDEBUG(ah
, HAL_DEBUG_INTERRUPT
, "%s: 0x%x => 0x%x\n",
113 __func__
, omask
, ints
);
116 * Disable interrupts here before reading & modifying
117 * the mask so that the ISR does not modify the mask
120 if (omask
& HAL_INT_GLOBAL
) {
121 HALDEBUG(ah
, HAL_DEBUG_INTERRUPT
, "%s: disable IER\n", __func__
);
122 OS_REG_WRITE(ah
, AR_IER
, AR_IER_DISABLE
);
124 (void) OS_REG_READ(ah
, AR_IER
); /* flush write to HW */
127 mask
= ints
& HAL_INT_COMMON
;
128 if (ints
& HAL_INT_TX
) {
129 if (ahp
->ah_txOkInterruptMask
)
131 if (ahp
->ah_txErrInterruptMask
)
132 mask
|= AR_IMR_TXERR
;
133 if (ahp
->ah_txDescInterruptMask
)
134 mask
|= AR_IMR_TXDESC
;
135 if (ahp
->ah_txEolInterruptMask
)
136 mask
|= AR_IMR_TXEOL
;
138 if (ints
& HAL_INT_RX
)
139 mask
|= AR_IMR_RXOK
| AR_IMR_RXERR
| AR_IMR_RXDESC
;
140 if (ints
& HAL_INT_FATAL
) {
142 * NB: ar5212Reset sets MCABT+SSERR+DPERR in AR_IMR_S2
143 * so enabling HIUERR enables delivery.
145 mask
|= AR_IMR_HIUERR
;
148 /* Write the new IMR and store off our SW copy. */
149 HALDEBUG(ah
, HAL_DEBUG_INTERRUPT
, "%s: new IMR 0x%x\n", __func__
, mask
);
150 OS_REG_WRITE(ah
, AR_IMR
, mask
);
151 ahp
->ah_maskReg
= ints
;
153 /* Re-enable interrupts as appropriate. */
154 if (ints
& HAL_INT_GLOBAL
) {
155 HALDEBUG(ah
, HAL_DEBUG_INTERRUPT
, "%s: enable IER\n", __func__
);
156 OS_REG_WRITE(ah
, AR_IER
, AR_IER_ENABLE
);
161 #endif /* AH_SUPPORT_AR5211 */