123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- /* Copyright (C) 2018 RDA Technologies Limited and/or its affiliates("RDA").
- * All rights reserved.
- *
- * This software is supplied "AS IS" without any warranties.
- * RDA assumes no responsibility or liability for the use of the software,
- * conveys no license or title under any patent, copyright, or mask work
- * right to the product. RDA reserves the right to make changes in the
- * software without notification. RDA also make no representation or
- * warranty that such application will be suitable for the specified use
- * without further testing or modification.
- */
- #include "link_defs.ld"
- #include "quec_cust_patch.h"
- OUTPUT_FORMAT("elf32-littlearm", "elf32-littlearm", "elf32-littlearm")
- OUTPUT_ARCH(arm)
- ENTRY(Reset_Handler)
- EXTERN(Reset_Handler)
- #define ttbl1_contents *(.TTBL1)
- #define ttbl2_contents *(.TTBL2)
- #define entry_contents *(RESET)
- #define sramboottext_contents KEEP(*(VECTORS)) SORT(*)(.sramboottext .sramboottext.*)
- #ifndef QUEC_PATCH_LINK_SRAM
- #define sramtext_contents SORT(*)(.sramtext .sramtext.*)
- #else
- #define sramtext_contents *libkernel.a:portASM.*(DEF_RO) \
- *libkernel.a:port.*(DEF_RO) \
- SORT(*)(.sramtext .sramtext.*)
- #endif
- #define ramtext_contents SORT(*)(.ramtext .ramtext.*)
- #define text_contents SORT(*)(DEF_RO) KEEP(*(.rokeep))
- #define sramdata_contents SORT(*)(.sramdata .sramdata.* .bootsramdata .sramucdata)
- #define data_contents SORT(*)(DEF_RW) KEEP(*(.rwkeep))
- #define srambss_contents *(.srambss .srambss.* .sramuninit .sramucbss)
- #define bss_contents *(DEF_ZI .ucdata .ucbackup)
- #define init_array_contents KEEP(*(.init_array*))
- #ifdef CONFIG_APP_FLASH2_ENABLED
- /* libraries on external flash, should be tuned by requirement. *//*SORT(*libatr.a:*)(DEF_RO) \ SORT(*libats.a:*)(DEF_RO) \ SORT(*libaudio.a:*)(DEF_RO) \ SORT(*libaudio_core.a:*)(DEF_RO)*/
- #define flash2text_contents SORT(*libonextflash.a:*)(DEF_RO) \
- SORT(*libaudio_core.a:*)(DEF_RO)
- #endif
- #define SRAM_HEAP_END (ORIGIN(sram) + LENGTH(sram) - CONFIG_IRQ_STACK_SIZE - CONFIG_SVC_STACK_SIZE - CONFIG_BLUE_SCREEN_SIZE)
- MEMORY {
- flash(rx): ORIGIN = CONFIG_APP_FLASH_ADDRESS, LENGTH = CONFIG_APP_FLASH_SIZE
- ram(rwx): ORIGIN = CONFIG_APP_RAM_ADDRESS, LENGTH = CONFIG_APP_RAM_SIZE
- sram(rwx): ORIGIN = CONFIG_SRAM_PHY_ADDRESS, LENGTH = CONFIG_SRAM_SIZE
- #ifdef CONFIG_APP_FLASH2_ENABLED
- flash2(rx): ORIGIN = CONFIG_APP_FLASH2_ADDRESS, LENGTH = CONFIG_APP_FLASH2_SIZE
- #endif
- }
- SECTIONS {
- NOLOAD_SIZE_SECT(simage, CONFIG_SIMAGE_HEADER_SIZE) > flash
- ANCHOR_SECT(flash_start) > flash
- NOAT_SECT_ALIGNED(ttbl1, 16384) >ram
- #ifdef CONFIG_BSCORE_ENABLE
- NOLOAD_SIZE_SECT(bscore, CONFIG_BSCORE_SIZE) >ram
- #endif
- NOAT_SECT_ALIGNED(ttbl2, 16384) >ram
- NOAT_SECT(entry) >flash
- LOAD_SECT(sramboottext) >sram AT>flash
- LOAD_SECT(sramtext) >sram AT>flash
- LOAD_SECT(ramtext) >ram AT>flash
- NOAT_SECT(init_array) >flash
- #ifdef CONFIG_APP_FLASH2_ENABLED
- ANCHOR_SECT(flash2_start) > flash2
- NOAT_SECT(flash2text) > flash2
- ANCHOR_SECT(flash2_end) > flash2
- #endif
- NOAT_SECT(text) >flash
- LOAD_SECT(sramdata) >sram AT>flash
- LOAD_SECT(data) >ram AT>flash
- NOLOAD_SECT(srambss) >sram
- NOLOAD_END_SECT(sram_heap, SRAM_HEAP_END) >sram
- NOLOAD_SIZE_SECT(blue_screen, CONFIG_BLUE_SCREEN_SIZE) >sram
- NOLOAD_SIZE_SECT(svc_stack, CONFIG_SVC_STACK_SIZE) >sram
- NOLOAD_SIZE_SECT(irq_stack, CONFIG_IRQ_STACK_SIZE) >sram
- NOLOAD_SECT(bss) >ram
- NOLOAD_END_SECT(heap, ORIGIN(ram) + LENGTH(ram)) > ram
- ANCHOR_SECT(flash_end) > flash
- IGNORE_DISCARD_SECTS
- }
|