1 ## @file 2 # I/O Library instance based on EFI_CPU_IO2_PROTOCOL. 3 # 4 # I/O Library implementation that uses the CPU I/O2 Protocol for I/O and MMIO operations. 5 # 6 # Copyright (c) 2010 - 2014, Intel Corporation. All rights reserved.<BR> 7 # This program and the accompanying materials are licensed and made available 8 # under the terms and conditions of the BSD License which accompanies this 9 # distribution. The full text of the license may be found at 10 # http://opensource.org/licenses/bsd-license.php. 11 # 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 = DxeIoLibCpuIo2 21 MODULE_UNI_FILE = DxeIoLibCpuIo2.uni 22 FILE_GUID = 33D33BF3-349E-4768-9459-836A9F7558FB 23 MODULE_TYPE = DXE_DRIVER 24 VERSION_STRING = 1.0 25 LIBRARY_CLASS = IoLib|DXE_DRIVER DXE_SAL_DRIVER 26 CONSTRUCTOR = IoLibConstructor 27 28 # 29 # The following information is for reference only and not required by the build tools. 30 # 31 # VALID_ARCHITECTURES = IA32 X64 IPF EBC 32 # 33 34 [Sources] 35 IoLibMmioBuffer.c 36 DxeCpuIo2LibInternal.h 37 IoHighLevel.c 38 IoLib.c 39 40 [Packages] 41 MdePkg/MdePkg.dec 42 43 [LibraryClasses] 44 BaseLib 45 DebugLib 46 UefiBootServicesTableLib 47 48 [Protocols] 49 gEfiCpuIo2ProtocolGuid ## CONSUMES 50 51 [Depex] 52 gEfiCpuIo2ProtocolGuid 53 54