aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBuddy Liong <a0270631@ti.com>2017-02-28 10:45:43 -0600
committerPraneeth Bajjuri <praneeth@ti.com>2017-08-28 14:48:03 -0500
commitf7342ce3033529fb484aada3cfacdb9991e4502d (patch)
treea89152e31fe1a158cc418d1d9757a8afb5b6160c
parent0066921435c6d7c1183d7301de8bd5e065d80d1b (diff)
downloadjacinto6evm-f7342ce3033529fb484aada3cfacdb9991e4502d.tar.gz
RVC: Changing RVC on IPU2 and DSP1
Instead of using IPU2 and DSP2 as default release of RVC-3.0. For J6Eco/J6Entry which has only 1 DSP, DSP2 will not be available. This patch needed for RVC to work on J6Eco/J6Entry. Reducing DSP1 partition to 1MB from 8MB. Revert DSP2 partition from 1MB to 8MB. Signed-off-by: Buddy Liong <a0270631@ti.com>
-rwxr-xr-xcommon/spl/spl.c2
-rw-r--r--include/configs/dra7xx_evm.h4
2 files changed, 3 insertions, 3 deletions
diff --git a/common/spl/spl.c b/common/spl/spl.c
index 2cdb00d380..459d88a08c 100755
--- a/common/spl/spl.c
+++ b/common/spl/spl.c
@@ -431,7 +431,7 @@ static inline void announce_boot_device(u32 boot_device) { }
* of the early load operation is specified by updating this
* array.
*/
-u32 cores_to_boot[] = { IPU2, DSP2 };
+u32 cores_to_boot[] = { IPU2, DSP1 };
#endif
static int spl_load_image(u32 boot_device)
diff --git a/include/configs/dra7xx_evm.h b/include/configs/dra7xx_evm.h
index a4fadd26e6..761434a909 100644
--- a/include/configs/dra7xx_evm.h
+++ b/include/configs/dra7xx_evm.h
@@ -67,8 +67,8 @@
"name=cache,size=256M,uuid=${uuid_gpt_cache};" \
"name=ipu1,size=8M,uuid=${uuid_gpt_ipu1};" \
"name=ipu2,size=7M,uuid=${uuid_gpt_ipu2};" \
- "name=dsp1,size=8M,uuid=${uuid_gpt_dsp1};" \
- "name=dsp2,size=1M,uuid=${uuid_gpt_dsp2};" \
+ "name=dsp1,size=1M,uuid=${uuid_gpt_dsp1};" \
+ "name=dsp2,size=8M,uuid=${uuid_gpt_dsp2};" \
"name=video,size=1M,uuid=${uuid_gpt_video};" \
"name=videodata,size=5K,uuid=${uuid_gpt_videodata};" \
"name=userdata,size=-,uuid=${uuid_gpt_userdata}"