]> git.proxmox.com Git - mirror_edk2.git/blobdiff - MdeModulePkg/Universal/PlatformDriOverrideDxe/PlatformDriOverrideDxe.inf
Merge application PlatOverMngr and library DxePlatDriOverLib into driver PlatDriOverr...
[mirror_edk2.git] / MdeModulePkg / Universal / PlatformDriOverrideDxe / PlatformDriOverrideDxe.inf
index 855fb82a593f00e6288affedc9c6cbe2aae87904..59bc3dfed0eae4a1883afe11d48d0d023ad8f291 100644 (file)
@@ -1,9 +1,21 @@
 #/** @file\r
-# This driver produces UEFI PLATFORM_DRIVER_OVERRIDE_PROTOCOL if this protocol doesn't exist.\r
-# It doesn't install again if this protocol exists.\r
-# It only implements one interface GetDriver of PLATFORM_DRIVER_OVERRIDE_PROTOCOL protocol \r
-# and doesn't support other two interfaces GetDriverPath, DriverLoaded. \r
+#  This driver produces UEFI PLATFORM_DRIVER_OVERRIDE_PROTOCOL if this protocol doesn't exist.\r
+#  It doesn't install again if this protocol exists.\r
+#  It only implements one interface GetDriver of PLATFORM_DRIVER_OVERRIDE_PROTOCOL protocol \r
+#  and doesn't support other two interfaces GetDriverPath, DriverLoaded. \r
 # \r
+#  This driver also offers an UI interface in device manager to let user configure\r
+#  platform override protocol to override the default algorithm for matching\r
+#  drivers to controllers.\r
+#\r
+#  The main flow:\r
+#  1. It dynamicly locate all controller device path.\r
+#  2. It dynamicly locate all drivers which support binding protocol.\r
+#  3. It export and dynamicly update two menu to let user select the\r
+#     mapping between drivers to controllers.\r
+#  4. It save all the mapping info in NV variables for the following boot, \r
+#     which will be consumed by GetDriver API of the produced the platform override protocol.\r
+#\r
 # Copyright (c) 2007 - 2009, Intel Corporation. All rights reserved.\r
 #\r
 #  All rights reserved. This program and the accompanying materials\r
 \r
 [Defines]\r
   INF_VERSION                    = 0x00010005\r
-  BASE_NAME                      = PlatformDriOverrideDxe\r
+  BASE_NAME                      = PlatDriOverrideDxe\r
   FILE_GUID                      = 35034CE2-A6E5-4fb4-BABE-A0156E9B2549\r
-  MODULE_TYPE                    = UEFI_DRIVER\r
+  MODULE_TYPE                    = DXE_DRIVER\r
   VERSION_STRING                 = 1.0\r
-  ENTRY_POINT                    = PlatformDriverOverrideEntry\r
+  ENTRY_POINT                    = PlatDriOverrideDxeInit\r
+  UNLOAD_IMAGE                   = PlatDriOverrideDxeUnload\r
 \r
 #\r
 # The following information is for reference only and not required by the build tools.\r
 #\r
 \r
 [Sources.common]\r
-  PlatformDriOverride.c\r
+  VfrStrings.uni\r
+  Vfr.vfr\r
+  PlatDriOverrideDxe.c\r
+  PlatOverMngr.h\r
+  PlatDriOverrideLib.c\r
+  InternalPlatDriOverrideDxe.h\r
 \r
 [Packages]\r
   MdePkg/MdePkg.dec\r
 \r
 [LibraryClasses]\r
   BaseLib\r
-  UefiDriverEntryPoint\r
   DebugLib\r
-  PlatformDriverOverrideLib\r
+  UefiLib\r
+  UefiDriverEntryPoint\r
   UefiBootServicesTableLib\r
+  HiiLib\r
+  BaseMemoryLib\r
+  MemoryAllocationLib\r
+  DevicePathLib\r
+  DxeServicesTableLib\r
+  UefiRuntimeServicesTableLib\r
+  PrintLib \r
+   \r
+[Guids]\r
+  ##  This GUID C Name is not required for build since it is from UefiLib and not directly used by this module source.\r
+  ##  gEfiGlobalVariableGuid                      ## SOMETIMES_CONSUMED ## Variable:L"PlatformLang" this variable specifies the platform supported language string (RFC 4646 format)\r
+  ##  gEfiGlobalVariableGuid                      ## SOMETIMES_CONSUMED ## Variable:L"Lang" this variable specifies the platform supported language string (ISO 639-2 format)\r
+  ##\r
+  # There could be more than one variables, from PlatDriOver, PlatDriOver1, PlatDriOver2,...\r
+  #\r
+  # gEfiCallerIdGuid                            ## Private  ## Variable:L"PlatDriOver"\r
+  gEfiIfrTianoGuid                              ## CONSUMES ## Guid\r
 \r
 [Protocols]\r
-  gEfiPlatformDriverOverrideProtocolGuid   ## PRODUCED\r
-  
\ No newline at end of file
+  gEfiComponentName2ProtocolGuid                ## SOMETIMES_CONSUMED (Get Driver Name if ComponentName2Protocol exists)\r
+  gEfiComponentNameProtocolGuid                 ## SOMETIMES_CONSUMED (Get Driver Name if ComponentNameProtocol exists and ComponentName2Protocol doesn't exist)\r
+  gEfiFirmwareVolume2ProtocolGuid               ## SOMETIMES_CONSUMED (Get Driver Name from EFI UI section if ComponentName2Protocol and ComponentNameProtocol don't exist)\r
+  gEfiPciIoProtocolGuid                         ## SOMETIMES_CONSUMED (Find the PCI device if PciIo protocol is installed)\r
+  gEfiBusSpecificDriverOverrideProtocolGuid     ## SOMETIMES_CONSUMED (Check whether the PCI device contains one or more efi drivers in its option rom by this protocol) \r
+\r
+  gEfiDriverBindingProtocolGuid                 ## SOMETIMES_CONSUMED\r
+  gEfiLoadedImageProtocolGuid                   ## SOMETIMES_CONSUMED\r
+  gEfiLoadedImageDevicePathProtocolGuid         ## SOMETIMES_CONSUMED (Show the drivers in the second page that support DriverBindingProtocol, LoadedImageProtocol and LoadedImageDevicePathProtocol)\r
+  gEfiDevicePathProtocolGuid                    ## SOMETIMES_CONSUMED (Show the controller device in the first page that support DevicePathProtocol)\r
+\r
+  gEfiHiiDatabaseProtocolGuid                   ## CONSUMED\r
+  gEfiFormBrowser2ProtocolGuid                  ## CONSUMED\r
+  gEfiHiiConfigRoutingProtocolGuid              ## CONSUMED\r
+  gEfiHiiConfigAccessProtocolGuid               ## PRODUCED\r
+  gEfiDevicePathToTextProtocolGuid              ## CONSUMED\r
+  gEfiPlatformDriverOverrideProtocolGuid        ## PRODUCED\r