/* * Arm SCP/MCP Software * Copyright (c) 2018-2021, Arm Limited and Contributors. All rights reserved. * * SPDX-License-Identifier: BSD-3-Clause */ #include "config_clock.h" #include "n1sdp_scp_software_mmap.h" #include #include #include #include /* * AP Context module configuration */ static const struct mod_apcontext_config apcontext_data = { .base = SCP_AP_CONTEXT_BASE, .size = SCP_AP_CONTEXT_SIZE, .clock_id = FWK_ID_ELEMENT_INIT(FWK_MODULE_IDX_CLOCK, CLOCK_IDX_INTERCONNECT), }; struct fwk_module_config config_apcontext = { .data = &apcontext_data, };