Skip to content

Commit 4b4ee92

Browse files
dts: xtensa: nxp: Add device tree for HiFi1 core from NXP i.MXRT700
Add a basic device tree for the HiFi1 DSP from NXP i.MXRT700. Signed-off-by: Iuliana Prodan <[email protected]>
1 parent 28670d7 commit 4b4ee92

File tree

1 file changed

+39
-0
lines changed

1 file changed

+39
-0
lines changed
Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
/*
2+
* Copyright 2024 NXP
3+
*
4+
* SPDX-License-Identifier: Apache-2.0
5+
*/
6+
7+
#include <xtensa/xtensa.dtsi>
8+
#include <mem.h>
9+
10+
/ {
11+
cpus {
12+
#address-cells = <1>;
13+
#size-cells = <0>;
14+
15+
cpu0: cpu@0 {
16+
device_type = "cpu";
17+
compatible = "cdns,tensilica-xtensa-lx7";
18+
reg = <0>;
19+
};
20+
};
21+
22+
itcm0: memory@580000 {
23+
device_type = "memory";
24+
compatible = "mmio-sram";
25+
reg = <0x580000 DT_SIZE_K(32)>;
26+
};
27+
28+
itcm1: memory@680000 {
29+
device_type = "memory";
30+
compatible = "mmio-sram";
31+
reg = <0x680000 DT_SIZE_K(512)>;
32+
};
33+
34+
dtcm: memory@20700000 {
35+
device_type = "memory";
36+
compatible = "mmio-sram";
37+
reg = <0x20700000 DT_SIZE_K(512)>;
38+
};
39+
};

0 commit comments

Comments
 (0)