]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - include/sound/dmaengine_pcm.h
ASoC: tegra: Remove redundant initialisation of compat_filter_fn
[mirror_ubuntu-artful-kernel.git] / include / sound / dmaengine_pcm.h
CommitLineData
e7f73a16
LPC
1/*
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>
c999836d 19#include <sound/soc.h>
e7f73a16
LPC
20#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
e7f73a16
LPC
36int 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);
3528f27a 39snd_pcm_uframes_t snd_dmaengine_pcm_pointer(struct snd_pcm_substream *substream);
9883ab22 40snd_pcm_uframes_t snd_dmaengine_pcm_pointer_no_residue(struct snd_pcm_substream *substream);
e7f73a16
LPC
41
42int snd_dmaengine_pcm_open(struct snd_pcm_substream *substream,
7c1c1d4a 43 struct dma_chan *chan);
e7f73a16
LPC
44int snd_dmaengine_pcm_close(struct snd_pcm_substream *substream);
45
7c1c1d4a
LPC
46int 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
c999836d
LPC
50struct dma_chan *snd_dmaengine_pcm_request_channel(dma_filter_fn filter_fn,
51 void *filter_data);
e7f73a16
LPC
52struct dma_chan *snd_dmaengine_pcm_get_chan(struct snd_pcm_substream *substream);
53
85c9f9c5
LPC
54/**
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.
c0de42bf 64 * @fifo_size: FIFO size of the DAI controller in bytes
85c9f9c5
LPC
65 */
66struct snd_dmaengine_dai_dma_data {
67 dma_addr_t addr;
68 enum dma_slave_buswidth addr_width;
69 u32 maxburst;
70 unsigned int slave_id;
71 void *filter_data;
c0de42bf 72 unsigned int fifo_size;
85c9f9c5
LPC
73};
74
75void snd_dmaengine_pcm_set_config_from_dai_data(
76 const struct snd_pcm_substream *substream,
77 const struct snd_dmaengine_dai_dma_data *dma_data,
78 struct dma_slave_config *config);
79
c999836d
LPC
80
81/*
82 * Try to request the DMA channel using compat_request_channel or
83 * compat_filter_fn if it couldn't be requested through devicetree.
84 */
85#define SND_DMAENGINE_PCM_FLAG_COMPAT BIT(0)
86/*
87 * Don't try to request the DMA channels through devicetree. This flag only
88 * makes sense if SND_DMAENGINE_PCM_FLAG_COMPAT is set as well.
89 */
90#define SND_DMAENGINE_PCM_FLAG_NO_DT BIT(1)
610f7800 91/*
22f38f79 92 * The platforms dmaengine driver does not support reporting the amount of
610f7800
LPC
93 * bytes that are still left to transfer.
94 */
95#define SND_DMAENGINE_PCM_FLAG_NO_RESIDUE BIT(2)
d1e1406c
LPC
96/*
97 * The PCM is half duplex and the DMA channel is shared between capture and
98 * playback.
99 */
100#define SND_DMAENGINE_PCM_FLAG_HALF_DUPLEX BIT(3)
c999836d 101
28c4468b
LPC
102/**
103 * struct snd_dmaengine_pcm_config - Configuration data for dmaengine based PCM
104 * @prepare_slave_config: Callback used to fill in the DMA slave_config for a
105 * PCM substream. Will be called from the PCM drivers hwparams callback.
c999836d
LPC
106 * @compat_request_channel: Callback to request a DMA channel for platforms
107 * which do not use devicetree.
108 * @compat_filter_fn: Will be used as the filter function when requesting a
109 * channel for platforms which do not use devicetree. The filter parameter
110 * will be the DAI's DMA data.
28c4468b
LPC
111 * @pcm_hardware: snd_pcm_hardware struct to be used for the PCM.
112 * @prealloc_buffer_size: Size of the preallocated audio buffer.
c999836d
LPC
113 *
114 * Note: If both compat_request_channel and compat_filter_fn are set
115 * compat_request_channel will be used to request the channel and
116 * compat_filter_fn will be ignored. Otherwise the channel will be requested
117 * using dma_request_channel with compat_filter_fn as the filter function.
28c4468b
LPC
118 */
119struct snd_dmaengine_pcm_config {
120 int (*prepare_slave_config)(struct snd_pcm_substream *substream,
121 struct snd_pcm_hw_params *params,
122 struct dma_slave_config *slave_config);
c999836d
LPC
123 struct dma_chan *(*compat_request_channel)(
124 struct snd_soc_pcm_runtime *rtd,
125 struct snd_pcm_substream *substream);
126 dma_filter_fn compat_filter_fn;
28c4468b
LPC
127
128 const struct snd_pcm_hardware *pcm_hardware;
129 unsigned int prealloc_buffer_size;
130};
131
132int snd_dmaengine_pcm_register(struct device *dev,
133 const struct snd_dmaengine_pcm_config *config,
134 unsigned int flags);
135void snd_dmaengine_pcm_unregister(struct device *dev);
136
137int snd_dmaengine_pcm_prepare_slave_config(struct snd_pcm_substream *substream,
138 struct snd_pcm_hw_params *params,
139 struct dma_slave_config *slave_config);
140
e7f73a16 141#endif