1 | ## @file
|
---|
2 | # IsaAcpi driver to install EFI_ISA_ACPI_PROTOCOL.
|
---|
3 | #
|
---|
4 | # Copyright (c) 2005 - 2015, Intel Corporation. All rights reserved.<BR>
|
---|
5 | # This program and the accompanying materials
|
---|
6 | # are licensed and made available under the terms and conditions of the BSD License
|
---|
7 | # which accompanies this distribution. The full text of the license may be found at
|
---|
8 | # http://opensource.org/licenses/bsd-license.php
|
---|
9 | #
|
---|
10 | # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
---|
11 | # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
---|
12 | #
|
---|
13 | #
|
---|
14 | ##
|
---|
15 |
|
---|
16 | [Defines]
|
---|
17 | INF_VERSION = 0x00010005
|
---|
18 | BASE_NAME = IsaAcpi
|
---|
19 | MODULE_UNI_FILE = IsaAcpi.uni
|
---|
20 | FILE_GUID = 38A0EC22-FBE7-4911-8BC1-176E0D6C1DBD
|
---|
21 | MODULE_TYPE = UEFI_DRIVER
|
---|
22 | VERSION_STRING = 1.0
|
---|
23 |
|
---|
24 | ENTRY_POINT = PcatIsaAcpiDriverEntryPoint
|
---|
25 |
|
---|
26 | [Packages]
|
---|
27 | MdePkg/MdePkg.dec
|
---|
28 | IntelFrameworkModulePkg/IntelFrameworkModulePkg.dec
|
---|
29 | PcAtChipsetPkg/PcAtChipsetPkg.dec
|
---|
30 |
|
---|
31 | [LibraryClasses]
|
---|
32 | UefiDriverEntryPoint
|
---|
33 | UefiBootServicesTableLib
|
---|
34 | UefiLib
|
---|
35 | BaseMemoryLib
|
---|
36 | PcdLib
|
---|
37 |
|
---|
38 | [Sources]
|
---|
39 | PcatIsaAcpi.h
|
---|
40 | PcatIsaAcpi.c
|
---|
41 | IsaAcpi.c
|
---|
42 | ComponentName.c
|
---|
43 |
|
---|
44 | [Protocols]
|
---|
45 | gEfiPciIoProtocolGuid ## TO_START
|
---|
46 | gEfiIsaAcpiProtocolGuid ## BY_START
|
---|
47 |
|
---|
48 | [Pcd]
|
---|
49 | gPcAtChipsetPkgTokenSpaceGuid.PcdIsaAcpiCom1Enable ## SOMETIMES_CONSUMES
|
---|
50 | gPcAtChipsetPkgTokenSpaceGuid.PcdIsaAcpiCom2Enable ## SOMETIMES_CONSUMES
|
---|
51 | gPcAtChipsetPkgTokenSpaceGuid.PcdIsaAcpiPs2KeyboardEnable ## SOMETIMES_CONSUMES
|
---|
52 | gPcAtChipsetPkgTokenSpaceGuid.PcdIsaAcpiPs2MouseEnable ## SOMETIMES_CONSUMES
|
---|
53 | gPcAtChipsetPkgTokenSpaceGuid.PcdIsaAcpiFloppyAEnable ## SOMETIMES_CONSUMES
|
---|
54 | gPcAtChipsetPkgTokenSpaceGuid.PcdIsaAcpiFloppyBEnable ## SOMETIMES_CONSUMES
|
---|
55 | [UserExtensions.TianoCore."ExtraFiles"]
|
---|
56 | IsaAcpiExtra.uni
|
---|