Lines Matching refs:tmpAddr
304 u32 *tmpAddr; in WmGetCommandBuffer4Arm7() local
306 if (FALSE == OS_ReceiveMessage(&bufMsgQ, (OSMessage *)&tmpAddr, OS_MESSAGE_NOBLOCK)) in WmGetCommandBuffer4Arm7()
312 DC_InvalidateRange(tmpAddr, 2); in WmGetCommandBuffer4Arm7()
313 if ((*((u16 *)tmpAddr) & WM_API_REQUEST_ACCEPTED) == 0) in WmGetCommandBuffer4Arm7()
316 (void)OS_JamMessage(&bufMsgQ, tmpAddr, OS_MESSAGE_BLOCK); in WmGetCommandBuffer4Arm7()
321 return tmpAddr; in WmGetCommandBuffer4Arm7()
342 u32 *tmpAddr; in WMi_SendCommand() local
347 tmpAddr = WmGetCommandBuffer4Arm7(); in WMi_SendCommand()
348 if (tmpAddr == NULL) in WMi_SendCommand()
354 *(u16 *)tmpAddr = (u16)id; in WMi_SendCommand()
360 tmpAddr[i + 1] = va_arg(vlist, u32); in WMi_SendCommand()
364 DC_StoreRange(tmpAddr, WM_FIFO_BUF_SIZE); in WMi_SendCommand()
367 result = PXI_SendWordByFifo(PXI_FIFO_TAG_WM, (u32)tmpAddr, FALSE); in WMi_SendCommand()
369 (void)OS_SendMessage(&bufMsgQ, tmpAddr, OS_MESSAGE_BLOCK); in WMi_SendCommand()
394 u32 *tmpAddr; in WMi_SendCommandDirect() local
400 tmpAddr = WmGetCommandBuffer4Arm7(); in WMi_SendCommandDirect()
401 if (tmpAddr == NULL) in WMi_SendCommandDirect()
407 MI_CpuCopy8(data, tmpAddr, length); in WMi_SendCommandDirect()
409 DC_StoreRange(tmpAddr, length); in WMi_SendCommandDirect()
412 result = PXI_SendWordByFifo(PXI_FIFO_TAG_WM, (u32)tmpAddr, FALSE); in WMi_SendCommandDirect()
414 (void)OS_SendMessage(&bufMsgQ, tmpAddr, OS_MESSAGE_BLOCK); in WMi_SendCommandDirect()