-
Notifications
You must be signed in to change notification settings - Fork 3
/
loader.monobank.ld
145 lines (124 loc) · 3.81 KB
/
loader.monobank.ld
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
/* ldr.ld */
/* Entry Point */
ENTRY(Reset_Handler)
_estack = 0x20002000;
/* */
MEMORY
{
/* sample flash, 512k */
LDR (rx) : ORIGIN = 0x08000000, LENGTH = 0x00008000
SHR_FLIP (rw) : ORIGIN = 0x08008000, LENGTH = 0x00008000
/* sample RAM, 128k is enough for loader */
RAM_USER (rx) : ORIGIN = 0x20000000, LENGTH = 0x00020000
/* Backup SRAM, safe against RDP2->RDP1 downgrade */
BKP_SRAM (rw) : ORIGIN = 0x40024000, LENGTH = 0x00001000
/* keybag storage, not upgradable through DFU */
NOUPGRADE_SIG (r) : ORIGIN = 0x08100800, LENGTH = 1024
NOUPGRADE_DFU (r) : ORIGIN = 0x08100400, LENGTH = 1024
NOUPGRADE_AUTH (r) : ORIGIN = 0x08100000, LENGTH = 1024
/* Flash over-encryption key */
NOUPGRADE_DFU_FLASH_KEY_IV (r) : ORIGIN = 0x08100c00, LENGTH = 1024
}
/* Define output sections */
SECTIONS
{
/* The startup code goes first into FLASH */
.isr_vector :
{
. = ALIGN(4);
KEEP(*(.isr_vector)) /* Startup code */
. = ALIGN(4);
} >LDR
/* The program code and other data goes into FLASH */
.text :
{
_stext = .; /* create a global symbol at data start */
*startup*(.text.Reset_Handler)
*(.text*)
*(.rodata*) /* .rodata sections (constants, strings, etc.) */
*(.glue_7*) /* glue arm to thumb code */
*(.glue_7t*) /* glue thumb to arm code */
*(.eh_frame*)
KEEP (*(.init))
KEEP (*(.fini))
. = ALIGN(4);
_etext = .; /* define a global symbols at end of code */
_exit = .;
} >LDR
/* used by the startup to initialize got */
_sigot = .;
.got : AT ( _sigot ) {
. = ALIGN(4);
_sgot = .;
/* *(.got.plt)
* We don't need plt segment
* since we do not need dynamic library relocation
*/
*(.got)
. = ALIGN(4);
_egot = .;
_sidata = .;
} >LDR
/* used by the startup to initialize data */
/* Shared variables */
.shared_flip : {
. = ALIGN(4);
KEEP(*(.shared_flip)) ;
}>SHR_FLIP
/* Initialized data sections goes into RAM, load LMA copy after code */
.data : AT ( _sidata )
{
. = ALIGN(4);
_sdata = .; /* create a global symbol at data start */
*(.data) /* .data sections */
*(.data*) /* .data* sections */
. = ALIGN(4);
_edata = .; /* define a global symbol at data end */
} >RAM_USER
/* Uninitialized data section */
. = ALIGN(4);
.bss :
{
/* This is used by the startup in order to initialize the .bss secion */
_sbss = .; /* define a global symbol at bss start */
__bss_start__ = _sbss;
*debug.o(.bss)
*(.bss)
*(.bss*)
*(COMMON)
. = ALIGN(4);
_ebss = .; /* define a global symbol at bss end */
__bss_end__ = _ebss;
} >RAM_USER AT >RAM_USER
/* User_heap_stack section, used to check that there is enough RAM left */
._user_heap_stack :
{
. = ALIGN(4);
PROVIDE ( end = . );
PROVIDE ( _end = . );
. = . + 4096;
. = ALIGN(4);
} >RAM_USER AT >RAM_USER
/* Uninitialized data section with explicit no zero init */
._non_zero_bss :
{
*(.nonzerobss)
} >BKP_SRAM AT >BKP_SRAM
/* Remove information from the standard libraries */
/DISCARD/ :
{
libgcc.a ( * )
*(.ARM.exidx*)
*(.gnu.linkonce.armexidx.*)
}
/* Helpers to get our keybag memory addresses */
__noupgrade_sig_flash_start = ORIGIN(NOUPGRADE_SIG);
__noupgrade_sig_flash_len = LENGTH(NOUPGRADE_SIG);
__noupgrade_dfu_flash_start = ORIGIN(NOUPGRADE_DFU);
__noupgrade_dfu_flash_len = LENGTH(NOUPGRADE_DFU);
__noupgrade_auth_flash_start = ORIGIN(NOUPGRADE_AUTH);
__noupgrade_auth_flash_len = LENGTH(NOUPGRADE_AUTH);
/* Flash over-encryption key */
__noupgrade_dfu_flash_key_iv_start = ORIGIN(NOUPGRADE_DFU_FLASH_KEY_IV);
__noupgrade_dfu_flash_key_iv_len = LENGTH(NOUPGRADE_DFU_FLASH_KEY_IV);
}