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