2007-07-24 10:06:37 +02:00
|
|
|
/** @file
|
2009-02-03 08:56:54 +01:00
|
|
|
Implementation of driver entry point and driver binding protocol.
|
2007-07-24 10:06:37 +02:00
|
|
|
|
2009-02-03 08:56:54 +01:00
|
|
|
Copyright (c) 2005 - 2008, Intel Corporation. <BR>
|
|
|
|
All rights reserved. This program and the accompanying materials are licensed
|
|
|
|
and made available under the terms and conditions of the BSD License which
|
|
|
|
accompanies this distribution. The full text of the license may be found at
|
|
|
|
http://opensource.org/licenses/bsd-license.php
|
2007-07-24 10:06:37 +02:00
|
|
|
|
|
|
|
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
|
|
|
|
|
|
|
**/
|
|
|
|
|
|
|
|
#include "MnpDriver.h"
|
|
|
|
#include "MnpImpl.h"
|
|
|
|
|
|
|
|
|
|
|
|
EFI_DRIVER_BINDING_PROTOCOL gMnpDriverBinding = {
|
|
|
|
MnpDriverBindingSupported,
|
|
|
|
MnpDriverBindingStart,
|
|
|
|
MnpDriverBindingStop,
|
|
|
|
0xa,
|
|
|
|
NULL,
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
2008-11-18 05:52:51 +01:00
|
|
|
Test to see if this driver supports ControllerHandle. This service
|
|
|
|
is called by the EFI boot service ConnectController(). In
|
|
|
|
order to make drivers as small as possible, there are a few calling
|
|
|
|
restrictions for this service. ConnectController() must
|
|
|
|
follow these calling restrictions. If any other agent wishes to call
|
|
|
|
Supported() it must also follow these calling restrictions.
|
|
|
|
|
2009-02-03 08:56:54 +01:00
|
|
|
@param[in] This Protocol instance pointer.
|
|
|
|
@param[in] ControllerHandle Handle of device to test.
|
|
|
|
@param[in] RemainingDevicePath Optional parameter use to pick a specific
|
|
|
|
child device to start.
|
2008-11-18 05:52:51 +01:00
|
|
|
|
2009-02-03 08:56:54 +01:00
|
|
|
@retval EFI_SUCCESS This driver supports this device.
|
|
|
|
@retval EFI_ALREADY_STARTED This driver is already running on this device.
|
|
|
|
@retval Others This driver does not support this device.
|
2007-07-24 10:06:37 +02:00
|
|
|
|
|
|
|
**/
|
|
|
|
EFI_STATUS
|
|
|
|
EFIAPI
|
|
|
|
MnpDriverBindingSupported (
|
|
|
|
IN EFI_DRIVER_BINDING_PROTOCOL *This,
|
|
|
|
IN EFI_HANDLE ControllerHandle,
|
|
|
|
IN EFI_DEVICE_PATH_PROTOCOL *RemainingDevicePath OPTIONAL
|
|
|
|
)
|
|
|
|
{
|
2008-08-01 10:16:40 +02:00
|
|
|
EFI_STATUS Status;
|
|
|
|
EFI_SIMPLE_NETWORK_PROTOCOL *Snp;
|
2007-07-24 10:06:37 +02:00
|
|
|
|
|
|
|
//
|
|
|
|
// Test to see if MNP is already installed.
|
|
|
|
//
|
|
|
|
Status = gBS->OpenProtocol (
|
|
|
|
ControllerHandle,
|
|
|
|
&gEfiManagedNetworkServiceBindingProtocolGuid,
|
|
|
|
NULL,
|
|
|
|
This->DriverBindingHandle,
|
|
|
|
ControllerHandle,
|
|
|
|
EFI_OPEN_PROTOCOL_TEST_PROTOCOL
|
|
|
|
);
|
|
|
|
if (!EFI_ERROR (Status)) {
|
|
|
|
return EFI_ALREADY_STARTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
2008-08-01 10:16:40 +02:00
|
|
|
// Test to open the Simple Network protocol BY_DRIVER.
|
2007-07-24 10:06:37 +02:00
|
|
|
//
|
|
|
|
Status = gBS->OpenProtocol (
|
|
|
|
ControllerHandle,
|
|
|
|
&gEfiSimpleNetworkProtocolGuid,
|
2008-08-01 10:16:40 +02:00
|
|
|
(VOID **) &Snp,
|
2007-07-24 10:06:37 +02:00
|
|
|
This->DriverBindingHandle,
|
|
|
|
ControllerHandle,
|
2008-08-01 10:16:40 +02:00
|
|
|
EFI_OPEN_PROTOCOL_BY_DRIVER
|
2007-07-24 10:06:37 +02:00
|
|
|
);
|
|
|
|
|
2008-08-01 10:16:40 +02:00
|
|
|
if (EFI_ERROR (Status)) {
|
|
|
|
return Status;
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// Close the openned SNP protocol.
|
|
|
|
//
|
|
|
|
gBS->CloseProtocol (
|
|
|
|
ControllerHandle,
|
|
|
|
&gEfiSimpleNetworkProtocolGuid,
|
|
|
|
This->DriverBindingHandle,
|
|
|
|
ControllerHandle
|
|
|
|
);
|
|
|
|
|
|
|
|
return EFI_SUCCESS;
|
2007-07-24 10:06:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2008-11-18 05:52:51 +01:00
|
|
|
Start this driver on ControllerHandle. This service is called by the
|
2009-02-03 08:56:54 +01:00
|
|
|
EFI boot service ConnectController(). In order to make drivers as small
|
|
|
|
as possible, there are a few calling restrictions for this service.
|
|
|
|
ConnectController() must follow these calling restrictions. If any other
|
|
|
|
agent wishes to call Start() it must also follow these calling restrictions.
|
|
|
|
|
|
|
|
@param[in] This Protocol instance pointer.
|
|
|
|
@param[in] ControllerHandle Handle of device to bind driver to.
|
|
|
|
@param[in] RemainingDevicePath Optional parameter use to pick a specific
|
|
|
|
child device to start.
|
|
|
|
|
|
|
|
@retval EFI_SUCCESS This driver is added to ControllerHandle.
|
|
|
|
@retval EFI_ALREADY_STARTED This driver is already running on ControllerHandle.
|
|
|
|
@retval EFI_OUT_OF_RESOURCES Failed to allocate memory for Mnp Service Data.
|
|
|
|
@retval Others This driver does not support this device.
|
|
|
|
|
2007-07-24 10:06:37 +02:00
|
|
|
**/
|
|
|
|
EFI_STATUS
|
|
|
|
EFIAPI
|
|
|
|
MnpDriverBindingStart (
|
|
|
|
IN EFI_DRIVER_BINDING_PROTOCOL *This,
|
|
|
|
IN EFI_HANDLE ControllerHandle,
|
|
|
|
IN EFI_DEVICE_PATH_PROTOCOL *RemainingDevicePath OPTIONAL
|
|
|
|
)
|
|
|
|
{
|
|
|
|
EFI_STATUS Status;
|
|
|
|
MNP_SERVICE_DATA *MnpServiceData;
|
|
|
|
BOOLEAN MnpInitialized;
|
|
|
|
|
|
|
|
MnpInitialized = FALSE;
|
|
|
|
|
2008-02-14 10:40:22 +01:00
|
|
|
MnpServiceData = AllocateZeroPool (sizeof (MNP_SERVICE_DATA));
|
2007-07-24 10:06:37 +02:00
|
|
|
if (MnpServiceData == NULL) {
|
2008-02-14 10:40:22 +01:00
|
|
|
DEBUG ((EFI_D_ERROR, "MnpDriverBindingStart(): Failed to allocate the Mnp Service Data.\n"));
|
2007-07-24 10:06:37 +02:00
|
|
|
|
|
|
|
return EFI_OUT_OF_RESOURCES;
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// Initialize the Mnp Service Data.
|
|
|
|
//
|
|
|
|
Status = MnpInitializeServiceData (MnpServiceData, This->DriverBindingHandle, ControllerHandle);
|
|
|
|
if (EFI_ERROR (Status)) {
|
|
|
|
|
2008-02-14 10:40:22 +01:00
|
|
|
DEBUG ((EFI_D_ERROR, "MnpDriverBindingStart: MnpInitializeServiceData failed, %r.\n",Status));
|
2007-07-24 10:06:37 +02:00
|
|
|
goto ErrorExit;
|
|
|
|
}
|
|
|
|
|
|
|
|
MnpInitialized = TRUE;
|
|
|
|
|
|
|
|
//
|
|
|
|
// Install the MNP Service Binding Protocol.
|
|
|
|
//
|
|
|
|
Status = gBS->InstallMultipleProtocolInterfaces (
|
|
|
|
&ControllerHandle,
|
|
|
|
&gEfiManagedNetworkServiceBindingProtocolGuid,
|
|
|
|
&MnpServiceData->ServiceBinding,
|
|
|
|
NULL
|
|
|
|
);
|
|
|
|
|
|
|
|
ErrorExit:
|
|
|
|
|
|
|
|
if (EFI_ERROR (Status)) {
|
|
|
|
|
|
|
|
if (MnpInitialized) {
|
|
|
|
//
|
|
|
|
// Flush the Mnp Service Data.
|
|
|
|
//
|
2008-09-12 07:36:21 +02:00
|
|
|
MnpFlushServiceData (MnpServiceData, This->DriverBindingHandle);
|
2007-07-24 10:06:37 +02:00
|
|
|
}
|
|
|
|
|
2008-02-14 10:40:22 +01:00
|
|
|
gBS->FreePool (MnpServiceData);
|
2007-07-24 10:06:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return Status;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2008-11-18 05:52:51 +01:00
|
|
|
Stop this driver on ControllerHandle. This service is called by the
|
2009-02-03 08:56:54 +01:00
|
|
|
EFI boot service DisconnectController(). In order to make drivers as
|
|
|
|
small as possible, there are a few calling restrictions for this service.
|
|
|
|
DisconnectController() must follow these calling restrictions. If any other
|
|
|
|
agent wishes to call Stop() it must also follow these calling restrictions.
|
2008-11-18 05:52:51 +01:00
|
|
|
|
2009-02-03 08:56:54 +01:00
|
|
|
@param[in] This Protocol instance pointer.
|
|
|
|
@param[in] ControllerHandle Handle of device to stop driver on.
|
|
|
|
@param[in] NumberOfChildren Number of Handles in ChildHandleBuffer. If
|
|
|
|
number of children is zero stop the entire
|
|
|
|
bus driver.
|
|
|
|
@param[in] ChildHandleBuffer List of Child Handles to Stop.
|
2008-11-18 05:52:51 +01:00
|
|
|
|
2009-02-03 08:56:54 +01:00
|
|
|
@retval EFI_SUCCESS This driver is removed ControllerHandle.
|
|
|
|
@retval EFI_DEVICE_ERROR The device could not be stopped due to a device error.
|
2007-07-24 10:06:37 +02:00
|
|
|
|
|
|
|
**/
|
|
|
|
EFI_STATUS
|
|
|
|
EFIAPI
|
|
|
|
MnpDriverBindingStop (
|
|
|
|
IN EFI_DRIVER_BINDING_PROTOCOL *This,
|
|
|
|
IN EFI_HANDLE ControllerHandle,
|
|
|
|
IN UINTN NumberOfChildren,
|
2009-02-03 08:56:54 +01:00
|
|
|
IN EFI_HANDLE *ChildHandleBuffer OPTIONAL
|
2007-07-24 10:06:37 +02:00
|
|
|
)
|
|
|
|
{
|
|
|
|
EFI_STATUS Status;
|
|
|
|
EFI_SERVICE_BINDING_PROTOCOL *ServiceBinding;
|
|
|
|
MNP_SERVICE_DATA *MnpServiceData;
|
|
|
|
MNP_INSTANCE_DATA *Instance;
|
|
|
|
|
|
|
|
//
|
|
|
|
// Retrieve the MNP service binding protocol from the ControllerHandle.
|
|
|
|
//
|
|
|
|
Status = gBS->OpenProtocol (
|
|
|
|
ControllerHandle,
|
|
|
|
&gEfiManagedNetworkServiceBindingProtocolGuid,
|
|
|
|
(VOID **) &ServiceBinding,
|
|
|
|
This->DriverBindingHandle,
|
|
|
|
ControllerHandle,
|
|
|
|
EFI_OPEN_PROTOCOL_GET_PROTOCOL
|
|
|
|
);
|
|
|
|
if (EFI_ERROR (Status)) {
|
|
|
|
|
2008-02-14 10:40:22 +01:00
|
|
|
DEBUG (
|
|
|
|
(EFI_D_ERROR,
|
|
|
|
"MnpDriverBindingStop: Locate MNP Service Binding Protocol failed, %r.\n",
|
2007-07-24 10:06:37 +02:00
|
|
|
Status)
|
|
|
|
);
|
2007-12-18 08:01:23 +01:00
|
|
|
return EFI_DEVICE_ERROR;
|
2007-07-24 10:06:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
MnpServiceData = MNP_SERVICE_DATA_FROM_THIS (ServiceBinding);
|
|
|
|
|
2007-12-18 08:01:23 +01:00
|
|
|
if (NumberOfChildren == 0) {
|
2007-07-24 10:06:37 +02:00
|
|
|
//
|
2007-12-18 08:01:23 +01:00
|
|
|
// Uninstall the MNP Service Binding Protocol.
|
2007-07-24 10:06:37 +02:00
|
|
|
//
|
2007-12-18 08:01:23 +01:00
|
|
|
gBS->UninstallMultipleProtocolInterfaces (
|
|
|
|
ControllerHandle,
|
|
|
|
&gEfiManagedNetworkServiceBindingProtocolGuid,
|
|
|
|
ServiceBinding,
|
|
|
|
NULL
|
|
|
|
);
|
2007-07-24 10:06:37 +02:00
|
|
|
|
2007-12-18 08:01:23 +01:00
|
|
|
//
|
|
|
|
// Flush the Mnp service data.
|
|
|
|
//
|
2008-09-12 07:36:21 +02:00
|
|
|
MnpFlushServiceData (MnpServiceData, This->DriverBindingHandle);
|
2007-07-24 10:06:37 +02:00
|
|
|
|
2008-02-14 10:40:22 +01:00
|
|
|
gBS->FreePool (MnpServiceData);
|
2007-12-18 08:01:23 +01:00
|
|
|
} else {
|
2008-02-14 10:40:22 +01:00
|
|
|
while (!IsListEmpty (&MnpServiceData->ChildrenList)) {
|
2007-12-18 08:01:23 +01:00
|
|
|
//
|
|
|
|
// Don't use NetListRemoveHead here, the remove opreration will be done
|
|
|
|
// in ServiceBindingDestroyChild.
|
|
|
|
//
|
|
|
|
Instance = NET_LIST_HEAD (
|
|
|
|
&MnpServiceData->ChildrenList,
|
|
|
|
MNP_INSTANCE_DATA,
|
|
|
|
InstEntry
|
|
|
|
);
|
2007-07-24 10:06:37 +02:00
|
|
|
|
2007-12-18 08:01:23 +01:00
|
|
|
ServiceBinding->DestroyChild (ServiceBinding, Instance->Handle);
|
|
|
|
}
|
2007-07-24 10:06:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return Status;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2009-02-03 08:56:54 +01:00
|
|
|
Creates a child handle with a set of I/O services.
|
2007-07-24 10:06:37 +02:00
|
|
|
|
2009-02-03 08:56:54 +01:00
|
|
|
@param[in] This Protocol instance pointer.
|
|
|
|
@param[in, out] ChildHandle Pointer to the handle of the child to create. If
|
|
|
|
it is NULL, then a new handle is created. If
|
|
|
|
it is not NULL, then the I/O services are added
|
|
|
|
to the existing child handle.
|
2007-07-24 10:06:37 +02:00
|
|
|
|
2009-02-03 08:56:54 +01:00
|
|
|
@retval EFI_SUCCES The protocol was added to ChildHandle.
|
|
|
|
@retval EFI_INVALID_PARAMETER ChildHandle is NULL.
|
|
|
|
@retval EFI_OUT_OF_RESOURCES There are not enough resources availabe to
|
|
|
|
create the child.
|
|
|
|
@retval Others The child handle was not created.
|
2007-07-24 10:06:37 +02:00
|
|
|
|
|
|
|
**/
|
|
|
|
EFI_STATUS
|
|
|
|
EFIAPI
|
|
|
|
MnpServiceBindingCreateChild (
|
|
|
|
IN EFI_SERVICE_BINDING_PROTOCOL *This,
|
2009-01-08 05:47:41 +01:00
|
|
|
IN OUT EFI_HANDLE *ChildHandle
|
2007-07-24 10:06:37 +02:00
|
|
|
)
|
|
|
|
{
|
|
|
|
EFI_STATUS Status;
|
|
|
|
MNP_SERVICE_DATA *MnpServiceData;
|
|
|
|
MNP_INSTANCE_DATA *Instance;
|
|
|
|
VOID *Snp;
|
|
|
|
EFI_TPL OldTpl;
|
|
|
|
|
|
|
|
if ((This == NULL) || (ChildHandle == NULL)) {
|
|
|
|
|
|
|
|
return EFI_INVALID_PARAMETER;
|
|
|
|
}
|
|
|
|
|
|
|
|
MnpServiceData = MNP_SERVICE_DATA_FROM_THIS (This);
|
|
|
|
|
|
|
|
//
|
|
|
|
// Allocate buffer for the new instance.
|
|
|
|
//
|
2008-02-14 10:40:22 +01:00
|
|
|
Instance = AllocateZeroPool (sizeof (MNP_INSTANCE_DATA));
|
2007-07-24 10:06:37 +02:00
|
|
|
if (Instance == NULL) {
|
|
|
|
|
2008-02-14 10:40:22 +01:00
|
|
|
DEBUG ((EFI_D_ERROR, "MnpServiceBindingCreateChild: Faild to allocate memory for the new instance.\n"));
|
2007-07-24 10:06:37 +02:00
|
|
|
return EFI_OUT_OF_RESOURCES;
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// Init the instance data.
|
|
|
|
//
|
|
|
|
MnpInitializeInstanceData (MnpServiceData, Instance);
|
|
|
|
|
|
|
|
Status = gBS->InstallMultipleProtocolInterfaces (
|
|
|
|
ChildHandle,
|
|
|
|
&gEfiManagedNetworkProtocolGuid,
|
|
|
|
&Instance->ManagedNetwork,
|
|
|
|
NULL
|
|
|
|
);
|
|
|
|
if (EFI_ERROR (Status)) {
|
|
|
|
|
2008-02-14 10:40:22 +01:00
|
|
|
DEBUG (
|
|
|
|
(EFI_D_ERROR,
|
|
|
|
"MnpServiceBindingCreateChild: Failed to install the MNP protocol, %r.\n",
|
2007-07-24 10:06:37 +02:00
|
|
|
Status)
|
|
|
|
);
|
|
|
|
goto ErrorExit;
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// Save the instance's childhandle.
|
|
|
|
//
|
|
|
|
Instance->Handle = *ChildHandle;
|
|
|
|
|
|
|
|
Status = gBS->OpenProtocol (
|
|
|
|
MnpServiceData->ControllerHandle,
|
|
|
|
&gEfiSimpleNetworkProtocolGuid,
|
|
|
|
(VOID **) &Snp,
|
|
|
|
gMnpDriverBinding.DriverBindingHandle,
|
|
|
|
Instance->Handle,
|
|
|
|
EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER
|
|
|
|
);
|
|
|
|
if (EFI_ERROR (Status)) {
|
|
|
|
goto ErrorExit;
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// Add the child instance into ChildrenList.
|
|
|
|
//
|
2008-02-14 10:40:22 +01:00
|
|
|
OldTpl = gBS->RaiseTPL (TPL_CALLBACK);
|
2007-07-24 10:06:37 +02:00
|
|
|
|
2008-02-14 10:40:22 +01:00
|
|
|
InsertTailList (&MnpServiceData->ChildrenList, &Instance->InstEntry);
|
2007-07-24 10:06:37 +02:00
|
|
|
MnpServiceData->ChildrenNumber++;
|
|
|
|
|
2008-02-14 10:40:22 +01:00
|
|
|
gBS->RestoreTPL (OldTpl);
|
2007-07-24 10:06:37 +02:00
|
|
|
|
|
|
|
ErrorExit:
|
|
|
|
|
|
|
|
if (EFI_ERROR (Status)) {
|
|
|
|
|
|
|
|
if (Instance->Handle != NULL) {
|
|
|
|
|
|
|
|
gBS->UninstallMultipleProtocolInterfaces (
|
|
|
|
&gEfiManagedNetworkProtocolGuid,
|
|
|
|
&Instance->ManagedNetwork,
|
|
|
|
NULL
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2008-02-14 10:40:22 +01:00
|
|
|
gBS->FreePool (Instance);
|
2007-07-24 10:06:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return Status;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2009-02-03 08:56:54 +01:00
|
|
|
Destroys a child handle with a set of I/O services.
|
|
|
|
|
|
|
|
The DestroyChild() function does the opposite of CreateChild(). It removes a
|
|
|
|
protocol that was installed by CreateChild() from ChildHandle. If the removed
|
|
|
|
protocol is the last protocol on ChildHandle, then ChildHandle is destroyed.
|
|
|
|
|
|
|
|
@param[in] This Pointer to the EFI_SERVICE_BINDING_PROTOCOL
|
|
|
|
instance.
|
|
|
|
@param[in] ChildHandle Handle of the child to destroy.
|
|
|
|
|
|
|
|
@retval EFI_SUCCES The protocol was removed from ChildHandle.
|
|
|
|
@retval EFI_UNSUPPORTED ChildHandle does not support the protocol that
|
|
|
|
is being removed.
|
|
|
|
@retval EFI_INVALID_PARAMETER ChildHandle is not a valid UEFI handle.
|
|
|
|
@retval EFI_ACCESS_DENIED The protocol could not be removed from the
|
|
|
|
ChildHandle because its services are being
|
|
|
|
used.
|
|
|
|
@retval Others The child handle was not destroyed.
|
2007-07-24 10:06:37 +02:00
|
|
|
|
|
|
|
**/
|
|
|
|
EFI_STATUS
|
|
|
|
EFIAPI
|
|
|
|
MnpServiceBindingDestroyChild (
|
|
|
|
IN EFI_SERVICE_BINDING_PROTOCOL *This,
|
|
|
|
IN EFI_HANDLE ChildHandle
|
|
|
|
)
|
|
|
|
{
|
|
|
|
EFI_STATUS Status;
|
|
|
|
MNP_SERVICE_DATA *MnpServiceData;
|
|
|
|
EFI_MANAGED_NETWORK_PROTOCOL *ManagedNetwork;
|
|
|
|
MNP_INSTANCE_DATA *Instance;
|
|
|
|
EFI_TPL OldTpl;
|
|
|
|
|
|
|
|
if ((This == NULL) || (ChildHandle == NULL)) {
|
|
|
|
|
|
|
|
return EFI_INVALID_PARAMETER;
|
|
|
|
}
|
|
|
|
|
|
|
|
MnpServiceData = MNP_SERVICE_DATA_FROM_THIS (This);
|
|
|
|
|
|
|
|
//
|
|
|
|
// Try to retrieve ManagedNetwork Protocol from ChildHandle.
|
|
|
|
//
|
|
|
|
Status = gBS->OpenProtocol (
|
|
|
|
ChildHandle,
|
|
|
|
&gEfiManagedNetworkProtocolGuid,
|
|
|
|
(VOID **) &ManagedNetwork,
|
|
|
|
gMnpDriverBinding.DriverBindingHandle,
|
|
|
|
ChildHandle,
|
|
|
|
EFI_OPEN_PROTOCOL_GET_PROTOCOL
|
|
|
|
);
|
|
|
|
if (EFI_ERROR (Status)) {
|
|
|
|
|
|
|
|
return EFI_UNSUPPORTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
Instance = MNP_INSTANCE_DATA_FROM_THIS (ManagedNetwork);
|
|
|
|
|
|
|
|
//
|
|
|
|
// MnpServiceBindingDestroyChild may be called twice: first called by
|
|
|
|
// MnpServiceBindingStop, second called by uninstalling the MNP protocol
|
|
|
|
// in this ChildHandle. Use destroyed to make sure the resource clean code
|
|
|
|
// will only excecute once.
|
|
|
|
//
|
|
|
|
if (Instance->Destroyed) {
|
|
|
|
|
|
|
|
return EFI_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
Instance->Destroyed = TRUE;
|
|
|
|
|
|
|
|
//
|
|
|
|
// Close the Simple Network protocol.
|
|
|
|
//
|
|
|
|
gBS->CloseProtocol (
|
|
|
|
MnpServiceData->ControllerHandle,
|
|
|
|
&gEfiSimpleNetworkProtocolGuid,
|
|
|
|
gMnpDriverBinding.DriverBindingHandle,
|
|
|
|
ChildHandle
|
|
|
|
);
|
|
|
|
|
|
|
|
//
|
|
|
|
// Uninstall the ManagedNetwork protocol.
|
|
|
|
//
|
|
|
|
Status = gBS->UninstallMultipleProtocolInterfaces (
|
|
|
|
ChildHandle,
|
|
|
|
&gEfiManagedNetworkProtocolGuid,
|
|
|
|
&Instance->ManagedNetwork,
|
|
|
|
NULL
|
|
|
|
);
|
|
|
|
if (EFI_ERROR (Status)) {
|
|
|
|
|
2008-02-14 10:40:22 +01:00
|
|
|
DEBUG (
|
|
|
|
(EFI_D_ERROR,
|
|
|
|
"MnpServiceBindingDestroyChild: Failed to uninstall the ManagedNetwork protocol, %r.\n",
|
2007-07-24 10:06:37 +02:00
|
|
|
Status)
|
|
|
|
);
|
|
|
|
|
|
|
|
Instance->Destroyed = FALSE;
|
|
|
|
return Status;
|
|
|
|
}
|
|
|
|
|
2008-02-14 10:40:22 +01:00
|
|
|
OldTpl = gBS->RaiseTPL (TPL_CALLBACK);
|
2007-07-24 10:06:37 +02:00
|
|
|
|
|
|
|
//
|
|
|
|
// Reset the configuration.
|
|
|
|
//
|
|
|
|
ManagedNetwork->Configure (ManagedNetwork, NULL);
|
|
|
|
|
|
|
|
//
|
|
|
|
// Try to flush the RcvdPacketQueue.
|
|
|
|
//
|
|
|
|
MnpFlushRcvdDataQueue (Instance);
|
|
|
|
|
|
|
|
//
|
|
|
|
// Clean the RxTokenMap.
|
|
|
|
//
|
|
|
|
NetMapClean (&Instance->RxTokenMap);
|
|
|
|
|
|
|
|
//
|
|
|
|
// Remove this instance from the ChildrenList.
|
|
|
|
//
|
2008-02-14 10:40:22 +01:00
|
|
|
RemoveEntryList (&Instance->InstEntry);
|
2007-07-24 10:06:37 +02:00
|
|
|
MnpServiceData->ChildrenNumber--;
|
|
|
|
|
2008-02-14 10:40:22 +01:00
|
|
|
gBS->RestoreTPL (OldTpl);
|
2007-07-24 10:06:37 +02:00
|
|
|
|
2008-02-14 10:40:22 +01:00
|
|
|
gBS->FreePool (Instance);
|
2007-07-24 10:06:37 +02:00
|
|
|
|
|
|
|
return Status;
|
|
|
|
}
|
|
|
|
|
2008-11-18 05:52:51 +01:00
|
|
|
/**
|
|
|
|
The entry point for Mnp driver which installs the driver binding and component
|
|
|
|
name protocol on its ImageHandle.
|
|
|
|
|
2009-02-03 08:56:54 +01:00
|
|
|
@param[in] ImageHandle The image handle of the driver.
|
|
|
|
@param[in] SystemTable The system table.
|
2008-11-18 05:52:51 +01:00
|
|
|
|
2009-01-08 05:47:41 +01:00
|
|
|
@retval EFI_SUCCES The driver binding and component name protocols are
|
2008-11-18 05:52:51 +01:00
|
|
|
successfully installed.
|
2009-02-03 08:56:54 +01:00
|
|
|
@retval Others Other errors as indicated.
|
2007-07-24 10:06:37 +02:00
|
|
|
|
2008-11-18 05:52:51 +01:00
|
|
|
**/
|
2007-07-24 10:06:37 +02:00
|
|
|
EFI_STATUS
|
|
|
|
EFIAPI
|
|
|
|
MnpDriverEntryPoint (
|
|
|
|
IN EFI_HANDLE ImageHandle,
|
|
|
|
IN EFI_SYSTEM_TABLE *SystemTable
|
|
|
|
)
|
|
|
|
{
|
2007-09-30 05:08:02 +02:00
|
|
|
return EfiLibInstallDriverBindingComponentName2 (
|
2007-09-28 08:02:01 +02:00
|
|
|
ImageHandle,
|
|
|
|
SystemTable,
|
|
|
|
&gMnpDriverBinding,
|
|
|
|
ImageHandle,
|
|
|
|
&gMnpComponentName,
|
2007-09-30 05:08:02 +02:00
|
|
|
&gMnpComponentName2
|
2007-09-28 08:02:01 +02:00
|
|
|
);
|
2007-07-24 10:06:37 +02:00
|
|
|
}
|