|
@@ -1310,6 +1310,16 @@ static void ath9k_hw_override_ini(struct ath_hw *ah,
|
|
|
* Necessary to avoid issues on AR5416 2.0
|
|
|
*/
|
|
|
REG_WRITE(ah, 0x9800 + (651 << 2), 0x11);
|
|
|
+
|
|
|
+ /*
|
|
|
+ * Disable RIFS search on some chips to avoid baseband
|
|
|
+ * hang issues.
|
|
|
+ */
|
|
|
+ if (AR_SREV_9100(ah) || AR_SREV_9160(ah)) {
|
|
|
+ val = REG_READ(ah, AR_PHY_HEAVY_CLIP_FACTOR_RIFS);
|
|
|
+ val &= ~AR_PHY_RIFS_INIT_DELAY;
|
|
|
+ REG_WRITE(ah, AR_PHY_HEAVY_CLIP_FACTOR_RIFS, val);
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
static u32 ath9k_hw_def_ini_fixup(struct ath_hw *ah,
|