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

#include <fwk_module.h>
#include <mod_rdn1e1_rom.h>
#include <scp_software_mmap.h>
#include <scp_rdn1e1_mmap_scp.h>

const struct fwk_module_config config_rdn1e1_rom = {
    .data = &((struct rdn1e1_rom_config) {
        .ramfw_base = SCP_RAM0_BASE,
        .nor_base = SCP_NOR_BASE,
        .load_ram_size = SCP_IMAGE_SIZE,
    })
};