2018-02-26 13:06:10 +00:00
|
|
|
/*
|
2019-06-17 18:27:55 +00:00
|
|
|
* This file is part of the Trezor project, https://trezor.io/
|
2018-02-26 13:06:10 +00:00
|
|
|
*
|
|
|
|
* Copyright (c) SatoshiLabs
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2017-03-21 00:41:49 +00:00
|
|
|
#ifndef __TREZORHAL_COMMON_H__
|
|
|
|
#define __TREZORHAL_COMMON_H__
|
|
|
|
|
2019-06-07 18:16:40 +00:00
|
|
|
#include <stddef.h>
|
2017-03-29 18:50:45 +00:00
|
|
|
#include <stdint.h>
|
2017-10-26 21:51:39 +00:00
|
|
|
#include "secbool.h"
|
2017-03-29 18:50:45 +00:00
|
|
|
|
2024-06-10 14:57:59 +00:00
|
|
|
#include "error_handling.h"
|
2023-06-23 14:50:13 +00:00
|
|
|
#include "platform.h"
|
|
|
|
|
2019-02-21 08:52:28 +00:00
|
|
|
#ifndef MIN_8bits
|
2019-03-29 15:26:02 +00:00
|
|
|
#define MIN_8bits(a, b) \
|
|
|
|
({ \
|
|
|
|
typeof(a) _a = (a); \
|
|
|
|
typeof(b) _b = (b); \
|
|
|
|
_a < _b ? (_a & 0xFF) : (_b & 0xFF); \
|
|
|
|
})
|
2019-02-21 08:52:28 +00:00
|
|
|
#endif
|
2018-02-22 19:35:32 +00:00
|
|
|
#ifndef MIN
|
2019-03-29 15:26:02 +00:00
|
|
|
#define MIN(a, b) \
|
|
|
|
({ \
|
|
|
|
typeof(a) _a = (a); \
|
|
|
|
typeof(b) _b = (b); \
|
|
|
|
_a < _b ? _a : _b; \
|
|
|
|
})
|
2018-02-22 19:35:32 +00:00
|
|
|
#endif
|
|
|
|
#ifndef MAX
|
2019-03-29 15:26:02 +00:00
|
|
|
#define MAX(a, b) \
|
|
|
|
({ \
|
|
|
|
typeof(a) _a = (a); \
|
|
|
|
typeof(b) _b = (b); \
|
|
|
|
_a > _b ? _a : _b; \
|
|
|
|
})
|
2018-02-22 19:35:32 +00:00
|
|
|
#endif
|
|
|
|
|
2023-03-24 10:24:34 +00:00
|
|
|
void __attribute__((noreturn)) trezor_shutdown(void);
|
2021-06-21 14:19:25 +00:00
|
|
|
|
2017-10-05 15:31:05 +00:00
|
|
|
void hal_delay(uint32_t ms);
|
2022-06-08 08:31:23 +00:00
|
|
|
uint32_t hal_ticks_ms();
|
2023-09-21 14:11:53 +00:00
|
|
|
void hal_delay_us(uint16_t delay_us);
|
2017-10-05 15:31:05 +00:00
|
|
|
|
2019-01-25 17:33:25 +00:00
|
|
|
void collect_hw_entropy(void);
|
2019-02-18 16:27:31 +00:00
|
|
|
#define HW_ENTROPY_LEN (12 + 32)
|
2019-01-25 17:33:25 +00:00
|
|
|
extern uint8_t HW_ENTROPY_DATA[HW_ENTROPY_LEN];
|
|
|
|
|
2024-05-03 11:49:48 +00:00
|
|
|
// Invalidates firmware on the device
|
|
|
|
// Note: only works when write access to firmware area is enabled by MPU
|
|
|
|
void invalidate_firmware(void);
|
|
|
|
|
2017-03-21 00:41:49 +00:00
|
|
|
#endif
|