xref: /rk3399_ARM-atf/include/drivers/marvell/trng.h (revision 06f3c7058c42a9f1a9f7df75ea2de71a000855e8)
1 /*
2  * Copyright (c) 2025, Marvell Technology Group Ltd. All rights reserved.
3  *
4  * SPDX-License-Identifier: BSD-3-Clause
5  */
6 
7 #ifndef __TRNG_H__
8 #define __TRNG_H__
9 
10 #include <stdint.h>
11 
12 int mv_trng_get_random32(uint32_t *rand, uint8_t num);
13 
14 #endif /* __TRNG_H__ */
15