aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBuddy Liong <a0270631@ti.com>2017-02-28 10:45:43 -0600
committerBuddy Liong <a0270631@ti.com>2017-05-15 12:50:18 -0500
commit67bba5fe9c245692adfea534ca69319d94987cc9 (patch)
tree7a2920446e3709a4129b92ffb6a78e79421915a2
parentc98472cd4bf87b94f8e578c964bc176bf878ebb9 (diff)
downloadjacinto6evm-67bba5fe9c245692adfea534ca69319d94987cc9.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 7ceb78edfc..83ab68a60e 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 f68333e812..56a412a9a0 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=userdata,size=-,uuid=${uuid_gpt_userdata}"
#define DFU_ALT_INFO_MMC \