| 1 | ## @file\r |
| 2 | # Memory Allocation Library instance dedicated to MM Core.\r |
| 3 | # The implementation borrows the MM Core Memory Allocation services as the primitive\r |
| 4 | # for memory allocation instead of using MM System Table servces in an indirect way.\r |
| 5 | # It is assumed that this library instance must be linked with MM Core in this package.\r |
| 6 | #\r |
| 7 | # Copyright (c) 2010 - 2015, Intel Corporation. All rights reserved.<BR>\r |
| 8 | # Copyright (c) 2016 - 2018, ARM Limited. All rights reserved.<BR>\r |
| 9 | #\r |
| 10 | # This program and the accompanying materials\r |
| 11 | # are licensed and made available under the terms and conditions of the BSD License\r |
| 12 | # which accompanies this distribution. The full text of the license may be found at\r |
| 13 | # http://opensource.org/licenses/bsd-license.php\r |
| 14 | # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r |
| 15 | # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r |
| 16 | #\r |
| 17 | ##\r |
| 18 | \r |
| 19 | [Defines]\r |
| 20 | INF_VERSION = 0x0001001A\r |
| 21 | BASE_NAME = MemoryAllocationLib\r |
| 22 | FILE_GUID = DCDCBE1D-E760-4E1D-85B4-96E3F0439C41\r |
| 23 | MODULE_TYPE = MM_CORE_STANDALONE\r |
| 24 | VERSION_STRING = 1.0\r |
| 25 | PI_SPECIFICATION_VERSION = 0x00010032\r |
| 26 | LIBRARY_CLASS = MemoryAllocationLib|MM_CORE_STANDALONE\r |
| 27 | CONSTRUCTOR = MemoryAllocationLibConstructor\r |
| 28 | \r |
| 29 | #\r |
| 30 | # The following information is for reference only and not required by the build tools.\r |
| 31 | #\r |
| 32 | # VALID_ARCHITECTURES = IA32 X64\r |
| 33 | #\r |
| 34 | \r |
| 35 | [Sources]\r |
| 36 | StandaloneMmCoreMemoryAllocationLib.c\r |
| 37 | StandaloneMmCoreMemoryAllocationServices.h\r |
| 38 | \r |
| 39 | [Packages]\r |
| 40 | MdePkg/MdePkg.dec\r |
| 41 | StandaloneMmPkg/StandaloneMmPkg.dec\r |
| 42 | \r |
| 43 | [LibraryClasses]\r |
| 44 | BaseMemoryLib\r |
| 45 | DebugLib\r |
| 46 | HobLib\r |
| 47 | \r |
| 48 | [Guids]\r |
| 49 | gEfiMmPeiMmramMemoryReserveGuid\r |