/**************************************************************************** * boards/px4/fmu-v6xrt/nuttx-config/scripts/bootloader_script.ld * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The * ASF licenses this file to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance with the * License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. * ****************************************************************************/ /* Specify the memory areas */ /* Reallocate * Final Configuration is * No DTCM * 512k OCRAM M7 (FlexRAM) (2038:0000-203f:ffff) * 128k OCRAMM7 FlexRAM ECC (2036:0000-2037:ffff) * 64k OCRAM2 ECC parity (2035:0000-2035:ffff) * 64k OCRAM1 ECC parity (2034:0000-2034:ffff) * 512k FlexRAM OCRAM2 (202C:0000-2033:ffff) * 512k FlexRAM OCRAM1 (2024:0000-202B:ffff) * 256k System OCRAM M4 (2020:0000-2023:ffff) */ MEMORY { flash (rx) : ORIGIN = 0x30000000, LENGTH = 128K sram (rwx) : ORIGIN = 0x20240000, LENGTH = 2M-256k-512k itcm (rwx) : ORIGIN = 0x00000000, LENGTH = 256K /* TODO FlexRAM partition */ dtcm (rwx) : ORIGIN = 0x20000000, LENGTH = 256K } OUTPUT_ARCH(arm) EXTERN(_vectors) EXTERN(g_flash_config) EXTERN(g_image_vector_table) EXTERN(g_boot_data) EXTERN(board_get_manifest) EXTERN(_bootdelay_signature) ENTRY(__start) SECTIONS { /* Image Vector Table and Boot Data for booting from external flash */ .boot_hdr : ALIGN(4) { FILL(0xff) . = 0x400 ; __boot_hdr_start__ = ABSOLUTE(.) ; KEEP(*(.boot_hdr.conf)) . = 0x1000 ; KEEP(*(.boot_hdr.ivt)) . = 0x1020 ; KEEP(*(.boot_hdr.boot_data)) . = 0x1030 ; KEEP(*(.boot_hdr.dcd_data)) __boot_hdr_end__ = ABSOLUTE(.) ; . = 0x2000 ; } >flash .vectors : { KEEP(*(.vectors)) *(.text .text.__start) } >flash .itcmfunc : { . = ALIGN(8); _sitcmfuncs = ABSOLUTE(.); FILL(0xFF) . = 0x40 ; . = ALIGN(8); _eitcmfuncs = ABSOLUTE(.); } > itcm AT > flash _fitcmfuncs = LOADADDR(.itcmfunc); /* The RAM vector table (if present) should lie at the beginning of SRAM */ .ram_vectors (COPY) : { *(.ram_vectors) } > dtcm .text : ALIGN(4) { _stext = ABSOLUTE(.); *(.vectors) . = ALIGN(32); /* This signature provides the bootloader with a way to delay booting */ _bootdelay_signature = ABSOLUTE(.); FILL(0xffecc2925d7d05c5) . += 8; *(.text .text.*) *(.fixup) *(.gnu.warning) *(.gnu.linkonce.t.*) *(.glue_7) *(.glue_7t) *(.got) *(.gcc_except_table) *(.gnu.linkonce.r.*) . = ALIGN(4096); _etext = ABSOLUTE(.); _srodata = ABSOLUTE(.); *(.rodata .rodata.*) . = ALIGN(4096); _erodata = ABSOLUTE(.); } > flash .init_section : { _sinit = ABSOLUTE(.); KEEP(*(.init_array .init_array.*)) _einit = ABSOLUTE(.); } > flash .ARM.extab : { *(.ARM.extab*) } > flash .ARM.exidx : { __exidx_start = ABSOLUTE(.); *(.ARM.exidx*) __exidx_end = ABSOLUTE(.); } > flash _eronly = ABSOLUTE(.); .data : { _sdata = ABSOLUTE(.); *(.data .data.*) *(.gnu.linkonce.d.*) CONSTRUCTORS . = ALIGN(4); _edata = ABSOLUTE(.); } > sram AT > flash .ramfunc ALIGN(4): { _sramfuncs = ABSOLUTE(.); *(.ramfunc .ramfunc.*) _eramfuncs = ABSOLUTE(.); } > sram AT > flash _framfuncs = LOADADDR(.ramfunc); .bss : { _sbss = ABSOLUTE(.); *(.bss .bss.*) *(.gnu.linkonce.b.*) *(COMMON) . = ALIGN(4); _ebss = ABSOLUTE(.); } > sram /* Stabs debugging sections. */ .stab 0 : { *(.stab) } .stabstr 0 : { *(.stabstr) } .stab.excl 0 : { *(.stab.excl) } .stab.exclstr 0 : { *(.stab.exclstr) } .stab.index 0 : { *(.stab.index) } .stab.indexstr 0 : { *(.stab.indexstr) } .comment 0 : { *(.comment) } .debug_abbrev 0 : { *(.debug_abbrev) } .debug_info 0 : { *(.debug_info) } .debug_line 0 : { *(.debug_line) } .debug_pubnames 0 : { *(.debug_pubnames) } .debug_aranges 0 : { *(.debug_aranges) } _boot_loadaddr = ORIGIN(flash); _boot_size = LENGTH(flash); _ram_size = LENGTH(sram); _sdtcm = ORIGIN(dtcm); _edtcm = ORIGIN(dtcm) + LENGTH(dtcm); }