Skip to content

Commit 15f5282

Browse files
committed
dts: mimxrt685s: Move HiFi 4 DSP data to main SRAM
Redirect HiFi 4 DSP domain's data section to the main SRAM. Keep out CM33's domain out of the reserved region. Signed-off-by: Vit Stanicek <[email protected]>
1 parent 8c46f46 commit 15f5282

File tree

2 files changed

+26
-3
lines changed

2 files changed

+26
-3
lines changed

dts/arm/nxp/nxp_rt6xx_common.dtsi

+6-1
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,14 @@
6060

6161
status = "disabled";
6262

63-
region@24000000 {
63+
/*region@24000000 {
6464
reg = <0x24000000 DT_SIZE_K(64)>;
6565
type = <NXP_RTXXX_ADSP_REGION_DATA>;
66+
};*/
67+
68+
region@30200000 {
69+
reg = <0x30200000 0x27D000>;
70+
type = <NXP_RTXXX_ADSP_REGION_DATA>;
6671
};
6772

6873
region@24020000 {

dts/xtensa/nxp/nxp_rt685_hifi4.dtsi

+20-2
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,27 @@
6262
compatible = "mmio-sram";
6363

6464
reg = <0x24000000 DT_SIZE_K(64)>;
65+
};
66+
67+
ram0_cached: memory@200000 {
68+
#address-cells = <1>;
69+
#size-cells = <1>;
70+
device_type = "memory";
71+
compatible = "mmio-sram";
72+
73+
reg = <0x00200000 DT_SIZE_K(512)>;
74+
};
75+
76+
ram0_noncached: memory@20200000 {
77+
#address-cells = <1>;
78+
#size-cells = <1>;
79+
device_type = "memory";
80+
compatible = "mmio-sram";
81+
82+
reg = <0x20200000 DT_SIZE_K(512)>;
6583

66-
adsp_data: memory@24000000 {
67-
reg = <0x24000000 DT_SIZE_K(64)>;
84+
adsp_data: memory@20200000 {
85+
reg = <0x20200000 DT_SIZE_K(512)>;
6886
};
6987
};
7088

0 commit comments

Comments
 (0)