Last change
on this file since 58464 was 58459, checked in by vboxsync, 9 years ago |
EFI/Firmware: 'svn merge /vendor/edk2/UDK2010.SR1 /vendor/edk2/current .', reverting and removing files+dirs listed in ReadMe.vbox, resolving conflicts with help from ../UDK2014.SP1/. This is a raw untested merge.
|
-
Property svn:eol-style
set to
native
|
File size:
1.7 KB
|
Line | |
---|
1 | ## @file
|
---|
2 | # The basic interfaces implementation to a single segment PCI Host Bridge driver.
|
---|
3 | #
|
---|
4 | # Copyright (c) 2008 - 2014, 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 | [Defines]
|
---|
16 | INF_VERSION = 0x00010005
|
---|
17 | BASE_NAME = PciHostBridge
|
---|
18 | MODULE_UNI_FILE = PciHostBridge.uni
|
---|
19 | FILE_GUID = 2383608E-C6D0-4e3e-858D-45DFAC3543D5
|
---|
20 | MODULE_TYPE = DXE_DRIVER
|
---|
21 | VERSION_STRING = 1.0
|
---|
22 |
|
---|
23 | ENTRY_POINT = InitializePciHostBridge
|
---|
24 |
|
---|
25 | [Packages]
|
---|
26 | MdePkg/MdePkg.dec
|
---|
27 |
|
---|
28 | [LibraryClasses]
|
---|
29 | UefiDriverEntryPoint
|
---|
30 | UefiBootServicesTableLib
|
---|
31 | DxeServicesTableLib
|
---|
32 | UefiLib
|
---|
33 | MemoryAllocationLib
|
---|
34 | BaseMemoryLib
|
---|
35 | BaseLib
|
---|
36 | DebugLib
|
---|
37 | DevicePathLib
|
---|
38 | IoLib
|
---|
39 | PciLib
|
---|
40 |
|
---|
41 | [Sources]
|
---|
42 | PciHostBridge.c
|
---|
43 | PciRootBridgeIo.c
|
---|
44 | PciHostBridge.h
|
---|
45 | IoFifo.h
|
---|
46 |
|
---|
47 | [Sources.IA32]
|
---|
48 | Ia32/IoFifo.asm
|
---|
49 | Ia32/IoFifo.S
|
---|
50 |
|
---|
51 | [Sources.X64]
|
---|
52 | X64/IoFifo.asm
|
---|
53 | X64/IoFifo.S
|
---|
54 |
|
---|
55 | [Protocols]
|
---|
56 | gEfiPciHostBridgeResourceAllocationProtocolGuid ## PRODUCES
|
---|
57 | gEfiPciRootBridgeIoProtocolGuid ## PRODUCES
|
---|
58 | gEfiMetronomeArchProtocolGuid ## CONSUMES
|
---|
59 | gEfiDevicePathProtocolGuid ## PRODUCES
|
---|
60 |
|
---|
61 | [depex]
|
---|
62 | gEfiMetronomeArchProtocolGuid
|
---|
63 |
|
---|
64 | [UserExtensions.TianoCore."ExtraFiles"]
|
---|
65 | PciHostBridgeExtra.uni
|
---|
Note:
See
TracBrowser
for help on using the repository browser.