VirtualBox

source: vbox/trunk/src/VBox/Devices/EFI/Firmware/MdePkg/Include/Protocol/BusSpecificDriverOverride.h@ 62180

最後變更 在這個檔案從62180是 58466,由 vboxsync 提交於 9 年 前

EFI/Firmware: Merged in the svn:eol-style, svn:mime-type and trailing whitespace cleanup that was done after the initial UDK2014.SP1 import: svn merge /vendor/edk2/UDK2014.SP1 /vendor/edk2/current .

  • 屬性 svn:eol-style 設為 native
檔案大小: 3.0 KB
 
1/** @file
2 Bus Specific Driver Override protocol as defined in the UEFI 2.0 specification.
3
4 Bus drivers that have a bus specific algorithm for matching drivers to controllers are
5 required to produce this protocol for each controller. For example, a PCI Bus Driver will produce an
6 instance of this protocol for every PCI controller that has a PCI option ROM that contains one or
7 more UEFI drivers. The protocol instance is attached to the handle of the PCI controller.
8
9 Copyright (c) 2006 - 2008, Intel Corporation. All rights reserved.<BR>
10 This program and the accompanying materials
11 are licensed and made available under the terms and conditions of the BSD License
12 which accompanies this distribution. The full text of the license may be found at
13 http://opensource.org/licenses/bsd-license.php
14
15 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
16 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
17
18**/
19
20#ifndef _EFI_BUS_SPECIFIC_DRIVER_OVERRIDE_PROTOCOL_H_
21#define _EFI_BUS_SPECIFIC_DRIVER_OVERRIDE_PROTOCOL_H_
22
23///
24/// Global ID for the Bus Specific Driver Override Protocol
25///
26#define EFI_BUS_SPECIFIC_DRIVER_OVERRIDE_PROTOCOL_GUID \
27 { \
28 0x3bc1b285, 0x8a15, 0x4a82, {0xaa, 0xbf, 0x4d, 0x7d, 0x13, 0xfb, 0x32, 0x65 } \
29 }
30
31typedef struct _EFI_BUS_SPECIFIC_DRIVER_OVERRIDE_PROTOCOL EFI_BUS_SPECIFIC_DRIVER_OVERRIDE_PROTOCOL;
32
33//
34// Prototypes for the Bus Specific Driver Override Protocol
35//
36
37/**
38 Uses a bus specific algorithm to retrieve a driver image handle for a controller.
39
40 @param This A pointer to the EFI_BUS_SPECIFIC_DRIVER_
41 OVERRIDE_PROTOCOL instance.
42 @param DriverImageHandle On input, a pointer to the previous driver image handle returned
43 by GetDriver(). On output, a pointer to the next driver
44 image handle. Passing in a NULL, will return the first driver
45 image handle.
46
47 @retval EFI_SUCCESS A bus specific override driver is returned in DriverImageHandle.
48 @retval EFI_NOT_FOUND The end of the list of override drivers was reached.
49 A bus specific override driver is not returned in DriverImageHandle.
50 @retval EFI_INVALID_PARAMETER DriverImageHandle is not a handle that was returned on a
51 previous call to GetDriver().
52
53**/
54typedef
55EFI_STATUS
56(EFIAPI *EFI_BUS_SPECIFIC_DRIVER_OVERRIDE_GET_DRIVER)(
57 IN EFI_BUS_SPECIFIC_DRIVER_OVERRIDE_PROTOCOL *This,
58 IN OUT EFI_HANDLE *DriverImageHandle
59 );
60
61///
62/// This protocol matches one or more drivers to a controller. This protocol is produced by a bus driver,
63/// and it is installed on the child handles of buses that require a bus specific algorithm for matching
64/// drivers to controllers.
65///
66struct _EFI_BUS_SPECIFIC_DRIVER_OVERRIDE_PROTOCOL {
67 EFI_BUS_SPECIFIC_DRIVER_OVERRIDE_GET_DRIVER GetDriver;
68};
69
70extern EFI_GUID gEfiBusSpecificDriverOverrideProtocolGuid;
71
72#endif
注意: 瀏覽 TracBrowser 來幫助您使用儲存庫瀏覽器

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