aboutsummaryrefslogtreecommitdiff
path: root/product/rdn1e1/mcp_romfw/config_rdn1e1_rom.c
blob: 3c135122bafd469fbd74821cb30a8b8d8d4cc8fc (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) 2017-2020, Arm Limited and Contributors. All rights reserved.
 *
 * SPDX-License-Identifier: BSD-3-Clause
 */

#include "mcp_rdn1e1_mmap_mcp.h"

#include <mod_rdn1e1_rom.h>

#include <fwk_module.h>

#include <mcp_software_mmap.h>
const struct fwk_module_config config_rdn1e1_rom = {
    .data = &((struct rdn1e1_rom_config) {
        .ramfw_base = MCP_RAM0_BASE,
	.nor_base = MCP_NOR_BASE,
        .load_ram_size = MCP_IMAGE_SIZE,
    })
};