blob: f86cb832fa75d4a909d789cb64d74368081fe9c7 [file] [log] [blame]
Bhavik Patel68c1f1b2020-07-29 12:28:18 +02001#
Davide Grohmann1cdbbda2022-02-15 15:49:08 +01002# Copyright (c) 2019-2022 Arm Limited. All rights reserved.
Bhavik Patel68c1f1b2020-07-29 12:28:18 +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
Per Åstrand3c60f142021-01-28 11:58:38 +010019# Include FreeRTOS kernel
20if(CORE_SOFTWARE_RTOS_LOWER STREQUAL "freertos" OR CORE_SOFTWARE_RTOS_LOWER STREQUAL "all")
Bhavik Patel68c1f1b2020-07-29 12:28:18 +020021 set(FREERTOS_KERNEL_PATH "${CMAKE_CURRENT_SOURCE_DIR}/freertos/freertos_kernel" CACHE PATH "Path to FreeRTOS kernel.")
22 add_subdirectory(freertos_config)
Bhavik Patel68c1f1b2020-07-29 12:28:18 +020023endif()
liodek018e13f902021-06-24 12:14:47 +030024
25# Include ThreadX
Per Åstrand10707e42022-02-21 12:01:06 +010026# Only enable cortex-m55 until cortex-m33 is sorted out upstream
27if((CMAKE_SYSTEM_PROCESSOR STREQUAL "cortex-m55") AND
28 (CORE_SOFTWARE_RTOS_LOWER STREQUAL "threadx" OR CORE_SOFTWARE_RTOS_LOWER STREQUAL "all"))
liodek018e13f902021-06-24 12:14:47 +030029 #threadx build requires 2 defines: THREADX_ARCH (format: cortex_m4) and THREADX_TOOLCHAIN (ac5/ac6/gnu).
30 #set them according to existing defines CMAKE_SYSTEM_PROCESSOR and CMAKE_CXX_COMPILER_ID:
31 string(REPLACE "-" "_" THREADX_ARCH ${CMAKE_SYSTEM_PROCESSOR})
32 string(TOLOWER ${CMAKE_CXX_COMPILER_ID} THREADX_TOOLCHAIN)
33 #if armclang, change the format to "ac6".
34 if(THREADX_TOOLCHAIN STREQUAL "armclang")
35 set(THREADX_TOOLCHAIN "ac6")
36 endif()
Davide Grohmann1cdbbda2022-02-15 15:49:08 +010037
liodek018e13f902021-06-24 12:14:47 +030038 #if ThreadX supports this configuration, build ThreadX.
39 if (EXISTS ${CMAKE_CURRENT_LIST_DIR}/threadx/ports/${THREADX_ARCH}/${THREADX_TOOLCHAIN}/CMakeLists.txt)
40 add_subdirectory(threadx)
Davide Grohmann1cdbbda2022-02-15 15:49:08 +010041 if(THREADX_ARCH STREQUAL "cortex_m33" OR THREADX_ARCH STREQUAL "cortex_m55")
42 target_compile_definitions(threadx PUBLIC TX_SINGLE_MODE_SECURE)
43 endif()
liodek018e13f902021-06-24 12:14:47 +030044 else()
45 message(STATUS "Skipping ThreadX build - doesn't support toolchain=${THREADX_TOOLCHAIN} and cpu=${THREADX_ARCH}")
46 endif()
Per Åstrand10707e42022-02-21 12:01:06 +010047else()
48 message(STATUS "Disabling ThreadX for ${CMAKE_SYSTEM_PROCESSOR}, due to upstream issues")
49 # Disable cpu until upstream issue with missing files is sorted out
liodek018e13f902021-06-24 12:14:47 +030050endif()