aboutsummaryrefslogtreecommitdiff
path: root/product/sgm776/scp_ramfw/config_mhu.c
blob: 9ba401fe62005cf2694f5ab4a74f8f3698145080 (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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
/*
 * Arm SCP/MCP Software
 * Copyright (c) 2015-2020, Arm Limited and Contributors. All rights reserved.
 *
 * SPDX-License-Identifier: BSD-3-Clause
 */

#include <fwk_element.h>
#include <fwk_id.h>
#include <fwk_module.h>
#include <mod_mhu2.h>
#include <sgm776_irq.h>
#include <sgm776_mhu.h>
#include <sgm776_mmap.h>

static const struct fwk_element mhu_element_table[] = {
    [SGM776_MHU_DEVICE_IDX_S] = {
        .name = "MHU_S",
        .sub_element_count = 1,
        .data = &((struct mod_mhu2_channel_config) {
            .irq = MHU_SECURE_IRQ,
            .recv = MHU_RECV_S_BASE,
            .send = MHU_SEND_S_BASE,
            .channel = 0,
        })
    },
    [SGM776_MHU_DEVICE_IDX_NS_H] = {
        .name = "MHU_NS_HIGH",
        .sub_element_count = 1,
        .data = &((struct mod_mhu2_channel_config) {
            .irq = MHU_HIGH_PRIO_IRQ,
            .recv = MHU_RECV_NS_BASE,
            .send = MHU_SEND_NS_BASE,
            .channel = 0,
        })
    },
    [SGM776_MHU_DEVICE_IDX_NS_L] = {
        .name = "MHU_NS_LOW",
        .sub_element_count = 1,
        .data = &((struct mod_mhu2_channel_config) {
            .irq = MHU_LOW_PRIO_IRQ,
            .recv = MHU_RECV_NS_BASE,
            .send = MHU_SEND_NS_BASE,
            .channel = 1,
        })
    },
    [SGM776_MHU_DEVICE_IDX_COUNT] = { 0 },
};

static const struct fwk_element *mhu_get_element_table(fwk_id_t module_id)
{
    return mhu_element_table;
}

struct fwk_module_config config_mhu2 = {
    .get_element_table = mhu_get_element_table,
};