trezor-core/embed/boardloader/main.c

162 lines
4.6 KiB
C
Raw Normal View History

2017-02-11 07:47:36 -08:00
#include <string.h>
#include "common.h"
#include "display.h"
#include "image.h"
2017-03-28 04:04:54 -07:00
#include "flash.h"
2017-02-11 07:47:36 -08:00
#include "sdcard.h"
#include "version.h"
2017-04-10 10:24:21 -07:00
#define IMAGE_MAGIC 0x425A5254 // TRZB
#define IMAGE_MAXSIZE (1 * 64 * 1024 + 7 * 128 * 1024)
void pendsv_isr_handler(void) {
__fatal_error("pendsv", __FILE__, __LINE__, __FUNCTION__);
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
if (!sdcard_is_present()) {
return false;
}
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-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
}
uint32_t buf[SDCARD_BLOCK_SIZE / sizeof(uint32_t)];
2017-02-11 07:47:36 -08:00
sdcard_read_blocks(buf, 0, 1);
2017-02-17 06:49:43 -08:00
sdcard_power_off();
if (image_parse_header((const uint8_t *)buf, IMAGE_MAGIC, IMAGE_MAXSIZE, NULL)) {
2017-02-17 06:49:43 -08:00
return true;
} else {
return false;
2017-02-11 07:47:36 -08:00
}
2017-02-17 06:49:43 -08:00
}
static void progress_callback(uint16_t val) {
2017-06-20 08:32:21 -07:00
display_printf(".");
}
bool copy_sdcard(void)
2017-02-17 06:49:43 -08:00
{
2017-10-06 02:11:59 -07:00
display_backlight(255);
display_printf("erasing flash ");
2017-02-11 07:47:36 -08:00
2017-04-10 10:11:44 -07:00
// erase flash (except boardloader)
2017-09-27 02:08:46 -07:00
if (!flash_erase_sectors(FLASH_SECTOR_BOARDLOADER_END + 1, FLASH_SECTOR_FIRMWARE_END, progress_callback)) {
2017-06-20 08:32:21 -07:00
display_printf(" failed\n");
return false;
2017-02-11 07:47:36 -08:00
}
display_printf(" done\n");
2017-02-11 07:47:36 -08:00
display_printf("copying new bootloader from SD card\n");
2017-02-17 06:49:43 -08:00
sdcard_power_on();
2017-04-10 10:24:21 -07:00
// copy bootloader 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
image_header hdr;
if (!image_parse_header((const uint8_t *)buf, IMAGE_MAGIC, IMAGE_MAXSIZE, &hdr)) {
display_printf("invalid header\n");
sdcard_power_off();
return false;
}
2017-09-27 02:08:46 -07:00
if (!flash_unlock()) {
display_printf("could not unlock flash\n");
return false;
}
for (int i = 0; i < (HEADER_SIZE + hdr.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++) {
if (!flash_write_word(BOOTLOADER_START + i * SDCARD_BLOCK_SIZE + j * sizeof(uint32_t), buf[j])) {
display_printf("copy failed\n");
sdcard_power_off();
2017-09-27 02:08:46 -07:00
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-09-27 02:08:46 -07:00
flash_lock();
2017-02-17 06:49:43 -08:00
display_printf("done\n\n");
display_printf("Unplug the device and remove the SD card\n");
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
const uint8_t BOARDLOADER_KEY_M = 2;
const uint8_t BOARDLOADER_KEY_N = 3;
static const uint8_t * const BOARDLOADER_KEYS[] = {
2017-10-04 06:55:33 -07:00
#ifdef PRODUCTION_KEYS
2017-10-04 11:20:01 -07:00
(const uint8_t *)"\x0e\xb9\x85\x6b\xe9\xba\x7e\x97\x2c\x7f\x34\xea\xc1\xed\x9b\x6f\xd0\xef\xd1\x72\xec\x00\xfa\xf0\xc5\x89\x75\x9d\xa4\xdd\xfb\xa0",
2017-10-04 06:55:33 -07:00
(const uint8_t *)"\xac\x8a\xb4\x0b\x32\xc9\x86\x55\x79\x8f\xd5\xda\x5e\x19\x2b\xe2\x7a\x22\x30\x6e\xa0\x5c\x6d\x27\x7c\xdf\xf4\xa3\xf4\x12\x5c\xd8",
(const uint8_t *)"\xce\x0f\xcd\x12\x54\x3e\xf5\x93\x6c\xf2\x80\x49\x82\x13\x67\x07\x86\x3d\x17\x29\x5f\xac\xed\x72\xaf\x17\x1d\x6e\x65\x13\xff\x06",
#else
(const uint8_t *)"\xdb\x99\x5f\xe2\x51\x69\xd1\x41\xca\xb9\xbb\xba\x92\xba\xa0\x1f\x9f\x2e\x1e\xce\x7d\xf4\xcb\x2a\xc0\x51\x90\xf3\x7f\xcc\x1f\x9d",
(const uint8_t *)"\x21\x52\xf8\xd1\x9b\x79\x1d\x24\x45\x32\x42\xe1\x5f\x2e\xab\x6c\xb7\xcf\xfa\x7b\x6a\x5e\xd3\x00\x97\x96\x0e\x06\x98\x81\xdb\x12",
(const uint8_t *)"\x22\xfc\x29\x77\x92\xf0\xb6\xff\xc0\xbf\xcf\xdb\x7e\xdb\x0c\x0a\xa1\x4e\x02\x5a\x36\x5e\xc0\xe3\x42\xe8\x6e\x38\x29\xcb\x74\xb6",
2017-10-04 06:55:33 -07:00
#endif
};
void check_and_jump(void)
{
image_header hdr;
if (!image_parse_header((const uint8_t *)BOOTLOADER_START, IMAGE_MAGIC, IMAGE_MAXSIZE, &hdr)) {
display_printf("invalid bootloader header\n");
return;
}
if (image_check_signature((const uint8_t *)BOOTLOADER_START, &hdr, BOARDLOADER_KEY_M, BOARDLOADER_KEY_N, BOARDLOADER_KEYS)) {
2017-04-10 10:24:21 -07:00
jump_to(BOOTLOADER_START + HEADER_SIZE);
} else {
display_printf("invalid bootloader signature\n");
}
}
2017-02-17 06:49:43 -08:00
int main(void)
{
2017-10-11 03:58:36 -07:00
clear_peripheral_local_memory();
2017-02-11 07:47:36 -08:00
periph_init();
2017-03-28 04:04:54 -07:00
if (0 != display_init()) {
__fatal_error("display_init", __FILE__, __LINE__, __FUNCTION__);
2017-03-28 04:04:54 -07:00
}
if (0 != flash_init()) {
__fatal_error("flash_init", __FILE__, __LINE__, __FUNCTION__);
2017-03-28 04:04:54 -07:00
}
if (0 != sdcard_init()) {
__fatal_error("sdcard_init", __FILE__, __LINE__, __FUNCTION__);
2017-03-28 04:04:54 -07:00
}
2017-02-17 06:49:43 -08:00
if (check_sdcard()) {
if (!copy_sdcard()) {
__fatal_error("HALT", __FILE__, __LINE__, __FUNCTION__);
} else {
for (;;);
}
2017-02-17 06:49:43 -08:00
}
2017-02-16 04:48:28 -08:00
check_and_jump();
2016-10-03 07:17:49 -07:00
__fatal_error("HALT", __FILE__, __LINE__, __FUNCTION__);
return 0;
}