Searched refs:macHi (Results 1 - 4 of 4) sorted by relevance

/freebsd-11-stable/sys/dev/ath/ath_hal/ar5210/
H A Dar5210_keycache.c79 uint32_t macHi, macLo; local
87 macHi = (mac[5] << 8) | mac[4];
91 macLo |= (macHi & 1) << 31; /* carry */
92 macHi >>= 1;
94 macLo = macHi = 0;
99 macHi | AR_KEYTABLE_VALID);
/freebsd-11-stable/sys/dev/ath/ath_hal/ar5211/
H A Dar5211_keycache.c83 uint32_t macHi, macLo; local
96 macHi = (mac[5] << 8) | mac[4];
100 macLo |= (macHi & 1) << 31; /* carry */
101 macHi >>= 1;
103 macLo = macHi = 0;
107 OS_REG_WRITE(ah, AR_KEYTABLE_MAC1(entry), macHi | AR_KEYTABLE_VALID);
/freebsd-11-stable/sys/dev/ath/ath_hal/ar5212/
H A Dar5212_keycache.c112 uint32_t macHi, macLo; local
135 macHi = (mac[5] << 8) | mac[4];
139 macLo |= (macHi & 1) << 31; /* carry */
140 macHi >>= 1;
142 macLo = macHi = 0;
145 OS_REG_WRITE(ah, AR_KEYTABLE_MAC1(entry), macHi | unicast_flag);
/freebsd-11-stable/tools/tools/ath/athregs/
H A Ddumpregs.c686 u_int32_t macLo, macHi, type; local
689 macHi = OS_REG_READ(ah, AR_KEYTABLE_MAC1(entry));
690 if ((macHi & AR_KEYTABLE_VALID) == 0 && isclr(ismic, entry))
693 macHi <<= 1;
695 macHi |= 1;
697 mac[4] = macHi & 0xff;
698 mac[5] = macHi >> 8;

Completed in 196 milliseconds