2017-03-21 00:41:49 +00:00
|
|
|
#ifndef __TREZORHAL_COMMON_H__
|
|
|
|
#define __TREZORHAL_COMMON_H__
|
|
|
|
|
2017-03-29 18:50:45 +00:00
|
|
|
#include <stdint.h>
|
|
|
|
|
2017-03-30 14:47:02 +00:00
|
|
|
#define BOOTLOADER_START 0x08000000
|
|
|
|
#define LOADER_START 0x08010000
|
|
|
|
#define FIRMWARE_START 0x08020000
|
2017-03-31 22:22:24 +00:00
|
|
|
#define HEADER_SIZE 0x200
|
2017-03-30 14:47:02 +00:00
|
|
|
|
2017-03-23 15:22:58 +00:00
|
|
|
void periph_init(void);
|
2017-03-21 00:41:49 +00:00
|
|
|
|
|
|
|
void __attribute__((noreturn)) nlr_jump_fail(void *val);
|
|
|
|
|
|
|
|
void __attribute__((noreturn)) __fatal_error(const char *msg);
|
|
|
|
|
2017-03-29 18:50:45 +00:00
|
|
|
void jump_to(uint32_t address);
|
|
|
|
|
2017-03-21 00:41:49 +00:00
|
|
|
#endif
|