HomeSort by: relevance | last modified time | path
    Searched defs:micentry (Results 1 - 2 of 2) sorted by relevancy

  /src/sys/external/isc/atheros_hal/dist/ar5212/
ar5212_keycache.c 87 uint16_t micentry = entry+64; /* MIC goes at slot+64 */ local in function:ar5212ResetKeyCacheEntry
89 HALASSERT(micentry < AH_PRIVATE(ah)->ah_caps.halKeyCacheSize);
90 OS_REG_WRITE(ah, AR_KEYTABLE_KEY0(micentry), 0);
91 OS_REG_WRITE(ah, AR_KEYTABLE_KEY1(micentry), 0);
92 OS_REG_WRITE(ah, AR_KEYTABLE_KEY2(micentry), 0);
93 OS_REG_WRITE(ah, AR_KEYTABLE_KEY3(micentry), 0);
213 uint16_t micentry = entry+64; /* MIC goes at slot+64 */ local in function:ar5212SetKeyCacheEntry
260 OS_REG_WRITE(ah, AR_KEYTABLE_KEY0(micentry), mic0);
261 OS_REG_WRITE(ah, AR_KEYTABLE_KEY1(micentry), mic1);
262 OS_REG_WRITE(ah, AR_KEYTABLE_KEY2(micentry), mic2)
    [all...]
  /src/sys/dev/ic/
athn.c 1058 uintptr_t entry, micentry; local in function:athn_set_key
1099 micentry = entry + 64;
1100 AR_WRITE(sc, AR_KEYTABLE_KEY0(micentry), LE_READ_4(&rxmic[0]));
1101 AR_WRITE(sc, AR_KEYTABLE_KEY1(micentry), LE_READ_2(&txmic[2]));
1103 AR_WRITE(sc, AR_KEYTABLE_KEY2(micentry), LE_READ_4(&rxmic[4]));
1104 AR_WRITE(sc, AR_KEYTABLE_KEY3(micentry), LE_READ_2(&txmic[0]));
1106 AR_WRITE(sc, AR_KEYTABLE_KEY4(micentry), LE_READ_4(&txmic[4]));
1107 AR_WRITE(sc, AR_KEYTABLE_TYPE(micentry), AR_KEYTABLE_TYPE_CLR);

Completed in 23 milliseconds