blob: 2bd4fa1e4975e6f311f3b2c006e1b2ce7c5fd0f6 [file] [log] [blame]
alexander3c798932021-03-26 21:42:19 +00001/*
2 * Copyright (c) 2021 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#ifndef BSP_H
18#define BSP_H
19
20/* Core modules - these are common */
21#include "bsp_core_log.h" /* Logging related helpers. */
22#include "uart_stdout.h" /* stdout over UART. */
23
24#if defined(MPS3_PLATFORM) /* If running on MPS3 platform. */
25
26#include "smm_mps3.h" /* Mem map for MPS3 peripherals. */
27#include "glcd_mps3.h" /* LCD functions. */
28#include "timer_mps3.h" /* Timer functions. */
29#include "device_mps3.h" /* FPGA level definitions and functions. */
30
31#else /* MPS3_PLATFORM */
32
Kshitij Sisodia659fcd92021-05-19 10:30:06 +010033#include "stubs_simple_platform.h" /* Stubs for simple_platform. */
34#include "timer_simple_platform.h" /* Timer API for simple_platform. */
alexander3c798932021-03-26 21:42:19 +000035
36#endif /* MPS3_PLATFORM */
37
Isabella Gottardi118f73e2021-09-16 17:54:35 +010038#if defined(ARM_NPU)
39#include "ethosu_mem_config.h"
40#endif /* defined(ARM_NPU) */
41
alexander3c798932021-03-26 21:42:19 +000042#endif /* BSP_H */