microsoft/mu_feature_ffa
Publicmirrored fromhttps://github.com/microsoft/mu_feature_ffaAvailable
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 | **/ |
| 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 | } |
| 28 | |