arm: dts: k3-j721e-main: Add C71x DSP node
authorLokesh Vutla <lokeshvutla@ti.com>
Wed, 4 Sep 2019 10:31:40 +0000 (16:01 +0530)
committerTom Rini <trini@konsulko.com>
Fri, 11 Oct 2019 14:07:35 +0000 (10:07 -0400)
The J721E SoCs have a single TMS320C71x DSP Subsystem in the MAIN
voltage domain containing the next-generation C711 CPU core. The
subsystem has 32 KB of L1D configurable SRAM/Cache and 512 KB of
L2 configurable SRAM/Cache. This subsystem has a CMMU but is not
used currently. The inter-processor communication between the main
A72 cores and the C711 processor is achieved through shared memory
and a Mailbox. Add the DT node for this DSP processor sub-system
in the common k3-j721e-main.dtsi file.

Signed-off-by: Suman Anna <s-anna@ti.com>
Signed-off-by: Lokesh Vutla <lokeshvutla@ti.com>
arch/arm/dts/k3-j721e-common-proc-board.dts
arch/arm/dts/k3-j721e-main.dtsi

index a54827771848966cce57881b73df2ed58b8351bf..b21f597a809c42ac9be70d4bda040fa020070cd1 100644 (file)
@@ -22,6 +22,7 @@
                remoteproc5 = &main_r5fss1_core1;
                remoteproc6 = &c66_0;
                remoteproc7 = &c66_1;
+               remoteproc8 = &c71_0;
        };
 };
 
index c3aa0cdcf1594adeea67e0018fcf81f643536ef3..6bd59bac52d651f7f49b39f4e43b9be442d6c2c0 100644 (file)
                ti,sci-proc-ids = <0x04 0xFF>;
                resets = <&k3_reset 143 1>;
        };
+
+       c71_0: dsp@64800000 {
+               compatible = "ti,j721e-c71-dsp";
+               reg = <0x00 0x64800000 0x00 0x00080000>,
+                     <0x00 0x64e00000 0x00 0x0000c000>;
+               reg-names = "l2sram", "l1dram";
+               ti,sci = <&dmsc>;
+               ti,sci-dev-id = <15>;
+               ti,sci-proc-ids = <0x30 0xFF>;
+               resets = <&k3_reset 15 1>;
+       };
 };