1 /*
2  * Arm SCP/MCP Software
3  * Copyright (c) 2018-2022, Arm Limited and Contributors. All rights reserved.
4  *
5  * SPDX-License-Identifier: BSD-3-Clause
6  */
7 
8 #include "n1sdp_mcp_system_mmap.h"
9 
10 #include <n1sdp_fip.h>
11 
12 #include <mod_fip.h>
13 #include <mod_n1sdp_rom.h>
14 
15 #include <fwk_module.h>
16 
17 const struct fwk_module_config config_n1sdp_rom = {
18     .data = &((struct n1sdp_rom_config){
19         .fip_base_address = MCP_QSPI_FLASH_BASE_ADDR,
20         .fip_nvm_size = MCP_QSPI_FLASH_SIZE,
21         .ramfw_base = MCP_RAM0_BASE,
22         .image_type =
23             (enum mod_fip_toc_entry_type)MOD_N1SDP_FIP_TOC_ENTRY_MCP_BL2,
24     })
25 };
26