VirtualBox

source: vbox/trunk/src/VBox/Devices/EFI/FirmwareNew/MdeModulePkg/Library/NonDiscoverableDeviceRegistrationLib/NonDiscoverableDeviceRegistrationLib.c@ 99404

Last change on this file since 99404 was 99404, checked in by vboxsync, 2 years ago

Devices/EFI/FirmwareNew: Update to edk2-stable202302 and make it build, bugref:4643

  • Property svn:eol-style set to native
File size: 6.6 KB
Line 
1/** @file
2 Copyright (c) 2016, Linaro, Ltd. All rights reserved.<BR>
3
4 SPDX-License-Identifier: BSD-2-Clause-Patent
5
6**/
7
8#include <PiDxe.h>
9
10#include <Guid/NonDiscoverableDevice.h>
11
12#include <Library/BaseMemoryLib.h>
13#include <Library/DebugLib.h>
14#include <Library/DevicePathLib.h>
15#include <Library/MemoryAllocationLib.h>
16#include <Library/NonDiscoverableDeviceRegistrationLib.h>
17#include <Library/UefiBootServicesTableLib.h>
18
19#include <Protocol/DevicePath.h>
20#include <Protocol/NonDiscoverableDevice.h>
21
22/**
23 Get Guid form the type of non-discoverable device.
24
25 @param[in] Type The type of non-discoverable device.
26
27 @retval Return the Guid.
28
29**/
30STATIC
31CONST EFI_GUID *
32GetGuidFromType (
33 IN NON_DISCOVERABLE_DEVICE_TYPE Type
34 )
35{
36 switch (Type) {
37 case NonDiscoverableDeviceTypeAhci:
38 return &gEdkiiNonDiscoverableAhciDeviceGuid;
39
40 case NonDiscoverableDeviceTypeAmba:
41 return &gEdkiiNonDiscoverableAmbaDeviceGuid;
42
43 case NonDiscoverableDeviceTypeEhci:
44 return &gEdkiiNonDiscoverableEhciDeviceGuid;
45
46 case NonDiscoverableDeviceTypeNvme:
47 return &gEdkiiNonDiscoverableNvmeDeviceGuid;
48
49 case NonDiscoverableDeviceTypeOhci:
50 return &gEdkiiNonDiscoverableOhciDeviceGuid;
51
52 case NonDiscoverableDeviceTypeSdhci:
53 return &gEdkiiNonDiscoverableSdhciDeviceGuid;
54
55 case NonDiscoverableDeviceTypeUfs:
56 return &gEdkiiNonDiscoverableUfsDeviceGuid;
57
58 case NonDiscoverableDeviceTypeUhci:
59 return &gEdkiiNonDiscoverableUhciDeviceGuid;
60
61 case NonDiscoverableDeviceTypeXhci:
62 return &gEdkiiNonDiscoverableXhciDeviceGuid;
63
64 default:
65 return NULL;
66 }
67}
68
69#pragma pack (1)
70typedef struct {
71 VENDOR_DEVICE_PATH Vendor;
72 UINT64 BaseAddress;
73 UINT8 ResourceType;
74 EFI_DEVICE_PATH_PROTOCOL End;
75} NON_DISCOVERABLE_DEVICE_PATH;
76#pragma pack ()
77
78/**
79 Register a non-discoverable MMIO device.
80
81 @param[in] Type The type of non-discoverable device
82 @param[in] DmaType Whether the device is DMA coherent
83 @param[in] InitFunc Initialization routine to be invoked when
84 the device is enabled
85 @param[in,out] Handle The handle onto which to install the
86 non-discoverable device protocol.
87 If Handle is NULL or *Handle is NULL, a
88 new handle will be allocated.
89 @param[in] NumMmioResources The number of UINTN base/size pairs that
90 follow, each describing an MMIO region
91 owned by the device
92 @param[in] ... The variable argument list which contains the
93 info about MmioResources.
94
95 @retval EFI_SUCCESS The registration succeeded.
96 @retval EFI_INVALID_PARAMETER An invalid argument was given
97 @retval Other The registration failed.
98
99**/
100EFI_STATUS
101EFIAPI
102RegisterNonDiscoverableMmioDevice (
103 IN NON_DISCOVERABLE_DEVICE_TYPE Type,
104 IN NON_DISCOVERABLE_DEVICE_DMA_TYPE DmaType,
105 IN NON_DISCOVERABLE_DEVICE_INIT InitFunc,
106 IN OUT EFI_HANDLE *Handle OPTIONAL,
107 IN UINTN NumMmioResources,
108 ...
109 )
110{
111 NON_DISCOVERABLE_DEVICE *Device;
112 NON_DISCOVERABLE_DEVICE_PATH *DevicePath;
113 EFI_HANDLE LocalHandle;
114 EFI_STATUS Status;
115 UINTN AllocSize;
116 UINTN Index;
117 VA_LIST Args;
118 EFI_ACPI_ADDRESS_SPACE_DESCRIPTOR *Desc;
119 EFI_ACPI_END_TAG_DESCRIPTOR *End;
120 UINTN Base, Size;
121
122 if ((Type >= NonDiscoverableDeviceTypeMax) ||
123 (DmaType >= NonDiscoverableDeviceDmaTypeMax) ||
124 (NumMmioResources == 0))
125 {
126 return EFI_INVALID_PARAMETER;
127 }
128
129 if (Handle == NULL) {
130 Handle = &LocalHandle;
131 LocalHandle = NULL;
132 }
133
134 AllocSize = sizeof *Device +
135 NumMmioResources * sizeof (EFI_ACPI_ADDRESS_SPACE_DESCRIPTOR) +
136 sizeof (EFI_ACPI_END_TAG_DESCRIPTOR);
137 Device = (NON_DISCOVERABLE_DEVICE *)AllocateZeroPool (AllocSize);
138 if (Device == NULL) {
139 return EFI_OUT_OF_RESOURCES;
140 }
141
142 Device->Type = GetGuidFromType (Type);
143 ASSERT (Device->Type != NULL);
144
145 Device->DmaType = DmaType;
146 Device->Initialize = InitFunc;
147 Device->Resources = (EFI_ACPI_ADDRESS_SPACE_DESCRIPTOR *)(Device + 1);
148
149 VA_START (Args, NumMmioResources);
150 for (Index = 0; Index < NumMmioResources; Index++) {
151 Desc = &Device->Resources[Index];
152 Base = VA_ARG (Args, UINTN);
153 Size = VA_ARG (Args, UINTN);
154
155 Desc->Desc = ACPI_ADDRESS_SPACE_DESCRIPTOR;
156 Desc->Len = sizeof *Desc - 3;
157 Desc->AddrRangeMin = Base;
158 Desc->AddrLen = Size;
159 Desc->AddrRangeMax = Base + Size - 1;
160 Desc->ResType = ACPI_ADDRESS_SPACE_TYPE_MEM;
161 Desc->AddrSpaceGranularity = ((EFI_PHYSICAL_ADDRESS)Base + Size > SIZE_4GB) ? 64 : 32;
162 Desc->AddrTranslationOffset = 0;
163 }
164
165 VA_END (Args);
166
167 End = (EFI_ACPI_END_TAG_DESCRIPTOR *)&Device->Resources[NumMmioResources];
168
169 End->Desc = ACPI_END_TAG_DESCRIPTOR;
170 End->Checksum = 0;
171
172 DevicePath = (NON_DISCOVERABLE_DEVICE_PATH *)CreateDeviceNode (
173 HARDWARE_DEVICE_PATH,
174 HW_VENDOR_DP,
175 sizeof (*DevicePath)
176 );
177 if (DevicePath == NULL) {
178 Status = EFI_OUT_OF_RESOURCES;
179 goto FreeDevice;
180 }
181
182 CopyGuid (&DevicePath->Vendor.Guid, &gEdkiiNonDiscoverableDeviceProtocolGuid);
183
184 //
185 // Use the base address and type of the first region to
186 // make the device path unique
187 //
188 DevicePath->BaseAddress = Device->Resources[0].AddrRangeMin;
189 DevicePath->ResourceType = Device->Resources[0].ResType;
190
191 SetDevicePathNodeLength (
192 &DevicePath->Vendor,
193 sizeof (*DevicePath) - sizeof (DevicePath->End)
194 );
195 SetDevicePathEndNode (&DevicePath->End);
196
197 Status = gBS->InstallMultipleProtocolInterfaces (
198 Handle,
199 &gEdkiiNonDiscoverableDeviceProtocolGuid,
200 Device,
201 &gEfiDevicePathProtocolGuid,
202 DevicePath,
203 NULL
204 );
205 if (EFI_ERROR (Status)) {
206 goto FreeDevicePath;
207 }
208
209 return EFI_SUCCESS;
210
211FreeDevicePath:
212 FreePool (DevicePath);
213
214FreeDevice:
215 FreePool (Device);
216
217 return Status;
218}
Note: See TracBrowser for help on using the repository browser.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette