1 /*
2  * Copyright (c) 2019-2024, Arm Limited. All rights reserved.
3  *
4  * Licensed under the Apache License Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing software
11  * distributed under the License is distributed on an "AS IS" BASIS
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 
17 #ifndef __HOST_DEVICE_CFG_H__
18 #define __HOST_DEVICE_CFG_H__
19 
20 /**
21  * \file device_cfg.h
22  * \brief
23  * This is the device configuration file with only used peripherals
24  * defined and configured via the secure and/or non-secure base address.
25  */
26 
27 #ifdef RSE_USE_HOST_UART
28 /* ARM UART PL011 */
29 #define DEFAULT_UART_CONTROL 0
30 #define DEFAULT_UART_BAUDRATE  115200
31 #define UART0_PL011_S
32 #define UART0_PL011_NS
33 #endif /* RSE_USE_HOST_UART */
34 
35 /*External Intel Strata Flash Device*/
36 #define SPI_STRATAFLASHJ3_S
37 
38 /* CFI Controller */
39 #define CFI_S
40 
41 /* MHU */
42 #define MHU_AP_MONITOR_TO_RSE
43 #define MHU_RSE_TO_AP_MONITOR
44 #define MHU_AP_NS_TO_RSE
45 #define MHU_RSE_TO_AP_NS
46 #define MHU_SCP_TO_RSE
47 #define MHU_RSE_TO_SCP
48 
49 #endif  /* __HOST_DEVICE_CFG_H__ */
50