1 /* 2 * Copyright (c) 2019 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 __ARM_LTD_DEVICE_CFG_H__ 18 #define __ARM_LTD_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 /* ARM Memory Protection Controller (MPC) */ 28 #define MPC_ISRAM0_S 29 #define MPC_ISRAM1_S 30 #define MPC_ISRAM2_S 31 #define MPC_ISRAM3_S 32 #define MPC_QSPI_S 33 34 /* ARM Peripheral Protection Controllers (PPC) */ 35 #define AHB_PPCEXP0_S 36 #define APB_PPC0_S 37 #define APB_PPC1_S 38 #define APB_PPCEXP0_S 39 #define APB_PPCEXP1_S 40 #define APB_PPCEXP2_S 41 42 /* ARM UART CMSDK */ 43 #define DEFAULT_UART_BAUDRATE 115200 44 #define UART0_CMSDK_S 45 #define UART0_CMSDK_NS 46 #define UART1_CMSDK_S 47 #define UART1_CMSDK_NS 48 49 /* CMSDK Timers */ 50 #define CMSDK_TIMER0_S 51 #define CMSDK_TIMER0_NS 52 #define CMSDK_TIMER1_S 53 #define CMSDK_TIMER1_NS 54 55 #endif /* __ARM_LTD_DEVICE_CFG_H__ */ 56