From a980d5f86951dca03baa447fd5a58005ba47a098 Mon Sep 17 00:00:00 2001 From: Aidan MacDonald Date: Fri, 30 Dec 2022 23:18:02 +0000 Subject: x1000: Enable support for INIT_ATTR Enable INIT_ATTR support in config.h. Load init code to the codec buffer, following the convention used by other targets that support INIT_ATTR. Change-Id: I8935fbaa100f0013bb328d71c4a49ec2ffafd003 --- firmware/target/mips/ingenic_x1000/app.lds | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) (limited to 'firmware/target/mips/ingenic_x1000/app.lds') diff --git a/firmware/target/mips/ingenic_x1000/app.lds b/firmware/target/mips/ingenic_x1000/app.lds index 270055c18f..fe06e1cd8d 100644 --- a/firmware/target/mips/ingenic_x1000/app.lds +++ b/firmware/target/mips/ingenic_x1000/app.lds @@ -13,6 +13,10 @@ INPUT(target/mips/system-mips.o) # undef CODEC_SIZE # define PLUGIN_BUFFER_SIZE 0 # define CODEC_SIZE 0 +# if defined(HAVE_INIT_ATTR) +/* This needs to be fixed for the bootloader */ +# error "bootloader does not support INIT_ATTR" +# endif #endif /* End of the audio buffer, where the codec buffer starts */ @@ -21,11 +25,16 @@ INPUT(target/mips/system-mips.o) /* Where the codec buffer ends, and the plugin buffer starts */ #define ENDCODECADDR (ENDAUDIOADDR + CODEC_SIZE) +/* Place init code in the codec buffer */ +#define INIT_BASE ENDAUDIOADDR +#define INIT_SIZE CODEC_SIZE + MEMORY { IRAM : ORIGIN = X1000_IRAM_BASE, LENGTH = X1000_IRAM_SIZE DRAM : ORIGIN = X1000_DRAM_BASE, LENGTH = X1000_DRAM_SIZE TCSM : ORIGIN = X1000_TCSM_BASE, LENGTH = X1000_TCSM_SIZE + INIT : ORIGIN = INIT_BASE, LENGTH = INIT_SIZE } SECTIONS @@ -40,6 +49,9 @@ SECTIONS .text : { *(.text*); +#ifndef HAVE_INIT_ATTR + *(.init*); +#endif } > DRAM . = ALIGN(4); @@ -89,6 +101,16 @@ SECTIONS } > TCSM AT> DRAM _tcsmcopy = LOADADDR(.tcsm); +#ifdef HAVE_INIT_ATTR + .init : + { + _initstart = .; + *(.init*); + _initend = .; + } > INIT AT> DRAM + _initcopy = LOADADDR(.init); +#endif + /* Sections below have no data. */ . = ALIGN(4); -- cgit v1.2.3