2019-05-27 06:55:01 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2009-11-25 15:41:04 +00:00
|
|
|
/*
|
|
|
|
* imx-pcm-dma-mx2.c -- ALSA Soc Audio Layer
|
|
|
|
*
|
|
|
|
* Copyright 2009 Sascha Hauer <s.hauer@pengutronix.de>
|
|
|
|
*
|
|
|
|
* This code is based on code copyrighted by Freescale,
|
|
|
|
* Liam Girdwood, Javier Martin and probably others.
|
|
|
|
*/
|
|
|
|
#include <linux/platform_device.h>
|
2010-11-04 16:05:43 +00:00
|
|
|
#include <linux/dmaengine.h>
|
2012-02-01 10:42:19 +00:00
|
|
|
#include <linux/types.h>
|
2013-08-16 11:07:19 +00:00
|
|
|
#include <linux/module.h>
|
2009-11-25 15:41:04 +00:00
|
|
|
|
|
|
|
#include <sound/core.h>
|
|
|
|
#include <sound/pcm.h>
|
|
|
|
#include <sound/soc.h>
|
2012-02-22 09:49:09 +00:00
|
|
|
#include <sound/dmaengine_pcm.h>
|
2009-11-25 15:41:04 +00:00
|
|
|
|
2012-03-05 14:30:55 +00:00
|
|
|
#include "imx-pcm.h"
|
2009-11-25 15:41:04 +00:00
|
|
|
|
2010-11-04 16:05:43 +00:00
|
|
|
static bool filter(struct dma_chan *chan, void *param)
|
2009-11-25 15:41:04 +00:00
|
|
|
{
|
2010-11-04 16:05:43 +00:00
|
|
|
if (!imx_dma_is_general_purpose(chan))
|
|
|
|
return false;
|
2009-11-25 15:41:04 +00:00
|
|
|
|
2013-10-19 20:38:26 +00:00
|
|
|
chan->private = param;
|
2010-04-08 09:31:25 +00:00
|
|
|
|
2012-02-22 09:49:09 +00:00
|
|
|
return true;
|
2012-02-22 09:49:06 +00:00
|
|
|
}
|
|
|
|
|
2013-04-15 17:19:59 +00:00
|
|
|
static const struct snd_dmaengine_pcm_config imx_dmaengine_pcm_config = {
|
|
|
|
.prepare_slave_config = snd_dmaengine_pcm_prepare_slave_config,
|
|
|
|
.compat_filter_fn = filter,
|
2009-11-25 15:41:04 +00:00
|
|
|
};
|
|
|
|
|
2022-02-23 13:06:25 +00:00
|
|
|
int imx_pcm_dma_init(struct platform_device *pdev)
|
2009-11-25 15:41:04 +00:00
|
|
|
{
|
2015-06-23 10:23:53 +00:00
|
|
|
struct snd_dmaengine_pcm_config *config;
|
|
|
|
|
|
|
|
config = devm_kzalloc(&pdev->dev,
|
|
|
|
sizeof(struct snd_dmaengine_pcm_config), GFP_KERNEL);
|
2015-12-20 11:15:50 +00:00
|
|
|
if (!config)
|
|
|
|
return -ENOMEM;
|
2015-06-23 10:23:53 +00:00
|
|
|
*config = imx_dmaengine_pcm_config;
|
|
|
|
|
2013-11-28 07:50:35 +00:00
|
|
|
return devm_snd_dmaengine_pcm_register(&pdev->dev,
|
2015-06-23 10:23:53 +00:00
|
|
|
config,
|
2013-04-15 17:19:59 +00:00
|
|
|
SND_DMAENGINE_PCM_FLAG_COMPAT);
|
|
|
|
}
|
2013-04-25 03:18:50 +00:00
|
|
|
EXPORT_SYMBOL_GPL(imx_pcm_dma_init);
|
2013-04-15 17:19:59 +00:00
|
|
|
|
2013-08-16 11:07:19 +00:00
|
|
|
MODULE_LICENSE("GPL");
|