blob: e9cd81256343278b02127bfc2da1bebb1ebdb27a [file] [log] [blame]
Nariman Poushinb44cfc62018-02-26 06:52:04 +00001/*
Ambroise Vincent609e0532019-02-13 15:58:00 +00002 * Copyright (c) 2018-2019, ARM Limited and Contributors. All rights reserved.
Nariman Poushinb44cfc62018-02-26 06:52:04 +00003 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7#include <arch_helpers.h>
Antonio Nino Diaz09d40e02018-12-14 00:18:21 +00008#include <common/debug.h>
Ambroise Vincent609e0532019-02-13 15:58:00 +00009#include <plat/arm/common/plat_arm.h>
Nariman Poushinb44cfc62018-02-26 06:52:04 +000010
11/*
12 * For SGI575 which support FCM (with automatic interconnect enter/exit),
13 * we should not do anything in these interface functions.
14 * They are used to override the weak functions in cci drivers.
15 */
16
17/******************************************************************************
18 * Helper function to initialize ARM interconnect driver.
19 *****************************************************************************/
Daniel Boulby4d010d02018-09-18 13:26:03 +010020void __init plat_arm_interconnect_init(void)
Nariman Poushinb44cfc62018-02-26 06:52:04 +000021{
22}
23
24/******************************************************************************
25 * Helper function to place current master into coherency
26 *****************************************************************************/
27void plat_arm_interconnect_enter_coherency(void)
28{
29}
30
31/******************************************************************************
32 * Helper function to remove current master from coherency
33 *****************************************************************************/
34void plat_arm_interconnect_exit_coherency(void)
35{
36}