mirror of
https://github.com/edk2-porting/edk2-msm
synced 2025-05-14 13:12:17 +00:00
15 lines
473 B
C
15 lines
473 B
C
#ifndef _MEMORY_MAP_HELPER_LIB_H_
|
|
#define _MEMORY_MAP_HELPER_LIB_H_
|
|
|
|
#include <Library/PlatformMemoryMapLib.h>
|
|
|
|
EFI_STATUS EFIAPI LocateMemoryMapAreaByName(
|
|
CHAR8 *MemoryMapAreaName,
|
|
ARM_MEMORY_REGION_DESCRIPTOR_EX *MemoryDescriptor);
|
|
|
|
EFI_STATUS EFIAPI LocateMemoryMapAreaByAddress(
|
|
EFI_PHYSICAL_ADDRESS MemoryMapAreaAddress,
|
|
ARM_MEMORY_REGION_DESCRIPTOR_EX *MemoryDescriptor);
|
|
|
|
#endif /* _MEMORY_MAP_HELPER_LIB_H_ */
|