diff options
author | Michael Sevakis <jethead71@rockbox.org> | 2009-02-07 10:09:13 +0000 |
---|---|---|
committer | Michael Sevakis <jethead71@rockbox.org> | 2009-02-07 10:09:13 +0000 |
commit | 4d3a020f274d49c2b8f10cfdad8c67aaa153bebe (patch) | |
tree | ec04c17d0579a27f6e1f8b2085d5996e6e59f430 /firmware/target/arm/imx31/app.lds | |
parent | f747d9d39e48c8bbf938220427584c4d8bf41b4c (diff) |
Gigabeat S: Move the LCD framebuffer address so that DRAM can be mapped flat between physical and virtual addresses. NO BOOTLOADER UPDATE SHOULD BE NEEDED. The firmware image now handles low-level system setup as well.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19935 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/target/arm/imx31/app.lds')
-rw-r--r-- | firmware/target/arm/imx31/app.lds | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/firmware/target/arm/imx31/app.lds b/firmware/target/arm/imx31/app.lds index 80123fee9d..4ab4665062 100644 --- a/firmware/target/arm/imx31/app.lds +++ b/firmware/target/arm/imx31/app.lds @@ -34,7 +34,8 @@ STARTUP(target/arm/imx31/crt0.o) MEMORY { DRAM : ORIGIN = DRAMORIG, LENGTH = DRAMSIZE - DEVBSS : ORIGIN = 0x80100000 + FRAME_SIZE, LENGTH = 0x100000 - FRAME_SIZE - TTB_SIZE + DEVBSS : ORIGIN = CSD0_BASE_ADDR + (MEMORYSIZE * 0x100000 - 0x100000), \ + LENGTH = 0x100000 - FRAME_SIZE - TTB_SIZE } SECTIONS |