Home
last modified time | relevance | path

Searched refs:dsp_ops (Results 1 – 6 of 6) sorted by relevance

/linux/sound/soc/sof/
H A Dipc3-priv.h39 const struct snd_sof_dsp_ops *dsp_ops = sdev->pdata->desc->ops; in sof_dtrace_host_init() local
41 if (dsp_ops->trace_init) in sof_dtrace_host_init()
42 return dsp_ops->trace_init(sdev, dmatb, dtrace_params); in sof_dtrace_host_init()
49 const struct snd_sof_dsp_ops *dsp_ops = sdev->pdata->desc->ops; in sof_dtrace_host_release() local
51 if (dsp_ops->trace_release) in sof_dtrace_host_release()
52 return dsp_ops->trace_release(sdev); in sof_dtrace_host_release()
59 const struct snd_sof_dsp_ops *dsp_ops = sdev->pdata->desc->ops; in sof_dtrace_host_trigger() local
61 if (dsp_ops->trace_trigger) in sof_dtrace_host_trigger()
62 return dsp_ops->trace_trigger(sdev, cmd); in sof_dtrace_host_trigger()
/linux/sound/soc/sof/intel/
H A Dmtl.c702 int sof_mtl_set_ops(struct snd_sof_dev *sdev, struct snd_sof_dsp_ops *dsp_ops) in sof_mtl_set_ops() argument
707 memcpy(dsp_ops, &sof_hda_common_ops, sizeof(struct snd_sof_dsp_ops)); in sof_mtl_set_ops()
710 dsp_ops->shutdown = hda_dsp_shutdown; in sof_mtl_set_ops()
713 dsp_ops->irq_thread = mtl_ipc_irq_thread; in sof_mtl_set_ops()
716 dsp_ops->send_msg = mtl_ipc_send_msg; in sof_mtl_set_ops()
717 dsp_ops->get_mailbox_offset = mtl_dsp_ipc_get_mailbox_offset; in sof_mtl_set_ops()
718 dsp_ops->get_window_offset = mtl_dsp_ipc_get_window_offset; in sof_mtl_set_ops()
721 dsp_ops->debug_map = mtl_dsp_debugfs; in sof_mtl_set_ops()
722 dsp_ops->debug_map_count = ARRAY_SIZE(mtl_dsp_debugfs); in sof_mtl_set_ops()
723 dsp_ops->dbg_dump = mtl_dsp_dump; in sof_mtl_set_ops()
[all …]
H A Dptl.c88 int sof_ptl_set_ops(struct snd_sof_dev *sdev, struct snd_sof_dsp_ops *dsp_ops) in sof_ptl_set_ops() argument
93 ret = sof_lnl_set_ops(sdev, dsp_ops); in sof_ptl_set_ops()
/linux/sound/soc/sof/mediatek/mt8195/
H A Dmt8195.c39 static const struct mtk_adsp_ipc_ops dsp_ops = { variable
269 priv->dsp_ipc->ops = &dsp_ops; in mt8195_dsp_probe()
/linux/sound/soc/sof/mediatek/mt8186/
H A Dmt8186.c39 static const struct mtk_adsp_ipc_ops dsp_ops = { variable
278 priv->dsp_ipc->ops = &dsp_ops; in mt8186_dsp_probe()
/linux/sound/soc/intel/avs/
H A Dloader.c665 if (adev->spec->dsp_ops->config_basefw) { in avs_config_basefw()