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 "synquacer_mmap.h"
9 
10 #include <mod_ccn512.h>
11 
12 #include <fwk_module.h>
13 
14 #include <stddef.h>
15 
16 /*
17  * CCN512 module
18  */
19 struct fwk_module_config config_ccn512 = {
20     .data = &((struct mod_ccn512_module_config){
21         .reg_base = (ccn512_reg_t *)CCN512_BASE,
22     }),
23 };
24