ASoC: mxs: move to use generic DMA helper
With mxs-dma converted to generic DMA bindings, let's move mxs-pcm to use it by removing flages SND_DMAENGINE_PCM_FLAG_NO_DT and SND_DMAENGINE_PCM_FLAG_COMPAT. As the result, those mxs custom dma params code can be removed now. Signed-off-by: Shawn Guo <shawn.guo@linaro.org> Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
This commit is contained in:
@@ -3,8 +3,11 @@
|
|||||||
Required properties:
|
Required properties:
|
||||||
- compatible: Should be "fsl,<chip>-saif"
|
- compatible: Should be "fsl,<chip>-saif"
|
||||||
- reg: Should contain registers location and length
|
- reg: Should contain registers location and length
|
||||||
- interrupts: Should contain ERROR and DMA interrupts
|
- interrupts: Should contain ERROR interrupt number
|
||||||
- fsl,saif-dma-channel: APBX DMA channel for the SAIF
|
- dmas: DMA specifier, consisting of a phandle to DMA controller node
|
||||||
|
and SAIF DMA channel ID.
|
||||||
|
Refer to dma.txt and fsl-mxs-dma.txt for details.
|
||||||
|
- dma-names: Must be "rx-tx".
|
||||||
|
|
||||||
Optional properties:
|
Optional properties:
|
||||||
- fsl,saif-master: phandle to the master SAIF. It's only required for
|
- fsl,saif-master: phandle to the master SAIF. It's only required for
|
||||||
@@ -23,14 +26,16 @@ aliases {
|
|||||||
saif0: saif@80042000 {
|
saif0: saif@80042000 {
|
||||||
compatible = "fsl,imx28-saif";
|
compatible = "fsl,imx28-saif";
|
||||||
reg = <0x80042000 2000>;
|
reg = <0x80042000 2000>;
|
||||||
interrupts = <59 80>;
|
interrupts = <59>;
|
||||||
fsl,saif-dma-channel = <4>;
|
dmas = <&dma_apbx 4>;
|
||||||
|
dma-names = "rx-tx";
|
||||||
};
|
};
|
||||||
|
|
||||||
saif1: saif@80046000 {
|
saif1: saif@80046000 {
|
||||||
compatible = "fsl,imx28-saif";
|
compatible = "fsl,imx28-saif";
|
||||||
reg = <0x80046000 2000>;
|
reg = <0x80046000 2000>;
|
||||||
interrupts = <58 81>;
|
interrupts = <58>;
|
||||||
fsl,saif-dma-channel = <5>;
|
dmas = <&dma_apbx 5>;
|
||||||
|
dma-names = "rx-tx";
|
||||||
fsl,saif-master = <&saif0>;
|
fsl,saif-master = <&saif0>;
|
||||||
};
|
};
|
||||||
|
@@ -49,24 +49,8 @@ static const struct snd_pcm_hardware snd_mxs_hardware = {
|
|||||||
.fifo_size = 32,
|
.fifo_size = 32,
|
||||||
};
|
};
|
||||||
|
|
||||||
static bool filter(struct dma_chan *chan, void *param)
|
|
||||||
{
|
|
||||||
struct mxs_pcm_dma_params *dma_params = param;
|
|
||||||
|
|
||||||
if (!mxs_dma_is_apbx(chan))
|
|
||||||
return false;
|
|
||||||
|
|
||||||
if (chan->chan_id != dma_params->chan_num)
|
|
||||||
return false;
|
|
||||||
|
|
||||||
chan->private = &dma_params->dma_data;
|
|
||||||
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
static const struct snd_dmaengine_pcm_config mxs_dmaengine_pcm_config = {
|
static const struct snd_dmaengine_pcm_config mxs_dmaengine_pcm_config = {
|
||||||
.pcm_hardware = &snd_mxs_hardware,
|
.pcm_hardware = &snd_mxs_hardware,
|
||||||
.compat_filter_fn = filter,
|
|
||||||
.prealloc_buffer_size = 64 * 1024,
|
.prealloc_buffer_size = 64 * 1024,
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -74,8 +58,6 @@ int mxs_pcm_platform_register(struct device *dev)
|
|||||||
{
|
{
|
||||||
return snd_dmaengine_pcm_register(dev, &mxs_dmaengine_pcm_config,
|
return snd_dmaengine_pcm_register(dev, &mxs_dmaengine_pcm_config,
|
||||||
SND_DMAENGINE_PCM_FLAG_NO_RESIDUE |
|
SND_DMAENGINE_PCM_FLAG_NO_RESIDUE |
|
||||||
SND_DMAENGINE_PCM_FLAG_NO_DT |
|
|
||||||
SND_DMAENGINE_PCM_FLAG_COMPAT |
|
|
||||||
SND_DMAENGINE_PCM_FLAG_HALF_DUPLEX);
|
SND_DMAENGINE_PCM_FLAG_HALF_DUPLEX);
|
||||||
}
|
}
|
||||||
EXPORT_SYMBOL_GPL(mxs_pcm_platform_register);
|
EXPORT_SYMBOL_GPL(mxs_pcm_platform_register);
|
||||||
|
@@ -19,13 +19,6 @@
|
|||||||
#ifndef _MXS_PCM_H
|
#ifndef _MXS_PCM_H
|
||||||
#define _MXS_PCM_H
|
#define _MXS_PCM_H
|
||||||
|
|
||||||
#include <linux/fsl/mxs-dma.h>
|
|
||||||
|
|
||||||
struct mxs_pcm_dma_params {
|
|
||||||
struct mxs_dma_data dma_data;
|
|
||||||
int chan_num;
|
|
||||||
};
|
|
||||||
|
|
||||||
int mxs_pcm_platform_register(struct device *dev);
|
int mxs_pcm_platform_register(struct device *dev);
|
||||||
void mxs_pcm_platform_unregister(struct device *dev);
|
void mxs_pcm_platform_unregister(struct device *dev);
|
||||||
|
|
||||||
|
@@ -26,7 +26,6 @@
|
|||||||
#include <linux/clk.h>
|
#include <linux/clk.h>
|
||||||
#include <linux/delay.h>
|
#include <linux/delay.h>
|
||||||
#include <linux/time.h>
|
#include <linux/time.h>
|
||||||
#include <linux/fsl/mxs-dma.h>
|
|
||||||
#include <sound/core.h>
|
#include <sound/core.h>
|
||||||
#include <sound/pcm.h>
|
#include <sound/pcm.h>
|
||||||
#include <sound/pcm_params.h>
|
#include <sound/pcm_params.h>
|
||||||
@@ -604,8 +603,6 @@ static int mxs_saif_dai_probe(struct snd_soc_dai *dai)
|
|||||||
struct mxs_saif *saif = dev_get_drvdata(dai->dev);
|
struct mxs_saif *saif = dev_get_drvdata(dai->dev);
|
||||||
|
|
||||||
snd_soc_dai_set_drvdata(dai, saif);
|
snd_soc_dai_set_drvdata(dai, saif);
|
||||||
dai->playback_dma_data = &saif->dma_param;
|
|
||||||
dai->capture_dma_data = &saif->dma_param;
|
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
@@ -664,7 +661,7 @@ static irqreturn_t mxs_saif_irq(int irq, void *dev_id)
|
|||||||
static int mxs_saif_probe(struct platform_device *pdev)
|
static int mxs_saif_probe(struct platform_device *pdev)
|
||||||
{
|
{
|
||||||
struct device_node *np = pdev->dev.of_node;
|
struct device_node *np = pdev->dev.of_node;
|
||||||
struct resource *iores, *dmares;
|
struct resource *iores;
|
||||||
struct mxs_saif *saif;
|
struct mxs_saif *saif;
|
||||||
int ret = 0;
|
int ret = 0;
|
||||||
struct device_node *master;
|
struct device_node *master;
|
||||||
@@ -719,22 +716,6 @@ static int mxs_saif_probe(struct platform_device *pdev)
|
|||||||
if (IS_ERR(saif->base))
|
if (IS_ERR(saif->base))
|
||||||
return PTR_ERR(saif->base);
|
return PTR_ERR(saif->base);
|
||||||
|
|
||||||
dmares = platform_get_resource(pdev, IORESOURCE_DMA, 0);
|
|
||||||
if (!dmares) {
|
|
||||||
/*
|
|
||||||
* TODO: This is a temporary solution and should be changed
|
|
||||||
* to use generic DMA binding later when the helplers get in.
|
|
||||||
*/
|
|
||||||
ret = of_property_read_u32(np, "fsl,saif-dma-channel",
|
|
||||||
&saif->dma_param.chan_num);
|
|
||||||
if (ret) {
|
|
||||||
dev_err(&pdev->dev, "failed to get dma channel\n");
|
|
||||||
return ret;
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
saif->dma_param.chan_num = dmares->start;
|
|
||||||
}
|
|
||||||
|
|
||||||
saif->irq = platform_get_irq(pdev, 0);
|
saif->irq = platform_get_irq(pdev, 0);
|
||||||
if (saif->irq < 0) {
|
if (saif->irq < 0) {
|
||||||
ret = saif->irq;
|
ret = saif->irq;
|
||||||
@@ -751,14 +732,6 @@ static int mxs_saif_probe(struct platform_device *pdev)
|
|||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
saif->dma_param.dma_data.chan_irq = platform_get_irq(pdev, 1);
|
|
||||||
if (saif->dma_param.dma_data.chan_irq < 0) {
|
|
||||||
ret = saif->dma_param.dma_data.chan_irq;
|
|
||||||
dev_err(&pdev->dev, "failed to get dma irq resource: %d\n",
|
|
||||||
ret);
|
|
||||||
return ret;
|
|
||||||
}
|
|
||||||
|
|
||||||
platform_set_drvdata(pdev, saif);
|
platform_set_drvdata(pdev, saif);
|
||||||
|
|
||||||
ret = snd_soc_register_component(&pdev->dev, &mxs_saif_component,
|
ret = snd_soc_register_component(&pdev->dev, &mxs_saif_component,
|
||||||
|
@@ -117,7 +117,6 @@ struct mxs_saif {
|
|||||||
unsigned int mclk_in_use;
|
unsigned int mclk_in_use;
|
||||||
void __iomem *base;
|
void __iomem *base;
|
||||||
int irq;
|
int irq;
|
||||||
struct mxs_pcm_dma_params dma_param;
|
|
||||||
unsigned int id;
|
unsigned int id;
|
||||||
unsigned int master_id;
|
unsigned int master_id;
|
||||||
unsigned int cur_rate;
|
unsigned int cur_rate;
|
||||||
|
Reference in New Issue
Block a user