xref: /openbmc/linux/sound/soc/fsl/fsl_asrc_dma.c (revision 289a3ec0)
12ba28053SFabio Estevam // SPDX-License-Identifier: GPL-2.0
22ba28053SFabio Estevam //
32ba28053SFabio Estevam // Freescale ASRC ALSA SoC Platform (DMA) driver
42ba28053SFabio Estevam //
52ba28053SFabio Estevam // Copyright (C) 2014 Freescale Semiconductor, Inc.
62ba28053SFabio Estevam //
72ba28053SFabio Estevam // Author: Nicolin Chen <nicoleotsuka@gmail.com>
83117bb31SNicolin Chen 
93117bb31SNicolin Chen #include <linux/dma-mapping.h>
103117bb31SNicolin Chen #include <linux/module.h>
11c6547c2eSSascha Hauer #include <linux/dma/imx-dma.h>
123117bb31SNicolin Chen #include <sound/dmaengine_pcm.h>
133117bb31SNicolin Chen #include <sound/pcm_params.h>
143117bb31SNicolin Chen 
15be7bd03fSShengjiu Wang #include "fsl_asrc_common.h"
163117bb31SNicolin Chen 
173117bb31SNicolin Chen #define FSL_ASRC_DMABUF_SIZE	(256 * 1024)
183117bb31SNicolin Chen 
19703df441SShengjiu Wang static struct snd_pcm_hardware snd_imx_hardware = {
203117bb31SNicolin Chen 	.info = SNDRV_PCM_INFO_INTERLEAVED |
213117bb31SNicolin Chen 		SNDRV_PCM_INFO_BLOCK_TRANSFER |
223117bb31SNicolin Chen 		SNDRV_PCM_INFO_MMAP |
23703df441SShengjiu Wang 		SNDRV_PCM_INFO_MMAP_VALID,
243117bb31SNicolin Chen 	.buffer_bytes_max = FSL_ASRC_DMABUF_SIZE,
253117bb31SNicolin Chen 	.period_bytes_min = 128,
263117bb31SNicolin Chen 	.period_bytes_max = 65535, /* Limited by SDMA engine */
273117bb31SNicolin Chen 	.periods_min = 2,
283117bb31SNicolin Chen 	.periods_max = 255,
293117bb31SNicolin Chen 	.fifo_size = 0,
303117bb31SNicolin Chen };
313117bb31SNicolin Chen 
323117bb31SNicolin Chen static bool filter(struct dma_chan *chan, void *param)
333117bb31SNicolin Chen {
343117bb31SNicolin Chen 	if (!imx_dma_is_general_purpose(chan))
353117bb31SNicolin Chen 		return false;
363117bb31SNicolin Chen 
373117bb31SNicolin Chen 	chan->private = param;
383117bb31SNicolin Chen 
393117bb31SNicolin Chen 	return true;
403117bb31SNicolin Chen }
413117bb31SNicolin Chen 
423117bb31SNicolin Chen static void fsl_asrc_dma_complete(void *arg)
433117bb31SNicolin Chen {
443117bb31SNicolin Chen 	struct snd_pcm_substream *substream = arg;
453117bb31SNicolin Chen 	struct snd_pcm_runtime *runtime = substream->runtime;
463117bb31SNicolin Chen 	struct fsl_asrc_pair *pair = runtime->private_data;
473117bb31SNicolin Chen 
483117bb31SNicolin Chen 	pair->pos += snd_pcm_lib_period_bytes(substream);
493117bb31SNicolin Chen 	if (pair->pos >= snd_pcm_lib_buffer_bytes(substream))
503117bb31SNicolin Chen 		pair->pos = 0;
513117bb31SNicolin Chen 
523117bb31SNicolin Chen 	snd_pcm_period_elapsed(substream);
533117bb31SNicolin Chen }
543117bb31SNicolin Chen 
558903ed25SKuninori Morimoto static int fsl_asrc_dma_prepare_and_submit(struct snd_pcm_substream *substream,
568903ed25SKuninori Morimoto 					   struct snd_soc_component *component)
573117bb31SNicolin Chen {
583117bb31SNicolin Chen 	u8 dir = substream->stream == SNDRV_PCM_STREAM_PLAYBACK ? OUT : IN;
593117bb31SNicolin Chen 	struct snd_pcm_runtime *runtime = substream->runtime;
603117bb31SNicolin Chen 	struct fsl_asrc_pair *pair = runtime->private_data;
617f110661SKuninori Morimoto 	struct device *dev = component->dev;
623117bb31SNicolin Chen 	unsigned long flags = DMA_CTRL_ACK;
633117bb31SNicolin Chen 
643117bb31SNicolin Chen 	/* Prepare and submit Front-End DMA channel */
653117bb31SNicolin Chen 	if (!substream->runtime->no_period_wakeup)
663117bb31SNicolin Chen 		flags |= DMA_PREP_INTERRUPT;
673117bb31SNicolin Chen 
683117bb31SNicolin Chen 	pair->pos = 0;
693117bb31SNicolin Chen 	pair->desc[!dir] = dmaengine_prep_dma_cyclic(
703117bb31SNicolin Chen 			pair->dma_chan[!dir], runtime->dma_addr,
713117bb31SNicolin Chen 			snd_pcm_lib_buffer_bytes(substream),
723117bb31SNicolin Chen 			snd_pcm_lib_period_bytes(substream),
7324dbd9edSStefan Agner 			dir == OUT ? DMA_MEM_TO_DEV : DMA_DEV_TO_MEM, flags);
743117bb31SNicolin Chen 	if (!pair->desc[!dir]) {
753117bb31SNicolin Chen 		dev_err(dev, "failed to prepare slave DMA for Front-End\n");
763117bb31SNicolin Chen 		return -ENOMEM;
773117bb31SNicolin Chen 	}
783117bb31SNicolin Chen 
793117bb31SNicolin Chen 	pair->desc[!dir]->callback = fsl_asrc_dma_complete;
803117bb31SNicolin Chen 	pair->desc[!dir]->callback_param = substream;
813117bb31SNicolin Chen 
823117bb31SNicolin Chen 	dmaengine_submit(pair->desc[!dir]);
833117bb31SNicolin Chen 
843117bb31SNicolin Chen 	/* Prepare and submit Back-End DMA channel */
853117bb31SNicolin Chen 	pair->desc[dir] = dmaengine_prep_dma_cyclic(
863117bb31SNicolin Chen 			pair->dma_chan[dir], 0xffff, 64, 64, DMA_DEV_TO_DEV, 0);
873117bb31SNicolin Chen 	if (!pair->desc[dir]) {
883117bb31SNicolin Chen 		dev_err(dev, "failed to prepare slave DMA for Back-End\n");
893117bb31SNicolin Chen 		return -ENOMEM;
903117bb31SNicolin Chen 	}
913117bb31SNicolin Chen 
923117bb31SNicolin Chen 	dmaengine_submit(pair->desc[dir]);
933117bb31SNicolin Chen 
943117bb31SNicolin Chen 	return 0;
953117bb31SNicolin Chen }
963117bb31SNicolin Chen 
978903ed25SKuninori Morimoto static int fsl_asrc_dma_trigger(struct snd_soc_component *component,
988903ed25SKuninori Morimoto 				struct snd_pcm_substream *substream, int cmd)
993117bb31SNicolin Chen {
1003117bb31SNicolin Chen 	struct snd_pcm_runtime *runtime = substream->runtime;
1013117bb31SNicolin Chen 	struct fsl_asrc_pair *pair = runtime->private_data;
1023117bb31SNicolin Chen 	int ret;
1033117bb31SNicolin Chen 
1043117bb31SNicolin Chen 	switch (cmd) {
1053117bb31SNicolin Chen 	case SNDRV_PCM_TRIGGER_START:
1063117bb31SNicolin Chen 	case SNDRV_PCM_TRIGGER_RESUME:
1073117bb31SNicolin Chen 	case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
1088903ed25SKuninori Morimoto 		ret = fsl_asrc_dma_prepare_and_submit(substream, component);
1093117bb31SNicolin Chen 		if (ret)
1103117bb31SNicolin Chen 			return ret;
1113117bb31SNicolin Chen 		dma_async_issue_pending(pair->dma_chan[IN]);
1123117bb31SNicolin Chen 		dma_async_issue_pending(pair->dma_chan[OUT]);
1133117bb31SNicolin Chen 		break;
1143117bb31SNicolin Chen 	case SNDRV_PCM_TRIGGER_STOP:
1153117bb31SNicolin Chen 	case SNDRV_PCM_TRIGGER_SUSPEND:
1163117bb31SNicolin Chen 	case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
117*289a3ec0SSascha Hauer 		dmaengine_terminate_async(pair->dma_chan[OUT]);
118*289a3ec0SSascha Hauer 		dmaengine_terminate_async(pair->dma_chan[IN]);
1193117bb31SNicolin Chen 		break;
1203117bb31SNicolin Chen 	default:
1213117bb31SNicolin Chen 		return -EINVAL;
1223117bb31SNicolin Chen 	}
1233117bb31SNicolin Chen 
1243117bb31SNicolin Chen 	return 0;
1253117bb31SNicolin Chen }
1263117bb31SNicolin Chen 
1278903ed25SKuninori Morimoto static int fsl_asrc_dma_hw_params(struct snd_soc_component *component,
1288903ed25SKuninori Morimoto 				  struct snd_pcm_substream *substream,
1293117bb31SNicolin Chen 				  struct snd_pcm_hw_params *params)
1303117bb31SNicolin Chen {
1313117bb31SNicolin Chen 	enum dma_slave_buswidth buswidth = DMA_SLAVE_BUSWIDTH_2_BYTES;
1326398b004SShengjiu Wang 	enum sdma_peripheral_type be_peripheral_type = IMX_DMATYPE_SSI;
1339f5f078aSKuninori Morimoto 	struct snd_soc_pcm_runtime *rtd = asoc_substream_to_rtd(substream);
1343117bb31SNicolin Chen 	bool tx = substream->stream == SNDRV_PCM_STREAM_PLAYBACK;
1353117bb31SNicolin Chen 	struct snd_dmaengine_dai_dma_data *dma_params_fe = NULL;
1363117bb31SNicolin Chen 	struct snd_dmaengine_dai_dma_data *dma_params_be = NULL;
1373117bb31SNicolin Chen 	struct snd_pcm_runtime *runtime = substream->runtime;
1383117bb31SNicolin Chen 	struct fsl_asrc_pair *pair = runtime->private_data;
139706e2c88SShengjiu Wang 	struct dma_chan *tmp_chan = NULL, *be_chan = NULL;
140706e2c88SShengjiu Wang 	struct snd_soc_component *component_be = NULL;
1417470704dSShengjiu Wang 	struct fsl_asrc *asrc = pair->asrc;
1423117bb31SNicolin Chen 	struct dma_slave_config config_fe, config_be;
1436398b004SShengjiu Wang 	struct sdma_peripheral_config audio_config;
1443117bb31SNicolin Chen 	enum asrc_pair_index index = pair->index;
1457f110661SKuninori Morimoto 	struct device *dev = component->dev;
146ee427ea4SRobin Gong 	struct device_node *of_dma_node;
1473117bb31SNicolin Chen 	int stream = substream->stream;
1483117bb31SNicolin Chen 	struct imx_dma_data *tmp_data;
1493117bb31SNicolin Chen 	struct snd_soc_dpcm *dpcm;
1503117bb31SNicolin Chen 	struct device *dev_be;
1513117bb31SNicolin Chen 	u8 dir = tx ? OUT : IN;
1523117bb31SNicolin Chen 	dma_cap_mask_t mask;
1534520af41SShengjiu Wang 	int ret, width;
1543117bb31SNicolin Chen 
1553117bb31SNicolin Chen 	/* Fetch the Back-End dma_data from DPCM */
1568d6258a4SKuninori Morimoto 	for_each_dpcm_be(rtd, stream, dpcm) {
1573117bb31SNicolin Chen 		struct snd_soc_pcm_runtime *be = dpcm->be;
1583117bb31SNicolin Chen 		struct snd_pcm_substream *substream_be;
15917198ae7SKuninori Morimoto 		struct snd_soc_dai *dai = asoc_rtd_to_cpu(be, 0);
1603117bb31SNicolin Chen 
1613117bb31SNicolin Chen 		if (dpcm->fe != rtd)
1623117bb31SNicolin Chen 			continue;
1633117bb31SNicolin Chen 
1643117bb31SNicolin Chen 		substream_be = snd_soc_dpcm_get_substream(be, stream);
1653117bb31SNicolin Chen 		dma_params_be = snd_soc_dai_get_dma_data(dai, substream_be);
1663117bb31SNicolin Chen 		dev_be = dai->dev;
1673117bb31SNicolin Chen 		break;
1683117bb31SNicolin Chen 	}
1693117bb31SNicolin Chen 
1703117bb31SNicolin Chen 	if (!dma_params_be) {
1713117bb31SNicolin Chen 		dev_err(dev, "failed to get the substream of Back-End\n");
1723117bb31SNicolin Chen 		return -EINVAL;
1733117bb31SNicolin Chen 	}
1743117bb31SNicolin Chen 
1753117bb31SNicolin Chen 	/* Override dma_data of the Front-End and config its dmaengine */
17617198ae7SKuninori Morimoto 	dma_params_fe = snd_soc_dai_get_dma_data(asoc_rtd_to_cpu(rtd, 0), substream);
177be7bd03fSShengjiu Wang 	dma_params_fe->addr = asrc->paddr + asrc->get_fifo_addr(!dir, index);
1783117bb31SNicolin Chen 	dma_params_fe->maxburst = dma_params_be->maxburst;
1793117bb31SNicolin Chen 
180be7bd03fSShengjiu Wang 	pair->dma_chan[!dir] = asrc->get_dma_channel(pair, !dir);
1813117bb31SNicolin Chen 	if (!pair->dma_chan[!dir]) {
1823117bb31SNicolin Chen 		dev_err(dev, "failed to request DMA channel\n");
1833117bb31SNicolin Chen 		return -EINVAL;
1843117bb31SNicolin Chen 	}
1853117bb31SNicolin Chen 
1863117bb31SNicolin Chen 	memset(&config_fe, 0, sizeof(config_fe));
1873117bb31SNicolin Chen 	ret = snd_dmaengine_pcm_prepare_slave_config(substream, params, &config_fe);
1883117bb31SNicolin Chen 	if (ret) {
1893117bb31SNicolin Chen 		dev_err(dev, "failed to prepare DMA config for Front-End\n");
1903117bb31SNicolin Chen 		return ret;
1913117bb31SNicolin Chen 	}
1923117bb31SNicolin Chen 
1933117bb31SNicolin Chen 	ret = dmaengine_slave_config(pair->dma_chan[!dir], &config_fe);
1943117bb31SNicolin Chen 	if (ret) {
1953117bb31SNicolin Chen 		dev_err(dev, "failed to config DMA channel for Front-End\n");
1963117bb31SNicolin Chen 		return ret;
1973117bb31SNicolin Chen 	}
1983117bb31SNicolin Chen 
1993117bb31SNicolin Chen 	/* Request and config DMA channel for Back-End */
2003117bb31SNicolin Chen 	dma_cap_zero(mask);
2013117bb31SNicolin Chen 	dma_cap_set(DMA_SLAVE, mask);
2023117bb31SNicolin Chen 	dma_cap_set(DMA_CYCLIC, mask);
2033117bb31SNicolin Chen 
204c05f10f2SShengjiu Wang 	/*
205706e2c88SShengjiu Wang 	 * The Back-End device might have already requested a DMA channel,
206706e2c88SShengjiu Wang 	 * so try to reuse it first, and then request a new one upon NULL.
207706e2c88SShengjiu Wang 	 */
208706e2c88SShengjiu Wang 	component_be = snd_soc_lookup_component_nolocked(dev_be, SND_DMAENGINE_PCM_DRV_NAME);
209706e2c88SShengjiu Wang 	if (component_be) {
210706e2c88SShengjiu Wang 		be_chan = soc_component_to_pcm(component_be)->chan[substream->stream];
211706e2c88SShengjiu Wang 		tmp_chan = be_chan;
212706e2c88SShengjiu Wang 	}
213706e2c88SShengjiu Wang 	if (!tmp_chan)
214706e2c88SShengjiu Wang 		tmp_chan = dma_request_slave_channel(dev_be, tx ? "tx" : "rx");
215706e2c88SShengjiu Wang 
216706e2c88SShengjiu Wang 	/*
217c05f10f2SShengjiu Wang 	 * An EDMA DEV_TO_DEV channel is fixed and bound with DMA event of each
218c05f10f2SShengjiu Wang 	 * peripheral, unlike SDMA channel that is allocated dynamically. So no
219706e2c88SShengjiu Wang 	 * need to configure dma_request and dma_request2, but get dma_chan of
220706e2c88SShengjiu Wang 	 * Back-End device directly via dma_request_slave_channel.
221c05f10f2SShengjiu Wang 	 */
222be7bd03fSShengjiu Wang 	if (!asrc->use_edma) {
2233117bb31SNicolin Chen 		/* Get DMA request of Back-End */
2243117bb31SNicolin Chen 		tmp_data = tmp_chan->private;
2253117bb31SNicolin Chen 		pair->dma_data.dma_request = tmp_data->dma_request;
2266398b004SShengjiu Wang 		be_peripheral_type = tmp_data->peripheral_type;
227706e2c88SShengjiu Wang 		if (!be_chan)
2283117bb31SNicolin Chen 			dma_release_channel(tmp_chan);
2293117bb31SNicolin Chen 
2303117bb31SNicolin Chen 		/* Get DMA request of Front-End */
231be7bd03fSShengjiu Wang 		tmp_chan = asrc->get_dma_channel(pair, dir);
2323117bb31SNicolin Chen 		tmp_data = tmp_chan->private;
2333117bb31SNicolin Chen 		pair->dma_data.dma_request2 = tmp_data->dma_request;
2343117bb31SNicolin Chen 		pair->dma_data.peripheral_type = tmp_data->peripheral_type;
2353117bb31SNicolin Chen 		pair->dma_data.priority = tmp_data->priority;
2363117bb31SNicolin Chen 		dma_release_channel(tmp_chan);
2373117bb31SNicolin Chen 
238ee427ea4SRobin Gong 		of_dma_node = pair->dma_chan[!dir]->device->dev->of_node;
239c05f10f2SShengjiu Wang 		pair->dma_chan[dir] =
240ee427ea4SRobin Gong 			__dma_request_channel(&mask, filter, &pair->dma_data,
241ee427ea4SRobin Gong 					      of_dma_node);
242b287a6d9SShengjiu Wang 		pair->req_dma_chan = true;
243c05f10f2SShengjiu Wang 	} else {
244b287a6d9SShengjiu Wang 		pair->dma_chan[dir] = tmp_chan;
245b287a6d9SShengjiu Wang 		/* Do not flag to release if we are reusing the Back-End one */
246b287a6d9SShengjiu Wang 		pair->req_dma_chan = !be_chan;
247c05f10f2SShengjiu Wang 	}
248c05f10f2SShengjiu Wang 
2493117bb31SNicolin Chen 	if (!pair->dma_chan[dir]) {
2503117bb31SNicolin Chen 		dev_err(dev, "failed to request DMA channel for Back-End\n");
2513117bb31SNicolin Chen 		return -EINVAL;
2523117bb31SNicolin Chen 	}
2533117bb31SNicolin Chen 
2544520af41SShengjiu Wang 	width = snd_pcm_format_physical_width(asrc->asrc_format);
2554520af41SShengjiu Wang 	if (width < 8 || width > 64)
2564520af41SShengjiu Wang 		return -EINVAL;
2574520af41SShengjiu Wang 	else if (width == 8)
2584520af41SShengjiu Wang 		buswidth = DMA_SLAVE_BUSWIDTH_1_BYTE;
2594520af41SShengjiu Wang 	else if (width == 16)
2603117bb31SNicolin Chen 		buswidth = DMA_SLAVE_BUSWIDTH_2_BYTES;
2614520af41SShengjiu Wang 	else if (width == 24)
2624520af41SShengjiu Wang 		buswidth = DMA_SLAVE_BUSWIDTH_3_BYTES;
2634520af41SShengjiu Wang 	else if (width <= 32)
2643117bb31SNicolin Chen 		buswidth = DMA_SLAVE_BUSWIDTH_4_BYTES;
2654520af41SShengjiu Wang 	else
2664520af41SShengjiu Wang 		buswidth = DMA_SLAVE_BUSWIDTH_8_BYTES;
2673117bb31SNicolin Chen 
2683117bb31SNicolin Chen 	config_be.direction = DMA_DEV_TO_DEV;
2693117bb31SNicolin Chen 	config_be.src_addr_width = buswidth;
2703117bb31SNicolin Chen 	config_be.src_maxburst = dma_params_be->maxburst;
2713117bb31SNicolin Chen 	config_be.dst_addr_width = buswidth;
2723117bb31SNicolin Chen 	config_be.dst_maxburst = dma_params_be->maxburst;
2733117bb31SNicolin Chen 
2746398b004SShengjiu Wang 	memset(&audio_config, 0, sizeof(audio_config));
2756398b004SShengjiu Wang 	config_be.peripheral_config = &audio_config;
2766398b004SShengjiu Wang 	config_be.peripheral_size  = sizeof(audio_config);
2776398b004SShengjiu Wang 
2786398b004SShengjiu Wang 	if (tx && (be_peripheral_type == IMX_DMATYPE_SSI_DUAL ||
2796398b004SShengjiu Wang 		   be_peripheral_type == IMX_DMATYPE_SPDIF))
2806398b004SShengjiu Wang 		audio_config.n_fifos_dst = 2;
2816398b004SShengjiu Wang 	if (!tx && (be_peripheral_type == IMX_DMATYPE_SSI_DUAL ||
2826398b004SShengjiu Wang 		    be_peripheral_type == IMX_DMATYPE_SPDIF))
2836398b004SShengjiu Wang 		audio_config.n_fifos_src = 2;
2846398b004SShengjiu Wang 
2853117bb31SNicolin Chen 	if (tx) {
286be7bd03fSShengjiu Wang 		config_be.src_addr = asrc->paddr + asrc->get_fifo_addr(OUT, index);
2873117bb31SNicolin Chen 		config_be.dst_addr = dma_params_be->addr;
2883117bb31SNicolin Chen 	} else {
289be7bd03fSShengjiu Wang 		config_be.dst_addr = asrc->paddr + asrc->get_fifo_addr(IN, index);
2903117bb31SNicolin Chen 		config_be.src_addr = dma_params_be->addr;
2913117bb31SNicolin Chen 	}
2923117bb31SNicolin Chen 
2933117bb31SNicolin Chen 	ret = dmaengine_slave_config(pair->dma_chan[dir], &config_be);
2943117bb31SNicolin Chen 	if (ret) {
2953117bb31SNicolin Chen 		dev_err(dev, "failed to config DMA channel for Back-End\n");
296b287a6d9SShengjiu Wang 		if (pair->req_dma_chan)
29736124fb1SXiyu Yang 			dma_release_channel(pair->dma_chan[dir]);
2983117bb31SNicolin Chen 		return ret;
2993117bb31SNicolin Chen 	}
3003117bb31SNicolin Chen 
3013117bb31SNicolin Chen 	return 0;
3023117bb31SNicolin Chen }
3033117bb31SNicolin Chen 
3048903ed25SKuninori Morimoto static int fsl_asrc_dma_hw_free(struct snd_soc_component *component,
3058903ed25SKuninori Morimoto 				struct snd_pcm_substream *substream)
3063117bb31SNicolin Chen {
307b287a6d9SShengjiu Wang 	bool tx = substream->stream == SNDRV_PCM_STREAM_PLAYBACK;
3083117bb31SNicolin Chen 	struct snd_pcm_runtime *runtime = substream->runtime;
3093117bb31SNicolin Chen 	struct fsl_asrc_pair *pair = runtime->private_data;
310b287a6d9SShengjiu Wang 	u8 dir = tx ? OUT : IN;
3113117bb31SNicolin Chen 
312b287a6d9SShengjiu Wang 	if (pair->dma_chan[!dir])
313b287a6d9SShengjiu Wang 		dma_release_channel(pair->dma_chan[!dir]);
3143117bb31SNicolin Chen 
315b287a6d9SShengjiu Wang 	/* release dev_to_dev chan if we aren't reusing the Back-End one */
316b287a6d9SShengjiu Wang 	if (pair->dma_chan[dir] && pair->req_dma_chan)
317b287a6d9SShengjiu Wang 		dma_release_channel(pair->dma_chan[dir]);
3183117bb31SNicolin Chen 
319b287a6d9SShengjiu Wang 	pair->dma_chan[!dir] = NULL;
320b287a6d9SShengjiu Wang 	pair->dma_chan[dir] = NULL;
3213117bb31SNicolin Chen 
3223117bb31SNicolin Chen 	return 0;
3233117bb31SNicolin Chen }
3243117bb31SNicolin Chen 
3258903ed25SKuninori Morimoto static int fsl_asrc_dma_startup(struct snd_soc_component *component,
3268903ed25SKuninori Morimoto 				struct snd_pcm_substream *substream)
3273117bb31SNicolin Chen {
328703df441SShengjiu Wang 	bool tx = substream->stream == SNDRV_PCM_STREAM_PLAYBACK;
3299f5f078aSKuninori Morimoto 	struct snd_soc_pcm_runtime *rtd = asoc_substream_to_rtd(substream);
3303117bb31SNicolin Chen 	struct snd_pcm_runtime *runtime = substream->runtime;
331703df441SShengjiu Wang 	struct snd_dmaengine_dai_dma_data *dma_data;
3327f110661SKuninori Morimoto 	struct device *dev = component->dev;
3337470704dSShengjiu Wang 	struct fsl_asrc *asrc = dev_get_drvdata(dev);
3343117bb31SNicolin Chen 	struct fsl_asrc_pair *pair;
335703df441SShengjiu Wang 	struct dma_chan *tmp_chan = NULL;
336703df441SShengjiu Wang 	u8 dir = tx ? OUT : IN;
337703df441SShengjiu Wang 	bool release_pair = true;
338703df441SShengjiu Wang 	int ret = 0;
339703df441SShengjiu Wang 
340703df441SShengjiu Wang 	ret = snd_pcm_hw_constraint_integer(substream->runtime,
341703df441SShengjiu Wang 					    SNDRV_PCM_HW_PARAM_PERIODS);
342703df441SShengjiu Wang 	if (ret < 0) {
343703df441SShengjiu Wang 		dev_err(dev, "failed to set pcm hw params periods\n");
344703df441SShengjiu Wang 		return ret;
345703df441SShengjiu Wang 	}
3463117bb31SNicolin Chen 
347be7bd03fSShengjiu Wang 	pair = kzalloc(sizeof(*pair) + asrc->pair_priv_size, GFP_KERNEL);
348443be77eSMarkus Elfring 	if (!pair)
3493117bb31SNicolin Chen 		return -ENOMEM;
3503117bb31SNicolin Chen 
3517470704dSShengjiu Wang 	pair->asrc = asrc;
352be7bd03fSShengjiu Wang 	pair->private = (void *)pair + sizeof(struct fsl_asrc_pair);
3533117bb31SNicolin Chen 
3543117bb31SNicolin Chen 	runtime->private_data = pair;
3553117bb31SNicolin Chen 
356703df441SShengjiu Wang 	/* Request a dummy pair, which will be released later.
357703df441SShengjiu Wang 	 * Request pair function needs channel num as input, for this
358703df441SShengjiu Wang 	 * dummy pair, we just request "1" channel temporarily.
359703df441SShengjiu Wang 	 */
360be7bd03fSShengjiu Wang 	ret = asrc->request_pair(1, pair);
361703df441SShengjiu Wang 	if (ret < 0) {
362703df441SShengjiu Wang 		dev_err(dev, "failed to request asrc pair\n");
363703df441SShengjiu Wang 		goto req_pair_err;
364703df441SShengjiu Wang 	}
365703df441SShengjiu Wang 
366703df441SShengjiu Wang 	/* Request a dummy dma channel, which will be released later. */
367be7bd03fSShengjiu Wang 	tmp_chan = asrc->get_dma_channel(pair, dir);
368703df441SShengjiu Wang 	if (!tmp_chan) {
369703df441SShengjiu Wang 		dev_err(dev, "failed to get dma channel\n");
370703df441SShengjiu Wang 		ret = -EINVAL;
371703df441SShengjiu Wang 		goto dma_chan_err;
372703df441SShengjiu Wang 	}
373703df441SShengjiu Wang 
37417198ae7SKuninori Morimoto 	dma_data = snd_soc_dai_get_dma_data(asoc_rtd_to_cpu(rtd, 0), substream);
375703df441SShengjiu Wang 
376703df441SShengjiu Wang 	/* Refine the snd_imx_hardware according to caps of DMA. */
377703df441SShengjiu Wang 	ret = snd_dmaengine_pcm_refine_runtime_hwparams(substream,
378703df441SShengjiu Wang 							dma_data,
379703df441SShengjiu Wang 							&snd_imx_hardware,
380703df441SShengjiu Wang 							tmp_chan);
381703df441SShengjiu Wang 	if (ret < 0) {
382703df441SShengjiu Wang 		dev_err(dev, "failed to refine runtime hwparams\n");
383703df441SShengjiu Wang 		goto out;
384703df441SShengjiu Wang 	}
385703df441SShengjiu Wang 
386703df441SShengjiu Wang 	release_pair = false;
3873117bb31SNicolin Chen 	snd_soc_set_runtime_hwparams(substream, &snd_imx_hardware);
3883117bb31SNicolin Chen 
389703df441SShengjiu Wang out:
390703df441SShengjiu Wang 	dma_release_channel(tmp_chan);
391703df441SShengjiu Wang 
392703df441SShengjiu Wang dma_chan_err:
393be7bd03fSShengjiu Wang 	asrc->release_pair(pair);
394703df441SShengjiu Wang 
395703df441SShengjiu Wang req_pair_err:
396703df441SShengjiu Wang 	if (release_pair)
397703df441SShengjiu Wang 		kfree(pair);
398703df441SShengjiu Wang 
399703df441SShengjiu Wang 	return ret;
4003117bb31SNicolin Chen }
4013117bb31SNicolin Chen 
4028903ed25SKuninori Morimoto static int fsl_asrc_dma_shutdown(struct snd_soc_component *component,
4038903ed25SKuninori Morimoto 				 struct snd_pcm_substream *substream)
4043117bb31SNicolin Chen {
4053117bb31SNicolin Chen 	struct snd_pcm_runtime *runtime = substream->runtime;
4063117bb31SNicolin Chen 	struct fsl_asrc_pair *pair = runtime->private_data;
4077470704dSShengjiu Wang 	struct fsl_asrc *asrc;
4083117bb31SNicolin Chen 
4096ccf62c7SNicolin Chen 	if (!pair)
4106ccf62c7SNicolin Chen 		return 0;
4116ccf62c7SNicolin Chen 
4127470704dSShengjiu Wang 	asrc = pair->asrc;
4136ccf62c7SNicolin Chen 
4147470704dSShengjiu Wang 	if (asrc->pair[pair->index] == pair)
4157470704dSShengjiu Wang 		asrc->pair[pair->index] = NULL;
4163117bb31SNicolin Chen 
4173117bb31SNicolin Chen 	kfree(pair);
4183117bb31SNicolin Chen 
4193117bb31SNicolin Chen 	return 0;
4203117bb31SNicolin Chen }
4213117bb31SNicolin Chen 
4228903ed25SKuninori Morimoto static snd_pcm_uframes_t
4238903ed25SKuninori Morimoto fsl_asrc_dma_pcm_pointer(struct snd_soc_component *component,
4248903ed25SKuninori Morimoto 			 struct snd_pcm_substream *substream)
4253117bb31SNicolin Chen {
4263117bb31SNicolin Chen 	struct snd_pcm_runtime *runtime = substream->runtime;
4273117bb31SNicolin Chen 	struct fsl_asrc_pair *pair = runtime->private_data;
4283117bb31SNicolin Chen 
4293117bb31SNicolin Chen 	return bytes_to_frames(substream->runtime, pair->pos);
4303117bb31SNicolin Chen }
4313117bb31SNicolin Chen 
4328903ed25SKuninori Morimoto static int fsl_asrc_dma_pcm_new(struct snd_soc_component *component,
4338903ed25SKuninori Morimoto 				struct snd_soc_pcm_runtime *rtd)
4343117bb31SNicolin Chen {
4353117bb31SNicolin Chen 	struct snd_card *card = rtd->card->snd_card;
4363117bb31SNicolin Chen 	struct snd_pcm *pcm = rtd->pcm;
4371855ce62STakashi Iwai 	int ret;
4383117bb31SNicolin Chen 
4393117bb31SNicolin Chen 	ret = dma_coerce_mask_and_coherent(card->dev, DMA_BIT_MASK(32));
4403117bb31SNicolin Chen 	if (ret) {
4413117bb31SNicolin Chen 		dev_err(card->dev, "failed to set DMA mask\n");
4423117bb31SNicolin Chen 		return ret;
4433117bb31SNicolin Chen 	}
4443117bb31SNicolin Chen 
4451855ce62STakashi Iwai 	return snd_pcm_set_fixed_buffer_all(pcm, SNDRV_DMA_TYPE_DEV,
4461855ce62STakashi Iwai 					    card->dev, FSL_ASRC_DMABUF_SIZE);
4473117bb31SNicolin Chen }
4483117bb31SNicolin Chen 
4497f110661SKuninori Morimoto struct snd_soc_component_driver fsl_asrc_component = {
4507f110661SKuninori Morimoto 	.name		= DRV_NAME,
4518903ed25SKuninori Morimoto 	.hw_params	= fsl_asrc_dma_hw_params,
4528903ed25SKuninori Morimoto 	.hw_free	= fsl_asrc_dma_hw_free,
4538903ed25SKuninori Morimoto 	.trigger	= fsl_asrc_dma_trigger,
4548903ed25SKuninori Morimoto 	.open		= fsl_asrc_dma_startup,
4558903ed25SKuninori Morimoto 	.close		= fsl_asrc_dma_shutdown,
4568903ed25SKuninori Morimoto 	.pointer	= fsl_asrc_dma_pcm_pointer,
4578903ed25SKuninori Morimoto 	.pcm_construct	= fsl_asrc_dma_pcm_new,
4583117bb31SNicolin Chen };
4597f110661SKuninori Morimoto EXPORT_SYMBOL_GPL(fsl_asrc_component);
460