]> git.sur5r.net Git - freertos/commitdiff
Add flash linker file for SAM9256XE.
authorRichardBarry <RichardBarry@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>
Wed, 7 Jan 2009 12:27:11 +0000 (12:27 +0000)
committerRichardBarry <RichardBarry@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>
Wed, 7 Jan 2009 12:27:11 +0000 (12:27 +0000)
git-svn-id: https://svn.code.sf.net/p/freertos/code/trunk@603 1d2547de-c912-0410-9cb9-b8ca96c0e9e2

Demo/ARM9_AT91SAM9XE_IAR/ewp/flash.icf [new file with mode: 0644]

diff --git a/Demo/ARM9_AT91SAM9XE_IAR/ewp/flash.icf b/Demo/ARM9_AT91SAM9XE_IAR/ewp/flash.icf
new file mode 100644 (file)
index 0000000..7ec9a3b
--- /dev/null
@@ -0,0 +1,48 @@
+/*###ICF### Section handled by ICF editor, don't touch! ****/\r
+/*-Editor annotation file-*/\r
+/* IcfEditorFile="$TOOLKIT_DIR$\config\ide\IcfEditor\a_v1_0.xml" */\r
+/*-Memory Regions-*/\r
+define symbol __ICFEDIT_region_ROM_start__   = 0x200000;\r
+define symbol __ICFEDIT_region_ROM_end__     = 0x27FFFF;\r
+define symbol __ICFEDIT_region_RAM_start__   = 0x300000;\r
+define symbol __ICFEDIT_region_RAM_end__     = 0x307FFF;\r
+/*-Sizes-*/\r
+define symbol __ICFEDIT_size_startup__  = 0x100;\r
+define symbol __ICFEDIT_size_vectors__  = 0x100;\r
+define symbol __ICFEDIT_size_cstack__   = 0x1000;\r
+define symbol __ICFEDIT_size_svcstack__ = 0x60;\r
+define symbol __ICFEDIT_size_irqstack__ = 0x60;\r
+define symbol __ICFEDIT_size_heap__     = 0x10000;\r
+/*-Exports-*/\r
+export symbol __ICFEDIT_region_ROM_start__;\r
+export symbol __ICFEDIT_region_ROM_end__;\r
+export symbol __ICFEDIT_region_RAM_start__;\r
+export symbol __ICFEDIT_region_RAM_end__;\r
+export symbol __ICFEDIT_size_startup__;\r
+export symbol __ICFEDIT_size_vectors__;\r
+export symbol __ICFEDIT_size_cstack__;\r
+export symbol __ICFEDIT_size_svcstack__;\r
+export symbol __ICFEDIT_size_irqstack__;\r
+export symbol __ICFEDIT_size_heap__;\r
+/**** End of ICF editor section. ###ICF###*/\r
+\r
+define memory mem with size = 4G;\r
+define region STA_region = mem:[from __ICFEDIT_region_ROM_start__ size __ICFEDIT_size_startup__];\r
+define region ROM_region = mem:[from __ICFEDIT_region_ROM_start__+__ICFEDIT_size_startup__ to __ICFEDIT_region_ROM_end__];\r
+define region VEC_region = mem:[from __ICFEDIT_region_RAM_start__ size __ICFEDIT_size_vectors__];\r
+define region RAM_region = mem:[from __ICFEDIT_region_RAM_start__+__ICFEDIT_size_vectors__ to __ICFEDIT_region_RAM_end__];\r
+\r
+define block CSTACK    with alignment = 8, size = __ICFEDIT_size_cstack__   { };\r
+define block SVC_STACK with alignment = 8, size = __ICFEDIT_size_svcstack__ { };\r
+define block IRQ_STACK with alignment = 8, size = __ICFEDIT_size_irqstack__ { };\r
+define block HEAP      with alignment = 8, size = __ICFEDIT_size_heap__     { };\r
+\r
+initialize by copy { readwrite };\r
+initialize by copy { section .vectors };\r
+do not initialize  { section .noinit };\r
+\r
+place in STA_region { section .cstartup };\r
+place in ROM_region { readonly };\r
+place in VEC_region { section .vectors };\r
+place in RAM_region { readwrite, block IRQ_STACK, block SVC_STACK, block CSTACK, block HEAP };\r
+\r