]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Bus/Pci/PciBusDxe/PciBus.c
MdeModulePkg/PciBusDxe: reference gFullEnumeration in one file
[mirror_edk2.git] / MdeModulePkg / Bus / Pci / PciBusDxe / PciBus.c
1 /** @file
2 Driver Binding functions for PCI Bus module.
3
4 Single PCI bus driver instance will manager all PCI Root Bridges in one EFI based firmware,
5 since all PCI Root Bridges' resources need to be managed together.
6 Supported() function will try to get PCI Root Bridge IO Protocol.
7 Start() function will get PCI Host Bridge Resource Allocation Protocol to manage all
8 PCI Root Bridges. So it means platform needs install PCI Root Bridge IO protocol for each
9 PCI Root Bus and install PCI Host Bridge Resource Allocation Protocol.
10
11 Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.<BR>
12 This program and the accompanying materials
13 are licensed and made available under the terms and conditions of the BSD License
14 which accompanies this distribution. The full text of the license may be found at
15 http://opensource.org/licenses/bsd-license.php
16
17 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
18 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
19
20 **/
21
22 #include "PciBus.h"
23
24 //
25 // PCI Bus Driver Global Variables
26 //
27 EFI_DRIVER_BINDING_PROTOCOL gPciBusDriverBinding = {
28 PciBusDriverBindingSupported,
29 PciBusDriverBindingStart,
30 PciBusDriverBindingStop,
31 0xa,
32 NULL,
33 NULL
34 };
35
36 EFI_HANDLE gPciHostBrigeHandles[PCI_MAX_HOST_BRIDGE_NUM];
37 EFI_INCOMPATIBLE_PCI_DEVICE_SUPPORT_PROTOCOL *gIncompatiblePciDeviceSupport = NULL;
38 UINTN gPciHostBridgeNumber = 0;
39 BOOLEAN gFullEnumeration = TRUE;
40 UINT64 gAllOne = 0xFFFFFFFFFFFFFFFFULL;
41 UINT64 gAllZero = 0;
42
43 EFI_PCI_PLATFORM_PROTOCOL *gPciPlatformProtocol;
44 EFI_PCI_OVERRIDE_PROTOCOL *gPciOverrideProtocol;
45 EDKII_IOMMU_PROTOCOL *mIoMmuProtocol;
46
47
48 GLOBAL_REMOVE_IF_UNREFERENCED EFI_PCI_HOTPLUG_REQUEST_PROTOCOL mPciHotPlugRequest = {
49 PciHotPlugRequestNotify
50 };
51
52 /**
53 The Entry Point for PCI Bus module. The user code starts with this function.
54
55 Installs driver module protocols and. Creates virtual device handles for ConIn,
56 ConOut, and StdErr. Installs Simple Text In protocol, Simple Text In Ex protocol,
57 Simple Pointer protocol, Absolute Pointer protocol on those virtual handlers.
58 Installs Graphics Output protocol and/or UGA Draw protocol if needed.
59
60 @param[in] ImageHandle The firmware allocated handle for the EFI image.
61 @param[in] SystemTable A pointer to the EFI System Table.
62
63 @retval EFI_SUCCESS The entry point is executed successfully.
64 @retval other Some error occurred when executing this entry point.
65
66 **/
67 EFI_STATUS
68 EFIAPI
69 PciBusEntryPoint (
70 IN EFI_HANDLE ImageHandle,
71 IN EFI_SYSTEM_TABLE *SystemTable
72 )
73 {
74 EFI_STATUS Status;
75 EFI_HANDLE Handle;
76
77 //
78 // Initializes PCI devices pool
79 //
80 InitializePciDevicePool ();
81
82 //
83 // Install driver model protocol(s).
84 //
85 Status = EfiLibInstallDriverBindingComponentName2 (
86 ImageHandle,
87 SystemTable,
88 &gPciBusDriverBinding,
89 ImageHandle,
90 &gPciBusComponentName,
91 &gPciBusComponentName2
92 );
93 ASSERT_EFI_ERROR (Status);
94
95 if (FeaturePcdGet (PcdPciBusHotplugDeviceSupport)) {
96 //
97 // If Hot Plug is supported, install EFI PCI Hot Plug Request protocol.
98 //
99 Handle = NULL;
100 Status = gBS->InstallProtocolInterface (
101 &Handle,
102 &gEfiPciHotPlugRequestProtocolGuid,
103 EFI_NATIVE_INTERFACE,
104 &mPciHotPlugRequest
105 );
106 }
107
108 return Status;
109 }
110
111 /**
112 Test to see if this driver supports ControllerHandle. Any ControllerHandle
113 than contains a gEfiPciRootBridgeIoProtocolGuid protocol can be supported.
114
115 @param This Protocol instance pointer.
116 @param Controller Handle of device to test.
117 @param RemainingDevicePath Optional parameter use to pick a specific child
118 device to start.
119
120 @retval EFI_SUCCESS This driver supports this device.
121 @retval EFI_ALREADY_STARTED This driver is already running on this device.
122 @retval other This driver does not support this device.
123
124 **/
125 EFI_STATUS
126 EFIAPI
127 PciBusDriverBindingSupported (
128 IN EFI_DRIVER_BINDING_PROTOCOL *This,
129 IN EFI_HANDLE Controller,
130 IN EFI_DEVICE_PATH_PROTOCOL *RemainingDevicePath
131 )
132 {
133 EFI_STATUS Status;
134 EFI_DEVICE_PATH_PROTOCOL *ParentDevicePath;
135 EFI_PCI_ROOT_BRIDGE_IO_PROTOCOL *PciRootBridgeIo;
136 EFI_DEV_PATH_PTR Node;
137
138 //
139 // Check RemainingDevicePath validation
140 //
141 if (RemainingDevicePath != NULL) {
142 //
143 // Check if RemainingDevicePath is the End of Device Path Node,
144 // if yes, go on checking other conditions
145 //
146 if (!IsDevicePathEnd (RemainingDevicePath)) {
147 //
148 // If RemainingDevicePath isn't the End of Device Path Node,
149 // check its validation
150 //
151 Node.DevPath = RemainingDevicePath;
152 if (Node.DevPath->Type != HARDWARE_DEVICE_PATH ||
153 Node.DevPath->SubType != HW_PCI_DP ||
154 DevicePathNodeLength(Node.DevPath) != sizeof(PCI_DEVICE_PATH)) {
155 return EFI_UNSUPPORTED;
156 }
157 }
158 }
159
160 //
161 // Check if Pci Root Bridge IO protocol is installed by platform
162 //
163 Status = gBS->OpenProtocol (
164 Controller,
165 &gEfiPciRootBridgeIoProtocolGuid,
166 (VOID **) &PciRootBridgeIo,
167 This->DriverBindingHandle,
168 Controller,
169 EFI_OPEN_PROTOCOL_BY_DRIVER
170 );
171 if (Status == EFI_ALREADY_STARTED) {
172 return EFI_SUCCESS;
173 }
174
175 if (EFI_ERROR (Status)) {
176 return Status;
177 }
178
179 //
180 // Close the I/O Abstraction(s) used to perform the supported test
181 //
182 gBS->CloseProtocol (
183 Controller,
184 &gEfiPciRootBridgeIoProtocolGuid,
185 This->DriverBindingHandle,
186 Controller
187 );
188
189 //
190 // Open the EFI Device Path protocol needed to perform the supported test
191 //
192 Status = gBS->OpenProtocol (
193 Controller,
194 &gEfiDevicePathProtocolGuid,
195 (VOID **) &ParentDevicePath,
196 This->DriverBindingHandle,
197 Controller,
198 EFI_OPEN_PROTOCOL_BY_DRIVER
199 );
200 if (Status == EFI_ALREADY_STARTED) {
201 return EFI_SUCCESS;
202 }
203
204 if (EFI_ERROR (Status)) {
205 return Status;
206 }
207
208 //
209 // Close protocol, don't use device path protocol in the Support() function
210 //
211 gBS->CloseProtocol (
212 Controller,
213 &gEfiDevicePathProtocolGuid,
214 This->DriverBindingHandle,
215 Controller
216 );
217
218 return EFI_SUCCESS;
219 }
220
221 /**
222 Start this driver on ControllerHandle and enumerate Pci bus and start
223 all device under PCI bus.
224
225 @param This Protocol instance pointer.
226 @param Controller Handle of device to bind driver to.
227 @param RemainingDevicePath Optional parameter use to pick a specific child
228 device to start.
229
230 @retval EFI_SUCCESS This driver is added to ControllerHandle.
231 @retval EFI_ALREADY_STARTED This driver is already running on ControllerHandle.
232 @retval other This driver does not support this device.
233
234 **/
235 EFI_STATUS
236 EFIAPI
237 PciBusDriverBindingStart (
238 IN EFI_DRIVER_BINDING_PROTOCOL *This,
239 IN EFI_HANDLE Controller,
240 IN EFI_DEVICE_PATH_PROTOCOL *RemainingDevicePath
241 )
242 {
243 EFI_STATUS Status;
244 EFI_DEVICE_PATH_PROTOCOL *ParentDevicePath;
245 EFI_PCI_ROOT_BRIDGE_IO_PROTOCOL *PciRootBridgeIo;
246
247 //
248 // Check RemainingDevicePath validation
249 //
250 if (RemainingDevicePath != NULL) {
251 //
252 // Check if RemainingDevicePath is the End of Device Path Node,
253 // if yes, return EFI_SUCCESS
254 //
255 if (IsDevicePathEnd (RemainingDevicePath)) {
256 return EFI_SUCCESS;
257 }
258 }
259
260 gBS->LocateProtocol (
261 &gEfiIncompatiblePciDeviceSupportProtocolGuid,
262 NULL,
263 (VOID **) &gIncompatiblePciDeviceSupport
264 );
265
266 //
267 // If PCI Platform protocol is available, get it now.
268 // If the platform implements this, it must be installed before BDS phase
269 //
270 gPciPlatformProtocol = NULL;
271 gBS->LocateProtocol (
272 &gEfiPciPlatformProtocolGuid,
273 NULL,
274 (VOID **) &gPciPlatformProtocol
275 );
276
277 //
278 // If PCI Platform protocol doesn't exist, try to Pci Override Protocol.
279 //
280 if (gPciPlatformProtocol == NULL) {
281 gPciOverrideProtocol = NULL;
282 gBS->LocateProtocol (
283 &gEfiPciOverrideProtocolGuid,
284 NULL,
285 (VOID **) &gPciOverrideProtocol
286 );
287 }
288
289 if (mIoMmuProtocol == NULL) {
290 gBS->LocateProtocol (
291 &gEdkiiIoMmuProtocolGuid,
292 NULL,
293 (VOID **) &mIoMmuProtocol
294 );
295 }
296
297 if (PcdGetBool (PcdPciDisableBusEnumeration)) {
298 gFullEnumeration = FALSE;
299 } else {
300 gFullEnumeration = (BOOLEAN) ((SearchHostBridgeHandle (Controller) ? FALSE : TRUE));
301 }
302
303 //
304 // Open Device Path Protocol for PCI root bridge
305 //
306 Status = gBS->OpenProtocol (
307 Controller,
308 &gEfiDevicePathProtocolGuid,
309 (VOID **) &ParentDevicePath,
310 This->DriverBindingHandle,
311 Controller,
312 EFI_OPEN_PROTOCOL_GET_PROTOCOL
313 );
314 ASSERT_EFI_ERROR (Status);
315
316 //
317 // Report Status Code to indicate PCI bus starts
318 //
319 REPORT_STATUS_CODE_WITH_DEVICE_PATH (
320 EFI_PROGRESS_CODE,
321 (EFI_IO_BUS_PCI | EFI_IOB_PC_INIT),
322 ParentDevicePath
323 );
324
325 Status = EFI_SUCCESS;
326 //
327 // Enumerate the entire host bridge
328 // After enumeration, a database that records all the device information will be created
329 //
330 //
331 if (gFullEnumeration) {
332 //
333 // Get the rootbridge Io protocol to find the host bridge handle
334 //
335 Status = gBS->OpenProtocol (
336 Controller,
337 &gEfiPciRootBridgeIoProtocolGuid,
338 (VOID **) &PciRootBridgeIo,
339 gPciBusDriverBinding.DriverBindingHandle,
340 Controller,
341 EFI_OPEN_PROTOCOL_GET_PROTOCOL
342 );
343
344 if (!EFI_ERROR (Status)) {
345 Status = PciEnumerator (Controller, PciRootBridgeIo->ParentHandle);
346 }
347 } else {
348 //
349 // If PCI bus has already done the full enumeration, never do it again
350 //
351 Status = PciEnumeratorLight (Controller);
352 }
353
354 if (EFI_ERROR (Status)) {
355 return Status;
356 }
357
358 //
359 // Start all the devices under the entire host bridge.
360 //
361 StartPciDevices (Controller);
362
363 gFullEnumeration = FALSE;
364 return EFI_SUCCESS;
365 }
366
367 /**
368 Stop this driver on ControllerHandle. Support stopping any child handles
369 created by this driver.
370
371 @param This Protocol instance pointer.
372 @param Controller Handle of device to stop driver on.
373 @param NumberOfChildren Number of Handles in ChildHandleBuffer. If number of
374 children is zero stop the entire bus driver.
375 @param ChildHandleBuffer List of Child Handles to Stop.
376
377 @retval EFI_SUCCESS This driver is removed ControllerHandle.
378 @retval other This driver was not removed from this device.
379
380 **/
381 EFI_STATUS
382 EFIAPI
383 PciBusDriverBindingStop (
384 IN EFI_DRIVER_BINDING_PROTOCOL *This,
385 IN EFI_HANDLE Controller,
386 IN UINTN NumberOfChildren,
387 IN EFI_HANDLE *ChildHandleBuffer
388 )
389 {
390 EFI_STATUS Status;
391 UINTN Index;
392 BOOLEAN AllChildrenStopped;
393
394 if (NumberOfChildren == 0) {
395 //
396 // Close the bus driver
397 //
398 gBS->CloseProtocol (
399 Controller,
400 &gEfiDevicePathProtocolGuid,
401 This->DriverBindingHandle,
402 Controller
403 );
404 gBS->CloseProtocol (
405 Controller,
406 &gEfiPciRootBridgeIoProtocolGuid,
407 This->DriverBindingHandle,
408 Controller
409 );
410
411 DestroyRootBridgeByHandle (
412 Controller
413 );
414
415 return EFI_SUCCESS;
416 }
417
418 //
419 // Stop all the children
420 //
421
422 AllChildrenStopped = TRUE;
423
424 for (Index = 0; Index < NumberOfChildren; Index++) {
425
426 //
427 // De register all the pci device
428 //
429 Status = DeRegisterPciDevice (Controller, ChildHandleBuffer[Index]);
430
431 if (EFI_ERROR (Status)) {
432 AllChildrenStopped = FALSE;
433 }
434 }
435
436 if (!AllChildrenStopped) {
437 return EFI_DEVICE_ERROR;
438 }
439
440 return EFI_SUCCESS;
441 }
442