M5/X5 (MCF5250): Scoot the core/plugin IRAM boundary forward by 0x800.

Change-Id: I482fe3f4f2f59a3f17026e796c245c4efa8279f3
This commit is contained in:
Michael Sevakis 2012-04-29 14:35:53 -04:00
parent 230f6f4326
commit 4928810354
2 changed files with 6 additions and 2 deletions

View file

@ -94,8 +94,8 @@ OUTPUT_FORMAT(elf32-littlemips)
/* MCF5250 have 128KB of IRAM */
#elif CONFIG_CPU == MCF5250
#define DRAMORIG 0x31000000
#define IRAMORIG 0x1000c000
#define IRAMSIZE 0x14000
#define IRAMORIG 0x1000c800
#define IRAMSIZE 0x13800
#elif CONFIG_CPU == PP5022 || CONFIG_CPU == PP5024
/* PP5022/24 have 128KB of IRAM */

View file

@ -12,7 +12,11 @@ STARTUP(target/coldfire/crt0.o)
#define DRAMORIG 0x31000000
#define IRAMORIG 0x10000000
#if CONFIG_CPU == MCF5250
#define IRAMSIZE 0xc800
#else
#define IRAMSIZE 0xc000
#endif
/* End of the audio buffer, where the codec buffer starts */
#define ENDAUDIOADDR (DRAMORIG + DRAMSIZE)