]> git.proxmox.com Git - mirror_edk2.git/blob - OvmfPkg/XenBusDxe/XenBusDxe.inf
OvmfPkg/XenBusDxe: Introduce XenBus support itself.
[mirror_edk2.git] / OvmfPkg / XenBusDxe / XenBusDxe.inf
1 ## @file
2 # This driver produces a XenBus protocol for every Xen PV devices found.
3 #
4 # Copyright (C) 2014, Citrix Ltd.
5 #
6 # This program and the accompanying materials
7 # are licensed and made available under the terms and conditions of the BSD License
8 # which accompanies this distribution. The full text of the license may be found at
9 # http://opensource.org/licenses/bsd-license.php
10 #
11 # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
13 #
14 ##
15
16 [Defines]
17 INF_VERSION = 0x00010005
18 BASE_NAME = XenBusDxe
19 FILE_GUID = 565ec8ba-a484-11e3-802b-b8ac6f7d65e6
20 MODULE_TYPE = UEFI_DRIVER
21
22 VERSION_STRING = 1.0
23 ENTRY_POINT = XenBusDxeDriverEntryPoint
24 UNLOAD_IMAGE = XenBusDxeUnload
25
26
27 [Packages]
28 MdePkg/MdePkg.dec
29 OvmfPkg/OvmfPkg.dec
30
31 [Sources]
32 XenBusDxe.h
33 XenBusDxe.c
34 DriverBinding.h
35 ComponentName.c
36 ComponentName.h
37 XenHypercall.c
38 XenHypercall.h
39 InterlockedCompareExchange16.c
40 InterlockedCompareExchange16.h
41 GrantTable.c
42 GrantTable.h
43 EventChannel.c
44 EventChannel.h
45 XenStore.c
46 XenStore.h
47 XenBus.c
48 XenBus.h
49 Helpers.c
50
51 [Sources.IA32]
52 Ia32/hypercall.S
53 Ia32/hypercall.asm
54 Ia32/InterlockedCompareExchange16.S
55 Ia32/InterlockedCompareExchange16.asm
56 Ia32/TestAndClearBit.S
57 Ia32/TestAndClearBit.asm
58
59 [Sources.X64]
60 X64/hypercall.S
61 X64/hypercall.asm
62 X64/InterlockedCompareExchange16.S
63 X64/InterlockedCompareExchange16.asm
64 X64/TestAndClearBit.S
65 X64/TestAndClearBit.asm
66
67 [LibraryClasses]
68 UefiDriverEntryPoint
69 UefiBootServicesTableLib
70 MemoryAllocationLib
71 BaseMemoryLib
72 BaseLib
73 UefiLib
74 DevicePathLib
75 DebugLib
76 HobLib
77
78
79 [Protocols]
80 gEfiDriverBindingProtocolGuid
81 gEfiPciIoProtocolGuid
82 gEfiComponentName2ProtocolGuid
83 gEfiComponentNameProtocolGuid
84 gXenBusProtocolGuid
85
86
87 [Guids]
88 gEfiXenInfoGuid
89