Searched refs:BitPos (Results 1 – 6 of 6) sorted by relevance
| /bsp/nuvoton/libraries/ma35/rtt_port/gmac/ |
| A D | synopGMAC_plat.c | 44 void synopGMACSetBits(u32 RegBase, u32 RegOffset, u32 BitPos) in synopGMACSetBits() argument 46 u32 data = synopGMACReadReg(RegBase, RegOffset) | BitPos; in synopGMACSetBits() 57 void synopGMACClearBits(u32 RegBase, u32 RegOffset, u32 BitPos) in synopGMACClearBits() argument 59 u32 data = synopGMACReadReg(RegBase, RegOffset) & (~BitPos); in synopGMACClearBits() 70 bool synopGMACCheckBits(u32 RegBase, u32 RegOffset, u32 BitPos) in synopGMACCheckBits() argument 72 u32 data = synopGMACReadReg(RegBase, RegOffset) & BitPos; in synopGMACCheckBits()
|
| A D | synopGMAC_plat.h | 39 void synopGMACSetBits(u32 RegBase, u32 RegOffset, u32 BitPos); 40 void synopGMACClearBits(u32 RegBase, u32 RegOffset, u32 BitPos); 41 bool synopGMACCheckBits(u32 RegBase, u32 RegOffset, u32 BitPos);
|
| /bsp/nuvoton/libraries/m460/rtt_port/emac/ |
| A D | synopGMAC_plat.c | 48 void synopGMACSetBits(u32 RegBase, u32 RegOffset, u32 BitPos) in synopGMACSetBits() argument 50 u32 data = synopGMACReadReg(RegBase, RegOffset) | BitPos; in synopGMACSetBits() 61 void synopGMACClearBits(u32 RegBase, u32 RegOffset, u32 BitPos) in synopGMACClearBits() argument 63 u32 data = synopGMACReadReg(RegBase, RegOffset) & (~BitPos); in synopGMACClearBits() 74 bool synopGMACCheckBits(u32 RegBase, u32 RegOffset, u32 BitPos) in synopGMACCheckBits() argument 76 u32 data = synopGMACReadReg(RegBase, RegOffset) & BitPos; in synopGMACCheckBits()
|
| A D | synopGMAC_plat.h | 38 void synopGMACSetBits(u32 RegBase, u32 RegOffset, u32 BitPos); 39 void synopGMACClearBits(u32 RegBase, u32 RegOffset, u32 BitPos); 40 bool synopGMACCheckBits(u32 RegBase, u32 RegOffset, u32 BitPos);
|
| /bsp/loongson/ls1cdev/drivers/net/ |
| A D | synopGMAC_plat.h | 192 static void synopGMACSetBits(u32 RegBase, u32 RegOffset, u32 BitPos) in synopGMACSetBits() argument 197 data |= BitPos; in synopGMACSetBits() 215 static void synopGMACClearBits(u32 RegBase, u32 RegOffset, u32 BitPos) in synopGMACClearBits() argument 219 data &= (~BitPos); in synopGMACClearBits() 236 static bool synopGMACCheckBits(u32 RegBase, u32 RegOffset, u32 BitPos) in synopGMACCheckBits() argument 241 data &= BitPos; in synopGMACCheckBits()
|
| /bsp/loongson/ls2kdev/drivers/net/ |
| A D | synopGMAC_plat.h | 182 static void synopGMACSetBits(u64 RegBase, u32 RegOffset, u32 BitPos) in synopGMACSetBits() argument 187 data |= BitPos; in synopGMACSetBits() 205 static void synopGMACClearBits(u64 RegBase, u32 RegOffset, u32 BitPos) in synopGMACClearBits() argument 209 data &= (~BitPos); in synopGMACClearBits() 226 static bool synopGMACCheckBits(u64 RegBase, u32 RegOffset, u32 BitPos) in synopGMACCheckBits() argument 230 data &= BitPos; in synopGMACCheckBits()
|
Completed in 10 milliseconds