summaryrefslogtreecommitdiffstats
path: root/firmware
diff options
context:
space:
mode:
authorAndree Buschmann <AndreeBuschmann@t-online.de>2010-11-02 22:56:31 +0000
committerAndree Buschmann <AndreeBuschmann@t-online.de>2010-11-02 22:56:31 +0000
commit57a683fc7d656ea99e1d3bb376a9261d99ebdc59 (patch)
tree831b92cb741c673b637591229e2a187f87a99f3d /firmware
parent88b6bef9d4269af7d7ad94dba1e47d2f204b3a65 (diff)
downloadrockbox-57a683fc7d656ea99e1d3bb376a9261d99ebdc59.tar.gz
rockbox-57a683fc7d656ea99e1d3bb376a9261d99ebdc59.zip
Reconfigure IRAM for S5L870x. S5L8700 has 256 KB of IRAM, use a 48 KB / 208 KB split for core/codec. S5L8701 has 176 KB of IRAM, use a 48 KB / 128 KB split for core/codec. This will allow further speed optimization of codecs.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28463 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware')
-rw-r--r--firmware/target/arm/s5l8700/app.lds4
1 files changed, 2 insertions, 2 deletions
diff --git a/firmware/target/arm/s5l8700/app.lds b/firmware/target/arm/s5l8700/app.lds
index f055dffd79..2f8ef6a40f 100644
--- a/firmware/target/arm/s5l8700/app.lds
+++ b/firmware/target/arm/s5l8700/app.lds
@@ -21,9 +21,9 @@ STARTUP(target/arm/s5l8700/crt0.o)
#define DRAMSIZE (DRAM_SIZE - PLUGINSIZE - CODECSIZE)
#define CODECORIG (ENDAUDIOADDR)
#if CONFIG_CPU==S5L8700
-#define IRAMSIZE (128*1024) /* 256KB total - 128KB for core, 128KB for plugins */
+#define IRAMSIZE (48*1024) /* 256KB total - 48KB for core, 208KB for plugins */
#else /* S5L8701 */
-#define IRAMSIZE (96*1024) /* 176KB total - 96KB for core, 80KB for plugins */
+#define IRAMSIZE (48*1024) /* 176KB total - 48KB for core, 128KB for plugins */
#endif
/* Where the codec buffer ends, and the plugin buffer starts */