Lines Matching refs:slots
720 static int MIi_DoLockWramSlots( MIWramPos wram, u32 slots );
721 static int MIi_DoUnlockWramSlots( MIWramPos wram, u32 slots );
1945 int MI_LockWramSlots( MIWramPos wram, u32 slots ) in MI_LockWramSlots() argument
1951 result = MIi_DoLockWramSlots( wram, slots ); in MI_LockWramSlots()
1958 static int MIi_DoLockWramSlots( MIWramPos wram, u32 slots ) in MIi_DoLockWramSlots() argument
1970 u32 data = MIi_MakeData( MIi_PXI_COMMAND_LOCKWRAM, wram, (MIWramProc)0, slots ); in MIi_DoLockWramSlots()
1980 reg_MI_MBK_A_LOCK |= slots; in MIi_DoLockWramSlots()
1983 reg_MI_MBK_B_LOCK |= slots; in MIi_DoLockWramSlots()
1986 reg_MI_MBK_C_LOCK |= slots; in MIi_DoLockWramSlots()
2008 int MI_UnlockWramSlots( MIWramPos wram, u32 slots ) in MI_UnlockWramSlots() argument
2014 result = MIi_DoUnlockWramSlots( wram, slots ); in MI_UnlockWramSlots()
2021 static int MIi_DoUnlockWramSlots( MIWramPos wram, u32 slots ) in MIi_DoUnlockWramSlots() argument
2033 u32 data = MIi_MakeData( MIi_PXI_COMMAND_UNLOCKWRAM, wram, (MIWramProc)0, slots ); in MIi_DoUnlockWramSlots()
2043 reg_MI_MBK_A_LOCK &= ~slots; in MIi_DoUnlockWramSlots()
2046 reg_MI_MBK_B_LOCK &= ~slots; in MIi_DoUnlockWramSlots()
2049 reg_MI_MBK_C_LOCK &= ~slots; in MIi_DoUnlockWramSlots()