]> git.openfabrics.org - ~emulex/infiniband.git/commitdiff
ath5k: enable combined michael mic in key cache
authorBob Copeland <me@bobcopeland.com>
Wed, 26 Nov 2008 21:17:25 +0000 (16:17 -0500)
committerJohn W. Linville <linville@tuxdriver.com>
Fri, 5 Dec 2008 14:32:13 +0000 (09:32 -0500)
For mac revisions >= "Griffin," the hardware allows the mic tx and rx
authenticator keys to share the same cache line, whereas earlier
hardware can only store the rx.  Enable the combined mic on hardware
that supports it.

Changes to ath5k.h
Changes-licensed-under: 3-Clause-BSD

Changes to attach.c, pcu.c, reg.h
Changes-licensed-under: ISC

Signed-off-by: Bob Copeland <me@bobcopeland.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
drivers/net/wireless/ath5k/ath5k.h
drivers/net/wireless/ath5k/attach.c
drivers/net/wireless/ath5k/pcu.c
drivers/net/wireless/ath5k/reg.h

index 5ee2dd1814c2aac753163bc522af8ff315455eb1..13df1191b070095a763cbf3abf420483e1cfae0e 100644 (file)
@@ -1052,6 +1052,7 @@ struct ath5k_hw {
        bool                    ah_calibration;
        bool                    ah_running;
        bool                    ah_single_chip;
+       bool                    ah_combined_mic;
        enum ath5k_rfgain       ah_rf_gain;
 
        u32                     ah_mac_srev;
index 49d82d79d3fc62ac6db9ff17ae9b4ff0ebadedc4..dea378f767310818a289667b7b24441beab89713 100644 (file)
@@ -317,6 +317,12 @@ struct ath5k_hw *ath5k_hw_attach(struct ath5k_softc *sc, u8 mac_version)
                goto err_free;
        }
 
+       if (srev >= AR5K_SREV_AR2414) {
+               ah->ah_combined_mic = true;
+               AR5K_REG_ENABLE_BITS(ah, AR5K_MISC_MODE,
+                       AR5K_MISC_MODE_COMBINED_MIC);
+       }
+
        /* MAC address is cleared until add_interface */
        ath5k_hw_set_lladdr(ah, mac);
 
index ad7ea36502bd57604e680920d29eee5399483c00..dabe42219e2a0b705fe27a08e5cec4aaed5365b8 100644 (file)
@@ -1096,20 +1096,20 @@ int ath5k_hw_set_key(struct ath5k_hw *ah, u16 entry,
                /* Install rx/tx MIC */
                rxmic = (__le32 *) &key->key[16];
                txmic = (__le32 *) &key->key[24];
-#if 0
-               /* MISC_MODE register & 0x04 - for mac srev >= griffin */
-               key_v[0] = rxmic[0];
-               key_v[1] = (txmic[0] >> 16) & 0xffff;
-               key_v[2] = rxmic[1];
-               key_v[3] = txmic[0] & 0xffff;
-               key_v[4] = txmic[1];
-#else
-               key_v[0] = rxmic[0];
-               key_v[1] = 0;
-               key_v[2] = rxmic[1];
-               key_v[3] = 0;
-               key_v[4] = 0;
-#endif
+
+               if (ah->ah_combined_mic) {
+                       key_v[0] = rxmic[0];
+                       key_v[1] = (txmic[0] >> 16) & 0xffff;
+                       key_v[2] = rxmic[1];
+                       key_v[3] = txmic[0] & 0xffff;
+                       key_v[4] = txmic[1];
+               } else {
+                       key_v[0] = rxmic[0];
+                       key_v[1] = 0;
+                       key_v[2] = rxmic[1];
+                       key_v[3] = 0;
+                       key_v[4] = 0;
+               }
                for (i = 0; i < ARRAY_SIZE(key_v); i++)
                        ath5k_hw_reg_write(ah, le32_to_cpu(key_v[i]),
                                AR5K_KEYTABLE_OFF(micentry, i));
index 69755fc2f9bee78ab78489bec6cd1ceb782ef914..91aaeaf881995c583747feae712254a21e667872 100644 (file)
 #define        AR5K_MISC_MODE                  0x8120                  /* Register Address */
 #define        AR5K_MISC_MODE_FBSSID_MATCH     0x00000001      /* Force BSSID match */
 #define        AR5K_MISC_MODE_ACKSIFS_MEM      0x00000002      /* ACK SIFS memory (?) */
+#define        AR5K_MISC_MODE_COMBINED_MIC     0x00000004      /* use rx/tx MIC key */
 /* more bits */
 
 /*