ArmPlatformLibNullMem.c 735 B

12345678910111213141516171819202122232425262728
  1. /** @file
  2. *
  3. * Copyright (c) 2011, ARM Limited. All rights reserved.
  4. *
  5. * SPDX-License-Identifier: BSD-2-Clause-Patent
  6. *
  7. **/
  8. #include <Library/ArmPlatformLib.h>
  9. #include <Library/DebugLib.h>
  10. /**
  11. Return the Virtual Memory Map of your platform
  12. This Virtual Memory Map is used by MemoryInitPei Module to initialize the MMU on your platform.
  13. @param[out] VirtualMemoryMap Array of ARM_MEMORY_REGION_DESCRIPTOR describing a Physical-to-
  14. Virtual Memory mapping. This array must be ended by a zero-filled
  15. entry
  16. **/
  17. VOID
  18. ArmPlatformGetVirtualMemoryMap (
  19. IN ARM_MEMORY_REGION_DESCRIPTOR** VirtualMemoryMap
  20. )
  21. {
  22. ASSERT(0);
  23. }