]> git.proxmox.com Git - mirror_edk2.git/blame - MdePkg/Include/Protocol/BusSpecificDriverOverride.h
Use doxygen comment style for document entity such as struct, enum, variable that...
[mirror_edk2.git] / MdePkg / Include / Protocol / BusSpecificDriverOverride.h
CommitLineData
d1f95000 1/** @file\r
8a7d75b0 2 Bus Specific Driver Override protocol as defined in the UEFI 2.0 specification.\r
d1f95000 3\r
4ca9b6c4
LG
4 Bus drivers that have a bus specific algorithm for matching drivers to controllers are\r
5 required to produce this protocol for each controller. For example, a PCI Bus Driver will produce an\r
6 instance of this protocol for every PCI controller that has a PCI option ROM that contains one or\r
7 more UEFI drivers. The protocol instance is attached to the handle of the PCI controller.\r
8\r
9 Copyright (c) 2006 - 2008, Intel Corporation \r
d1f95000 10 All rights reserved. This program and the accompanying materials \r
11 are licensed and made available under the terms and conditions of the BSD License \r
12 which accompanies this distribution. The full text of the license may be found at \r
13 http://opensource.org/licenses/bsd-license.php \r
14\r
15 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, \r
16 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. \r
17\r
d1f95000 18**/\r
19\r
20#ifndef _EFI_BUS_SPECIFIC_DRIVER_OVERRIDE_PROTOCOL_H_\r
21#define _EFI_BUS_SPECIFIC_DRIVER_OVERRIDE_PROTOCOL_H_\r
22\r
99e8ed21 23///\r
24/// Global ID for the Bus Specific Driver Override Protocol\r
25///\r
d1f95000 26#define EFI_BUS_SPECIFIC_DRIVER_OVERRIDE_PROTOCOL_GUID \\r
27 { \\r
28 0x3bc1b285, 0x8a15, 0x4a82, {0xaa, 0xbf, 0x4d, 0x7d, 0x13, 0xfb, 0x32, 0x65 } \\r
29 }\r
30\r
31typedef struct _EFI_BUS_SPECIFIC_DRIVER_OVERRIDE_PROTOCOL EFI_BUS_SPECIFIC_DRIVER_OVERRIDE_PROTOCOL;\r
32\r
33//\r
34// Prototypes for the Bus Specific Driver Override Protocol\r
35//\r
36\r
37/** \r
38 Uses a bus specific algorithm to retrieve a driver image handle for a controller.\r
39 \r
40 @param This A pointer to the EFI_BUS_SPECIFIC_DRIVER_\r
41 OVERRIDE_PROTOCOL instance. \r
42 @param DriverImageHandle On input, a pointer to the previous driver image handle returned\r
43 by GetDriver(). On output, a pointer to the next driver \r
44 image handle. Passing in a NULL, will return the first driver \r
45 image handle. \r
46 \r
47 @retval EFI_SUCCESS A bus specific override driver is returned in DriverImageHandle.\r
48 @retval EFI_NOT_FOUND The end of the list of override drivers was reached.\r
49 @retval EFI_INVALID_PARAMETER DriverImageHandle is not a handle that was returned on a\r
50 previous call to GetDriver(). \r
51 \r
52**/ \r
53typedef\r
54EFI_STATUS\r
8b13229b 55(EFIAPI *EFI_BUS_SPECIFIC_DRIVER_OVERRIDE_GET_DRIVER)(\r
d1f95000 56 IN EFI_BUS_SPECIFIC_DRIVER_OVERRIDE_PROTOCOL *This,\r
57 IN OUT EFI_HANDLE *DriverImageHandle\r
58 );\r
59\r
60//\r
61// Interface structure for the Bus Specific Driver Override Protocol\r
62//\r
4ca9b6c4
LG
63/**\r
64 @par Protocol Description:\r
65 This protocol matches one or more drivers to a controller. This protocol is produced by a bus driver,\r
66 and it is installed on the child handles of buses that require a bus specific algorithm for matching\r
67 drivers to controllers.\r
68\r
69 @param GetDriver\r
70 Uses a bus specific algorithm to retrieve a driver image handle for a controller.\r
71 \r
72**/\r
d1f95000 73struct _EFI_BUS_SPECIFIC_DRIVER_OVERRIDE_PROTOCOL {\r
74 EFI_BUS_SPECIFIC_DRIVER_OVERRIDE_GET_DRIVER GetDriver;\r
75};\r
76\r
77extern EFI_GUID gEfiBusSpecificDriverOverrideProtocolGuid;\r
78\r
79#endif\r