blob: eb73a3a39ec2fbb9a3b4aef39ff65e21af9d51b4 [file] [log] [blame]
Lars-Peter Clausene7f73a12012-02-22 10:49:08 +01001/*
2 * Copyright (C) 2012, Analog Devices Inc.
3 * Author: Lars-Peter Clausen <lars@metafoo.de>
4 *
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License as published by the
7 * Free Software Foundation; either version 2 of the License, or (at your
8 * option) any later version.
9 *
10 * You should have received a copy of the GNU General Public License along
11 * with this program; if not, write to the Free Software Foundation, Inc.,
12 * 675 Mass Ave, Cambridge, MA 02139, USA.
13 *
14 */
15#ifndef __SOUND_DMAENGINE_PCM_H__
16#define __SOUND_DMAENGINE_PCM_H__
17
18#include <sound/pcm.h>
Lars-Peter Clausenc9998362013-04-15 19:19:51 +020019#include <sound/soc.h>
Lars-Peter Clausene7f73a12012-02-22 10:49:08 +010020#include <linux/dmaengine.h>
21
22/**
23 * snd_pcm_substream_to_dma_direction - Get dma_transfer_direction for a PCM
24 * substream
25 * @substream: PCM substream
26 */
27static inline enum dma_transfer_direction
28snd_pcm_substream_to_dma_direction(const struct snd_pcm_substream *substream)
29{
30 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
31 return DMA_MEM_TO_DEV;
32 else
33 return DMA_DEV_TO_MEM;
34}
35
Lars-Peter Clausene7f73a12012-02-22 10:49:08 +010036int snd_hwparams_to_dma_slave_config(const struct snd_pcm_substream *substream,
37 const struct snd_pcm_hw_params *params, struct dma_slave_config *slave_config);
38int snd_dmaengine_pcm_trigger(struct snd_pcm_substream *substream, int cmd);
Lars-Peter Clausen3528f272012-06-11 20:11:42 +020039snd_pcm_uframes_t snd_dmaengine_pcm_pointer(struct snd_pcm_substream *substream);
Lars-Peter Clausen9883ab22012-06-11 20:11:41 +020040snd_pcm_uframes_t snd_dmaengine_pcm_pointer_no_residue(struct snd_pcm_substream *substream);
Lars-Peter Clausene7f73a12012-02-22 10:49:08 +010041
42int snd_dmaengine_pcm_open(struct snd_pcm_substream *substream,
Lars-Peter Clausen7c1c1d42013-04-15 19:19:48 +020043 struct dma_chan *chan);
Lars-Peter Clausene7f73a12012-02-22 10:49:08 +010044int snd_dmaengine_pcm_close(struct snd_pcm_substream *substream);
45
Lars-Peter Clausen7c1c1d42013-04-15 19:19:48 +020046int snd_dmaengine_pcm_open_request_chan(struct snd_pcm_substream *substream,
47 dma_filter_fn filter_fn, void *filter_data);
48int snd_dmaengine_pcm_close_release_chan(struct snd_pcm_substream *substream);
49
Lars-Peter Clausenc9998362013-04-15 19:19:51 +020050struct dma_chan *snd_dmaengine_pcm_request_channel(dma_filter_fn filter_fn,
51 void *filter_data);
Lars-Peter Clausene7f73a12012-02-22 10:49:08 +010052struct dma_chan *snd_dmaengine_pcm_get_chan(struct snd_pcm_substream *substream);
53
Lars-Peter Clausen85c9f9c2013-04-03 11:06:02 +020054/**
55 * struct snd_dmaengine_dai_dma_data - DAI DMA configuration data
56 * @addr: Address of the DAI data source or destination register.
57 * @addr_width: Width of the DAI data source or destination register.
58 * @maxburst: Maximum number of words(note: words, as in units of the
59 * src_addr_width member, not bytes) that can be send to or received from the
60 * DAI in one burst.
61 * @slave_id: Slave requester id for the DMA channel.
62 * @filter_data: Custom DMA channel filter data, this will usually be used when
63 * requesting the DMA channel.
Mark Brownea73b7d2013-10-19 17:43:51 +010064 * @chan_name: Custom channel name to use when requesting DMA channel.
Lars-Peter Clausenc0de42b2013-10-08 15:07:59 +020065 * @fifo_size: FIFO size of the DAI controller in bytes
Lars-Peter Clausen85c9f9c2013-04-03 11:06:02 +020066 */
67struct snd_dmaengine_dai_dma_data {
68 dma_addr_t addr;
69 enum dma_slave_buswidth addr_width;
70 u32 maxburst;
71 unsigned int slave_id;
72 void *filter_data;
Mark Brownea73b7d2013-10-19 17:43:51 +010073 const char *chan_name;
Lars-Peter Clausenc0de42b2013-10-08 15:07:59 +020074 unsigned int fifo_size;
Lars-Peter Clausen85c9f9c2013-04-03 11:06:02 +020075};
76
77void snd_dmaengine_pcm_set_config_from_dai_data(
78 const struct snd_pcm_substream *substream,
79 const struct snd_dmaengine_dai_dma_data *dma_data,
80 struct dma_slave_config *config);
81
Lars-Peter Clausenc9998362013-04-15 19:19:51 +020082
83/*
84 * Try to request the DMA channel using compat_request_channel or
85 * compat_filter_fn if it couldn't be requested through devicetree.
86 */
87#define SND_DMAENGINE_PCM_FLAG_COMPAT BIT(0)
88/*
89 * Don't try to request the DMA channels through devicetree. This flag only
90 * makes sense if SND_DMAENGINE_PCM_FLAG_COMPAT is set as well.
91 */
92#define SND_DMAENGINE_PCM_FLAG_NO_DT BIT(1)
Lars-Peter Clausen610f7802013-04-15 19:19:55 +020093/*
Lars-Peter Clausen22f38f72013-04-15 19:20:04 +020094 * The platforms dmaengine driver does not support reporting the amount of
Lars-Peter Clausen610f7802013-04-15 19:19:55 +020095 * bytes that are still left to transfer.
96 */
97#define SND_DMAENGINE_PCM_FLAG_NO_RESIDUE BIT(2)
Lars-Peter Clausend1e14062013-04-20 19:29:00 +020098/*
99 * The PCM is half duplex and the DMA channel is shared between capture and
100 * playback.
101 */
102#define SND_DMAENGINE_PCM_FLAG_HALF_DUPLEX BIT(3)
Mark Brownea73b7d2013-10-19 17:43:51 +0100103/*
104 * The PCM streams have custom channel names specified.
105 */
106#define SND_DMAENGINE_PCM_FLAG_CUSTOM_CHANNEL_NAME BIT(4)
Lars-Peter Clausenc9998362013-04-15 19:19:51 +0200107
Lars-Peter Clausen28c44682013-04-15 19:19:50 +0200108/**
109 * struct snd_dmaengine_pcm_config - Configuration data for dmaengine based PCM
110 * @prepare_slave_config: Callback used to fill in the DMA slave_config for a
111 * PCM substream. Will be called from the PCM drivers hwparams callback.
Lars-Peter Clausenc9998362013-04-15 19:19:51 +0200112 * @compat_request_channel: Callback to request a DMA channel for platforms
113 * which do not use devicetree.
114 * @compat_filter_fn: Will be used as the filter function when requesting a
115 * channel for platforms which do not use devicetree. The filter parameter
116 * will be the DAI's DMA data.
Stephen Warren194c7de2013-12-03 14:26:34 -0700117 * @dma_dev: If set, request DMA channel on this device rather than the DAI
118 * device.
119 * @chan_names: If set, these custom DMA channel names will be requested at
120 * registration time.
Lars-Peter Clausen28c44682013-04-15 19:19:50 +0200121 * @pcm_hardware: snd_pcm_hardware struct to be used for the PCM.
122 * @prealloc_buffer_size: Size of the preallocated audio buffer.
Lars-Peter Clausenc9998362013-04-15 19:19:51 +0200123 *
124 * Note: If both compat_request_channel and compat_filter_fn are set
125 * compat_request_channel will be used to request the channel and
126 * compat_filter_fn will be ignored. Otherwise the channel will be requested
127 * using dma_request_channel with compat_filter_fn as the filter function.
Lars-Peter Clausen28c44682013-04-15 19:19:50 +0200128 */
129struct snd_dmaengine_pcm_config {
130 int (*prepare_slave_config)(struct snd_pcm_substream *substream,
131 struct snd_pcm_hw_params *params,
132 struct dma_slave_config *slave_config);
Lars-Peter Clausenc9998362013-04-15 19:19:51 +0200133 struct dma_chan *(*compat_request_channel)(
134 struct snd_soc_pcm_runtime *rtd,
135 struct snd_pcm_substream *substream);
136 dma_filter_fn compat_filter_fn;
Stephen Warren194c7de2013-12-03 14:26:34 -0700137 struct device *dma_dev;
138 const char *chan_names[SNDRV_PCM_STREAM_LAST + 1];
Lars-Peter Clausen28c44682013-04-15 19:19:50 +0200139
140 const struct snd_pcm_hardware *pcm_hardware;
141 unsigned int prealloc_buffer_size;
142};
143
144int snd_dmaengine_pcm_register(struct device *dev,
145 const struct snd_dmaengine_pcm_config *config,
146 unsigned int flags);
147void snd_dmaengine_pcm_unregister(struct device *dev);
148
Lars-Peter Clausen21585ee2013-11-28 08:50:32 +0100149int devm_snd_dmaengine_pcm_register(struct device *dev,
150 const struct snd_dmaengine_pcm_config *config,
151 unsigned int flags);
152
Lars-Peter Clausen28c44682013-04-15 19:19:50 +0200153int snd_dmaengine_pcm_prepare_slave_config(struct snd_pcm_substream *substream,
154 struct snd_pcm_hw_params *params,
155 struct dma_slave_config *slave_config);
156
Lars-Peter Clausene7f73a12012-02-22 10:49:08 +0100157#endif