iPXE
BusSpecificDriverOverride.h
Go to the documentation of this file.
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 - 2018, Intel Corporation. All rights reserved.<BR>
10 SPDX-License-Identifier: BSD-2-Clause-Patent
11
12**/
13
14#pragma once
15
16FILE_LICENCE ( BSD2_PATENT );
17FILE_SECBOOT ( PERMITTED );
18
19///
20/// Global ID for the Bus Specific Driver Override Protocol
21///
22#define EFI_BUS_SPECIFIC_DRIVER_OVERRIDE_PROTOCOL_GUID \
23 { \
24 0x3bc1b285, 0x8a15, 0x4a82, {0xaa, 0xbf, 0x4d, 0x7d, 0x13, 0xfb, 0x32, 0x65 } \
25 }
26
28
29//
30// Prototypes for the Bus Specific Driver Override Protocol
31//
32
33/**
34 Uses a bus specific algorithm to retrieve a driver image handle for a controller.
35
36 @param This A pointer to the EFI_BUS_SPECIFIC_DRIVER_
37 OVERRIDE_PROTOCOL instance.
38 @param DriverImageHandle On input, a pointer to the previous driver image handle returned
39 by GetDriver(). On output, a pointer to the next driver
40 image handle. Passing in a NULL, will return the first driver
41 image handle.
42
43 @retval EFI_SUCCESS A bus specific override driver is returned in DriverImageHandle.
44 @retval EFI_NOT_FOUND The end of the list of override drivers was reached.
45 A bus specific override driver is not returned in DriverImageHandle.
46 @retval EFI_INVALID_PARAMETER DriverImageHandle is not a handle that was returned on a
47 previous call to GetDriver().
48
49**/
50typedef
54 IN OUT EFI_HANDLE *DriverImageHandle
55 );
56
57///
58/// This protocol matches one or more drivers to a controller. This protocol is produced by a bus driver,
59/// and it is installed on the child handles of buses that require a bus specific algorithm for matching
60/// drivers to controllers.
61///
65
#define EFIAPI
struct _EFI_BUS_SPECIFIC_DRIVER_OVERRIDE_PROTOCOL EFI_BUS_SPECIFIC_DRIVER_OVERRIDE_PROTOCOL
EFI_STATUS(EFIAPI * EFI_BUS_SPECIFIC_DRIVER_OVERRIDE_GET_DRIVER)(IN EFI_BUS_SPECIFIC_DRIVER_OVERRIDE_PROTOCOL *This, IN OUT EFI_HANDLE *DriverImageHandle)
Uses a bus specific algorithm to retrieve a driver image handle for a controller.
EFI_GUID gEfiBusSpecificDriverOverrideProtocolGuid
RETURN_STATUS EFI_STATUS
Function return status for EFI API.
GUID EFI_GUID
128-bit buffer containing a unique identifier value.
#define FILE_LICENCE(_licence)
Declare a particular licence as applying to a file.
Definition compiler.h:921
#define FILE_SECBOOT(_status)
Declare a file's UEFI Secure Boot permission status.
Definition compiler.h:951
#define EFI_HANDLE
Definition efi.h:53
#define IN
Definition mlx_utils.h:28
#define OUT
Definition mlx_utils.h:29
This protocol matches one or more drivers to a controller.
EFI_BUS_SPECIFIC_DRIVER_OVERRIDE_GET_DRIVER GetDriver