mirror of
https://github.com/acidanthera/audk.git
synced 2025-08-20 09:08:10 +02:00
REF: https://bugzilla.tianocore.org/show_bug.cgi?id=3737 Apply uncrustify changes to .c/.h files in the ArmVirtPkg package Cc: Andrew Fish <afish@apple.com> Cc: Leif Lindholm <leif@nuviainc.com> Cc: Michael D Kinney <michael.d.kinney@intel.com> Signed-off-by: Michael Kubacki <michael.kubacki@microsoft.com> Reviewed-by: Sami Mujawar <sami.mujawar@arm.com>
36 lines
949 B
C
36 lines
949 B
C
/** @file
|
|
|
|
Copyright (c) 2011-2013, ARM Limited. All rights reserved.
|
|
Copyright (c) 2017, Linaro, Ltd. All rights reserved.
|
|
|
|
SPDX-License-Identifier: BSD-2-Clause-Patent
|
|
|
|
**/
|
|
|
|
#ifndef _ARM_VIRT_MEMINFO_LIB_H_
|
|
#define _ARM_VIRT_MEMINFO_LIB_H_
|
|
|
|
#include <Base.h>
|
|
#include <Library/ArmLib.h>
|
|
|
|
/**
|
|
Return the Virtual Memory Map of your platform
|
|
|
|
This Virtual Memory Map is used by MemoryInitPei Module to initialize the MMU
|
|
on your platform.
|
|
|
|
@param[out] VirtualMemoryMap Array of ARM_MEMORY_REGION_DESCRIPTOR
|
|
describing a Physical-to-Virtual Memory
|
|
mapping. This array must be ended by a
|
|
zero-filled entry. The allocated memory
|
|
will not be freed.
|
|
|
|
**/
|
|
VOID
|
|
EFIAPI
|
|
ArmVirtGetMemoryMap (
|
|
OUT ARM_MEMORY_REGION_DESCRIPTOR **VirtualMemoryMap
|
|
);
|
|
|
|
#endif
|