blob: e7cd9e12b5f4a8bed70bf08ef29bb2ba2a9d6548 [file] [log] [blame]
Kristofer Jonsson49bdee82020-04-06 13:21:21 +02001#
Jonny Svärda830f172021-06-07 16:57:00 +02002# Copyright (c) 2019-2021 Arm Limited. All rights reserved.
Kristofer Jonsson49bdee82020-04-06 13:21:21 +02003#
4# SPDX-License-Identifier: Apache-2.0
5#
6# Licensed under the Apache License, Version 2.0 (the License); you may
7# not use this file except in compliance with the License.
8# You may obtain a copy of the License at
9#
10# www.apache.org/licenses/LICENSE-2.0
11#
12# Unless required by applicable law or agreed to in writing, software
13# distributed under the License is distributed on an AS IS BASIS, WITHOUT
14# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15# See the License for the specific language governing permissions and
16# limitations under the License.
17#
18
19cmake_minimum_required(VERSION 3.15.6)
20
21project(ethosu_core_driver VERSION 0.0.1)
22
23#
24# Build options
25#
26
Kristofer Jonsson537c71c2020-05-05 14:17:22 +020027option(DRIVER_PMU_AUTOINIT "Enable PMU boot auto-initialization" OFF)
Kristofer Jonsson49bdee82020-04-06 13:21:21 +020028
Kristofer Jonsson537c71c2020-05-05 14:17:22 +020029set(CMSIS_PATH "${CMAKE_CURRENT_SOURCE_DIR}/../cmsis" CACHE PATH "Path to CMSIS.")
Kristofer Jonssonc05c9882020-08-05 11:46:52 +020030
Jonny Svärda830f172021-06-07 16:57:00 +020031set(LOG_NAMES err warning info debug)
Anton Moberg6eab40b2021-07-07 11:43:51 +020032set(ETHOSU_LOG_SEVERITY "warning" CACHE STRING "Driver log severity level ${LOG_NAMES} (Defaults to 'warning')")
Jonny Svärd136810f2021-10-13 16:04:26 +020033set(ETHOSU_TARGET_NPU_CONFIG "ethos-u55-128" CACHE STRING "Default NPU configuration")
Kristofer Jonssonc05c9882020-08-05 11:46:52 +020034set_property(CACHE ETHOSU_LOG_SEVERITY PROPERTY STRINGS ${LOG_NAMES})
Kristofer Jonsson49bdee82020-04-06 13:21:21 +020035
36#
37# Global settings
38#
39
Kristofer Jonssonc05c9882020-08-05 11:46:52 +020040# Check that ETHOSU_LOG_SEVERITY has one of the supported levels
41list(FIND LOG_NAMES ${ETHOSU_LOG_SEVERITY} LOG_SEVERITY)
42if (${LOG_SEVERITY} EQUAL -1)
43 message(FATAL_ERROR "Unsupported log level ${ETHOSU_LOG_SEVERITY}")
Kristofer Jonsson49bdee82020-04-06 13:21:21 +020044endif()
45
46# Make include directories available for current- and sub projects
47include_directories(include src)
48include_directories(${CMSIS_PATH}/CMSIS/Core/Include)
49
50#
51# Build libraries
52#
53
54# Build driver library
55add_library(ethosu_core_driver STATIC)
Kristofer Jonsson537c71c2020-05-05 14:17:22 +020056target_include_directories(ethosu_core_driver PUBLIC include)
Jonny Svärd136810f2021-10-13 16:04:26 +020057target_sources(ethosu_core_driver PRIVATE src/ethosu_driver.c src/ethosu_pmu.c)
58
59string(TOLOWER ${ETHOSU_TARGET_NPU_CONFIG} ETHOSU_TARGET_NPU_CONFIG)
60if(ETHOSU_TARGET_NPU_CONFIG MATCHES "^ethos-(u[0-9]+|uz)-([0-9]+$)")
61 set(ETHOSU_ARCH ${CMAKE_MATCH_1})
62 set(ETHOSU_MACS ${CMAKE_MATCH_2})
63else()
64 message(FATAL_ERROR "Invalid Ethos-U target configuration '${ETHOSU_TARGET_NPU_CONFIG}")
65endif()
66
67target_compile_definitions(ethosu_core_driver PRIVATE
68 ETHOSU_ARCH=${ETHOSU_ARCH}
69 ETHOS$<UPPER_CASE:${ETHOSU_ARCH}>)
70
71if (ETHOSU_ARCH STREQUAL "u55" OR ETHOSU_ARCH STREQUAL "u65")
72 target_sources(ethosu_core_driver PRIVATE src/ethosu_device_u55_u65.c)
73else()
74 message(FATAL_ERROR "Invalid NPU configuration")
75endif()
76
77
78# Set the log level for the target
Kristofer Jonssonc05c9882020-08-05 11:46:52 +020079target_compile_definitions(ethosu_core_driver PRIVATE ETHOSU_LOG_SEVERITY=${LOG_SEVERITY})
Bhavik Patelf5057812020-07-16 22:36:02 +020080
Bhavik Patel747c8732020-07-27 17:22:44 +020081# Install library and include files
82install(TARGETS ethosu_core_driver LIBRARY DESTINATION "lib")
83install(FILES include/ethosu_device.h include/ethosu_driver.h include/pmu_ethosu.h
84 DESTINATION "include")
85
Kristofer Jonsson49bdee82020-04-06 13:21:21 +020086#
87# Print build status
88#
89
90message(STATUS "*******************************************************")
91message(STATUS "PROJECT_NAME : ${PROJECT_NAME}")
Jonny Svärd136810f2021-10-13 16:04:26 +020092message(STATUS "ETHOSU_TARGET_NPU_CONFIG : ${ETHOSU_TARGET_NPU_CONFIG}")
Kristofer Jonsson49bdee82020-04-06 13:21:21 +020093message(STATUS "CMAKE_SYSTEM_PROCESSOR : ${CMAKE_SYSTEM_PROCESSOR}")
Kristofer Jonsson49bdee82020-04-06 13:21:21 +020094message(STATUS "CMSIS_PATH : ${CMSIS_PATH}")
Kristofer Jonssonc05c9882020-08-05 11:46:52 +020095message(STATUS "ETHOSU_LOG_SEVERITY : ${ETHOSU_LOG_SEVERITY}")
Kristofer Jonsson49bdee82020-04-06 13:21:21 +020096message(STATUS "*******************************************************")