b.liu | e958203 | 2025-04-17 19:18:16 +0800 | [diff] [blame^] | 1 | #ifndef h_asr_rng_h |
2 | #define h_asr_rng_h | ||||
3 | |||||
4 | #include <common.h> | ||||
5 | |||||
6 | struct random_data { | ||||
7 | volatile uint32_t random_base; | ||||
8 | uint32_t random_num_saved; | ||||
9 | }; | ||||
10 | |||||
11 | uint32_t hw_get_random_32(void); | ||||
12 | void geu_random_test(void); | ||||
13 | #endif |