1 /*
2  * Copyright (c) 2001-2019, Arm Limited and Contributors. All rights reserved.
3  *
4  * SPDX-License-Identifier: BSD-3-Clause
5  */
6 
7 /*!
8  @addtogroup cc_general_defs
9  @{
10  */
11 
12 /*!
13  @file
14  @brief This file contains general definitions for CryptoCell APIs.
15  */
16 
17 
18 
19 #ifndef _CC_ADDRESS_DEFS_H
20 #define _CC_ADDRESS_DEFS_H
21 
22 #ifdef __cplusplus
23 extern "C"
24 {
25 #endif
26 
27 
28 /************************ Defines ******************************/
29 
30 /* Address types within CryptoCell. */
31 /*! The SRAM address type. */
32 typedef uint32_t CCSramAddr_t;
33 /*! The DMA address type. */
34 typedef uint32_t CCDmaAddr_t;
35 
36 #ifdef __cplusplus
37 }
38 #endif
39 
40 /*!
41 @}
42  */
43 
44 #endif
45 
46