mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-24 05:23:06 +00:00
3de856f8d5
* FuriHal: add bus abstraction and port some subsystem to it * Make PVS happy, cleanup code * Update API symbols for f18 * F18: backport bus changes from f7 * Revert to STOP2 sleep mode * Fix downgrading the firmware via updater * Port iButton TIM1 to furi_hal_bus * Port Infrared TIM1 and TIM2 to furi_hal_bus * Just enable the timer bus * Port furi_hal_pwm to bus API * Fix include statement * Port furi_hal_rfid to bus API * Port furi_hal_subghz and others to bus API * Remove unneeded include * Improve furi_hal_infrared defines * Reset LPTIM1 via furi_hal_bus API * Crash when trying to enable an already enabled peripheral * Better defines * Improved checks * Lots of macro wrappers * Copy spi changes for f18 * Fix crashes in LFRFID system * Fix crashes in NFC system * Improve comments * Create FuriHalBus.md * Update FuriHalBus.md * Fix crash when launching updater * Documentation: couple small fixes in FuriHalBus * FuriHal: fix copypaste in furi_hal_rfid_tim_reset * FuriHal: reset radio core related peripherals on restart * FuriHalBus: is enabled routine and bug fix for uart * RFID HAL: accomodate furi hal bus Co-authored-by: Georgii Surkov <georgii.surkov@outlook.com> Co-authored-by: Georgii Surkov <37121527+gsurkov@users.noreply.github.com> Co-authored-by: SG <who.just.the.doctor@gmail.com>
80 lines
1.9 KiB
C
80 lines
1.9 KiB
C
#include <furi_hal_random.h>
|
|
#include <furi_hal_bus.h>
|
|
#include <furi.h>
|
|
|
|
#include <stm32wbxx_ll_rng.h>
|
|
#include <stm32wbxx_ll_rcc.h>
|
|
#include <stm32wbxx_ll_hsem.h>
|
|
|
|
#include <hw_conf.h>
|
|
|
|
#define TAG "FuriHalRandom"
|
|
|
|
static uint32_t furi_hal_random_read_rng() {
|
|
while(LL_RNG_IsActiveFlag_CECS(RNG) && LL_RNG_IsActiveFlag_SECS(RNG) &&
|
|
!LL_RNG_IsActiveFlag_DRDY(RNG)) {
|
|
/* Error handling as described in RM0434, pg. 582-583 */
|
|
if(LL_RNG_IsActiveFlag_CECS(RNG)) {
|
|
/* Clock error occurred */
|
|
LL_RNG_ClearFlag_CEIS(RNG);
|
|
}
|
|
|
|
if(LL_RNG_IsActiveFlag_SECS(RNG)) {
|
|
/* Noise source error occurred */
|
|
LL_RNG_ClearFlag_SEIS(RNG);
|
|
|
|
for(uint32_t i = 0; i < 12; ++i) {
|
|
const volatile uint32_t discard = LL_RNG_ReadRandData32(RNG);
|
|
UNUSED(discard);
|
|
}
|
|
}
|
|
}
|
|
|
|
return LL_RNG_ReadRandData32(RNG);
|
|
}
|
|
|
|
void furi_hal_random_init() {
|
|
furi_hal_bus_enable(FuriHalBusRNG);
|
|
LL_RCC_SetRNGClockSource(LL_RCC_RNG_CLKSOURCE_CLK48);
|
|
}
|
|
|
|
uint32_t furi_hal_random_get() {
|
|
while(LL_HSEM_1StepLock(HSEM, CFG_HW_RNG_SEMID))
|
|
;
|
|
LL_RNG_Enable(RNG);
|
|
|
|
const uint32_t random_val = furi_hal_random_read_rng();
|
|
|
|
LL_RNG_Disable(RNG);
|
|
;
|
|
LL_HSEM_ReleaseLock(HSEM, CFG_HW_RNG_SEMID, 0);
|
|
|
|
return random_val;
|
|
}
|
|
|
|
void furi_hal_random_fill_buf(uint8_t* buf, uint32_t len) {
|
|
while(LL_HSEM_1StepLock(HSEM, CFG_HW_RNG_SEMID))
|
|
;
|
|
LL_RNG_Enable(RNG);
|
|
|
|
for(uint32_t i = 0; i < len; i += 4) {
|
|
const uint32_t random_val = furi_hal_random_read_rng();
|
|
uint8_t len_cur = ((i + 4) < len) ? (4) : (len - i);
|
|
memcpy(&buf[i], &random_val, len_cur);
|
|
}
|
|
|
|
LL_RNG_Disable(RNG);
|
|
LL_HSEM_ReleaseLock(HSEM, CFG_HW_RNG_SEMID, 0);
|
|
}
|
|
|
|
void srand(unsigned seed) {
|
|
UNUSED(seed);
|
|
}
|
|
|
|
int rand() {
|
|
return (furi_hal_random_get() & RAND_MAX);
|
|
}
|
|
|
|
long random() {
|
|
return (furi_hal_random_get() & RAND_MAX);
|
|
}
|