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
|
|
|
|
2010-04-24 11:33:45 +02:00
|
|
|
Copyright (c) 2005 - 2010, Intel Corporation. All rights reserved.<BR>
|
|
|
|
This program and the accompanying materials
|
2009-12-30 14:47:55 +01:00
|
|
|
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<BR>
|
|
|
|
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"
|
2009-12-30 14:47:55 +01:00
|
|
|
#include "MnpVlan.h"
|
2007-07-24 10:06:37 +02:00
|
|
|
|
|
|
|
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.
|
2009-12-30 14:47:55 +01:00
|
|
|
@param[in] RemainingDevicePath Optional parameter use to pick a specific
|
2009-02-03 08:56:54 +01:00
|
|
|
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 (
|
2009-12-30 14:47:55 +01:00
|
|
|
IN EFI_DRIVER_BINDING_PROTOCOL *This,
|
|
|
|
IN EFI_HANDLE ControllerHandle,
|
|
|
|
IN EFI_DEVICE_PATH_PROTOCOL *RemainingDevicePath OPTIONAL
|
2007-07-24 10:06:37 +02:00
|
|
|
)
|
|
|
|
{
|
2008-08-01 10:16:40 +02:00
|
|
|
EFI_STATUS Status;
|
|
|
|
EFI_SIMPLE_NETWORK_PROTOCOL *Snp;
|
2007-07-24 10:06:37 +02:00
|
|
|
|
|
|
|
//
|
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-12-30 14:47:55 +01:00
|
|
|
EFI boot service ConnectController(). In order to make drivers as small
|
2009-02-03 08:56:54 +01:00
|
|
|
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.
|
2009-12-30 14:47:55 +01:00
|
|
|
@param[in] RemainingDevicePath Optional parameter use to pick a specific
|
2009-02-03 08:56:54 +01:00
|
|
|
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.
|
2009-12-30 14:47:55 +01:00
|
|
|
|
2007-07-24 10:06:37 +02:00
|
|
|
**/
|
|
|
|
EFI_STATUS
|
|
|
|
EFIAPI
|
|
|
|
MnpDriverBindingStart (
|
2009-12-30 14:47:55 +01:00
|
|
|
IN EFI_DRIVER_BINDING_PROTOCOL *This,
|
|
|
|
IN EFI_HANDLE ControllerHandle,
|
|
|
|
IN EFI_DEVICE_PATH_PROTOCOL *RemainingDevicePath OPTIONAL
|
2007-07-24 10:06:37 +02:00
|
|
|
)
|
|
|
|
{
|
|
|
|
EFI_STATUS Status;
|
|
|
|
MNP_SERVICE_DATA *MnpServiceData;
|
2009-12-30 14:47:55 +01:00
|
|
|
MNP_DEVICE_DATA *MnpDeviceData;
|
|
|
|
LIST_ENTRY *Entry;
|
|
|
|
VLAN_TCI *VlanVariable;
|
|
|
|
UINTN NumberOfVlan;
|
|
|
|
UINTN Index;
|
2007-07-24 10:06:37 +02:00
|
|
|
|
2009-12-30 14:47:55 +01:00
|
|
|
VlanVariable = NULL;
|
2007-07-24 10:06:37 +02:00
|
|
|
|
2009-12-30 14:47:55 +01:00
|
|
|
//
|
|
|
|
// Initialize the Mnp Device Data
|
|
|
|
//
|
|
|
|
MnpDeviceData = AllocateZeroPool (sizeof (MNP_DEVICE_DATA));
|
|
|
|
if (MnpDeviceData == NULL) {
|
|
|
|
DEBUG ((EFI_D_ERROR, "MnpDriverBindingStart(): Failed to allocate the Mnp Device Data.\n"));
|
2007-07-24 10:06:37 +02:00
|
|
|
|
|
|
|
return EFI_OUT_OF_RESOURCES;
|
|
|
|
}
|
|
|
|
|
2009-12-30 14:47:55 +01:00
|
|
|
Status = MnpInitializeDeviceData (MnpDeviceData, This->DriverBindingHandle, ControllerHandle);
|
2007-07-24 10:06:37 +02:00
|
|
|
if (EFI_ERROR (Status)) {
|
2009-12-30 14:47:55 +01:00
|
|
|
DEBUG ((EFI_D_ERROR, "MnpDriverBindingStart: MnpInitializeDeviceData failed, %r.\n", Status));
|
2007-07-24 10:06:37 +02:00
|
|
|
|
2009-12-30 14:47:55 +01:00
|
|
|
FreePool (MnpDeviceData);
|
|
|
|
return Status;
|
2007-07-24 10:06:37 +02:00
|
|
|
}
|
|
|
|
|
2009-12-30 14:47:55 +01:00
|
|
|
//
|
|
|
|
// Check whether NIC driver has already produced VlanConfig protocol
|
|
|
|
//
|
|
|
|
Status = gBS->OpenProtocol (
|
|
|
|
ControllerHandle,
|
|
|
|
&gEfiVlanConfigProtocolGuid,
|
|
|
|
NULL,
|
|
|
|
This->DriverBindingHandle,
|
|
|
|
ControllerHandle,
|
|
|
|
EFI_OPEN_PROTOCOL_TEST_PROTOCOL
|
|
|
|
);
|
|
|
|
if (!EFI_ERROR (Status)) {
|
|
|
|
//
|
|
|
|
// NIC hardware already implement VLAN,
|
|
|
|
// no need to provide software VLAN implementation in MNP driver
|
|
|
|
//
|
|
|
|
MnpDeviceData->NumberOfVlan = 0;
|
|
|
|
ZeroMem (&MnpDeviceData->VlanConfig, sizeof (EFI_VLAN_CONFIG_PROTOCOL));
|
|
|
|
MnpServiceData = MnpCreateServiceData (MnpDeviceData, 0, 0);
|
|
|
|
Status = (MnpServiceData != NULL) ? EFI_SUCCESS : EFI_OUT_OF_RESOURCES;
|
|
|
|
goto Exit;
|
|
|
|
}
|
2007-07-24 10:06:37 +02:00
|
|
|
|
|
|
|
//
|
2009-12-30 14:47:55 +01:00
|
|
|
// Install VLAN Config Protocol
|
2007-07-24 10:06:37 +02:00
|
|
|
//
|
|
|
|
Status = gBS->InstallMultipleProtocolInterfaces (
|
|
|
|
&ControllerHandle,
|
2009-12-30 14:47:55 +01:00
|
|
|
&gEfiVlanConfigProtocolGuid,
|
|
|
|
&MnpDeviceData->VlanConfig,
|
2007-07-24 10:06:37 +02:00
|
|
|
NULL
|
|
|
|
);
|
2009-12-30 14:47:55 +01:00
|
|
|
if (EFI_ERROR (Status)) {
|
|
|
|
goto Exit;
|
|
|
|
}
|
2007-07-24 10:06:37 +02:00
|
|
|
|
2009-12-30 14:47:55 +01:00
|
|
|
//
|
|
|
|
// Get current VLAN configuration from EFI Variable
|
|
|
|
//
|
|
|
|
NumberOfVlan = 0;
|
|
|
|
Status = MnpGetVlanVariable (MnpDeviceData, &NumberOfVlan, &VlanVariable);
|
|
|
|
if (EFI_ERROR (Status)) {
|
|
|
|
//
|
|
|
|
// No VLAN is set, create a default MNP service data for untagged frame
|
|
|
|
//
|
|
|
|
MnpDeviceData->NumberOfVlan = 0;
|
|
|
|
MnpServiceData = MnpCreateServiceData (MnpDeviceData, 0, 0);
|
|
|
|
Status = (MnpServiceData != NULL) ? EFI_SUCCESS : EFI_OUT_OF_RESOURCES;
|
|
|
|
goto Exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// Create MNP service data for each VLAN
|
|
|
|
//
|
|
|
|
MnpDeviceData->NumberOfVlan = NumberOfVlan;
|
|
|
|
for (Index = 0; Index < NumberOfVlan; Index++) {
|
|
|
|
MnpServiceData = MnpCreateServiceData (
|
|
|
|
MnpDeviceData,
|
|
|
|
VlanVariable[Index].Bits.Vid,
|
|
|
|
(UINT8) VlanVariable[Index].Bits.Priority
|
|
|
|
);
|
|
|
|
|
|
|
|
if (MnpServiceData == NULL) {
|
|
|
|
Status = EFI_OUT_OF_RESOURCES;
|
|
|
|
|
|
|
|
goto Exit;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Exit:
|
|
|
|
if (VlanVariable != NULL) {
|
|
|
|
FreePool (VlanVariable);
|
|
|
|
}
|
2007-07-24 10:06:37 +02:00
|
|
|
|
|
|
|
if (EFI_ERROR (Status)) {
|
2009-12-30 14:47:55 +01:00
|
|
|
//
|
|
|
|
// Destroy all MNP service data
|
|
|
|
//
|
|
|
|
while (!IsListEmpty (&MnpDeviceData->ServiceList)) {
|
|
|
|
Entry = GetFirstNode (&MnpDeviceData->ServiceList);
|
|
|
|
MnpServiceData = MNP_SERVICE_DATA_FROM_LINK (Entry);
|
|
|
|
MnpDestroyServiceData (MnpServiceData);
|
|
|
|
}
|
2007-07-24 10:06:37 +02:00
|
|
|
|
2009-12-30 14:47:55 +01:00
|
|
|
//
|
|
|
|
// Uninstall the VLAN Config Protocol if any
|
|
|
|
//
|
|
|
|
if (MnpDeviceData->VlanConfig.Set != NULL) {
|
|
|
|
gBS->UninstallMultipleProtocolInterfaces (
|
|
|
|
MnpDeviceData->ControllerHandle,
|
|
|
|
&gEfiVlanConfigProtocolGuid,
|
|
|
|
&MnpDeviceData->VlanConfig,
|
|
|
|
NULL
|
|
|
|
);
|
2007-07-24 10:06:37 +02:00
|
|
|
}
|
|
|
|
|
2009-12-30 14:47:55 +01:00
|
|
|
//
|
|
|
|
// Destroy Mnp Device Data
|
|
|
|
//
|
|
|
|
MnpDestroyDeviceData (MnpDeviceData, This->DriverBindingHandle);
|
|
|
|
FreePool (MnpDeviceData);
|
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-12-30 14:47:55 +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
|
2009-02-03 08:56:54 +01:00
|
|
|
agent wishes to call Stop() it must also follow these calling restrictions.
|
2009-12-30 14:47:55 +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.
|
2009-12-30 14:47:55 +01:00
|
|
|
@param[in] NumberOfChildren Number of Handles in ChildHandleBuffer. If
|
|
|
|
number of children is zero stop the entire
|
|
|
|
bus driver.
|
2009-02-03 08:56:54 +01:00
|
|
|
@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 (
|
2009-12-30 14:47:55 +01:00
|
|
|
IN EFI_DRIVER_BINDING_PROTOCOL *This,
|
|
|
|
IN EFI_HANDLE ControllerHandle,
|
|
|
|
IN UINTN NumberOfChildren,
|
|
|
|
IN EFI_HANDLE *ChildHandleBuffer OPTIONAL
|
2007-07-24 10:06:37 +02:00
|
|
|
)
|
|
|
|
{
|
|
|
|
EFI_STATUS Status;
|
|
|
|
EFI_SERVICE_BINDING_PROTOCOL *ServiceBinding;
|
2009-12-30 14:47:55 +01:00
|
|
|
EFI_VLAN_CONFIG_PROTOCOL *VlanConfig;
|
|
|
|
MNP_DEVICE_DATA *MnpDeviceData;
|
2007-07-24 10:06:37 +02:00
|
|
|
MNP_SERVICE_DATA *MnpServiceData;
|
2009-12-30 14:47:55 +01:00
|
|
|
BOOLEAN AllChildrenStopped;
|
|
|
|
LIST_ENTRY *Entry;
|
2007-07-24 10:06:37 +02:00
|
|
|
|
|
|
|
//
|
2009-12-30 14:47:55 +01:00
|
|
|
// Try to retrieve MNP service binding protocol from the ControllerHandle
|
2007-07-24 10:06:37 +02:00
|
|
|
//
|
|
|
|
Status = gBS->OpenProtocol (
|
|
|
|
ControllerHandle,
|
|
|
|
&gEfiManagedNetworkServiceBindingProtocolGuid,
|
|
|
|
(VOID **) &ServiceBinding,
|
|
|
|
This->DriverBindingHandle,
|
|
|
|
ControllerHandle,
|
|
|
|
EFI_OPEN_PROTOCOL_GET_PROTOCOL
|
|
|
|
);
|
|
|
|
if (EFI_ERROR (Status)) {
|
2009-12-30 14:47:55 +01:00
|
|
|
//
|
|
|
|
// Retrieve VLAN Config Protocol from the ControllerHandle
|
|
|
|
//
|
|
|
|
Status = gBS->OpenProtocol (
|
|
|
|
ControllerHandle,
|
|
|
|
&gEfiVlanConfigProtocolGuid,
|
|
|
|
(VOID **) &VlanConfig,
|
|
|
|
This->DriverBindingHandle,
|
|
|
|
ControllerHandle,
|
|
|
|
EFI_OPEN_PROTOCOL_GET_PROTOCOL
|
|
|
|
);
|
|
|
|
if (EFI_ERROR (Status)) {
|
|
|
|
DEBUG ((EFI_D_ERROR, "MnpDriverBindingStop: try to stop unknown Controller.\n"));
|
|
|
|
return EFI_DEVICE_ERROR;
|
|
|
|
}
|
2007-07-24 10:06:37 +02:00
|
|
|
|
2009-12-30 14:47:55 +01:00
|
|
|
MnpDeviceData = MNP_DEVICE_DATA_FROM_THIS (VlanConfig);
|
|
|
|
} else {
|
|
|
|
MnpServiceData = MNP_SERVICE_DATA_FROM_THIS (ServiceBinding);
|
|
|
|
MnpDeviceData = MnpServiceData->MnpDeviceData;
|
2007-07-24 10:06:37 +02:00
|
|
|
}
|
|
|
|
|
2007-12-18 08:01:23 +01:00
|
|
|
if (NumberOfChildren == 0) {
|
2007-07-24 10:06:37 +02:00
|
|
|
//
|
2009-12-30 14:47:55 +01:00
|
|
|
// Destroy all MNP service data
|
2007-07-24 10:06:37 +02:00
|
|
|
//
|
2009-12-30 14:47:55 +01:00
|
|
|
while (!IsListEmpty (&MnpDeviceData->ServiceList)) {
|
|
|
|
Entry = GetFirstNode (&MnpDeviceData->ServiceList);
|
|
|
|
MnpServiceData = MNP_SERVICE_DATA_FROM_LINK (Entry);
|
|
|
|
MnpDestroyServiceData (MnpServiceData);
|
|
|
|
}
|
2007-07-24 10:06:37 +02:00
|
|
|
|
2007-12-18 08:01:23 +01:00
|
|
|
//
|
2009-12-30 14:47:55 +01:00
|
|
|
// Uninstall the VLAN Config Protocol if any
|
2007-12-18 08:01:23 +01:00
|
|
|
//
|
2009-12-30 14:47:55 +01:00
|
|
|
if (MnpDeviceData->VlanConfig.Set != NULL) {
|
|
|
|
gBS->UninstallMultipleProtocolInterfaces (
|
|
|
|
MnpDeviceData->ControllerHandle,
|
|
|
|
&gEfiVlanConfigProtocolGuid,
|
|
|
|
&MnpDeviceData->VlanConfig,
|
|
|
|
NULL
|
|
|
|
);
|
|
|
|
}
|
2007-07-24 10:06:37 +02:00
|
|
|
|
2009-12-30 14:47:55 +01:00
|
|
|
//
|
2010-02-03 05:37:53 +01:00
|
|
|
// Destroy Mnp Device Data
|
2009-12-30 14:47:55 +01:00
|
|
|
//
|
|
|
|
MnpDestroyDeviceData (MnpDeviceData, This->DriverBindingHandle);
|
|
|
|
FreePool (MnpDeviceData);
|
|
|
|
|
|
|
|
return EFI_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// Stop all MNP child
|
|
|
|
//
|
|
|
|
AllChildrenStopped = TRUE;
|
|
|
|
NET_LIST_FOR_EACH (Entry, &MnpDeviceData->ServiceList) {
|
|
|
|
MnpServiceData = MNP_SERVICE_DATA_FROM_LINK (Entry);
|
|
|
|
|
|
|
|
Status = MnpDestroyServiceChild (MnpServiceData);
|
|
|
|
if (EFI_ERROR (Status)) {
|
|
|
|
AllChildrenStopped = FALSE;
|
2007-12-18 08:01:23 +01:00
|
|
|
}
|
2007-07-24 10:06:37 +02:00
|
|
|
}
|
|
|
|
|
2009-12-30 14:47:55 +01:00
|
|
|
if (!AllChildrenStopped) {
|
|
|
|
return EFI_DEVICE_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
return EFI_SUCCESS;
|
2007-07-24 10:06:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
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
|
2009-12-30 14:47:55 +01:00
|
|
|
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-12-30 14:47:55 +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
|
2009-02-03 08:56:54 +01:00
|
|
|
create the child.
|
|
|
|
@retval Others The child handle was not created.
|
2007-07-24 10:06:37 +02:00
|
|
|
|
|
|
|
**/
|
|
|
|
EFI_STATUS
|
|
|
|
EFIAPI
|
|
|
|
MnpServiceBindingCreateChild (
|
2009-12-30 14:47:55 +01:00
|
|
|
IN EFI_SERVICE_BINDING_PROTOCOL *This,
|
|
|
|
IN OUT EFI_HANDLE *ChildHandle
|
2007-07-24 10:06:37 +02:00
|
|
|
)
|
|
|
|
{
|
|
|
|
EFI_STATUS Status;
|
|
|
|
MNP_SERVICE_DATA *MnpServiceData;
|
|
|
|
MNP_INSTANCE_DATA *Instance;
|
2009-12-30 14:47:55 +01:00
|
|
|
VOID *MnpSb;
|
2007-07-24 10:06:37 +02:00
|
|
|
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"));
|
2009-12-30 14:47:55 +01:00
|
|
|
|
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)
|
|
|
|
);
|
2009-12-30 14:47:55 +01:00
|
|
|
|
2007-07-24 10:06:37 +02:00
|
|
|
goto ErrorExit;
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// Save the instance's childhandle.
|
|
|
|
//
|
|
|
|
Instance->Handle = *ChildHandle;
|
|
|
|
|
|
|
|
Status = gBS->OpenProtocol (
|
2009-12-30 14:47:55 +01:00
|
|
|
MnpServiceData->ServiceHandle,
|
|
|
|
&gEfiManagedNetworkServiceBindingProtocolGuid,
|
|
|
|
(VOID **) &MnpSb,
|
2007-07-24 10:06:37 +02:00
|
|
|
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
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2009-11-13 07:13:59 +01:00
|
|
|
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.
|
2009-12-30 14:47:55 +01:00
|
|
|
|
|
|
|
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
|
2009-02-03 08:56:54 +01:00
|
|
|
instance.
|
|
|
|
@param[in] ChildHandle Handle of the child to destroy.
|
|
|
|
|
2009-12-30 14:47:55 +01:00
|
|
|
@retval EFI_SUCCES The protocol was removed from ChildHandle.
|
2009-02-03 08:56:54 +01:00
|
|
|
@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 (
|
2009-12-30 14:47:55 +01:00
|
|
|
IN EFI_SERVICE_BINDING_PROTOCOL *This,
|
|
|
|
IN EFI_HANDLE ChildHandle
|
2007-07-24 10:06:37 +02:00
|
|
|
)
|
|
|
|
{
|
|
|
|
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 (
|
2009-12-30 14:47:55 +01:00
|
|
|
MnpServiceData->ServiceHandle,
|
|
|
|
&gEfiManagedNetworkServiceBindingProtocolGuid,
|
|
|
|
MnpServiceData->MnpDeviceData->ImageHandle,
|
2007-07-24 10:06:37 +02:00
|
|
|
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
|
|
|
|
2009-11-13 07:13:59 +01:00
|
|
|
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-12-30 14:47:55 +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 (
|
2009-12-30 14:47:55 +01:00
|
|
|
IN EFI_HANDLE ImageHandle,
|
|
|
|
IN EFI_SYSTEM_TABLE *SystemTable
|
2007-07-24 10:06:37 +02:00
|
|
|
)
|
|
|
|
{
|
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
|
|
|
}
|