2008-02-20 03:36:10 +01:00
|
|
|
/** @file
|
2009-07-08 11:42:16 +02:00
|
|
|
Implementation of reading and writing operations on the NVRAM device
|
|
|
|
attached to a network interface.
|
2008-11-13 04:42:21 +01:00
|
|
|
|
2010-04-24 11:33:45 +02:00
|
|
|
Copyright (c) 2004 - 2009, Intel Corporation. All rights reserved.<BR>
|
|
|
|
This program and the accompanying materials are licensed
|
2008-11-13 04:42:21 +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:36:10 +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.
|
|
|
|
|
|
|
|
**/
|
|
|
|
|
2008-03-11 18:52:44 +01:00
|
|
|
#include "Snp.h"
|
2008-02-20 03:36:10 +01:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
This routine calls Undi to read the desired number of eeprom bytes.
|
|
|
|
|
2008-11-13 04:42:21 +01:00
|
|
|
@param Snp pointer to the snp driver structure
|
|
|
|
@param Offset eeprom register value relative to the base address
|
|
|
|
@param BufferSize number of bytes to read
|
|
|
|
@param Buffer pointer where to read into
|
2008-02-20 03:36:10 +01:00
|
|
|
|
2008-12-29 02:16:13 +01:00
|
|
|
@retval EFI_SUCCESS The NVRAM access was performed.
|
|
|
|
@retval EFI_INVALID_PARAMETER Invalid UNDI command.
|
|
|
|
@retval EFI_UNSUPPORTED Command is not supported by UNDI.
|
|
|
|
@retval EFI_DEVICE_ERROR Fail to execute UNDI command.
|
2008-02-20 03:36:10 +01:00
|
|
|
|
|
|
|
**/
|
|
|
|
EFI_STATUS
|
2008-11-13 04:42:21 +01:00
|
|
|
PxeNvDataRead (
|
|
|
|
IN SNP_DRIVER *Snp,
|
|
|
|
IN UINTN Offset,
|
|
|
|
IN UINTN BufferSize,
|
|
|
|
IN OUT VOID *Buffer
|
2008-02-20 03:36:10 +01:00
|
|
|
)
|
|
|
|
{
|
2008-11-13 04:42:21 +01:00
|
|
|
PXE_DB_NVDATA *Db;
|
2008-02-20 03:36:10 +01:00
|
|
|
|
2008-11-13 04:42:21 +01:00
|
|
|
Db = Snp->Db;
|
|
|
|
Snp->Cdb.OpCode = PXE_OPCODE_NVDATA;
|
2008-02-20 03:36:10 +01:00
|
|
|
|
2008-11-13 04:42:21 +01:00
|
|
|
Snp->Cdb.OpFlags = PXE_OPFLAGS_NVDATA_READ;
|
2008-02-20 03:36:10 +01:00
|
|
|
|
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:36:10 +01:00
|
|
|
|
2010-09-15 09:48:11 +02:00
|
|
|
Snp->Cdb.DBsize = (UINT16) sizeof (PXE_DB_NVDATA);
|
2008-11-13 04:42:21 +01:00
|
|
|
Snp->Cdb.DBaddr = (UINT64)(UINTN) Db;
|
2008-02-20 03:36:10 +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:36:10 +01:00
|
|
|
|
|
|
|
//
|
|
|
|
// Issue UNDI command and check result.
|
|
|
|
//
|
2009-02-09 02:22:19 +01:00
|
|
|
DEBUG ((EFI_D_NET, "\nsnp->undi.nvdata () "));
|
2008-02-20 03:36:10 +01:00
|
|
|
|
2008-11-13 04:42:21 +01:00
|
|
|
(*Snp->IssueUndi32Command) ((UINT64)(UINTN) &Snp->Cdb);
|
2008-02-20 03:36:10 +01:00
|
|
|
|
2008-11-13 04:42:21 +01:00
|
|
|
switch (Snp->Cdb.StatCode) {
|
2008-02-20 03:36:10 +01:00
|
|
|
case PXE_STATCODE_SUCCESS:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case PXE_STATCODE_UNSUPPORTED:
|
|
|
|
DEBUG (
|
2009-02-09 02:22:19 +01:00
|
|
|
(EFI_D_NET,
|
2008-02-20 03:36:10 +01:00
|
|
|
"\nsnp->undi.nvdata() %xh:%xh\n",
|
2008-11-13 04:42:21 +01:00
|
|
|
Snp->Cdb.StatFlags,
|
|
|
|
Snp->Cdb.StatCode)
|
2008-02-20 03:36:10 +01:00
|
|
|
);
|
|
|
|
|
|
|
|
return EFI_UNSUPPORTED;
|
|
|
|
|
|
|
|
default:
|
|
|
|
DEBUG (
|
2009-02-09 02:22:19 +01:00
|
|
|
(EFI_D_NET,
|
2008-02-20 03:36:10 +01:00
|
|
|
"\nsnp->undi.nvdata() %xh:%xh\n",
|
2008-11-13 04:42:21 +01:00
|
|
|
Snp->Cdb.StatFlags,
|
|
|
|
Snp->Cdb.StatCode)
|
2008-02-20 03:36:10 +01:00
|
|
|
);
|
|
|
|
|
|
|
|
return EFI_DEVICE_ERROR;
|
|
|
|
}
|
|
|
|
|
2009-07-09 10:54:39 +02:00
|
|
|
ASSERT (Offset < sizeof (Db->Data));
|
2009-07-08 11:42:16 +02:00
|
|
|
|
2009-07-09 10:54:39 +02:00
|
|
|
CopyMem (Buffer, &Db->Data.Byte[Offset], BufferSize);
|
2008-02-20 03:36:10 +01:00
|
|
|
|
|
|
|
return EFI_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2008-11-13 04:42:21 +01:00
|
|
|
Performs read and write operations on the NVRAM device attached to a network
|
|
|
|
interface.
|
|
|
|
|
|
|
|
This function performs read and write operations on the NVRAM device attached
|
|
|
|
to a network interface. If ReadWrite is TRUE, a read operation is performed.
|
|
|
|
If ReadWrite is FALSE, a write operation is performed. Offset specifies the
|
|
|
|
byte offset at which to start either operation. Offset must be a multiple of
|
|
|
|
NvRamAccessSize , and it must have a value between zero and NvRamSize.
|
|
|
|
BufferSize specifies the length of the read or write operation. BufferSize must
|
|
|
|
also be a multiple of NvRamAccessSize, and Offset + BufferSize must not exceed
|
|
|
|
NvRamSize.
|
|
|
|
If any of the above conditions is not met, then EFI_INVALID_PARAMETER will be
|
|
|
|
returned.
|
|
|
|
If all the conditions are met and the operation is "read," the NVRAM device
|
|
|
|
attached to the network interface will be read into Buffer and EFI_SUCCESS
|
|
|
|
will be returned. If this is a write operation, the contents of Buffer will be
|
|
|
|
used to update the contents of the NVRAM device attached to the network
|
|
|
|
interface and EFI_SUCCESS will be returned.
|
|
|
|
|
2008-02-20 03:36:10 +01:00
|
|
|
It does the basic checking on the input parameters and retrieves snp structure
|
|
|
|
and then calls the read_nvdata() call which does the actual reading
|
|
|
|
|
2008-11-13 04:42:21 +01:00
|
|
|
@param This A pointer to the EFI_SIMPLE_NETWORK_PROTOCOL instance.
|
|
|
|
@param ReadWrite TRUE for read operations, FALSE for write operations.
|
|
|
|
@param Offset Byte offset in the NVRAM device at which to start the read or
|
|
|
|
write operation. This must be a multiple of NvRamAccessSize
|
|
|
|
and less than NvRamSize. (See EFI_SIMPLE_NETWORK_MODE)
|
|
|
|
@param BufferSize The number of bytes to read or write from the NVRAM device.
|
|
|
|
This must also be a multiple of NvramAccessSize.
|
|
|
|
@param Buffer A pointer to the data buffer.
|
|
|
|
|
|
|
|
@retval EFI_SUCCESS The NVRAM access was performed.
|
|
|
|
@retval EFI_NOT_STARTED The network interface has not been started.
|
|
|
|
@retval EFI_INVALID_PARAMETER One or more of the following conditions is TRUE:
|
|
|
|
* The This parameter is NULL
|
|
|
|
* The This parameter does not point to a valid
|
|
|
|
EFI_SIMPLE_NETWORK_PROTOCOL structure
|
|
|
|
* The Offset parameter is not a multiple of
|
|
|
|
EFI_SIMPLE_NETWORK_MODE.NvRamAccessSize
|
|
|
|
* The Offset parameter is not less than
|
|
|
|
EFI_SIMPLE_NETWORK_MODE.NvRamSize
|
|
|
|
* The BufferSize parameter is not a multiple of
|
|
|
|
EFI_SIMPLE_NETWORK_MODE.NvRamAccessSize
|
|
|
|
* The Buffer parameter is NULL
|
|
|
|
@retval EFI_DEVICE_ERROR The command could not be sent to the network
|
|
|
|
interface.
|
|
|
|
@retval EFI_UNSUPPORTED This function is not supported by the network
|
|
|
|
interface.
|
2008-02-20 03:36:10 +01:00
|
|
|
|
|
|
|
**/
|
|
|
|
EFI_STATUS
|
|
|
|
EFIAPI
|
2008-11-13 04:42:21 +01:00
|
|
|
SnpUndi32NvData (
|
|
|
|
IN EFI_SIMPLE_NETWORK_PROTOCOL *This,
|
|
|
|
IN BOOLEAN ReadWrite,
|
|
|
|
IN UINTN Offset,
|
|
|
|
IN UINTN BufferSize,
|
|
|
|
IN OUT VOID *Buffer
|
2008-02-20 03:36:10 +01:00
|
|
|
)
|
|
|
|
{
|
2008-11-13 04:42:21 +01:00
|
|
|
SNP_DRIVER *Snp;
|
2008-02-20 03:36:10 +01:00
|
|
|
EFI_TPL OldTpl;
|
|
|
|
EFI_STATUS Status;
|
|
|
|
|
|
|
|
//
|
|
|
|
// Get pointer to SNP driver instance for *this.
|
|
|
|
//
|
2008-11-13 04:42:21 +01:00
|
|
|
if (This == NULL) {
|
2008-02-20 03:36:10 +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:36:10 +01:00
|
|
|
|
|
|
|
OldTpl = gBS->RaiseTPL (TPL_CALLBACK);
|
|
|
|
|
|
|
|
//
|
|
|
|
// Return error if the SNP is not initialized.
|
|
|
|
//
|
2008-11-13 04:42:21 +01:00
|
|
|
switch (Snp->Mode.State) {
|
2008-02-20 03:36:10 +01:00
|
|
|
case EfiSimpleNetworkInitialized:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case EfiSimpleNetworkStopped:
|
|
|
|
Status = EFI_NOT_STARTED;
|
|
|
|
goto ON_EXIT;
|
|
|
|
|
|
|
|
default:
|
|
|
|
Status = EFI_DEVICE_ERROR;
|
|
|
|
goto ON_EXIT;
|
|
|
|
}
|
|
|
|
//
|
|
|
|
// Return error if non-volatile memory variables are not valid.
|
|
|
|
//
|
2008-11-13 04:42:21 +01:00
|
|
|
if (Snp->Mode.NvRamSize == 0 || Snp->Mode.NvRamAccessSize == 0) {
|
2008-02-20 03:36:10 +01:00
|
|
|
Status = EFI_UNSUPPORTED;
|
|
|
|
goto ON_EXIT;
|
|
|
|
}
|
|
|
|
//
|
|
|
|
// Check for invalid parameter combinations.
|
|
|
|
//
|
2008-11-13 04:42:21 +01:00
|
|
|
if ((BufferSize == 0) ||
|
|
|
|
(Buffer == NULL) ||
|
|
|
|
(Offset >= Snp->Mode.NvRamSize) ||
|
|
|
|
(Offset + BufferSize > Snp->Mode.NvRamSize) ||
|
|
|
|
(BufferSize % Snp->Mode.NvRamAccessSize != 0) ||
|
|
|
|
(Offset % Snp->Mode.NvRamAccessSize != 0)
|
2008-02-20 03:36:10 +01:00
|
|
|
) {
|
|
|
|
Status = EFI_INVALID_PARAMETER;
|
|
|
|
goto ON_EXIT;
|
|
|
|
}
|
|
|
|
//
|
|
|
|
// check the implementation flags of undi if we can write the nvdata!
|
|
|
|
//
|
2008-11-13 04:42:21 +01:00
|
|
|
if (!ReadWrite) {
|
2008-02-20 03:36:10 +01:00
|
|
|
Status = EFI_UNSUPPORTED;
|
|
|
|
} else {
|
2008-11-13 04:42:21 +01:00
|
|
|
Status = PxeNvDataRead (Snp, Offset, BufferSize, Buffer);
|
2008-02-20 03:36:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
ON_EXIT:
|
|
|
|
gBS->RestoreTPL (OldTpl);
|
|
|
|
|
|
|
|
return Status;
|
|
|
|
}
|