Skip to content

Commit ff9bd2d

Browse files
ecsvlinvjw
authored andcommitted
ath9k_hw: Handle AR_INTR_SYNC_HOST1_(FATAL|PERR) on AR9003
Interrupts with the sync_cause AR_INTR_SYNC_HOST1_FATAL and AR_INTR_SYNC_HOST1_PERR have to be handled using a chip reset. Otherwise a interrupt storm with unhandled interrupts will cause a hang or crash of the machine. Signed-off-by: Sven Eckelmann <sven@narfation.org> Signed-off-by: Simon Wunderlich <siwu@hrz.tu-chemnitz.de> Signed-off-by: John W. Linville <linville@tuxdriver.com>
1 parent 6c8c4f7 commit ff9bd2d

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

drivers/net/wireless/ath/ath9k/ar9003_mac.c

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -182,6 +182,7 @@ static bool ar9003_hw_get_isr(struct ath_hw *ah, enum ath9k_int *masked)
182182
struct ath9k_hw_capabilities *pCap = &ah->caps;
183183
struct ath_common *common = ath9k_hw_common(ah);
184184
u32 sync_cause = 0, async_cause, async_mask = AR_INTR_MAC_IRQ;
185+
bool fatal_int;
185186

186187
if (ath9k_hw_mci_is_enabled(ah))
187188
async_mask |= AR_INTR_ASYNC_MASK_MCI;
@@ -310,6 +311,22 @@ static bool ar9003_hw_get_isr(struct ath_hw *ah, enum ath9k_int *masked)
310311

311312
if (sync_cause) {
312313
ath9k_debug_sync_cause(common, sync_cause);
314+
fatal_int =
315+
(sync_cause &
316+
(AR_INTR_SYNC_HOST1_FATAL | AR_INTR_SYNC_HOST1_PERR))
317+
? true : false;
318+
319+
if (fatal_int) {
320+
if (sync_cause & AR_INTR_SYNC_HOST1_FATAL) {
321+
ath_dbg(common, ANY,
322+
"received PCI FATAL interrupt\n");
323+
}
324+
if (sync_cause & AR_INTR_SYNC_HOST1_PERR) {
325+
ath_dbg(common, ANY,
326+
"received PCI PERR interrupt\n");
327+
}
328+
*masked |= ATH9K_INT_FATAL;
329+
}
313330

314331
if (sync_cause & AR_INTR_SYNC_RADM_CPL_TIMEOUT) {
315332
REG_WRITE(ah, AR_RC, AR_RC_HOSTIF);

0 commit comments

Comments
 (0)