2019-06-04 11:11:33 +03:00
// SPDX-License-Identifier: GPL-2.0-only
2012-05-24 17:26:32 +04:00
/*
* Copyright ( C ) ST - Ericsson SA 2012
*
* Author : Ola Lilja < ola . o . lilja @ stericsson . com > ,
* Roger Nilsson < roger . xr . nilsson @ stericsson . com >
* for ST - Ericsson .
*
* License terms :
*/
# include <asm/page.h>
# include <linux/module.h>
# include <linux/dma-mapping.h>
# include <linux/dmaengine.h>
# include <linux/slab.h>
2012-10-18 16:20:16 +04:00
# include <linux/platform_data/dma-ste-dma40.h>
2012-05-24 17:26:32 +04:00
# include <sound/pcm.h>
# include <sound/pcm_params.h>
# include <sound/soc.h>
# include <sound/dmaengine_pcm.h>
# include "ux500_msp_i2s.h"
# include "ux500_pcm.h"
2013-04-03 13:02:55 +04:00
# define UX500_PLATFORM_PERIODS_BYTES_MIN 128
# define UX500_PLATFORM_PERIODS_BYTES_MAX (64 * PAGE_SIZE)
# define UX500_PLATFORM_PERIODS_MIN 2
# define UX500_PLATFORM_PERIODS_MAX 48
# define UX500_PLATFORM_BUFFER_BYTES_MAX (2048 * PAGE_SIZE)
2012-05-24 17:26:32 +04:00
2013-04-15 21:20:04 +04:00
static const struct snd_pcm_hardware ux500_pcm_hw = {
2012-05-24 17:26:32 +04:00
. info = SNDRV_PCM_INFO_INTERLEAVED |
SNDRV_PCM_INFO_MMAP |
SNDRV_PCM_INFO_RESUME |
SNDRV_PCM_INFO_PAUSE ,
. buffer_bytes_max = UX500_PLATFORM_BUFFER_BYTES_MAX ,
. period_bytes_min = UX500_PLATFORM_PERIODS_BYTES_MIN ,
. period_bytes_max = UX500_PLATFORM_PERIODS_BYTES_MAX ,
. periods_min = UX500_PLATFORM_PERIODS_MIN ,
. periods_max = UX500_PLATFORM_PERIODS_MAX ,
} ;
2013-04-15 21:20:04 +04:00
static struct dma_chan * ux500_pcm_request_chan ( struct snd_soc_pcm_runtime * rtd ,
struct snd_pcm_substream * substream )
2012-05-24 17:26:32 +04:00
{
2020-03-23 08:21:35 +03:00
struct snd_soc_dai * dai = asoc_rtd_to_cpu ( rtd , 0 ) ;
2012-05-24 17:26:32 +04:00
u16 per_data_width , mem_data_width ;
struct stedma40_chan_cfg * dma_cfg ;
2013-04-15 21:20:04 +04:00
struct ux500_msp_dma_params * dma_params ;
2012-05-24 17:26:32 +04:00
2013-04-15 21:20:04 +04:00
dma_params = snd_soc_dai_get_dma_data ( dai , substream ) ;
dma_cfg = dma_params - > dma_cfg ;
2012-05-24 17:26:32 +04:00
2013-05-15 13:51:57 +04:00
mem_data_width = DMA_SLAVE_BUSWIDTH_2_BYTES ;
2012-05-24 17:26:32 +04:00
switch ( dma_params - > data_size ) {
case 32 :
2013-05-15 13:51:57 +04:00
per_data_width = DMA_SLAVE_BUSWIDTH_4_BYTES ;
2012-05-24 17:26:32 +04:00
break ;
case 16 :
2013-05-15 13:51:57 +04:00
per_data_width = DMA_SLAVE_BUSWIDTH_2_BYTES ;
2012-05-24 17:26:32 +04:00
break ;
case 8 :
2013-05-15 13:51:57 +04:00
per_data_width = DMA_SLAVE_BUSWIDTH_1_BYTE ;
2012-05-24 17:26:32 +04:00
break ;
default :
2013-05-15 13:51:57 +04:00
per_data_width = DMA_SLAVE_BUSWIDTH_4_BYTES ;
2012-05-24 17:26:32 +04:00
}
if ( substream - > stream = = SNDRV_PCM_STREAM_PLAYBACK ) {
dma_cfg - > src_info . data_width = mem_data_width ;
dma_cfg - > dst_info . data_width = per_data_width ;
} else {
dma_cfg - > src_info . data_width = per_data_width ;
dma_cfg - > dst_info . data_width = mem_data_width ;
}
2013-04-15 21:20:04 +04:00
return snd_dmaengine_pcm_request_channel ( stedma40_filter , dma_cfg ) ;
2012-05-24 17:26:32 +04:00
}
2013-06-12 11:57:59 +04:00
static int ux500_pcm_prepare_slave_config ( struct snd_pcm_substream * substream ,
struct snd_pcm_hw_params * params ,
struct dma_slave_config * slave_config )
{
2020-07-20 04:17:44 +03:00
struct snd_soc_pcm_runtime * rtd = asoc_substream_to_rtd ( substream ) ;
2020-03-23 08:21:35 +03:00
struct msp_i2s_platform_data * pdata = asoc_rtd_to_cpu ( rtd , 0 ) - > dev - > platform_data ;
2013-12-19 19:55:03 +04:00
struct snd_dmaengine_dai_dma_data * snd_dma_params ;
struct ux500_msp_dma_params * ste_dma_params ;
dma_addr_t dma_addr ;
2013-06-12 11:57:59 +04:00
int ret ;
2013-12-19 19:55:03 +04:00
if ( pdata ) {
ste_dma_params =
2020-03-23 08:21:35 +03:00
snd_soc_dai_get_dma_data ( asoc_rtd_to_cpu ( rtd , 0 ) , substream ) ;
2013-12-19 19:55:03 +04:00
dma_addr = ste_dma_params - > tx_rx_addr ;
} else {
snd_dma_params =
2020-03-23 08:21:35 +03:00
snd_soc_dai_get_dma_data ( asoc_rtd_to_cpu ( rtd , 0 ) , substream ) ;
2013-12-19 19:55:03 +04:00
dma_addr = snd_dma_params - > addr ;
}
2013-06-12 11:57:59 +04:00
ret = snd_hwparams_to_dma_slave_config ( substream , params , slave_config ) ;
if ( ret )
return ret ;
slave_config - > dst_maxburst = 4 ;
slave_config - > src_maxburst = 4 ;
2013-12-19 19:55:02 +04:00
slave_config - > src_addr_width = DMA_SLAVE_BUSWIDTH_2_BYTES ;
slave_config - > dst_addr_width = DMA_SLAVE_BUSWIDTH_2_BYTES ;
2013-06-12 11:57:59 +04:00
if ( substream - > stream = = SNDRV_PCM_STREAM_PLAYBACK )
2013-12-19 19:55:03 +04:00
slave_config - > dst_addr = dma_addr ;
2013-06-12 11:57:59 +04:00
else
2013-12-19 19:55:03 +04:00
slave_config - > src_addr = dma_addr ;
2013-06-12 11:57:59 +04:00
return 0 ;
}
2013-04-15 21:20:04 +04:00
static const struct snd_dmaengine_pcm_config ux500_dmaengine_pcm_config = {
. pcm_hardware = & ux500_pcm_hw ,
. compat_request_channel = ux500_pcm_request_chan ,
. prealloc_buffer_size = 128 * 1024 ,
2013-06-12 11:57:59 +04:00
. prepare_slave_config = ux500_pcm_prepare_slave_config ,
2012-05-24 17:26:32 +04:00
} ;
2013-12-19 19:55:07 +04:00
static const struct snd_dmaengine_pcm_config ux500_dmaengine_of_pcm_config = {
. compat_request_channel = ux500_pcm_request_chan ,
. prepare_slave_config = ux500_pcm_prepare_slave_config ,
} ;
2012-12-07 18:26:35 +04:00
int ux500_pcm_register_platform ( struct platform_device * pdev )
2012-05-24 17:26:32 +04:00
{
2013-12-19 19:55:07 +04:00
const struct snd_dmaengine_pcm_config * pcm_config ;
struct device_node * np = pdev - > dev . of_node ;
2012-05-24 17:26:32 +04:00
int ret ;
2013-12-19 19:55:07 +04:00
if ( np )
pcm_config = & ux500_dmaengine_of_pcm_config ;
else
pcm_config = & ux500_dmaengine_pcm_config ;
ret = snd_dmaengine_pcm_register ( & pdev - > dev , pcm_config ,
SND_DMAENGINE_PCM_FLAG_COMPAT ) ;
2012-05-24 17:26:32 +04:00
if ( ret < 0 ) {
dev_err ( & pdev - > dev ,
" %s: ERROR: Failed to register platform '%s' (%d)! \n " ,
__func__ , pdev - > name , ret ) ;
return ret ;
}
return 0 ;
}
2012-11-23 17:05:41 +04:00
EXPORT_SYMBOL_GPL ( ux500_pcm_register_platform ) ;
2012-05-24 17:26:32 +04:00
2012-12-07 18:26:35 +04:00
int ux500_pcm_unregister_platform ( struct platform_device * pdev )
2012-05-24 17:26:32 +04:00
{
2013-04-15 21:20:04 +04:00
snd_dmaengine_pcm_unregister ( & pdev - > dev ) ;
2012-05-24 17:26:32 +04:00
return 0 ;
}
2012-11-23 17:05:41 +04:00
EXPORT_SYMBOL_GPL ( ux500_pcm_unregister_platform ) ;
2018-01-10 19:34:45 +03:00
MODULE_AUTHOR ( " Ola Lilja " ) ;
MODULE_AUTHOR ( " Roger Nilsson " ) ;
MODULE_DESCRIPTION ( " ASoC UX500 driver " ) ;
MODULE_LICENSE ( " GPL v2 " ) ;