aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/ath/ath_hal/ar5416/ar5416_interrupts.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/dev/ath/ath_hal/ar5416/ar5416_interrupts.c')
-rw-r--r--sys/dev/ath/ath_hal/ar5416/ar5416_interrupts.c259
1 files changed, 259 insertions, 0 deletions
diff --git a/sys/dev/ath/ath_hal/ar5416/ar5416_interrupts.c b/sys/dev/ath/ath_hal/ar5416/ar5416_interrupts.c
new file mode 100644
index 000000000000..bef7522ce923
--- /dev/null
+++ b/sys/dev/ath/ath_hal/ar5416/ar5416_interrupts.c
@@ -0,0 +1,259 @@
+/*
+ * Copyright (c) 2002-2008 Sam Leffler, Errno Consulting
+ * Copyright (c) 2002-2008 Atheros Communications, Inc.
+ *
+ * Permission to use, copy, modify, and/or distribute this software for any
+ * purpose with or without fee is hereby granted, provided that the above
+ * copyright notice and this permission notice appear in all copies.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+ * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+ * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+ * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+ * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
+ * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+ *
+ * $Id: ar5416_interrupts.c,v 1.6 2008/11/10 04:08:04 sam Exp $
+ */
+#include "opt_ah.h"
+
+#include "ah.h"
+#include "ah_internal.h"
+
+#include "ar5416/ar5416.h"
+#include "ar5416/ar5416reg.h"
+
+/*
+ * Checks to see if an interrupt is pending on our NIC
+ *
+ * Returns: TRUE if an interrupt is pending
+ * FALSE if not
+ */
+HAL_BOOL
+ar5416IsInterruptPending(struct ath_hal *ah)
+{
+ uint32_t isr;
+ /*
+ * Some platforms trigger our ISR before applying power to
+ * the card, so make sure the INTPEND is really 1, not 0xffffffff.
+ */
+ isr = OS_REG_READ(ah, AR_INTR_ASYNC_CAUSE);
+ if (isr != AR_INTR_SPURIOUS && (isr & AR_INTR_MAC_IRQ) != 0)
+ return AH_TRUE;
+
+ isr = OS_REG_READ(ah, AR_INTR_SYNC_CAUSE);
+ if (isr != AR_INTR_SPURIOUS && (isr & AR_INTR_SYNC_DEFAULT))
+ return AH_TRUE;
+
+ return AH_FALSE;
+}
+
+/*
+ * Reads the Interrupt Status Register value from the NIC, thus deasserting
+ * the interrupt line, and returns both the masked and unmasked mapped ISR
+ * values. The value returned is mapped to abstract the hw-specific bit
+ * locations in the Interrupt Status Register.
+ *
+ * Returns: A hardware-abstracted bitmap of all non-masked-out
+ * interrupts pending, as well as an unmasked value
+ */
+HAL_BOOL
+ar5416GetPendingInterrupts(struct ath_hal *ah, HAL_INT *masked)
+{
+ uint32_t isr, isr0, isr1, sync_cause;
+
+ /*
+ * Verify there's a mac interrupt and the RTC is on.
+ */
+ if ((OS_REG_READ(ah, AR_INTR_ASYNC_CAUSE) & AR_INTR_MAC_IRQ) &&
+ (OS_REG_READ(ah, AR_RTC_STATUS) & AR_RTC_STATUS_M) == AR_RTC_STATUS_ON)
+ isr = OS_REG_READ(ah, AR_ISR);
+ else
+ isr = 0;
+ sync_cause = OS_REG_READ(ah, AR_INTR_SYNC_CAUSE);
+ sync_cause &= AR_INTR_SYNC_DEFAULT;
+ if (isr == 0 && sync_cause == 0) {
+ *masked = 0;
+ return AH_FALSE;
+ }
+
+ if (isr != 0) {
+ struct ath_hal_5212 *ahp = AH5212(ah);
+ uint32_t mask2;
+
+ mask2 = 0;
+ if (isr & AR_ISR_BCNMISC) {
+ uint32_t isr2 = OS_REG_READ(ah, AR_ISR_S2);
+ if (isr2 & AR_ISR_S2_TIM)
+ mask2 |= HAL_INT_TIM;
+ if (isr2 & AR_ISR_S2_DTIM)
+ mask2 |= HAL_INT_DTIM;
+ if (isr2 & AR_ISR_S2_DTIMSYNC)
+ mask2 |= HAL_INT_DTIMSYNC;
+ if (isr2 & (AR_ISR_S2_CABEND ))
+ mask2 |= HAL_INT_CABEND;
+ if (isr2 & AR_ISR_S2_GTT)
+ mask2 |= HAL_INT_GTT;
+ if (isr2 & AR_ISR_S2_CST)
+ mask2 |= HAL_INT_CST;
+ if (isr2 & AR_ISR_S2_TSFOOR)
+ mask2 |= HAL_INT_TSFOOR;
+ }
+
+ isr = OS_REG_READ(ah, AR_ISR_RAC);
+ if (isr == 0xffffffff) {
+ *masked = 0;
+ return AH_FALSE;;
+ }
+
+ *masked = isr & HAL_INT_COMMON;
+ if (isr & (AR_ISR_RXOK | AR_ISR_RXERR))
+ *masked |= HAL_INT_RX;
+ if (isr & (AR_ISR_TXOK | AR_ISR_TXDESC | AR_ISR_TXERR | AR_ISR_TXEOL)) {
+ *masked |= HAL_INT_TX;
+ isr0 = OS_REG_READ(ah, AR_ISR_S0_S);
+ ahp->ah_intrTxqs |= MS(isr0, AR_ISR_S0_QCU_TXOK);
+ ahp->ah_intrTxqs |= MS(isr0, AR_ISR_S0_QCU_TXDESC);
+ isr1 = OS_REG_READ(ah, AR_ISR_S1_S);
+ ahp->ah_intrTxqs |= MS(isr1, AR_ISR_S1_QCU_TXERR);
+ ahp->ah_intrTxqs |= MS(isr1, AR_ISR_S1_QCU_TXEOL);
+ }
+
+ /* Interrupt Mitigation on AR5416 */
+#ifdef AR5416_INT_MITIGATION
+ if (isr & (AR_ISR_RXMINTR | AR_ISR_RXINTM))
+ *masked |= HAL_INT_RX;
+ if (isr & (AR_ISR_TXMINTR | AR_ISR_TXINTM))
+ *masked |= HAL_INT_TX;
+#endif
+ *masked |= mask2;
+ }
+ if (sync_cause != 0) {
+ if (sync_cause & (AR_INTR_SYNC_HOST1_FATAL | AR_INTR_SYNC_HOST1_PERR)) {
+ *masked |= HAL_INT_FATAL;
+ }
+ if (sync_cause & AR_INTR_SYNC_RADM_CPL_TIMEOUT) {
+ HALDEBUG(ah, HAL_DEBUG_ANY, "%s: RADM CPL timeout\n",
+ __func__);
+ OS_REG_WRITE(ah, AR_RC, AR_RC_HOSTIF);
+ OS_REG_WRITE(ah, AR_RC, 0);
+ *masked |= HAL_INT_FATAL;
+ }
+ /*
+ * On fatal errors collect ISR state for debugging.
+ */
+ if (*masked & HAL_INT_FATAL) {
+ AH_PRIVATE(ah)->ah_fatalState[0] = isr;
+ AH_PRIVATE(ah)->ah_fatalState[1] = sync_cause;
+ HALDEBUG(ah, HAL_DEBUG_ANY,
+ "%s: fatal error, ISR_RAC 0x%x SYNC_CAUSE 0x%x\n",
+ __func__, isr, sync_cause);
+ }
+
+ OS_REG_WRITE(ah, AR_INTR_SYNC_CAUSE_CLR, sync_cause);
+ /* NB: flush write */
+ (void) OS_REG_READ(ah, AR_INTR_SYNC_CAUSE_CLR);
+ }
+ return AH_TRUE;
+}
+
+/*
+ * Atomically enables NIC interrupts. Interrupts are passed in
+ * via the enumerated bitmask in ints.
+ */
+HAL_INT
+ar5416SetInterrupts(struct ath_hal *ah, HAL_INT ints)
+{
+ struct ath_hal_5212 *ahp = AH5212(ah);
+ uint32_t omask = ahp->ah_maskReg;
+ uint32_t mask,mask2;
+
+ HALDEBUG(ah, HAL_DEBUG_INTERRUPT, "%s: 0x%x => 0x%x\n",
+ __func__, omask, ints);
+
+ if (omask & HAL_INT_GLOBAL) {
+ HALDEBUG(ah, HAL_DEBUG_INTERRUPT, "%s: disable IER\n", __func__);
+ OS_REG_WRITE(ah, AR_IER, AR_IER_DISABLE);
+ (void) OS_REG_READ(ah, AR_IER);
+
+ OS_REG_WRITE(ah, AR_INTR_ASYNC_ENABLE, 0);
+ (void) OS_REG_READ(ah, AR_INTR_ASYNC_ENABLE);
+
+ OS_REG_WRITE(ah, AR_INTR_SYNC_ENABLE, 0);
+ (void) OS_REG_READ(ah, AR_INTR_SYNC_ENABLE);
+ }
+
+ mask = ints & HAL_INT_COMMON;
+ mask2 = 0;
+
+ if (ints & HAL_INT_TX) {
+ if (ahp->ah_txOkInterruptMask)
+ mask |= AR_IMR_TXOK;
+ if (ahp->ah_txErrInterruptMask)
+ mask |= AR_IMR_TXERR;
+ if (ahp->ah_txDescInterruptMask)
+ mask |= AR_IMR_TXDESC;
+ if (ahp->ah_txEolInterruptMask)
+ mask |= AR_IMR_TXEOL;
+ }
+ if (ints & HAL_INT_RX)
+ mask |= AR_IMR_RXOK | AR_IMR_RXERR | AR_IMR_RXDESC;
+#ifdef AR5416_INT_MITIGATION
+ /*
+ * Overwrite default mask if Interrupt mitigation
+ * is specified for AR5416
+ */
+ mask = ints & HAL_INT_COMMON;
+ if (ints & HAL_INT_TX)
+ mask |= AR_IMR_TXMINTR | AR_IMR_TXINTM;
+ if (ints & HAL_INT_RX)
+ mask |= AR_IMR_RXERR | AR_IMR_RXMINTR | AR_IMR_RXINTM;
+#endif
+ if (ints & (HAL_INT_BMISC)) {
+ mask |= AR_IMR_BCNMISC;
+ if (ints & HAL_INT_TIM)
+ mask2 |= AR_IMR_S2_TIM;
+ if (ints & HAL_INT_DTIM)
+ mask2 |= AR_IMR_S2_DTIM;
+ if (ints & HAL_INT_DTIMSYNC)
+ mask2 |= AR_IMR_S2_DTIMSYNC;
+ if (ints & HAL_INT_CABEND)
+ mask2 |= (AR_IMR_S2_CABEND );
+ if (ints & HAL_INT_GTT)
+ mask2 |= AR_IMR_S2_GTT;
+ if (ints & HAL_INT_CST)
+ mask2 |= AR_IMR_S2_CST;
+ if (ints & HAL_INT_TSFOOR)
+ mask2 |= AR_IMR_S2_TSFOOR;
+ }
+
+ /* Write the new IMR and store off our SW copy. */
+ HALDEBUG(ah, HAL_DEBUG_INTERRUPT, "%s: new IMR 0x%x\n", __func__, mask);
+ OS_REG_WRITE(ah, AR_IMR, mask);
+ mask = OS_REG_READ(ah, AR_IMR_S2) & ~(AR_IMR_S2_TIM |
+ AR_IMR_S2_DTIM |
+ AR_IMR_S2_DTIMSYNC |
+ AR_IMR_S2_CABEND |
+ AR_IMR_S2_CABTO |
+ AR_IMR_S2_TSFOOR |
+ AR_IMR_S2_GTT |
+ AR_IMR_S2_CST);
+ OS_REG_WRITE(ah, AR_IMR_S2, mask | mask2);
+
+ ahp->ah_maskReg = ints;
+
+ /* Re-enable interrupts if they were enabled before. */
+ if (ints & HAL_INT_GLOBAL) {
+ HALDEBUG(ah, HAL_DEBUG_INTERRUPT, "%s: enable IER\n", __func__);
+ OS_REG_WRITE(ah, AR_IER, AR_IER_ENABLE);
+
+ OS_REG_WRITE(ah, AR_INTR_ASYNC_ENABLE, AR_INTR_MAC_IRQ);
+ OS_REG_WRITE(ah, AR_INTR_ASYNC_MASK, AR_INTR_MAC_IRQ);
+
+ OS_REG_WRITE(ah, AR_INTR_SYNC_ENABLE, AR_INTR_SYNC_DEFAULT);
+ OS_REG_WRITE(ah, AR_INTR_SYNC_MASK, AR_INTR_SYNC_DEFAULT);
+ }
+
+ return omask;
+}