Lines Matching refs:timeout

388 static int avs_ipc_wait_busy_completion(struct avs_ipc *ipc, int timeout)  in avs_ipc_wait_busy_completion()  argument
394 ret = wait_for_completion_timeout(&ipc->busy_completion, msecs_to_jiffies(timeout)); in avs_ipc_wait_busy_completion()
458 struct avs_ipc_msg *reply, int timeout) in avs_dsp_do_send_msg() argument
473 ret = avs_ipc_wait_busy_completion(ipc, timeout); in avs_dsp_do_send_msg()
498 struct avs_ipc_msg *reply, int timeout, bool wake_d0i0, in avs_dsp_send_msg_sequence() argument
510 ret = avs_dsp_do_send_msg(adev, request, reply, timeout); in avs_dsp_send_msg_sequence()
522 struct avs_ipc_msg *reply, int timeout) in avs_dsp_send_msg_timeout() argument
527 return avs_dsp_send_msg_sequence(adev, request, reply, timeout, wake_d0i0, schedule_d0ix); in avs_dsp_send_msg_timeout()
537 struct avs_ipc_msg *reply, int timeout, bool wake_d0i0) in avs_dsp_send_pm_msg_timeout() argument
539 return avs_dsp_send_msg_sequence(adev, request, reply, timeout, wake_d0i0, false); in avs_dsp_send_pm_msg_timeout()
549 static int avs_dsp_do_send_rom_msg(struct avs_dev *adev, struct avs_ipc_msg *request, int timeout) in avs_dsp_do_send_rom_msg() argument
568 ret = wait_for_completion_timeout(&ipc->done_completion, msecs_to_jiffies(timeout)); in avs_dsp_do_send_rom_msg()
577 int avs_dsp_send_rom_msg_timeout(struct avs_dev *adev, struct avs_ipc_msg *request, int timeout) in avs_dsp_send_rom_msg_timeout() argument
579 return avs_dsp_do_send_rom_msg(adev, request, timeout); in avs_dsp_send_rom_msg_timeout()