Commit 500c9f8c authored by Shengjiu Wang's avatar Shengjiu Wang Committed by Mark Brown

ASoC: dmaengine_pcm: add peripheral configuration

The commit e7bbb7ac ("dmaengine: add peripheral configuration")
adds peripheral configuration for dma_slave_config.

This configuration is useful for some audio peripherals, for
example, the peripheral supports multi fifos, we can
let the DMA know which fifos are selected. So also add
this configuration for snd_dmaengine_dai_dma_data.
Signed-off-by: default avatarShengjiu Wang <shengjiu.wang@nxp.com>
Link: https://lore.kernel.org/r/1612509985-11063-1-git-send-email-shengjiu.wang@nxp.comSigned-off-by: default avatarMark Brown <broonie@kernel.org>
parent b6040f9b
...@@ -66,6 +66,9 @@ struct dma_chan *snd_dmaengine_pcm_get_chan(struct snd_pcm_substream *substream) ...@@ -66,6 +66,9 @@ struct dma_chan *snd_dmaengine_pcm_get_chan(struct snd_pcm_substream *substream)
* @chan_name: Custom channel name to use when requesting DMA channel. * @chan_name: Custom channel name to use when requesting DMA channel.
* @fifo_size: FIFO size of the DAI controller in bytes * @fifo_size: FIFO size of the DAI controller in bytes
* @flags: PCM_DAI flags, only SND_DMAENGINE_PCM_DAI_FLAG_PACK for now * @flags: PCM_DAI flags, only SND_DMAENGINE_PCM_DAI_FLAG_PACK for now
* @peripheral_config: peripheral configuration for programming peripheral
* for dmaengine transfer
* @peripheral_size: peripheral configuration buffer size
*/ */
struct snd_dmaengine_dai_dma_data { struct snd_dmaengine_dai_dma_data {
dma_addr_t addr; dma_addr_t addr;
...@@ -76,6 +79,8 @@ struct snd_dmaengine_dai_dma_data { ...@@ -76,6 +79,8 @@ struct snd_dmaengine_dai_dma_data {
const char *chan_name; const char *chan_name;
unsigned int fifo_size; unsigned int fifo_size;
unsigned int flags; unsigned int flags;
void *peripheral_config;
size_t peripheral_size;
}; };
void snd_dmaengine_pcm_set_config_from_dai_data( void snd_dmaengine_pcm_set_config_from_dai_data(
......
...@@ -125,6 +125,8 @@ void snd_dmaengine_pcm_set_config_from_dai_data( ...@@ -125,6 +125,8 @@ void snd_dmaengine_pcm_set_config_from_dai_data(
} }
slave_config->slave_id = dma_data->slave_id; slave_config->slave_id = dma_data->slave_id;
slave_config->peripheral_config = dma_data->peripheral_config;
slave_config->peripheral_size = dma_data->peripheral_size;
} }
EXPORT_SYMBOL_GPL(snd_dmaengine_pcm_set_config_from_dai_data); EXPORT_SYMBOL_GPL(snd_dmaengine_pcm_set_config_from_dai_data);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment