MdePkg[all]  1.08
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
DriverConfiguration.h File Reference

Data Structures

struct  _EFI_DRIVER_CONFIGURATION_PROTOCOL
 

Macros

#define EFI_DRIVER_CONFIGURATION_PROTOCOL_GUID
 

Typedefs

typedef struct
_EFI_DRIVER_CONFIGURATION_PROTOCOL 
EFI_DRIVER_CONFIGURATION_PROTOCOL
 
typedef EFI_STATUS(EFIAPIEFI_DRIVER_CONFIGURATION_SET_OPTIONS )(IN EFI_DRIVER_CONFIGURATION_PROTOCOL *This, IN EFI_HANDLE ControllerHandle, IN EFI_HANDLE ChildHandle, IN CHAR8 *Language, OUT EFI_DRIVER_CONFIGURATION_ACTION_REQUIRED *ActionRequired)
 
typedef EFI_STATUS(EFIAPIEFI_DRIVER_CONFIGURATION_OPTIONS_VALID )(IN EFI_DRIVER_CONFIGURATION_PROTOCOL *This, IN EFI_HANDLE ControllerHandle, IN EFI_HANDLE ChildHandle)
 
typedef EFI_STATUS(EFIAPIEFI_DRIVER_CONFIGURATION_FORCE_DEFAULTS )(IN EFI_DRIVER_CONFIGURATION_PROTOCOL *This, IN EFI_HANDLE ControllerHandle, IN EFI_HANDLE ChildHandle, IN UINT32 DefaultType, OUT EFI_DRIVER_CONFIGURATION_ACTION_REQUIRED *ActionRequired)
 

Variables

EFI_GUID gEfiDriverConfigurationProtocolGuid
 

Detailed Description

EFI Driver Configuration Protocol

Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.
SPDX-License-Identifier: BSD-2-Clause-Patent

Macro Definition Documentation

#define EFI_DRIVER_CONFIGURATION_PROTOCOL_GUID
Value:
{ \
0x107a772b, 0xd5e1, 0x11d4, {0x9a, 0x46, 0x0, 0x90, 0x27, 0x3f, 0xc1, 0x4d } \
}

Global ID for the Driver Configuration Protocol defined in EFI 1.1

Typedef Documentation

typedef EFI_STATUS(EFIAPI * EFI_DRIVER_CONFIGURATION_FORCE_DEFAULTS)(IN EFI_DRIVER_CONFIGURATION_PROTOCOL *This, IN EFI_HANDLE ControllerHandle, IN EFI_HANDLE ChildHandle, IN UINT32 DefaultType, OUT EFI_DRIVER_CONFIGURATION_ACTION_REQUIRED *ActionRequired)

Forces a driver to set the default configuration options for a controller.

Parameters
ThisA pointer to the EFI_DRIVER_CONFIGURATION_PROTOCOL instance.
ControllerHandleThe handle of the controller to force default configuration options on.
ChildHandleThe handle of the child controller to force default configuration options on This is an optional parameter that may be NULL. It will be NULL for device drivers. It will also be NULL for bus drivers that wish to force default configuration options for the bus controller. It will not be NULL for a bus driver that wishes to force default configuration options for one of its child controllers.
DefaultTypeThe type of default configuration options to force on the controller specified by ControllerHandle and ChildHandle. See Table 9-1 for legal values. A DefaultType of 0x00000000 must be supported by this protocol.
ActionRequiredA pointer to the action that the calling agent is required to perform when this function returns. See "Related Definitions" in Section 9.1 for a list of the actions that the calling agent is required to perform prior to accessing ControllerHandle again.
Return values
EFI_SUCCESSThe driver specified by This successfully forced the default configuration options on the controller specified by ControllerHandle and ChildHandle.
EFI_INVALID_PARAMETERControllerHandle is not a valid EFI_HANDLE.
EFI_INVALID_PARAMETERChildHandle is not NULL and it is not a valid EFI_HANDLE.
EFI_INVALID_PARAMETERActionRequired is NULL.
EFI_UNSUPPORTEDThe driver specified by This does not support forcing the default configuration options on the controller specified by ControllerHandle and ChildHandle.
EFI_UNSUPPORTEDThe driver specified by This does not support the configuration type specified by DefaultType.
EFI_DEVICE_ERRORA device error occurred while attempt to force the default configuration options on the controller specified by ControllerHandle and ChildHandle.
EFI_OUT_RESOURCESThere are not enough resources available to force the default configuration options on the controller specified by ControllerHandle and ChildHandle.
typedef EFI_STATUS(EFIAPI * EFI_DRIVER_CONFIGURATION_OPTIONS_VALID)(IN EFI_DRIVER_CONFIGURATION_PROTOCOL *This, IN EFI_HANDLE ControllerHandle, IN EFI_HANDLE ChildHandle)

Tests to see if a controller's current configuration options are valid.

Parameters
ThisA pointer to the EFI_DRIVER_CONFIGURATION_PROTOCOL instance.
ControllerHandleThe handle of the controller to test if it's current configuration options are valid.
ChildHandleThe handle of the child controller to test if it's current configuration options are valid. This is an optional parameter that may be NULL. It will be NULL for device drivers. It will also be NULL for bus drivers that wish to test the configuration options for the bus controller. It will not be NULL for a bus driver that wishes to test configuration options for one of its child controllers.
Return values
EFI_SUCCESSThe controller specified by ControllerHandle and ChildHandle that is being managed by the driver specified by This has a valid set of configuration options.
EFI_INVALID_PARAMETERControllerHandle is not a valid EFI_HANDLE.
EFI_INVALID_PARAMETERChildHandle is not NULL and it is not a valid EFI_HANDLE.
EFI_UNSUPPORTEDThe driver specified by This is not currently managing the controller specified by ControllerHandle and ChildHandle.
EFI_DEVICE_ERRORThe controller specified by ControllerHandle and ChildHandle that is being managed by the driver specified by This has an invalid set of configuration options.
typedef EFI_STATUS(EFIAPI * EFI_DRIVER_CONFIGURATION_SET_OPTIONS)(IN EFI_DRIVER_CONFIGURATION_PROTOCOL *This, IN EFI_HANDLE ControllerHandle, IN EFI_HANDLE ChildHandle, IN CHAR8 *Language, OUT EFI_DRIVER_CONFIGURATION_ACTION_REQUIRED *ActionRequired)

Allows the user to set controller specific options for a controller that a driver is currently managing.

Parameters
ThisA pointer to the EFI_DRIVER_CONFIGURATION_PROTOCOL instance.
ControllerHandleThe handle of the controller to set options on.
ChildHandleThe handle of the child controller to set options on. This is an optional parameter that may be NULL. It will be NULL for device drivers, and for bus drivers that wish to set options for the bus controller. It will not be NULL for a bus driver that wishes to set options for one of its child controllers.
LanguageA pointer to a three character ISO 639-2 language identifier. This is the language of the user interface that should be presented to the user, and it must match one of the languages specified in SupportedLanguages. The number of languages supported by a driver is up to the driver writer.
ActionRequiredA pointer to the action that the calling agent is required to perform when this function returns. See "Related Definitions" for a list of the actions that the calling agent is required to perform prior to accessing ControllerHandle again.
Return values
EFI_SUCCESSThe driver specified by This successfully set the configuration options for the controller specified by ControllerHandle..
EFI_INVALID_PARAMETERControllerHandle is not a valid EFI_HANDLE.
EFI_INVALID_PARAMETERChildHandle is not NULL and it is not a valid EFI_HANDLE.
EFI_INVALID_PARAMETERActionRequired is NULL.
EFI_UNSUPPORTEDThe driver specified by This does not support setting configuration options for the controller specified by ControllerHandle and ChildHandle.
EFI_UNSUPPORTEDThe driver specified by This does not support the language specified by Language.
EFI_DEVICE_ERRORA device error occurred while attempt to set the configuration options for the controller specified by ControllerHandle and ChildHandle.
EFI_OUT_RESOURCESThere are not enough resources available to set the configuration options for the controller specified by ControllerHandle and ChildHandle.

Variable Documentation

EFI_GUID gEfiDriverConfigurationProtocolGuid