1 /* 2 * Copyright (c) 2018, ARM Limited and Contributors. All rights reserved. 3 * 4 * SPDX-License-Identifier: BSD-3-Clause 5 */ 6 7 #include "../../css/drivers/scmi/scmi.h" 8 #include "../../css/drivers/mhu/css_mhu_doorbell.h" 9 #include <platform_def.h> 10 11 static scmi_channel_plat_info_t n1sdp_scmi_plat_info = { 12 .scmi_mbx_mem = N1SDP_SCMI_PAYLOAD_BASE, 13 .db_reg_addr = PLAT_CSS_MHU_BASE + CSS_SCMI_MHU_DB_REG_OFF, 14 .db_preserve_mask = 0xfffffffe, 15 .db_modify_mask = 0x1, 16 .ring_doorbell = &mhu_ring_doorbell, 17 }; 18 19 scmi_channel_plat_info_t *plat_css_get_scmi_info() 20 { 21 return &n1sdp_scmi_plat_info; 22 } 23