mirror of
https://github.com/tianocore/edk2.git
synced 2025-08-26 22:07:55 +00:00

Move ArmMmuLib from ArmPkg to UefiCpuPkg for easy maintaining. Continuous-integration-options: PatchCheck.ignore-multi-package Signed-off-by: Ajan Zhong <ajan.zhong@newfw.com>
24 lines
433 B
C
24 lines
433 B
C
/** @file
|
|
Arm MMU library instance internal header file.
|
|
|
|
Copyright (C) Microsoft Corporation. All rights reserved.
|
|
|
|
SPDX-License-Identifier: BSD-2-Clause-Patent
|
|
|
|
**/
|
|
|
|
#ifndef ARM_MMU_LIB_INTERNAL_H_
|
|
#define ARM_MMU_LIB_INTERNAL_H_
|
|
|
|
typedef
|
|
VOID(
|
|
EFIAPI *ARM_REPLACE_LIVE_TRANSLATION_ENTRY
|
|
)(
|
|
IN UINT64 *Entry,
|
|
IN UINT64 Value,
|
|
IN UINT64 RegionStart,
|
|
IN BOOLEAN DisableMmu
|
|
);
|
|
|
|
#endif
|