blob: d3b3f46de270b32b25906764931c4f58f264581a [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
Yulia Garboviche9cdc632021-11-23 20:00:04 +020030add_subdirectory(../../drivers drivers)
31
Kristofer Jonssonf62c3d72021-01-21 17:39:03 +010032###############################################################################
33# Target
34#
35# ethosu_target_init # Init and drivers
36# |
37# v
38# ethosu_target_startup # CMSIS startup
39# |
40# v
41# ethosu_target_link # Target linker script
42# |
43# v
44# ethosu_target_common # Common for all targets
45###############################################################################
46
Kristofer Jonssonec451552021-06-04 18:02:59 +020047option(CPU_CACHE_ENABLE "Enable CPU instruction- and data cache" OFF)
48
Kristofer Jonssonf62c3d72021-01-21 17:39:03 +010049# Common
50add_library(ethosu_target_common INTERFACE)
51target_include_directories(ethosu_target_common INTERFACE include)
52
53# Link
54add_library(ethosu_target_link INTERFACE)
55target_link_libraries(ethosu_target_link INTERFACE ethosu_target_common)
56
Kristofer Jonssonec451552021-06-04 18:02:59 +020057# Configuring caches
58if (CPU_CACHE_ENABLE)
59 target_compile_definitions(ethosu_target_link INTERFACE CPU_CACHE_ENABLE)
60endif()
61
Kristofer Jonssonf62c3d72021-01-21 17:39:03 +010062# Startup
63add_library(ethosu_target_startup INTERFACE)
64target_link_libraries(ethosu_target_startup INTERFACE ethosu_target_link)
Per Åstranddfcc0172021-01-29 10:27:40 +010065target_link_libraries(ethosu_target_startup INTERFACE cmsis_system)
Kristofer Jonssonf62c3d72021-01-21 17:39:03 +010066
67# Init
68add_library(ethosu_target_init INTERFACE)
69target_link_libraries(ethosu_target_init INTERFACE ethosu_target_startup)
70target_sources(ethosu_target_init INTERFACE src/init.cpp)
71