2017-03-20 14:41:21 +00:00
|
|
|
#include STM32_HAL_H
|
|
|
|
|
2017-04-01 17:58:58 +00:00
|
|
|
#include <string.h>
|
|
|
|
|
2017-03-21 00:41:49 +00:00
|
|
|
#include "common.h"
|
2017-03-20 14:41:21 +00:00
|
|
|
#include "display.h"
|
2017-04-01 10:57:14 +00:00
|
|
|
#include "image.h"
|
2017-03-20 14:41:21 +00:00
|
|
|
|
2017-03-21 15:06:22 +00:00
|
|
|
#define LOADER_FGCOLOR 0xFFFF
|
|
|
|
#define LOADER_BGCOLOR 0x0000
|
|
|
|
|
|
|
|
#define LOADER_PRINT(X) do { display_print(X, -1); display_print_out(LOADER_FGCOLOR, LOADER_BGCOLOR); } while(0)
|
|
|
|
#define LOADER_PRINTLN(X) do { display_print(X "\n", -1); display_print_out(LOADER_FGCOLOR, LOADER_BGCOLOR); } while(0)
|
|
|
|
|
2017-03-21 14:56:50 +00:00
|
|
|
void pendsv_isr_handler(void) {
|
|
|
|
__fatal_error("pendsv");
|
2017-03-20 14:41:21 +00:00
|
|
|
}
|
|
|
|
|
2017-04-01 18:12:48 +00:00
|
|
|
void display_vendor(const uint8_t *vimg, const char *vstr, uint32_t vstr_len)
|
2017-04-01 17:58:58 +00:00
|
|
|
{
|
2017-04-01 18:12:48 +00:00
|
|
|
display_clear();
|
2017-04-01 17:58:58 +00:00
|
|
|
if (memcmp(vimg, "TOIf", 4) != 0) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
uint16_t w = *(uint16_t *)(vimg + 4);
|
|
|
|
uint16_t h = *(uint16_t *)(vimg + 6);
|
2017-04-01 18:12:48 +00:00
|
|
|
if (w != 120 || h != 120) {
|
|
|
|
return;
|
|
|
|
}
|
2017-04-01 17:58:58 +00:00
|
|
|
uint32_t datalen = *(uint32_t *)(vimg + 8);
|
2017-04-01 18:12:48 +00:00
|
|
|
display_image((DISPLAY_RESX - w) / 2, (DISPLAY_RESY - h) / 2, w, h, vimg + 12, datalen);
|
|
|
|
display_text_center(DISPLAY_RESX / 2, DISPLAY_RESY * 3 / 4 + 20, vstr, vstr_len, FONT_BOLD, 0xFFFF, 0x0000);
|
|
|
|
display_refresh();
|
2017-04-01 17:58:58 +00:00
|
|
|
}
|
|
|
|
|
2017-04-01 00:32:05 +00:00
|
|
|
void check_and_jump(void)
|
|
|
|
{
|
|
|
|
LOADER_PRINTLN("checking firmware");
|
2017-04-01 17:24:41 +00:00
|
|
|
|
|
|
|
vendor_header vhdr;
|
|
|
|
if (!vendor_parse_header((const uint8_t *)(FIRMWARE_START), &vhdr)) {
|
|
|
|
LOADER_PRINTLN("invalid vendor header");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (!vendor_check_signature((const uint8_t *)(FIRMWARE_START))) {
|
|
|
|
LOADER_PRINTLN("unsigned vendor header");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-04-01 20:30:10 +00:00
|
|
|
if (image_check_signature((const uint8_t *)(FIRMWARE_START + vhdr.hdrlen), &vhdr)) {
|
2017-04-01 10:57:14 +00:00
|
|
|
LOADER_PRINTLN("valid firmware image");
|
2017-04-01 18:12:48 +00:00
|
|
|
display_vendor(vhdr.vimg, (const char *)vhdr.vstr, vhdr.vstr_len);
|
2017-04-01 20:30:10 +00:00
|
|
|
HAL_Delay(1000); // TODO: remove?
|
2017-04-01 10:57:14 +00:00
|
|
|
LOADER_PRINTLN("JUMP!");
|
2017-04-01 17:24:41 +00:00
|
|
|
jump_to(FIRMWARE_START + vhdr.hdrlen + HEADER_SIZE);
|
2017-04-01 00:32:05 +00:00
|
|
|
} else {
|
2017-04-01 10:57:14 +00:00
|
|
|
LOADER_PRINTLN("invalid firmware image");
|
2017-04-01 00:32:05 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-23 15:22:58 +00:00
|
|
|
int main(void)
|
2017-03-20 14:41:21 +00:00
|
|
|
{
|
2017-03-31 22:22:24 +00:00
|
|
|
SCB->VTOR = LOADER_START + HEADER_SIZE;
|
2017-03-23 15:22:58 +00:00
|
|
|
periph_init();
|
2017-03-20 14:41:21 +00:00
|
|
|
|
|
|
|
display_init();
|
|
|
|
display_clear();
|
|
|
|
display_backlight(255);
|
|
|
|
|
2017-04-01 00:32:05 +00:00
|
|
|
LOADER_PRINTLN("TREZOR Loader");
|
|
|
|
LOADER_PRINTLN("=============");
|
|
|
|
LOADER_PRINTLN("starting loader");
|
|
|
|
|
|
|
|
check_and_jump();
|
2017-03-29 18:50:45 +00:00
|
|
|
|
2017-04-01 00:32:05 +00:00
|
|
|
__fatal_error("halt");
|
2017-03-20 14:41:21 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|