Skip to content

Commit ee18f27

Browse files
MrVanmathieupoirier
authored andcommitted
remoteproc: imx_rproc: Correct i.MX93 DRAM mapping
According to updated reference mannual, the M33 DRAM view of 0x[C,D]0000000 maps to A55 0xC0000000, so correct it. Fixes: 9222fab ("remoteproc: imx_rproc: Support i.MX93") Signed-off-by: Peng Fan <[email protected]> Cc: stable <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Mathieu Poirier <[email protected]>
1 parent 6eed169 commit ee18f27

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

drivers/remoteproc/imx_rproc.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -134,8 +134,8 @@ static const struct imx_rproc_att imx_rproc_att_imx93[] = {
134134
{ 0x80000000, 0x80000000, 0x10000000, 0 },
135135
{ 0x90000000, 0x80000000, 0x10000000, 0 },
136136

137-
{ 0xC0000000, 0xa0000000, 0x10000000, 0 },
138-
{ 0xD0000000, 0xa0000000, 0x10000000, 0 },
137+
{ 0xC0000000, 0xC0000000, 0x10000000, 0 },
138+
{ 0xD0000000, 0xC0000000, 0x10000000, 0 },
139139
};
140140

141141
static const struct imx_rproc_att imx_rproc_att_imx8qm[] = {

0 commit comments

Comments
 (0)