All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/2] ASoC: mxs-saif: add record function
@ 2011-08-21 16:02 ` Dong Aisheng
  0 siblings, 0 replies; 10+ messages in thread
From: Dong Aisheng @ 2011-08-21 16:02 UTC (permalink / raw)
  To: alsa-devel; +Cc: s.hauer, broonie, lrg, linux-arm-kernel, w.sang

1. add different clkmux mode handling for record.
SAIF can use two instances to implement full duplex (playback &
recording) and record saif may work on EXTMASTER mode that is
using other saif's BITCLK&LRCLK.
The clkmux mode is determined by saif's platform data and machine
specific clkmux setting is done in pdata->init().
2. support playback and capture simutaneously however the sample
rates can not be different due to hw limitation.

Signed-off-by: Dong Aisheng <b29396@freescale.com>
Cc: Mark Brown <broonie@opensource.wolfsonmicro.com>
Cc: Liam Girdwood <lrg@ti.com>
Cc: Sascha Hauer <s.hauer@pengutronix.de>
Cc: Wolfram Sang <w.sang@pengutronix.de>
---
 include/sound/saif.h     |   16 +++++
 sound/soc/mxs/mxs-saif.c |  162 ++++++++++++++++++++++++++++++++++++++++++----
 sound/soc/mxs/mxs-saif.h |    4 +
 3 files changed, 168 insertions(+), 14 deletions(-)

diff --git a/include/sound/saif.h b/include/sound/saif.h
new file mode 100644
index 0000000..7a98d9b
--- /dev/null
+++ b/include/sound/saif.h
@@ -0,0 +1,16 @@
+/*
+ * Copyright 2011 Freescale Semiconductor, Inc. All Rights Reserved.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License version 2 as
+ * published by the Free Software Foundation.
+ */
+
+#ifndef __MACH_MXS_SAIF_H__
+#define __MACH_MXS_SAIF_H__
+
+struct mxs_saif_platform_data {
+	unsigned int clkmux;
+	int (*init) (void);
+};
+#endif
diff --git a/sound/soc/mxs/mxs-saif.c b/sound/soc/mxs/mxs-saif.c
index 530017f..eb8ba79 100644
--- a/sound/soc/mxs/mxs-saif.c
+++ b/sound/soc/mxs/mxs-saif.c
@@ -27,15 +27,39 @@
 #include <sound/pcm.h>
 #include <sound/pcm_params.h>
 #include <sound/soc.h>
+#include <sound/saif.h>
 #include <mach/dma.h>
 #include <asm/mach-types.h>
 #include <mach/hardware.h>
 #include <mach/mxs.h>
+#include <mach/digctl.h>
 
 #include "mxs-saif.h"
 
 static struct mxs_saif *mxs_saif[2];
 
+/*
+ * SAIF is a little different with other normal SOC DAIs on clock using.
+ *
+ * For MXS, two SAIF modules are instantiated on-chip.
+ * Each SAIF has a set of clock pins and can be operating in master
+ * mode simultaneously if they are connected to different off-chip codecs.
+ * Also, one of the two SAIFs can master or drive the clock pins while the
+ * other SAIF, in slave mode, receives clocking from the master SAIF.
+ * This also means that both SAIFs must operate at the same sample rate.
+ * Following are the valid configurations for SAIF1 and SAIF2 on the i.MX28
+ *
+ * HW_SAIF_CLKMUX_SEL:
+ *  DIRECT(0x0): SAIF0 clock pins selected for SAIF0 input clocks, and SAIF1
+ *		clock pins selected for SAIF1 input clocks.
+ *  CROSSINPUT(0x1): SAIF1 clock inputs selected for SAIF0 input clocks, and
+ *		SAIF0 clock inputs selected for SAIF1 input clocks.
+ *  EXTMSTR0(0x2): SAIF0 clock pin selected for both SAIF0 and SAIF1 input
+ *		clocks.
+ *  EXTMSTR1(0x3): SAIF1 clock pin selected for both SAIF0 and SAIF1 input
+ *		clocks.
+ */
+
 static int mxs_saif_set_dai_sysclk(struct snd_soc_dai *cpu_dai,
 			int clk_id, unsigned int freq, int dir)
 {
@@ -52,6 +76,36 @@ static int mxs_saif_set_dai_sysclk(struct snd_soc_dai *cpu_dai,
 }
 
 /*
+ * Since SAIF may work on EXTMASTER mode, IOW, it's working BITCLK&LRCLK
+ * is provided by other SAIF, we provide a interface here to get its master.
+ * Note that for DIRECT mode, it's master is itself.
+ */
+static struct mxs_saif *mxs_saif_get_master(struct mxs_saif * saif)
+{
+	struct mxs_saif *master_saif;
+
+	/* get master saif according to different clkmux setting */
+	switch (saif->clkmux) {
+	case MXS_DIGCTL_SAIF_CLKMUX_DIRECT:
+		master_saif = saif;
+		break;
+	case MXS_DIGCTL_SAIF_CLKMUX_CROSSINPUT:
+		master_saif = saif->id ? mxs_saif[1] : mxs_saif[0];
+		break;
+	case MXS_DIGCTL_SAIF_CLKMUX_EXTMSTR0:
+		master_saif = mxs_saif[0];
+		break;
+	case MXS_DIGCTL_SAIF_CLKMUX_EXTMSTR1:
+		master_saif = mxs_saif[1];
+		break;
+	default:
+		return NULL;
+	}
+
+	return master_saif;
+}
+
+/*
  * Set SAIF clock and MCLK
  */
 static int mxs_saif_set_clk(struct mxs_saif *saif,
@@ -60,8 +114,27 @@ static int mxs_saif_set_clk(struct mxs_saif *saif,
 {
 	u32 scr;
 	int ret;
+	struct mxs_saif *master_saif;
 
-	scr = __raw_readl(saif->base + SAIF_CTRL);
+	dev_dbg(saif->dev, "mclk %d rate %d\n", mclk, rate);
+
+	/* Set master saif to generate proper clock */
+	master_saif = mxs_saif_get_master(saif);
+	if (!master_saif)
+		return -EINVAL;
+
+	dev_dbg(saif->dev, "master saif%d clkmux 0x%x\n",
+		master_saif->id, saif->clkmux);
+
+	/* Checking if can playback and capture simutaneously */
+	if (master_saif->ongoing && rate != master_saif->cur_rate) {
+		dev_err(saif->dev,
+			"can not change clock, master saif%d(rate %d) is ongoing\n",
+			master_saif->id, master_saif->cur_rate);
+		return -EINVAL;
+	}
+
+	scr = __raw_readl(master_saif->base + SAIF_CTRL);
 	scr &= ~BM_SAIF_CTRL_BITCLK_MULT_RATE;
 	scr &= ~BM_SAIF_CTRL_BITCLK_BASE_RATE;
 
@@ -75,27 +148,29 @@ static int mxs_saif_set_clk(struct mxs_saif *saif,
 	 *
 	 * If MCLK is not used, we just set saif clk to 512*fs.
 	 */
-	if (saif->mclk_in_use) {
+	if (master_saif->mclk_in_use) {
 		if (mclk % 32 == 0) {
 			scr &= ~BM_SAIF_CTRL_BITCLK_BASE_RATE;
-			ret = clk_set_rate(saif->clk, 512 * rate);
+			ret = clk_set_rate(master_saif->clk, 512 * rate);
 		} else if (mclk % 48 == 0) {
 			scr |= BM_SAIF_CTRL_BITCLK_BASE_RATE;
-			ret = clk_set_rate(saif->clk, 384 * rate);
+			ret = clk_set_rate(master_saif->clk, 384 * rate);
 		} else {
 			/* SAIF MCLK should be either 32x or 48x */
 			return -EINVAL;
 		}
 	} else {
-		ret = clk_set_rate(saif->clk, 512 * rate);
+		ret = clk_set_rate(master_saif->clk, 512 * rate);
 		scr &= ~BM_SAIF_CTRL_BITCLK_BASE_RATE;
 	}
 
 	if (ret)
 		return ret;
 
-	if (!saif->mclk_in_use) {
-		__raw_writel(scr, saif->base + SAIF_CTRL);
+	master_saif->cur_rate = rate;
+
+	if (!master_saif->mclk_in_use) {
+		__raw_writel(scr, master_saif->base + SAIF_CTRL);
 		return 0;
 	}
 
@@ -137,7 +212,7 @@ static int mxs_saif_set_clk(struct mxs_saif *saif,
 		return -EINVAL;
 	}
 
-	__raw_writel(scr, saif->base + SAIF_CTRL);
+	__raw_writel(scr, master_saif->base + SAIF_CTRL);
 
 	return 0;
 }
@@ -183,6 +258,7 @@ int mxs_saif_get_mclk(unsigned int saif_id, unsigned int mclk,
 	struct mxs_saif *saif = mxs_saif[saif_id];
 	u32 stat;
 	int ret;
+	struct mxs_saif *master_saif;
 
 	if (!saif)
 		return -EINVAL;
@@ -195,6 +271,12 @@ int mxs_saif_get_mclk(unsigned int saif_id, unsigned int mclk,
 	__raw_writel(BM_SAIF_CTRL_CLKGATE,
 		saif->base + SAIF_CTRL + MXS_CLR_ADDR);
 
+	master_saif = mxs_saif_get_master(saif);
+	if (saif != master_saif) {
+		dev_err(saif->dev, "can not get mclk from a non-master saif\n");
+		return -EINVAL;
+	}
+
 	stat = __raw_readl(saif->base + SAIF_STAT);
 	if (stat & BM_SAIF_STAT_BUSY) {
 		dev_err(saif->dev, "error: busy\n");
@@ -278,10 +360,21 @@ static int mxs_saif_set_dai_fmt(struct snd_soc_dai *cpu_dai, unsigned int fmt)
 	/*
 	 * Note: We simply just support master mode since SAIF TX can only
 	 * work as master.
+	 * Here the master is relative to codec side.
+	 * Saif internally could be slave when working on EXTMASTER mode.
+	 * We just hide this to machine driver.
 	 */
 	switch (fmt & SND_SOC_DAIFMT_MASTER_MASK) {
 	case SND_SOC_DAIFMT_CBS_CFS:
-		scr &= ~BM_SAIF_CTRL_SLAVE_MODE;
+		if (saif->clkmux == MXS_DIGCTL_SAIF_CLKMUX_EXTMSTR0)
+			scr = saif->id ? scr | BM_SAIF_CTRL_SLAVE_MODE :
+					scr & ~BM_SAIF_CTRL_SLAVE_MODE;
+		else if (saif->clkmux == MXS_DIGCTL_SAIF_CLKMUX_EXTMSTR1)
+			scr = saif->id ? scr & ~BM_SAIF_CTRL_SLAVE_MODE :
+					scr | BM_SAIF_CTRL_SLAVE_MODE;
+		else
+			scr &= ~BM_SAIF_CTRL_SLAVE_MODE;
+
 		__raw_writel(scr | scr0, saif->base + SAIF_CTRL);
 		break;
 	default:
@@ -396,6 +489,11 @@ static int mxs_saif_trigger(struct snd_pcm_substream *substream, int cmd,
 				struct snd_soc_dai *cpu_dai)
 {
 	struct mxs_saif *saif = snd_soc_dai_get_drvdata(cpu_dai);
+	struct mxs_saif *master_saif;
+
+	master_saif = mxs_saif_get_master(saif);
+	if (!master_saif)
+		return -EINVAL;
 
 	switch (cmd) {
 	case SNDRV_PCM_TRIGGER_START:
@@ -403,10 +501,20 @@ static int mxs_saif_trigger(struct snd_pcm_substream *substream, int cmd,
 	case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
 		dev_dbg(cpu_dai->dev, "start\n");
 
-		clk_enable(saif->clk);
-		if (!saif->mclk_in_use)
+		clk_enable(master_saif->clk);
+		if (!master_saif->mclk_in_use)
+			__raw_writel(BM_SAIF_CTRL_RUN,
+				master_saif->base + SAIF_CTRL + MXS_SET_ADDR);
+
+		/*
+		 * If the saif's master is not himself, we also need to enable
+		 * itself clk for its internal basic logic to work.
+		 */
+		if (saif != master_saif) {
+			clk_enable(saif->clk);
 			__raw_writel(BM_SAIF_CTRL_RUN,
 				saif->base + SAIF_CTRL + MXS_SET_ADDR);
+		}
 
 		if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
 			/*
@@ -422,20 +530,37 @@ static int mxs_saif_trigger(struct snd_pcm_substream *substream, int cmd,
 			__raw_readl(saif->base + SAIF_DATA);
 		}
 
-		dev_dbg(cpu_dai->dev, "CTRL 0x%x STAT 0x%x\n",
+		master_saif->ongoing = 1;
+
+		dev_dbg(saif->dev, "CTRL 0x%x STAT 0x%x\n",
 			__raw_readl(saif->base + SAIF_CTRL),
 			__raw_readl(saif->base + SAIF_STAT));
 
+		dev_dbg(master_saif->dev, "CTRL 0x%x STAT 0x%x\n",
+			__raw_readl(master_saif->base + SAIF_CTRL),
+			__raw_readl(master_saif->base + SAIF_STAT));
 		break;
 	case SNDRV_PCM_TRIGGER_SUSPEND:
 	case SNDRV_PCM_TRIGGER_STOP:
 	case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
 		dev_dbg(cpu_dai->dev, "stop\n");
 
-		clk_disable(saif->clk);
-		if (!saif->mclk_in_use)
+		if (!master_saif->mclk_in_use) {
+			__raw_writel(BM_SAIF_CTRL_RUN,
+				master_saif->base + SAIF_CTRL + MXS_CLR_ADDR);
+			udelay(100);
+		}
+		clk_disable(master_saif->clk);
+
+		if (saif != master_saif) {
 			__raw_writel(BM_SAIF_CTRL_RUN,
 				saif->base + SAIF_CTRL + MXS_CLR_ADDR);
+			/* wait a while for the current sample to complete */
+			udelay(100);
+			clk_disable(saif->clk);
+		}
+
+		master_saif->ongoing = 0;
 
 		break;
 	default:
@@ -519,15 +644,24 @@ static int mxs_saif_probe(struct platform_device *pdev)
 {
 	struct resource *res;
 	struct mxs_saif *saif;
+	struct mxs_saif_platform_data *pdata;
 	int ret = 0;
 
+	pdata = pdev->dev.platform_data;
+	if (pdata && pdata->init())
+		return -EINVAL;
+
 	saif = kzalloc(sizeof(*saif), GFP_KERNEL);
 	if (!saif)
 		return -ENOMEM;
 
+	if (pdata)
+		saif->clkmux  = pdata->clkmux;
+
 	if (pdev->id >= ARRAY_SIZE(mxs_saif))
 		return -EINVAL;
 	mxs_saif[pdev->id] = saif;
+	saif->id = pdev->id;
 
 	saif->clk = clk_get(&pdev->dev, NULL);
 	if (IS_ERR(saif->clk)) {
diff --git a/sound/soc/mxs/mxs-saif.h b/sound/soc/mxs/mxs-saif.h
index 0e2ff8c..2a6aec1 100644
--- a/sound/soc/mxs/mxs-saif.h
+++ b/sound/soc/mxs/mxs-saif.h
@@ -118,6 +118,10 @@ struct mxs_saif {
 	void __iomem *base;
 	int irq;
 	struct mxs_pcm_dma_params dma_param;
+	unsigned int id;
+	unsigned int clkmux;
+	unsigned int cur_rate;
+	unsigned int ongoing;
 
 	struct platform_device *soc_platform_pdev;
 	u32 fifo_underrun;
-- 
1.7.0.4

^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [PATCH 1/2] ASoC: mxs-saif: add record function
@ 2011-08-21 16:02 ` Dong Aisheng
  0 siblings, 0 replies; 10+ messages in thread
From: Dong Aisheng @ 2011-08-21 16:02 UTC (permalink / raw)
  To: linux-arm-kernel

1. add different clkmux mode handling for record.
SAIF can use two instances to implement full duplex (playback &
recording) and record saif may work on EXTMASTER mode that is
using other saif's BITCLK&LRCLK.
The clkmux mode is determined by saif's platform data and machine
specific clkmux setting is done in pdata->init().
2. support playback and capture simutaneously however the sample
rates can not be different due to hw limitation.

Signed-off-by: Dong Aisheng <b29396@freescale.com>
Cc: Mark Brown <broonie@opensource.wolfsonmicro.com>
Cc: Liam Girdwood <lrg@ti.com>
Cc: Sascha Hauer <s.hauer@pengutronix.de>
Cc: Wolfram Sang <w.sang@pengutronix.de>
---
 include/sound/saif.h     |   16 +++++
 sound/soc/mxs/mxs-saif.c |  162 ++++++++++++++++++++++++++++++++++++++++++----
 sound/soc/mxs/mxs-saif.h |    4 +
 3 files changed, 168 insertions(+), 14 deletions(-)

diff --git a/include/sound/saif.h b/include/sound/saif.h
new file mode 100644
index 0000000..7a98d9b
--- /dev/null
+++ b/include/sound/saif.h
@@ -0,0 +1,16 @@
+/*
+ * Copyright 2011 Freescale Semiconductor, Inc. All Rights Reserved.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License version 2 as
+ * published by the Free Software Foundation.
+ */
+
+#ifndef __MACH_MXS_SAIF_H__
+#define __MACH_MXS_SAIF_H__
+
+struct mxs_saif_platform_data {
+	unsigned int clkmux;
+	int (*init) (void);
+};
+#endif
diff --git a/sound/soc/mxs/mxs-saif.c b/sound/soc/mxs/mxs-saif.c
index 530017f..eb8ba79 100644
--- a/sound/soc/mxs/mxs-saif.c
+++ b/sound/soc/mxs/mxs-saif.c
@@ -27,15 +27,39 @@
 #include <sound/pcm.h>
 #include <sound/pcm_params.h>
 #include <sound/soc.h>
+#include <sound/saif.h>
 #include <mach/dma.h>
 #include <asm/mach-types.h>
 #include <mach/hardware.h>
 #include <mach/mxs.h>
+#include <mach/digctl.h>
 
 #include "mxs-saif.h"
 
 static struct mxs_saif *mxs_saif[2];
 
+/*
+ * SAIF is a little different with other normal SOC DAIs on clock using.
+ *
+ * For MXS, two SAIF modules are instantiated on-chip.
+ * Each SAIF has a set of clock pins and can be operating in master
+ * mode simultaneously if they are connected to different off-chip codecs.
+ * Also, one of the two SAIFs can master or drive the clock pins while the
+ * other SAIF, in slave mode, receives clocking from the master SAIF.
+ * This also means that both SAIFs must operate at the same sample rate.
+ * Following are the valid configurations for SAIF1 and SAIF2 on the i.MX28
+ *
+ * HW_SAIF_CLKMUX_SEL:
+ *  DIRECT(0x0): SAIF0 clock pins selected for SAIF0 input clocks, and SAIF1
+ *		clock pins selected for SAIF1 input clocks.
+ *  CROSSINPUT(0x1): SAIF1 clock inputs selected for SAIF0 input clocks, and
+ *		SAIF0 clock inputs selected for SAIF1 input clocks.
+ *  EXTMSTR0(0x2): SAIF0 clock pin selected for both SAIF0 and SAIF1 input
+ *		clocks.
+ *  EXTMSTR1(0x3): SAIF1 clock pin selected for both SAIF0 and SAIF1 input
+ *		clocks.
+ */
+
 static int mxs_saif_set_dai_sysclk(struct snd_soc_dai *cpu_dai,
 			int clk_id, unsigned int freq, int dir)
 {
@@ -52,6 +76,36 @@ static int mxs_saif_set_dai_sysclk(struct snd_soc_dai *cpu_dai,
 }
 
 /*
+ * Since SAIF may work on EXTMASTER mode, IOW, it's working BITCLK&LRCLK
+ * is provided by other SAIF, we provide a interface here to get its master.
+ * Note that for DIRECT mode, it's master is itself.
+ */
+static struct mxs_saif *mxs_saif_get_master(struct mxs_saif * saif)
+{
+	struct mxs_saif *master_saif;
+
+	/* get master saif according to different clkmux setting */
+	switch (saif->clkmux) {
+	case MXS_DIGCTL_SAIF_CLKMUX_DIRECT:
+		master_saif = saif;
+		break;
+	case MXS_DIGCTL_SAIF_CLKMUX_CROSSINPUT:
+		master_saif = saif->id ? mxs_saif[1] : mxs_saif[0];
+		break;
+	case MXS_DIGCTL_SAIF_CLKMUX_EXTMSTR0:
+		master_saif = mxs_saif[0];
+		break;
+	case MXS_DIGCTL_SAIF_CLKMUX_EXTMSTR1:
+		master_saif = mxs_saif[1];
+		break;
+	default:
+		return NULL;
+	}
+
+	return master_saif;
+}
+
+/*
  * Set SAIF clock and MCLK
  */
 static int mxs_saif_set_clk(struct mxs_saif *saif,
@@ -60,8 +114,27 @@ static int mxs_saif_set_clk(struct mxs_saif *saif,
 {
 	u32 scr;
 	int ret;
+	struct mxs_saif *master_saif;
 
-	scr = __raw_readl(saif->base + SAIF_CTRL);
+	dev_dbg(saif->dev, "mclk %d rate %d\n", mclk, rate);
+
+	/* Set master saif to generate proper clock */
+	master_saif = mxs_saif_get_master(saif);
+	if (!master_saif)
+		return -EINVAL;
+
+	dev_dbg(saif->dev, "master saif%d clkmux 0x%x\n",
+		master_saif->id, saif->clkmux);
+
+	/* Checking if can playback and capture simutaneously */
+	if (master_saif->ongoing && rate != master_saif->cur_rate) {
+		dev_err(saif->dev,
+			"can not change clock, master saif%d(rate %d) is ongoing\n",
+			master_saif->id, master_saif->cur_rate);
+		return -EINVAL;
+	}
+
+	scr = __raw_readl(master_saif->base + SAIF_CTRL);
 	scr &= ~BM_SAIF_CTRL_BITCLK_MULT_RATE;
 	scr &= ~BM_SAIF_CTRL_BITCLK_BASE_RATE;
 
@@ -75,27 +148,29 @@ static int mxs_saif_set_clk(struct mxs_saif *saif,
 	 *
 	 * If MCLK is not used, we just set saif clk to 512*fs.
 	 */
-	if (saif->mclk_in_use) {
+	if (master_saif->mclk_in_use) {
 		if (mclk % 32 == 0) {
 			scr &= ~BM_SAIF_CTRL_BITCLK_BASE_RATE;
-			ret = clk_set_rate(saif->clk, 512 * rate);
+			ret = clk_set_rate(master_saif->clk, 512 * rate);
 		} else if (mclk % 48 == 0) {
 			scr |= BM_SAIF_CTRL_BITCLK_BASE_RATE;
-			ret = clk_set_rate(saif->clk, 384 * rate);
+			ret = clk_set_rate(master_saif->clk, 384 * rate);
 		} else {
 			/* SAIF MCLK should be either 32x or 48x */
 			return -EINVAL;
 		}
 	} else {
-		ret = clk_set_rate(saif->clk, 512 * rate);
+		ret = clk_set_rate(master_saif->clk, 512 * rate);
 		scr &= ~BM_SAIF_CTRL_BITCLK_BASE_RATE;
 	}
 
 	if (ret)
 		return ret;
 
-	if (!saif->mclk_in_use) {
-		__raw_writel(scr, saif->base + SAIF_CTRL);
+	master_saif->cur_rate = rate;
+
+	if (!master_saif->mclk_in_use) {
+		__raw_writel(scr, master_saif->base + SAIF_CTRL);
 		return 0;
 	}
 
@@ -137,7 +212,7 @@ static int mxs_saif_set_clk(struct mxs_saif *saif,
 		return -EINVAL;
 	}
 
-	__raw_writel(scr, saif->base + SAIF_CTRL);
+	__raw_writel(scr, master_saif->base + SAIF_CTRL);
 
 	return 0;
 }
@@ -183,6 +258,7 @@ int mxs_saif_get_mclk(unsigned int saif_id, unsigned int mclk,
 	struct mxs_saif *saif = mxs_saif[saif_id];
 	u32 stat;
 	int ret;
+	struct mxs_saif *master_saif;
 
 	if (!saif)
 		return -EINVAL;
@@ -195,6 +271,12 @@ int mxs_saif_get_mclk(unsigned int saif_id, unsigned int mclk,
 	__raw_writel(BM_SAIF_CTRL_CLKGATE,
 		saif->base + SAIF_CTRL + MXS_CLR_ADDR);
 
+	master_saif = mxs_saif_get_master(saif);
+	if (saif != master_saif) {
+		dev_err(saif->dev, "can not get mclk from a non-master saif\n");
+		return -EINVAL;
+	}
+
 	stat = __raw_readl(saif->base + SAIF_STAT);
 	if (stat & BM_SAIF_STAT_BUSY) {
 		dev_err(saif->dev, "error: busy\n");
@@ -278,10 +360,21 @@ static int mxs_saif_set_dai_fmt(struct snd_soc_dai *cpu_dai, unsigned int fmt)
 	/*
 	 * Note: We simply just support master mode since SAIF TX can only
 	 * work as master.
+	 * Here the master is relative to codec side.
+	 * Saif internally could be slave when working on EXTMASTER mode.
+	 * We just hide this to machine driver.
 	 */
 	switch (fmt & SND_SOC_DAIFMT_MASTER_MASK) {
 	case SND_SOC_DAIFMT_CBS_CFS:
-		scr &= ~BM_SAIF_CTRL_SLAVE_MODE;
+		if (saif->clkmux == MXS_DIGCTL_SAIF_CLKMUX_EXTMSTR0)
+			scr = saif->id ? scr | BM_SAIF_CTRL_SLAVE_MODE :
+					scr & ~BM_SAIF_CTRL_SLAVE_MODE;
+		else if (saif->clkmux == MXS_DIGCTL_SAIF_CLKMUX_EXTMSTR1)
+			scr = saif->id ? scr & ~BM_SAIF_CTRL_SLAVE_MODE :
+					scr | BM_SAIF_CTRL_SLAVE_MODE;
+		else
+			scr &= ~BM_SAIF_CTRL_SLAVE_MODE;
+
 		__raw_writel(scr | scr0, saif->base + SAIF_CTRL);
 		break;
 	default:
@@ -396,6 +489,11 @@ static int mxs_saif_trigger(struct snd_pcm_substream *substream, int cmd,
 				struct snd_soc_dai *cpu_dai)
 {
 	struct mxs_saif *saif = snd_soc_dai_get_drvdata(cpu_dai);
+	struct mxs_saif *master_saif;
+
+	master_saif = mxs_saif_get_master(saif);
+	if (!master_saif)
+		return -EINVAL;
 
 	switch (cmd) {
 	case SNDRV_PCM_TRIGGER_START:
@@ -403,10 +501,20 @@ static int mxs_saif_trigger(struct snd_pcm_substream *substream, int cmd,
 	case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
 		dev_dbg(cpu_dai->dev, "start\n");
 
-		clk_enable(saif->clk);
-		if (!saif->mclk_in_use)
+		clk_enable(master_saif->clk);
+		if (!master_saif->mclk_in_use)
+			__raw_writel(BM_SAIF_CTRL_RUN,
+				master_saif->base + SAIF_CTRL + MXS_SET_ADDR);
+
+		/*
+		 * If the saif's master is not himself, we also need to enable
+		 * itself clk for its internal basic logic to work.
+		 */
+		if (saif != master_saif) {
+			clk_enable(saif->clk);
 			__raw_writel(BM_SAIF_CTRL_RUN,
 				saif->base + SAIF_CTRL + MXS_SET_ADDR);
+		}
 
 		if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
 			/*
@@ -422,20 +530,37 @@ static int mxs_saif_trigger(struct snd_pcm_substream *substream, int cmd,
 			__raw_readl(saif->base + SAIF_DATA);
 		}
 
-		dev_dbg(cpu_dai->dev, "CTRL 0x%x STAT 0x%x\n",
+		master_saif->ongoing = 1;
+
+		dev_dbg(saif->dev, "CTRL 0x%x STAT 0x%x\n",
 			__raw_readl(saif->base + SAIF_CTRL),
 			__raw_readl(saif->base + SAIF_STAT));
 
+		dev_dbg(master_saif->dev, "CTRL 0x%x STAT 0x%x\n",
+			__raw_readl(master_saif->base + SAIF_CTRL),
+			__raw_readl(master_saif->base + SAIF_STAT));
 		break;
 	case SNDRV_PCM_TRIGGER_SUSPEND:
 	case SNDRV_PCM_TRIGGER_STOP:
 	case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
 		dev_dbg(cpu_dai->dev, "stop\n");
 
-		clk_disable(saif->clk);
-		if (!saif->mclk_in_use)
+		if (!master_saif->mclk_in_use) {
+			__raw_writel(BM_SAIF_CTRL_RUN,
+				master_saif->base + SAIF_CTRL + MXS_CLR_ADDR);
+			udelay(100);
+		}
+		clk_disable(master_saif->clk);
+
+		if (saif != master_saif) {
 			__raw_writel(BM_SAIF_CTRL_RUN,
 				saif->base + SAIF_CTRL + MXS_CLR_ADDR);
+			/* wait a while for the current sample to complete */
+			udelay(100);
+			clk_disable(saif->clk);
+		}
+
+		master_saif->ongoing = 0;
 
 		break;
 	default:
@@ -519,15 +644,24 @@ static int mxs_saif_probe(struct platform_device *pdev)
 {
 	struct resource *res;
 	struct mxs_saif *saif;
+	struct mxs_saif_platform_data *pdata;
 	int ret = 0;
 
+	pdata = pdev->dev.platform_data;
+	if (pdata && pdata->init())
+		return -EINVAL;
+
 	saif = kzalloc(sizeof(*saif), GFP_KERNEL);
 	if (!saif)
 		return -ENOMEM;
 
+	if (pdata)
+		saif->clkmux  = pdata->clkmux;
+
 	if (pdev->id >= ARRAY_SIZE(mxs_saif))
 		return -EINVAL;
 	mxs_saif[pdev->id] = saif;
+	saif->id = pdev->id;
 
 	saif->clk = clk_get(&pdev->dev, NULL);
 	if (IS_ERR(saif->clk)) {
diff --git a/sound/soc/mxs/mxs-saif.h b/sound/soc/mxs/mxs-saif.h
index 0e2ff8c..2a6aec1 100644
--- a/sound/soc/mxs/mxs-saif.h
+++ b/sound/soc/mxs/mxs-saif.h
@@ -118,6 +118,10 @@ struct mxs_saif {
 	void __iomem *base;
 	int irq;
 	struct mxs_pcm_dma_params dma_param;
+	unsigned int id;
+	unsigned int clkmux;
+	unsigned int cur_rate;
+	unsigned int ongoing;
 
 	struct platform_device *soc_platform_pdev;
 	u32 fifo_underrun;
-- 
1.7.0.4

^ permalink raw reply related	[flat|nested] 10+ messages in thread

* Re: [PATCH 1/2] ASoC: mxs-saif: add record function
  2011-08-21 16:02 ` Dong Aisheng
@ 2011-08-22 10:37   ` Liam Girdwood
  -1 siblings, 0 replies; 10+ messages in thread
From: Liam Girdwood @ 2011-08-22 10:37 UTC (permalink / raw)
  To: Dong Aisheng; +Cc: alsa-devel, broonie, s.hauer, linux-arm-kernel, w.sang

On 21/08/11 17:02, Dong Aisheng wrote:
> 1. add different clkmux mode handling for record.
> SAIF can use two instances to implement full duplex (playback &
> recording) and record saif may work on EXTMASTER mode that is
> using other saif's BITCLK&LRCLK.
> The clkmux mode is determined by saif's platform data and machine
> specific clkmux setting is done in pdata->init().
> 2. support playback and capture simutaneously however the sample
> rates can not be different due to hw limitation.
> 
> Signed-off-by: Dong Aisheng <b29396@freescale.com>
> Cc: Mark Brown <broonie@opensource.wolfsonmicro.com>
> Cc: Liam Girdwood <lrg@ti.com>
> Cc: Sascha Hauer <s.hauer@pengutronix.de>
> Cc: Wolfram Sang <w.sang@pengutronix.de>

Looks fine, just some minor questions below.

> ---
>  include/sound/saif.h     |   16 +++++
>  sound/soc/mxs/mxs-saif.c |  162 ++++++++++++++++++++++++++++++++++++++++++----
>  sound/soc/mxs/mxs-saif.h |    4 +
>  3 files changed, 168 insertions(+), 14 deletions(-)
> 
> diff --git a/include/sound/saif.h b/include/sound/saif.h
> new file mode 100644
> index 0000000..7a98d9b
> --- /dev/null
> +++ b/include/sound/saif.h
> @@ -0,0 +1,16 @@
> +/*
> + * Copyright 2011 Freescale Semiconductor, Inc. All Rights Reserved.
> + *
> + * This program is free software; you can redistribute it and/or modify
> + * it under the terms of the GNU General Public License version 2 as
> + * published by the Free Software Foundation.
> + */
> +
> +#ifndef __MACH_MXS_SAIF_H__
> +#define __MACH_MXS_SAIF_H__

The macro naming here should probably match the sound directory/driver

> +
> +struct mxs_saif_platform_data {
> +       unsigned int clkmux;
> +       int (*init) (void);
> +};
> +#endif
> diff --git a/sound/soc/mxs/mxs-saif.c b/sound/soc/mxs/mxs-saif.c
> index 530017f..eb8ba79 100644
> --- a/sound/soc/mxs/mxs-saif.c
> +++ b/sound/soc/mxs/mxs-saif.c
> @@ -27,15 +27,39 @@
>  #include <sound/pcm.h>
>  #include <sound/pcm_params.h>
>  #include <sound/soc.h>
> +#include <sound/saif.h>
>  #include <mach/dma.h>
>  #include <asm/mach-types.h>
>  #include <mach/hardware.h>
>  #include <mach/mxs.h>
> +#include <mach/digctl.h>
> 
>  #include "mxs-saif.h"
> 
>  static struct mxs_saif *mxs_saif[2];
> 
> +/*
> + * SAIF is a little different with other normal SOC DAIs on clock using.
> + *
> + * For MXS, two SAIF modules are instantiated on-chip.
> + * Each SAIF has a set of clock pins and can be operating in master
> + * mode simultaneously if they are connected to different off-chip codecs.
> + * Also, one of the two SAIFs can master or drive the clock pins while the
> + * other SAIF, in slave mode, receives clocking from the master SAIF.
> + * This also means that both SAIFs must operate at the same sample rate.
> + * Following are the valid configurations for SAIF1 and SAIF2 on the i.MX28
> + *
> + * HW_SAIF_CLKMUX_SEL:
> + *  DIRECT(0x0): SAIF0 clock pins selected for SAIF0 input clocks, and SAIF1
> + *             clock pins selected for SAIF1 input clocks.
> + *  CROSSINPUT(0x1): SAIF1 clock inputs selected for SAIF0 input clocks, and
> + *             SAIF0 clock inputs selected for SAIF1 input clocks.
> + *  EXTMSTR0(0x2): SAIF0 clock pin selected for both SAIF0 and SAIF1 input
> + *             clocks.
> + *  EXTMSTR1(0x3): SAIF1 clock pin selected for both SAIF0 and SAIF1 input
> + *             clocks.
> + */
> +
>  static int mxs_saif_set_dai_sysclk(struct snd_soc_dai *cpu_dai,
>                         int clk_id, unsigned int freq, int dir)
>  {
> @@ -52,6 +76,36 @@ static int mxs_saif_set_dai_sysclk(struct snd_soc_dai *cpu_dai,
>  }
> 
>  /*
> + * Since SAIF may work on EXTMASTER mode, IOW, it's working BITCLK&LRCLK
> + * is provided by other SAIF, we provide a interface here to get its master.
> + * Note that for DIRECT mode, it's master is itself.
> + */
> +static struct mxs_saif *mxs_saif_get_master(struct mxs_saif * saif)
> +{
> +       struct mxs_saif *master_saif;
> +
> +       /* get master saif according to different clkmux setting */
> +       switch (saif->clkmux) {
> +       case MXS_DIGCTL_SAIF_CLKMUX_DIRECT:
> +               master_saif = saif;
> +               break;
> +       case MXS_DIGCTL_SAIF_CLKMUX_CROSSINPUT:
> +               master_saif = saif->id ? mxs_saif[1] : mxs_saif[0];
> +               break;
> +       case MXS_DIGCTL_SAIF_CLKMUX_EXTMSTR0:
> +               master_saif = mxs_saif[0];
> +               break;
> +       case MXS_DIGCTL_SAIF_CLKMUX_EXTMSTR1:
> +               master_saif = mxs_saif[1];
> +               break;
> +       default:
> +               return NULL;
> +       }
> +
> +       return master_saif;
> +}
> +
> +/*
>   * Set SAIF clock and MCLK
>   */
>  static int mxs_saif_set_clk(struct mxs_saif *saif,
> @@ -60,8 +114,27 @@ static int mxs_saif_set_clk(struct mxs_saif *saif,
>  {
>         u32 scr;
>         int ret;
> +       struct mxs_saif *master_saif;
> 
> -       scr = __raw_readl(saif->base + SAIF_CTRL);
> +       dev_dbg(saif->dev, "mclk %d rate %d\n", mclk, rate);
> +
> +       /* Set master saif to generate proper clock */
> +       master_saif = mxs_saif_get_master(saif);
> +       if (!master_saif)
> +               return -EINVAL;
> +
> +       dev_dbg(saif->dev, "master saif%d clkmux 0x%x\n",
> +               master_saif->id, saif->clkmux);
> +
> +       /* Checking if can playback and capture simutaneously */
> +       if (master_saif->ongoing && rate != master_saif->cur_rate) {
> +               dev_err(saif->dev,
> +                       "can not change clock, master saif%d(rate %d) is ongoing\n",
> +                       master_saif->id, master_saif->cur_rate);
> +               return -EINVAL;
> +       }
> +
> +       scr = __raw_readl(master_saif->base + SAIF_CTRL);
>         scr &= ~BM_SAIF_CTRL_BITCLK_MULT_RATE;
>         scr &= ~BM_SAIF_CTRL_BITCLK_BASE_RATE;
> 
> @@ -75,27 +148,29 @@ static int mxs_saif_set_clk(struct mxs_saif *saif,
>          *
>          * If MCLK is not used, we just set saif clk to 512*fs.
>          */
> -       if (saif->mclk_in_use) {
> +       if (master_saif->mclk_in_use) {
>                 if (mclk % 32 == 0) {
>                         scr &= ~BM_SAIF_CTRL_BITCLK_BASE_RATE;
> -                       ret = clk_set_rate(saif->clk, 512 * rate);
> +                       ret = clk_set_rate(master_saif->clk, 512 * rate);
>                 } else if (mclk % 48 == 0) {
>                         scr |= BM_SAIF_CTRL_BITCLK_BASE_RATE;
> -                       ret = clk_set_rate(saif->clk, 384 * rate);
> +                       ret = clk_set_rate(master_saif->clk, 384 * rate);
>                 } else {
>                         /* SAIF MCLK should be either 32x or 48x */
>                         return -EINVAL;
>                 }
>         } else {
> -               ret = clk_set_rate(saif->clk, 512 * rate);
> +               ret = clk_set_rate(master_saif->clk, 512 * rate);
>                 scr &= ~BM_SAIF_CTRL_BITCLK_BASE_RATE;
>         }
> 
>         if (ret)
>                 return ret;
> 
> -       if (!saif->mclk_in_use) {
> -               __raw_writel(scr, saif->base + SAIF_CTRL);
> +       master_saif->cur_rate = rate;
> +
> +       if (!master_saif->mclk_in_use) {
> +               __raw_writel(scr, master_saif->base + SAIF_CTRL);
>                 return 0;
>         }
> 
> @@ -137,7 +212,7 @@ static int mxs_saif_set_clk(struct mxs_saif *saif,
>                 return -EINVAL;
>         }
> 
> -       __raw_writel(scr, saif->base + SAIF_CTRL);
> +       __raw_writel(scr, master_saif->base + SAIF_CTRL);
> 
>         return 0;
>  }
> @@ -183,6 +258,7 @@ int mxs_saif_get_mclk(unsigned int saif_id, unsigned int mclk,
>         struct mxs_saif *saif = mxs_saif[saif_id];
>         u32 stat;
>         int ret;
> +       struct mxs_saif *master_saif;
> 
>         if (!saif)
>                 return -EINVAL;
> @@ -195,6 +271,12 @@ int mxs_saif_get_mclk(unsigned int saif_id, unsigned int mclk,
>         __raw_writel(BM_SAIF_CTRL_CLKGATE,
>                 saif->base + SAIF_CTRL + MXS_CLR_ADDR);
> 
> +       master_saif = mxs_saif_get_master(saif);
> +       if (saif != master_saif) {
> +               dev_err(saif->dev, "can not get mclk from a non-master saif\n");
> +               return -EINVAL;
> +       }
> +
>         stat = __raw_readl(saif->base + SAIF_STAT);
>         if (stat & BM_SAIF_STAT_BUSY) {
>                 dev_err(saif->dev, "error: busy\n");
> @@ -278,10 +360,21 @@ static int mxs_saif_set_dai_fmt(struct snd_soc_dai *cpu_dai, unsigned int fmt)
>         /*
>          * Note: We simply just support master mode since SAIF TX can only
>          * work as master.
> +        * Here the master is relative to codec side.
> +        * Saif internally could be slave when working on EXTMASTER mode.
> +        * We just hide this to machine driver.
>          */
>         switch (fmt & SND_SOC_DAIFMT_MASTER_MASK) {
>         case SND_SOC_DAIFMT_CBS_CFS:
> -               scr &= ~BM_SAIF_CTRL_SLAVE_MODE;
> +               if (saif->clkmux == MXS_DIGCTL_SAIF_CLKMUX_EXTMSTR0)
> +                       scr = saif->id ? scr | BM_SAIF_CTRL_SLAVE_MODE :
> +                                       scr & ~BM_SAIF_CTRL_SLAVE_MODE;
> +               else if (saif->clkmux == MXS_DIGCTL_SAIF_CLKMUX_EXTMSTR1)
> +                       scr = saif->id ? scr & ~BM_SAIF_CTRL_SLAVE_MODE :
> +                                       scr | BM_SAIF_CTRL_SLAVE_MODE;
> +               else
> +                       scr &= ~BM_SAIF_CTRL_SLAVE_MODE;
> +
>                 __raw_writel(scr | scr0, saif->base + SAIF_CTRL);
>                 break;
>         default:
> @@ -396,6 +489,11 @@ static int mxs_saif_trigger(struct snd_pcm_substream *substream, int cmd,
>                                 struct snd_soc_dai *cpu_dai)
>  {
>         struct mxs_saif *saif = snd_soc_dai_get_drvdata(cpu_dai);
> +       struct mxs_saif *master_saif;
> +
> +       master_saif = mxs_saif_get_master(saif);
> +       if (!master_saif)
> +               return -EINVAL;
> 
>         switch (cmd) {
>         case SNDRV_PCM_TRIGGER_START:
> @@ -403,10 +501,20 @@ static int mxs_saif_trigger(struct snd_pcm_substream *substream, int cmd,
>         case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
>                 dev_dbg(cpu_dai->dev, "start\n");
> 
> -               clk_enable(saif->clk);
> -               if (!saif->mclk_in_use)
> +               clk_enable(master_saif->clk);
> +               if (!master_saif->mclk_in_use)
> +                       __raw_writel(BM_SAIF_CTRL_RUN,
> +                               master_saif->base + SAIF_CTRL + MXS_SET_ADDR);
> +
> +               /*
> +                * If the saif's master is not himself, we also need to enable
> +                * itself clk for its internal basic logic to work.
> +                */
> +               if (saif != master_saif) {
> +                       clk_enable(saif->clk);
>                         __raw_writel(BM_SAIF_CTRL_RUN,
>                                 saif->base + SAIF_CTRL + MXS_SET_ADDR);
> +               }
> 
>                 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
>                         /*
> @@ -422,20 +530,37 @@ static int mxs_saif_trigger(struct snd_pcm_substream *substream, int cmd,
>                         __raw_readl(saif->base + SAIF_DATA);
>                 }
> 
> -               dev_dbg(cpu_dai->dev, "CTRL 0x%x STAT 0x%x\n",
> +               master_saif->ongoing = 1;
> +
> +               dev_dbg(saif->dev, "CTRL 0x%x STAT 0x%x\n",
>                         __raw_readl(saif->base + SAIF_CTRL),
>                         __raw_readl(saif->base + SAIF_STAT));
> 
> +               dev_dbg(master_saif->dev, "CTRL 0x%x STAT 0x%x\n",
> +                       __raw_readl(master_saif->base + SAIF_CTRL),
> +                       __raw_readl(master_saif->base + SAIF_STAT));
>                 break;
>         case SNDRV_PCM_TRIGGER_SUSPEND:
>         case SNDRV_PCM_TRIGGER_STOP:
>         case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
>                 dev_dbg(cpu_dai->dev, "stop\n");
> 
> -               clk_disable(saif->clk);
> -               if (!saif->mclk_in_use)
> +               if (!master_saif->mclk_in_use) {
> +                       __raw_writel(BM_SAIF_CTRL_RUN,
> +                               master_saif->base + SAIF_CTRL + MXS_CLR_ADDR);
> +                       udelay(100);
> +               }
> +               clk_disable(master_saif->clk);
> +
> +               if (saif != master_saif) {
>                         __raw_writel(BM_SAIF_CTRL_RUN,
>                                 saif->base + SAIF_CTRL + MXS_CLR_ADDR);
> +                       /* wait a while for the current sample to complete */
> +                       udelay(100);

This is a little short to cover 8kHz sample rate (125us). It may be worthwhile to calc the delay based on the rate here.


> +                       clk_disable(saif->clk);
> +               }
> +
> +               master_saif->ongoing = 0;
> 
>                 break;
>         default:
> @@ -519,15 +644,24 @@ static int mxs_saif_probe(struct platform_device *pdev)
>  {
>         struct resource *res;
>         struct mxs_saif *saif;
> +       struct mxs_saif_platform_data *pdata;
>         int ret = 0;
> 
> +       pdata = pdev->dev.platform_data;
> +       if (pdata && pdata->init())
> +               return -EINVAL;
> +
>         saif = kzalloc(sizeof(*saif), GFP_KERNEL);
>         if (!saif)
>                 return -ENOMEM;
> 
> +       if (pdata)
> +               saif->clkmux  = pdata->clkmux;
> +
>         if (pdev->id >= ARRAY_SIZE(mxs_saif))
>                 return -EINVAL;
>         mxs_saif[pdev->id] = saif;
> +       saif->id = pdev->id;
> 
>         saif->clk = clk_get(&pdev->dev, NULL);
>         if (IS_ERR(saif->clk)) {
> diff --git a/sound/soc/mxs/mxs-saif.h b/sound/soc/mxs/mxs-saif.h
> index 0e2ff8c..2a6aec1 100644
> --- a/sound/soc/mxs/mxs-saif.h
> +++ b/sound/soc/mxs/mxs-saif.h
> @@ -118,6 +118,10 @@ struct mxs_saif {
>         void __iomem *base;
>         int irq;
>         struct mxs_pcm_dma_params dma_param;
> +       unsigned int id;
> +       unsigned int clkmux;
> +       unsigned int cur_rate;
> +       unsigned int ongoing;
> 
>         struct platform_device *soc_platform_pdev;
>         u32 fifo_underrun;
> --
> 1.7.0.4
> 
> 

^ permalink raw reply	[flat|nested] 10+ messages in thread

* [PATCH 1/2] ASoC: mxs-saif: add record function
@ 2011-08-22 10:37   ` Liam Girdwood
  0 siblings, 0 replies; 10+ messages in thread
From: Liam Girdwood @ 2011-08-22 10:37 UTC (permalink / raw)
  To: linux-arm-kernel

On 21/08/11 17:02, Dong Aisheng wrote:
> 1. add different clkmux mode handling for record.
> SAIF can use two instances to implement full duplex (playback &
> recording) and record saif may work on EXTMASTER mode that is
> using other saif's BITCLK&LRCLK.
> The clkmux mode is determined by saif's platform data and machine
> specific clkmux setting is done in pdata->init().
> 2. support playback and capture simutaneously however the sample
> rates can not be different due to hw limitation.
> 
> Signed-off-by: Dong Aisheng <b29396@freescale.com>
> Cc: Mark Brown <broonie@opensource.wolfsonmicro.com>
> Cc: Liam Girdwood <lrg@ti.com>
> Cc: Sascha Hauer <s.hauer@pengutronix.de>
> Cc: Wolfram Sang <w.sang@pengutronix.de>

Looks fine, just some minor questions below.

> ---
>  include/sound/saif.h     |   16 +++++
>  sound/soc/mxs/mxs-saif.c |  162 ++++++++++++++++++++++++++++++++++++++++++----
>  sound/soc/mxs/mxs-saif.h |    4 +
>  3 files changed, 168 insertions(+), 14 deletions(-)
> 
> diff --git a/include/sound/saif.h b/include/sound/saif.h
> new file mode 100644
> index 0000000..7a98d9b
> --- /dev/null
> +++ b/include/sound/saif.h
> @@ -0,0 +1,16 @@
> +/*
> + * Copyright 2011 Freescale Semiconductor, Inc. All Rights Reserved.
> + *
> + * This program is free software; you can redistribute it and/or modify
> + * it under the terms of the GNU General Public License version 2 as
> + * published by the Free Software Foundation.
> + */
> +
> +#ifndef __MACH_MXS_SAIF_H__
> +#define __MACH_MXS_SAIF_H__

The macro naming here should probably match the sound directory/driver

> +
> +struct mxs_saif_platform_data {
> +       unsigned int clkmux;
> +       int (*init) (void);
> +};
> +#endif
> diff --git a/sound/soc/mxs/mxs-saif.c b/sound/soc/mxs/mxs-saif.c
> index 530017f..eb8ba79 100644
> --- a/sound/soc/mxs/mxs-saif.c
> +++ b/sound/soc/mxs/mxs-saif.c
> @@ -27,15 +27,39 @@
>  #include <sound/pcm.h>
>  #include <sound/pcm_params.h>
>  #include <sound/soc.h>
> +#include <sound/saif.h>
>  #include <mach/dma.h>
>  #include <asm/mach-types.h>
>  #include <mach/hardware.h>
>  #include <mach/mxs.h>
> +#include <mach/digctl.h>
> 
>  #include "mxs-saif.h"
> 
>  static struct mxs_saif *mxs_saif[2];
> 
> +/*
> + * SAIF is a little different with other normal SOC DAIs on clock using.
> + *
> + * For MXS, two SAIF modules are instantiated on-chip.
> + * Each SAIF has a set of clock pins and can be operating in master
> + * mode simultaneously if they are connected to different off-chip codecs.
> + * Also, one of the two SAIFs can master or drive the clock pins while the
> + * other SAIF, in slave mode, receives clocking from the master SAIF.
> + * This also means that both SAIFs must operate at the same sample rate.
> + * Following are the valid configurations for SAIF1 and SAIF2 on the i.MX28
> + *
> + * HW_SAIF_CLKMUX_SEL:
> + *  DIRECT(0x0): SAIF0 clock pins selected for SAIF0 input clocks, and SAIF1
> + *             clock pins selected for SAIF1 input clocks.
> + *  CROSSINPUT(0x1): SAIF1 clock inputs selected for SAIF0 input clocks, and
> + *             SAIF0 clock inputs selected for SAIF1 input clocks.
> + *  EXTMSTR0(0x2): SAIF0 clock pin selected for both SAIF0 and SAIF1 input
> + *             clocks.
> + *  EXTMSTR1(0x3): SAIF1 clock pin selected for both SAIF0 and SAIF1 input
> + *             clocks.
> + */
> +
>  static int mxs_saif_set_dai_sysclk(struct snd_soc_dai *cpu_dai,
>                         int clk_id, unsigned int freq, int dir)
>  {
> @@ -52,6 +76,36 @@ static int mxs_saif_set_dai_sysclk(struct snd_soc_dai *cpu_dai,
>  }
> 
>  /*
> + * Since SAIF may work on EXTMASTER mode, IOW, it's working BITCLK&LRCLK
> + * is provided by other SAIF, we provide a interface here to get its master.
> + * Note that for DIRECT mode, it's master is itself.
> + */
> +static struct mxs_saif *mxs_saif_get_master(struct mxs_saif * saif)
> +{
> +       struct mxs_saif *master_saif;
> +
> +       /* get master saif according to different clkmux setting */
> +       switch (saif->clkmux) {
> +       case MXS_DIGCTL_SAIF_CLKMUX_DIRECT:
> +               master_saif = saif;
> +               break;
> +       case MXS_DIGCTL_SAIF_CLKMUX_CROSSINPUT:
> +               master_saif = saif->id ? mxs_saif[1] : mxs_saif[0];
> +               break;
> +       case MXS_DIGCTL_SAIF_CLKMUX_EXTMSTR0:
> +               master_saif = mxs_saif[0];
> +               break;
> +       case MXS_DIGCTL_SAIF_CLKMUX_EXTMSTR1:
> +               master_saif = mxs_saif[1];
> +               break;
> +       default:
> +               return NULL;
> +       }
> +
> +       return master_saif;
> +}
> +
> +/*
>   * Set SAIF clock and MCLK
>   */
>  static int mxs_saif_set_clk(struct mxs_saif *saif,
> @@ -60,8 +114,27 @@ static int mxs_saif_set_clk(struct mxs_saif *saif,
>  {
>         u32 scr;
>         int ret;
> +       struct mxs_saif *master_saif;
> 
> -       scr = __raw_readl(saif->base + SAIF_CTRL);
> +       dev_dbg(saif->dev, "mclk %d rate %d\n", mclk, rate);
> +
> +       /* Set master saif to generate proper clock */
> +       master_saif = mxs_saif_get_master(saif);
> +       if (!master_saif)
> +               return -EINVAL;
> +
> +       dev_dbg(saif->dev, "master saif%d clkmux 0x%x\n",
> +               master_saif->id, saif->clkmux);
> +
> +       /* Checking if can playback and capture simutaneously */
> +       if (master_saif->ongoing && rate != master_saif->cur_rate) {
> +               dev_err(saif->dev,
> +                       "can not change clock, master saif%d(rate %d) is ongoing\n",
> +                       master_saif->id, master_saif->cur_rate);
> +               return -EINVAL;
> +       }
> +
> +       scr = __raw_readl(master_saif->base + SAIF_CTRL);
>         scr &= ~BM_SAIF_CTRL_BITCLK_MULT_RATE;
>         scr &= ~BM_SAIF_CTRL_BITCLK_BASE_RATE;
> 
> @@ -75,27 +148,29 @@ static int mxs_saif_set_clk(struct mxs_saif *saif,
>          *
>          * If MCLK is not used, we just set saif clk to 512*fs.
>          */
> -       if (saif->mclk_in_use) {
> +       if (master_saif->mclk_in_use) {
>                 if (mclk % 32 == 0) {
>                         scr &= ~BM_SAIF_CTRL_BITCLK_BASE_RATE;
> -                       ret = clk_set_rate(saif->clk, 512 * rate);
> +                       ret = clk_set_rate(master_saif->clk, 512 * rate);
>                 } else if (mclk % 48 == 0) {
>                         scr |= BM_SAIF_CTRL_BITCLK_BASE_RATE;
> -                       ret = clk_set_rate(saif->clk, 384 * rate);
> +                       ret = clk_set_rate(master_saif->clk, 384 * rate);
>                 } else {
>                         /* SAIF MCLK should be either 32x or 48x */
>                         return -EINVAL;
>                 }
>         } else {
> -               ret = clk_set_rate(saif->clk, 512 * rate);
> +               ret = clk_set_rate(master_saif->clk, 512 * rate);
>                 scr &= ~BM_SAIF_CTRL_BITCLK_BASE_RATE;
>         }
> 
>         if (ret)
>                 return ret;
> 
> -       if (!saif->mclk_in_use) {
> -               __raw_writel(scr, saif->base + SAIF_CTRL);
> +       master_saif->cur_rate = rate;
> +
> +       if (!master_saif->mclk_in_use) {
> +               __raw_writel(scr, master_saif->base + SAIF_CTRL);
>                 return 0;
>         }
> 
> @@ -137,7 +212,7 @@ static int mxs_saif_set_clk(struct mxs_saif *saif,
>                 return -EINVAL;
>         }
> 
> -       __raw_writel(scr, saif->base + SAIF_CTRL);
> +       __raw_writel(scr, master_saif->base + SAIF_CTRL);
> 
>         return 0;
>  }
> @@ -183,6 +258,7 @@ int mxs_saif_get_mclk(unsigned int saif_id, unsigned int mclk,
>         struct mxs_saif *saif = mxs_saif[saif_id];
>         u32 stat;
>         int ret;
> +       struct mxs_saif *master_saif;
> 
>         if (!saif)
>                 return -EINVAL;
> @@ -195,6 +271,12 @@ int mxs_saif_get_mclk(unsigned int saif_id, unsigned int mclk,
>         __raw_writel(BM_SAIF_CTRL_CLKGATE,
>                 saif->base + SAIF_CTRL + MXS_CLR_ADDR);
> 
> +       master_saif = mxs_saif_get_master(saif);
> +       if (saif != master_saif) {
> +               dev_err(saif->dev, "can not get mclk from a non-master saif\n");
> +               return -EINVAL;
> +       }
> +
>         stat = __raw_readl(saif->base + SAIF_STAT);
>         if (stat & BM_SAIF_STAT_BUSY) {
>                 dev_err(saif->dev, "error: busy\n");
> @@ -278,10 +360,21 @@ static int mxs_saif_set_dai_fmt(struct snd_soc_dai *cpu_dai, unsigned int fmt)
>         /*
>          * Note: We simply just support master mode since SAIF TX can only
>          * work as master.
> +        * Here the master is relative to codec side.
> +        * Saif internally could be slave when working on EXTMASTER mode.
> +        * We just hide this to machine driver.
>          */
>         switch (fmt & SND_SOC_DAIFMT_MASTER_MASK) {
>         case SND_SOC_DAIFMT_CBS_CFS:
> -               scr &= ~BM_SAIF_CTRL_SLAVE_MODE;
> +               if (saif->clkmux == MXS_DIGCTL_SAIF_CLKMUX_EXTMSTR0)
> +                       scr = saif->id ? scr | BM_SAIF_CTRL_SLAVE_MODE :
> +                                       scr & ~BM_SAIF_CTRL_SLAVE_MODE;
> +               else if (saif->clkmux == MXS_DIGCTL_SAIF_CLKMUX_EXTMSTR1)
> +                       scr = saif->id ? scr & ~BM_SAIF_CTRL_SLAVE_MODE :
> +                                       scr | BM_SAIF_CTRL_SLAVE_MODE;
> +               else
> +                       scr &= ~BM_SAIF_CTRL_SLAVE_MODE;
> +
>                 __raw_writel(scr | scr0, saif->base + SAIF_CTRL);
>                 break;
>         default:
> @@ -396,6 +489,11 @@ static int mxs_saif_trigger(struct snd_pcm_substream *substream, int cmd,
>                                 struct snd_soc_dai *cpu_dai)
>  {
>         struct mxs_saif *saif = snd_soc_dai_get_drvdata(cpu_dai);
> +       struct mxs_saif *master_saif;
> +
> +       master_saif = mxs_saif_get_master(saif);
> +       if (!master_saif)
> +               return -EINVAL;
> 
>         switch (cmd) {
>         case SNDRV_PCM_TRIGGER_START:
> @@ -403,10 +501,20 @@ static int mxs_saif_trigger(struct snd_pcm_substream *substream, int cmd,
>         case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
>                 dev_dbg(cpu_dai->dev, "start\n");
> 
> -               clk_enable(saif->clk);
> -               if (!saif->mclk_in_use)
> +               clk_enable(master_saif->clk);
> +               if (!master_saif->mclk_in_use)
> +                       __raw_writel(BM_SAIF_CTRL_RUN,
> +                               master_saif->base + SAIF_CTRL + MXS_SET_ADDR);
> +
> +               /*
> +                * If the saif's master is not himself, we also need to enable
> +                * itself clk for its internal basic logic to work.
> +                */
> +               if (saif != master_saif) {
> +                       clk_enable(saif->clk);
>                         __raw_writel(BM_SAIF_CTRL_RUN,
>                                 saif->base + SAIF_CTRL + MXS_SET_ADDR);
> +               }
> 
>                 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
>                         /*
> @@ -422,20 +530,37 @@ static int mxs_saif_trigger(struct snd_pcm_substream *substream, int cmd,
>                         __raw_readl(saif->base + SAIF_DATA);
>                 }
> 
> -               dev_dbg(cpu_dai->dev, "CTRL 0x%x STAT 0x%x\n",
> +               master_saif->ongoing = 1;
> +
> +               dev_dbg(saif->dev, "CTRL 0x%x STAT 0x%x\n",
>                         __raw_readl(saif->base + SAIF_CTRL),
>                         __raw_readl(saif->base + SAIF_STAT));
> 
> +               dev_dbg(master_saif->dev, "CTRL 0x%x STAT 0x%x\n",
> +                       __raw_readl(master_saif->base + SAIF_CTRL),
> +                       __raw_readl(master_saif->base + SAIF_STAT));
>                 break;
>         case SNDRV_PCM_TRIGGER_SUSPEND:
>         case SNDRV_PCM_TRIGGER_STOP:
>         case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
>                 dev_dbg(cpu_dai->dev, "stop\n");
> 
> -               clk_disable(saif->clk);
> -               if (!saif->mclk_in_use)
> +               if (!master_saif->mclk_in_use) {
> +                       __raw_writel(BM_SAIF_CTRL_RUN,
> +                               master_saif->base + SAIF_CTRL + MXS_CLR_ADDR);
> +                       udelay(100);
> +               }
> +               clk_disable(master_saif->clk);
> +
> +               if (saif != master_saif) {
>                         __raw_writel(BM_SAIF_CTRL_RUN,
>                                 saif->base + SAIF_CTRL + MXS_CLR_ADDR);
> +                       /* wait a while for the current sample to complete */
> +                       udelay(100);

This is a little short to cover 8kHz sample rate (125us). It may be worthwhile to calc the delay based on the rate here.


> +                       clk_disable(saif->clk);
> +               }
> +
> +               master_saif->ongoing = 0;
> 
>                 break;
>         default:
> @@ -519,15 +644,24 @@ static int mxs_saif_probe(struct platform_device *pdev)
>  {
>         struct resource *res;
>         struct mxs_saif *saif;
> +       struct mxs_saif_platform_data *pdata;
>         int ret = 0;
> 
> +       pdata = pdev->dev.platform_data;
> +       if (pdata && pdata->init())
> +               return -EINVAL;
> +
>         saif = kzalloc(sizeof(*saif), GFP_KERNEL);
>         if (!saif)
>                 return -ENOMEM;
> 
> +       if (pdata)
> +               saif->clkmux  = pdata->clkmux;
> +
>         if (pdev->id >= ARRAY_SIZE(mxs_saif))
>                 return -EINVAL;
>         mxs_saif[pdev->id] = saif;
> +       saif->id = pdev->id;
> 
>         saif->clk = clk_get(&pdev->dev, NULL);
>         if (IS_ERR(saif->clk)) {
> diff --git a/sound/soc/mxs/mxs-saif.h b/sound/soc/mxs/mxs-saif.h
> index 0e2ff8c..2a6aec1 100644
> --- a/sound/soc/mxs/mxs-saif.h
> +++ b/sound/soc/mxs/mxs-saif.h
> @@ -118,6 +118,10 @@ struct mxs_saif {
>         void __iomem *base;
>         int irq;
>         struct mxs_pcm_dma_params dma_param;
> +       unsigned int id;
> +       unsigned int clkmux;
> +       unsigned int cur_rate;
> +       unsigned int ongoing;
> 
>         struct platform_device *soc_platform_pdev;
>         u32 fifo_underrun;
> --
> 1.7.0.4
> 
> 

^ permalink raw reply	[flat|nested] 10+ messages in thread

* RE: [PATCH 1/2] ASoC: mxs-saif: add record function
  2011-08-22 10:37   ` Liam Girdwood
@ 2011-08-22 11:09     ` Dong Aisheng-B29396
  -1 siblings, 0 replies; 10+ messages in thread
From: Dong Aisheng-B29396 @ 2011-08-22 11:09 UTC (permalink / raw)
  To: Liam Girdwood; +Cc: alsa-devel, broonie, s.hauer, linux-arm-kernel, w.sang

> -----Original Message-----
> From: linux-arm-kernel-bounces@lists.infradead.org [mailto:linux-arm-
> kernel-bounces@lists.infradead.org] On Behalf Of Liam Girdwood
> Sent: Monday, August 22, 2011 6:38 PM
> To: Dong Aisheng-B29396
> Cc: alsa-devel@alsa-project.org; broonie@opensource.wolfsonmicro.com;
> s.hauer@pengutronix.de; linux-arm-kernel@lists.infradead.org;
> w.sang@pengutronix.de
> Subject: Re: [PATCH 1/2] ASoC: mxs-saif: add record function
> 
> On 21/08/11 17:02, Dong Aisheng wrote:
> > 1. add different clkmux mode handling for record.
> > SAIF can use two instances to implement full duplex (playback &
> > recording) and record saif may work on EXTMASTER mode that is using
> > other saif's BITCLK&LRCLK.
> > The clkmux mode is determined by saif's platform data and machine
> > specific clkmux setting is done in pdata->init().
> > 2. support playback and capture simutaneously however the sample rates
> > can not be different due to hw limitation.
> >
> > Signed-off-by: Dong Aisheng <b29396@freescale.com>
> > Cc: Mark Brown <broonie@opensource.wolfsonmicro.com>
> > Cc: Liam Girdwood <lrg@ti.com>
> > Cc: Sascha Hauer <s.hauer@pengutronix.de>
> > Cc: Wolfram Sang <w.sang@pengutronix.de>
> 
> Looks fine, just some minor questions below.
Thanks for the review.

> > ---
> >  include/sound/saif.h     |   16 +++++
> >  sound/soc/mxs/mxs-saif.c |  162
> ++++++++++++++++++++++++++++++++++++++++++----
> >  sound/soc/mxs/mxs-saif.h |    4 +
> >  3 files changed, 168 insertions(+), 14 deletions(-)
> >
> > diff --git a/include/sound/saif.h b/include/sound/saif.h new file mode
> > 100644 index 0000000..7a98d9b
> > --- /dev/null
> > +++ b/include/sound/saif.h
> > @@ -0,0 +1,16 @@
> > +/*
> > + * Copyright 2011 Freescale Semiconductor, Inc. All Rights Reserved.
> > + *
> > + * This program is free software; you can redistribute it and/or
> > +modify
> > + * it under the terms of the GNU General Public License version 2 as
> > + * published by the Free Software Foundation.
> > + */
> > +
> > +#ifndef __MACH_MXS_SAIF_H__
> > +#define __MACH_MXS_SAIF_H__
> 
> The macro naming here should probably match the sound directory/driver
Yes, I will change like that.

> > +
> > +struct mxs_saif_platform_data {
> > +       unsigned int clkmux;
> > +       int (*init) (void);
> > +};
> > +#endif
> > diff --git a/sound/soc/mxs/mxs-saif.c b/sound/soc/mxs/mxs-saif.c index
> > 530017f..eb8ba79 100644
> > --- a/sound/soc/mxs/mxs-saif.c
> > +++ b/sound/soc/mxs/mxs-saif.c
> > @@ -27,15 +27,39 @@
> >  #include <sound/pcm.h>
> >  #include <sound/pcm_params.h>
> >  #include <sound/soc.h>
> > +#include <sound/saif.h>
> >  #include <mach/dma.h>
> >  #include <asm/mach-types.h>
> >  #include <mach/hardware.h>
> >  #include <mach/mxs.h>
> > +#include <mach/digctl.h>
> >
> >  #include "mxs-saif.h"
> >
> >  static struct mxs_saif *mxs_saif[2];
> >
> > +/*
> > + * SAIF is a little different with other normal SOC DAIs on clock
> using.
> > + *
> > + * For MXS, two SAIF modules are instantiated on-chip.
> > + * Each SAIF has a set of clock pins and can be operating in master
> > + * mode simultaneously if they are connected to different off-chip
> codecs.
> > + * Also, one of the two SAIFs can master or drive the clock pins
> > +while the
> > + * other SAIF, in slave mode, receives clocking from the master SAIF.
> > + * This also means that both SAIFs must operate at the same sample
> rate.
> > + * Following are the valid configurations for SAIF1 and SAIF2 on the
> > +i.MX28
> > + *
> > + * HW_SAIF_CLKMUX_SEL:
> > + *  DIRECT(0x0): SAIF0 clock pins selected for SAIF0 input clocks, and
> SAIF1
> > + *             clock pins selected for SAIF1 input clocks.
> > + *  CROSSINPUT(0x1): SAIF1 clock inputs selected for SAIF0 input
> clocks, and
> > + *             SAIF0 clock inputs selected for SAIF1 input clocks.
> > + *  EXTMSTR0(0x2): SAIF0 clock pin selected for both SAIF0 and SAIF1
> input
> > + *             clocks.
> > + *  EXTMSTR1(0x3): SAIF1 clock pin selected for both SAIF0 and SAIF1
> input
> > + *             clocks.
> > + */
> > +
> >  static int mxs_saif_set_dai_sysclk(struct snd_soc_dai *cpu_dai,
> >                         int clk_id, unsigned int freq, int dir)  { @@
> > -52,6 +76,36 @@ static int mxs_saif_set_dai_sysclk(struct snd_soc_dai
> > *cpu_dai,  }
> >
> >  /*
> > + * Since SAIF may work on EXTMASTER mode, IOW, it's working
> > +BITCLK&LRCLK
> > + * is provided by other SAIF, we provide a interface here to get its
> master.
> > + * Note that for DIRECT mode, it's master is itself.
> > + */
> > +static struct mxs_saif *mxs_saif_get_master(struct mxs_saif * saif) {
> > +       struct mxs_saif *master_saif;
> > +
> > +       /* get master saif according to different clkmux setting */
> > +       switch (saif->clkmux) {
> > +       case MXS_DIGCTL_SAIF_CLKMUX_DIRECT:
> > +               master_saif = saif;
> > +               break;
> > +       case MXS_DIGCTL_SAIF_CLKMUX_CROSSINPUT:
> > +               master_saif = saif->id ? mxs_saif[1] : mxs_saif[0];
> > +               break;
> > +       case MXS_DIGCTL_SAIF_CLKMUX_EXTMSTR0:
> > +               master_saif = mxs_saif[0];
> > +               break;
> > +       case MXS_DIGCTL_SAIF_CLKMUX_EXTMSTR1:
> > +               master_saif = mxs_saif[1];
> > +               break;
> > +       default:
> > +               return NULL;
> > +       }
> > +
> > +       return master_saif;
> > +}
> > +
> > +/*
> >   * Set SAIF clock and MCLK
> >   */
> >  static int mxs_saif_set_clk(struct mxs_saif *saif, @@ -60,8 +114,27
> > @@ static int mxs_saif_set_clk(struct mxs_saif *saif,  {
> >         u32 scr;
> >         int ret;
> > +       struct mxs_saif *master_saif;
> >
> > -       scr = __raw_readl(saif->base + SAIF_CTRL);
> > +       dev_dbg(saif->dev, "mclk %d rate %d\n", mclk, rate);
> > +
> > +       /* Set master saif to generate proper clock */
> > +       master_saif = mxs_saif_get_master(saif);
> > +       if (!master_saif)
> > +               return -EINVAL;
> > +
> > +       dev_dbg(saif->dev, "master saif%d clkmux 0x%x\n",
> > +               master_saif->id, saif->clkmux);
> > +
> > +       /* Checking if can playback and capture simutaneously */
> > +       if (master_saif->ongoing && rate != master_saif->cur_rate) {
> > +               dev_err(saif->dev,
> > +                       "can not change clock, master saif%d(rate %d)
> is ongoing\n",
> > +                       master_saif->id, master_saif->cur_rate);
> > +               return -EINVAL;
> > +       }
> > +
> > +       scr = __raw_readl(master_saif->base + SAIF_CTRL);
> >         scr &= ~BM_SAIF_CTRL_BITCLK_MULT_RATE;
> >         scr &= ~BM_SAIF_CTRL_BITCLK_BASE_RATE;
> >
> > @@ -75,27 +148,29 @@ static int mxs_saif_set_clk(struct mxs_saif *saif,
> >          *
> >          * If MCLK is not used, we just set saif clk to 512*fs.
> >          */
> > -       if (saif->mclk_in_use) {
> > +       if (master_saif->mclk_in_use) {
> >                 if (mclk % 32 == 0) {
> >                         scr &= ~BM_SAIF_CTRL_BITCLK_BASE_RATE;
> > -                       ret = clk_set_rate(saif->clk, 512 * rate);
> > +                       ret = clk_set_rate(master_saif->clk, 512 *
> > + rate);
> >                 } else if (mclk % 48 == 0) {
> >                         scr |= BM_SAIF_CTRL_BITCLK_BASE_RATE;
> > -                       ret = clk_set_rate(saif->clk, 384 * rate);
> > +                       ret = clk_set_rate(master_saif->clk, 384 *
> > + rate);
> >                 } else {
> >                         /* SAIF MCLK should be either 32x or 48x */
> >                         return -EINVAL;
> >                 }
> >         } else {
> > -               ret = clk_set_rate(saif->clk, 512 * rate);
> > +               ret = clk_set_rate(master_saif->clk, 512 * rate);
> >                 scr &= ~BM_SAIF_CTRL_BITCLK_BASE_RATE;
> >         }
> >
> >         if (ret)
> >                 return ret;
> >
> > -       if (!saif->mclk_in_use) {
> > -               __raw_writel(scr, saif->base + SAIF_CTRL);
> > +       master_saif->cur_rate = rate;
> > +
> > +       if (!master_saif->mclk_in_use) {
> > +               __raw_writel(scr, master_saif->base + SAIF_CTRL);
> >                 return 0;
> >         }
> >
> > @@ -137,7 +212,7 @@ static int mxs_saif_set_clk(struct mxs_saif *saif,
> >                 return -EINVAL;
> >         }
> >
> > -       __raw_writel(scr, saif->base + SAIF_CTRL);
> > +       __raw_writel(scr, master_saif->base + SAIF_CTRL);
> >
> >         return 0;
> >  }
> > @@ -183,6 +258,7 @@ int mxs_saif_get_mclk(unsigned int saif_id,
> unsigned int mclk,
> >         struct mxs_saif *saif = mxs_saif[saif_id];
> >         u32 stat;
> >         int ret;
> > +       struct mxs_saif *master_saif;
> >
> >         if (!saif)
> >                 return -EINVAL;
> > @@ -195,6 +271,12 @@ int mxs_saif_get_mclk(unsigned int saif_id,
> unsigned int mclk,
> >         __raw_writel(BM_SAIF_CTRL_CLKGATE,
> >                 saif->base + SAIF_CTRL + MXS_CLR_ADDR);
> >
> > +       master_saif = mxs_saif_get_master(saif);
> > +       if (saif != master_saif) {
> > +               dev_err(saif->dev, "can not get mclk from a non-master
> saif\n");
> > +               return -EINVAL;
> > +       }
> > +
> >         stat = __raw_readl(saif->base + SAIF_STAT);
> >         if (stat & BM_SAIF_STAT_BUSY) {
> >                 dev_err(saif->dev, "error: busy\n"); @@ -278,10
> > +360,21 @@ static int mxs_saif_set_dai_fmt(struct snd_soc_dai *cpu_dai,
> unsigned int fmt)
> >         /*
> >          * Note: We simply just support master mode since SAIF TX can
> only
> >          * work as master.
> > +        * Here the master is relative to codec side.
> > +        * Saif internally could be slave when working on EXTMASTER
> mode.
> > +        * We just hide this to machine driver.
> >          */
> >         switch (fmt & SND_SOC_DAIFMT_MASTER_MASK) {
> >         case SND_SOC_DAIFMT_CBS_CFS:
> > -               scr &= ~BM_SAIF_CTRL_SLAVE_MODE;
> > +               if (saif->clkmux == MXS_DIGCTL_SAIF_CLKMUX_EXTMSTR0)
> > +                       scr = saif->id ? scr | BM_SAIF_CTRL_SLAVE_MODE :
> > +                                       scr & ~BM_SAIF_CTRL_SLAVE_MODE;
> > +               else if (saif->clkmux ==
> MXS_DIGCTL_SAIF_CLKMUX_EXTMSTR1)
> > +                       scr = saif->id ? scr &
> ~BM_SAIF_CTRL_SLAVE_MODE :
> > +                                       scr | BM_SAIF_CTRL_SLAVE_MODE;
> > +               else
> > +                       scr &= ~BM_SAIF_CTRL_SLAVE_MODE;
> > +
> >                 __raw_writel(scr | scr0, saif->base + SAIF_CTRL);
> >                 break;
> >         default:
> > @@ -396,6 +489,11 @@ static int mxs_saif_trigger(struct
> snd_pcm_substream *substream, int cmd,
> >                                 struct snd_soc_dai *cpu_dai)  {
> >         struct mxs_saif *saif = snd_soc_dai_get_drvdata(cpu_dai);
> > +       struct mxs_saif *master_saif;
> > +
> > +       master_saif = mxs_saif_get_master(saif);
> > +       if (!master_saif)
> > +               return -EINVAL;
> >
> >         switch (cmd) {
> >         case SNDRV_PCM_TRIGGER_START:
> > @@ -403,10 +501,20 @@ static int mxs_saif_trigger(struct
> snd_pcm_substream *substream, int cmd,
> >         case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
> >                 dev_dbg(cpu_dai->dev, "start\n");
> >
> > -               clk_enable(saif->clk);
> > -               if (!saif->mclk_in_use)
> > +               clk_enable(master_saif->clk);
> > +               if (!master_saif->mclk_in_use)
> > +                       __raw_writel(BM_SAIF_CTRL_RUN,
> > +                               master_saif->base + SAIF_CTRL +
> > + MXS_SET_ADDR);
> > +
> > +               /*
> > +                * If the saif's master is not himself, we also need to
> enable
> > +                * itself clk for its internal basic logic to work.
> > +                */
> > +               if (saif != master_saif) {
> > +                       clk_enable(saif->clk);
> >                         __raw_writel(BM_SAIF_CTRL_RUN,
> >                                 saif->base + SAIF_CTRL +
> > MXS_SET_ADDR);
> > +               }
> >
> >                 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
> >                         /*
> > @@ -422,20 +530,37 @@ static int mxs_saif_trigger(struct
> snd_pcm_substream *substream, int cmd,
> >                         __raw_readl(saif->base + SAIF_DATA);
> >                 }
> >
> > -               dev_dbg(cpu_dai->dev, "CTRL 0x%x STAT 0x%x\n",
> > +               master_saif->ongoing = 1;
> > +
> > +               dev_dbg(saif->dev, "CTRL 0x%x STAT 0x%x\n",
> >                         __raw_readl(saif->base + SAIF_CTRL),
> >                         __raw_readl(saif->base + SAIF_STAT));
> >
> > +               dev_dbg(master_saif->dev, "CTRL 0x%x STAT 0x%x\n",
> > +                       __raw_readl(master_saif->base + SAIF_CTRL),
> > +                       __raw_readl(master_saif->base + SAIF_STAT));
> >                 break;
> >         case SNDRV_PCM_TRIGGER_SUSPEND:
> >         case SNDRV_PCM_TRIGGER_STOP:
> >         case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
> >                 dev_dbg(cpu_dai->dev, "stop\n");
> >
> > -               clk_disable(saif->clk);
> > -               if (!saif->mclk_in_use)
> > +               if (!master_saif->mclk_in_use) {
> > +                       __raw_writel(BM_SAIF_CTRL_RUN,
> > +                               master_saif->base + SAIF_CTRL +
> MXS_CLR_ADDR);
> > +                       udelay(100);
> > +               }
> > +               clk_disable(master_saif->clk);
> > +
> > +               if (saif != master_saif) {
> >                         __raw_writel(BM_SAIF_CTRL_RUN,
> >                                 saif->base + SAIF_CTRL +
> > MXS_CLR_ADDR);
> > +                       /* wait a while for the current sample to
> complete */
> > +                       udelay(100);
> 
> This is a little short to cover 8kHz sample rate (125us). It may be
> worthwhile to calc the delay based on the rate here.
Thanks for the reminder.
I will add it.

> 
> > +                       clk_disable(saif->clk);
> > +               }
> > +
> > +               master_saif->ongoing = 0;
> >
> >                 break;
> >         default:
> > @@ -519,15 +644,24 @@ static int mxs_saif_probe(struct platform_device
> > *pdev)  {
> >         struct resource *res;
> >         struct mxs_saif *saif;
> > +       struct mxs_saif_platform_data *pdata;
> >         int ret = 0;
> >
> > +       pdata = pdev->dev.platform_data;
> > +       if (pdata && pdata->init())
> > +               return -EINVAL;
> > +
> >         saif = kzalloc(sizeof(*saif), GFP_KERNEL);
> >         if (!saif)
> >                 return -ENOMEM;
> >
> > +       if (pdata)
> > +               saif->clkmux  = pdata->clkmux;
> > +
> >         if (pdev->id >= ARRAY_SIZE(mxs_saif))
> >                 return -EINVAL;
> >         mxs_saif[pdev->id] = saif;
> > +       saif->id = pdev->id;
> >
> >         saif->clk = clk_get(&pdev->dev, NULL);
> >         if (IS_ERR(saif->clk)) {
> > diff --git a/sound/soc/mxs/mxs-saif.h b/sound/soc/mxs/mxs-saif.h index
> > 0e2ff8c..2a6aec1 100644
> > --- a/sound/soc/mxs/mxs-saif.h
> > +++ b/sound/soc/mxs/mxs-saif.h
> > @@ -118,6 +118,10 @@ struct mxs_saif {
> >         void __iomem *base;
> >         int irq;
> >         struct mxs_pcm_dma_params dma_param;
> > +       unsigned int id;
> > +       unsigned int clkmux;
> > +       unsigned int cur_rate;
> > +       unsigned int ongoing;
> >
> >         struct platform_device *soc_platform_pdev;
> >         u32 fifo_underrun;
> > --
> > 1.7.0.4
> >
> >
> 
> 
> _______________________________________________
> linux-arm-kernel mailing list
> linux-arm-kernel@lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

^ permalink raw reply	[flat|nested] 10+ messages in thread

* [PATCH 1/2] ASoC: mxs-saif: add record function
@ 2011-08-22 11:09     ` Dong Aisheng-B29396
  0 siblings, 0 replies; 10+ messages in thread
From: Dong Aisheng-B29396 @ 2011-08-22 11:09 UTC (permalink / raw)
  To: linux-arm-kernel

> -----Original Message-----
> From: linux-arm-kernel-bounces at lists.infradead.org [mailto:linux-arm-
> kernel-bounces at lists.infradead.org] On Behalf Of Liam Girdwood
> Sent: Monday, August 22, 2011 6:38 PM
> To: Dong Aisheng-B29396
> Cc: alsa-devel at alsa-project.org; broonie at opensource.wolfsonmicro.com;
> s.hauer at pengutronix.de; linux-arm-kernel at lists.infradead.org;
> w.sang at pengutronix.de
> Subject: Re: [PATCH 1/2] ASoC: mxs-saif: add record function
> 
> On 21/08/11 17:02, Dong Aisheng wrote:
> > 1. add different clkmux mode handling for record.
> > SAIF can use two instances to implement full duplex (playback &
> > recording) and record saif may work on EXTMASTER mode that is using
> > other saif's BITCLK&LRCLK.
> > The clkmux mode is determined by saif's platform data and machine
> > specific clkmux setting is done in pdata->init().
> > 2. support playback and capture simutaneously however the sample rates
> > can not be different due to hw limitation.
> >
> > Signed-off-by: Dong Aisheng <b29396@freescale.com>
> > Cc: Mark Brown <broonie@opensource.wolfsonmicro.com>
> > Cc: Liam Girdwood <lrg@ti.com>
> > Cc: Sascha Hauer <s.hauer@pengutronix.de>
> > Cc: Wolfram Sang <w.sang@pengutronix.de>
> 
> Looks fine, just some minor questions below.
Thanks for the review.

> > ---
> >  include/sound/saif.h     |   16 +++++
> >  sound/soc/mxs/mxs-saif.c |  162
> ++++++++++++++++++++++++++++++++++++++++++----
> >  sound/soc/mxs/mxs-saif.h |    4 +
> >  3 files changed, 168 insertions(+), 14 deletions(-)
> >
> > diff --git a/include/sound/saif.h b/include/sound/saif.h new file mode
> > 100644 index 0000000..7a98d9b
> > --- /dev/null
> > +++ b/include/sound/saif.h
> > @@ -0,0 +1,16 @@
> > +/*
> > + * Copyright 2011 Freescale Semiconductor, Inc. All Rights Reserved.
> > + *
> > + * This program is free software; you can redistribute it and/or
> > +modify
> > + * it under the terms of the GNU General Public License version 2 as
> > + * published by the Free Software Foundation.
> > + */
> > +
> > +#ifndef __MACH_MXS_SAIF_H__
> > +#define __MACH_MXS_SAIF_H__
> 
> The macro naming here should probably match the sound directory/driver
Yes, I will change like that.

> > +
> > +struct mxs_saif_platform_data {
> > +       unsigned int clkmux;
> > +       int (*init) (void);
> > +};
> > +#endif
> > diff --git a/sound/soc/mxs/mxs-saif.c b/sound/soc/mxs/mxs-saif.c index
> > 530017f..eb8ba79 100644
> > --- a/sound/soc/mxs/mxs-saif.c
> > +++ b/sound/soc/mxs/mxs-saif.c
> > @@ -27,15 +27,39 @@
> >  #include <sound/pcm.h>
> >  #include <sound/pcm_params.h>
> >  #include <sound/soc.h>
> > +#include <sound/saif.h>
> >  #include <mach/dma.h>
> >  #include <asm/mach-types.h>
> >  #include <mach/hardware.h>
> >  #include <mach/mxs.h>
> > +#include <mach/digctl.h>
> >
> >  #include "mxs-saif.h"
> >
> >  static struct mxs_saif *mxs_saif[2];
> >
> > +/*
> > + * SAIF is a little different with other normal SOC DAIs on clock
> using.
> > + *
> > + * For MXS, two SAIF modules are instantiated on-chip.
> > + * Each SAIF has a set of clock pins and can be operating in master
> > + * mode simultaneously if they are connected to different off-chip
> codecs.
> > + * Also, one of the two SAIFs can master or drive the clock pins
> > +while the
> > + * other SAIF, in slave mode, receives clocking from the master SAIF.
> > + * This also means that both SAIFs must operate at the same sample
> rate.
> > + * Following are the valid configurations for SAIF1 and SAIF2 on the
> > +i.MX28
> > + *
> > + * HW_SAIF_CLKMUX_SEL:
> > + *  DIRECT(0x0): SAIF0 clock pins selected for SAIF0 input clocks, and
> SAIF1
> > + *             clock pins selected for SAIF1 input clocks.
> > + *  CROSSINPUT(0x1): SAIF1 clock inputs selected for SAIF0 input
> clocks, and
> > + *             SAIF0 clock inputs selected for SAIF1 input clocks.
> > + *  EXTMSTR0(0x2): SAIF0 clock pin selected for both SAIF0 and SAIF1
> input
> > + *             clocks.
> > + *  EXTMSTR1(0x3): SAIF1 clock pin selected for both SAIF0 and SAIF1
> input
> > + *             clocks.
> > + */
> > +
> >  static int mxs_saif_set_dai_sysclk(struct snd_soc_dai *cpu_dai,
> >                         int clk_id, unsigned int freq, int dir)  { @@
> > -52,6 +76,36 @@ static int mxs_saif_set_dai_sysclk(struct snd_soc_dai
> > *cpu_dai,  }
> >
> >  /*
> > + * Since SAIF may work on EXTMASTER mode, IOW, it's working
> > +BITCLK&LRCLK
> > + * is provided by other SAIF, we provide a interface here to get its
> master.
> > + * Note that for DIRECT mode, it's master is itself.
> > + */
> > +static struct mxs_saif *mxs_saif_get_master(struct mxs_saif * saif) {
> > +       struct mxs_saif *master_saif;
> > +
> > +       /* get master saif according to different clkmux setting */
> > +       switch (saif->clkmux) {
> > +       case MXS_DIGCTL_SAIF_CLKMUX_DIRECT:
> > +               master_saif = saif;
> > +               break;
> > +       case MXS_DIGCTL_SAIF_CLKMUX_CROSSINPUT:
> > +               master_saif = saif->id ? mxs_saif[1] : mxs_saif[0];
> > +               break;
> > +       case MXS_DIGCTL_SAIF_CLKMUX_EXTMSTR0:
> > +               master_saif = mxs_saif[0];
> > +               break;
> > +       case MXS_DIGCTL_SAIF_CLKMUX_EXTMSTR1:
> > +               master_saif = mxs_saif[1];
> > +               break;
> > +       default:
> > +               return NULL;
> > +       }
> > +
> > +       return master_saif;
> > +}
> > +
> > +/*
> >   * Set SAIF clock and MCLK
> >   */
> >  static int mxs_saif_set_clk(struct mxs_saif *saif, @@ -60,8 +114,27
> > @@ static int mxs_saif_set_clk(struct mxs_saif *saif,  {
> >         u32 scr;
> >         int ret;
> > +       struct mxs_saif *master_saif;
> >
> > -       scr = __raw_readl(saif->base + SAIF_CTRL);
> > +       dev_dbg(saif->dev, "mclk %d rate %d\n", mclk, rate);
> > +
> > +       /* Set master saif to generate proper clock */
> > +       master_saif = mxs_saif_get_master(saif);
> > +       if (!master_saif)
> > +               return -EINVAL;
> > +
> > +       dev_dbg(saif->dev, "master saif%d clkmux 0x%x\n",
> > +               master_saif->id, saif->clkmux);
> > +
> > +       /* Checking if can playback and capture simutaneously */
> > +       if (master_saif->ongoing && rate != master_saif->cur_rate) {
> > +               dev_err(saif->dev,
> > +                       "can not change clock, master saif%d(rate %d)
> is ongoing\n",
> > +                       master_saif->id, master_saif->cur_rate);
> > +               return -EINVAL;
> > +       }
> > +
> > +       scr = __raw_readl(master_saif->base + SAIF_CTRL);
> >         scr &= ~BM_SAIF_CTRL_BITCLK_MULT_RATE;
> >         scr &= ~BM_SAIF_CTRL_BITCLK_BASE_RATE;
> >
> > @@ -75,27 +148,29 @@ static int mxs_saif_set_clk(struct mxs_saif *saif,
> >          *
> >          * If MCLK is not used, we just set saif clk to 512*fs.
> >          */
> > -       if (saif->mclk_in_use) {
> > +       if (master_saif->mclk_in_use) {
> >                 if (mclk % 32 == 0) {
> >                         scr &= ~BM_SAIF_CTRL_BITCLK_BASE_RATE;
> > -                       ret = clk_set_rate(saif->clk, 512 * rate);
> > +                       ret = clk_set_rate(master_saif->clk, 512 *
> > + rate);
> >                 } else if (mclk % 48 == 0) {
> >                         scr |= BM_SAIF_CTRL_BITCLK_BASE_RATE;
> > -                       ret = clk_set_rate(saif->clk, 384 * rate);
> > +                       ret = clk_set_rate(master_saif->clk, 384 *
> > + rate);
> >                 } else {
> >                         /* SAIF MCLK should be either 32x or 48x */
> >                         return -EINVAL;
> >                 }
> >         } else {
> > -               ret = clk_set_rate(saif->clk, 512 * rate);
> > +               ret = clk_set_rate(master_saif->clk, 512 * rate);
> >                 scr &= ~BM_SAIF_CTRL_BITCLK_BASE_RATE;
> >         }
> >
> >         if (ret)
> >                 return ret;
> >
> > -       if (!saif->mclk_in_use) {
> > -               __raw_writel(scr, saif->base + SAIF_CTRL);
> > +       master_saif->cur_rate = rate;
> > +
> > +       if (!master_saif->mclk_in_use) {
> > +               __raw_writel(scr, master_saif->base + SAIF_CTRL);
> >                 return 0;
> >         }
> >
> > @@ -137,7 +212,7 @@ static int mxs_saif_set_clk(struct mxs_saif *saif,
> >                 return -EINVAL;
> >         }
> >
> > -       __raw_writel(scr, saif->base + SAIF_CTRL);
> > +       __raw_writel(scr, master_saif->base + SAIF_CTRL);
> >
> >         return 0;
> >  }
> > @@ -183,6 +258,7 @@ int mxs_saif_get_mclk(unsigned int saif_id,
> unsigned int mclk,
> >         struct mxs_saif *saif = mxs_saif[saif_id];
> >         u32 stat;
> >         int ret;
> > +       struct mxs_saif *master_saif;
> >
> >         if (!saif)
> >                 return -EINVAL;
> > @@ -195,6 +271,12 @@ int mxs_saif_get_mclk(unsigned int saif_id,
> unsigned int mclk,
> >         __raw_writel(BM_SAIF_CTRL_CLKGATE,
> >                 saif->base + SAIF_CTRL + MXS_CLR_ADDR);
> >
> > +       master_saif = mxs_saif_get_master(saif);
> > +       if (saif != master_saif) {
> > +               dev_err(saif->dev, "can not get mclk from a non-master
> saif\n");
> > +               return -EINVAL;
> > +       }
> > +
> >         stat = __raw_readl(saif->base + SAIF_STAT);
> >         if (stat & BM_SAIF_STAT_BUSY) {
> >                 dev_err(saif->dev, "error: busy\n"); @@ -278,10
> > +360,21 @@ static int mxs_saif_set_dai_fmt(struct snd_soc_dai *cpu_dai,
> unsigned int fmt)
> >         /*
> >          * Note: We simply just support master mode since SAIF TX can
> only
> >          * work as master.
> > +        * Here the master is relative to codec side.
> > +        * Saif internally could be slave when working on EXTMASTER
> mode.
> > +        * We just hide this to machine driver.
> >          */
> >         switch (fmt & SND_SOC_DAIFMT_MASTER_MASK) {
> >         case SND_SOC_DAIFMT_CBS_CFS:
> > -               scr &= ~BM_SAIF_CTRL_SLAVE_MODE;
> > +               if (saif->clkmux == MXS_DIGCTL_SAIF_CLKMUX_EXTMSTR0)
> > +                       scr = saif->id ? scr | BM_SAIF_CTRL_SLAVE_MODE :
> > +                                       scr & ~BM_SAIF_CTRL_SLAVE_MODE;
> > +               else if (saif->clkmux ==
> MXS_DIGCTL_SAIF_CLKMUX_EXTMSTR1)
> > +                       scr = saif->id ? scr &
> ~BM_SAIF_CTRL_SLAVE_MODE :
> > +                                       scr | BM_SAIF_CTRL_SLAVE_MODE;
> > +               else
> > +                       scr &= ~BM_SAIF_CTRL_SLAVE_MODE;
> > +
> >                 __raw_writel(scr | scr0, saif->base + SAIF_CTRL);
> >                 break;
> >         default:
> > @@ -396,6 +489,11 @@ static int mxs_saif_trigger(struct
> snd_pcm_substream *substream, int cmd,
> >                                 struct snd_soc_dai *cpu_dai)  {
> >         struct mxs_saif *saif = snd_soc_dai_get_drvdata(cpu_dai);
> > +       struct mxs_saif *master_saif;
> > +
> > +       master_saif = mxs_saif_get_master(saif);
> > +       if (!master_saif)
> > +               return -EINVAL;
> >
> >         switch (cmd) {
> >         case SNDRV_PCM_TRIGGER_START:
> > @@ -403,10 +501,20 @@ static int mxs_saif_trigger(struct
> snd_pcm_substream *substream, int cmd,
> >         case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
> >                 dev_dbg(cpu_dai->dev, "start\n");
> >
> > -               clk_enable(saif->clk);
> > -               if (!saif->mclk_in_use)
> > +               clk_enable(master_saif->clk);
> > +               if (!master_saif->mclk_in_use)
> > +                       __raw_writel(BM_SAIF_CTRL_RUN,
> > +                               master_saif->base + SAIF_CTRL +
> > + MXS_SET_ADDR);
> > +
> > +               /*
> > +                * If the saif's master is not himself, we also need to
> enable
> > +                * itself clk for its internal basic logic to work.
> > +                */
> > +               if (saif != master_saif) {
> > +                       clk_enable(saif->clk);
> >                         __raw_writel(BM_SAIF_CTRL_RUN,
> >                                 saif->base + SAIF_CTRL +
> > MXS_SET_ADDR);
> > +               }
> >
> >                 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
> >                         /*
> > @@ -422,20 +530,37 @@ static int mxs_saif_trigger(struct
> snd_pcm_substream *substream, int cmd,
> >                         __raw_readl(saif->base + SAIF_DATA);
> >                 }
> >
> > -               dev_dbg(cpu_dai->dev, "CTRL 0x%x STAT 0x%x\n",
> > +               master_saif->ongoing = 1;
> > +
> > +               dev_dbg(saif->dev, "CTRL 0x%x STAT 0x%x\n",
> >                         __raw_readl(saif->base + SAIF_CTRL),
> >                         __raw_readl(saif->base + SAIF_STAT));
> >
> > +               dev_dbg(master_saif->dev, "CTRL 0x%x STAT 0x%x\n",
> > +                       __raw_readl(master_saif->base + SAIF_CTRL),
> > +                       __raw_readl(master_saif->base + SAIF_STAT));
> >                 break;
> >         case SNDRV_PCM_TRIGGER_SUSPEND:
> >         case SNDRV_PCM_TRIGGER_STOP:
> >         case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
> >                 dev_dbg(cpu_dai->dev, "stop\n");
> >
> > -               clk_disable(saif->clk);
> > -               if (!saif->mclk_in_use)
> > +               if (!master_saif->mclk_in_use) {
> > +                       __raw_writel(BM_SAIF_CTRL_RUN,
> > +                               master_saif->base + SAIF_CTRL +
> MXS_CLR_ADDR);
> > +                       udelay(100);
> > +               }
> > +               clk_disable(master_saif->clk);
> > +
> > +               if (saif != master_saif) {
> >                         __raw_writel(BM_SAIF_CTRL_RUN,
> >                                 saif->base + SAIF_CTRL +
> > MXS_CLR_ADDR);
> > +                       /* wait a while for the current sample to
> complete */
> > +                       udelay(100);
> 
> This is a little short to cover 8kHz sample rate (125us). It may be
> worthwhile to calc the delay based on the rate here.
Thanks for the reminder.
I will add it.

> 
> > +                       clk_disable(saif->clk);
> > +               }
> > +
> > +               master_saif->ongoing = 0;
> >
> >                 break;
> >         default:
> > @@ -519,15 +644,24 @@ static int mxs_saif_probe(struct platform_device
> > *pdev)  {
> >         struct resource *res;
> >         struct mxs_saif *saif;
> > +       struct mxs_saif_platform_data *pdata;
> >         int ret = 0;
> >
> > +       pdata = pdev->dev.platform_data;
> > +       if (pdata && pdata->init())
> > +               return -EINVAL;
> > +
> >         saif = kzalloc(sizeof(*saif), GFP_KERNEL);
> >         if (!saif)
> >                 return -ENOMEM;
> >
> > +       if (pdata)
> > +               saif->clkmux  = pdata->clkmux;
> > +
> >         if (pdev->id >= ARRAY_SIZE(mxs_saif))
> >                 return -EINVAL;
> >         mxs_saif[pdev->id] = saif;
> > +       saif->id = pdev->id;
> >
> >         saif->clk = clk_get(&pdev->dev, NULL);
> >         if (IS_ERR(saif->clk)) {
> > diff --git a/sound/soc/mxs/mxs-saif.h b/sound/soc/mxs/mxs-saif.h index
> > 0e2ff8c..2a6aec1 100644
> > --- a/sound/soc/mxs/mxs-saif.h
> > +++ b/sound/soc/mxs/mxs-saif.h
> > @@ -118,6 +118,10 @@ struct mxs_saif {
> >         void __iomem *base;
> >         int irq;
> >         struct mxs_pcm_dma_params dma_param;
> > +       unsigned int id;
> > +       unsigned int clkmux;
> > +       unsigned int cur_rate;
> > +       unsigned int ongoing;
> >
> >         struct platform_device *soc_platform_pdev;
> >         u32 fifo_underrun;
> > --
> > 1.7.0.4
> >
> >
> 
> 
> _______________________________________________
> linux-arm-kernel mailing list
> linux-arm-kernel at lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH 1/2] ASoC: mxs-saif: add record function
  2011-08-21 16:02 ` Dong Aisheng
@ 2011-08-22 11:30   ` Wolfram Sang
  -1 siblings, 0 replies; 10+ messages in thread
From: Wolfram Sang @ 2011-08-22 11:30 UTC (permalink / raw)
  To: Dong Aisheng; +Cc: alsa-devel, broonie, s.hauer, lrg, linux-arm-kernel


[-- Attachment #1.1: Type: text/plain, Size: 982 bytes --]

On Mon, Aug 22, 2011 at 12:02:25AM +0800, Dong Aisheng wrote:
> 1. add different clkmux mode handling for record.
> SAIF can use two instances to implement full duplex (playback &
> recording) and record saif may work on EXTMASTER mode that is
> using other saif's BITCLK&LRCLK.
> The clkmux mode is determined by saif's platform data and machine
> specific clkmux setting is done in pdata->init().
> 2. support playback and capture simutaneously however the sample
> rates can not be different due to hw limitation.
> 
> Signed-off-by: Dong Aisheng <b29396@freescale.com>
> Cc: Mark Brown <broonie@opensource.wolfsonmicro.com>
> Cc: Liam Girdwood <lrg@ti.com>
> Cc: Sascha Hauer <s.hauer@pengutronix.de>
> Cc: Wolfram Sang <w.sang@pengutronix.de>

Will test and review, but probably not before Wednesday.

-- 
Pengutronix e.K.                           | Wolfram Sang                |
Industrial Linux Solutions                 | http://www.pengutronix.de/  |

[-- Attachment #1.2: Digital signature --]
[-- Type: application/pgp-signature, Size: 198 bytes --]

[-- Attachment #2: Type: text/plain, Size: 0 bytes --]



^ permalink raw reply	[flat|nested] 10+ messages in thread

* [PATCH 1/2] ASoC: mxs-saif: add record function
@ 2011-08-22 11:30   ` Wolfram Sang
  0 siblings, 0 replies; 10+ messages in thread
From: Wolfram Sang @ 2011-08-22 11:30 UTC (permalink / raw)
  To: linux-arm-kernel

On Mon, Aug 22, 2011 at 12:02:25AM +0800, Dong Aisheng wrote:
> 1. add different clkmux mode handling for record.
> SAIF can use two instances to implement full duplex (playback &
> recording) and record saif may work on EXTMASTER mode that is
> using other saif's BITCLK&LRCLK.
> The clkmux mode is determined by saif's platform data and machine
> specific clkmux setting is done in pdata->init().
> 2. support playback and capture simutaneously however the sample
> rates can not be different due to hw limitation.
> 
> Signed-off-by: Dong Aisheng <b29396@freescale.com>
> Cc: Mark Brown <broonie@opensource.wolfsonmicro.com>
> Cc: Liam Girdwood <lrg@ti.com>
> Cc: Sascha Hauer <s.hauer@pengutronix.de>
> Cc: Wolfram Sang <w.sang@pengutronix.de>

Will test and review, but probably not before Wednesday.

-- 
Pengutronix e.K.                           | Wolfram Sang                |
Industrial Linux Solutions                 | http://www.pengutronix.de/  |
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 198 bytes
Desc: Digital signature
URL: <http://lists.infradead.org/pipermail/linux-arm-kernel/attachments/20110822/b76e2d0c/attachment.sig>

^ permalink raw reply	[flat|nested] 10+ messages in thread

* RE: [PATCH 1/2] ASoC: mxs-saif: add record function
  2011-08-22 11:30   ` Wolfram Sang
@ 2011-08-24 11:08     ` Dong Aisheng-B29396
  -1 siblings, 0 replies; 10+ messages in thread
From: Dong Aisheng-B29396 @ 2011-08-24 11:08 UTC (permalink / raw)
  To: Wolfram Sang; +Cc: alsa-devel, broonie, s.hauer, lrg, linux-arm-kernel

Hi Wolfram,

> -----Original Message-----
> From: Wolfram Sang [mailto:w.sang@pengutronix.de]
> Sent: Monday, August 22, 2011 7:31 PM
> To: Dong Aisheng-B29396
> Cc: alsa-devel@alsa-project.org; linux-arm-kernel@lists.infradead.org;
> broonie@opensource.wolfsonmicro.com; lrg@ti.com; s.hauer@pengutronix.de
> Subject: Re: [PATCH 1/2] ASoC: mxs-saif: add record function
> 
> On Mon, Aug 22, 2011 at 12:02:25AM +0800, Dong Aisheng wrote:
> > 1. add different clkmux mode handling for record.
> > SAIF can use two instances to implement full duplex (playback &
> > recording) and record saif may work on EXTMASTER mode that is using
> > other saif's BITCLK&LRCLK.
> > The clkmux mode is determined by saif's platform data and machine
> > specific clkmux setting is done in pdata->init().
> > 2. support playback and capture simutaneously however the sample rates
> > can not be different due to hw limitation.
> >
> > Signed-off-by: Dong Aisheng <b29396@freescale.com>
> > Cc: Mark Brown <broonie@opensource.wolfsonmicro.com>
> > Cc: Liam Girdwood <lrg@ti.com>
> > Cc: Sascha Hauer <s.hauer@pengutronix.de>
> > Cc: Wolfram Sang <w.sang@pengutronix.de>
> 
> Will test and review, but probably not before Wednesday.
> 

If you want to test, you may need to apply another sgtl5000 patch
to fix noise issue.

BTW, since MX28EVK only has line-in (no mic-in), i just tested by
capturing data from line-in and connected the line-in to a PC's
Headphone output.

Not sure if there might be some issue due to line-in level is a
little different from headphone out level.
(Any comments from the person who knows?)

Anyway, it just sounds well at my side.

The patch for your reference:
It's just for testing and I'm going to check it with our ic people
for the root cause.

Regards
Dong Aisheng

>From a29191c7716680966c82132e50356b78f9b1c9b6 Mon Sep 17 00:00:00 2001
From: Dong Aisheng <b29396@freescale.com>
Date: Wed, 17 Aug 2011 21:29:12 +0800
Subject: [PATCH 1/1] sgtl5000: fix record unwork issue

Signed-off-by: Dong Aisheng <b29396@freescale.com>
---
 sound/soc/codecs/sgtl5000.c |   32 ++++++++++++++++++--------------
 1 files changed, 18 insertions(+), 14 deletions(-)

diff --git a/sound/soc/codecs/sgtl5000.c b/sound/soc/codecs/sgtl5000.c
index 5a0d8e4..ef52890 100644
--- a/sound/soc/codecs/sgtl5000.c
+++ b/sound/soc/codecs/sgtl5000.c
@@ -198,13 +198,13 @@ static int small_pop_event(struct snd_soc_dapm_widget *w,
 {
 	switch (event) {
 	case SND_SOC_DAPM_PRE_PMU:
-		snd_soc_update_bits(w->codec, SGTL5000_CHIP_ANA_POWER,
-			SGTL5000_VAG_POWERUP, SGTL5000_VAG_POWERUP);
+//		snd_soc_update_bits(w->codec, SGTL5000_CHIP_ANA_POWER,
+//			SGTL5000_VAG_POWERUP, SGTL5000_VAG_POWERUP);
 		break;
 
 	case SND_SOC_DAPM_PRE_PMD:
-		snd_soc_update_bits(w->codec, SGTL5000_CHIP_ANA_POWER,
-			SGTL5000_VAG_POWERUP, 0);
+//		snd_soc_update_bits(w->codec, SGTL5000_CHIP_ANA_POWER,
+//			SGTL5000_VAG_POWERUP, 0);
 		msleep(400);
 		break;
 	default:
@@ -1153,11 +1153,13 @@ static int sgtl5000_set_power_regs(struct snd_soc_codec *codec)
 				SGTL5000_VDDC_CHRGPMP_POWERUP, 0);
 
 		/* VDDC use VDDIO rail */
-		lreg_ctrl |= SGTL5000_VDDC_ASSN_OVRD;
-		lreg_ctrl |= SGTL5000_VDDC_MAN_ASSN_VDDIO <<
-			    SGTL5000_VDDC_MAN_ASSN_SHIFT;
+//		lreg_ctrl |= SGTL5000_VDDC_ASSN_OVRD;
+//		lreg_ctrl |= SGTL5000_VDDC_MAN_ASSN_VDDIO <<
+//			    SGTL5000_VDDC_MAN_ASSN_SHIFT;
 	}
 
+//	ana_pwr |= SGTL5000_VDDC_CHRGPMP_POWERUP | SGTL5000_VAG_POWERUP | SGTL5000_HP_POWERUP;
+	ana_pwr |= 0x5afb;
 	snd_soc_write(codec, SGTL5000_CHIP_LINREG_CTRL, lreg_ctrl);
 
 	snd_soc_write(codec, SGTL5000_CHIP_ANA_POWER, ana_pwr);
@@ -1194,9 +1196,9 @@ static int sgtl5000_set_power_regs(struct snd_soc_codec *codec)
 	else
 		vag = (vag - SGTL5000_ANA_GND_BASE) / SGTL5000_ANA_GND_STP;
 
-	snd_soc_update_bits(codec, SGTL5000_CHIP_REF_CTRL,
-			vag << SGTL5000_ANA_GND_SHIFT,
-			vag << SGTL5000_ANA_GND_SHIFT);
+//	snd_soc_update_bits(codec, SGTL5000_CHIP_REF_CTRL,
+//			vag << SGTL5000_ANA_GND_SHIFT,
+///			vag << SGTL5000_ANA_GND_SHIFT);
 
 	/* set line out VAG to vddio / 2, in range (0.8v, 1.675v) */
 	vag = vddio / 2;
@@ -1208,14 +1210,15 @@ static int sgtl5000_set_power_regs(struct snd_soc_codec *codec)
 	else
 		vag = (vag - SGTL5000_LINE_OUT_GND_BASE) /
 		    SGTL5000_LINE_OUT_GND_STP;
-
+#if 1
 	snd_soc_update_bits(codec, SGTL5000_CHIP_LINE_OUT_CTRL,
-			vag << SGTL5000_LINE_OUT_GND_SHIFT |
+//			vag << SGTL5000_LINE_OUT_GND_SHIFT |
 			SGTL5000_LINE_OUT_CURRENT_360u <<
 				SGTL5000_LINE_OUT_CURRENT_SHIFT,
-			vag << SGTL5000_LINE_OUT_GND_SHIFT |
+//			vag << SGTL5000_LINE_OUT_GND_SHIFT |
 			SGTL5000_LINE_OUT_CURRENT_360u <<
 				SGTL5000_LINE_OUT_CURRENT_SHIFT);
+#endif
 
 	return 0;
 }
@@ -1378,7 +1381,8 @@ static int sgtl5000_probe(struct snd_soc_codec *codec)
 
 	snd_soc_write(codec, SGTL5000_CHIP_ANA_CTRL,
 			SGTL5000_HP_ZCD_EN |
-			SGTL5000_ADC_ZCD_EN);
+			SGTL5000_ADC_ZCD_EN 
+			| SGTL5000_LINE_OUT_MUTE);
 
 	snd_soc_write(codec, SGTL5000_CHIP_MIC_CTRL, 0);
 
-- 
1.7.0.4

^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [PATCH 1/2] ASoC: mxs-saif: add record function
@ 2011-08-24 11:08     ` Dong Aisheng-B29396
  0 siblings, 0 replies; 10+ messages in thread
From: Dong Aisheng-B29396 @ 2011-08-24 11:08 UTC (permalink / raw)
  To: linux-arm-kernel

Hi Wolfram,

> -----Original Message-----
> From: Wolfram Sang [mailto:w.sang at pengutronix.de]
> Sent: Monday, August 22, 2011 7:31 PM
> To: Dong Aisheng-B29396
> Cc: alsa-devel at alsa-project.org; linux-arm-kernel at lists.infradead.org;
> broonie at opensource.wolfsonmicro.com; lrg at ti.com; s.hauer at pengutronix.de
> Subject: Re: [PATCH 1/2] ASoC: mxs-saif: add record function
> 
> On Mon, Aug 22, 2011 at 12:02:25AM +0800, Dong Aisheng wrote:
> > 1. add different clkmux mode handling for record.
> > SAIF can use two instances to implement full duplex (playback &
> > recording) and record saif may work on EXTMASTER mode that is using
> > other saif's BITCLK&LRCLK.
> > The clkmux mode is determined by saif's platform data and machine
> > specific clkmux setting is done in pdata->init().
> > 2. support playback and capture simutaneously however the sample rates
> > can not be different due to hw limitation.
> >
> > Signed-off-by: Dong Aisheng <b29396@freescale.com>
> > Cc: Mark Brown <broonie@opensource.wolfsonmicro.com>
> > Cc: Liam Girdwood <lrg@ti.com>
> > Cc: Sascha Hauer <s.hauer@pengutronix.de>
> > Cc: Wolfram Sang <w.sang@pengutronix.de>
> 
> Will test and review, but probably not before Wednesday.
> 

If you want to test, you may need to apply another sgtl5000 patch
to fix noise issue.

BTW, since MX28EVK only has line-in (no mic-in), i just tested by
capturing data from line-in and connected the line-in to a PC's
Headphone output.

Not sure if there might be some issue due to line-in level is a
little different from headphone out level.
(Any comments from the person who knows?)

Anyway, it just sounds well at my side.

The patch for your reference:
It's just for testing and I'm going to check it with our ic people
for the root cause.

Regards
Dong Aisheng

^ permalink raw reply	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2011-08-24 11:08 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-08-21 16:02 [PATCH 1/2] ASoC: mxs-saif: add record function Dong Aisheng
2011-08-21 16:02 ` Dong Aisheng
2011-08-22 10:37 ` Liam Girdwood
2011-08-22 10:37   ` Liam Girdwood
2011-08-22 11:09   ` Dong Aisheng-B29396
2011-08-22 11:09     ` Dong Aisheng-B29396
2011-08-22 11:30 ` Wolfram Sang
2011-08-22 11:30   ` Wolfram Sang
2011-08-24 11:08   ` Dong Aisheng-B29396
2011-08-24 11:08     ` Dong Aisheng-B29396

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.