1 /*
2  * Arm SCP/MCP Software
3  * Copyright (c) 2020-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 "morello_scp_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_CLUS0] = {},
19     [DVFS_ELEMENT_IDX_CLUS1] = {},
20 };
21 
22 struct fwk_module_config config_scmi_perf = {
23     .data =
24         &(struct mod_scmi_perf_config){
25             .domains = &domains,
26             .perf_doms_count = FWK_ARRAY_SIZE(domains),
27             .fast_channels_alarm_id = FWK_ID_NONE_INIT,
28         },
29 };
30