2003-01-20 23:34:39 +01:00
|
|
|
# In microcomputer (MC) mode, the vectors are mapped into the on-chip ROM,
|
|
|
|
# otherwise in microprocessor (MP) mode the vectors are mapped to address 0
|
|
|
|
# on the external bus. In MC mode, the on-chip ROM contains a bootloader program
|
|
|
|
# that loads the internal RAM from the serial port or external ROM.
|
|
|
|
#
|
|
|
|
# Common configurations:
|
|
|
|
# 1. MC mode, no external memory (serial boot).
|
|
|
|
# 2. MC mode, external RAM (serial boot).
|
|
|
|
# 3. MC mode, external ROM.
|
|
|
|
# 4. MC mode, external ROM, external RAM.
|
|
|
|
# 5. MP mode, external ROM.
|
|
|
|
# 6. MP mode, external ROM, external RAM.
|
|
|
|
# 7. MP mode, external RAM (dual-port with hosting CPU or external debugger).
|
|
|
|
#
|
|
|
|
# Config TEXT DATA/BSS
|
|
|
|
# 1. INT_RAM INT_RAM (mcmode,onchip)
|
|
|
|
# 2. EXT_RAM EXT_RAM (mcmode,extram)
|
|
|
|
# 3. INT_RAM INT_RAM (mcmode,onchip)
|
|
|
|
# 4. EXT_RAM EXT_RAM (mcmode,extram)
|
|
|
|
# 5. EXT_ROM INT_RAM (mpmode,onchip,extrom)
|
|
|
|
# 6. EXT_ROM EXT_RAM (mpmode,extram,extrom)
|
|
|
|
# 7. EXT_RAM EXT_RAM (mpmode,extram)
|
|
|
|
#
|
|
|
|
# In MC mode, TEXT and DATA are copied into RAM by the bootloader.
|
|
|
|
#
|
|
|
|
# In MP mode with external ROM, DATA needs to be copied into RAM at boot time.
|
|
|
|
#
|
|
|
|
# If there is external RAM it is better to use that and reserve the internal RAM
|
|
|
|
# for data buffers. However, the address of the external RAM needs to be specified.
|
|
|
|
#
|
|
|
|
# This emulation assumes config 7.
|
|
|
|
|
|
|
|
case $OUTPUT_ARCH in
|
2003-04-04 10:15:15 +02:00
|
|
|
tic3x) OUTPUT_ARCHNAME="TMS320C3x" ;;
|
|
|
|
tic4x) OUTPUT_ARCHNAME="TMS320C4x" ;;
|
2003-01-20 23:34:39 +01:00
|
|
|
esac
|
|
|
|
|
|
|
|
case $ONCHIP in
|
|
|
|
yes) RAM=RAM;
|
|
|
|
STACK_SIZE_DEFAULT=128;
|
|
|
|
HEAP_SIZE_DEFAULT=0;
|
|
|
|
;;
|
|
|
|
*) RAM=EXT0;
|
|
|
|
STACK_SIZE_DEFAULT=0x1000;
|
|
|
|
HEAP_SIZE_DEFAULT=0x4000;
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
TEXT_MEMORY=$RAM;
|
|
|
|
DATA_MEMORY=$RAM;
|
|
|
|
|
|
|
|
|
|
|
|
MEMORY_DEF="
|
|
|
|
/* C30 memory space. */
|
|
|
|
MEMORY
|
|
|
|
{
|
|
|
|
EXT0 : org = 0x0000000, len = 0x800000 /* External address bus. */
|
|
|
|
XBUS : org = 0x0800000, len = 0x002000 /* Expansion bus. */
|
|
|
|
IOBUS : org = 0x0804000, len = 0x002000 /* I/O BUS. */
|
|
|
|
RAM0 : org = 0x0809800, len = 0x000400 /* Internal RAM block 0. */
|
|
|
|
RAM1 : org = 0x0809a00, len = 0x000400 /* Internal RAM block 1. */
|
|
|
|
RAM : org = 0x0809800, len = 0x000800 /* Internal RAM. */
|
|
|
|
EXT1 : org = 0x080a000, len = 0x7f6000 /* External address bus. */
|
|
|
|
}
|
|
|
|
"
|
2002-08-28 12:38:51 +02:00
|
|
|
|
|
|
|
test -z "$ENTRY" && ENTRY=_start
|
2003-01-20 23:34:39 +01:00
|
|
|
|
2002-08-28 12:38:51 +02:00
|
|
|
cat <<EOF
|
2003-01-20 23:34:39 +01:00
|
|
|
${RELOCATING+/* Linker script for $OUTPUT_ARCHNAME executable. */}
|
|
|
|
${RELOCATING-/* Linker script for $OUTPUT_ARCHNAME object file (ld -r). */}
|
|
|
|
|
2002-08-28 12:38:51 +02:00
|
|
|
OUTPUT_FORMAT("${OUTPUT_FORMAT}")
|
|
|
|
OUTPUT_ARCH("${OUTPUT_ARCH}")
|
|
|
|
${LIB_SEARCH_DIRS}
|
2009-09-09 13:59:14 +02:00
|
|
|
${RELOCATING+ENTRY (${ENTRY})}
|
2003-01-20 23:34:39 +01:00
|
|
|
|
|
|
|
${RELOCATING+ __HEAP_SIZE = DEFINED(__HEAP_SIZE) ? __HEAP_SIZE : ${HEAP_SIZE_DEFAULT};}
|
|
|
|
${RELOCATING+ __STACK_SIZE = DEFINED(__STACK_SIZE) ? __STACK_SIZE : ${STACK_SIZE_DEFAULT};}
|
|
|
|
|
|
|
|
${RELOCATING+${MEMORY_DEF}}
|
|
|
|
|
|
|
|
/* In the small memory model the .data and .bss sections must be contiguous
|
|
|
|
when loaded and fit within the same page. The DP register is loaded
|
|
|
|
with the page address. */
|
2002-08-28 12:38:51 +02:00
|
|
|
|
|
|
|
SECTIONS
|
|
|
|
{
|
2003-01-20 23:34:39 +01:00
|
|
|
/* Reset, interrupt, and trap vectors. */
|
|
|
|
.vectors ${RELOCATING+ 0} : {
|
|
|
|
*(.vectors)
|
|
|
|
} ${RELOCATING+ > ${TEXT_MEMORY}}
|
|
|
|
/* Constants. */
|
|
|
|
.const : {
|
2002-08-28 12:38:51 +02:00
|
|
|
*(.const)
|
2003-01-20 23:34:39 +01:00
|
|
|
} ${RELOCATING+ > ${TEXT_MEMORY}}
|
|
|
|
/* Program code. */
|
|
|
|
.text : {
|
|
|
|
${RELOCATING+ __text = .;}
|
2002-08-28 12:38:51 +02:00
|
|
|
${RELOCATING+ *(.init)}
|
|
|
|
*(.text)
|
|
|
|
${CONSTRUCTING+ ___CTOR_LIST__ = .;}
|
|
|
|
${CONSTRUCTING+ LONG(___CTOR_END__ - ___CTOR_LIST__ - 2)}
|
|
|
|
${CONSTRUCTING+ *(.ctors)}
|
|
|
|
${CONSTRUCTING+ LONG(0);}
|
|
|
|
${CONSTRUCTING+ ___CTOR_END__ = .;}
|
|
|
|
${CONSTRUCTING+ ___DTOR_LIST__ = .;}
|
|
|
|
${CONSTRUCTING+ LONG(___DTOR_END__ - ___DTOR_LIST__ - 2)}
|
|
|
|
${CONSTRUCTING+ *(.dtors)}
|
|
|
|
${CONSTRUCTING+ LONG(0)}
|
|
|
|
${CONSTRUCTING+ ___DTOR_END__ = .;}
|
|
|
|
${RELOCATING+ *(.fini)}
|
2003-01-20 23:34:39 +01:00
|
|
|
${RELOCATING+ __etext = .;}
|
|
|
|
} ${RELOCATING+ > ${TEXT_MEMORY}}
|
|
|
|
/* Global initialised variables. */
|
|
|
|
.data :
|
|
|
|
{
|
|
|
|
${RELOCATING+ __data = .;}
|
|
|
|
*(.data)
|
|
|
|
${RELOCATING+ __edata = .;}
|
|
|
|
} ${RELOCATING+ > ${DATA_MEMORY}}
|
|
|
|
/* Global uninitialised variables. */
|
|
|
|
.bss : {
|
|
|
|
${RELOCATING+ __bss = .;}
|
|
|
|
*(.bss)
|
|
|
|
*(COMMON)
|
|
|
|
${RELOCATING+ __end = .;}
|
|
|
|
} ${RELOCATING+ > ${DATA_MEMORY}}
|
|
|
|
/* Heap. */
|
|
|
|
.heap :
|
2002-08-28 12:38:51 +02:00
|
|
|
{
|
2003-01-20 23:34:39 +01:00
|
|
|
${RELOCATING+ __heap = .;}
|
|
|
|
${RELOCATING+ . += __HEAP_SIZE};
|
|
|
|
} ${RELOCATING+ > ${DATA_MEMORY}}
|
|
|
|
/* Stack (grows upward). */
|
|
|
|
.stack :
|
|
|
|
{
|
|
|
|
${RELOCATING+ __stack = .;}
|
2002-08-28 12:38:51 +02:00
|
|
|
*(.stack)
|
|
|
|
${RELOCATING+ . = . + __STACK_SIZE};
|
2003-01-20 23:34:39 +01:00
|
|
|
} ${RELOCATING+ > ${DATA_MEMORY}}
|
|
|
|
.stab 0 ${RELOCATING+(NOLOAD)} :
|
2002-08-28 12:38:51 +02:00
|
|
|
{
|
|
|
|
[ .stab ]
|
|
|
|
}
|
2003-01-20 23:34:39 +01:00
|
|
|
.stabstr 0 ${RELOCATING+(NOLOAD)} :
|
2002-08-28 12:38:51 +02:00
|
|
|
{
|
|
|
|
[ .stabstr ]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
EOF
|