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/Library/PlatformFfaInterruptLibNull/PlatformFfaInterruptLib.c

27lines · 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#include <Base.h>
10
11#include <Library/DebugLib.h>
12#include <Library/PlatformFfaInterruptLib.h>
13
14/**
15 Secure Partition interrupt handler.
16
17 @param InterruptId The interrupt ID.
18
19**/
20VOID
21EFIAPI
22SecurePartitionInterruptHandler (
23 UINT32 InterruptId
24 )
25{
26 DEBUG ((DEBUG_INFO, "%a Received interrupt ID 0x%x\n", __func__, InterruptId));
27}
28