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