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