1 /* 2 * Arm SCP/MCP Software 3 * Copyright (c) 2015-2021, Arm Limited and Contributors. All rights reserved. 4 * 5 * SPDX-License-Identifier: BSD-3-Clause 6 */ 7 8 #include "config_dvfs.h" 9 #include "sgm776_scmi.h" 10 11 #include <mod_scmi_perf.h> 12 13 #include <fwk_module.h> 14 15 #include <stdint.h> 16 17 static const struct mod_scmi_perf_domain_config domains[] = { 18 [DVFS_ELEMENT_IDX_LITTLE] = { 19 }, 20 [DVFS_ELEMENT_IDX_BIG] = { 21 }, 22 [DVFS_ELEMENT_IDX_GPU] = { 23 }, 24 }; 25 26 const struct fwk_module_config config_scmi_perf = { 27 .data = &((struct mod_scmi_perf_config){ 28 .domains = &domains, 29 .perf_doms_count = FWK_ARRAY_SIZE(domains), 30 .fast_channels_alarm_id = FWK_ID_NONE_INIT, 31 }), 32 }; 33