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_software_mmap.h" 9 10 #include <mod_bootloader.h> 11 12 #include <fwk_module.h> 13 14 static const struct mod_bootloader_config bootloader_module_config = { 15 .source_base = MCP_RAMFW_IMAGE_FLASH_BASE, 16 .source_size = MCP_RAMFW_IMAGE_FLASH_SIZE, 17 .destination_base = MCP_ITC_RAM_BASE, 18 .destination_size = MCP_RAMFW_IMAGE_FLASH_SIZE, 19 }; 20 21 struct fwk_module_config config_bootloader = { 22 .data = &bootloader_module_config, 23 }; 24