aboutsummaryrefslogtreecommitdiff
path: root/product/sgi575/scp_ramfw/config_scmi_system_power.c
blob: 821cb7d2acdc06ce59dbacda78309d0d8c5dc780 (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) 2018-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
    }),
};