blob: 21f7765a2f1438e012462fc186e064cc33e506ef [file] [log] [blame]
Kshitij Sisodia8bc863d2022-03-24 17:53:34 +00001/*
2 * Copyright (c) 2022 Arm Limited. All rights reserved.
3 * SPDX-License-Identifier: Apache-2.0
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 */
17
18#ifndef PERIPHERAL_MEMMAP_H
19#define PERIPHERAL_MEMMAP_H
20
21#define DESIGN_NAME "Simple platform"
22
23/******************************************************************************/
24/* Peripheral memory map */
25/******************************************************************************/
26#define PL011_UART0_BASE (0x49303000) /* PL011 UART0 Base Address */
27
28#define ETHOS_U_NPU_BASE (0x48102000) /* Ethos-U NPU base address*/
29#define ETHOS_U_NPU_TA0_BASE (0x48103000) /* Ethos-U NPU's timing adapter 0 base address */
30#define ETHOS_U_NPU_TA1_BASE (0x48103200) /* Ethos-U NPU's timing adapter 1 base address */
31
32/******************************************************************************/
33/* Secure Peripheral memory map */
34/******************************************************************************/
35
36#define SEC_ETHOS_U_NPU_BASE (0x58102000) /* Ethos-U NPU base address*/
37#define SEC_ETHOS_U_NPU_TA0_BASE (0x58103000) /* Ethos-U NPU's timing adapter 0 base address */
38#define SEC_ETHOS_U_NPU_TA1_BASE (0x58103200) /* Ethos-U NPU's timing adapter 1 base address */
39
40#endif /* PERIPHERAL_MEMMAP_H */