summaryrefslogtreecommitdiff
path: root/firmware/target/arm/imx31/app.lds
diff options
context:
space:
mode:
authorMichael Sevakis <jethead71@rockbox.org>2009-02-07 10:09:13 +0000
committerMichael Sevakis <jethead71@rockbox.org>2009-02-07 10:09:13 +0000
commit4d3a020f274d49c2b8f10cfdad8c67aaa153bebe (patch)
treeec04c17d0579a27f6e1f8b2085d5996e6e59f430 /firmware/target/arm/imx31/app.lds
parentf747d9d39e48c8bbf938220427584c4d8bf41b4c (diff)
downloadrockbox-4d3a020f274d49c2b8f10cfdad8c67aaa153bebe.tar.gz
rockbox-4d3a020f274d49c2b8f10cfdad8c67aaa153bebe.zip
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.lds3
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)
34MEMORY 34MEMORY
35{ 35{
36 DRAM : ORIGIN = DRAMORIG, LENGTH = DRAMSIZE 36 DRAM : ORIGIN = DRAMORIG, LENGTH = DRAMSIZE
37 DEVBSS : ORIGIN = 0x80100000 + FRAME_SIZE, LENGTH = 0x100000 - FRAME_SIZE - TTB_SIZE 37 DEVBSS : ORIGIN = CSD0_BASE_ADDR + (MEMORYSIZE * 0x100000 - 0x100000), \
38 LENGTH = 0x100000 - FRAME_SIZE - TTB_SIZE
38} 39}
39 40
40SECTIONS 41SECTIONS