aboutsummaryrefslogtreecommitdiff
path: root/product/rddaniel/scp_ramfw/config_mock_psu.c
blob: 3c72b9ad704543e3ad377b0e8c12173a2a8d58aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/*
 * Arm SCP/MCP Software
 * Copyright (c) 2017-2019, Arm Limited and Contributors. All rights reserved.
 *
 * SPDX-License-Identifier: BSD-3-Clause
 */

#include <fwk_element.h>
#include <fwk_module.h>
#include <mod_mock_psu.h>

static const struct fwk_element element_table[] = {
    {
        .name = "DVFS_GROUP0",
        .data =
            &(const struct mod_mock_psu_device_config){
                .default_enabled = true,
                .default_voltage = 100,
            },
    },
    {
        .name = "DVFS_GROUP1",
        .data =
            &(const struct mod_mock_psu_device_config){
                .default_enabled = true,
                .default_voltage = 100,
            },
    },
    { 0 }
};

static const struct fwk_element *get_element_table(fwk_id_t module_id)
{
    return element_table;
}

const struct fwk_module_config config_mock_psu = {
    .get_element_table = get_element_table,
};