1 /*
2  * Arm SCP/MCP Software
3  * Copyright (c) 2020-2021, Arm Limited and Contributors. All rights reserved.
4  *
5  * SPDX-License-Identifier: BSD-3-Clause
6  */
7 
8 #include "mcp_sgi575_mmap_mcp.h"
9 #include "mcp_software_mmap.h"
10 
11 #include <mod_bootloader.h>
12 
13 #include <fwk_module.h>
14 
15 static const struct mod_bootloader_config bootloader_module_config = {
16     .source_base = MCP_NOR_BASE,
17     .source_size = MCP_IMAGE_SIZE,
18     .destination_base = MCP_RAM0_BASE,
19     .destination_size = MCP_IMAGE_SIZE,
20 };
21 
22 struct fwk_module_config config_bootloader = {
23     .data = &bootloader_module_config,
24 };
25