* [PATCH_V3 1/4] sound: soc: jz4740: Add dynamic sampling rate support to jz4740-i2s
2015-01-26 14:53 [PATCH_V3 0/4] sound:soc: jz4740: DT, dynamic sampling, enable clocks Zubair Lutfullah Kakakhel
@ 2015-01-26 14:53 ` Zubair Lutfullah Kakakhel
2015-01-26 14:53 ` [PATCH_V3 2/4] dt: sound: jz4740: Add binding documentation for jz4740-i2s Zubair Lutfullah Kakakhel
` (3 subsequent siblings)
4 siblings, 0 replies; 7+ messages in thread
From: Zubair Lutfullah Kakakhel @ 2015-01-26 14:53 UTC (permalink / raw)
To: tiwai, perex
Cc: broonie, lgirdwood, linux-kernel, devicetree, alsa-devel,
Zubair.Kakakhel, lars
The div clock register is not modified during jz4740_i2s_hw_params.
Hence, default sampling rates are actually used regardless of
sampling rates input from userspace.
This patch adds support to calculate the value of the divider from
the parameters passed from userspace and update the relevant div
registers
Signed-off-by: Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com>
---
V2 changes: Removed a redundant #define
---
sound/soc/jz4740/jz4740-i2s.c | 11 ++++++++++-
1 file changed, 10 insertions(+), 1 deletion(-)
diff --git a/sound/soc/jz4740/jz4740-i2s.c b/sound/soc/jz4740/jz4740-i2s.c
index d3d45c6..b7a7e82 100644
--- a/sound/soc/jz4740/jz4740-i2s.c
+++ b/sound/soc/jz4740/jz4740-i2s.c
@@ -83,6 +83,8 @@
#define JZ_AIC_I2S_STATUS_BUSY BIT(2)
#define JZ_AIC_CLK_DIV_MASK 0xf
+#define I2SDIV_DV_SHIFT 8
+#define I2SDIV_DV_MASK (0xf << I2SDIV_DV_SHIFT)
struct jz4740_i2s {
struct resource *mem;
@@ -237,10 +239,14 @@ static int jz4740_i2s_hw_params(struct snd_pcm_substream *substream,
{
struct jz4740_i2s *i2s = snd_soc_dai_get_drvdata(dai);
unsigned int sample_size;
- uint32_t ctrl;
+ uint32_t ctrl, div_reg;
+ int div;
ctrl = jz4740_i2s_read(i2s, JZ_REG_AIC_CTRL);
+ div_reg = jz4740_i2s_read(i2s, JZ_REG_AIC_CLK_DIV);
+ div = clk_get_rate(i2s->clk_i2s) / (64 * params_rate(params));
+
switch (params_format(params)) {
case SNDRV_PCM_FORMAT_S8:
sample_size = 0;
@@ -264,7 +270,10 @@ static int jz4740_i2s_hw_params(struct snd_pcm_substream *substream,
ctrl |= sample_size << JZ_AIC_CTRL_INPUT_SAMPLE_SIZE_OFFSET;
}
+ div_reg &= ~I2SDIV_DV_MASK;
+ div_reg |= (div - 1) << I2SDIV_DV_SHIFT;
jz4740_i2s_write(i2s, JZ_REG_AIC_CTRL, ctrl);
+ jz4740_i2s_write(i2s, JZ_REG_AIC_CLK_DIV, div_reg);
return 0;
}
--
1.9.1
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [PATCH_V3 2/4] dt: sound: jz4740: Add binding documentation for jz4740-i2s
2015-01-26 14:53 [PATCH_V3 0/4] sound:soc: jz4740: DT, dynamic sampling, enable clocks Zubair Lutfullah Kakakhel
2015-01-26 14:53 ` [PATCH_V3 1/4] sound: soc: jz4740: Add dynamic sampling rate support to jz4740-i2s Zubair Lutfullah Kakakhel
@ 2015-01-26 14:53 ` Zubair Lutfullah Kakakhel
[not found] ` <1422283993-53642-1-git-send-email-Zubair.Kakakhel-1AXoQHu6uovQT0dZR+AlfA@public.gmane.org>
` (2 subsequent siblings)
4 siblings, 0 replies; 7+ messages in thread
From: Zubair Lutfullah Kakakhel @ 2015-01-26 14:53 UTC (permalink / raw)
To: tiwai, perex
Cc: broonie, lgirdwood, linux-kernel, devicetree, alsa-devel,
Zubair.Kakakhel, lars
This patch adds binding for the jz4740-i2s driver.
Signed-off-by: Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com>
---
The jz4740 is platform only at the moment.
But DT support is being added
See http://patchwork.linux-mips.org/bundle/paulburton/ci20-v3.20/
V3 changes: Missed out adding dma bindings in required properties.
Only put them in example node for V2.
V2 changes: Added DMA bindings for later on
---
.../bindings/sound/ingenic,jz4740-i2s.txt | 23 ++++++++++++++++++++++
1 file changed, 23 insertions(+)
create mode 100644 Documentation/devicetree/bindings/sound/ingenic,jz4740-i2s.txt
diff --git a/Documentation/devicetree/bindings/sound/ingenic,jz4740-i2s.txt b/Documentation/devicetree/bindings/sound/ingenic,jz4740-i2s.txt
new file mode 100644
index 0000000..b414333
--- /dev/null
+++ b/Documentation/devicetree/bindings/sound/ingenic,jz4740-i2s.txt
@@ -0,0 +1,23 @@
+Ingenic JZ4740 I2S controller
+
+Required properties:
+- compatible : "ingenic,jz4740-i2s"
+- reg : I2S registers location and length
+- clocks : AIC and I2S PLL clock specifiers.
+- clock-names: "aic" and "i2s"
+- dmas: DMA controller phandle and DMA request line for I2S Tx and Rx channels
+- dma-names: Must be "tx" and "rx"
+
+Example:
+
+i2s: i2s@10020000 {
+ compatible = "ingenic,jz4740-i2s";
+ reg = <0x10020000 0x94>;
+
+ clocks = <&cgu JZ4740_CLK_AIC>, <&cgu JZ4740_CLK_I2SPLL>;
+ clock-names = "aic", "i2s";
+
+ dmas = <&dma 2>, <&dma 3>;
+ dma-names = "tx", "rx";
+
+};
--
1.9.1
^ permalink raw reply related [flat|nested] 7+ messages in thread
[parent not found: <1422283993-53642-1-git-send-email-Zubair.Kakakhel-1AXoQHu6uovQT0dZR+AlfA@public.gmane.org>]
* [PATCH_V3 3/4] sound: soc: jz4740: Add DT support to jz4740-i2s driver
[not found] ` <1422283993-53642-1-git-send-email-Zubair.Kakakhel-1AXoQHu6uovQT0dZR+AlfA@public.gmane.org>
@ 2015-01-26 14:53 ` Zubair Lutfullah Kakakhel
0 siblings, 0 replies; 7+ messages in thread
From: Zubair Lutfullah Kakakhel @ 2015-01-26 14:53 UTC (permalink / raw)
To: tiwai-l3A5Bk7waGM, perex-/Fr2/VpizcU
Cc: broonie-DgEjT+Ai2ygdnm+yROfE0A, lgirdwood-Re5JQEeQqe8AvxtiuMwx3w,
linux-kernel-u79uwXL29TY76Z2rM5mHXA,
devicetree-u79uwXL29TY76Z2rM5mHXA,
alsa-devel-K7yf7f+aM1XWsZ/bQMPhNw,
Zubair.Kakakhel-1AXoQHu6uovQT0dZR+AlfA,
lars-Qo5EllUWu/uELgA04lAiVw
This patch adds device tree support for the jz4740 driver.
Signed-off-by: Zubair Lutfullah Kakakhel <Zubair.Kakakhel-1AXoQHu6uovQT0dZR+AlfA@public.gmane.org>
---
V2 changes: Added ifdef config_of
---
sound/soc/jz4740/jz4740-i2s.c | 10 ++++++++++
1 file changed, 10 insertions(+)
diff --git a/sound/soc/jz4740/jz4740-i2s.c b/sound/soc/jz4740/jz4740-i2s.c
index b7a7e82..07f7781 100644
--- a/sound/soc/jz4740/jz4740-i2s.c
+++ b/sound/soc/jz4740/jz4740-i2s.c
@@ -14,6 +14,8 @@
#include <linux/init.h>
#include <linux/io.h>
+#include <linux/of.h>
+#include <linux/of_device.h>
#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/platform_device.h>
@@ -424,6 +426,13 @@ static const struct snd_soc_component_driver jz4740_i2s_component = {
.name = "jz4740-i2s",
};
+#ifdef CONFIG_OF
+static const struct of_device_id jz4740_of_matches[] = {
+ { .compatible = "ingenic,jz4740-i2s" },
+ { /* sentinel */ }
+};
+#endif
+
static int jz4740_i2s_dev_probe(struct platform_device *pdev)
{
struct jz4740_i2s *i2s;
@@ -464,6 +473,7 @@ static struct platform_driver jz4740_i2s_driver = {
.probe = jz4740_i2s_dev_probe,
.driver = {
.name = "jz4740-i2s",
+ .of_match_table = of_match_ptr(jz4740_of_matches)
},
};
--
1.9.1
--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [PATCH_V3 4/4] sound: jz4740: set i2s clk rate to 12MHz
2015-01-26 14:53 [PATCH_V3 0/4] sound:soc: jz4740: DT, dynamic sampling, enable clocks Zubair Lutfullah Kakakhel
` (2 preceding siblings ...)
[not found] ` <1422283993-53642-1-git-send-email-Zubair.Kakakhel-1AXoQHu6uovQT0dZR+AlfA@public.gmane.org>
@ 2015-01-26 14:53 ` Zubair Lutfullah Kakakhel
[not found] ` <1422283993-53642-5-git-send-email-Zubair.Kakakhel-1AXoQHu6uovQT0dZR+AlfA@public.gmane.org>
2015-01-27 12:51 ` [PATCH_V3 0/4] sound:soc: jz4740: DT, dynamic sampling, enable clocks Lars-Peter Clausen
4 siblings, 1 reply; 7+ messages in thread
From: Zubair Lutfullah Kakakhel @ 2015-01-26 14:53 UTC (permalink / raw)
To: tiwai, perex
Cc: broonie, lgirdwood, linux-kernel, devicetree, alsa-devel,
Zubair.Kakakhel, lars
i2s clock rate is not set to 12MHz currently. Set it before enabling
the clock.
Signed-off-by: Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com>
---
V2 changes: Removed clk_prepare_enable call as clock was already being
enabled elsewhere. Just set rate to 12MHz.
---
sound/soc/jz4740/jz4740-i2s.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/sound/soc/jz4740/jz4740-i2s.c b/sound/soc/jz4740/jz4740-i2s.c
index 07f7781..c2e5852 100644
--- a/sound/soc/jz4740/jz4740-i2s.c
+++ b/sound/soc/jz4740/jz4740-i2s.c
@@ -125,6 +125,7 @@ static int jz4740_i2s_startup(struct snd_pcm_substream *substream,
ctrl |= JZ_AIC_CTRL_FLUSH;
jz4740_i2s_write(i2s, JZ_REG_AIC_CTRL, ctrl);
+ clk_set_rate(i2s->clk_i2s, 12000000);
clk_prepare_enable(i2s->clk_i2s);
conf = jz4740_i2s_read(i2s, JZ_REG_AIC_CONF);
--
1.9.1
^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [PATCH_V3 0/4] sound:soc: jz4740: DT, dynamic sampling, enable clocks
2015-01-26 14:53 [PATCH_V3 0/4] sound:soc: jz4740: DT, dynamic sampling, enable clocks Zubair Lutfullah Kakakhel
` (3 preceding siblings ...)
2015-01-26 14:53 ` [PATCH_V3 4/4] sound: jz4740: set i2s clk rate to 12MHz Zubair Lutfullah Kakakhel
@ 2015-01-27 12:51 ` Lars-Peter Clausen
4 siblings, 0 replies; 7+ messages in thread
From: Lars-Peter Clausen @ 2015-01-27 12:51 UTC (permalink / raw)
To: Zubair Lutfullah Kakakhel, tiwai, perex
Cc: devicetree, alsa-devel, broonie, lgirdwood, linux-kernel
On 01/26/2015 03:53 PM, Zubair Lutfullah Kakakhel wrote:
> Hi,
>
> Here are a few simple patches for the jz4740.
For 1-3:
Acked-by: Lars-Peter Clausen <lars@metafoo.de>
^ permalink raw reply [flat|nested] 7+ messages in thread