/* * Arm SCP/MCP Software * Copyright (c) 2019-2021, Arm Limited and Contributors. All rights reserved. * * SPDX-License-Identifier: BSD-3-Clause */ #include #include #include #define J_ROM_INST DT_INST(0, arm_juno_rom) struct fwk_module_config config_dt_juno_rom = { .data = &(struct mod_juno_rom_config) { .ap_context_base = DT_PROP_BY_IDX(J_ROM_INST, ap_context, 0), .ap_context_size = DT_PROP_BY_IDX(J_ROM_INST, ap_context, 1), .ramfw_base = DT_PROP(J_ROM_INST, ram_fw_base), }, };