blob: 301ea84f0bd6fcf0ef98fc47c640330830cc3b62 [file] [log] [blame]
Nariman Poushinc703f902018-03-07 10:29:57 +00001/*
2 * Copyright (c) 2018, ARM Limited and Contributors. All rights reserved.
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7/*
8 * As the SGM platform supports FCM (with automatic interconnect
9 * enter/exit), we should not do anything in these interface functions.
10 * They are used to override the weak functions in cci drivers.
11 */
12
13/******************************************************************************
14 * Helper function to initialize ARM interconnect driver.
15 *****************************************************************************/
16void plat_arm_interconnect_init(void)
17{
18}
19
20/******************************************************************************
21 * Helper function to place current master into coherency
22 *****************************************************************************/
23void plat_arm_interconnect_enter_coherency(void)
24{
25}
26
27/******************************************************************************
28 * Helper function to remove current master from coherency
29 *****************************************************************************/
30void plat_arm_interconnect_exit_coherency(void)
31{
32}