2022-01-05 16:10:18 +00:00
|
|
|
#include <furi_hal.h>
|
2021-09-10 02:19:02 +00:00
|
|
|
|
2021-11-10 09:53:00 +00:00
|
|
|
#include <stm32wbxx_ll_cortex.h>
|
|
|
|
|
2021-11-12 13:04:35 +00:00
|
|
|
#include <fatfs.h>
|
|
|
|
|
|
|
|
#define TAG "FuriHal"
|
|
|
|
|
2022-04-13 20:50:25 +00:00
|
|
|
void furi_hal_init_early() {
|
|
|
|
furi_hal_clock_init_early();
|
|
|
|
furi_hal_delay_init();
|
|
|
|
|
|
|
|
furi_hal_resources_init_early();
|
|
|
|
|
|
|
|
furi_hal_spi_init_early();
|
|
|
|
|
|
|
|
furi_hal_i2c_init_early();
|
|
|
|
furi_hal_light_init();
|
|
|
|
|
|
|
|
furi_hal_rtc_init_early();
|
|
|
|
}
|
|
|
|
|
|
|
|
void furi_hal_deinit_early() {
|
|
|
|
furi_hal_rtc_deinit_early();
|
|
|
|
|
|
|
|
furi_hal_i2c_deinit_early();
|
|
|
|
furi_hal_spi_deinit_early();
|
|
|
|
|
|
|
|
furi_hal_resources_deinit_early();
|
|
|
|
|
|
|
|
furi_hal_clock_deinit_early();
|
|
|
|
}
|
|
|
|
|
2021-09-10 02:19:02 +00:00
|
|
|
void furi_hal_init() {
|
2022-04-13 20:50:25 +00:00
|
|
|
furi_hal_clock_init();
|
|
|
|
furi_hal_console_init();
|
2021-12-14 22:39:59 +00:00
|
|
|
furi_hal_rtc_init();
|
2022-04-13 20:50:25 +00:00
|
|
|
|
2021-09-10 02:19:02 +00:00
|
|
|
furi_hal_interrupt_init();
|
2022-04-13 20:50:25 +00:00
|
|
|
|
|
|
|
furi_hal_flash_init();
|
2021-09-10 02:19:02 +00:00
|
|
|
|
2022-03-30 15:23:40 +00:00
|
|
|
furi_hal_resources_init();
|
2021-11-12 13:04:35 +00:00
|
|
|
FURI_LOG_I(TAG, "GPIO OK");
|
2021-09-10 02:19:02 +00:00
|
|
|
|
|
|
|
furi_hal_version_init();
|
|
|
|
|
|
|
|
furi_hal_spi_init();
|
|
|
|
|
2022-03-25 10:33:01 +00:00
|
|
|
furi_hal_ibutton_init();
|
|
|
|
FURI_LOG_I(TAG, "iButton OK");
|
2022-03-23 17:59:20 +00:00
|
|
|
furi_hal_speaker_init();
|
|
|
|
FURI_LOG_I(TAG, "Speaker OK");
|
2021-09-15 09:59:49 +00:00
|
|
|
|
|
|
|
furi_hal_crypto_init();
|
2022-04-13 20:50:25 +00:00
|
|
|
furi_hal_crc_init(true);
|
2021-09-10 02:19:02 +00:00
|
|
|
|
2022-04-14 11:28:59 +00:00
|
|
|
// USB
|
2022-04-13 20:50:25 +00:00
|
|
|
#ifndef FURI_RAM_EXEC
|
2021-10-06 09:24:09 +00:00
|
|
|
furi_hal_usb_init();
|
2021-11-12 13:04:35 +00:00
|
|
|
FURI_LOG_I(TAG, "USB OK");
|
2022-04-13 20:50:25 +00:00
|
|
|
#endif
|
2021-09-10 02:19:02 +00:00
|
|
|
|
|
|
|
furi_hal_i2c_init();
|
|
|
|
|
|
|
|
// High Level
|
|
|
|
furi_hal_power_init();
|
|
|
|
furi_hal_light_init();
|
2022-04-13 20:50:25 +00:00
|
|
|
#ifndef FURI_RAM_EXEC
|
2021-09-10 02:19:02 +00:00
|
|
|
furi_hal_vibro_init();
|
|
|
|
furi_hal_subghz_init();
|
|
|
|
furi_hal_nfc_init();
|
|
|
|
furi_hal_rfid_init();
|
2022-04-13 20:50:25 +00:00
|
|
|
#endif
|
2021-09-15 14:40:09 +00:00
|
|
|
furi_hal_bt_init();
|
2021-10-21 14:46:36 +00:00
|
|
|
furi_hal_compress_icon_init();
|
2021-09-10 02:19:02 +00:00
|
|
|
|
2021-12-14 22:39:59 +00:00
|
|
|
// FreeRTOS glue
|
|
|
|
furi_hal_os_init();
|
|
|
|
|
2021-11-12 13:04:35 +00:00
|
|
|
// FatFS driver initialization
|
|
|
|
MX_FATFS_Init();
|
|
|
|
FURI_LOG_I(TAG, "FATFS OK");
|
|
|
|
|
2021-11-10 09:53:00 +00:00
|
|
|
// Partial null pointer dereference protection
|
|
|
|
LL_MPU_Disable();
|
|
|
|
LL_MPU_ConfigRegion(
|
2022-01-05 16:10:18 +00:00
|
|
|
LL_MPU_REGION_NUMBER0,
|
|
|
|
0x00,
|
|
|
|
0x0,
|
|
|
|
LL_MPU_REGION_SIZE_1MB | LL_MPU_REGION_PRIV_RO_URO | LL_MPU_ACCESS_BUFFERABLE |
|
|
|
|
LL_MPU_ACCESS_CACHEABLE | LL_MPU_ACCESS_SHAREABLE | LL_MPU_TEX_LEVEL1 |
|
|
|
|
LL_MPU_INSTRUCTION_ACCESS_ENABLE);
|
2021-11-10 09:53:00 +00:00
|
|
|
LL_MPU_Enable(LL_MPU_CTRL_PRIVILEGED_DEFAULT);
|
2021-09-10 02:19:02 +00:00
|
|
|
}
|
2022-02-18 19:53:46 +00:00
|
|
|
|
2022-04-13 20:50:25 +00:00
|
|
|
void furi_hal_switch(void* address) {
|
|
|
|
__set_BASEPRI(0);
|
|
|
|
asm volatile("ldr r3, [%0] \n"
|
|
|
|
"msr msp, r3 \n"
|
|
|
|
"ldr r3, [%1] \n"
|
|
|
|
"mov pc, r3 \n"
|
|
|
|
:
|
|
|
|
: "r"(address), "r"(address + 0x4)
|
|
|
|
: "r3");
|
2022-03-23 17:59:20 +00:00
|
|
|
}
|