1 /*
2  * Arm SCP/MCP Software
3  * Copyright (c) 2019-2022, Arm Limited and Contributors. All rights reserved.
4  *
5  * SPDX-License-Identifier: BSD-3-Clause
6  */
7 
8 #include <mod_n1sdp_c2c_i2c.h>
9 
10 #include <fwk_id.h>
11 #include <fwk_module.h>
12 #include <fwk_module_idx.h>
13 
14 const struct fwk_module_config config_n1sdp_c2c = {
15     .data = &((struct n1sdp_c2c_dev_config){
16         .i2c_id = FWK_ID_ELEMENT_INIT(FWK_MODULE_IDX_CDNS_I2C, 1),
17         .target_addr = 0x14,
18         .ccix_id = FWK_ID_ELEMENT_INIT(FWK_MODULE_IDX_N1SDP_PCIE, 1),
19     }),
20 };
21