microsoft/mu_feature_ffa

Public

mirrored from https://github.com/microsoft/mu_feature_ffaAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
v0.1.2

Branches

Tags

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

Clone

HTTPS

Download ZIP

FfaFeaturePkg/Library/PlatformFfaInterruptLibNull/PlatformFfaInterruptLib.c

27lines · modeblame

1d8fffe3Kun Qin1 years ago1/** @file
2Platform layer for the secure partition interrupt handler using FF-A.
3
4Copyright (c), Microsoft Corporation.
5SPDX-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/**
15Secure Partition interrupt handler.
16
17@param InterruptId The interrupt ID.
18
19**/
20VOID
21EFIAPI
22SecurePartitionInterruptHandler (
23UINT32 InterruptId
24)
25{
26DEBUG ((DEBUG_INFO, "%a Received interrupt ID 0x%x\n", __func__, InterruptId));
27}