mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-11-09 21:22:39 -05:00
M5/X5 (MCF5250): Scoot the core/plugin IRAM boundary forward by 0x800.
Change-Id: I482fe3f4f2f59a3f17026e796c245c4efa8279f3
This commit is contained in:
parent
230f6f4326
commit
4928810354
2 changed files with 6 additions and 2 deletions
|
|
@ -94,8 +94,8 @@ OUTPUT_FORMAT(elf32-littlemips)
|
||||||
/* MCF5250 have 128KB of IRAM */
|
/* MCF5250 have 128KB of IRAM */
|
||||||
#elif CONFIG_CPU == MCF5250
|
#elif CONFIG_CPU == MCF5250
|
||||||
#define DRAMORIG 0x31000000
|
#define DRAMORIG 0x31000000
|
||||||
#define IRAMORIG 0x1000c000
|
#define IRAMORIG 0x1000c800
|
||||||
#define IRAMSIZE 0x14000
|
#define IRAMSIZE 0x13800
|
||||||
|
|
||||||
#elif CONFIG_CPU == PP5022 || CONFIG_CPU == PP5024
|
#elif CONFIG_CPU == PP5022 || CONFIG_CPU == PP5024
|
||||||
/* PP5022/24 have 128KB of IRAM */
|
/* PP5022/24 have 128KB of IRAM */
|
||||||
|
|
|
||||||
|
|
@ -12,7 +12,11 @@ STARTUP(target/coldfire/crt0.o)
|
||||||
|
|
||||||
#define DRAMORIG 0x31000000
|
#define DRAMORIG 0x31000000
|
||||||
#define IRAMORIG 0x10000000
|
#define IRAMORIG 0x10000000
|
||||||
|
#if CONFIG_CPU == MCF5250
|
||||||
|
#define IRAMSIZE 0xc800
|
||||||
|
#else
|
||||||
#define IRAMSIZE 0xc000
|
#define IRAMSIZE 0xc000
|
||||||
|
#endif
|
||||||
|
|
||||||
/* End of the audio buffer, where the codec buffer starts */
|
/* End of the audio buffer, where the codec buffer starts */
|
||||||
#define ENDAUDIOADDR (DRAMORIG + DRAMSIZE)
|
#define ENDAUDIOADDR (DRAMORIG + DRAMSIZE)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue