1 /*
2  * Arm SCP/MCP Software
3  * Copyright (c) 2019-2021, Arm Limited and Contributors. All rights reserved.
4  *
5  * SPDX-License-Identifier: BSD-3-Clause
6  */
7 
8 #include "juno_sds.h"
9 #include "scp_mmap.h"
10 #include "system_mmap.h"
11 
12 #include <mod_bootloader.h>
13 
14 #include <fwk_module.h>
15 
16 static const struct mod_bootloader_config bootloader_module_config = {
17     .source_base = TRUSTED_RAM_BASE,
18     .source_size = 256 * 1024,
19     .destination_base = SCP_RAM_BASE,
20     .destination_size = SCP_RAM_SIZE,
21     .sds_struct_id = (uint32_t)JUNO_SDS_BOOTLOADER,
22 };
23 
24 struct fwk_module_config config_bootloader = {
25     .data = &bootloader_module_config,
26 };
27