summaryrefslogtreecommitdiff
path: root/drivers/net/wireless/ath/ath.h
diff options
context:
space:
mode:
authorLuis R. Rodriguez <lrodriguez@atheros.com>2009-11-04 17:21:01 -0800
committerJohn W. Linville <linville@tuxdriver.com>2009-11-11 17:09:09 -0500
commit7e86c1048a9f5f1e157daf28411f3526f0b9f7b6 (patch)
tree35ad3decc5ac70d0cda31a003d1c0719b9e61281 /drivers/net/wireless/ath/ath.h
parent1e875e9f16e3138d0e23cbf806a6d9520b622db2 (diff)
downloadlinux-3.10-7e86c1048a9f5f1e157daf28411f3526f0b9f7b6.tar.gz
linux-3.10-7e86c1048a9f5f1e157daf28411f3526f0b9f7b6.tar.bz2
linux-3.10-7e86c1048a9f5f1e157daf28411f3526f0b9f7b6.zip
ath9k: move driver keymap, keymax and splitmic to common
This will make sharing code easier between ath9k and ath9k_htc. Signed-off-by: Luis R. Rodriguez <lrodriguez@atheros.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/ath/ath.h')
-rw-r--r--drivers/net/wireless/ath/ath.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/drivers/net/wireless/ath/ath.h b/drivers/net/wireless/ath/ath.h
index 4af13628baf..9e05648356f 100644
--- a/drivers/net/wireless/ath/ath.h
+++ b/drivers/net/wireless/ath/ath.h
@@ -21,6 +21,16 @@
#include <linux/if_ether.h>
#include <net/mac80211.h>
+/*
+ * The key cache is used for h/w cipher state and also for
+ * tracking station state such as the current tx antenna.
+ * We also setup a mapping table between key cache slot indices
+ * and station state to short-circuit node lookups on rx.
+ * Different parts have different size key caches. We handle
+ * up to ATH_KEYMAX entries (could dynamically allocate state).
+ */
+#define ATH_KEYMAX 128 /* max key cache size we handle */
+
static const u8 ath_bcast_mac[ETH_ALEN] = {0xff, 0xff, 0xff, 0xff, 0xff, 0xff};
struct ath_ani {
@@ -89,6 +99,10 @@ struct ath_common {
u32 rx_bufsize;
+ u32 keymax;
+ DECLARE_BITMAP(keymap, ATH_KEYMAX);
+ u8 splitmic;
+
struct ath_regulatory regulatory;
const struct ath_ops *ops;
const struct ath_bus_ops *bus_ops;