-
Notifications
You must be signed in to change notification settings - Fork 2
/
linker.x
68 lines (58 loc) · 1.72 KB
/
linker.x
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
/*
linker "inspired" by teensy4 core's linker
https://github.com/PaulStoffregen/cores/blob/master/teensy4/imxrt1062.ld
*/
/* IN: TARGET_TEENSY41 (0/1) */
MEMORY
{
ITCM (rwx): ORIGIN = 0x00000000, LENGTH = 512K
DTCM (rwx): ORIGIN = 0x20000000, LENGTH = 512K
OCRAM (rwx): ORIGIN = 0x20200000, LENGTH = 512K
FLASH (rwx): ORIGIN = 0x60000000, LENGTH = TARGET_TEENSY41 ? 7936K : 1984K
}
ENTRY(some_other_header)
SECTIONS
{
.boot : {
*(.boot.header)
FILL(0xFF)
. = ORIGIN(FLASH) + 0x1000;
*(.boot.some_other_header)
*(.boot*)
. = ALIGN(1024);
} > FLASH
.itcm : {
*(.text.vectors)
*(.text.glitch_funcs)
*(.text*)
. = ALIGN(4);
} > ITCM AT > FLASH
.dtcm : {
*(.rodata*)
*(.data*)
. = ALIGN(4);
} > DTCM AT > FLASH
.bss ALIGN(4) : {
cfg_prog_bss_start = .;
*(.bss*)
*(COMMON)
. = ALIGN(32);
cfg_prog_bss_end = .;
} > DTCM
/* set ITCM, DTCM and OCRAM banks */
cfg_prog_itcm_block_count = (SIZEOF(.itcm) + 0x7FFF) >> 15;
cfg_prog_flexram_bank_config = 0xAAAAAAAA | ((1 << (cfg_prog_itcm_block_count * 2)) - 1);
/* for stage2's copy_sections */
cfg_prog_itcm_flash_start = LOADADDR(.itcm);
cfg_prog_itcm_flash_size = SIZEOF(.itcm);
cfg_prog_itcm_flash_end = cfg_prog_itcm_flash_start + cfg_prog_itcm_flash_size;
cfg_prog_dtcm_flash_start = LOADADDR(.dtcm);
cfg_prog_dtcm_flash_size = SIZEOF(.dtcm);
cfg_prog_dtcm_flash_end = cfg_prog_dtcm_flash_start + cfg_prog_dtcm_flash_size;
/* set SP to end of DTCM */
cfg_prog_sp_addr = ORIGIN(DTCM) + ((16 - cfg_prog_itcm_block_count) << 15);
/* overall size for flashcfg */
cfg_prog_size = SIZEOF(.boot) + SIZEOF(.itcm) + SIZEOF(.dtcm);
/* diff between teensy4 and teensy4.1 */
cfg_sflashA1Size = TARGET_TEENSY41 ? 0x00800000 : 0x00200000;
}