1# 2# Arm SCP/MCP Software 3# Copyright (c) 2021-2022, Arm Limited and Contributors. All rights reserved. 4# 5# SPDX-License-Identifier: BSD-3-Clause 6# 7 8set(SCP_FIRMWARE "rdv1-mcp-bl1") 9set(SCP_FIRMWARE_TARGET "rdv1-mcp-bl1") 10 11set(SCP_TOOLCHAIN_INIT "GNU") 12 13set(SCP_FIRMWARE_SOURCE_DIR "${CMAKE_CURRENT_LIST_DIR}") 14 15set(SCP_GENERATE_FLAT_BINARY TRUE) 16set(SCP_ARCHITECTURE "arm-m") 17 18set(SCP_ENABLE_NOTIFICATIONS TRUE) 19 20set(SCP_ENABLE_IPO_INIT FALSE) 21 22# The order of the modules in the following list is the order in which the 23# modules are initialized, bound, started during the pre-runtime phase. 24# any change in the order will cause firmware initialization errors. 25 26list(APPEND SCP_MODULES "pl011") 27list(APPEND SCP_MODULES "clock") 28list(APPEND SCP_MODULES "bootloader") 29list(APPEND SCP_MODULES "isys-rom") 30