summaryrefslogtreecommitdiffstats
path: root/package
diff options
context:
space:
mode:
authornbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2011-03-15 01:36:45 +0000
committernbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2011-03-15 01:36:45 +0000
commit90ed8e260fb39d81f70803aca56da027c83876b2 (patch)
tree94bd1ba4bc909e9bc53886510069b2c2e62cb5a7 /package
parent898495ff4119ba55eafec7cde97d4d6def209a71 (diff)
ath9k: enable an ar913x specific hardware fix for sending block-ack
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26167 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package')
-rw-r--r--package/mac80211/patches/540-ath9k_ar9100_blockack_fix.patch21
1 files changed, 21 insertions, 0 deletions
diff --git a/package/mac80211/patches/540-ath9k_ar9100_blockack_fix.patch b/package/mac80211/patches/540-ath9k_ar9100_blockack_fix.patch
new file mode 100644
index 000000000..2a09f7fc3
--- /dev/null
+++ b/package/mac80211/patches/540-ath9k_ar9100_blockack_fix.patch
@@ -0,0 +1,21 @@
+--- a/drivers/net/wireless/ath/ath9k/hw.c
++++ b/drivers/net/wireless/ath/ath9k/hw.c
+@@ -411,6 +411,8 @@ static void ath9k_hw_init_defaults(struc
+ ah->sta_id1_defaults =
+ AR_STA_ID1_CRPT_MIC_ENABLE |
+ AR_STA_ID1_MCAST_KSRCH;
++ if (AR_SREV_9100(ah))
++ ah->sta_id1_defaults |= AR_STA_ID1_AR9100_BA_FIX;
+ ah->enable_32kHz_clock = DONT_USE_32KHZ;
+ ah->slottime = 20;
+ ah->globaltxtimeout = (u32) -1;
+--- a/drivers/net/wireless/ath/ath9k/reg.h
++++ b/drivers/net/wireless/ath/ath9k/reg.h
+@@ -1396,6 +1396,7 @@ enum {
+ #define AR_STA_ID1_PCF 0x00100000
+ #define AR_STA_ID1_USE_DEFANT 0x00200000
+ #define AR_STA_ID1_DEFANT_UPDATE 0x00400000
++#define AR_STA_ID1_AR9100_BA_FIX 0x00400000
+ #define AR_STA_ID1_RTS_USE_DEF 0x00800000
+ #define AR_STA_ID1_ACKCTS_6MB 0x01000000
+ #define AR_STA_ID1_BASE_RATE_11B 0x02000000