]> git.proxmox.com Git - mirror_edk2.git/blob - OvmfPkg/XenBusDxe/XenBusDxe.inf
OvmfPkg/XenBusDxe: Add XenStore client implementation
[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
48 [Sources.IA32]
49 Ia32/hypercall.S
50 Ia32/hypercall.asm
51 Ia32/InterlockedCompareExchange16.S
52 Ia32/InterlockedCompareExchange16.asm
53 Ia32/TestAndClearBit.S
54 Ia32/TestAndClearBit.asm
55
56 [Sources.X64]
57 X64/hypercall.S
58 X64/hypercall.asm
59 X64/InterlockedCompareExchange16.S
60 X64/InterlockedCompareExchange16.asm
61 X64/TestAndClearBit.S
62 X64/TestAndClearBit.asm
63
64 [LibraryClasses]
65 UefiDriverEntryPoint
66 UefiBootServicesTableLib
67 MemoryAllocationLib
68 BaseMemoryLib
69 BaseLib
70 UefiLib
71 DevicePathLib
72 DebugLib
73 HobLib
74
75
76 [Protocols]
77 gEfiDriverBindingProtocolGuid
78 gEfiPciIoProtocolGuid
79 gEfiComponentName2ProtocolGuid
80 gEfiComponentNameProtocolGuid
81 gXenBusProtocolGuid
82
83
84 [Guids]
85 gEfiXenInfoGuid
86