static int sunxi_pcm_open(struct snd_pcm_substream *substream) { struct snd_soc_pcm_runtime *rtd = substream->private_data; struct device *dev = rtd->platform->dev; int ret = 0; if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) { /* Set HW params now that initialization is complete */ snd_soc_set_runtime_hwparams(substream, &sunxi_pcm_play_hardware); ret = snd_dmaengine_pcm_open(substream, NULL, NULL); if (ret) { dev_err(dev, "dmaengine pcm open failed with err %d\n", ret); return ret; } } else { /* Set HW params now that initialization is complete */ snd_soc_set_runtime_hwparams(substream, &sunxi_pcm_capture_hardware); ret = snd_dmaengine_pcm_open(substream, NULL, NULL); if (ret) { dev_err(dev, "dmaengine pcm open failed with err %d\n", ret); return ret; } } return 0; }
static int sunxi_pcm_open(struct snd_pcm_substream *substream) { int ret = 0; struct snd_soc_pcm_runtime *rtd = substream->private_data; struct device *dev = rtd->platform->dev; if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) { /* Set HW params now that initialization is complete */ snd_soc_set_runtime_hwparams(substream, &sunxi_pcm_play_hardware); ret = snd_pcm_hw_constraint_integer(substream->runtime, SNDRV_PCM_HW_PARAM_PERIODS); if (ret < 0) return ret; #ifdef CONFIG_ARCH_SUN9IW1 ret = snd_dmaengine_pcm_open(substream, sunxi_rdma_filter_fn, (void *)SUNXI_RDMA_DRV); #else ret = snd_dmaengine_pcm_open(substream, NULL, NULL); #endif if (ret) { dev_err(dev, "dmaengine pcm open failed with err %d\n", ret); } } else { /* Set HW params now that initialization is complete */ snd_soc_set_runtime_hwparams(substream, &sunxi_pcm_capture_hardware); ret = snd_pcm_hw_constraint_integer(substream->runtime, SNDRV_PCM_HW_PARAM_PERIODS); if (ret < 0) return ret; #ifdef CONFIG_ARCH_SUN9IW1 ret = snd_dmaengine_pcm_open(substream, sunxi_rdma_filter_fn, SUNXI_RDMA_DRV); #else ret = snd_dmaengine_pcm_open(substream, NULL, NULL); #endif if (ret) { dev_err(dev, "dmaengine pcm open failed with err %d\n", ret); } } return 0; }
static int tegra_pcm_open(struct snd_pcm_substream *substream) { struct snd_soc_pcm_runtime *rtd = substream->private_data; struct device *dev = rtd->platform->dev; int ret; /* Set HW params now that initialization is complete */ snd_soc_set_runtime_hwparams(substream, &tegra_pcm_hardware); ret = snd_dmaengine_pcm_open(substream, NULL, NULL); if (ret) { dev_err(dev, "dmaengine pcm open failed with err %d\n", ret); return ret; } return 0; }
static int omap_pcm_open(struct snd_pcm_substream *substream) { struct snd_soc_pcm_runtime *rtd = substream->private_data; struct snd_dmaengine_dai_dma_data *dma_data; int ret; snd_soc_set_runtime_hwparams(substream, &omap_pcm_hardware); dma_data = snd_soc_dai_get_dma_data(rtd->cpu_dai, substream); /* DT boot: filter_data is the DMA name */ if (rtd->cpu_dai->dev->of_node) { struct dma_chan *chan; chan = dma_request_slave_channel(rtd->cpu_dai->dev, dma_data->filter_data); ret = snd_dmaengine_pcm_open(substream, chan); } else { ret = snd_dmaengine_pcm_open_request_chan(substream, omap_dma_filter_fn, dma_data->filter_data); } return ret; }
/** * snd_dmaengine_pcm_open_request_chan - Open a dmaengine based PCM substream and request channel * @substream: PCM substream * @filter_fn: Filter function used to request the DMA channel * @filter_data: Data passed to the DMA filter function * * Returns 0 on success, a negative error code otherwise. * * This function will request a DMA channel using the passed filter function and * data. The function should usually be called from the pcm open callback. Note * that this function will use private_data field of the substream's runtime. So * it is not availabe to your pcm driver implementation. */ int snd_dmaengine_pcm_open_request_chan(struct snd_pcm_substream *substream, dma_filter_fn filter_fn, void *filter_data) { return snd_dmaengine_pcm_open(substream, snd_dmaengine_pcm_request_channel(filter_fn, filter_data)); }
static int ux500_pcm_open(struct snd_pcm_substream *substream) { int stream_id = substream->pstr->stream; struct snd_pcm_runtime *runtime = substream->runtime; struct snd_soc_pcm_runtime *rtd = substream->private_data; struct snd_soc_dai *dai = rtd->cpu_dai; struct device *dev = dai->dev; int ret; struct ux500_msp_dma_params *dma_params; u16 per_data_width, mem_data_width; struct stedma40_chan_cfg *dma_cfg; dev_dbg(dev, "%s: MSP %d (%s): Enter.\n", __func__, dai->id, snd_pcm_stream_str(substream)); dev_dbg(dev, "%s: Set runtime hwparams.\n", __func__); if (stream_id == SNDRV_PCM_STREAM_PLAYBACK) snd_soc_set_runtime_hwparams(substream, &ux500_pcm_hw_playback); else snd_soc_set_runtime_hwparams(substream, &ux500_pcm_hw_capture); /* ensure that buffer size is a multiple of period size */ ret = snd_pcm_hw_constraint_integer(runtime, SNDRV_PCM_HW_PARAM_PERIODS); if (ret < 0) { dev_err(dev, "%s: Error: snd_pcm_hw_constraints failed (%d)\n", __func__, ret); return ret; } dev_dbg(dev, "%s: Set hw-struct for %s.\n", __func__, snd_pcm_stream_str(substream)); runtime->hw = (stream_id == SNDRV_PCM_STREAM_PLAYBACK) ? ux500_pcm_hw_playback : ux500_pcm_hw_capture; mem_data_width = STEDMA40_HALFWORD_WIDTH; dma_params = snd_soc_dai_get_dma_data(dai, substream); switch (dma_params->data_size) { case 32: per_data_width = STEDMA40_WORD_WIDTH; break; case 16: per_data_width = STEDMA40_HALFWORD_WIDTH; break; case 8: per_data_width = STEDMA40_BYTE_WIDTH; break; default: per_data_width = STEDMA40_WORD_WIDTH; dev_warn(rtd->platform->dev, "%s: Unknown data-size (%d)! Assuming 32 bits.\n", __func__, dma_params->data_size); } dma_cfg = dma_params->dma_cfg; if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) { dma_cfg->src_info.data_width = mem_data_width; dma_cfg->dst_info.data_width = per_data_width; } else { dma_cfg->src_info.data_width = per_data_width; dma_cfg->dst_info.data_width = mem_data_width; } ret = snd_dmaengine_pcm_open(substream, stedma40_filter, dma_cfg); if (ret) { dev_dbg(dai->dev, "%s: ERROR: snd_dmaengine_pcm_open failed (%d)!\n", __func__, ret); return ret; } snd_dmaengine_pcm_set_data(substream, dma_cfg); return 0; }