blob: 3d46884467ed8a50ff64eec10a6ac797c696c739 [file] [log] [blame]
alexander31ae9f02022-02-10 16:15:54 +00001#----------------------------------------------------------------------------
2# Copyright (c) 2022 Arm Limited. All rights reserved.
3# SPDX-License-Identifier: Apache-2.0
4#
5# Licensed under the Apache License, Version 2.0 (the "License");
6# you may not use this file except in compliance with the License.
7# You may obtain a copy of the License at
8#
9# http://www.apache.org/licenses/LICENSE-2.0
10#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an "AS IS" BASIS,
13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14# See the License for the specific language governing permissions and
15# limitations under the License.
16#----------------------------------------------------------------------------
17
18function(set_platform_global_defaults)
19 message(STATUS "Platform: Simple platform with minimal peripherals")
20 if (NOT DEFINED CMAKE_TOOLCHAIN_FILE)
21 set(CMAKE_TOOLCHAIN_FILE ${CMAKE_TOOLCHAIN_DIR}/bare-metal-gcc.cmake
22 CACHE FILEPATH "Toolchain file")
23 endif()
24 set(LINKER_SCRIPT_NAME "simple_platform" PARENT_SCOPE)
25 set(PLATFORM_DRIVERS_DIR "${HAL_PLATFORM_DIR}/simple" PARENT_SCOPE)
26endfunction()
27
28function(platform_custom_post_build)
29 set(oneValueArgs TARGET_NAME)
30 cmake_parse_arguments(PARSED "" "${oneValueArgs}" "" ${ARGN} )
31
32 set_target_properties(${PARSED_TARGET_NAME} PROPERTIES SUFFIX ".axf")
33 # Add link options for the linker script to be used:
34
35 add_linker_script(
36 ${PARSED_TARGET_NAME} # Target
37 ${CMAKE_SCRIPTS_DIR}/platforms/simple_platform # Directory path
38 ${LINKER_SCRIPT_NAME}) # Name of the file without suffix
39
40 add_target_map_file(
41 ${PARSED_TARGET_NAME}
42 ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/${PARSED_TARGET_NAME}.map)
43
44 set(SECTORS_DIR ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/sectors)
45 set(SECTORS_BIN_DIR ${SECTORS_DIR}/${use_case})
46
47 file(REMOVE_RECURSE ${SECTORS_BIN_DIR})
48 file(MAKE_DIRECTORY ${SECTORS_BIN_DIR})
49
50 set(LINKER_SECTION_TAGS "*.at_itcm" "*.at_ddr")
51 set(LINKER_OUTPUT_BIN_TAGS "itcm.bin" "ddr.bin")
52
53 add_bin_generation_command(
54 TARGET_NAME ${PARSED_TARGET_NAME}
55 OUTPUT_DIR ${SECTORS_BIN_DIR}
56 AXF_PATH ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/${PARSED_TARGET_NAME}.axf
57 SECTION_PATTERNS "${LINKER_SECTION_TAGS}"
58 OUTPUT_BIN_NAMES "${LINKER_OUTPUT_BIN_TAGS}")
59endfunction()