microsoft/mu_feature_ffa

Public

mirrored fromhttps://github.com/microsoft/mu_feature_ffaAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
v0.1.4

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

FfaFeaturePkg/Include/Library/PlatformFfaInterruptLib.h

24lines · modecode

1/** @file
2 Platform layer for the secure partition interrupt handler using FF-A.
3
4 Copyright (c), Microsoft Corporation.
5 SPDX-License-Identifier: BSD-2-Clause-Patent
6
7**/
8
9#ifndef PLATFORM_FF_A_INTERRUPT_LIB_H_
10#define PLATFORM_FF_A_INTERRUPT_LIB_H_
11
12/**
13 Secure Partition interrupt handler.
14
15 @param InterruptId The interrupt ID.
16
17**/
18VOID
19EFIAPI
20SecurePartitionInterruptHandler (
21 UINT32 InterruptId
22 );
23
24#endif /* PLATFORM_FF_A_INTERRUPT_LIB_H_ */
25