mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-08-14 00:17:02 +02:00
This patch also adds an initial RMM Boot Manifest (v0.1) for fvp platform. Signed-off-by: Javier Almansa Sobrino <javier.almansasobrino@arm.com> Change-Id: I1374f8f9cb207028f1820953cd2a5cf6d6c3b948
18 lines
528 B
C
18 lines
528 B
C
/*
|
|
* Copyright (c) 2021-2022, Arm Limited and Contributors. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#ifndef PLATFORM_TRP_H
|
|
#define PLATFORM_TRP_H
|
|
|
|
#include <services/rmm_core_manifest.h>
|
|
|
|
/*******************************************************************************
|
|
* Mandatory TRP functions (only if platform contains a TRP)
|
|
******************************************************************************/
|
|
void trp_early_platform_setup(rmm_manifest_t *manifest);
|
|
|
|
#endif /* PLATFORM_TRP_H */
|