blob: e8476da157cd2eda80cc2e572802a72d6a7368ce [file] [log] [blame]
Rajeev Kumar241b4462012-06-21 15:54:52 +05301/*
2 * ALSA PCM interface for ST SPEAr Processors
3 *
4 * sound/soc/spear/spear_pcm.c
5 *
6 * Copyright (C) 2012 ST Microelectronics
Rajeev Kumarb794dbc2014-09-09 12:27:19 +05307 * Rajeev Kumar<rajeevkumar.linux@gmail.com>
Rajeev Kumar241b4462012-06-21 15:54:52 +05308 *
9 * This file is licensed under the terms of the GNU General Public
10 * License version 2. This program is licensed "as is" without any
11 * warranty of any kind, whether express or implied.
12 */
13
14#include <linux/module.h>
15#include <linux/dmaengine.h>
Rajeev Kumar241b4462012-06-21 15:54:52 +053016#include <linux/platform_device.h>
Rajeev Kumar241b4462012-06-21 15:54:52 +053017#include <sound/dmaengine_pcm.h>
18#include <sound/pcm.h>
Rajeev Kumar241b4462012-06-21 15:54:52 +053019#include <sound/soc.h>
20#include <sound/spear_dma.h>
Stephen Warrenede38882013-12-10 12:35:24 -070021#include "spear_pcm.h"
Rajeev Kumar241b4462012-06-21 15:54:52 +053022
Lars-Peter Clausen52c102e2013-04-20 19:29:07 +020023static const struct snd_pcm_hardware spear_pcm_hardware = {
Rajeev Kumar241b4462012-06-21 15:54:52 +053024 .info = (SNDRV_PCM_INFO_INTERLEAVED | SNDRV_PCM_INFO_BLOCK_TRANSFER |
25 SNDRV_PCM_INFO_MMAP | SNDRV_PCM_INFO_MMAP_VALID |
26 SNDRV_PCM_INFO_PAUSE | SNDRV_PCM_INFO_RESUME),
27 .buffer_bytes_max = 16 * 1024, /* max buffer size */
28 .period_bytes_min = 2 * 1024, /* 1 msec data minimum period size */
29 .period_bytes_max = 2 * 1024, /* maximum period size */
30 .periods_min = 1, /* min # periods */
31 .periods_max = 8, /* max # of periods */
32 .fifo_size = 0, /* fifo size in bytes */
33};
34
Lars-Peter Clausen52c102e2013-04-20 19:29:07 +020035static const struct snd_dmaengine_pcm_config spear_dmaengine_pcm_config = {
36 .pcm_hardware = &spear_pcm_hardware,
Lars-Peter Clausen52c102e2013-04-20 19:29:07 +020037 .prealloc_buffer_size = 16 * 1024,
Rajeev Kumar241b4462012-06-21 15:54:52 +053038};
39
Stephen Warrene1771bc2013-12-10 12:35:25 -070040int devm_spear_pcm_platform_register(struct device *dev,
41 struct snd_dmaengine_pcm_config *config,
42 bool (*filter)(struct dma_chan *chan, void *slave))
Rajeev Kumar241b4462012-06-21 15:54:52 +053043{
Stephen Warrene1771bc2013-12-10 12:35:25 -070044 *config = spear_dmaengine_pcm_config;
45 config->compat_filter_fn = filter;
46
Axel Lin2c3f4b92015-08-30 08:08:15 +080047 return devm_snd_dmaengine_pcm_register(dev, config,
Lars-Peter Clausen52c102e2013-04-20 19:29:07 +020048 SND_DMAENGINE_PCM_FLAG_NO_DT |
49 SND_DMAENGINE_PCM_FLAG_COMPAT);
Rajeev Kumar241b4462012-06-21 15:54:52 +053050}
Stephen Warrenede38882013-12-10 12:35:24 -070051EXPORT_SYMBOL_GPL(devm_spear_pcm_platform_register);
Rajeev Kumar241b4462012-06-21 15:54:52 +053052
Rajeev Kumarb794dbc2014-09-09 12:27:19 +053053MODULE_AUTHOR("Rajeev Kumar <rajeevkumar.linux@gmail.com>");
Rajeev Kumar241b4462012-06-21 15:54:52 +053054MODULE_DESCRIPTION("SPEAr PCM DMA module");
55MODULE_LICENSE("GPL");