aboutsummaryrefslogtreecommitdiff
path: root/product/rdn1e1/scp_ramfw/config_scmi_system_power.c
blob: f1767fe20fa153f7d6b517f594db1df82dd46977 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/*
 * Arm SCP/MCP Software
 * Copyright (c) 2017-2020, Arm Limited and Contributors. All rights reserved.
 *
 * SPDX-License-Identifier: BSD-3-Clause
 */

#include <mod_scmi_system_power.h>
#include <mod_system_power.h>

#include <fwk_module.h>

const struct fwk_module_config config_scmi_system_power = {
    .data = &((struct mod_scmi_system_power_config){
        .system_view = MOD_SCMI_SYSTEM_VIEW_FULL,
        .system_suspend_state = MOD_SYSTEM_POWER_POWER_STATE_SLEEP0,
        .alarm_id = FWK_ID_NONE_INIT }),
};