b4eec0dd42
Change-Id: If9936bfbbd3bc3eb2a3e3e290701b8517eabfb13
159 lines
2.8 KiB
Text
159 lines
2.8 KiB
Text
#include "config.h"
|
|
#include "cpu.h"
|
|
|
|
ENTRY(start)
|
|
|
|
OUTPUT_FORMAT(elf32-littlearm)
|
|
OUTPUT_ARCH(arm)
|
|
STARTUP(target/arm/crt0.o)
|
|
|
|
#define PLUGINSIZE PLUGIN_BUFFER_SIZE
|
|
#define CODECSIZE CODEC_SIZE
|
|
|
|
/* End of the audio buffer, where the codec buffer starts */
|
|
#define ENDAUDIOADDR (DRAM_ORIG + DRAMSIZE)
|
|
|
|
#define CODEC_BUFFER_FILLS_IRAM defined(AMS_LOWMEM) || (CONFIG_CPU == AS3525v2)
|
|
|
|
#if CODEC_BUFFER_FILLS_IRAM
|
|
/* Entire codec buffer in IRAM */
|
|
#define DRAMSIZE (DRAM_SIZE - PLUGINSIZE - TTB_SIZE)
|
|
#define CODECORIG (IRAM_ORIG + (IRAM_SIZE - CODEC_SIZE))
|
|
#define IRAMSIZE (IRAM_SIZE - CODEC_SIZE)
|
|
#else
|
|
#define DRAMSIZE (DRAM_SIZE - PLUGINSIZE - CODECSIZE - TTB_SIZE)
|
|
#define CODECORIG (ENDAUDIOADDR)
|
|
#define IRAMSIZE (0x20000)
|
|
#endif
|
|
|
|
|
|
/* Where the codec buffer ends, and the plugin buffer starts */
|
|
#if CODEC_BUFFER_FILLS_IRAM
|
|
#define ENDADDR (ENDAUDIOADDR)
|
|
#else
|
|
#define ENDADDR (ENDAUDIOADDR + CODECSIZE)
|
|
#endif
|
|
|
|
MEMORY
|
|
{
|
|
#if CODEC_BUFFER_FILLS_IRAM
|
|
CODEC_IRAM : ORIGIN = CODECORIG, LENGTH = CODEC_SIZE
|
|
#endif
|
|
IRAM : ORIGIN = IRAM_ORIG, LENGTH = IRAMSIZE
|
|
DRAM : ORIGIN = DRAM_ORIG, LENGTH = DRAMSIZE
|
|
}
|
|
|
|
SECTIONS
|
|
{
|
|
loadaddress = DRAM_ORIG;
|
|
|
|
.vectors :
|
|
{
|
|
_vectors_start = .;
|
|
*(.init.text)
|
|
} > DRAM
|
|
|
|
.text :
|
|
{
|
|
_loadaddress = .;
|
|
_textstart = .;
|
|
*(.text*)
|
|
*(.glue_7)
|
|
*(.glue_7t)
|
|
. = ALIGN(0x4);
|
|
} > DRAM
|
|
|
|
.rodata :
|
|
{
|
|
*(.rodata*)
|
|
. = ALIGN(0x4);
|
|
} > DRAM
|
|
|
|
.data :
|
|
{
|
|
*(.data*)
|
|
. = ALIGN(0x4);
|
|
} > DRAM
|
|
|
|
/DISCARD/ :
|
|
{
|
|
*(.eh_frame)
|
|
}
|
|
|
|
.iram :
|
|
{
|
|
_iramstart = .;
|
|
*(.icode*)
|
|
*(.irodata*)
|
|
*(.idata*)
|
|
. = ALIGN(0x4);
|
|
_iramend = .;
|
|
} > IRAM AT> DRAM
|
|
|
|
_iramcopy = LOADADDR(.iram);
|
|
|
|
.ibss (NOLOAD) :
|
|
{
|
|
_iedata = .;
|
|
*(.qharray)
|
|
*(.ibss*)
|
|
. = ALIGN(0x4);
|
|
_iend = .;
|
|
} > IRAM
|
|
|
|
.init CODECORIG :
|
|
{
|
|
. = ALIGN(4);
|
|
_initstart = .;
|
|
*(.init*)
|
|
_initend = .;
|
|
} AT> DRAM
|
|
|
|
_initcopy = LOADADDR(.init);
|
|
|
|
.stack _iramcopy (NOLOAD) :
|
|
{
|
|
*(.stack)
|
|
stackbegin = .;
|
|
. += 0x2000;
|
|
stackend = .;
|
|
} > DRAM
|
|
|
|
.bss (NOLOAD) :
|
|
{
|
|
_edata = .;
|
|
*(.bss*)
|
|
*(COMMON)
|
|
. = ALIGN(0x4);
|
|
_end = .;
|
|
} > DRAM
|
|
|
|
.audiobuf (NOLOAD) :
|
|
{
|
|
. = ALIGN(4);
|
|
_audiobuffer = .;
|
|
audiobuffer = .;
|
|
} > DRAM
|
|
|
|
.audiobufend ENDAUDIOADDR (NOLOAD) :
|
|
{
|
|
audiobufend = .;
|
|
_audiobufend = .;
|
|
} > DRAM
|
|
|
|
.codec CODECORIG (NOLOAD) :
|
|
{
|
|
codecbuf = .;
|
|
_codecbuf = .;
|
|
#if CODEC_BUFFER_FILLS_IRAM
|
|
} > CODEC_IRAM
|
|
#else
|
|
} > DRAM
|
|
#endif
|
|
|
|
.plugin ENDADDR (NOLOAD) :
|
|
{
|
|
_pluginbuf = .;
|
|
pluginbuf = .;
|
|
}
|
|
}
|