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 "scp_rdn1e1_mmap_scp.h" 9 #include "scp_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 = SCP_NOR_BASE, 17 .source_size = SCP_IMAGE_SIZE, 18 .destination_base = SCP_RAM0_BASE, 19 .destination_size = SCP_IMAGE_SIZE, 20 }; 21 22 struct fwk_module_config config_bootloader = { 23 .data = &bootloader_module_config, 24 }; 25