Lines Matching refs:hdr
106 stream.hdr.size = sizeof(stream); in sof_pcm_dsp_pcm_free()
107 stream.hdr.cmd = SOF_IPC_GLB_STREAM_MSG | SOF_IPC_STREAM_PCM_FREE; in sof_pcm_dsp_pcm_free()
111 ret = sof_ipc_tx_message(sdev->ipc, stream.hdr.cmd, &stream, in sof_pcm_dsp_pcm_free()
166 pcm.hdr.size = sizeof(pcm); in sof_pcm_hw_params()
167 pcm.hdr.cmd = SOF_IPC_GLB_STREAM_MSG | SOF_IPC_STREAM_PCM_PARAMS; in sof_pcm_hw_params()
169 pcm.params.hdr.size = sizeof(pcm.params); in sof_pcm_hw_params()
217 ret = sof_ipc_tx_message(sdev->ipc, pcm.hdr.cmd, &pcm, sizeof(pcm), in sof_pcm_hw_params()
333 stream.hdr.size = sizeof(stream); in sof_pcm_trigger()
334 stream.hdr.cmd = SOF_IPC_GLB_STREAM_MSG; in sof_pcm_trigger()
339 stream.hdr.cmd |= SOF_IPC_STREAM_TRIG_PAUSE; in sof_pcm_trigger()
343 stream.hdr.cmd |= SOF_IPC_STREAM_TRIG_RELEASE; in sof_pcm_trigger()
375 stream.hdr.cmd |= SOF_IPC_STREAM_TRIG_START; in sof_pcm_trigger()
391 stream.hdr.cmd |= SOF_IPC_STREAM_TRIG_STOP; in sof_pcm_trigger()
409 ret = sof_ipc_tx_message(sdev->ipc, stream.hdr.cmd, &stream, in sof_pcm_trigger()