Lines Matching defs:timeout
318 static int avs_ipc_wait_busy_completion(struct avs_ipc *ipc, int timeout)
324 ret = wait_for_completion_timeout(&ipc->busy_completion, msecs_to_jiffies(timeout));
392 struct avs_ipc_msg *reply, int timeout, const char *name)
407 ret = avs_ipc_wait_busy_completion(ipc, timeout);
445 struct avs_ipc_msg *reply, int timeout, bool wake_d0i0,
457 ret = avs_dsp_do_send_msg(adev, request, reply, timeout, name);
469 struct avs_ipc_msg *reply, int timeout, const char *name)
474 return avs_dsp_send_msg_sequence(adev, request, reply, timeout, wake_d0i0, schedule_d0ix,
485 struct avs_ipc_msg *reply, int timeout, bool wake_d0i0,
488 return avs_dsp_send_msg_sequence(adev, request, reply, timeout, wake_d0i0, false, name);
498 static int avs_dsp_do_send_rom_msg(struct avs_dev *adev, struct avs_ipc_msg *request, int timeout,
518 ret = wait_for_completion_timeout(&ipc->done_completion, msecs_to_jiffies(timeout));
530 int avs_dsp_send_rom_msg_timeout(struct avs_dev *adev, struct avs_ipc_msg *request, int timeout,
533 return avs_dsp_do_send_rom_msg(adev, request, timeout, name);