blob: 6c91a8373155a12aaae8c727447f479f432faeb2 [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
Ledion Daja449c8d82022-06-21 12:22:13 +020027if((CMAKE_SYSTEM_PROCESSOR MATCHES "cortex-m55") AND
Per Åstrand10707e42022-02-21 12:01:06 +010028 (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:
Ledion Daja449c8d82022-06-21 12:22:13 +020031 string(REGEX MATCH "^cortex-m([0-9]+[a-z]*)" THREADX_ARCH ${CMAKE_SYSTEM_PROCESSOR})
32 string(REPLACE "-" "_" THREADX_ARCH ${THREADX_ARCH})
liodek018e13f902021-06-24 12:14:47 +030033 string(TOLOWER ${CMAKE_CXX_COMPILER_ID} THREADX_TOOLCHAIN)
Ledion Daja449c8d82022-06-21 12:22:13 +020034
liodek018e13f902021-06-24 12:14:47 +030035 #if armclang, change the format to "ac6".
36 if(THREADX_TOOLCHAIN STREQUAL "armclang")
37 set(THREADX_TOOLCHAIN "ac6")
38 endif()
Davide Grohmann1cdbbda2022-02-15 15:49:08 +010039
liodek018e13f902021-06-24 12:14:47 +030040 #if ThreadX supports this configuration, build ThreadX.
41 if (EXISTS ${CMAKE_CURRENT_LIST_DIR}/threadx/ports/${THREADX_ARCH}/${THREADX_TOOLCHAIN}/CMakeLists.txt)
42 add_subdirectory(threadx)
Kristofer Jonsson5dffbf22022-05-09 10:59:08 +020043
Davide Grohmann1cdbbda2022-02-15 15:49:08 +010044 if(THREADX_ARCH STREQUAL "cortex_m33" OR THREADX_ARCH STREQUAL "cortex_m55")
45 target_compile_definitions(threadx PUBLIC TX_SINGLE_MODE_SECURE)
46 endif()
Kristofer Jonsson5dffbf22022-05-09 10:59:08 +020047
48 target_compile_options(threadx PRIVATE
49 -Wno-unused-function
50 -Wno-unused-parameter)
liodek018e13f902021-06-24 12:14:47 +030051 else()
52 message(STATUS "Skipping ThreadX build - doesn't support toolchain=${THREADX_TOOLCHAIN} and cpu=${THREADX_ARCH}")
53 endif()
Per Åstrand10707e42022-02-21 12:01:06 +010054else()
55 message(STATUS "Disabling ThreadX for ${CMAKE_SYSTEM_PROCESSOR}, due to upstream issues")
56 # Disable cpu until upstream issue with missing files is sorted out
liodek018e13f902021-06-24 12:14:47 +030057endif()