1 /*
2  * Arm SCP/MCP Software
3  * Copyright (c) 2020-2022, Arm Limited and Contributors. All rights reserved.
4  *
5  * SPDX-License-Identifier: BSD-3-Clause
6  */
7 
8 #include "morello_mcp_system_mmap.h"
9 
10 #include <morello_fip.h>
11 
12 #include <mod_fip.h>
13 #include <mod_morello_rom.h>
14 
15 #include <fwk_module.h>
16 
17 const struct fwk_module_config config_morello_rom = {
18     .data = &((struct morello_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_MORELLO_FIP_TOC_ENTRY_MCP_BL2,
24     })
25 };
26