2018-02-12 18:51:22 -05:00

84 lines
4.9 KiB
Plaintext

/*###ICF### Section handled by ICF editor, don't touch! ****/
/*-Editor annotation file-*/
/* IcfEditorFile="$TOOLKIT_DIR$\config\linker\ST\IcfEditor\stm32h7xx.xml" */
/*-Specials-*/
define symbol __ICFEDIT_intvec_start__ = 0x08000000;
/*-Memory Regions-*/
define symbol __ICFEDIT_region_FLASH1_start__ = 0x08000000;
define symbol __ICFEDIT_region_FLASH1_end__ = 0x080FFFFF;
define symbol __ICFEDIT_region_FLASH2_start__ = 0x08100000;
define symbol __ICFEDIT_region_FLASH2_end__ = 0x081FFFFF;
define symbol __ICFEDIT_region_NORPSR_start__ = 0x0;
define symbol __ICFEDIT_region_NORPSR_end__ = 0x0;
define symbol __ICFEDIT_region_NAND_start__ = 0x0;
define symbol __ICFEDIT_region_NAND_end__ = 0x0;
define symbol __ICFEDIT_region_QSPI_start__ = 0x0;
define symbol __ICFEDIT_region_QSPI_end__ = 0x0;
define symbol __ICFEDIT_region_ITCMR_start__ = 0x00000000;
define symbol __ICFEDIT_region_ITCMR_end__ = 0x0000FFFF;
define symbol __ICFEDIT_region_DTCMR_start__ = 0x20000000;
define symbol __ICFEDIT_region_DTCMR_end__ = 0x2001FFFF;
define symbol __ICFEDIT_region_AXISR_start__ = 0x24000000;
define symbol __ICFEDIT_region_AXISR_end__ = 0x2407FFFF;
define symbol __ICFEDIT_region_SRAM1_start__ = 0x30000000;
define symbol __ICFEDIT_region_SRAM1_end__ = 0x3001FFFF;
define symbol __ICFEDIT_region_SRAM2_start__ = 0x30020000;
define symbol __ICFEDIT_region_SRAM2_end__ = 0x3003FFFF;
define symbol __ICFEDIT_region_SRAM3_start__ = 0x30040000;
define symbol __ICFEDIT_region_SRAM3_end__ = 0x30047FFF;
define symbol __ICFEDIT_region_SRAM4_start__ = 0x38000000;
define symbol __ICFEDIT_region_SRAM4_end__ = 0x3800FFFF;
define symbol __ICFEDIT_region_BKPR_start__ = 0x38800000;
define symbol __ICFEDIT_region_BKPR_end__ = 0x38800FFF;
define symbol __ICFEDIT_region_SDR1_start__ = 0x0;
define symbol __ICFEDIT_region_SDR1_end__ = 0x0;
define symbol __ICFEDIT_region_SDR2_start__ = 0x0;
define symbol __ICFEDIT_region_SDR2_end__ = 0x0;
/*-Sizes-*/
define symbol __ICFEDIT_size_cstack__ = 2048;
define symbol __ICFEDIT_size_proc_stack__ = 0;
define symbol __ICFEDIT_size_heap__ = 0;
/**** End of ICF editor section. ###ICF###*/
define memory mem with size = 4G;
define region FLASH_region = mem:[from __ICFEDIT_region_FLASH1_start__ to __ICFEDIT_region_FLASH1_end__]
| mem:[from __ICFEDIT_region_FLASH2_start__ to __ICFEDIT_region_FLASH2_end__];
define region NORPSR_region = mem:[from __ICFEDIT_region_NORPSR_start__ to __ICFEDIT_region_NORPSR_end__];
define region NAND_region = mem:[from __ICFEDIT_region_NAND_start__ to __ICFEDIT_region_NAND_end__ ];
define region QSPI_region = mem:[from __ICFEDIT_region_QSPI_start__ to __ICFEDIT_region_QSPI_end__ ];
define region ITCMR_region = mem:[from __ICFEDIT_region_ITCMR_start__ to __ICFEDIT_region_ITCMR_end__ ];
define region DTCMR_region = mem:[from __ICFEDIT_region_DTCMR_start__ to __ICFEDIT_region_DTCMR_end__ ];
define region AXISR_region = mem:[from __ICFEDIT_region_AXISR_start__ to __ICFEDIT_region_AXISR_end__ ];
define region SRAM_region = mem:[from __ICFEDIT_region_SRAM1_start__ to __ICFEDIT_region_SRAM1_end__ ]
| mem:[from __ICFEDIT_region_SRAM2_start__ to __ICFEDIT_region_SRAM2_end__ ]
| mem:[from __ICFEDIT_region_SRAM3_start__ to __ICFEDIT_region_SRAM3_end__ ]
| mem:[from __ICFEDIT_region_SRAM4_start__ to __ICFEDIT_region_SRAM4_end__ ];
define region BKPR_region = mem:[from __ICFEDIT_region_BKPR_start__ to __ICFEDIT_region_BKPR_end__ ];
define region SDR_region = mem:[from __ICFEDIT_region_SDR1_start__ to __ICFEDIT_region_SDR1_end__ ]
| mem:[from __ICFEDIT_region_SDR2_start__ to __ICFEDIT_region_SDR2_end__ ];
define block CSTACK with alignment = 8, size = __ICFEDIT_size_cstack__ { };
define block PROC_STACK with alignment = 8, size = __ICFEDIT_size_proc_stack__ { };
define block HEAP with alignment = 8, size = __ICFEDIT_size_heap__ { };
initialize by copy { readwrite };
if (isdefinedsymbol(__USE_DLIB_PERTHREAD))
{
// Required in a multi-threaded application
initialize by copy with packing = none { section __DLIB_PERTHREAD };
}
do not initialize { section .noinit };
place at address mem:__ICFEDIT_intvec_start__ { readonly section .intvec };
place in FLASH_region { readonly };
place in QSPI_region { readonly section application_specific_ro };
//place in NORPSR_region { };
//place in NAND_region { };
place in ITCMR_region { section .textrw };
place in DTCMR_region { section .dtcm_ram, block CSTACK, block PROC_STACK };
place in SRAM_region { section .axi_sram, block HEAP };
place in AXISR_region { readwrite };
place in BKPR_region { section .backup_sram };
place in SDR_region { readwrite section application_specific_rw };