1 /*
2  * Copyright (c) 2021-2023, Arm Limited. All rights reserved.
3  *
4  * SPDX-License-Identifier: BSD-3-Clause
5  *
6  */
7 #include "crypto_hw.h"
8 
9 #include <stdint.h>
10 #include <stddef.h>
11 #include "region_defs.h"
12 #include "cc3xx_init.h"
13 #include "device_definition.h"
14 
crypto_hw_accelerator_init(void)15 int crypto_hw_accelerator_init(void)
16 {
17     return cc3xx_lowlevel_init();
18 }
19 
crypto_hw_accelerator_finish(void)20 int crypto_hw_accelerator_finish(void)
21 {
22     return cc3xx_lowlevel_uninit();
23 }
24 
fih_delay_init(void)25 int fih_delay_init(void)
26 {
27     return 0;
28 }
29