blob: 64e13341689c68eb54437e465ad303bd6ed02f77 [file] [log] [blame]
Kristofer Jonssonf62c3d72021-01-21 17:39:03 +01001#
2# Copyright (c) 2021 Arm Limited. All rights reserved.
3#
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
19#############################################################################
20# Core software
21#############################################################################
22
23set(ETHOSU_CORE_SOFTWARE_PATH "${CMAKE_CURRENT_LIST_DIR}/../../../core_software" CACHE PATH "Path to Arm Ethos-U Core Software")
24
25set(CORE_SOFTWARE_RTOS "All" CACHE STRING "")
Yulia Garbovichafa0c812021-11-02 15:55:38 +020026set(TFLU_BUILD_TYPE "release_with_logs" CACHE STRING "Tensorflow Lite Micro build type (release, release_with_logs, debug)")
Kristofer Jonssonf62c3d72021-01-21 17:39:03 +010027
28add_subdirectory(${ETHOSU_CORE_SOFTWARE_PATH} core_software)
29
30###############################################################################
31# Target
32#
33# ethosu_target_init # Init and drivers
34# |
35# v
36# ethosu_target_startup # CMSIS startup
37# |
38# v
39# ethosu_target_link # Target linker script
40# |
41# v
42# ethosu_target_common # Common for all targets
43###############################################################################
44
Kristofer Jonssonec451552021-06-04 18:02:59 +020045option(CPU_CACHE_ENABLE "Enable CPU instruction- and data cache" OFF)
46
Kristofer Jonssonf62c3d72021-01-21 17:39:03 +010047# Common
48add_library(ethosu_target_common INTERFACE)
49target_include_directories(ethosu_target_common INTERFACE include)
50
51# Link
52add_library(ethosu_target_link INTERFACE)
53target_link_libraries(ethosu_target_link INTERFACE ethosu_target_common)
54
Kristofer Jonssonec451552021-06-04 18:02:59 +020055# Configuring caches
56if (CPU_CACHE_ENABLE)
57 target_compile_definitions(ethosu_target_link INTERFACE CPU_CACHE_ENABLE)
58endif()
59
Kristofer Jonssonf62c3d72021-01-21 17:39:03 +010060# Startup
61add_library(ethosu_target_startup INTERFACE)
62target_link_libraries(ethosu_target_startup INTERFACE ethosu_target_link)
Per Åstranddfcc0172021-01-29 10:27:40 +010063target_link_libraries(ethosu_target_startup INTERFACE cmsis_system)
Kristofer Jonssonf62c3d72021-01-21 17:39:03 +010064
65# Init
66add_library(ethosu_target_init INTERFACE)
67target_link_libraries(ethosu_target_init INTERFACE ethosu_target_startup)
68target_sources(ethosu_target_init INTERFACE src/init.cpp)
69