blob: 38ea046e653c5f50488c90193f2a3112f006f37c [file] [log] [blame]
Kuninori Morimoto1356a602018-07-02 06:25:11 +00001/* SPDX-License-Identifier: GPL-2.0+
2 *
Lars-Peter Clausene7f73a12012-02-22 10:49:08 +01003 * Copyright (C) 2012, Analog Devices Inc.
4 * Author: Lars-Peter Clausen <lars@metafoo.de>
Lars-Peter Clausene7f73a12012-02-22 10:49:08 +01005 */
Kuninori Morimoto1356a602018-07-02 06:25:11 +00006
Lars-Peter Clausene7f73a12012-02-22 10:49:08 +01007#ifndef __SOUND_DMAENGINE_PCM_H__
8#define __SOUND_DMAENGINE_PCM_H__
9
10#include <sound/pcm.h>
Lars-Peter Clausenc9998362013-04-15 19:19:51 +020011#include <sound/soc.h>
Lars-Peter Clausene7f73a12012-02-22 10:49:08 +010012#include <linux/dmaengine.h>
13
14/**
15 * snd_pcm_substream_to_dma_direction - Get dma_transfer_direction for a PCM
16 * substream
17 * @substream: PCM substream
18 */
19static inline enum dma_transfer_direction
20snd_pcm_substream_to_dma_direction(const struct snd_pcm_substream *substream)
21{
22 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
23 return DMA_MEM_TO_DEV;
24 else
25 return DMA_DEV_TO_MEM;
26}
27
Lars-Peter Clausene7f73a12012-02-22 10:49:08 +010028int snd_hwparams_to_dma_slave_config(const struct snd_pcm_substream *substream,
29 const struct snd_pcm_hw_params *params, struct dma_slave_config *slave_config);
30int snd_dmaengine_pcm_trigger(struct snd_pcm_substream *substream, int cmd);
Lars-Peter Clausen3528f272012-06-11 20:11:42 +020031snd_pcm_uframes_t snd_dmaengine_pcm_pointer(struct snd_pcm_substream *substream);
Lars-Peter Clausen9883ab22012-06-11 20:11:41 +020032snd_pcm_uframes_t snd_dmaengine_pcm_pointer_no_residue(struct snd_pcm_substream *substream);
Lars-Peter Clausene7f73a12012-02-22 10:49:08 +010033
34int snd_dmaengine_pcm_open(struct snd_pcm_substream *substream,
Lars-Peter Clausen7c1c1d42013-04-15 19:19:48 +020035 struct dma_chan *chan);
Lars-Peter Clausene7f73a12012-02-22 10:49:08 +010036int snd_dmaengine_pcm_close(struct snd_pcm_substream *substream);
37
Lars-Peter Clausen7c1c1d42013-04-15 19:19:48 +020038int snd_dmaengine_pcm_open_request_chan(struct snd_pcm_substream *substream,
39 dma_filter_fn filter_fn, void *filter_data);
40int snd_dmaengine_pcm_close_release_chan(struct snd_pcm_substream *substream);
41
Lars-Peter Clausenc9998362013-04-15 19:19:51 +020042struct dma_chan *snd_dmaengine_pcm_request_channel(dma_filter_fn filter_fn,
43 void *filter_data);
Lars-Peter Clausene7f73a12012-02-22 10:49:08 +010044struct dma_chan *snd_dmaengine_pcm_get_chan(struct snd_pcm_substream *substream);
45
Matthias Reichl73fe01c2016-04-27 15:26:51 +020046/*
47 * The DAI supports packed transfers, eg 2 16-bit samples in a 32-bit word.
48 * If this flag is set the dmaengine driver won't put any restriction on
49 * the supported sample formats and set the DMA transfer size to undefined.
50 * The DAI driver is responsible to disable any unsupported formats in it's
51 * configuration and catch corner cases that are not already handled in
52 * the ALSA core.
53 */
54#define SND_DMAENGINE_PCM_DAI_FLAG_PACK BIT(0)
55
Lars-Peter Clausen85c9f9c2013-04-03 11:06:02 +020056/**
57 * struct snd_dmaengine_dai_dma_data - DAI DMA configuration data
58 * @addr: Address of the DAI data source or destination register.
59 * @addr_width: Width of the DAI data source or destination register.
60 * @maxburst: Maximum number of words(note: words, as in units of the
61 * src_addr_width member, not bytes) that can be send to or received from the
62 * DAI in one burst.
Lars-Peter Clausen85c9f9c2013-04-03 11:06:02 +020063 * @filter_data: Custom DMA channel filter data, this will usually be used when
64 * requesting the DMA channel.
Sylwester Nawrocki9bfa24e2017-01-17 14:16:41 +010065 * @chan_name: Custom channel name to use when requesting DMA channel.
Lars-Peter Clausenc0de42b2013-10-08 15:07:59 +020066 * @fifo_size: FIFO size of the DAI controller in bytes
Matthias Reichl73fe01c2016-04-27 15:26:51 +020067 * @flags: PCM_DAI flags, only SND_DMAENGINE_PCM_DAI_FLAG_PACK for now
Shengjiu Wang500c9f82021-02-05 15:26:25 +080068 * @peripheral_config: peripheral configuration for programming peripheral
69 * for dmaengine transfer
70 * @peripheral_size: peripheral configuration buffer size
Lars-Peter Clausen85c9f9c2013-04-03 11:06:02 +020071 */
72struct snd_dmaengine_dai_dma_data {
73 dma_addr_t addr;
74 enum dma_slave_buswidth addr_width;
75 u32 maxburst;
Lars-Peter Clausen85c9f9c2013-04-03 11:06:02 +020076 void *filter_data;
Sylwester Nawrocki9bfa24e2017-01-17 14:16:41 +010077 const char *chan_name;
Lars-Peter Clausenc0de42b2013-10-08 15:07:59 +020078 unsigned int fifo_size;
Matthias Reichl73fe01c2016-04-27 15:26:51 +020079 unsigned int flags;
Shengjiu Wang500c9f82021-02-05 15:26:25 +080080 void *peripheral_config;
81 size_t peripheral_size;
Lars-Peter Clausen85c9f9c2013-04-03 11:06:02 +020082};
83
84void snd_dmaengine_pcm_set_config_from_dai_data(
85 const struct snd_pcm_substream *substream,
86 const struct snd_dmaengine_dai_dma_data *dma_data,
87 struct dma_slave_config *config);
88
Shengjiu Wange9572042019-09-27 09:46:11 +080089int snd_dmaengine_pcm_refine_runtime_hwparams(
90 struct snd_pcm_substream *substream,
91 struct snd_dmaengine_dai_dma_data *dma_data,
92 struct snd_pcm_hardware *hw,
93 struct dma_chan *chan);
Lars-Peter Clausenc9998362013-04-15 19:19:51 +020094
95/*
96 * Try to request the DMA channel using compat_request_channel or
97 * compat_filter_fn if it couldn't be requested through devicetree.
98 */
99#define SND_DMAENGINE_PCM_FLAG_COMPAT BIT(0)
100/*
101 * Don't try to request the DMA channels through devicetree. This flag only
102 * makes sense if SND_DMAENGINE_PCM_FLAG_COMPAT is set as well.
103 */
104#define SND_DMAENGINE_PCM_FLAG_NO_DT BIT(1)
Lars-Peter Clausen610f7802013-04-15 19:19:55 +0200105/*
Lars-Peter Clausend1e14062013-04-20 19:29:00 +0200106 * The PCM is half duplex and the DMA channel is shared between capture and
107 * playback.
108 */
109#define SND_DMAENGINE_PCM_FLAG_HALF_DUPLEX BIT(3)
Lars-Peter Clausenc9998362013-04-15 19:19:51 +0200110
Lars-Peter Clausen28c44682013-04-15 19:19:50 +0200111/**
112 * struct snd_dmaengine_pcm_config - Configuration data for dmaengine based PCM
113 * @prepare_slave_config: Callback used to fill in the DMA slave_config for a
114 * PCM substream. Will be called from the PCM drivers hwparams callback.
Lars-Peter Clausenc9998362013-04-15 19:19:51 +0200115 * @compat_request_channel: Callback to request a DMA channel for platforms
116 * which do not use devicetree.
Olivier Moysan2e78a552018-03-13 17:27:08 +0100117 * @process: Callback used to apply processing on samples transferred from/to
118 * user space.
Lars-Peter Clausenc9998362013-04-15 19:19:51 +0200119 * @compat_filter_fn: Will be used as the filter function when requesting a
120 * channel for platforms which do not use devicetree. The filter parameter
121 * will be the DAI's DMA data.
Stephen Warren194c7de2013-12-03 14:26:34 -0700122 * @dma_dev: If set, request DMA channel on this device rather than the DAI
123 * device.
124 * @chan_names: If set, these custom DMA channel names will be requested at
125 * registration time.
Lars-Peter Clausen28c44682013-04-15 19:19:50 +0200126 * @pcm_hardware: snd_pcm_hardware struct to be used for the PCM.
127 * @prealloc_buffer_size: Size of the preallocated audio buffer.
Lars-Peter Clausenc9998362013-04-15 19:19:51 +0200128 *
129 * Note: If both compat_request_channel and compat_filter_fn are set
130 * compat_request_channel will be used to request the channel and
131 * compat_filter_fn will be ignored. Otherwise the channel will be requested
132 * using dma_request_channel with compat_filter_fn as the filter function.
Lars-Peter Clausen28c44682013-04-15 19:19:50 +0200133 */
134struct snd_dmaengine_pcm_config {
135 int (*prepare_slave_config)(struct snd_pcm_substream *substream,
136 struct snd_pcm_hw_params *params,
137 struct dma_slave_config *slave_config);
Lars-Peter Clausenc9998362013-04-15 19:19:51 +0200138 struct dma_chan *(*compat_request_channel)(
139 struct snd_soc_pcm_runtime *rtd,
140 struct snd_pcm_substream *substream);
Olivier Moysan78648092018-02-19 16:00:36 +0100141 int (*process)(struct snd_pcm_substream *substream,
142 int channel, unsigned long hwoff,
143 void *buf, unsigned long bytes);
Lars-Peter Clausenc9998362013-04-15 19:19:51 +0200144 dma_filter_fn compat_filter_fn;
Stephen Warren194c7de2013-12-03 14:26:34 -0700145 struct device *dma_dev;
146 const char *chan_names[SNDRV_PCM_STREAM_LAST + 1];
Lars-Peter Clausen28c44682013-04-15 19:19:50 +0200147
148 const struct snd_pcm_hardware *pcm_hardware;
149 unsigned int prealloc_buffer_size;
150};
151
152int snd_dmaengine_pcm_register(struct device *dev,
153 const struct snd_dmaengine_pcm_config *config,
154 unsigned int flags);
155void snd_dmaengine_pcm_unregister(struct device *dev);
156
Lars-Peter Clausen21585ee2013-11-28 08:50:32 +0100157int devm_snd_dmaengine_pcm_register(struct device *dev,
158 const struct snd_dmaengine_pcm_config *config,
159 unsigned int flags);
160
Lars-Peter Clausen28c44682013-04-15 19:19:50 +0200161int snd_dmaengine_pcm_prepare_slave_config(struct snd_pcm_substream *substream,
162 struct snd_pcm_hw_params *params,
163 struct dma_slave_config *slave_config);
164
Kuninori Morimotobe7ee5f2018-01-29 02:41:09 +0000165#define SND_DMAENGINE_PCM_DRV_NAME "snd_dmaengine_pcm"
166
Shengjiu Wanga9a21e12020-06-12 15:37:49 +0800167struct dmaengine_pcm {
168 struct dma_chan *chan[SNDRV_PCM_STREAM_LAST + 1];
169 const struct snd_dmaengine_pcm_config *config;
170 struct snd_soc_component component;
171 unsigned int flags;
172};
173
174static inline struct dmaengine_pcm *soc_component_to_pcm(struct snd_soc_component *p)
175{
176 return container_of(p, struct dmaengine_pcm, component);
177}
Lars-Peter Clausene7f73a12012-02-22 10:49:08 +0100178#endif