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

#include <fwk_module.h>
#include <mod_n1sdp_flash.h>
#include <mod_n1sdp_rom.h>
#include <n1sdp_scp_system_mmap.h>

const struct fwk_module_config config_n1sdp_rom = {
    .data = &((struct n1sdp_rom_config) {
        .ramfw_base = SCP_RAM0_BASE,
        .image_type = MOD_N1SDP_FIP_TYPE_SCP_BL2,
    })
};