summaryrefslogtreecommitdiff
path: root/firmware/target/arm/tms320dm320/boot.lds
diff options
context:
space:
mode:
authorKarl Kurbjun <kkurbjun@gmail.com>2009-06-08 00:19:16 +0000
committerKarl Kurbjun <kkurbjun@gmail.com>2009-06-08 00:19:16 +0000
commit4a483bb1bf69a0f0a1bf99aaa9bb47c6f79ab990 (patch)
tree974333299e937024bcd8b34ab998ceb137011d56 /firmware/target/arm/tms320dm320/boot.lds
parentf8a861961582c2809a8267ad0918d9c74072a440 (diff)
downloadrockbox-4a483bb1bf69a0f0a1bf99aaa9bb47c6f79ab990.tar.gz
rockbox-4a483bb1bf69a0f0a1bf99aaa9bb47c6f79ab990.zip
M:Robe 500: Mostly complete USB driver, supports BULK mode currently and gets about 2 MB/s writes vs 1.1 MB/s on the OF. Mostly tested against Linux, preliminary testing in Windows appears to work. There is currently a bug in the attach process where it only works once per boot that needs to be fixed. There are a few other minor M:Robe 500 changes as well.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21208 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/target/arm/tms320dm320/boot.lds')
-rw-r--r--firmware/target/arm/tms320dm320/boot.lds11
1 files changed, 11 insertions, 0 deletions
diff --git a/firmware/target/arm/tms320dm320/boot.lds b/firmware/target/arm/tms320dm320/boot.lds
index ff8203ccd8..0ee6c202a4 100644
--- a/firmware/target/arm/tms320dm320/boot.lds
+++ b/firmware/target/arm/tms320dm320/boot.lds
@@ -138,9 +138,20 @@ SECTIONS
138 . += TTB_SIZE; 138 . += TTB_SIZE;
139 } > DRAM 139 } > DRAM
140 140
141 /* The LCD buffer should be at the end of memory to protect against
142 * overflowing something else when the YUV blitter is fudging the screen
143 * size.
144 */
145
141 .lcdbuffer (NOLOAD) : 146 .lcdbuffer (NOLOAD) :
142 { 147 {
143 _lcdbuf = .; 148 _lcdbuf = .;
144 . += LCD_BUFFER_SIZE; 149 . += LCD_BUFFER_SIZE;
145 } > DRAM 150 } > DRAM
151
152 .lcdbuffer2 (NOLOAD) :
153 {
154 _lcdbuf2 = .;
155 . += LCD_BUFFER_SIZE;
156 } > DRAM
146} 157}