Lines Matching +full:dsp +full:- +full:based
1 /* SPDX-License-Identifier: GPL-2.0-or-later */
5 * Definitions of DSP commands
85 /* Family and code op of some DSP requests. */
121 /* DSP commands general masks */
183 * high word out of the 2 returned by the DSP
187 /* Values for setting a H-Buffer time */
202 * vx_send_pipe_cmd_params - fill first command word for pipe commands
205 * @param1: first pipe-parameter
206 * @param2: second pipe-parameter
212 rmh->Cmd[0] |= COMMAND_RECORD_MASK; in vx_set_pipe_cmd_params()
213 rmh->Cmd[0] |= (((u32)param1 & MASK_FIRST_FIELD) << FIELD_SIZE) & MASK_DSP_WORD; in vx_set_pipe_cmd_params()
216 rmh->Cmd[0] |= ((u32)param2 & MASK_FIRST_FIELD) & MASK_DSP_WORD; in vx_set_pipe_cmd_params()
221 * vx_set_stream_cmd_params - fill first command word for stream commands
224 * @pipe: the pipe index (zero-based)
229 rmh->Cmd[0] |= COMMAND_RECORD_MASK; in vx_set_stream_cmd_params()
230 rmh->Cmd[0] |= (((u32)pipe & MASK_FIRST_FIELD) << FIELD_SIZE) & MASK_DSP_WORD; in vx_set_stream_cmd_params()