xref: /openbmc/linux/sound/soc/sof/pcm.c (revision 0a1b08345bc5d9214dc701f8ec5d67c473fab735)
1868bd00fSLiam Girdwood // SPDX-License-Identifier: (GPL-2.0 OR BSD-3-Clause)
2868bd00fSLiam Girdwood //
3868bd00fSLiam Girdwood // This file is provided under a dual BSD/GPLv2 license.  When using or
4868bd00fSLiam Girdwood // redistributing this file, you may do so under either license.
5868bd00fSLiam Girdwood //
6868bd00fSLiam Girdwood // Copyright(c) 2018 Intel Corporation. All rights reserved.
7868bd00fSLiam Girdwood //
8868bd00fSLiam Girdwood // Author: Liam Girdwood <liam.r.girdwood@linux.intel.com>
9868bd00fSLiam Girdwood //
10868bd00fSLiam Girdwood // PCM Layer, interface between ALSA and IPC.
11868bd00fSLiam Girdwood //
12868bd00fSLiam Girdwood 
13868bd00fSLiam Girdwood #include <linux/pm_runtime.h>
14868bd00fSLiam Girdwood #include <sound/pcm_params.h>
15868bd00fSLiam Girdwood #include <sound/sof.h>
16868bd00fSLiam Girdwood #include "sof-priv.h"
17868bd00fSLiam Girdwood #include "ops.h"
18868bd00fSLiam Girdwood 
19868bd00fSLiam Girdwood #define DRV_NAME	"sof-audio-component"
20868bd00fSLiam Girdwood 
21868bd00fSLiam Girdwood /* Create DMA buffer page table for DSP */
22868bd00fSLiam Girdwood static int create_page_table(struct snd_pcm_substream *substream,
23868bd00fSLiam Girdwood 			     unsigned char *dma_area, size_t size)
24868bd00fSLiam Girdwood {
25868bd00fSLiam Girdwood 	struct snd_soc_pcm_runtime *rtd = substream->private_data;
26868bd00fSLiam Girdwood 	struct snd_soc_component *component =
27868bd00fSLiam Girdwood 		snd_soc_rtdcom_lookup(rtd, DRV_NAME);
28868bd00fSLiam Girdwood 	struct snd_sof_dev *sdev = snd_soc_component_get_drvdata(component);
29868bd00fSLiam Girdwood 	struct snd_sof_pcm *spcm;
30868bd00fSLiam Girdwood 	struct snd_dma_buffer *dmab = snd_pcm_get_dma_buf(substream);
31868bd00fSLiam Girdwood 	int stream = substream->stream;
32868bd00fSLiam Girdwood 
33868bd00fSLiam Girdwood 	spcm = snd_sof_find_spcm_dai(sdev, rtd);
34868bd00fSLiam Girdwood 	if (!spcm)
35868bd00fSLiam Girdwood 		return -EINVAL;
36868bd00fSLiam Girdwood 
37868bd00fSLiam Girdwood 	return snd_sof_create_page_table(sdev, dmab,
38868bd00fSLiam Girdwood 		spcm->stream[stream].page_table.area, size);
39868bd00fSLiam Girdwood }
40868bd00fSLiam Girdwood 
41868bd00fSLiam Girdwood static int sof_pcm_dsp_params(struct snd_sof_pcm *spcm, struct snd_pcm_substream *substream,
42868bd00fSLiam Girdwood 			      const struct sof_ipc_pcm_params_reply *reply)
43868bd00fSLiam Girdwood {
44868bd00fSLiam Girdwood 	struct snd_sof_dev *sdev = spcm->sdev;
45868bd00fSLiam Girdwood 	/* validate offset */
46868bd00fSLiam Girdwood 	int ret = snd_sof_ipc_pcm_params(sdev, substream, reply);
47868bd00fSLiam Girdwood 
48868bd00fSLiam Girdwood 	if (ret < 0)
49868bd00fSLiam Girdwood 		dev_err(sdev->dev, "error: got wrong reply for PCM %d\n",
50868bd00fSLiam Girdwood 			spcm->pcm.pcm_id);
51868bd00fSLiam Girdwood 
52868bd00fSLiam Girdwood 	return ret;
53868bd00fSLiam Girdwood }
54868bd00fSLiam Girdwood 
55e2803e61SKeyon Jie /*
56e2803e61SKeyon Jie  * sof pcm period elapse work
57e2803e61SKeyon Jie  */
58e2803e61SKeyon Jie static void sof_pcm_period_elapsed_work(struct work_struct *work)
59e2803e61SKeyon Jie {
60e2803e61SKeyon Jie 	struct snd_sof_pcm_stream *sps =
61e2803e61SKeyon Jie 		container_of(work, struct snd_sof_pcm_stream,
62e2803e61SKeyon Jie 			     period_elapsed_work);
63e2803e61SKeyon Jie 
64e2803e61SKeyon Jie 	snd_pcm_period_elapsed(sps->substream);
65e2803e61SKeyon Jie }
66e2803e61SKeyon Jie 
67e2803e61SKeyon Jie /*
68e2803e61SKeyon Jie  * sof pcm period elapse, this could be called at irq thread context.
69e2803e61SKeyon Jie  */
70e2803e61SKeyon Jie void snd_sof_pcm_period_elapsed(struct snd_pcm_substream *substream)
71e2803e61SKeyon Jie {
72e2803e61SKeyon Jie 	struct snd_soc_pcm_runtime *rtd = substream->private_data;
73e2803e61SKeyon Jie 	struct snd_soc_component *component =
74e2803e61SKeyon Jie 		snd_soc_rtdcom_lookup(rtd, DRV_NAME);
75e2803e61SKeyon Jie 	struct snd_sof_dev *sdev = snd_soc_component_get_drvdata(component);
76e2803e61SKeyon Jie 	struct snd_sof_pcm *spcm;
77e2803e61SKeyon Jie 
78e2803e61SKeyon Jie 	spcm = snd_sof_find_spcm_dai(sdev, rtd);
79e2803e61SKeyon Jie 	if (!spcm) {
80e2803e61SKeyon Jie 		dev_err(sdev->dev,
81e2803e61SKeyon Jie 			"error: period elapsed for unknown stream!\n");
82e2803e61SKeyon Jie 		return;
83e2803e61SKeyon Jie 	}
84e2803e61SKeyon Jie 
85e2803e61SKeyon Jie 	/*
86e2803e61SKeyon Jie 	 * snd_pcm_period_elapsed() can be called in interrupt context
87e2803e61SKeyon Jie 	 * before IRQ_HANDLED is returned. Inside snd_pcm_period_elapsed(),
88e2803e61SKeyon Jie 	 * when the PCM is done draining or xrun happened, a STOP IPC will
89e2803e61SKeyon Jie 	 * then be sent and this IPC will hit IPC timeout.
90e2803e61SKeyon Jie 	 * To avoid sending IPC before the previous IPC is handled, we
91e2803e61SKeyon Jie 	 * schedule delayed work here to call the snd_pcm_period_elapsed().
92e2803e61SKeyon Jie 	 */
93e2803e61SKeyon Jie 	schedule_work(&spcm->stream[substream->stream].period_elapsed_work);
94e2803e61SKeyon Jie }
95e2803e61SKeyon Jie EXPORT_SYMBOL(snd_sof_pcm_period_elapsed);
96e2803e61SKeyon Jie 
97868bd00fSLiam Girdwood /* this may get called several times by oss emulation */
98868bd00fSLiam Girdwood static int sof_pcm_hw_params(struct snd_pcm_substream *substream,
99868bd00fSLiam Girdwood 			     struct snd_pcm_hw_params *params)
100868bd00fSLiam Girdwood {
101868bd00fSLiam Girdwood 	struct snd_soc_pcm_runtime *rtd = substream->private_data;
102868bd00fSLiam Girdwood 	struct snd_pcm_runtime *runtime = substream->runtime;
103868bd00fSLiam Girdwood 	struct snd_soc_component *component =
104868bd00fSLiam Girdwood 		snd_soc_rtdcom_lookup(rtd, DRV_NAME);
105868bd00fSLiam Girdwood 	struct snd_sof_dev *sdev = snd_soc_component_get_drvdata(component);
106868bd00fSLiam Girdwood 	struct snd_sof_pcm *spcm;
107868bd00fSLiam Girdwood 	struct sof_ipc_pcm_params pcm;
108868bd00fSLiam Girdwood 	struct sof_ipc_pcm_params_reply ipc_params_reply;
109868bd00fSLiam Girdwood 	int ret;
110868bd00fSLiam Girdwood 
111868bd00fSLiam Girdwood 	/* nothing to do for BE */
112868bd00fSLiam Girdwood 	if (rtd->dai_link->no_pcm)
113868bd00fSLiam Girdwood 		return 0;
114868bd00fSLiam Girdwood 
115868bd00fSLiam Girdwood 	spcm = snd_sof_find_spcm_dai(sdev, rtd);
116868bd00fSLiam Girdwood 	if (!spcm)
117868bd00fSLiam Girdwood 		return -EINVAL;
118868bd00fSLiam Girdwood 
119868bd00fSLiam Girdwood 	dev_dbg(sdev->dev, "pcm: hw params stream %d dir %d\n",
120868bd00fSLiam Girdwood 		spcm->pcm.pcm_id, substream->stream);
121868bd00fSLiam Girdwood 
122868bd00fSLiam Girdwood 	memset(&pcm, 0, sizeof(pcm));
123868bd00fSLiam Girdwood 
124868bd00fSLiam Girdwood 	/* allocate audio buffer pages */
125868bd00fSLiam Girdwood 	ret = snd_pcm_lib_malloc_pages(substream, params_buffer_bytes(params));
126868bd00fSLiam Girdwood 	if (ret < 0) {
127868bd00fSLiam Girdwood 		dev_err(sdev->dev, "error: could not allocate %d bytes for PCM %d\n",
128868bd00fSLiam Girdwood 			params_buffer_bytes(params), spcm->pcm.pcm_id);
129868bd00fSLiam Girdwood 		return ret;
130868bd00fSLiam Girdwood 	}
131868bd00fSLiam Girdwood 	if (ret) {
132868bd00fSLiam Girdwood 		/*
133868bd00fSLiam Girdwood 		 * ret == 1 means the buffer is changed
134868bd00fSLiam Girdwood 		 * create compressed page table for audio firmware
135868bd00fSLiam Girdwood 		 * ret == 0 means the buffer is not changed
136868bd00fSLiam Girdwood 		 * so no need to regenerate the page table
137868bd00fSLiam Girdwood 		 */
138868bd00fSLiam Girdwood 		ret = create_page_table(substream, runtime->dma_area,
139868bd00fSLiam Girdwood 					runtime->dma_bytes);
140868bd00fSLiam Girdwood 		if (ret < 0)
141868bd00fSLiam Girdwood 			return ret;
142868bd00fSLiam Girdwood 	}
143868bd00fSLiam Girdwood 
144868bd00fSLiam Girdwood 	/* number of pages should be rounded up */
145868bd00fSLiam Girdwood 	pcm.params.buffer.pages = PFN_UP(runtime->dma_bytes);
146868bd00fSLiam Girdwood 
147868bd00fSLiam Girdwood 	/* set IPC PCM parameters */
148868bd00fSLiam Girdwood 	pcm.hdr.size = sizeof(pcm);
149868bd00fSLiam Girdwood 	pcm.hdr.cmd = SOF_IPC_GLB_STREAM_MSG | SOF_IPC_STREAM_PCM_PARAMS;
150868bd00fSLiam Girdwood 	pcm.comp_id = spcm->stream[substream->stream].comp_id;
151868bd00fSLiam Girdwood 	pcm.params.hdr.size = sizeof(pcm.params);
152868bd00fSLiam Girdwood 	pcm.params.buffer.phy_addr =
153868bd00fSLiam Girdwood 		spcm->stream[substream->stream].page_table.addr;
154868bd00fSLiam Girdwood 	pcm.params.buffer.size = runtime->dma_bytes;
155868bd00fSLiam Girdwood 	pcm.params.direction = substream->stream;
156868bd00fSLiam Girdwood 	pcm.params.sample_valid_bytes = params_width(params) >> 3;
157868bd00fSLiam Girdwood 	pcm.params.buffer_fmt = SOF_IPC_BUFFER_INTERLEAVED;
158868bd00fSLiam Girdwood 	pcm.params.rate = params_rate(params);
159868bd00fSLiam Girdwood 	pcm.params.channels = params_channels(params);
160868bd00fSLiam Girdwood 	pcm.params.host_period_bytes = params_period_bytes(params);
161868bd00fSLiam Girdwood 
162868bd00fSLiam Girdwood 	/* container size */
163868bd00fSLiam Girdwood 	ret = snd_pcm_format_physical_width(params_format(params));
164868bd00fSLiam Girdwood 	if (ret < 0)
165868bd00fSLiam Girdwood 		return ret;
166868bd00fSLiam Girdwood 	pcm.params.sample_container_bytes = ret >> 3;
167868bd00fSLiam Girdwood 
168868bd00fSLiam Girdwood 	/* format */
169868bd00fSLiam Girdwood 	switch (params_format(params)) {
170868bd00fSLiam Girdwood 	case SNDRV_PCM_FORMAT_S16:
171868bd00fSLiam Girdwood 		pcm.params.frame_fmt = SOF_IPC_FRAME_S16_LE;
172868bd00fSLiam Girdwood 		break;
173868bd00fSLiam Girdwood 	case SNDRV_PCM_FORMAT_S24:
174868bd00fSLiam Girdwood 		pcm.params.frame_fmt = SOF_IPC_FRAME_S24_4LE;
175868bd00fSLiam Girdwood 		break;
176868bd00fSLiam Girdwood 	case SNDRV_PCM_FORMAT_S32:
177868bd00fSLiam Girdwood 		pcm.params.frame_fmt = SOF_IPC_FRAME_S32_LE;
178868bd00fSLiam Girdwood 		break;
179868bd00fSLiam Girdwood 	case SNDRV_PCM_FORMAT_FLOAT:
180868bd00fSLiam Girdwood 		pcm.params.frame_fmt = SOF_IPC_FRAME_FLOAT;
181868bd00fSLiam Girdwood 		break;
182868bd00fSLiam Girdwood 	default:
183868bd00fSLiam Girdwood 		return -EINVAL;
184868bd00fSLiam Girdwood 	}
185868bd00fSLiam Girdwood 
186868bd00fSLiam Girdwood 	/* firmware already configured host stream */
187868bd00fSLiam Girdwood 	ret = snd_sof_pcm_platform_hw_params(sdev,
188868bd00fSLiam Girdwood 					     substream,
189868bd00fSLiam Girdwood 					     params,
190868bd00fSLiam Girdwood 					     &pcm.params);
191868bd00fSLiam Girdwood 	if (ret < 0) {
192868bd00fSLiam Girdwood 		dev_err(sdev->dev, "error: platform hw params failed\n");
193868bd00fSLiam Girdwood 		return ret;
194868bd00fSLiam Girdwood 	}
195868bd00fSLiam Girdwood 
196868bd00fSLiam Girdwood 	dev_dbg(sdev->dev, "stream_tag %d", pcm.params.stream_tag);
197868bd00fSLiam Girdwood 
198868bd00fSLiam Girdwood 	/* send IPC to the DSP */
199868bd00fSLiam Girdwood 	ret = sof_ipc_tx_message(sdev->ipc, pcm.hdr.cmd, &pcm, sizeof(pcm),
200868bd00fSLiam Girdwood 				 &ipc_params_reply, sizeof(ipc_params_reply));
201868bd00fSLiam Girdwood 	if (ret < 0) {
202868bd00fSLiam Girdwood 		dev_err(sdev->dev, "error: hw params ipc failed for stream %d\n",
203868bd00fSLiam Girdwood 			pcm.params.stream_tag);
204868bd00fSLiam Girdwood 		return ret;
205868bd00fSLiam Girdwood 	}
206868bd00fSLiam Girdwood 
207868bd00fSLiam Girdwood 	ret = sof_pcm_dsp_params(spcm, substream, &ipc_params_reply);
208868bd00fSLiam Girdwood 	if (ret < 0)
209868bd00fSLiam Girdwood 		return ret;
210868bd00fSLiam Girdwood 
21104c80277SKai Vehmanen 	spcm->prepared[substream->stream] = true;
21204c80277SKai Vehmanen 
213868bd00fSLiam Girdwood 	/* save pcm hw_params */
214868bd00fSLiam Girdwood 	memcpy(&spcm->params[substream->stream], params, sizeof(*params));
215868bd00fSLiam Girdwood 
216868bd00fSLiam Girdwood 	return ret;
217868bd00fSLiam Girdwood }
218868bd00fSLiam Girdwood 
219a49b6871SKai Vehmanen static int sof_pcm_dsp_pcm_free(struct snd_pcm_substream *substream,
220a49b6871SKai Vehmanen 				struct snd_sof_dev *sdev,
221a49b6871SKai Vehmanen 				struct snd_sof_pcm *spcm)
222a49b6871SKai Vehmanen {
223a49b6871SKai Vehmanen 	struct sof_ipc_stream stream;
224a49b6871SKai Vehmanen 	struct sof_ipc_reply reply;
225a49b6871SKai Vehmanen 	int ret;
226a49b6871SKai Vehmanen 
227a49b6871SKai Vehmanen 	stream.hdr.size = sizeof(stream);
228a49b6871SKai Vehmanen 	stream.hdr.cmd = SOF_IPC_GLB_STREAM_MSG | SOF_IPC_STREAM_PCM_FREE;
229a49b6871SKai Vehmanen 	stream.comp_id = spcm->stream[substream->stream].comp_id;
230a49b6871SKai Vehmanen 
231a49b6871SKai Vehmanen 	/* send IPC to the DSP */
232a49b6871SKai Vehmanen 	ret = sof_ipc_tx_message(sdev->ipc, stream.hdr.cmd, &stream,
233a49b6871SKai Vehmanen 				 sizeof(stream), &reply, sizeof(reply));
234a49b6871SKai Vehmanen 	if (!ret)
235a49b6871SKai Vehmanen 		spcm->prepared[substream->stream] = false;
236a49b6871SKai Vehmanen 
237a49b6871SKai Vehmanen 	return ret;
238a49b6871SKai Vehmanen }
239a49b6871SKai Vehmanen 
240868bd00fSLiam Girdwood static int sof_pcm_hw_free(struct snd_pcm_substream *substream)
241868bd00fSLiam Girdwood {
242868bd00fSLiam Girdwood 	struct snd_soc_pcm_runtime *rtd = substream->private_data;
243868bd00fSLiam Girdwood 	struct snd_soc_component *component =
244868bd00fSLiam Girdwood 		snd_soc_rtdcom_lookup(rtd, DRV_NAME);
245868bd00fSLiam Girdwood 	struct snd_sof_dev *sdev = snd_soc_component_get_drvdata(component);
246868bd00fSLiam Girdwood 	struct snd_sof_pcm *spcm;
247e66e52c5SKai Vehmanen 	int ret, err = 0;
248868bd00fSLiam Girdwood 
249868bd00fSLiam Girdwood 	/* nothing to do for BE */
250868bd00fSLiam Girdwood 	if (rtd->dai_link->no_pcm)
251868bd00fSLiam Girdwood 		return 0;
252868bd00fSLiam Girdwood 
253868bd00fSLiam Girdwood 	spcm = snd_sof_find_spcm_dai(sdev, rtd);
254868bd00fSLiam Girdwood 	if (!spcm)
255868bd00fSLiam Girdwood 		return -EINVAL;
256868bd00fSLiam Girdwood 
257868bd00fSLiam Girdwood 	dev_dbg(sdev->dev, "pcm: free stream %d dir %d\n", spcm->pcm.pcm_id,
258868bd00fSLiam Girdwood 		substream->stream);
259868bd00fSLiam Girdwood 
260e66e52c5SKai Vehmanen 	if (spcm->prepared[substream->stream]) {
261a49b6871SKai Vehmanen 		ret = sof_pcm_dsp_pcm_free(substream, sdev, spcm);
262e66e52c5SKai Vehmanen 		if (ret < 0)
263e66e52c5SKai Vehmanen 			err = ret;
264e66e52c5SKai Vehmanen 	}
265868bd00fSLiam Girdwood 
266868bd00fSLiam Girdwood 	snd_pcm_lib_free_pages(substream);
267e2803e61SKeyon Jie 
268e2803e61SKeyon Jie 	cancel_work_sync(&spcm->stream[substream->stream].period_elapsed_work);
269e2803e61SKeyon Jie 
27093146bc2SRanjani Sridharan 	ret = snd_sof_pcm_platform_hw_free(sdev, substream);
271e66e52c5SKai Vehmanen 	if (ret < 0) {
27293146bc2SRanjani Sridharan 		dev_err(sdev->dev, "error: platform hw free failed\n");
273e66e52c5SKai Vehmanen 		err = ret;
274e66e52c5SKai Vehmanen 	}
27593146bc2SRanjani Sridharan 
276e66e52c5SKai Vehmanen 	return err;
277868bd00fSLiam Girdwood }
278868bd00fSLiam Girdwood 
279868bd00fSLiam Girdwood static int sof_pcm_prepare(struct snd_pcm_substream *substream)
280868bd00fSLiam Girdwood {
281868bd00fSLiam Girdwood 	struct snd_soc_pcm_runtime *rtd = substream->private_data;
282868bd00fSLiam Girdwood 	struct snd_soc_component *component =
283868bd00fSLiam Girdwood 		snd_soc_rtdcom_lookup(rtd, DRV_NAME);
284868bd00fSLiam Girdwood 	struct snd_sof_dev *sdev = snd_soc_component_get_drvdata(component);
285868bd00fSLiam Girdwood 	struct snd_sof_pcm *spcm;
286868bd00fSLiam Girdwood 	int ret;
287868bd00fSLiam Girdwood 
288868bd00fSLiam Girdwood 	/* nothing to do for BE */
289868bd00fSLiam Girdwood 	if (rtd->dai_link->no_pcm)
290868bd00fSLiam Girdwood 		return 0;
291868bd00fSLiam Girdwood 
292868bd00fSLiam Girdwood 	spcm = snd_sof_find_spcm_dai(sdev, rtd);
293868bd00fSLiam Girdwood 	if (!spcm)
294868bd00fSLiam Girdwood 		return -EINVAL;
295868bd00fSLiam Girdwood 
29604c80277SKai Vehmanen 	if (spcm->prepared[substream->stream])
297868bd00fSLiam Girdwood 		return 0;
298868bd00fSLiam Girdwood 
299868bd00fSLiam Girdwood 	dev_dbg(sdev->dev, "pcm: prepare stream %d dir %d\n", spcm->pcm.pcm_id,
300868bd00fSLiam Girdwood 		substream->stream);
301868bd00fSLiam Girdwood 
302868bd00fSLiam Girdwood 	/* set hw_params */
303868bd00fSLiam Girdwood 	ret = sof_pcm_hw_params(substream, &spcm->params[substream->stream]);
304868bd00fSLiam Girdwood 	if (ret < 0) {
305868bd00fSLiam Girdwood 		dev_err(sdev->dev, "error: set pcm hw_params after resume\n");
306868bd00fSLiam Girdwood 		return ret;
307868bd00fSLiam Girdwood 	}
308868bd00fSLiam Girdwood 
309868bd00fSLiam Girdwood 	return 0;
310868bd00fSLiam Girdwood }
311868bd00fSLiam Girdwood 
312868bd00fSLiam Girdwood /*
313868bd00fSLiam Girdwood  * FE dai link trigger actions are always executed in non-atomic context because
314868bd00fSLiam Girdwood  * they involve IPC's.
315868bd00fSLiam Girdwood  */
316868bd00fSLiam Girdwood static int sof_pcm_trigger(struct snd_pcm_substream *substream, int cmd)
317868bd00fSLiam Girdwood {
318868bd00fSLiam Girdwood 	struct snd_soc_pcm_runtime *rtd = substream->private_data;
319868bd00fSLiam Girdwood 	struct snd_soc_component *component =
320868bd00fSLiam Girdwood 		snd_soc_rtdcom_lookup(rtd, DRV_NAME);
321868bd00fSLiam Girdwood 	struct snd_sof_dev *sdev = snd_soc_component_get_drvdata(component);
322868bd00fSLiam Girdwood 	struct snd_sof_pcm *spcm;
323868bd00fSLiam Girdwood 	struct sof_ipc_stream stream;
324868bd00fSLiam Girdwood 	struct sof_ipc_reply reply;
32504c80277SKai Vehmanen 	bool reset_hw_params = false;
326*0a1b0834SPan Xiuli 	bool ipc_first = false;
327868bd00fSLiam Girdwood 	int ret;
328868bd00fSLiam Girdwood 
329868bd00fSLiam Girdwood 	/* nothing to do for BE */
330868bd00fSLiam Girdwood 	if (rtd->dai_link->no_pcm)
331868bd00fSLiam Girdwood 		return 0;
332868bd00fSLiam Girdwood 
333868bd00fSLiam Girdwood 	spcm = snd_sof_find_spcm_dai(sdev, rtd);
334868bd00fSLiam Girdwood 	if (!spcm)
335868bd00fSLiam Girdwood 		return -EINVAL;
336868bd00fSLiam Girdwood 
337868bd00fSLiam Girdwood 	dev_dbg(sdev->dev, "pcm: trigger stream %d dir %d cmd %d\n",
338868bd00fSLiam Girdwood 		spcm->pcm.pcm_id, substream->stream, cmd);
339868bd00fSLiam Girdwood 
340868bd00fSLiam Girdwood 	stream.hdr.size = sizeof(stream);
341868bd00fSLiam Girdwood 	stream.hdr.cmd = SOF_IPC_GLB_STREAM_MSG;
342868bd00fSLiam Girdwood 	stream.comp_id = spcm->stream[substream->stream].comp_id;
343868bd00fSLiam Girdwood 
344868bd00fSLiam Girdwood 	switch (cmd) {
345868bd00fSLiam Girdwood 	case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
346868bd00fSLiam Girdwood 		stream.hdr.cmd |= SOF_IPC_STREAM_TRIG_PAUSE;
347*0a1b0834SPan Xiuli 		ipc_first = true;
348868bd00fSLiam Girdwood 		break;
349868bd00fSLiam Girdwood 	case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
350868bd00fSLiam Girdwood 		stream.hdr.cmd |= SOF_IPC_STREAM_TRIG_RELEASE;
351868bd00fSLiam Girdwood 		break;
352868bd00fSLiam Girdwood 	case SNDRV_PCM_TRIGGER_RESUME:
353868bd00fSLiam Girdwood 		/* set up hw_params */
354868bd00fSLiam Girdwood 		ret = sof_pcm_prepare(substream);
355868bd00fSLiam Girdwood 		if (ret < 0) {
356868bd00fSLiam Girdwood 			dev_err(sdev->dev,
357868bd00fSLiam Girdwood 				"error: failed to set up hw_params upon resume\n");
358868bd00fSLiam Girdwood 			return ret;
359868bd00fSLiam Girdwood 		}
360868bd00fSLiam Girdwood 
361868bd00fSLiam Girdwood 		/* fallthrough */
362868bd00fSLiam Girdwood 	case SNDRV_PCM_TRIGGER_START:
363868bd00fSLiam Girdwood 		stream.hdr.cmd |= SOF_IPC_STREAM_TRIG_START;
364868bd00fSLiam Girdwood 		break;
365868bd00fSLiam Girdwood 	case SNDRV_PCM_TRIGGER_SUSPEND:
366868bd00fSLiam Girdwood 	case SNDRV_PCM_TRIGGER_STOP:
367868bd00fSLiam Girdwood 		stream.hdr.cmd |= SOF_IPC_STREAM_TRIG_STOP;
368*0a1b0834SPan Xiuli 		ipc_first = true;
36904c80277SKai Vehmanen 		reset_hw_params = true;
370868bd00fSLiam Girdwood 		break;
371868bd00fSLiam Girdwood 	default:
372868bd00fSLiam Girdwood 		dev_err(sdev->dev, "error: unhandled trigger cmd %d\n", cmd);
373868bd00fSLiam Girdwood 		return -EINVAL;
374868bd00fSLiam Girdwood 	}
375868bd00fSLiam Girdwood 
376*0a1b0834SPan Xiuli 	/*
377*0a1b0834SPan Xiuli 	 * DMA and IPC sequence is different for start and stop. Need to send
378*0a1b0834SPan Xiuli 	 * STOP IPC before stop DMA
379*0a1b0834SPan Xiuli 	 */
380*0a1b0834SPan Xiuli 	if (!ipc_first)
381868bd00fSLiam Girdwood 		snd_sof_pcm_platform_trigger(sdev, substream, cmd);
382868bd00fSLiam Girdwood 
383868bd00fSLiam Girdwood 	/* send IPC to the DSP */
384868bd00fSLiam Girdwood 	ret = sof_ipc_tx_message(sdev->ipc, stream.hdr.cmd, &stream,
385868bd00fSLiam Girdwood 				 sizeof(stream), &reply, sizeof(reply));
386868bd00fSLiam Girdwood 
387*0a1b0834SPan Xiuli 	/* need to STOP DMA even if STOP IPC failed */
388*0a1b0834SPan Xiuli 	if (ipc_first)
389*0a1b0834SPan Xiuli 		snd_sof_pcm_platform_trigger(sdev, substream, cmd);
390*0a1b0834SPan Xiuli 
391*0a1b0834SPan Xiuli 	/* free PCM if reset_hw_params is set and the STOP IPC is successful */
392a49b6871SKai Vehmanen 	if (!ret && reset_hw_params)
393a49b6871SKai Vehmanen 		ret = sof_pcm_dsp_pcm_free(substream, sdev, spcm);
394a49b6871SKai Vehmanen 
395868bd00fSLiam Girdwood 	return ret;
396868bd00fSLiam Girdwood }
397868bd00fSLiam Girdwood 
398868bd00fSLiam Girdwood static snd_pcm_uframes_t sof_pcm_pointer(struct snd_pcm_substream *substream)
399868bd00fSLiam Girdwood {
400868bd00fSLiam Girdwood 	struct snd_soc_pcm_runtime *rtd = substream->private_data;
401868bd00fSLiam Girdwood 	struct snd_soc_component *component =
402868bd00fSLiam Girdwood 		snd_soc_rtdcom_lookup(rtd, DRV_NAME);
403868bd00fSLiam Girdwood 	struct snd_sof_dev *sdev = snd_soc_component_get_drvdata(component);
404868bd00fSLiam Girdwood 	struct snd_sof_pcm *spcm;
405868bd00fSLiam Girdwood 	snd_pcm_uframes_t host, dai;
406868bd00fSLiam Girdwood 
407868bd00fSLiam Girdwood 	/* nothing to do for BE */
408868bd00fSLiam Girdwood 	if (rtd->dai_link->no_pcm)
409868bd00fSLiam Girdwood 		return 0;
410868bd00fSLiam Girdwood 
411868bd00fSLiam Girdwood 	/* use dsp ops pointer callback directly if set */
412868bd00fSLiam Girdwood 	if (sof_ops(sdev)->pcm_pointer)
413868bd00fSLiam Girdwood 		return sof_ops(sdev)->pcm_pointer(sdev, substream);
414868bd00fSLiam Girdwood 
415868bd00fSLiam Girdwood 	spcm = snd_sof_find_spcm_dai(sdev, rtd);
416868bd00fSLiam Girdwood 	if (!spcm)
417868bd00fSLiam Girdwood 		return -EINVAL;
418868bd00fSLiam Girdwood 
419868bd00fSLiam Girdwood 	/* read position from DSP */
420868bd00fSLiam Girdwood 	host = bytes_to_frames(substream->runtime,
421868bd00fSLiam Girdwood 			       spcm->stream[substream->stream].posn.host_posn);
422868bd00fSLiam Girdwood 	dai = bytes_to_frames(substream->runtime,
423868bd00fSLiam Girdwood 			      spcm->stream[substream->stream].posn.dai_posn);
424868bd00fSLiam Girdwood 
425868bd00fSLiam Girdwood 	dev_dbg(sdev->dev, "PCM: stream %d dir %d DMA position %lu DAI position %lu\n",
426868bd00fSLiam Girdwood 		spcm->pcm.pcm_id, substream->stream, host, dai);
427868bd00fSLiam Girdwood 
428868bd00fSLiam Girdwood 	return host;
429868bd00fSLiam Girdwood }
430868bd00fSLiam Girdwood 
431868bd00fSLiam Girdwood static int sof_pcm_open(struct snd_pcm_substream *substream)
432868bd00fSLiam Girdwood {
433868bd00fSLiam Girdwood 	struct snd_soc_pcm_runtime *rtd = substream->private_data;
434868bd00fSLiam Girdwood 	struct snd_pcm_runtime *runtime = substream->runtime;
435868bd00fSLiam Girdwood 	struct snd_soc_component *component =
436868bd00fSLiam Girdwood 		snd_soc_rtdcom_lookup(rtd, DRV_NAME);
437868bd00fSLiam Girdwood 	struct snd_sof_dev *sdev = snd_soc_component_get_drvdata(component);
438868bd00fSLiam Girdwood 	struct snd_sof_pcm *spcm;
439868bd00fSLiam Girdwood 	struct snd_soc_tplg_stream_caps *caps;
440868bd00fSLiam Girdwood 	int ret;
441868bd00fSLiam Girdwood 
442868bd00fSLiam Girdwood 	/* nothing to do for BE */
443868bd00fSLiam Girdwood 	if (rtd->dai_link->no_pcm)
444868bd00fSLiam Girdwood 		return 0;
445868bd00fSLiam Girdwood 
446868bd00fSLiam Girdwood 	spcm = snd_sof_find_spcm_dai(sdev, rtd);
447868bd00fSLiam Girdwood 	if (!spcm)
448868bd00fSLiam Girdwood 		return -EINVAL;
449868bd00fSLiam Girdwood 
450868bd00fSLiam Girdwood 	dev_dbg(sdev->dev, "pcm: open stream %d dir %d\n", spcm->pcm.pcm_id,
451868bd00fSLiam Girdwood 		substream->stream);
452868bd00fSLiam Girdwood 
453fab4edf4SPierre-Louis Bossart 	INIT_WORK(&spcm->stream[substream->stream].period_elapsed_work,
454fab4edf4SPierre-Louis Bossart 		  sof_pcm_period_elapsed_work);
455868bd00fSLiam Girdwood 
456868bd00fSLiam Girdwood 	caps = &spcm->pcm.caps[substream->stream];
457868bd00fSLiam Girdwood 
458868bd00fSLiam Girdwood 	/* set any runtime constraints based on topology */
459868bd00fSLiam Girdwood 	snd_pcm_hw_constraint_step(substream->runtime, 0,
460868bd00fSLiam Girdwood 				   SNDRV_PCM_HW_PARAM_BUFFER_BYTES,
461868bd00fSLiam Girdwood 				   le32_to_cpu(caps->period_size_min));
462868bd00fSLiam Girdwood 	snd_pcm_hw_constraint_step(substream->runtime, 0,
463868bd00fSLiam Girdwood 				   SNDRV_PCM_HW_PARAM_PERIOD_BYTES,
464868bd00fSLiam Girdwood 				   le32_to_cpu(caps->period_size_min));
465868bd00fSLiam Girdwood 
466868bd00fSLiam Girdwood 	/* set runtime config */
467868bd00fSLiam Girdwood 	runtime->hw.info = SNDRV_PCM_INFO_MMAP |
468868bd00fSLiam Girdwood 			  SNDRV_PCM_INFO_MMAP_VALID |
469868bd00fSLiam Girdwood 			  SNDRV_PCM_INFO_INTERLEAVED |
470868bd00fSLiam Girdwood 			  SNDRV_PCM_INFO_PAUSE |
471868bd00fSLiam Girdwood 			  SNDRV_PCM_INFO_NO_PERIOD_WAKEUP;
472868bd00fSLiam Girdwood 	runtime->hw.formats = le64_to_cpu(caps->formats);
473868bd00fSLiam Girdwood 	runtime->hw.period_bytes_min = le32_to_cpu(caps->period_size_min);
474868bd00fSLiam Girdwood 	runtime->hw.period_bytes_max = le32_to_cpu(caps->period_size_max);
475868bd00fSLiam Girdwood 	runtime->hw.periods_min = le32_to_cpu(caps->periods_min);
476868bd00fSLiam Girdwood 	runtime->hw.periods_max = le32_to_cpu(caps->periods_max);
477868bd00fSLiam Girdwood 
478868bd00fSLiam Girdwood 	/*
479868bd00fSLiam Girdwood 	 * caps->buffer_size_min is not used since the
480868bd00fSLiam Girdwood 	 * snd_pcm_hardware structure only defines buffer_bytes_max
481868bd00fSLiam Girdwood 	 */
482868bd00fSLiam Girdwood 	runtime->hw.buffer_bytes_max = le32_to_cpu(caps->buffer_size_max);
483868bd00fSLiam Girdwood 
484868bd00fSLiam Girdwood 	dev_dbg(sdev->dev, "period min %zd max %zd bytes\n",
485868bd00fSLiam Girdwood 		runtime->hw.period_bytes_min,
486868bd00fSLiam Girdwood 		runtime->hw.period_bytes_max);
487868bd00fSLiam Girdwood 	dev_dbg(sdev->dev, "period count %d max %d\n",
488868bd00fSLiam Girdwood 		runtime->hw.periods_min,
489868bd00fSLiam Girdwood 		runtime->hw.periods_max);
490868bd00fSLiam Girdwood 	dev_dbg(sdev->dev, "buffer max %zd bytes\n",
491868bd00fSLiam Girdwood 		runtime->hw.buffer_bytes_max);
492868bd00fSLiam Girdwood 
493868bd00fSLiam Girdwood 	/* set wait time - TODO: come from topology */
494868bd00fSLiam Girdwood 	substream->wait_time = 500;
495868bd00fSLiam Girdwood 
496868bd00fSLiam Girdwood 	spcm->stream[substream->stream].posn.host_posn = 0;
497868bd00fSLiam Girdwood 	spcm->stream[substream->stream].posn.dai_posn = 0;
498868bd00fSLiam Girdwood 	spcm->stream[substream->stream].substream = substream;
49904c80277SKai Vehmanen 	spcm->prepared[substream->stream] = false;
500868bd00fSLiam Girdwood 
501868bd00fSLiam Girdwood 	ret = snd_sof_pcm_platform_open(sdev, substream);
50214a2212dSRanjani Sridharan 	if (ret < 0)
50314a2212dSRanjani Sridharan 		dev_err(sdev->dev, "error: pcm open failed %d\n", ret);
504868bd00fSLiam Girdwood 
505868bd00fSLiam Girdwood 	return ret;
506868bd00fSLiam Girdwood }
507868bd00fSLiam Girdwood 
508868bd00fSLiam Girdwood static int sof_pcm_close(struct snd_pcm_substream *substream)
509868bd00fSLiam Girdwood {
510868bd00fSLiam Girdwood 	struct snd_soc_pcm_runtime *rtd = substream->private_data;
511868bd00fSLiam Girdwood 	struct snd_soc_component *component =
512868bd00fSLiam Girdwood 		snd_soc_rtdcom_lookup(rtd, DRV_NAME);
513868bd00fSLiam Girdwood 	struct snd_sof_dev *sdev = snd_soc_component_get_drvdata(component);
514868bd00fSLiam Girdwood 	struct snd_sof_pcm *spcm;
515868bd00fSLiam Girdwood 	int err;
516868bd00fSLiam Girdwood 
517868bd00fSLiam Girdwood 	/* nothing to do for BE */
518868bd00fSLiam Girdwood 	if (rtd->dai_link->no_pcm)
519868bd00fSLiam Girdwood 		return 0;
520868bd00fSLiam Girdwood 
521868bd00fSLiam Girdwood 	spcm = snd_sof_find_spcm_dai(sdev, rtd);
522868bd00fSLiam Girdwood 	if (!spcm)
523868bd00fSLiam Girdwood 		return -EINVAL;
524868bd00fSLiam Girdwood 
525868bd00fSLiam Girdwood 	dev_dbg(sdev->dev, "pcm: close stream %d dir %d\n", spcm->pcm.pcm_id,
526868bd00fSLiam Girdwood 		substream->stream);
527868bd00fSLiam Girdwood 
528868bd00fSLiam Girdwood 	err = snd_sof_pcm_platform_close(sdev, substream);
529868bd00fSLiam Girdwood 	if (err < 0) {
530868bd00fSLiam Girdwood 		dev_err(sdev->dev, "error: pcm close failed %d\n",
531868bd00fSLiam Girdwood 			err);
532868bd00fSLiam Girdwood 		/*
533868bd00fSLiam Girdwood 		 * keep going, no point in preventing the close
534868bd00fSLiam Girdwood 		 * from happening
535868bd00fSLiam Girdwood 		 */
536868bd00fSLiam Girdwood 	}
537868bd00fSLiam Girdwood 
538868bd00fSLiam Girdwood 	return 0;
539868bd00fSLiam Girdwood }
540868bd00fSLiam Girdwood 
541868bd00fSLiam Girdwood static struct snd_pcm_ops sof_pcm_ops = {
542868bd00fSLiam Girdwood 	.open		= sof_pcm_open,
543868bd00fSLiam Girdwood 	.close		= sof_pcm_close,
544868bd00fSLiam Girdwood 	.ioctl		= snd_pcm_lib_ioctl,
545868bd00fSLiam Girdwood 	.hw_params	= sof_pcm_hw_params,
546868bd00fSLiam Girdwood 	.prepare	= sof_pcm_prepare,
547868bd00fSLiam Girdwood 	.hw_free	= sof_pcm_hw_free,
548868bd00fSLiam Girdwood 	.trigger	= sof_pcm_trigger,
549868bd00fSLiam Girdwood 	.pointer	= sof_pcm_pointer,
550868bd00fSLiam Girdwood 	.page		= snd_pcm_sgbuf_ops_page,
551868bd00fSLiam Girdwood };
552868bd00fSLiam Girdwood 
553868bd00fSLiam Girdwood /*
554868bd00fSLiam Girdwood  * Pre-allocate playback/capture audio buffer pages.
555868bd00fSLiam Girdwood  * no need to explicitly release memory preallocated by sof_pcm_new in pcm_free
556868bd00fSLiam Girdwood  * snd_pcm_lib_preallocate_free_for_all() is called by the core.
557868bd00fSLiam Girdwood  */
558868bd00fSLiam Girdwood static int sof_pcm_new(struct snd_soc_pcm_runtime *rtd)
559868bd00fSLiam Girdwood {
560868bd00fSLiam Girdwood 	struct snd_soc_component *component =
561868bd00fSLiam Girdwood 		snd_soc_rtdcom_lookup(rtd, DRV_NAME);
562868bd00fSLiam Girdwood 	struct snd_sof_dev *sdev = snd_soc_component_get_drvdata(component);
563868bd00fSLiam Girdwood 	struct snd_sof_pcm *spcm;
564868bd00fSLiam Girdwood 	struct snd_pcm *pcm = rtd->pcm;
565868bd00fSLiam Girdwood 	struct snd_soc_tplg_stream_caps *caps;
566868bd00fSLiam Girdwood 	int stream = SNDRV_PCM_STREAM_PLAYBACK;
567868bd00fSLiam Girdwood 
568868bd00fSLiam Girdwood 	/* find SOF PCM for this RTD */
569868bd00fSLiam Girdwood 	spcm = snd_sof_find_spcm_dai(sdev, rtd);
570868bd00fSLiam Girdwood 	if (!spcm) {
571868bd00fSLiam Girdwood 		dev_warn(sdev->dev, "warn: can't find PCM with DAI ID %d\n",
572868bd00fSLiam Girdwood 			 rtd->dai_link->id);
573868bd00fSLiam Girdwood 		return 0;
574868bd00fSLiam Girdwood 	}
575868bd00fSLiam Girdwood 
576868bd00fSLiam Girdwood 	dev_dbg(sdev->dev, "creating new PCM %s\n", spcm->pcm.pcm_name);
577868bd00fSLiam Girdwood 
578868bd00fSLiam Girdwood 	/* do we need to pre-allocate playback audio buffer pages */
579868bd00fSLiam Girdwood 	if (!spcm->pcm.playback)
580868bd00fSLiam Girdwood 		goto capture;
581868bd00fSLiam Girdwood 
582868bd00fSLiam Girdwood 	caps = &spcm->pcm.caps[stream];
583868bd00fSLiam Girdwood 
584868bd00fSLiam Girdwood 	/* pre-allocate playback audio buffer pages */
585868bd00fSLiam Girdwood 	dev_dbg(sdev->dev, "spcm: allocate %s playback DMA buffer size 0x%x max 0x%x\n",
586868bd00fSLiam Girdwood 		caps->name, caps->buffer_size_min, caps->buffer_size_max);
587868bd00fSLiam Girdwood 
588868bd00fSLiam Girdwood 	snd_pcm_lib_preallocate_pages(pcm->streams[stream].substream,
589868bd00fSLiam Girdwood 				      SNDRV_DMA_TYPE_DEV_SG, sdev->dev,
590868bd00fSLiam Girdwood 				      le32_to_cpu(caps->buffer_size_min),
591868bd00fSLiam Girdwood 				      le32_to_cpu(caps->buffer_size_max));
592868bd00fSLiam Girdwood capture:
593868bd00fSLiam Girdwood 	stream = SNDRV_PCM_STREAM_CAPTURE;
594868bd00fSLiam Girdwood 
595868bd00fSLiam Girdwood 	/* do we need to pre-allocate capture audio buffer pages */
596868bd00fSLiam Girdwood 	if (!spcm->pcm.capture)
597868bd00fSLiam Girdwood 		return 0;
598868bd00fSLiam Girdwood 
599868bd00fSLiam Girdwood 	caps = &spcm->pcm.caps[stream];
600868bd00fSLiam Girdwood 
601868bd00fSLiam Girdwood 	/* pre-allocate capture audio buffer pages */
602868bd00fSLiam Girdwood 	dev_dbg(sdev->dev, "spcm: allocate %s capture DMA buffer size 0x%x max 0x%x\n",
603868bd00fSLiam Girdwood 		caps->name, caps->buffer_size_min, caps->buffer_size_max);
604868bd00fSLiam Girdwood 
605868bd00fSLiam Girdwood 	snd_pcm_lib_preallocate_pages(pcm->streams[stream].substream,
606868bd00fSLiam Girdwood 				      SNDRV_DMA_TYPE_DEV_SG, sdev->dev,
607868bd00fSLiam Girdwood 				      le32_to_cpu(caps->buffer_size_min),
608868bd00fSLiam Girdwood 				      le32_to_cpu(caps->buffer_size_max));
609868bd00fSLiam Girdwood 
610868bd00fSLiam Girdwood 	return 0;
611868bd00fSLiam Girdwood }
612868bd00fSLiam Girdwood 
613868bd00fSLiam Girdwood /* fixup the BE DAI link to match any values from topology */
614868bd00fSLiam Girdwood static int sof_pcm_dai_link_fixup(struct snd_soc_pcm_runtime *rtd,
615868bd00fSLiam Girdwood 				  struct snd_pcm_hw_params *params)
616868bd00fSLiam Girdwood {
617868bd00fSLiam Girdwood 	struct snd_interval *rate = hw_param_interval(params,
618868bd00fSLiam Girdwood 			SNDRV_PCM_HW_PARAM_RATE);
619868bd00fSLiam Girdwood 	struct snd_interval *channels = hw_param_interval(params,
620868bd00fSLiam Girdwood 						SNDRV_PCM_HW_PARAM_CHANNELS);
621868bd00fSLiam Girdwood 	struct snd_mask *fmt = hw_param_mask(params, SNDRV_PCM_HW_PARAM_FORMAT);
622868bd00fSLiam Girdwood 	struct snd_soc_component *component =
623868bd00fSLiam Girdwood 		snd_soc_rtdcom_lookup(rtd, DRV_NAME);
624868bd00fSLiam Girdwood 	struct snd_sof_dev *sdev = snd_soc_component_get_drvdata(component);
625868bd00fSLiam Girdwood 	struct snd_sof_dai *dai =
626868bd00fSLiam Girdwood 		snd_sof_find_dai(sdev, (char *)rtd->dai_link->name);
627868bd00fSLiam Girdwood 
628868bd00fSLiam Girdwood 	/* no topology exists for this BE, try a common configuration */
629868bd00fSLiam Girdwood 	if (!dai) {
630868bd00fSLiam Girdwood 		dev_warn(sdev->dev, "warning: no topology found for BE DAI %s config\n",
631868bd00fSLiam Girdwood 			 rtd->dai_link->name);
632868bd00fSLiam Girdwood 
633868bd00fSLiam Girdwood 		/*  set 48k, stereo, 16bits by default */
634868bd00fSLiam Girdwood 		rate->min = 48000;
635868bd00fSLiam Girdwood 		rate->max = 48000;
636868bd00fSLiam Girdwood 
637868bd00fSLiam Girdwood 		channels->min = 2;
638868bd00fSLiam Girdwood 		channels->max = 2;
639868bd00fSLiam Girdwood 
640868bd00fSLiam Girdwood 		snd_mask_none(fmt);
641868bd00fSLiam Girdwood 		snd_mask_set_format(fmt, SNDRV_PCM_FORMAT_S16_LE);
642868bd00fSLiam Girdwood 
643868bd00fSLiam Girdwood 		return 0;
644868bd00fSLiam Girdwood 	}
645868bd00fSLiam Girdwood 
646868bd00fSLiam Girdwood 	/* read format from topology */
647868bd00fSLiam Girdwood 	snd_mask_none(fmt);
648868bd00fSLiam Girdwood 
649868bd00fSLiam Girdwood 	switch (dai->comp_dai.config.frame_fmt) {
650868bd00fSLiam Girdwood 	case SOF_IPC_FRAME_S16_LE:
651868bd00fSLiam Girdwood 		snd_mask_set_format(fmt, SNDRV_PCM_FORMAT_S16_LE);
652868bd00fSLiam Girdwood 		break;
653868bd00fSLiam Girdwood 	case SOF_IPC_FRAME_S24_4LE:
654868bd00fSLiam Girdwood 		snd_mask_set_format(fmt, SNDRV_PCM_FORMAT_S24_LE);
655868bd00fSLiam Girdwood 		break;
656868bd00fSLiam Girdwood 	case SOF_IPC_FRAME_S32_LE:
657868bd00fSLiam Girdwood 		snd_mask_set_format(fmt, SNDRV_PCM_FORMAT_S32_LE);
658868bd00fSLiam Girdwood 		break;
659868bd00fSLiam Girdwood 	default:
660868bd00fSLiam Girdwood 		dev_err(sdev->dev, "error: No available DAI format!\n");
661868bd00fSLiam Girdwood 		return -EINVAL;
662868bd00fSLiam Girdwood 	}
663868bd00fSLiam Girdwood 
664868bd00fSLiam Girdwood 	/* read rate and channels from topology */
665868bd00fSLiam Girdwood 	switch (dai->dai_config->type) {
666868bd00fSLiam Girdwood 	case SOF_DAI_INTEL_SSP:
667868bd00fSLiam Girdwood 		rate->min = dai->dai_config->ssp.fsync_rate;
668868bd00fSLiam Girdwood 		rate->max = dai->dai_config->ssp.fsync_rate;
669868bd00fSLiam Girdwood 		channels->min = dai->dai_config->ssp.tdm_slots;
670868bd00fSLiam Girdwood 		channels->max = dai->dai_config->ssp.tdm_slots;
671868bd00fSLiam Girdwood 
672868bd00fSLiam Girdwood 		dev_dbg(sdev->dev,
673868bd00fSLiam Girdwood 			"rate_min: %d rate_max: %d\n", rate->min, rate->max);
674868bd00fSLiam Girdwood 		dev_dbg(sdev->dev,
675868bd00fSLiam Girdwood 			"channels_min: %d channels_max: %d\n",
676868bd00fSLiam Girdwood 			channels->min, channels->max);
677868bd00fSLiam Girdwood 
678868bd00fSLiam Girdwood 		break;
679868bd00fSLiam Girdwood 	case SOF_DAI_INTEL_DMIC:
680868bd00fSLiam Girdwood 		/* DMIC only supports 16 or 32 bit formats */
681868bd00fSLiam Girdwood 		if (dai->comp_dai.config.frame_fmt == SOF_IPC_FRAME_S24_4LE) {
682868bd00fSLiam Girdwood 			dev_err(sdev->dev,
683868bd00fSLiam Girdwood 				"error: invalid fmt %d for DAI type %d\n",
684868bd00fSLiam Girdwood 				dai->comp_dai.config.frame_fmt,
685868bd00fSLiam Girdwood 				dai->dai_config->type);
686868bd00fSLiam Girdwood 		}
687868bd00fSLiam Girdwood 		break;
688868bd00fSLiam Girdwood 	case SOF_DAI_INTEL_HDA:
689868bd00fSLiam Girdwood 		/* do nothing for HDA dai_link */
690868bd00fSLiam Girdwood 		break;
6916e3360cdSPierre-Louis Bossart 	case SOF_DAI_INTEL_ALH:
6926e3360cdSPierre-Louis Bossart 		/* do nothing for ALH dai_link */
6936e3360cdSPierre-Louis Bossart 		break;
694868bd00fSLiam Girdwood 	default:
695868bd00fSLiam Girdwood 		dev_err(sdev->dev, "error: invalid DAI type %d\n",
696868bd00fSLiam Girdwood 			dai->dai_config->type);
697868bd00fSLiam Girdwood 		break;
698868bd00fSLiam Girdwood 	}
699868bd00fSLiam Girdwood 
700868bd00fSLiam Girdwood 	return 0;
701868bd00fSLiam Girdwood }
702868bd00fSLiam Girdwood 
703868bd00fSLiam Girdwood static int sof_pcm_probe(struct snd_soc_component *component)
704868bd00fSLiam Girdwood {
705868bd00fSLiam Girdwood 	struct snd_sof_dev *sdev = snd_soc_component_get_drvdata(component);
706868bd00fSLiam Girdwood 	struct snd_sof_pdata *plat_data = sdev->pdata;
707868bd00fSLiam Girdwood 	const char *tplg_filename;
708868bd00fSLiam Girdwood 	int ret;
709868bd00fSLiam Girdwood 
710868bd00fSLiam Girdwood 	/* load the default topology */
711868bd00fSLiam Girdwood 	sdev->component = component;
712868bd00fSLiam Girdwood 
713868bd00fSLiam Girdwood 	tplg_filename = devm_kasprintf(sdev->dev, GFP_KERNEL,
714868bd00fSLiam Girdwood 				       "%s/%s",
715868bd00fSLiam Girdwood 				       plat_data->tplg_filename_prefix,
716868bd00fSLiam Girdwood 				       plat_data->tplg_filename);
717868bd00fSLiam Girdwood 	if (!tplg_filename)
718868bd00fSLiam Girdwood 		return -ENOMEM;
719868bd00fSLiam Girdwood 
720868bd00fSLiam Girdwood 	ret = snd_sof_load_topology(sdev, tplg_filename);
721868bd00fSLiam Girdwood 	if (ret < 0) {
722868bd00fSLiam Girdwood 		dev_err(sdev->dev, "error: failed to load DSP topology %d\n",
723868bd00fSLiam Girdwood 			ret);
724868bd00fSLiam Girdwood 		return ret;
725868bd00fSLiam Girdwood 	}
726868bd00fSLiam Girdwood 
727868bd00fSLiam Girdwood 	/*
728868bd00fSLiam Girdwood 	 * Some platforms in SOF, ex: BYT, may not have their platform PM
729868bd00fSLiam Girdwood 	 * callbacks set. Increment the usage count so as to
730868bd00fSLiam Girdwood 	 * prevent the device from entering runtime suspend.
731868bd00fSLiam Girdwood 	 */
732868bd00fSLiam Girdwood 	if (!sof_ops(sdev)->runtime_suspend || !sof_ops(sdev)->runtime_resume)
733868bd00fSLiam Girdwood 		pm_runtime_get_noresume(sdev->dev);
734868bd00fSLiam Girdwood 
735868bd00fSLiam Girdwood 	return ret;
736868bd00fSLiam Girdwood }
737868bd00fSLiam Girdwood 
738868bd00fSLiam Girdwood static void sof_pcm_remove(struct snd_soc_component *component)
739868bd00fSLiam Girdwood {
740868bd00fSLiam Girdwood 	/* remove topology */
741868bd00fSLiam Girdwood 	snd_soc_tplg_component_remove(component, SND_SOC_TPLG_INDEX_ALL);
742868bd00fSLiam Girdwood }
743868bd00fSLiam Girdwood 
744868bd00fSLiam Girdwood void snd_sof_new_platform_drv(struct snd_sof_dev *sdev)
745868bd00fSLiam Girdwood {
746868bd00fSLiam Girdwood 	struct snd_soc_component_driver *pd = &sdev->plat_drv;
747868bd00fSLiam Girdwood 	struct snd_sof_pdata *plat_data = sdev->pdata;
748868bd00fSLiam Girdwood 	const char *drv_name;
749868bd00fSLiam Girdwood 
750868bd00fSLiam Girdwood 	drv_name = plat_data->machine->drv_name;
751868bd00fSLiam Girdwood 
752868bd00fSLiam Girdwood 	pd->name = "sof-audio-component";
753868bd00fSLiam Girdwood 	pd->probe = sof_pcm_probe;
754868bd00fSLiam Girdwood 	pd->remove = sof_pcm_remove;
755868bd00fSLiam Girdwood 	pd->ops	= &sof_pcm_ops;
756868bd00fSLiam Girdwood #if IS_ENABLED(CONFIG_SND_SOC_SOF_COMPRESS)
757868bd00fSLiam Girdwood 	pd->compr_ops = &sof_compressed_ops;
758868bd00fSLiam Girdwood #endif
759868bd00fSLiam Girdwood 	pd->pcm_new = sof_pcm_new;
760868bd00fSLiam Girdwood 	pd->ignore_machine = drv_name;
761868bd00fSLiam Girdwood 	pd->be_hw_params_fixup = sof_pcm_dai_link_fixup;
762868bd00fSLiam Girdwood 	pd->be_pcm_base = SOF_BE_PCM_BASE;
763868bd00fSLiam Girdwood 	pd->use_dai_pcm_id = true;
764868bd00fSLiam Girdwood 	pd->topology_name_prefix = "sof";
765868bd00fSLiam Girdwood 
766868bd00fSLiam Girdwood 	 /* increment module refcount when a pcm is opened */
767868bd00fSLiam Girdwood 	pd->module_get_upon_open = 1;
768868bd00fSLiam Girdwood }
769