Lines Matching refs:u32Address
368 MS_U32 HAL_MVD_MemRead4Byte(MS_U32 u32Address) in HAL_MVD_MemRead4Byte() argument
371 MS_ASSERT(!(u32Address & 0x03UL)); in HAL_MVD_MemRead4Byte()
378 u32Address += MIU1_BASEADDR; in HAL_MVD_MemRead4Byte()
380 u32Val = *(volatile MS_U32*) HAL_MVD_PA2NonCacheSeg(u32Address); in HAL_MVD_MemRead4Byte()
385 MS_U16 HAL_MVD_MemRead2Byte(MS_U32 u32Address) in HAL_MVD_MemRead2Byte() argument
391 u32ReadAddr = (u32Address >> 2) << 2; in HAL_MVD_MemRead2Byte()
392 u8Shift = (MS_U8)((u32Address & 0x03) * 8); in HAL_MVD_MemRead2Byte()
404 MS_U8 HAL_MVD_MemReadByte(MS_U32 u32Address) in HAL_MVD_MemReadByte() argument
410 u32ReadAddr = (u32Address >> 2) << 2; in HAL_MVD_MemReadByte()
411 u8Shift = (MS_U8)((u32Address & 0x03) * 8); in HAL_MVD_MemReadByte()
418 MS_BOOL HAL_MVD_MemWrite4Byte(MS_U32 u32Address, MS_U32 u32Value) in HAL_MVD_MemWrite4Byte() argument
422 u32Address += MIU1_BASEADDR; in HAL_MVD_MemWrite4Byte()
424 *(volatile MS_U32 *) HAL_MVD_PA2NonCacheSeg(u32Address) = u32Value; in HAL_MVD_MemWrite4Byte()
433 MS_BOOL HAL_MVD_MemWriteByte(MS_U32 u32Address, MS_U8 u8Value) in HAL_MVD_MemWriteByte() argument
439 u32ReadAddr = (u32Address >> 2) << 2; in HAL_MVD_MemWriteByte()
440 u8Shift = (MS_U8)((u32Address & 0x03UL) * 8); in HAL_MVD_MemWriteByte()
448 MS_BOOL HAL_MVD_MemWrite2Byte(MS_U32 u32Address, MS_U16 u16Value) in HAL_MVD_MemWrite2Byte() argument
454 u8Shift = (MS_U8)((u32Address & 0x03UL) * 8) ; in HAL_MVD_MemWrite2Byte()
457 u32ReadAddr = (u32Address >> 2) << 2; in HAL_MVD_MemWrite2Byte()
465 HAL_MVD_MemWriteByte(u32Address, (MS_U8)(u16Value)); in HAL_MVD_MemWrite2Byte()
466 HAL_MVD_MemWriteByte(u32Address+1, (MS_U8)(u16Value >> 8)); in HAL_MVD_MemWrite2Byte()