-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbootloader.cpp
247 lines (216 loc) · 5.83 KB
/
bootloader.cpp
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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
#include <flash.h>
#include <Storage/NvmStorage.h>
#include <usart.h>
#include <iopins.h>
#include <array>
#include "bootloader.h"
#include "boot_protocol.h"
#include <cstring>
#include "Encryption.h"
extern "C" void Reset_Handler();
using namespace Bootloader;
const uint32_t nvmPage = Flash::AddrToPage((void *)&_nvmStart);
const uint32_t nvmPageCount = ((uint8_t *)&_nvmEnd - (uint8_t *)&_nvmStart) / Flash::PageSize(nvmPage);
Storage::NvmStorage<AppEntryPoint> entryPointStorage(nvmPage, nvmPageCount);
BootloaderApp::BootloaderApp()
: _bootdata{
bootSignature : {'R', 'U', 'B', 'I', 'N', ' ', 'B', 'O', 'O', 'T'},
mcuType : MCU_NAME,
bootVersion : BootVersion,
deviceId : {0, 0, 0, 0},
error : BootError::Success,
pageCount : 0,
applicationPageCount : 0,
totalFlashSizeLo : 0,
totalFlashSizeHi : 0
}
{
}
bool BootloaderApp::ReplaceAndStoreAppEntryPoint(uint16_t *data)
{
uint32_t *ptr = reinterpret_cast<uint32_t *>(data);
AppEntryPoint entryPointData{
version : 0,
appStackPointer : ptr[0],
appEntryAddr : ptr[1],
reserved : 0xffffffff
};
if (!entryPointStorage.Write(entryPointData))
{
_bootdata.error = BootError::ErrorStoringEntryPoint;
return false;
}
ptr[0] = (uint32_t)&_estack;
ptr[1] = (uint32_t)&Reset_Handler;
return true;
}
bool BootloaderApp::WriteFlash(uint16_t *data, uint16_t page, uint16_t size, uint16_t offset)
{
#if defined(_DEBUG) && _DEBUG
cout << "Write: " << hex << setw(8) << page << setw(8) << size << setw(8) << offset << "\r\n";
#endif
if (size < 8)
{
_bootdata.error = BootError::ArgumentError;
return false;
}
if (offset + size > Flash::PageSize(page))
{
_bootdata.error = BootError::WrongPageNumber;
return false;
}
if (offset & 0x7) // dest should be aligned with a double word address
{
_bootdata.error = BootError::AddrNotAligned;
return false;
}
if (size & 0x7) // length multiple of 8
{
_bootdata.error = BootError::LengthNotAligned;
return false;
}
if (page >= BootStartBootPage())
{
_bootdata.error = BootError::PageIsProtected;
return false;
}
size_t outputSize = 0;
if (!DecryptPage((const uint8_t *)data, size, (uint8_t *)_pageData, &outputSize))
{
_bootdata.error = BootError::FailedToDercrypt;
return false;
}
uint32_t address = Flash::PageAddress(page) + offset;
if (!IsRegionClear(address, size))
{
if (std::memcmp((void *)address, _pageData, outputSize) == 0)
{
// re-trying to write same block
_bootdata.error = BootError::Success;
return true;
}
_bootdata.error = BootError::RegionIsNotClear;
return false;
}
if (page == 0 && offset == 0)
{
if (!ReplaceAndStoreAppEntryPoint(_pageData))
{
return false;
}
}
if (!Flash::WritePage(page, _pageData, outputSize, offset))
{
_bootdata.error = BootError::WritingError;
return false;
}
return true;
}
bool BootloaderApp::EraseFlash(uint32_t page)
{
if (page >= BootStartBootPage())
{
_bootdata.error = BootError::PageIsProtected;
return false;
}
return Flash::ErasePage(page);
}
BootData &BootloaderApp::GetBootData()
{
return _bootdata;
}
void BootloaderApp::InitBootData()
{
#if defined(UID_BASE)
uint32_t *uid = reinterpret_cast<uint32_t *>(UID_BASE);
#else
uint32_t *uid = reinterpret_cast<uint32_t *>(0x1FFF7A10);
#endif
_bootdata.deviceId[0] = uid[0];
_bootdata.deviceId[1] = uid[1];
_bootdata.deviceId[2] = uid[2];
_bootdata.deviceId[3] = 0;
_bootdata.pageCount = Flash::PageCount();
_bootdata.applicationPageCount = BootStartBootPage();
_bootdata.totalFlashSizeLo = (uint16_t)(Flash::TotalSize() & 0xffff);
_bootdata.totalFlashSizeHi = (uint16_t)((Flash::TotalSize() >> 16) & 0xffff);
}
uint32_t BootloaderApp::BootStartAddress()
{
return (unsigned)&_stext;
}
uint32_t BootloaderApp::BootStartBootPage()
{
return Flash::AddrToPage(&_stext);
}
bool BootloaderApp::PageFull(uint32_t page)
{
unsigned *ptr = (unsigned *)Flash::PageAddress(page);
unsigned size = Flash::PageSize(page) / sizeof(unsigned);
return (ptr[0] != 0xffffffff) && (ptr[size - 1] != 0xffffffff);
}
bool BootloaderApp::PageEmpty(uint32_t page)
{
unsigned *ptr = (unsigned *)Flash::PageAddress(page);
unsigned size = Flash::PageSize(page) / sizeof(unsigned);
return (ptr[0] == 0xffffffff) && (ptr[size - 1] == 0xffffffff);
}
bool BootloaderApp::IsRegionClear(uint32_t address, size_t size)
{
uint8_t *end = (uint8_t *)(address + size);
for (uint8_t *ptr = (uint8_t *)address; ptr < end; ptr++)
{
if (*ptr != 0xff)
return 0;
}
return 1;
}
bool BootloaderApp::FindEntryPoint(uint32_t *sp, uint32_t *entry)
{
AppEntryPoint entryPoint;
if (!entryPointStorage.Read(entryPoint))
{
_bootdata.error = BootError::EntryPointNotFound;
return false;
}
if(entryPoint.appEntryAddr == 0 || entryPoint.appEntryAddr == 0xffffffff)
{
_bootdata.error = BootError::EntryPointNotFound;
return false;
}
#if defined(_DEBUG) && _DEBUG
cout << "Entry point found: 0x" << hex << entryPoint.appEntryAddr << "\r\n";
#endif
*sp = entryPoint.appStackPointer;
*entry = entryPoint.appEntryAddr;
return true;
}
void BootloaderApp::SetVectTable(const void *table)
{
__disable_irq();
SCB->VTOR = reinterpret_cast<uint32_t>(table);
__DSB();
__enable_irq();
}
typedef void (*AppEntryT)();
volatile AppEntryT AppEntry;
bool BootloaderApp::RunApplication()
{
uint32_t sp = 0xffffffff, entry = 0xffffffff;
if (FindEntryPoint(&sp, &entry))
{
__disable_irq();
AppEntry = (AppEntryT)(entry);
BootDeviceClock::Reset();
Clock::SysClock::SelectClockSource(Clock::SysClockSource::Internal);
__set_MSP(sp);
SetVectTable((const void *)FLASH_BASE);
__enable_irq();
AppEntry();
}
return false;
}
void BootloaderApp::Reset()
{
NVIC_SystemReset();
}