You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

BusSpecificDriverOverride.h 3.1KB

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