mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-18 18:44:22 +00:00

This patch adds support for Morello platform. It is an initial port which includes only BL31 support as the System Control Processor (SCP) is expected to take the role of primary bootloader. Change-Id: I1ecbe5a14a2d487b2ecea3c1ca227f08473ed2dd Co-authored-by: Chandni Cherukuri <chandni.cherukuri@arm.com> Signed-off-by: Chandni Cherukuri <chandni.cherukuri@arm.com> Signed-off-by: Anurag Koul <anurag.koul@arm.com>
33 lines
1.1 KiB
C
33 lines
1.1 KiB
C
/*
|
|
* Copyright (c) 2020, Arm Limited. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
|
|
/*
|
|
* For MORELLO which supports FCM (with automatic interconnect enter/exit),
|
|
* we should not do anything in these interface functions.
|
|
* They are used to override the weak functions in cci drivers.
|
|
*/
|
|
|
|
/******************************************************************************
|
|
* Helper function to initialize ARM interconnect driver.
|
|
*****************************************************************************/
|
|
void plat_arm_interconnect_init(void)
|
|
{
|
|
}
|
|
|
|
/******************************************************************************
|
|
* Helper function to place current master into coherency
|
|
*****************************************************************************/
|
|
void plat_arm_interconnect_enter_coherency(void)
|
|
{
|
|
}
|
|
|
|
/******************************************************************************
|
|
* Helper function to remove current master from coherency
|
|
*****************************************************************************/
|
|
void plat_arm_interconnect_exit_coherency(void)
|
|
{
|
|
}
|