trezor-core/micropython/bootloader/main.c

161 lines
4.3 KiB
C
Raw Normal View History

#include STM32_HAL_H
2017-02-11 07:47:36 -08:00
#include <string.h>
2016-10-04 09:01:48 -07:00
#include "crypto.h"
#include "common.h"
#include "display.h"
2017-02-11 07:47:36 -08:00
#include "sdcard.h"
#define BOOTLOADER_FGCOLOR 0xFFFF
#define BOOTLOADER_BGCOLOR 0x0000
#define BOOTLOADER_PRINT(X) do { display_print(X, -1); display_print_out(BOOTLOADER_FGCOLOR, BOOTLOADER_BGCOLOR); } while(0)
#define BOOTLOADER_PRINTLN(X) do { display_print(X "\n", -1); display_print_out(BOOTLOADER_FGCOLOR, BOOTLOADER_BGCOLOR); } while(0)
2017-03-18 04:02:39 -07:00
void pendsv_isr_handler(void) {
__fatal_error("pendsv");
2017-03-18 04:02:39 -07:00
}
2017-02-17 06:49:43 -08:00
bool check_sdcard(void)
2017-02-11 07:47:36 -08:00
{
2017-02-17 06:49:43 -08:00
BOOTLOADER_PRINTLN("checking for SD card");
if (!sdcard_is_present()) {
BOOTLOADER_PRINTLN("no SD card found");
return false;
}
BOOTLOADER_PRINTLN("SD card found");
2017-02-11 07:47:36 -08:00
sdcard_power_on();
uint64_t cap = sdcard_get_capacity_in_bytes();
if (cap < 1024 * 1024) {
2017-02-17 06:49:43 -08:00
BOOTLOADER_PRINTLN("SD card too small");
2017-02-11 07:47:36 -08:00
sdcard_power_off();
2017-02-17 06:49:43 -08:00
return false;
2017-02-11 07:47:36 -08:00
}
uint8_t buf[SDCARD_BLOCK_SIZE] __attribute__((aligned(4)));
sdcard_read_blocks(buf, 0, 1);
2017-02-17 06:49:43 -08:00
sdcard_power_off();
2017-02-19 08:48:28 -08:00
if (parse_header(buf, NULL, NULL, NULL)) {
2017-02-17 06:49:43 -08:00
BOOTLOADER_PRINTLN("SD card header is valid");
return true;
} else {
BOOTLOADER_PRINTLN("SD card header is invalid");
return false;
2017-02-11 07:47:36 -08:00
}
2017-02-17 06:49:43 -08:00
}
bool copy_sdcard(void)
2017-02-17 06:49:43 -08:00
{
BOOTLOADER_PRINT("erasing flash ");
2017-02-11 07:47:36 -08:00
2017-03-21 08:06:22 -07:00
// erase flash (except bootloader)
2017-02-11 07:47:36 -08:00
HAL_FLASH_Unlock();
FLASH_EraseInitTypeDef EraseInitStruct;
__HAL_FLASH_CLEAR_FLAG(FLASH_FLAG_EOP | FLASH_FLAG_OPERR | FLASH_FLAG_WRPERR |
FLASH_FLAG_PGAERR | FLASH_FLAG_PGPERR | FLASH_FLAG_PGSERR);
EraseInitStruct.TypeErase = TYPEERASE_SECTORS;
EraseInitStruct.VoltageRange = VOLTAGE_RANGE_3; // voltage range needs to be 2.7V to 3.6V
EraseInitStruct.NbSectors = 1;
uint32_t SectorError = 0;
for (int i = 2; i < 12; i++) {
EraseInitStruct.Sector = i;
if (HAL_FLASHEx_Erase(&EraseInitStruct, &SectorError) != HAL_OK) {
HAL_FLASH_Lock();
BOOTLOADER_PRINTLN(" failed");
return false;
}
BOOTLOADER_PRINT(".");
2017-02-11 07:47:36 -08:00
}
BOOTLOADER_PRINTLN(" done");
2017-02-11 07:47:36 -08:00
2017-03-21 08:06:22 -07:00
BOOTLOADER_PRINTLN("copying new loader from SD card");
2017-02-17 06:49:43 -08:00
sdcard_power_on();
2017-03-21 08:06:22 -07:00
// copy loader from SD card to Flash
2017-02-17 06:49:43 -08:00
uint32_t buf[SDCARD_BLOCK_SIZE / sizeof(uint32_t)];
sdcard_read_blocks((uint8_t *)buf, 0, 1);
2017-02-17 06:49:43 -08:00
uint32_t codelen;
2017-02-19 08:48:28 -08:00
if (!parse_header((uint8_t *)buf, &codelen, NULL, NULL)) {
BOOTLOADER_PRINTLN("wrong header");
return false;
}
for (int i = 0; i < codelen / SDCARD_BLOCK_SIZE; i++) {
2017-02-17 06:49:43 -08:00
sdcard_read_blocks((uint8_t *)buf, i, 1);
for (int j = 0; j < SDCARD_BLOCK_SIZE / sizeof(uint32_t); j++) {
2017-03-21 08:06:22 -07:00
if (HAL_FLASH_Program(TYPEPROGRAM_WORD, LOADER_START + i * SDCARD_BLOCK_SIZE + j * sizeof(uint32_t), buf[j]) != HAL_OK) {
BOOTLOADER_PRINTLN("copy failed");
sdcard_power_off();
HAL_FLASH_Lock();
return false;
2017-02-17 06:49:43 -08:00
}
2017-02-11 07:47:36 -08:00
}
}
2017-02-17 06:49:43 -08:00
sdcard_power_off();
2017-02-17 06:49:43 -08:00
HAL_FLASH_Lock();
BOOTLOADER_PRINTLN("done");
2016-10-03 07:17:49 -07:00
return true;
2017-02-17 06:49:43 -08:00
}
2016-10-04 09:01:48 -07:00
2017-02-17 06:49:43 -08:00
int main(void)
{
SCB->VTOR = BOOTLOADER_START;
2017-02-11 07:47:36 -08:00
periph_init();
sdcard_init();
display_init();
display_clear();
display_backlight(255);
2017-02-17 06:49:43 -08:00
BOOTLOADER_PRINTLN("TREZOR Bootloader");
BOOTLOADER_PRINTLN("=================");
2017-03-21 08:06:22 -07:00
BOOTLOADER_PRINTLN("starting bootloader");
2017-02-11 07:47:36 -08:00
// TODO: remove debug
2017-03-30 07:50:39 -07:00
BOOTLOADER_PRINTLN("waiting 1 second");
HAL_Delay(1000);
BOOTLOADER_PRINTLN("jumping to loader");
jump_to(LOADER_START + HEADER_SIZE);
2017-03-30 07:50:39 -07:00
// end
2017-02-17 06:49:43 -08:00
if (check_sdcard()) {
if (!copy_sdcard()) {
__fatal_error("halt");
}
2017-02-17 06:49:43 -08:00
}
2017-02-16 04:48:28 -08:00
2017-03-21 08:06:22 -07:00
BOOTLOADER_PRINTLN("checking loader");
if (parse_header((const uint8_t *)LOADER_START, NULL, NULL, NULL)) {
BOOTLOADER_PRINTLN("valid loader header");
if (check_signature((const uint8_t *)LOADER_START)) {
BOOTLOADER_PRINTLN("valid loader signature");
2017-02-17 06:49:43 -08:00
BOOTLOADER_PRINTLN("JUMP!");
jump_to(LOADER_START + HEADER_SIZE);
2017-02-17 06:49:43 -08:00
} else {
2017-03-21 08:06:22 -07:00
BOOTLOADER_PRINTLN("invalid loader signature");
2017-02-17 06:49:43 -08:00
}
} else {
2017-03-21 08:06:22 -07:00
BOOTLOADER_PRINTLN("invalid loader header");
2017-02-11 07:47:36 -08:00
}
2016-10-03 07:17:49 -07:00
__fatal_error("halt");
return 0;
}