1# 2# Arm SCP/MCP Software 3# Copyright (c) 2022, Arm Limited and Contributors. All rights reserved. 4# 5# SPDX-License-Identifier: BSD-3-Clause 6# 7 8cmake_dependent_option( 9 SCP_ENABLE_SCMI_RESET "Enable the scmi reset?" 10 "${SCP_ENABLE_SCMI_RESET_INIT}" "DEFINED SCP_ENABLE_SCMI_RESET_INIT" 11 "${SCP_ENABLE_SCMI_RESET}") 12 13cmake_dependent_option( 14 SCP_ENABLE_FAST_CHANNELS "Enable the SCMI Fast channels?" 15 "${SCP_ENABLE_FAST_CHANNELS_INIT}" "DEFINED SCP_ENABLE_FAST_CHANNELS_INIT" 16 "${SCP_ENABLE_FAST_CHANNELS}") 17 18cmake_dependent_option( 19 SCP_ENABLE_DEBUG_UNIT "Enable the debug support?" 20 "${SCP_ENABLE_DEBUG_UNIT_INIT}" "DEFINED SCP_ENABLE_DEBUG_UNIT_INIT" 21 "${SCP_ENABLE_DEBUG_UNIT}") 22 23cmake_dependent_option( 24 SCP_ENABLE_STATISTICS "Enable the performance statistics?" 25 "${SCP_ENABLE_STATISTICS_INIT}" "DEFINED SCP_ENABLE_STATISTICS_INIT" 26 "${SCP_ENABLE_STATISTICS}") 27 28cmake_dependent_option( 29 SCP_ENABLE_PMI "Enable the performance measurement and instrumentation?" 30 "${SCP_ENABLE_PMI_INIT}" "DEFINED SCP_ENABLE_PMI_INIT" 31 "${SCP_ENABLE_PMI}") 32