1 /*
2  * Copyright (c) 2023, The TrustedFirmware-M Contributors. All rights reserved.
3  *
4  * SPDX-License-Identifier: BSD-3-Clause
5  *
6  */
7 
8 #ifndef CC3XX_DEV_H
9 #define CC3XX_DEV_H
10 
11 #include <stdint.h>
12 #include "cc3xx_config.h"
13 #include "cc3xx_reg_defs.h"
14 
15 #ifdef __cplusplus
16 extern "C" {
17 #endif
18 
19 #define P_CC3XX ((struct _cc3xx_reg_map_t * const)CC3XX_CONFIG_BASE_ADDRESS)
20 
21 #ifdef __cplusplus
22 }
23 #endif
24 
25 #endif /* CC3XX_DEV_H */
26