OpenCore
1.0.4
OpenCore Bootloader
|
Go to the source code of this file.
Data Structures | |
struct | BDS_CONSOLE_CONNECT_ENTRY |
Macros | |
#define | CONSOLE_OUT 0x00000001 |
#define | STD_ERROR 0x00000002 |
#define | CONSOLE_IN 0x00000004 |
#define | CONSOLE_ALL (CONSOLE_OUT | CONSOLE_IN | STD_ERROR) |
Functions | |
VOID *EFIAPI | BdsLibGetVariableAndSize (IN CHAR16 *Name, IN EFI_GUID *VendorGuid, OUT UINTN *VariableSize) |
VOID EFIAPI | BdsLibConnectAllDriversToAllControllers (VOID) |
VOID EFIAPI | BdsLibConnectAll (VOID) |
EFI_STATUS EFIAPI | BdsLibConnectDevicePath (IN EFI_DEVICE_PATH_PROTOCOL *DevicePathToConnect) |
EFI_STATUS EFIAPI | BdsLibConnectAllEfi (VOID) |
EFI_STATUS EFIAPI | BdsLibDisconnectAllEfi (VOID) |
VOID EFIAPI | BdsLibConnectAllConsoles (VOID) |
EFI_STATUS EFIAPI | BdsLibConnectAllDefaultConsoles (VOID) |
EFI_STATUS EFIAPI | BdsLibUpdateConsoleVariable (IN CHAR16 *ConVarName, IN EFI_DEVICE_PATH_PROTOCOL *CustomizedConDevicePath, IN EFI_DEVICE_PATH_PROTOCOL *ExclusiveDevicePath) |
EFI_STATUS EFIAPI | BdsLibConnectConsoleVariable (IN CHAR16 *ConVarName) |
EFI_DEVICE_PATH_PROTOCOL *EFIAPI | BdsLibDelPartMatchInstance (IN EFI_DEVICE_PATH_PROTOCOL *Multi, IN EFI_DEVICE_PATH_PROTOCOL *Single) |
BOOLEAN EFIAPI | BdsLibMatchDevicePaths (IN EFI_DEVICE_PATH_PROTOCOL *Multi, IN EFI_DEVICE_PATH_PROTOCOL *Single) |
EFI_STATUS EFIAPI | BdsLibConnectUsbDevByShortFormDP (IN UINT8 HostControllerPI, IN EFI_DEVICE_PATH_PROTOCOL *RemainingDevicePath) |
VOID EFIAPI | PlatformBdsInit (VOID) |
VOID EFIAPI | PlatformBdsPolicyBehavior (VOID) |
Duet BDS library.
Copyright (c) 2004 - 2012, Intel Corporation. All rights reserved.
This program and the accompanying materials are licensed and made available under the terms and conditions of the BSD License that accompanies this distribution. The full text of the license may be found at http://opensource.org/licenses/bsd-license.php.
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
Definition in file DuetBdsLib.h.
#define CONSOLE_ALL (CONSOLE_OUT | CONSOLE_IN | STD_ERROR) |
Definition at line 24 of file DuetBdsLib.h.
#define CONSOLE_IN 0x00000004 |
Definition at line 23 of file DuetBdsLib.h.
#define CONSOLE_OUT 0x00000001 |
ConnectType
Definition at line 21 of file DuetBdsLib.h.
#define STD_ERROR 0x00000002 |
Definition at line 22 of file DuetBdsLib.h.
VOID EFIAPI BdsLibConnectAll | ( | VOID | ) |
This function connects all system drivers to controllers.
This function will connect all the system driver to controller first, and then special connect the default console, this make sure all the system controller available and the platform default console connected.
Definition at line 36 of file BdsConnect.c.
VOID EFIAPI BdsLibConnectAllConsoles | ( | VOID | ) |
This function will search every simpletxt device in the current system, and make every simpletxt device a potential console device.
This function will search every simpletext device in current system, and make every simpletext device as a potential console device.
Definition at line 429 of file BdsConsole.c.
EFI_STATUS EFIAPI BdsLibConnectAllDefaultConsoles | ( | VOID | ) |
This function will connect console device based on the console device variable ConIn, ConOut and ErrOut.
EFI_SUCCESS | At least one of the ConIn and ConOut devices have been connected. |
EFI_STATUS | Return the status of BdsLibConnectConsoleVariable (). |
This function will connect console device base on the console device variable ConIn, ConOut and ErrOut.
EFI_SUCCESS | At least one of the ConIn and ConOut device have been connected success. |
EFI_STATUS | Return the status of BdsLibConnectConsoleVariable (). |
Definition at line 506 of file BdsConsole.c.
VOID EFIAPI BdsLibConnectAllDriversToAllControllers | ( | VOID | ) |
This function connects all system drivers with the corresponding controllers.
Connects all drivers to all controllers. This function make sure all the current system driver will manage the corresponding controllers if have. And at the same time, make sure all the system controllers have driver to manage it if have.
Definition at line 315 of file BdsConnect.c.
EFI_STATUS EFIAPI BdsLibConnectAllEfi | ( | VOID | ) |
This function will connect all current system handles recursively. gBS->ConnectController() service is invoked for each handle exist in system handler buffer. If the handle is bus type handler, all childrens also will be connected recursively by gBS->ConnectController().
EFI_SUCCESS | All handles and child handles have been connected. |
EFI_STATUS | Return the status of gBS->LocateHandleBuffer(). |
This function will connect all current system handles recursively.
gBS->ConnectController() service is invoked for each handle exist in system handler buffer. If the handle is bus type handler, all childrens also will be connected recursively by gBS->ConnectController().
EFI_SUCCESS | All handles and their child handles have been connected |
EFI_STATUS | Error status returned by of gBS->LocateHandleBuffer(). |
Definition at line 228 of file BdsConnect.c.
EFI_STATUS EFIAPI BdsLibConnectConsoleVariable | ( | IN CHAR16 * | ConVarName | ) |
Connect the console device base on the variable ConVarName. If ConVarName is a multi-instance device path, and at least one instance connects successfully, then this function will return success. If the handle associate with one device path node can not be created successfully, then still give chance to do the dispatch, which load the missing drivers if possible.
ConVarName | The console related variable name: ConIn, ConOut, ErrOut. |
EFI_NOT_FOUND | No console devices were connected successfully |
EFI_SUCCESS | Connected at least one instance of the console device path based on the variable ConVarName. |
Connect the console device base on the variable ConVarName, if device path of the ConVarName is multi-instance device path and anyone of the instances is connected success, then this function will return success. If the handle associate with one device path node can not be created successfully, then still give chance to do the dispatch, which load the missing drivers if possible..
ConVarName | Console related variable name, ConIn, ConOut, ErrOut. |
EFI_NOT_FOUND | There is not any console devices connected success |
EFI_SUCCESS | Success connect any one instance of the console device path base on the variable ConVarName. |
Definition at line 334 of file BdsConsole.c.
EFI_STATUS EFIAPI BdsLibConnectDevicePath | ( | IN EFI_DEVICE_PATH_PROTOCOL * | DevicePathToConnect | ) |
This function creates all handles associated with the given device path node. If the handle associated with one device path node cannot be created, then it tries to execute the dispatch to load the missing drivers.
DevicePathToConnect | The device path to be connected. Can be a multi-instance device path. |
EFI_SUCCESS | All handles associates with every device path node were created. |
EFI_OUT_OF_RESOURCES | Not enough resources to create new handles. |
EFI_NOT_FOUND | At least one handle could not be created. |
This function will create all handles associate with every device path node. If the handle associate with one device path node can not be created successfully, then still give chance to do the dispatch, which load the missing drivers if possible.
DevicePathToConnect | The device path which will be connected, it can be a multi-instance device path |
EFI_SUCCESS | All handles associate with every device path node have been created |
EFI_OUT_OF_RESOURCES | There is no resource to create new handles |
EFI_NOT_FOUND | Create the handle associate with one device path node failed |
Definition at line 94 of file BdsConnect.c.
EFI_STATUS EFIAPI BdsLibConnectUsbDevByShortFormDP | ( | IN UINT8 | HostControllerPI, |
IN EFI_DEVICE_PATH_PROTOCOL * | RemainingDevicePath ) |
Connect the specific USB device that matches the RemainingDevicePath, and whose bus is determined by Host Controller (Uhci or Ehci).
HostControllerPI | Uhci (0x00) or Ehci (0x20) or Both uhci and ehci (0xFF). |
RemainingDevicePath | A short-form device path that starts with the first element being a USB WWID or a USB Class device path. |
EFI_SUCCESS | The specific Usb device is connected successfully. |
EFI_INVALID_PARAMETER | Invalid HostControllerPi (not 0x00, 0x20 or 0xFF) or RemainingDevicePath is not the USB class device path. |
EFI_NOT_FOUND | The device specified by device path is not found. |
Connect the specific Usb device which match the short form device path, and whose bus is determined by Host Controller (Uhci or Ehci).
HostControllerPI | Uhci (0x00) or Ehci (0x20) or Both uhci and ehci (0xFF) |
RemainingDevicePath | a short-form device path that starts with the first element being a USB WWID or a USB Class device path |
Definition at line 355 of file BdsConnect.c.
EFI_DEVICE_PATH_PROTOCOL *EFIAPI BdsLibDelPartMatchInstance | ( | IN EFI_DEVICE_PATH_PROTOCOL * | Multi, |
IN EFI_DEVICE_PATH_PROTOCOL * | Single ) |
Delete the instance in Multi that overlaps with Single.
Multi | A pointer to a multi-instance device path data structure. |
Single | A pointer to a single-instance device path data structure. |
Delete the instance in Multi which matches partly with Single instance
Multi | A pointer to a multi-instance device path data structure. |
Single | A pointer to a single-instance device path data structure. |
EFI_STATUS EFIAPI BdsLibDisconnectAllEfi | ( | VOID | ) |
This function will disconnect all current system handles. gBS->DisconnectController() is invoked for each handle exists in system handle buffer. If handle is a bus type handle, all childrens also are disconnected recursively by gBS->DisconnectController().
EFI_SUCCESS | All handles have been disconnected. |
EFI_STATUS | Error status returned by of gBS->LocateHandleBuffer(). |
This function will disconnect all current system handles.
gBS->DisconnectController() is invoked for each handle exists in system handle buffer. If handle is a bus type handle, all childrens also are disconnected recursively by gBS->DisconnectController().
EFI_SUCCESS | All handles have been disconnected |
EFI_STATUS | Error status returned by of gBS->LocateHandleBuffer(). |
Definition at line 272 of file BdsConnect.c.
VOID *EFIAPI BdsLibGetVariableAndSize | ( | IN CHAR16 * | Name, |
IN EFI_GUID * | VendorGuid, | ||
OUT UINTN * | VariableSize ) |
This function reads the EFI variable (VendorGuid/Name) and returns a dynamically allocated buffer and the size of the buffer. If it fails, return NULL.
Name | The string part of the EFI variable name. |
VendorGuid | The GUID part of the EFI variable name. |
VariableSize | Returns the size of the EFI variable that was read. |
NULL | The variable was not read. |
Read the EFI variable (VendorGuid/Name) and return a dynamically allocated buffer, and the size of the buffer. If failure return NULL.
Name | String part of EFI variable name |
VendorGuid | GUID part of EFI variable name |
VariableSize | Returns the size of the EFI variable that was read |
NULL | Variable was not read |
BOOLEAN EFIAPI BdsLibMatchDevicePaths | ( | IN EFI_DEVICE_PATH_PROTOCOL * | Multi, |
IN EFI_DEVICE_PATH_PROTOCOL * | Single ) |
This function compares a device path data structure to that of all the nodes of a second device path instance.
Multi | A pointer to a multi-instance device path data structure. |
Single | A pointer to a single-instance device path data structure. |
TRUE | If the Single device path is contained within a Multi device path. |
FALSE | The Single device path is not contained within a Multi device path. |
Function compares a device path data structure to that of all the nodes of a second device path instance.
Multi | A pointer to a multi-instance device path data structure. |
Single | A pointer to a single-instance device path data structure. |
TRUE | If the Single device path is contained within Multi device path. |
FALSE | The Single device path is not match within Multi device path. |
EFI_STATUS EFIAPI BdsLibUpdateConsoleVariable | ( | IN CHAR16 * | ConVarName, |
IN EFI_DEVICE_PATH_PROTOCOL * | CustomizedConDevicePath, | ||
IN EFI_DEVICE_PATH_PROTOCOL * | ExclusiveDevicePath ) |
This function updates the console variable based on ConVarName. It can add or remove one specific console device path from the variable
ConVarName | The console-related variable name: ConIn, ConOut, ErrOut. |
CustomizedConDevicePath | The console device path to be added to the console variable ConVarName. Cannot be multi-instance. |
ExclusiveDevicePath | The console device path to be removed from the console variable ConVarName. Cannot be multi-instance. |
EFI_UNSUPPORTED | The added device path is the same as a removed one. |
EFI_SUCCESS | Successfully added or removed the device path from the console variable. |
This function update console variable based on ConVarName, it can add or remove one specific console device path from the variable
ConVarName | Console related variable name, ConIn, ConOut, ErrOut. |
CustomizedConDevicePath | The console device path which will be added to the console variable ConVarName, this parameter can not be multi-instance. |
ExclusiveDevicePath | The console device path which will be removed from the console variable ConVarName, this parameter can not be multi-instance. |
EFI_UNSUPPORTED | The added device path is same to the removed one. |
EFI_SUCCESS | Success add or remove the device path from the console variable. |
Definition at line 198 of file BdsConsole.c.
VOID EFIAPI PlatformBdsInit | ( | VOID | ) |
Platform Bds initialization. Includes the platform firmware vendor, revision and so crc check.
Definition at line 889 of file BdsPlatform.c.
VOID EFIAPI PlatformBdsPolicyBehavior | ( | VOID | ) |
The function will execute with as the platform policy, current policy is driven by boot mode. IBV/OEM can customize this code for their specific policy action.
Definition at line 1015 of file BdsPlatform.c.