blob: d941bfe0f83814905d9b80887f8c4d0047bf0ade [file] [log] [blame]
Chandni Cherukurif3a6cab2020-09-22 18:56:25 +05301/*
2 * Copyright (c) 2020, Arm Limited. All rights reserved.
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7
8/*
9 * For MORELLO which supports FCM (with automatic interconnect enter/exit),
10 * we should not do anything in these interface functions.
11 * They are used to override the weak functions in cci drivers.
12 */
13
14/******************************************************************************
15 * Helper function to initialize ARM interconnect driver.
16 *****************************************************************************/
17void plat_arm_interconnect_init(void)
18{
19}
20
21/******************************************************************************
22 * Helper function to place current master into coherency
23 *****************************************************************************/
24void plat_arm_interconnect_enter_coherency(void)
25{
26}
27
28/******************************************************************************
29 * Helper function to remove current master from coherency
30 *****************************************************************************/
31void plat_arm_interconnect_exit_coherency(void)
32{
33}