dts: xtensa: nxp_imx8m: Add SAI3 and SDMA3 node
Add sai3 and sdma3 nodes found on NXP i.MX8MP SOC. Signed-off-by: Daniel Baluta <daniel.baluta@nxp.com>
This commit is contained in:
parent
e94c86f395
commit
020985b38b
1 changed files with 32 additions and 0 deletions
|
|
@ -42,6 +42,12 @@
|
|||
reg = <0x92c00000 DT_SIZE_K(512)>;
|
||||
};
|
||||
|
||||
mclk1: mclk {
|
||||
compatible = "fixed-clock";
|
||||
#clock-cells = <0>;
|
||||
clock-frequency = <12288000>;
|
||||
};
|
||||
|
||||
soc {
|
||||
irqsteer: interrupt-controller@30a80000 {
|
||||
compatible = "nxp,irqsteer-intc";
|
||||
|
|
@ -81,6 +87,32 @@
|
|||
#clock-cells = <3>;
|
||||
};
|
||||
|
||||
sdma3: dma@30e00000 {
|
||||
compatible = "nxp,sdma";
|
||||
reg = <0x30e00000 DT_SIZE_K(64)>;
|
||||
interrupt-parent = <&master1>;
|
||||
interrupts = <2 0 0>;
|
||||
#dma-cells = <2>;
|
||||
status = "disabled";
|
||||
};
|
||||
|
||||
sai3: dai@30c30000 {
|
||||
compatible = "nxp,dai-sai";
|
||||
reg = <0x30c30000 DT_SIZE_K(64)>;
|
||||
|
||||
mclk-is-output;
|
||||
clocks = <&mclk1>;
|
||||
clock-names = "mclk1";
|
||||
|
||||
interrupt-parent = <&master1>;
|
||||
interrupts = <18>;
|
||||
dai-index = <3>;
|
||||
/* DMA event source, peripheral type */
|
||||
dmas = <&sdma3 5 5>, <&sdma3 4 5>;
|
||||
dma-names = "tx", "rx";
|
||||
status = "disabled";
|
||||
};
|
||||
|
||||
iomuxc: iomuxc@30330000 {
|
||||
compatible = "nxp,imx-iomuxc";
|
||||
reg = <0x30330000 DT_SIZE_K(64)>;
|
||||
|
|
|
|||
Loading…
Reference in a new issue