1 /* 2 * Arm SCP/MCP Software 3 * Copyright (c) 2018-2021, Arm Limited and Contributors. All rights reserved. 4 * 5 * SPDX-License-Identifier: BSD-3-Clause 6 */ 7 8 #include "scp_system_mmap_scp.h" 9 10 #include <mod_synquacer_rom.h> 11 12 #include <fwk_module.h> 13 14 const struct fwk_module_config config_synquacer_rom = { 15 .data = &((struct synquacer_rom_config){ 16 .ramfw_base = SCP_RAM0_BASE, 17 .nor_base = SCP_RAMFW_ROM_BASE, 18 .load_ram_size = SCP_RAMFW_IMAGE_SIZE, 19 }) 20 }; 21