1 /*
2  * Renesas SCP/MCP Software
3  * Copyright (c) 2020-2021, Renesas Electronics Corporation. All rights
4  * reserved.
5  *
6  * SPDX-License-Identifier: BSD-3-Clause
7  */
8 
9 #include <mod_rcar_system.h>
10 #include <mod_system_power.h>
11 
12 #include <fwk_id.h>
13 #include <fwk_interrupt.h>
14 #include <fwk_macros.h>
15 #include <fwk_module.h>
16 #include <fwk_module_idx.h>
17 
18 const struct fwk_module_config config_rcar_system_power = {
19     .data = &((struct mod_system_power_config){
20         .soc_wakeup_irq = FWK_INTERRUPT_NONE,
21         .driver_id = FWK_ID_MODULE_INIT(FWK_MODULE_IDX_RCAR_SYSTEM),
22         .driver_api_id = FWK_ID_API_INIT(
23             FWK_MODULE_IDX_RCAR_SYSTEM,
24             MOD_RCAR_SYSTEM_API_IDX_SYSTEM_POWER_DRIVER) })
25 };
26