aboutsummaryrefslogtreecommitdiff
path: root/product/rddanielxlr/scp_romfw/config_scp_rom.c
blob: 93b418118fd589533a1f20724dd5c5b16289fe4d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*
 * Arm SCP/MCP Software
 * Copyright (c) 2020, Arm Limited and Contributors. All rights reserved.
 *
 * SPDX-License-Identifier: BSD-3-Clause
 */

#include "scp_mmap.h"
#include "scp_software_mmap.h"

#include <mod_mscp_rom.h>

#include <fwk_module.h>

const struct fwk_module_config config_mscp_rom = {
    .data = &((struct mscp_rom_config) {
        .ramfw_ram_base = SCP_ITC_RAM_BASE,
        .ramfw_flash_base = SCP_RAMFW_IMAGE_FLASH_BASE,
        .ramfw_flash_size = SCP_RAMFW_IMAGE_FLASH_SIZE,
    })
};