blob: b41fffc056fbec0ec583256d3b336a9d3520b73f [file] [log] [blame]
Dong Aishenged6e1d02011-07-21 12:36:55 +08001/*
2 * Copyright (C) 2011 Freescale Semiconductor, Inc. All Rights Reserved.
3 *
4 * Based on sound/soc/imx/imx-pcm-dma-mx2.c
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License along
17 * with this program; if not, write to the Free Software Foundation, Inc.,
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19 */
20
Dong Aishenged6e1d02011-07-21 12:36:55 +080021#include <linux/device.h>
Dong Aishenged6e1d02011-07-21 12:36:55 +080022#include <linux/init.h>
Dong Aishenged6e1d02011-07-21 12:36:55 +080023#include <linux/module.h>
Dong Aishenged6e1d02011-07-21 12:36:55 +080024
25#include <sound/core.h>
Dong Aishenged6e1d02011-07-21 12:36:55 +080026#include <sound/pcm.h>
Dong Aishenged6e1d02011-07-21 12:36:55 +080027#include <sound/soc.h>
Lars-Peter Clausen016ab462012-02-22 10:49:10 +010028#include <sound/dmaengine_pcm.h>
Dong Aishenged6e1d02011-07-21 12:36:55 +080029
Dong Aishenged6e1d02011-07-21 12:36:55 +080030#include "mxs-pcm.h"
31
Lars-Peter Clausena8956902013-04-20 19:29:03 +020032static const struct snd_pcm_hardware snd_mxs_hardware = {
Dong Aishenged6e1d02011-07-21 12:36:55 +080033 .info = SNDRV_PCM_INFO_MMAP |
34 SNDRV_PCM_INFO_MMAP_VALID |
35 SNDRV_PCM_INFO_PAUSE |
36 SNDRV_PCM_INFO_RESUME |
Lars-Peter Clausen57364f92013-04-20 19:29:01 +020037 SNDRV_PCM_INFO_INTERLEAVED |
38 SNDRV_PCM_INFO_HALF_DUPLEX,
Dong Aishenged6e1d02011-07-21 12:36:55 +080039 .formats = SNDRV_PCM_FMTBIT_S16_LE |
40 SNDRV_PCM_FMTBIT_S20_3LE |
41 SNDRV_PCM_FMTBIT_S24_LE,
42 .channels_min = 2,
43 .channels_max = 2,
44 .period_bytes_min = 32,
45 .period_bytes_max = 8192,
46 .periods_min = 1,
47 .periods_max = 52,
48 .buffer_bytes_max = 64 * 1024,
49 .fifo_size = 32,
Dong Aishenged6e1d02011-07-21 12:36:55 +080050};
51
Dong Aishenged6e1d02011-07-21 12:36:55 +080052static bool filter(struct dma_chan *chan, void *param)
53{
Lars-Peter Clausenb7e5e912013-03-22 14:12:13 +010054 struct mxs_pcm_dma_params *dma_params = param;
Dong Aishenged6e1d02011-07-21 12:36:55 +080055
56 if (!mxs_dma_is_apbx(chan))
57 return false;
58
59 if (chan->chan_id != dma_params->chan_num)
60 return false;
61
Lars-Peter Clausenb7e5e912013-03-22 14:12:13 +010062 chan->private = &dma_params->dma_data;
Dong Aishenged6e1d02011-07-21 12:36:55 +080063
64 return true;
65}
66
Lars-Peter Clausena8956902013-04-20 19:29:03 +020067static const struct snd_dmaengine_pcm_config mxs_dmaengine_pcm_config = {
68 .pcm_hardware = &snd_mxs_hardware,
69 .compat_filter_fn = filter,
70 .prealloc_buffer_size = 64 * 1024,
Dong Aishenged6e1d02011-07-21 12:36:55 +080071};
72
Bill Pembertonfd582732012-12-07 09:26:27 -050073int mxs_pcm_platform_register(struct device *dev)
Dong Aishenged6e1d02011-07-21 12:36:55 +080074{
Lars-Peter Clausena8956902013-04-20 19:29:03 +020075 return snd_dmaengine_pcm_register(dev, &mxs_dmaengine_pcm_config,
76 SND_DMAENGINE_PCM_FLAG_NO_RESIDUE |
77 SND_DMAENGINE_PCM_FLAG_NO_DT |
78 SND_DMAENGINE_PCM_FLAG_COMPAT |
79 SND_DMAENGINE_PCM_FLAG_HALF_DUPLEX);
Dong Aishenged6e1d02011-07-21 12:36:55 +080080}
Shawn Guo4da3fe72012-05-11 22:24:16 +080081EXPORT_SYMBOL_GPL(mxs_pcm_platform_register);
Dong Aishenged6e1d02011-07-21 12:36:55 +080082
Bill Pembertonfd582732012-12-07 09:26:27 -050083void mxs_pcm_platform_unregister(struct device *dev)
Dong Aishenged6e1d02011-07-21 12:36:55 +080084{
Lars-Peter Clausena8956902013-04-20 19:29:03 +020085 snd_dmaengine_pcm_unregister(dev);
Dong Aishenged6e1d02011-07-21 12:36:55 +080086}
Shawn Guo4da3fe72012-05-11 22:24:16 +080087EXPORT_SYMBOL_GPL(mxs_pcm_platform_unregister);
Lothar Waßmann06c8eb92011-12-09 14:38:11 +010088
89MODULE_LICENSE("GPL");