aboutsummaryrefslogtreecommitdiff
path: root/product/synquacer/module/synquacer_rom/src/mod_synquacer_rom.c
blob: 17e94ad43ef35f0b7b2afc9e29a614428f56fbeb (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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
/*
 * Arm SCP/MCP Software
 * Copyright (c) 2018-2020, Arm Limited and Contributors. All rights reserved.
 *
 * SPDX-License-Identifier: BSD-3-Clause
 */

#include <mod_synquacer_rom.h>

#include <fwk_event.h>
#include <fwk_id.h>
#include <fwk_interrupt.h>
#include <fwk_log.h>
#include <fwk_module.h>
#include <fwk_module_idx.h>
#include <fwk_status.h>
#include <fwk_thread.h>

#include <stdint.h>
#include <string.h>

void synquacer_system_init(void);

static const struct synquacer_rom_config *rom_config;

enum rom_event { ROM_EVENT_RUN, ROM_EVENT_COUNT };

/*
 * This function assumes that the RAM firmware image is located at the beginning
 * of the SCP SRAM. The reset handler will be at offset 0x4 (the second entry of
 * the vector table).
 */
static void jump_to_ramfw(void)
{
    uintptr_t const *reset_base = (uintptr_t *)(rom_config->ramfw_base + 0x4);
    void (*ramfw_reset_handler)(void);

    /*
     * Disable interrupts for the duration of the ROM firmware to RAM firmware
     * transition.
     */
    fwk_interrupt_global_disable();

    ramfw_reset_handler = (void (*)(void))(*reset_base);

    /*
     * Execute the RAM firmware's reset handler to pass control from ROM
     * firmware to the RAM firmware.
     */
    ramfw_reset_handler();
}

/*
 * Framework API
 */
static int synquacer_rom_init(
    fwk_id_t module_id,
    unsigned int element_count,
    const void *data)
{
    rom_config = data;

    synquacer_system_init();

    return FWK_SUCCESS;
}

static int synquacer_rom_start(fwk_id_t id)
{
    int status;
    struct fwk_event event = {
        .source_id = FWK_ID_MODULE(FWK_MODULE_IDX_SYNQUACER_ROM),
        .target_id = FWK_ID_MODULE(FWK_MODULE_IDX_SYNQUACER_ROM),
        .id = FWK_ID_EVENT(FWK_MODULE_IDX_SYNQUACER_ROM, ROM_EVENT_RUN),
    };

    status = fwk_thread_put_event(&event);

    return status;
}

static int synquacer_rom_process_event(
    const struct fwk_event *event,
    struct fwk_event *resp)
{
    FWK_LOG_INFO("[scp_romfw] Launch scp_ramfw");

    if (rom_config->load_ram_size != 0) {
        memcpy(
            (void *)rom_config->ramfw_base,
            (uint8_t *)rom_config->nor_base,
            rom_config->load_ram_size);
    }

    jump_to_ramfw();

    return FWK_SUCCESS;
}

/* Module descriptor */
const struct fwk_module module_synquacer_rom = {
    .name = "synquacer_ROM",
    .type = FWK_MODULE_TYPE_SERVICE,
    .event_count = ROM_EVENT_COUNT,
    .init = synquacer_rom_init,
    .start = synquacer_rom_start,
    .process_event = synquacer_rom_process_event,
};