2008-03-27 23:58:03 +00:00
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
ENTRY(start)
|
2009-04-01 03:21:18 +00:00
|
|
|
|
2008-03-27 23:58:03 +00:00
|
|
|
OUTPUT_FORMAT(elf32-littlearm)
|
|
|
|
OUTPUT_ARCH(arm)
|
2008-04-29 06:19:32 +00:00
|
|
|
STARTUP(target/arm/tms320dm320/crt0.o)
|
2008-03-27 23:58:03 +00:00
|
|
|
|
2009-04-10 04:48:44 +00:00
|
|
|
#ifdef DEBUG
|
|
|
|
#define STUBOFFSET 0x10000
|
|
|
|
#else
|
|
|
|
#define STUBOFFSET 0
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef LCD_NATIVE_WIDTH
|
|
|
|
#define LCD_NATIVE_WIDTH LCD_WIDTH
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef LCD_NATIVE_HEIGHT
|
|
|
|
#define LCD_NATIVE_HEIGHT LCD_HEIGHT
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define LCD_FUDGE LCD_NATIVE_WIDTH%32
|
|
|
|
|
|
|
|
#define LCD_BUFFER_SIZE ((LCD_NATIVE_WIDTH+LCD_FUDGE)*LCD_NATIVE_HEIGHT*2)
|
2009-04-01 03:21:18 +00:00
|
|
|
|
|
|
|
/* must be 16Kb (0x4000) aligned */
|
|
|
|
#define TTB_SIZE (0x4000)
|
|
|
|
|
2009-04-10 04:48:44 +00:00
|
|
|
/* Give this 1 meg to allow it to align to the MMU boundary */
|
|
|
|
#define LCD_TTB_AREA 0x100000
|
|
|
|
|
|
|
|
#define BOOT_OFFSET 0x1000000
|
2008-03-27 23:58:03 +00:00
|
|
|
|
2009-04-10 04:48:44 +00:00
|
|
|
#define DRAMSIZE (MEMORYSIZE * 0x100000) - STUBOFFSET - BOOT_OFFSET
|
2008-03-27 23:58:03 +00:00
|
|
|
|
2009-04-10 04:48:44 +00:00
|
|
|
#define DRAMORIG (0x00900000+BOOT_OFFSET) /* actually it's 0x00900000 */
|
|
|
|
#define IRAMORIG 0x00000000
|
|
|
|
#define IRAMSIZE 0x4000
|
|
|
|
#define FLASHORIG 0x00100000
|
|
|
|
#define FLASHSIZE 8M
|
2009-04-01 03:21:18 +00:00
|
|
|
|
2009-04-10 04:48:44 +00:00
|
|
|
/* End of the audio buffer, where the codec buffer starts */
|
|
|
|
#define TTB_BEGIN (DRAMORIG + DRAMSIZE - LCD_TTB_AREA)
|
2009-04-01 03:21:18 +00:00
|
|
|
|
2008-03-27 23:58:03 +00:00
|
|
|
MEMORY
|
|
|
|
{
|
|
|
|
DRAM : ORIGIN = DRAMORIG, LENGTH = DRAMSIZE
|
|
|
|
IRAM : ORIGIN = IRAMORIG, LENGTH = IRAMSIZE
|
|
|
|
FLASH : ORIGIN = FLASHORIG, LENGTH = FLASHSIZE
|
|
|
|
}
|
|
|
|
|
|
|
|
SECTIONS
|
|
|
|
{
|
2008-08-27 20:32:12 +00:00
|
|
|
. = DRAMORIG;
|
2008-03-27 23:58:03 +00:00
|
|
|
|
|
|
|
.text : {
|
|
|
|
loadaddress = .;
|
|
|
|
_loadaddress = .;
|
|
|
|
*(.init.text)
|
|
|
|
*(.text*)
|
|
|
|
*(.glue_7)
|
|
|
|
*(.glue_7t)
|
|
|
|
. = ALIGN(0x4);
|
|
|
|
} > DRAM
|
|
|
|
|
|
|
|
.rodata :
|
|
|
|
{
|
|
|
|
*(.rodata) /* problems without this, dunno why */
|
|
|
|
*(.rodata*)
|
|
|
|
*(.rodata.str1.1)
|
|
|
|
*(.rodata.str1.4)
|
|
|
|
. = ALIGN(0x4);
|
|
|
|
|
|
|
|
/* Pseudo-allocate the copies of the data sections */
|
|
|
|
_datacopy = .;
|
|
|
|
} > DRAM
|
|
|
|
|
|
|
|
.data : {
|
|
|
|
*(.data*)
|
|
|
|
. = ALIGN(0x4);
|
|
|
|
_dataend = . ;
|
|
|
|
} > DRAM
|
|
|
|
|
|
|
|
.vectors IRAMORIG :
|
|
|
|
{
|
|
|
|
_vectorsstart = .;
|
|
|
|
KEEP(*(.resetvectors));
|
|
|
|
*(.resetvectors);
|
|
|
|
KEEP(*(.vectors));
|
|
|
|
*(.vectors);
|
|
|
|
_vectorsend = .;
|
2009-04-10 04:48:44 +00:00
|
|
|
} > IRAM AT > DRAM
|
2008-03-27 23:58:03 +00:00
|
|
|
_vectorscopy = LOADADDR(.vectors);
|
2009-04-01 03:21:18 +00:00
|
|
|
|
2009-04-10 04:48:44 +00:00
|
|
|
.iram :
|
2009-04-01 03:21:18 +00:00
|
|
|
{
|
2009-04-10 04:48:44 +00:00
|
|
|
_iramstart = .;
|
|
|
|
*(.icode)
|
|
|
|
*(.irodata*)
|
|
|
|
*(.idata)
|
|
|
|
. = ALIGN(0x4);
|
|
|
|
_iramend = .;
|
|
|
|
} > IRAM AT> DRAM
|
|
|
|
|
|
|
|
_iramcopy = LOADADDR(.iram);
|
|
|
|
|
|
|
|
.ibss (NOLOAD) :
|
|
|
|
{
|
|
|
|
_iedata = .;
|
|
|
|
*(.ibss)
|
|
|
|
. = ALIGN(0x4);
|
|
|
|
_iend = .;
|
|
|
|
} > IRAM
|
|
|
|
|
|
|
|
.stack (NOLOAD) :
|
|
|
|
{
|
|
|
|
*(.stack)
|
|
|
|
stackbegin = .;
|
|
|
|
. += 0x2000;
|
|
|
|
stackend = .;
|
|
|
|
} > IRAM
|
|
|
|
|
|
|
|
.bss (NOLOAD) :
|
|
|
|
{
|
|
|
|
. = ADDR(.data) + SIZEOF(.data) + SIZEOF(.vectors) + SIZEOF(.iram);
|
|
|
|
_edata = .;
|
|
|
|
*(.bss*)
|
|
|
|
*(COMMON)
|
|
|
|
. = ALIGN(0x4);
|
|
|
|
_end = .;
|
|
|
|
} > DRAM
|
2009-04-01 03:21:18 +00:00
|
|
|
|
2009-04-10 04:48:44 +00:00
|
|
|
.ttbtable TTB_BEGIN (NOLOAD) :
|
2009-04-01 03:21:18 +00:00
|
|
|
{
|
2009-04-10 04:48:44 +00:00
|
|
|
. = ALIGN (0x4000);
|
2009-04-01 03:21:18 +00:00
|
|
|
_ttbstart = .;
|
2009-04-10 04:48:44 +00:00
|
|
|
. += TTB_SIZE;
|
|
|
|
} > DRAM
|
|
|
|
|
2009-06-08 00:19:16 +00:00
|
|
|
/* The LCD buffer should be at the end of memory to protect against
|
|
|
|
* overflowing something else when the YUV blitter is fudging the screen
|
|
|
|
* size.
|
|
|
|
*/
|
|
|
|
|
2009-04-10 04:48:44 +00:00
|
|
|
.lcdbuffer (NOLOAD) :
|
|
|
|
{
|
|
|
|
_lcdbuf = .;
|
|
|
|
. += LCD_BUFFER_SIZE;
|
|
|
|
} > DRAM
|
2009-06-08 00:19:16 +00:00
|
|
|
|
|
|
|
.lcdbuffer2 (NOLOAD) :
|
|
|
|
{
|
|
|
|
_lcdbuf2 = .;
|
|
|
|
. += LCD_BUFFER_SIZE;
|
|
|
|
} > DRAM
|
2008-03-27 23:58:03 +00:00
|
|
|
}
|