Commit 9c015e13 authored by Michael Walle's avatar Michael Walle Committed by Shawn Guo

arm64: dts: ls1028a: put SAIs into async mode

The LS1028A SoC has only unidirectional SAIs. Therefore, it doesn't make
sense to have the RX and TX part synchronous. Even worse, the RX part
wont work out of the box because by default it is configured as
synchronous to the TX part. And as said before, the pinmux of the SoC
can only be configured to route either the RX or the TX signals to the
SAI but never both at the same time. Thus configure the asynchronous
mode by default.
Signed-off-by: default avatarMichael Walle <michael@walle.cc>
Acked-by: default avatarAlison Wang <alison.wang@nxp.com>
Signed-off-by: default avatarShawn Guo <shawnguo@kernel.org>
parent 434f9cc1
......@@ -541,6 +541,7 @@ sai1: audio-controller@f100000 {
dma-names = "tx", "rx";
dmas = <&edma0 1 4>,
<&edma0 1 3>;
fsl,sai-asynchronous;
status = "disabled";
};
......@@ -555,6 +556,7 @@ sai2: audio-controller@f110000 {
dma-names = "tx", "rx";
dmas = <&edma0 1 6>,
<&edma0 1 5>;
fsl,sai-asynchronous;
status = "disabled";
};
......@@ -569,6 +571,7 @@ sai3: audio-controller@f120000 {
dma-names = "tx", "rx";
dmas = <&edma0 1 8>,
<&edma0 1 7>;
fsl,sai-asynchronous;
status = "disabled";
};
......@@ -583,6 +586,7 @@ sai4: audio-controller@f130000 {
dma-names = "tx", "rx";
dmas = <&edma0 1 10>,
<&edma0 1 9>;
fsl,sai-asynchronous;
status = "disabled";
};
......@@ -597,6 +601,7 @@ sai5: audio-controller@f140000 {
dma-names = "tx", "rx";
dmas = <&edma0 1 12>,
<&edma0 1 11>;
fsl,sai-asynchronous;
status = "disabled";
};
......@@ -611,6 +616,7 @@ sai6: audio-controller@f150000 {
dma-names = "tx", "rx";
dmas = <&edma0 1 14>,
<&edma0 1 13>;
fsl,sai-asynchronous;
status = "disabled";
};
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment