2008-02-20 03:32:49 +01:00
|
|
|
/** @file
|
2010-02-11 03:33:16 +01:00
|
|
|
Implementation of reading the current interrupt status and recycled transmit
|
|
|
|
buffer status from a network interface.
|
2008-11-13 04:42:21 +01:00
|
|
|
|
2010-04-24 11:33:45 +02:00
|
|
|
Copyright (c) 2004 - 2010, Intel Corporation. All rights reserved.<BR>
|
|
|
|
This program and the accompanying materials are licensed
|
2010-02-12 09:45:15 +01:00
|
|
|
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
|
2008-02-20 03:32:49 +01: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 "Snp.h"
|
|
|
|
|
|
|
|
/**
|
2010-02-12 09:45:15 +01:00
|
|
|
Call undi to get the status of the interrupts, get the list of transmit
|
|
|
|
buffers that completed transmitting.
|
2008-12-29 02:16:13 +01:00
|
|
|
|
|
|
|
@param Snp Pointer to snp driver structure.
|
2010-02-12 09:45:15 +01:00
|
|
|
@param InterruptStatusPtr A non null pointer to contain the interrupt
|
2008-12-29 02:16:13 +01:00
|
|
|
status.
|
2010-02-12 09:45:15 +01:00
|
|
|
@param TransmitBufferListPtrs A non null pointer to contain the list of
|
2008-12-29 02:16:13 +01:00
|
|
|
pointers of previous transmitted buffers whose
|
|
|
|
transmission was completed asynchrnously.
|
2010-02-12 09:45:15 +01:00
|
|
|
|
2008-12-29 02:16:13 +01:00
|
|
|
@retval EFI_SUCCESS The status of the network interface was retrieved.
|
2010-02-12 09:45:15 +01:00
|
|
|
@retval EFI_DEVICE_ERROR The command could not be sent to the network
|
2008-12-29 02:16:13 +01:00
|
|
|
interface.
|
2008-02-20 03:32:49 +01:00
|
|
|
|
|
|
|
**/
|
|
|
|
EFI_STATUS
|
2008-11-13 04:42:21 +01:00
|
|
|
PxeGetStatus (
|
|
|
|
SNP_DRIVER *Snp,
|
2008-02-20 03:32:49 +01:00
|
|
|
UINT32 *InterruptStatusPtr,
|
|
|
|
VOID **TransmitBufferListPtr
|
|
|
|
)
|
|
|
|
{
|
2008-11-13 04:42:21 +01:00
|
|
|
PXE_DB_GET_STATUS *Db;
|
2008-02-20 03:32:49 +01:00
|
|
|
UINT16 InterruptFlags;
|
|
|
|
|
2008-11-13 04:42:21 +01:00
|
|
|
Db = Snp->Db;
|
|
|
|
Snp->Cdb.OpCode = PXE_OPCODE_GET_STATUS;
|
2008-02-20 03:32:49 +01:00
|
|
|
|
2008-11-13 04:42:21 +01:00
|
|
|
Snp->Cdb.OpFlags = 0;
|
2008-02-20 03:32:49 +01:00
|
|
|
|
|
|
|
if (TransmitBufferListPtr != NULL) {
|
2008-11-13 04:42:21 +01:00
|
|
|
Snp->Cdb.OpFlags |= PXE_OPFLAGS_GET_TRANSMITTED_BUFFERS;
|
2008-02-20 03:32:49 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (InterruptStatusPtr != NULL) {
|
2008-11-13 04:42:21 +01:00
|
|
|
Snp->Cdb.OpFlags |= PXE_OPFLAGS_GET_INTERRUPT_STATUS;
|
2008-02-20 03:32:49 +01:00
|
|
|
}
|
|
|
|
|
2010-02-12 09:45:15 +01:00
|
|
|
if (Snp->MediaStatusSupported) {
|
|
|
|
Snp->Cdb.OpFlags |= PXE_OPFLAGS_GET_MEDIA_STATUS;
|
|
|
|
}
|
|
|
|
|
2008-11-13 04:42:21 +01:00
|
|
|
Snp->Cdb.CPBsize = PXE_CPBSIZE_NOT_USED;
|
|
|
|
Snp->Cdb.CPBaddr = PXE_CPBADDR_NOT_USED;
|
2008-02-20 03:32:49 +01:00
|
|
|
|
|
|
|
//
|
|
|
|
// size DB for return of one buffer
|
|
|
|
//
|
2008-11-13 04:42:21 +01:00
|
|
|
Snp->Cdb.DBsize = (UINT16) ((sizeof (PXE_DB_GET_STATUS) - sizeof (Db->TxBuffer)) + sizeof (Db->TxBuffer[0]));
|
2008-02-20 03:32:49 +01:00
|
|
|
|
2008-11-13 04:42:21 +01:00
|
|
|
Snp->Cdb.DBaddr = (UINT64)(UINTN) Db;
|
2008-02-20 03:32:49 +01:00
|
|
|
|
2008-11-13 04:42:21 +01:00
|
|
|
Snp->Cdb.StatCode = PXE_STATCODE_INITIALIZE;
|
|
|
|
Snp->Cdb.StatFlags = PXE_STATFLAGS_INITIALIZE;
|
|
|
|
Snp->Cdb.IFnum = Snp->IfNum;
|
|
|
|
Snp->Cdb.Control = PXE_CONTROL_LAST_CDB_IN_LIST;
|
2008-02-20 03:32:49 +01:00
|
|
|
|
|
|
|
//
|
|
|
|
// Issue UNDI command and check result.
|
|
|
|
//
|
2009-02-09 02:22:19 +01:00
|
|
|
DEBUG ((EFI_D_NET, "\nSnp->undi.get_status() "));
|
2008-02-20 03:32:49 +01:00
|
|
|
|
2008-11-13 04:42:21 +01:00
|
|
|
(*Snp->IssueUndi32Command) ((UINT64)(UINTN) &Snp->Cdb);
|
2008-02-20 03:32:49 +01:00
|
|
|
|
2008-11-13 04:42:21 +01:00
|
|
|
if (Snp->Cdb.StatCode != EFI_SUCCESS) {
|
2008-02-20 03:32:49 +01:00
|
|
|
DEBUG (
|
2009-02-09 02:22:19 +01:00
|
|
|
(EFI_D_NET,
|
2008-11-13 04:42:21 +01:00
|
|
|
"\nSnp->undi.get_status() %xh:%xh\n",
|
|
|
|
Snp->Cdb.StatFlags,
|
|
|
|
Snp->Cdb.StatFlags)
|
2008-02-20 03:32:49 +01:00
|
|
|
);
|
|
|
|
|
|
|
|
return EFI_DEVICE_ERROR;
|
|
|
|
}
|
|
|
|
//
|
|
|
|
// report the values back..
|
|
|
|
//
|
|
|
|
if (InterruptStatusPtr != NULL) {
|
2008-11-13 04:42:21 +01:00
|
|
|
InterruptFlags = (UINT16) (Snp->Cdb.StatFlags & PXE_STATFLAGS_GET_STATUS_INTERRUPT_MASK);
|
2008-02-20 03:32:49 +01:00
|
|
|
|
|
|
|
*InterruptStatusPtr = 0;
|
|
|
|
|
2008-11-13 04:42:21 +01:00
|
|
|
if ((InterruptFlags & PXE_STATFLAGS_GET_STATUS_RECEIVE) == PXE_STATFLAGS_GET_STATUS_RECEIVE) {
|
2008-02-20 03:32:49 +01:00
|
|
|
*InterruptStatusPtr |= EFI_SIMPLE_NETWORK_RECEIVE_INTERRUPT;
|
|
|
|
}
|
|
|
|
|
2008-11-13 04:42:21 +01:00
|
|
|
if ((InterruptFlags & PXE_STATFLAGS_GET_STATUS_TRANSMIT) == PXE_STATFLAGS_GET_STATUS_TRANSMIT) {
|
2008-02-20 03:32:49 +01:00
|
|
|
*InterruptStatusPtr |= EFI_SIMPLE_NETWORK_TRANSMIT_INTERRUPT;
|
|
|
|
}
|
|
|
|
|
2008-11-13 04:42:21 +01:00
|
|
|
if ((InterruptFlags & PXE_STATFLAGS_GET_STATUS_COMMAND) == PXE_STATFLAGS_GET_STATUS_COMMAND) {
|
2008-02-20 03:32:49 +01:00
|
|
|
*InterruptStatusPtr |= EFI_SIMPLE_NETWORK_COMMAND_INTERRUPT;
|
|
|
|
}
|
|
|
|
|
2008-11-13 04:42:21 +01:00
|
|
|
if ((InterruptFlags & PXE_STATFLAGS_GET_STATUS_SOFTWARE) == PXE_STATFLAGS_GET_STATUS_SOFTWARE) {
|
2008-02-20 03:32:49 +01:00
|
|
|
*InterruptStatusPtr |= EFI_SIMPLE_NETWORK_COMMAND_INTERRUPT;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
if (TransmitBufferListPtr != NULL) {
|
|
|
|
*TransmitBufferListPtr =
|
|
|
|
(
|
2010-02-11 03:33:16 +01:00
|
|
|
((Snp->Cdb.StatFlags & PXE_STATFLAGS_GET_STATUS_NO_TXBUFS_WRITTEN) != 0) ||
|
|
|
|
((Snp->Cdb.StatFlags & PXE_STATFLAGS_GET_STATUS_TXBUF_QUEUE_EMPTY) != 0)
|
2008-11-13 04:42:21 +01:00
|
|
|
) ? 0 : (VOID *) (UINTN) Db->TxBuffer[0];
|
2008-02-20 03:32:49 +01:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2010-02-12 09:45:15 +01:00
|
|
|
//
|
|
|
|
// Update MediaPresent field of EFI_SIMPLE_NETWORK_MODE if the UNDI support
|
|
|
|
// returning media status from GET_STATUS command
|
|
|
|
//
|
|
|
|
if (Snp->MediaStatusSupported) {
|
|
|
|
Snp->Snp.Mode->MediaPresent =
|
|
|
|
(BOOLEAN) (((Snp->Cdb.StatFlags & PXE_STATFLAGS_GET_STATUS_NO_MEDIA) != 0) ? FALSE : TRUE);
|
|
|
|
}
|
|
|
|
|
2008-02-20 03:32:49 +01:00
|
|
|
return EFI_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2008-11-13 04:42:21 +01:00
|
|
|
Reads the current interrupt status and recycled transmit buffer status from a
|
|
|
|
network interface.
|
2010-02-12 09:45:15 +01:00
|
|
|
|
|
|
|
This function gets the current interrupt and recycled transmit buffer status
|
2008-11-13 04:42:21 +01:00
|
|
|
from the network interface. The interrupt status is returned as a bit mask in
|
|
|
|
InterruptStatus. If InterruptStatus is NULL, the interrupt status will not be
|
|
|
|
read. If TxBuf is not NULL, a recycled transmit buffer address will be retrieved.
|
|
|
|
If a recycled transmit buffer address is returned in TxBuf, then the buffer has
|
|
|
|
been successfully transmitted, and the status for that buffer is cleared. If
|
2010-02-12 09:45:15 +01:00
|
|
|
the status of the network interface is successfully collected, EFI_SUCCESS
|
2008-11-13 04:42:21 +01:00
|
|
|
will be returned. If the driver has not been initialized, EFI_DEVICE_ERROR will
|
|
|
|
be returned.
|
|
|
|
|
|
|
|
@param This A pointer to the EFI_SIMPLE_NETWORK_PROTOCOL instance.
|
2010-02-12 09:45:15 +01:00
|
|
|
@param InterruptStatus A pointer to the bit mask of the currently active
|
2008-11-13 04:42:21 +01:00
|
|
|
interrupts (see "Related Definitions"). If this is NULL,
|
|
|
|
the interrupt status will not be read from the device.
|
|
|
|
If this is not NULL, the interrupt status will be read
|
2010-02-12 09:45:15 +01:00
|
|
|
from the device. When the interrupt status is read, it
|
|
|
|
will also be cleared. Clearing the transmit interrupt does
|
2008-11-13 04:42:21 +01:00
|
|
|
not empty the recycled transmit buffer array.
|
|
|
|
@param TxBuf Recycled transmit buffer address. The network interface
|
2010-02-12 09:45:15 +01:00
|
|
|
will not transmit if its internal recycled transmit
|
2008-11-13 04:42:21 +01:00
|
|
|
buffer array is full. Reading the transmit buffer does
|
|
|
|
not clear the transmit interrupt. If this is NULL, then
|
2010-02-12 09:45:15 +01:00
|
|
|
the transmit buffer status will not be read. If there
|
|
|
|
are no transmit buffers to recycle and TxBuf is not NULL,
|
2008-11-13 04:42:21 +01:00
|
|
|
TxBuf will be set to NULL.
|
|
|
|
|
|
|
|
@retval EFI_SUCCESS The status of the network interface was retrieved.
|
|
|
|
@retval EFI_NOT_STARTED The network interface has not been started.
|
2010-02-12 09:45:15 +01:00
|
|
|
@retval EFI_INVALID_PARAMETER This parameter was NULL or did not point to a valid
|
2008-11-13 04:42:21 +01:00
|
|
|
EFI_SIMPLE_NETWORK_PROTOCOL structure.
|
2010-02-12 09:45:15 +01:00
|
|
|
@retval EFI_DEVICE_ERROR The command could not be sent to the network
|
2008-11-13 04:42:21 +01:00
|
|
|
interface.
|
2008-02-20 03:32:49 +01:00
|
|
|
|
|
|
|
**/
|
|
|
|
EFI_STATUS
|
|
|
|
EFIAPI
|
2008-11-13 04:42:21 +01:00
|
|
|
SnpUndi32GetStatus (
|
|
|
|
IN EFI_SIMPLE_NETWORK_PROTOCOL *This,
|
|
|
|
OUT UINT32 *InterruptStatus, OPTIONAL
|
|
|
|
OUT VOID **TxBuf OPTIONAL
|
2008-02-20 03:32:49 +01:00
|
|
|
)
|
|
|
|
{
|
2008-11-13 04:42:21 +01:00
|
|
|
SNP_DRIVER *Snp;
|
2008-02-20 03:32:49 +01:00
|
|
|
EFI_TPL OldTpl;
|
|
|
|
EFI_STATUS Status;
|
|
|
|
|
2008-11-13 04:42:21 +01:00
|
|
|
if (This == NULL) {
|
2008-02-20 03:32:49 +01:00
|
|
|
return EFI_INVALID_PARAMETER;
|
|
|
|
}
|
|
|
|
|
2008-11-13 04:42:21 +01:00
|
|
|
if (InterruptStatus == NULL && TxBuf == NULL) {
|
2008-02-20 03:32:49 +01:00
|
|
|
return EFI_INVALID_PARAMETER;
|
|
|
|
}
|
|
|
|
|
2008-11-13 04:42:21 +01:00
|
|
|
Snp = EFI_SIMPLE_NETWORK_DEV_FROM_THIS (This);
|
2008-02-20 03:32:49 +01:00
|
|
|
|
|
|
|
OldTpl = gBS->RaiseTPL (TPL_CALLBACK);
|
|
|
|
|
2008-11-13 04:42:21 +01:00
|
|
|
if (Snp == NULL) {
|
2008-02-20 03:32:49 +01:00
|
|
|
return EFI_DEVICE_ERROR;
|
|
|
|
}
|
|
|
|
|
2008-11-13 04:42:21 +01:00
|
|
|
switch (Snp->Mode.State) {
|
2008-02-20 03:32:49 +01:00
|
|
|
case EfiSimpleNetworkInitialized:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case EfiSimpleNetworkStopped:
|
|
|
|
Status = EFI_NOT_STARTED;
|
|
|
|
goto ON_EXIT;
|
|
|
|
|
|
|
|
default:
|
|
|
|
Status = EFI_DEVICE_ERROR;
|
|
|
|
goto ON_EXIT;
|
|
|
|
}
|
|
|
|
|
2008-11-13 04:42:21 +01:00
|
|
|
Status = PxeGetStatus (Snp, InterruptStatus, TxBuf);
|
2008-02-20 03:32:49 +01:00
|
|
|
|
|
|
|
ON_EXIT:
|
|
|
|
gBS->RestoreTPL (OldTpl);
|
|
|
|
|
|
|
|
return Status;
|
|
|
|
}
|