blob: 31cd00447934313e93b17e90854c0efbfc290f6f [file] [log] [blame]
alexander31ae9f02022-02-10 16:15:54 +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#########################################################
19# MPS3 platform support library #
20#########################################################
21
22cmake_minimum_required(VERSION 3.15.6)
Kshitij Sisodiad5679cc2022-03-03 16:30:07 +000023set(PLATFORM_DRIVERS_TARGET platform_drivers)
alexander31ae9f02022-02-10 16:15:54 +000024project(${PLATFORM_DRIVERS_TARGET}
25 DESCRIPTION "Platform drivers library for MPS3 FPGA/FVP targets"
26 LANGUAGES C CXX ASM)
27
28# 1. We should be cross-compiling (MPS3 taregt only runs Cortex-M targets)
29if (NOT ${CMAKE_CROSSCOMPILING})
30 message(FATAL_ERROR "No ${PLATFORM_DRIVERS_TARGET} support for this target.")
31endif()
32
Kshitij Sisodiac22e80e2022-03-14 09:26:48 +000033# Define target specific base addresses here (before adding the components)
34if (TARGET_SUBSYSTEM STREQUAL sse-300)
35 set(UART0_BASE "0x49303000" CACHE STRING "UART base address")
36 set(UART0_BAUDRATE "115200" CACHE STRING "UART baudrate")
37 set(SYSTEM_CORE_CLOCK "25000000" CACHE STRING "System peripheral clock (Hz)")
38 set(CLCD_CONFIG_BASE "0x4930A000" CACHE STRING "LCD configuration base address")
Kshitij Sisodia8bc863d2022-03-24 17:53:34 +000039 set(ETHOS_U_BASE_ADDR "0x58102000" CACHE STRING "Ethos-U NPU base address")
40 set(ETHOS_U_IRQN "56" CACHE STRING "Ethos-U55 Interrupt")
41 set(ETHOS_U_SEC_ENABLED "1" CACHE STRING "Ethos-U NPU Security enable")
42 set(ETHOS_U_PRIV_ENABLED "1" CACHE STRING "Ethos-U NPU Privilege enable")
Kshitij Sisodiac22e80e2022-03-14 09:26:48 +000043endif()
44
Kshitij Sisodia8bc863d2022-03-24 17:53:34 +000045# 2. Create static library
alexander31ae9f02022-02-10 16:15:54 +000046add_library(${PLATFORM_DRIVERS_TARGET} STATIC)
47
Kshitij Sisodiad5679cc2022-03-03 16:30:07 +000048## Include directories - private
49target_include_directories(${PLATFORM_DRIVERS_TARGET}
50 PRIVATE
51 source)
52
alexander31ae9f02022-02-10 16:15:54 +000053## Include directories - public
54target_include_directories(${PLATFORM_DRIVERS_TARGET}
55 PUBLIC
56 include
Kshitij Sisodia8bc863d2022-03-24 17:53:34 +000057 include/${TARGET_SUBSYSTEM})
alexander31ae9f02022-02-10 16:15:54 +000058
59## Platform sources
60target_sources(${PLATFORM_DRIVERS_TARGET}
61 PRIVATE
Kshitij Sisodiaa1256e32022-02-23 14:40:45 +000062 source/timer_mps3.c
Kshitij Sisodiac22e80e2022-03-14 09:26:48 +000063 source/platform_drivers.c)
64
Isabella Gottardiee4920b2022-02-25 14:29:32 +000065## Directory for additional components required by MPS3:
Kshitij Sisodiaa1256e32022-02-23 14:40:45 +000066if (NOT DEFINED COMPONENTS_DIR)
67 set(COMPONENTS_DIR ${CMAKE_CURRENT_SOURCE_DIR}/../../components)
68endif()
alexander31ae9f02022-02-10 16:15:54 +000069
Kshitij Sisodiac22e80e2022-03-14 09:26:48 +000070## Platform component: cmsis_device (provides generic Cortex-M start up library)
71add_subdirectory(${COMPONENTS_DIR}/cmsis_device ${CMAKE_BINARY_DIR}/cmsis_device)
Kshitij Sisodiad5679cc2022-03-03 16:30:07 +000072
Kshitij Sisodiac22e80e2022-03-14 09:26:48 +000073## Platform component: stdout
74set(STDOUT_RETARGET ON CACHE BOOL "Retarget stdout/err to UART")
75add_subdirectory(${COMPONENTS_DIR}/stdout ${CMAKE_BINARY_DIR}/stdout)
76
77## Platform component: lcd
78add_subdirectory(${COMPONENTS_DIR}/lcd ${CMAKE_BINARY_DIR}/lcd)
alexander31ae9f02022-02-10 16:15:54 +000079
Kshitij Sisodiaa1256e32022-02-23 14:40:45 +000080# Add dependencies:
alexander31ae9f02022-02-10 16:15:54 +000081target_link_libraries(${PLATFORM_DRIVERS_TARGET} PUBLIC
Kshitij Sisodiad5679cc2022-03-03 16:30:07 +000082 log
83 cmsis_device
Kshitij Sisodiac22e80e2022-03-14 09:26:48 +000084 lcd_mps3
85 $<IF:$<BOOL:STDOUT_RETARGET>,stdout_retarget_cmsdk,stdout>)
alexander31ae9f02022-02-10 16:15:54 +000086
Isabella Gottardiee4920b2022-02-25 14:29:32 +000087# If Ethos-U is enabled, we need the driver library too
88if (ETHOS_U_NPU_ENABLED)
89
Kshitij Sisodiad5679cc2022-03-03 16:30:07 +000090 ## Platform component: Ethos-U initialization
Kshitij Sisodiac22e80e2022-03-14 09:26:48 +000091 add_subdirectory(${COMPONENTS_DIR}/npu ${CMAKE_BINARY_DIR}/npu)
Isabella Gottardiee4920b2022-02-25 14:29:32 +000092
93 target_link_libraries(${PLATFORM_DRIVERS_TARGET}
94 PUBLIC
Kshitij Sisodiac22e80e2022-03-14 09:26:48 +000095 ethos_u_npu)
Isabella Gottardiee4920b2022-02-25 14:29:32 +000096
Kshitij Sisodiad5679cc2022-03-03 16:30:07 +000097 if (ETHOS_U_NPU_TIMING_ADAPTER_ENABLED)
98 ## Platform component: Ethos-U timing adapter initialization
Kshitij Sisodiac22e80e2022-03-14 09:26:48 +000099 add_subdirectory(${COMPONENTS_DIR}/npu_ta ${CMAKE_BINARY_DIR}/npu_ta)
Kshitij Sisodiad5679cc2022-03-03 16:30:07 +0000100
101 target_link_libraries(${PLATFORM_DRIVERS_TARGET}
102 PUBLIC
Kshitij Sisodiac22e80e2022-03-14 09:26:48 +0000103 ethos_u_ta)
Isabella Gottardiee4920b2022-02-25 14:29:32 +0000104 endif()
105
Isabella Gottardiee4920b2022-02-25 14:29:32 +0000106endif()
107
Kshitij Sisodia8bc863d2022-03-24 17:53:34 +0000108# 3. Display status:
alexander31ae9f02022-02-10 16:15:54 +0000109message(STATUS "CMAKE_CURRENT_SOURCE_DIR: " ${CMAKE_CURRENT_SOURCE_DIR})
110message(STATUS "*******************************************************")
111message(STATUS "Library : " ${PLATFORM_DRIVERS_TARGET})
112message(STATUS "CMAKE_SYSTEM_PROCESSOR : " ${CMAKE_SYSTEM_PROCESSOR})
113message(STATUS "*******************************************************")