blob: 9e05fb07b14b1b1a01b2cbf843caa093716e229e [file] [log] [blame]
/** @file
Arm Ffa library code for StandaloneMmCore.
Copyright (c) 2024, Arm Limited. All rights reserved.<BR>
SPDX-License-Identifier: BSD-2-Clause-Patent
@par Glossary:
- FF-A - Firmware Framework for Arm A-profile
@par Reference(s):
- Arm Firmware Framework for Arm A-Profile [https://developer.arm.com/documentation/den0077/latest]
**/
#include <PiMm.h>
#include <Library/ArmLib.h>
#include <Library/ArmSmcLib.h>
#include <Library/ArmFfaLib.h>
#include <Library/BaseLib.h>
#include <Library/BaseMemoryLib.h>
#include <Library/DebugLib.h>
#include "ArmFfaCommon.h"
#include "ArmFfaRxTxMap.h"
STATIC UINT16 mPartId;
STATIC BOOLEAN mIsFfaSupported;
/**
ArmFfaLib Constructor.
@param [in] ImageHandle The firmware allocated handle for the EFI image
@param [in] MmSystemTable A pointer to the Management mode System Table
@retval EFI_SUCCESS Success
@retval Others Error
**/
EFI_STATUS
EFIAPI
ArmFfaStandaloneMmLibConstructor (
IN EFI_HANDLE ImageHandle,
IN EFI_MM_SYSTEM_TABLE *MmSystemTable
)
{
EFI_STATUS Status;
Status = ArmFfaLibCommonInit (&mPartId, &mIsFfaSupported);
if (!mIsFfaSupported) {
/*
* Unsupported means FF-A interface isn't available.
* However, for Standalone MM modules, FF-A availability is not required.
* i.e. Standalone MM could use SpmMm as a legitimate protocol.
* Thus, returning EFI_SUCCESS here to avoid the entrypoint to assert.
*/
return EFI_SUCCESS;
}
if (EFI_ERROR (Status)) {
DEBUG ((DEBUG_ERROR, "%a failed. Status = %r\n", __func__, Status));
}
Status = ArmFfaLibRxTxMap ();
if (Status == EFI_ALREADY_STARTED) {
/*
* When first Stmm instance (most likely core) which uses ArmFfaLib loaded,
* It already maps Rx/Tx buffer.
* From Next Stmm instance which uses ArmFfaLib it doesn't need to map Rx/Tx
* buffer again but it uses the mapped one.
*/
Status = EFI_SUCCESS;
} else if (Status == EFI_UNSUPPORTED) {
/*
* StandaloneMm can only act as a service provider,
* and its primary use case is the secure variable service.
* In this case, it does not require Rx/Tx buffers,
* so treating EFI_UNSUPPORTED as a valid return value is acceptable.
*
* Any service that requires Rx/Tx buffers
* MUST first verify their availability by calling
* ArmFfaLibGetRxTxBuffers().
*/
Status = EFI_SUCCESS;
DEBUG ((DEBUG_WARN, "%a: Rx/Tx buffer doesn't support.\n", __func__));
} else if (EFI_ERROR (Status)) {
DEBUG ((DEBUG_ERROR, "%a failed. Status = %r\n", __func__, Status));
}
return Status;
}
/**
Return partition or VM ID
@param[out] PartId The partition or VM ID
@retval EFI_SUCCESS Partition ID or VM ID returned
@retval Others Errors
**/
EFI_STATUS
EFIAPI
ArmFfaLibGetPartId (
OUT UINT16 *PartId
)
{
if (PartId != NULL) {
*PartId = mPartId;
}
return EFI_SUCCESS;
}
/**
Check FF-A support or not.
@retval TRUE Supported
@retval FALSE Not supported
**/
BOOLEAN
EFIAPI
IsFfaSupported (
IN VOID
)
{
return mIsFfaSupported;
}
/**
Callback for when Unmap is called to handle any post unmap
functionality.
**/
VOID
EFIAPI
UnmapCallback (
IN VOID
)
{
// Do nothing
}