diff options
| author | Jens Arnold <amiconn@rockbox.org> | 2006-11-09 21:15:49 +0000 |
|---|---|---|
| committer | Jens Arnold <amiconn@rockbox.org> | 2006-11-09 21:15:49 +0000 |
| commit | 2e383a430de025378bf17942a1cf5ea86860f700 (patch) | |
| tree | 2157737771ab2da4776504316f396a057981933a | |
| parent | 412bea9782db6843bcefd53ce7ce74b003b3c8c5 (diff) | |
| download | rockbox-2e383a430de025378bf17942a1cf5ea86860f700.zip rockbox-2e383a430de025378bf17942a1cf5ea86860f700.tar.gz rockbox-2e383a430de025378bf17942a1cf5ea86860f700.tar.bz2 rockbox-2e383a430de025378bf17942a1cf5ea86860f700.tar.xz | |
X5: Changed IRAM splitting between core and codecs/plugins. (a) Codecs benefit more from IRAM than the core. Further changes are required to actually make use of this. (b) This way, all core IRAM is DMA capable (wasn't the case before), so one less pitfall.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11482 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | apps/plugins/plugin.lds | 4 | ||||
| -rw-r--r-- | firmware/app.lds | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/apps/plugins/plugin.lds b/apps/plugins/plugin.lds index 484157a..f72059c 100644 --- a/apps/plugins/plugin.lds +++ b/apps/plugins/plugin.lds @@ -30,8 +30,8 @@ OUTPUT_FORMAT(elf32-sh) #define IRAMSIZE 0xc000 #elif defined(IAUDIO_X5) #define DRAMORIG 0x31000000 -#define IRAMORIG 0x10014000 -#define IRAMSIZE 0xc000 +#define IRAMORIG 0x10010000 +#define IRAMSIZE 0x10000 #elif defined(ARCH_IPOD) #define DRAMORIG 0x00000000 #define IRAMORIG 0x4000c000 diff --git a/firmware/app.lds b/firmware/app.lds index 173573b..f2bd9db 100644 --- a/firmware/app.lds +++ b/firmware/app.lds @@ -129,7 +129,7 @@ _pluginbuf = 0; #elif defined(IAUDIO_X5) #define DRAMORIG 0x31000000 + STUBOFFSET #define IRAMORIG 0x10000000 -#define IRAMSIZE 0x14000 +#define IRAMSIZE 0x10000 #elif (CONFIG_CPU==PP5002) || (CONFIG_CPU==PP5020) #define DRAMORIG 0x00000000 + STUBOFFSET #define IRAMORIG 0x40000000 |