summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSuman Anna <s-anna@ti.com>2020-02-11 18:33:19 -0600
committerSuman Anna <s-anna@ti.com>2020-03-13 16:51:10 -0500
commit7a6e343a208d2849139b7272a67abc01db806e00 (patch)
treecc770cb32e4c8372636154ad20b83dd667c6ea57
parenta8919b0fe9c62cf8042425bcf9bf98f97bf958d2 (diff)
downloadipc-7a6e343a208d2849139b7272a67abc01db806e00.tar.gz
Remoteproc: DRA7xx: Fix incorrect DSP HEAP1 address3.51.00.00A
Commit 23a7eefaf8e2 ("Remoteproc: DRA7xx: Adjust entries to fix carveout allocation failures") has split up the single DSP heap at 0x95200000 of size 3 MB into two chunks of 2 MB and 1 MB. This erroneously used the address 0x95300000 for the second 1 MB chunk, when it should really be 0x95400000. Fix this properly. Fixes: 23a7eefaf8e2 ("Remoteproc: DRA7xx: Adjust entries to fix carveout allocation failures") Signed-off-by: Suman Anna <s-anna@ti.com>
-rw-r--r--packages/ti/ipc/remoteproc/rsc_table_vayu_dsp.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/ti/ipc/remoteproc/rsc_table_vayu_dsp.h b/packages/ti/ipc/remoteproc/rsc_table_vayu_dsp.h
index b470381..0fdd1ce 100644
--- a/packages/ti/ipc/remoteproc/rsc_table_vayu_dsp.h
+++ b/packages/ti/ipc/remoteproc/rsc_table_vayu_dsp.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2012-2019, Texas Instruments Incorporated
+ * Copyright (c) 2012-2020, Texas Instruments Incorporated
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
@@ -77,7 +77,7 @@
#define DSP_MEM_TEXT 0x95000000
#define DSP_MEM_DATA 0x95100000
#define DSP_MEM_HEAP0 0x95200000
-#define DSP_MEM_HEAP1 0x95300000
+#define DSP_MEM_HEAP1 0x95400000
#define DSP_MEM_IPC_DATA 0x9F000000
#define DSP_MEM_IPC_VRING 0xA0000000