diff options
author | Rob Purchase <shotofadds@rockbox.org> | 2008-01-14 22:04:48 +0000 |
---|---|---|
committer | Rob Purchase <shotofadds@rockbox.org> | 2008-01-14 22:04:48 +0000 |
commit | 47ea030e2e68a51f91a2c2302b7ea4d3ee1a2a07 (patch) | |
tree | 0a48ce653e22ec9a2673474f718217d9659e0c6b /firmware/boot.lds | |
parent | b30ca8ca5ab6c8ea27b8fe1f5fb38ebad09b7e62 (diff) |
Initial Cowon D2 commit:
* bootloader test program (basic LCD & button drivers, reads touchscreen)
* work-in-progress stubs for main build
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@16090 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/boot.lds')
-rw-r--r-- | firmware/boot.lds | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/firmware/boot.lds b/firmware/boot.lds index 1b13211608..8d7d55a607 100644 --- a/firmware/boot.lds +++ b/firmware/boot.lds @@ -15,6 +15,8 @@ INPUT(target/arm/tms320dm320/crt0.o) INPUT(target/arm/s3c2440/crt0.o) #elif defined(CPU_TCC77X) INPUT(target/arm/tcc77x/crt0.o) +#elif defined(CPU_TCC780X) +INPUT(target/arm/tcc780x/crt0.o) #elif CONFIG_CPU==IMX31L INPUT(target/arm/imx31/crt0.o) #else @@ -89,6 +91,12 @@ INPUT(target/sh/crt0.o) #define IRAMSIZE 64K #define FLASHORIG 0x0000000 #define FLASHSIZE 1M +#elif defined(CPU_TCC780X) +#define DRAMORIG 0x20000000 +#define IRAMORIG 0x00000000 +#define IRAMSIZE 4K +#define FLASHORIG 0x0000000 +#define FLASHSIZE 1M #else #define DRAMORIG 0x09000000 #define IRAMORIG 0x0f000000 @@ -97,7 +105,7 @@ INPUT(target/sh/crt0.o) #define FLASHSIZE 256K - ROM_START #endif -#if defined(CPU_TCC77X) +#if defined(CPU_TCC77X) || defined(CPU_TCC780X) MEMORY { #ifdef TCCBOOT @@ -190,7 +198,7 @@ SECTIONS _end = .; } } -#elif defined(CPU_TCC77X) +#elif defined(CPU_TCC77X) || defined(CPU_TCC780X) { .text : { *(.init.text) |