2019-05-30 02:57:50 +03:00
// SPDX-License-Identifier: GPL-2.0-only
2011-01-08 08:36:13 +03:00
/*
* tegra_pcm . c - Tegra PCM driver
*
* Author : Stephen Warren < swarren @ nvidia . com >
2012-03-21 00:55:49 +04:00
* Copyright ( C ) 2010 , 2012 - NVIDIA , Inc .
2011-01-08 08:36:13 +03:00
*
* Based on code copyright / by :
*
* Copyright ( c ) 2009 - 2010 , NVIDIA Corporation .
* Scott Peterson < speterson @ nvidia . com >
* Vijay Mali < vmali @ nvidia . com >
*
* Copyright ( C ) 2010 Google , Inc .
* Iliyan Malchev < malchev @ google . com >
*/
2012-04-06 21:12:25 +04:00
# include <linux/module.h>
2011-01-08 08:36:13 +03:00
# include <sound/core.h>
# include <sound/pcm.h>
# include <sound/pcm_params.h>
# include <sound/soc.h>
2012-06-29 15:34:33 +04:00
# include <sound/dmaengine_pcm.h>
2011-01-08 08:36:13 +03:00
# include "tegra_pcm.h"
static const struct snd_pcm_hardware tegra_pcm_hardware = {
. info = SNDRV_PCM_INFO_MMAP |
SNDRV_PCM_INFO_MMAP_VALID |
SNDRV_PCM_INFO_INTERLEAVED ,
. period_bytes_min = 1024 ,
. period_bytes_max = PAGE_SIZE ,
. periods_min = 2 ,
. periods_max = 8 ,
. buffer_bytes_max = PAGE_SIZE * 8 ,
. fifo_size = 4 ,
} ;
2013-04-15 21:19:52 +04:00
static const struct snd_dmaengine_pcm_config tegra_dmaengine_pcm_config = {
. pcm_hardware = & tegra_pcm_hardware ,
. prepare_slave_config = snd_dmaengine_pcm_prepare_slave_config ,
. prealloc_buffer_size = PAGE_SIZE * 8 ,
2011-01-08 08:36:13 +03:00
} ;
2012-12-07 18:26:33 +04:00
int tegra_pcm_platform_register ( struct device * dev )
2011-01-08 08:36:13 +03:00
{
2013-11-12 02:21:01 +04:00
return snd_dmaengine_pcm_register ( dev , & tegra_dmaengine_pcm_config , 0 ) ;
2011-01-08 08:36:13 +03:00
}
2012-03-21 00:55:49 +04:00
EXPORT_SYMBOL_GPL ( tegra_pcm_platform_register ) ;
2011-01-08 08:36:13 +03:00
2013-11-12 02:21:01 +04:00
int tegra_pcm_platform_register_with_chan_names ( struct device * dev ,
struct snd_dmaengine_pcm_config * config ,
char * txdmachan , char * rxdmachan )
{
* config = tegra_dmaengine_pcm_config ;
config - > dma_dev = dev - > parent ;
config - > chan_names [ 0 ] = txdmachan ;
config - > chan_names [ 1 ] = rxdmachan ;
return snd_dmaengine_pcm_register ( dev , config , 0 ) ;
}
EXPORT_SYMBOL_GPL ( tegra_pcm_platform_register_with_chan_names ) ;
2012-12-07 18:26:33 +04:00
void tegra_pcm_platform_unregister ( struct device * dev )
2011-01-08 08:36:13 +03:00
{
2013-04-15 21:19:52 +04:00
return snd_dmaengine_pcm_unregister ( dev ) ;
2011-01-08 08:36:13 +03:00
}
2012-03-21 00:55:49 +04:00
EXPORT_SYMBOL_GPL ( tegra_pcm_platform_unregister ) ;
2011-01-08 08:36:13 +03:00
MODULE_AUTHOR ( " Stephen Warren <swarren@nvidia.com> " ) ;
MODULE_DESCRIPTION ( " Tegra PCM ASoC driver " ) ;
MODULE_LICENSE ( " GPL " ) ;