1 /*
2  * Copyright (c) 2001-2021, Arm Limited and Contributors. All rights reserved.
3  *
4  * SPDX-License-Identifier: BSD-3-Clause
5  */
6 
7 #ifndef __DX_REG_BASE_HOST_H__
8 #define __DX_REG_BASE_HOST_H__
9 
10 /* Identify platform: ARM MUSCA_S1 */
11 #define DX_PLAT_MUSCA_S1 1
12 
13 #define DX_BASE_CC 0x50088000 /* Cryptocell secure address */
14 #define DX_BASE_CODE 0x50030000 //# not used
15 
16 /* The address of the crypto keys in the MRAM. The S1 uses this area for
17  * persistent storage since it doesn't have true OTP memory.
18  * Same as FLASH_TFM_CRYPTO_KEY_AREA as found in
19  * platform/ext/target/musca_s1/partition/flash_layout.h
20  */
21 #define DX_MRAM_CC 0x1A1EA000
22 
23 #define DX_BASE_ENV_REGS 0x500A0000 //TODO need confirm
24 
25 #define DX_BASE_HOST_RGF 0x0UL
26 #define DX_BASE_CRY_KERNEL     0x0UL
27 
28 #define DX_BASE_RNG 0x0000UL
29 #endif /*__DX_REG_BASE_HOST_H__*/
30