All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v4 00/14] r8a7793, gose: Add audio support to device tree
@ 2016-01-18  5:27 ` Simon Horman
  0 siblings, 0 replies; 31+ messages in thread
From: Simon Horman @ 2016-01-18  5:27 UTC (permalink / raw)
  To: linux-renesas-soc; +Cc: linux-arm-kernel, Magnus Damm, Simon Horman

Hi,

this series adds support to r8a7793 and gose device trees for
rcar sound: first in PIO mode then using DMA

I have been unable to test if audio works (in PIO mode) as I
do not have physical access to a gose board. I would appreciate
some assistance there.

This work is based heavily on the work of others for the r8a7791 and
koelsch as noted in the changelogs of individual patches.

This series is based on renesas-devel-20160111-v4.4 and
has no other dependencies that I am aware of.

Changes between v3 and v4
* Use GIC_SPI in interrupt properties

Changes between v2 and v3
* Minor changelog tweaks

Changes since v1 and v2:
* Dropped RFC designation
* Dropped i2c patches: they have been posted and partially merged separately
* Dropped MIX/CTU support pending more work on that feature
* Enable Audio DMAC peri peri via sound driver
* Other changes noted in per-patch changelogs

Simon Horman (14):
  ARM: dts: r8a7793: add MSTP10 clocks to device tree
  ARM: dts: r8a7793: add audio clock to device tree
  ARM: dts: r8a7793: add m2 clock to device tree
  ARM: dts: r8a7793: add R-Car sound support to device tree
  ARM: dts: r8a7793: add DVC support to device tree
  ARM: dts: r8a7793: add audio DMAC clocks to device tree
  ARM: dts: r8a7793: add audio DMAC to device tree
  ARM: dts: r8a7793: enable Audio DMAC peri peri via sound driver
  ARM: dts: gose: Enable sound PIO support in device tree
  ARM: dts: gose: enable sound DMA support in device tree
  ARM: dts: gose: enable sound DMA support via BUSIF in device tree
  ARM: dts: gose: enable sound DMA support via SRC in device tree
  ARM: dts: gose: enable sound DMA support via DVC in device tree
  ARM: dts: r8a7793: enable audio DMAC in device tree

 arch/arm/boot/dts/r8a7793-gose.dts        |  88 +++++++++
 arch/arm/boot/dts/r8a7793.dtsi            | 289 +++++++++++++++++++++++++++++-
 include/dt-bindings/clock/r8a7793-clock.h |   2 +
 3 files changed, 376 insertions(+), 3 deletions(-)

-- 
2.1.4

^ permalink raw reply	[flat|nested] 31+ messages in thread
* [PATCH] ARM: shmobile: armadillo800eva dts: Correct extal1 frequency to 24 MHz
@ 2015-12-18 10:51 Geert Uytterhoeven
  2016-01-05 13:37 ` Geert Uytterhoeven
  0 siblings, 1 reply; 31+ messages in thread
From: Geert Uytterhoeven @ 2015-12-18 10:51 UTC (permalink / raw)
  To: linux-sh

On r8a7740/armadillo, actual clock rates are ca. 4% lower than reported
by /sys/kernel/debug/clk/clk_summary. Correct the extal1 frequency from
25 MHz to 24 MHz to fix this.

This matches the Armadillo-800 EVA Product Manual, which claims the main
crystal runs at 24 MHz, and the old legacy/reference board code.

Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
---
 arch/arm/boot/dts/r8a7740-armadillo800eva.dts | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm/boot/dts/r8a7740-armadillo800eva.dts b/arch/arm/boot/dts/r8a7740-armadillo800eva.dts
index 5845e4e6c700568f..13d27e3985378552 100644
--- a/arch/arm/boot/dts/r8a7740-armadillo800eva.dts
+++ b/arch/arm/boot/dts/r8a7740-armadillo800eva.dts
@@ -180,7 +180,7 @@
 };
 
 &extal1_clk {
-	clock-frequency = <25000000>;
+	clock-frequency = <24000000>;
 };
 &extal2_clk {
 	clock-frequency = <48000000>;
-- 
1.9.1


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

end of thread, other threads:[~2016-01-27 11:24 UTC | newest]

Thread overview: 31+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-01-18  5:27 [PATCH v4 00/14] r8a7793, gose: Add audio support to device tree Simon Horman
2016-01-18  5:27 ` Simon Horman
2016-01-18  5:27 ` [PATCH v4 01/14] ARM: dts: r8a7793: add MSTP10 clocks " Simon Horman
2016-01-18  5:27   ` Simon Horman
2016-01-18  5:27 ` [PATCH v4 02/14] ARM: dts: r8a7793: add audio clock " Simon Horman
2016-01-18  5:27 ` [PATCH v4 03/14] ARM: dts: r8a7793: add m2 " Simon Horman
2016-01-18  5:27   ` Simon Horman
2016-01-18  5:27 ` [PATCH v4 04/14] ARM: dts: r8a7793: add R-Car sound support " Simon Horman
2016-01-18  5:27   ` Simon Horman
2016-01-18  5:28 ` [PATCH v4 05/14] ARM: dts: r8a7793: add DVC " Simon Horman
2016-01-18  5:28 ` [PATCH v4 06/14] ARM: dts: r8a7793: add audio DMAC clocks " Simon Horman
2016-01-18  5:28 ` [PATCH v4 07/14] ARM: dts: r8a7793: add audio DMAC " Simon Horman
2016-01-18  5:28   ` Simon Horman
2016-01-18  5:28 ` [PATCH v4 08/14] ARM: dts: r8a7793: enable Audio DMAC peri peri via sound driver Simon Horman
2016-01-18  5:28   ` Simon Horman
2016-01-18  5:28 ` [PATCH v4 09/14] ARM: dts: gose: Enable sound PIO support in device tree Simon Horman
2016-01-18  5:28 ` [PATCH v4 10/14] ARM: dts: gose: enable sound DMA " Simon Horman
2016-01-18  5:28   ` Simon Horman
2016-01-18  5:28 ` [PATCH v4 11/14] ARM: dts: gose: enable sound DMA support via BUSIF " Simon Horman
2016-01-18  5:28   ` Simon Horman
2016-01-18  5:28 ` [PATCH v4 12/14] ARM: dts: gose: enable sound DMA support via SRC " Simon Horman
2016-01-18  5:28   ` Simon Horman
2016-01-18  5:28 ` [PATCH v4 13/14] ARM: dts: gose: enable sound DMA support via DVC " Simon Horman
2016-01-18  5:28   ` Simon Horman
2016-01-18  5:28 ` [PATCH v4 14/14] ARM: dts: r8a7793: enable audio DMAC " Simon Horman
2016-01-27 11:24 ` [PATCH v4 00/14] r8a7793, gose: Add audio support to " Simon Horman
2016-01-27 11:24   ` Simon Horman
  -- strict thread matches above, loose matches on Subject: below --
2015-12-18 10:51 [PATCH] ARM: shmobile: armadillo800eva dts: Correct extal1 frequency to 24 MHz Geert Uytterhoeven
2016-01-05 13:37 ` Geert Uytterhoeven
2016-01-18  1:55   ` Simon Horman
2016-01-18  1:55     ` [PATCH] ARM: shmobile: armadillo800eva dts: Correct extal1 frequency to 24 MHz, [PATCH v4 02/14] ARM: dts: r8a7793: add audio clock to device tree Simon Horman, Simon Horman

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.