1 /*
2  * Arm SCP/MCP Software
3  * Copyright (c) 2021, Arm Limited and Contributors. All rights reserved.
4  *
5  * SPDX-License-Identifier: BSD-3-Clause
6  */
7 
8 #include "scp_mmap.h"
9 #include "tc1_sds.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_TRUSTED_RAM_BASE,
17     .source_size = 512 * 1024,
18     .destination_base = SCP_RAM_BASE,
19     .destination_size = SCP_RAM_SIZE,
20     .sds_struct_id = TC1_SDS_BOOTLOADER,
21 };
22 
23 struct fwk_module_config config_bootloader = {
24     .data = &bootloader_module_config,
25 };
26