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_sram_map
9  @{
10  */
11 
12 /*!
13  @file
14  @brief This file contains internal SRAM mapping definitions.
15  */
16 
17 #ifndef _CC_SRAM_MAP_H_
18 #define _CC_SRAM_MAP_H_
19 
20 #ifdef __cplusplus
21 extern "C"
22 {
23 #endif
24 
25 /*! The base address of the PKA in the PKA SRAM. */
26 #define CC_SRAM_PKA_BASE_ADDRESS                                0x0
27 /*! The size of the PKA SRAM in KB. */
28 #define CC_PKA_SRAM_SIZE_IN_KBYTES                6
29 
30 /*! The SRAM address of the RND. */
31 #define CC_SRAM_RND_HW_DMA_ADDRESS                              0x0
32 /*! Addresses 0K-2KB in SRAM. Reserved for RND operations. */
33 #define CC_SRAM_RND_MAX_SIZE                                    0x800
34 /*! The maximal size of SRAM. */
35 #define CC_SRAM_MAX_SIZE                                        0x1000
36 
37 #ifdef __cplusplus
38 }
39 #endif
40 
41 /*!
42  @}
43  */
44 #endif /*_CC_SRAM_MAP_H_*/
45 
46