1# 2# Arm SCP/MCP Software 3# Copyright (c) 2020-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_SCMI_PERF_FAST_CHANNELS "Enable the SCMI-perf Fast channels?" 15 "${SCP_ENABLE_SCMI_PERF_FAST_CHANNELS_INIT}" 16 "DEFINED SCP_ENABLE_SCMI_PERF_FAST_CHANNELS_INIT" 17 "${SCP_ENABLE_SCMI_PERF_FAST_CHANNELS}") 18 19cmake_dependent_option( 20 SCP_ENABLE_DEBUG_UNIT "Enable the debug support?" 21 "${SCP_ENABLE_DEBUG_UNIT_INIT}" "DEFINED SCP_ENABLE_DEBUG_UNIT_INIT" 22 "${SCP_ENABLE_DEBUG_UNIT}") 23 24cmake_dependent_option( 25 SCP_ENABLE_STATISTICS "Enable the performance statistics?" 26 "${SCP_ENABLE_STATISTICS_INIT}" "DEFINED SCP_ENABLE_STATISTICS_INIT" 27 "${SCP_ENABLE_STATISTICS}") 28 29cmake_dependent_option( 30 SCP_ENABLE_PMI "Enable the performance measurement and instrumentation?" 31 "${SCP_ENABLE_PMI_INIT}" "DEFINED SCP_ENABLE_PMI_INIT" 32 "${SCP_ENABLE_PMI}") 33