Home
last modified time | relevance | path

Searched refs:VgpuGop (Results 1 – 3 of 3) sorted by relevance

/device/linaro/bootloader/edk2/OvmfPkg/VirtioGpuDxe/
DGop.c47 IN OUT VGPU_GOP *VgpuGop, in ReleaseGopResources() argument
53 ASSERT (VgpuGop->ResourceId != 0); in ReleaseGopResources()
54 ASSERT (VgpuGop->BackingStore != NULL); in ReleaseGopResources()
67 VgpuGop->ParentBus, // VgpuDev in ReleaseGopResources()
109 VgpuGop->ParentBus, // VgpuDev in ReleaseGopResources()
110 VgpuGop->ResourceId // ResourceId in ReleaseGopResources()
120 FreePages (VgpuGop->BackingStore, VgpuGop->NumberOfPages); in ReleaseGopResources()
121 VgpuGop->BackingStore = NULL; in ReleaseGopResources()
122 VgpuGop->NumberOfPages = 0; in ReleaseGopResources()
128 VgpuGop->ParentBus, // VgpuDev in ReleaseGopResources()
[all …]
DDriverBinding.c270 VGPU_GOP *VgpuGop; in InitVgpuGop() local
279 VgpuGop = AllocateZeroPool (sizeof *VgpuGop); in InitVgpuGop()
280 if (VgpuGop == NULL) { in InitVgpuGop()
284 VgpuGop->Signature = VGPU_GOP_SIG; in InitVgpuGop()
285 VgpuGop->ParentBus = ParentBus; in InitVgpuGop()
303 &VgpuGop->GopName, Name, FALSE /* Iso639Language */); in InitVgpuGop()
312 VgpuGop->GopDevicePath = AppendDevicePathNode (ParentDevicePath, in InitVgpuGop()
314 if (VgpuGop->GopDevicePath == NULL) { in InitVgpuGop()
327 Status = gBS->InstallProtocolInterface (&VgpuGop->GopHandle, in InitVgpuGop()
329 VgpuGop->GopDevicePath); in InitVgpuGop()
[all …]
DVirtioGpu.h318 IN OUT VGPU_GOP *VgpuGop,