Commit | Line | Data |
---|---|---|
9834b6c1 RN |
1 | ## @file\r |
2 | # ISA Bus driver to manage the child devices attached to the ISA Host Controller.\r | |
3 | #\r | |
4 | # This driver follows UEFI driver model and layers on ISA HC protocol defined\r | |
5 | # in PI spec 1.2.1. It consumes the ISA Host Controller protocol produced by\r | |
6 | # the ISA Host Controller and installs the ISA Host Controller Service Binding\r | |
7 | # protocol on the ISA Host Controller's handle.\r | |
8 | #\r | |
9 | # Copyright (c) 2015, Intel Corporation. All rights reserved.<BR>\r | |
10 | #\r | |
11 | # This program and the accompanying materials\r | |
12 | # are licensed and made available under the terms and conditions of the BSD License\r | |
13 | # which accompanies this distribution. The full text of the license may be found at\r | |
14 | # http://opensource.org/licenses/bsd-license.php\r | |
15 | # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r | |
16 | # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r | |
17 | #\r | |
18 | #\r | |
19 | ##\r | |
20 | \r | |
21 | [Defines]\r | |
22 | INF_VERSION = 0x00010005\r | |
23 | BASE_NAME = IsaBusDxe\r | |
24 | FILE_GUID = DCBE6D66-D928-4138-8041-358F35CBCF80\r | |
25 | MODULE_TYPE = UEFI_DRIVER\r | |
26 | VERSION_STRING = 1.0\r | |
27 | ENTRY_POINT = InitializeIsaBus\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 IPF EBC\r | |
33 | #\r | |
34 | # DRIVER_BINDING = gIsaBusDriverBinding\r | |
35 | # COMPONENT_NAME = gIsaBusComponentName\r | |
36 | # COMPONENT_NAME2 = gIsaBusComponentName2\r | |
37 | #\r | |
38 | \r | |
39 | [Sources]\r | |
40 | IsaBusDxe.h\r | |
41 | IsaBusDxe.c\r | |
42 | ComponentName.h\r | |
43 | ComponentName.c\r | |
44 | \r | |
45 | [Packages]\r | |
46 | MdePkg/MdePkg.dec\r | |
47 | \r | |
48 | [LibraryClasses]\r | |
49 | UefiDriverEntryPoint\r | |
50 | UefiBootServicesTableLib\r | |
51 | BaseLib\r | |
52 | BaseMemoryLib\r | |
53 | MemoryAllocationLib\r | |
54 | UefiLib\r | |
55 | DebugLib\r | |
56 | \r | |
57 | [Protocols]\r | |
58 | gEfiIsaHcProtocolGuid\r | |
59 | gEfiIsaHcServiceBindingProtocolGuid\r |