microsoft/mu_feature_ffa
Publicmirrored from https://github.com/microsoft/mu_feature_ffaAvailable
FfaFeaturePkg/Library/PlatformFfaInterruptLibNull/PlatformFfaInterruptLib.c
27lines · modeblame
1d8fffe3Kun Qin1 years ago | 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 | **/ | |
| 20 | VOID | |
| 21 | EFIAPI | |
| 22 | SecurePartitionInterruptHandler ( | |
| 23 | UINT32 InterruptId | |
| 24 | ) | |
| 25 | { | |
| 26 | DEBUG ((DEBUG_INFO, "%a Received interrupt ID 0x%x\n", __func__, InterruptId)); | |
| 27 | } |