Home | History | Annotate | Download | only in UncachedMemoryAllocationLib
      1 #/** @file
      2 #
      3 #  UncachedMemoryAllocation lib that uses DXE Service to change cachability for
      4 #  a buffer.
      5 #
      6 # Copyright (c) 2008 - 2010, Apple Inc. All rights reserved.<BR>
      7 #
      8 #  This program and the accompanying materials
      9 #  are licensed and made available under the terms and conditions of the BSD License
     10 #  which accompanies this distribution. The full text of the license may be found at
     11 #  http://opensource.org/licenses/bsd-license.php
     12 #  THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
     13 #  WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
     14 #
     15 #
     16 #**/
     17 
     18 [Defines]
     19   INF_VERSION                    = 0x00010005
     20   BASE_NAME                      = UncachedMemoryAllocationLib
     21   FILE_GUID                      = DC101A1A-7525-429B-84AF-EEAA630E576C
     22   MODULE_TYPE                    = DXE_DRIVER
     23   VERSION_STRING                 = 1.0
     24   LIBRARY_CLASS                  = UncachedMemoryAllocationLib
     25 
     26   DESTRUCTOR                     = UncachedMemoryAllocationLibDestructor
     27 
     28 [Sources.common]
     29   UncachedMemoryAllocationLib.c
     30 
     31 [Packages]
     32   ArmPkg/ArmPkg.dec
     33   MdePkg/MdePkg.dec
     34 
     35 [LibraryClasses]
     36   BaseLib
     37   ArmLib
     38   MemoryAllocationLib
     39   PcdLib
     40   DxeServicesTableLib
     41   CacheMaintenanceLib
     42 
     43 [Pcd]
     44   gArmTokenSpaceGuid.PcdArmFreeUncachedMemorySizeThreshold
     45