* [RFC PATCH] arm64: dts: rockchip: fix dmas dma-names for rk3308 i2s node
@ 2020-05-20 6:48 Johan Jonker
[not found] ` <20200520064816.3954-1-jbx6244-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
0 siblings, 1 reply; 3+ messages in thread
From: Johan Jonker @ 2020-05-20 6:48 UTC (permalink / raw)
To: heiko-4mtYJXux2i+zQB+pC5nmwQ
Cc: robh+dt-DgEjT+Ai2ygdnm+yROfE0A, devicetree-u79uwXL29TY76Z2rM5mHXA,
linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r,
linux-rockchip-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r,
linux-kernel-u79uwXL29TY76Z2rM5mHXA
One of the current rk3308 'i2s' nodes has a different dma layout
with only 1 item. Table 9-2 DMAC1 Request Mapping Table shows that
there 2 dma sources available, so fix the dmas and dma-names
for the rk3308 'i2s' node.
10 I2S/PCM_2CH_1 tx High level
11 I2S/PCM_2CH_1 rx High level
Signed-off-by: Johan Jonker <jbx6244-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
---
arch/arm64/boot/dts/rockchip/rk3308.dtsi | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/arch/arm64/boot/dts/rockchip/rk3308.dtsi b/arch/arm64/boot/dts/rockchip/rk3308.dtsi
index ac7f69407..79c1dd1fe 100644
--- a/arch/arm64/boot/dts/rockchip/rk3308.dtsi
+++ b/arch/arm64/boot/dts/rockchip/rk3308.dtsi
@@ -564,8 +564,8 @@
interrupts = <GIC_SPI 53 IRQ_TYPE_LEVEL_HIGH>;
clocks = <&cru SCLK_I2S1_2CH>, <&cru HCLK_I2S1_2CH>;
clock-names = "i2s_clk", "i2s_hclk";
- dmas = <&dmac1 11>;
- dma-names = "rx";
+ dmas = <&dmac1 10>, <&dmac1 11>;
+ dma-names = "tx", "rx";
resets = <&cru SRST_I2S1_2CH_M>, <&cru SRST_I2S1_2CH_H>;
reset-names = "reset-m", "reset-h";
status = "disabled";
--
2.11.0
^ permalink raw reply related [flat|nested] 3+ messages in thread[parent not found: <20200520064816.3954-1-jbx6244-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>]
* Re: [RFC PATCH] arm64: dts: rockchip: fix dmas dma-names for rk3308 i2s node [not found] ` <20200520064816.3954-1-jbx6244-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> @ 2020-05-21 11:48 ` Robin Murphy 2020-05-21 12:28 ` Johan Jonker 0 siblings, 1 reply; 3+ messages in thread From: Robin Murphy @ 2020-05-21 11:48 UTC (permalink / raw) To: Johan Jonker, heiko-4mtYJXux2i+zQB+pC5nmwQ Cc: devicetree-u79uwXL29TY76Z2rM5mHXA, robh+dt-DgEjT+Ai2ygdnm+yROfE0A, linux-kernel-u79uwXL29TY76Z2rM5mHXA, linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r, linux-rockchip-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r On 2020-05-20 07:48, Johan Jonker wrote: > One of the current rk3308 'i2s' nodes has a different dma layout > with only 1 item. Table 9-2 DMAC1 Request Mapping Table shows that > there 2 dma sources available, so fix the dmas and dma-names > for the rk3308 'i2s' node. > > 10 I2S/PCM_2CH_1 tx High level > 11 I2S/PCM_2CH_1 rx High level ...however table 1-5 in the same manual (at least that I could find) says request 10 is reserved. Does that mean it was intended to be wired up for this, but ended up broken for some reason? Do you have hardware to confirm whether this works reliably or not? Robin. > Signed-off-by: Johan Jonker <jbx6244-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> > --- > arch/arm64/boot/dts/rockchip/rk3308.dtsi | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/arch/arm64/boot/dts/rockchip/rk3308.dtsi b/arch/arm64/boot/dts/rockchip/rk3308.dtsi > index ac7f69407..79c1dd1fe 100644 > --- a/arch/arm64/boot/dts/rockchip/rk3308.dtsi > +++ b/arch/arm64/boot/dts/rockchip/rk3308.dtsi > @@ -564,8 +564,8 @@ > interrupts = <GIC_SPI 53 IRQ_TYPE_LEVEL_HIGH>; > clocks = <&cru SCLK_I2S1_2CH>, <&cru HCLK_I2S1_2CH>; > clock-names = "i2s_clk", "i2s_hclk"; > - dmas = <&dmac1 11>; > - dma-names = "rx"; > + dmas = <&dmac1 10>, <&dmac1 11>; > + dma-names = "tx", "rx"; > resets = <&cru SRST_I2S1_2CH_M>, <&cru SRST_I2S1_2CH_H>; > reset-names = "reset-m", "reset-h"; > status = "disabled"; > ^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [RFC PATCH] arm64: dts: rockchip: fix dmas dma-names for rk3308 i2s node 2020-05-21 11:48 ` Robin Murphy @ 2020-05-21 12:28 ` Johan Jonker 0 siblings, 0 replies; 3+ messages in thread From: Johan Jonker @ 2020-05-21 12:28 UTC (permalink / raw) To: Robin Murphy, heiko Cc: devicetree, robh+dt, linux-kernel, linux-arm-kernel, linux-rockchip, kever.yang, wxt Hi Robin, Kever, Caesar, On 5/21/20 1:48 PM, Robin Murphy wrote: > On 2020-05-20 07:48, Johan Jonker wrote: >> One of the current rk3308 'i2s' nodes has a different dma layout >> with only 1 item. Table 9-2 DMAC1 Request Mapping Table shows that >> there 2 dma sources available, so fix the dmas and dma-names >> for the rk3308 'i2s' node. >> >> 10 I2S/PCM_2CH_1 tx High level >> 11 I2S/PCM_2CH_1 rx High level > > ...however table 1-5 in the same manual (at least that I could find) > says request 10 is reserved. Does that mean it was intended to be wired > up for this, but ended up broken for some reason? > > Do you have hardware to confirm whether this works reliably or not? No, I don't. A description for 3308 was added to rockchip-i2s.yaml with only rx by myself. It would be nice if someone could test, confirm or give a hint. Could someone from Rockchip(Kever, Caesar) explain the 'Reserved' in Table 1-5 ? Table 1-5 RK3308 DMAC1 hardware request connection list 10 Reserved High level 11 I2S_2CH_1 rx High level > > Robin. > >> Signed-off-by: Johan Jonker <jbx6244@gmail.com> >> --- >> arch/arm64/boot/dts/rockchip/rk3308.dtsi | 4 ++-- >> 1 file changed, 2 insertions(+), 2 deletions(-) >> >> diff --git a/arch/arm64/boot/dts/rockchip/rk3308.dtsi >> b/arch/arm64/boot/dts/rockchip/rk3308.dtsi >> index ac7f69407..79c1dd1fe 100644 >> --- a/arch/arm64/boot/dts/rockchip/rk3308.dtsi >> +++ b/arch/arm64/boot/dts/rockchip/rk3308.dtsi >> @@ -564,8 +564,8 @@ >> interrupts = <GIC_SPI 53 IRQ_TYPE_LEVEL_HIGH>; >> clocks = <&cru SCLK_I2S1_2CH>, <&cru HCLK_I2S1_2CH>; >> clock-names = "i2s_clk", "i2s_hclk"; >> - dmas = <&dmac1 11>; >> - dma-names = "rx"; >> + dmas = <&dmac1 10>, <&dmac1 11>; >> + dma-names = "tx", "rx"; >> resets = <&cru SRST_I2S1_2CH_M>, <&cru SRST_I2S1_2CH_H>; >> reset-names = "reset-m", "reset-h"; >> status = "disabled"; >> ^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2020-05-21 12:28 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-05-20 6:48 [RFC PATCH] arm64: dts: rockchip: fix dmas dma-names for rk3308 i2s node Johan Jonker
[not found] ` <20200520064816.3954-1-jbx6244-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2020-05-21 11:48 ` Robin Murphy
2020-05-21 12:28 ` Johan Jonker
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox