blob: a371b4f91c534d22e1e13aacfff93a490dfb461d [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 .period_bytes_min = 32,
40 .period_bytes_max = 8192,
41 .periods_min = 1,
42 .periods_max = 52,
43 .buffer_bytes_max = 64 * 1024,
44 .fifo_size = 32,
Dong Aishenged6e1d02011-07-21 12:36:55 +080045};
46
Lars-Peter Clausena8956902013-04-20 19:29:03 +020047static const struct snd_dmaengine_pcm_config mxs_dmaengine_pcm_config = {
48 .pcm_hardware = &snd_mxs_hardware,
Lars-Peter Clausena8956902013-04-20 19:29:03 +020049 .prealloc_buffer_size = 64 * 1024,
Dong Aishenged6e1d02011-07-21 12:36:55 +080050};
51
Bill Pembertonfd582732012-12-07 09:26:27 -050052int mxs_pcm_platform_register(struct device *dev)
Dong Aishenged6e1d02011-07-21 12:36:55 +080053{
Lars-Peter Clausen2650bc42013-11-28 08:50:37 +010054 return devm_snd_dmaengine_pcm_register(dev, &mxs_dmaengine_pcm_config,
Lars-Peter Clausena8956902013-04-20 19:29:03 +020055 SND_DMAENGINE_PCM_FLAG_HALF_DUPLEX);
Dong Aishenged6e1d02011-07-21 12:36:55 +080056}
Shawn Guo4da3fe72012-05-11 22:24:16 +080057EXPORT_SYMBOL_GPL(mxs_pcm_platform_register);
Dong Aishenged6e1d02011-07-21 12:36:55 +080058
Lothar Waßmann06c8eb92011-12-09 14:38:11 +010059MODULE_LICENSE("GPL");