2007-06-29 07:37:38 +02:00
|
|
|
/** @file
|
2008-07-15 13:12:43 +02:00
|
|
|
Null Serial Port library instance with empty functions.
|
2007-06-29 07:37:38 +02:00
|
|
|
|
2010-06-25 23:56:02 +02:00
|
|
|
Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.<BR>
|
2010-04-23 18:37:43 +02:00
|
|
|
This program and the accompanying materials
|
2007-06-29 07:37:38 +02: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
|
2010-06-25 23:56:02 +02:00
|
|
|
http://opensource.org/licenses/bsd-license.php.
|
2007-06-29 07:37:38 +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.
|
|
|
|
|
|
|
|
**/
|
|
|
|
|
2007-07-20 08:28:14 +02:00
|
|
|
|
2007-06-29 22:51:40 +02:00
|
|
|
#include <Base.h>
|
2007-06-29 07:37:38 +02:00
|
|
|
#include <Library/SerialPortLib.h>
|
|
|
|
|
2008-07-15 13:12:43 +02:00
|
|
|
/**
|
2008-10-07 11:01:12 +02:00
|
|
|
Initialize the serial device hardware.
|
|
|
|
|
|
|
|
If no initialization is required, then return RETURN_SUCCESS.
|
2009-04-02 07:34:26 +02:00
|
|
|
If the serial device was successfully initialized, then return RETURN_SUCCESS.
|
2008-10-07 11:01:12 +02:00
|
|
|
If the serial device could not be initialized, then return RETURN_DEVICE_ERROR.
|
|
|
|
|
|
|
|
@retval RETURN_SUCCESS The serial device was initialized.
|
2009-04-02 07:34:26 +02:00
|
|
|
@retval RETURN_DEVICE_ERROR The serial device could not be initialized.
|
2007-06-29 07:37:38 +02:00
|
|
|
|
|
|
|
**/
|
2007-06-29 22:51:40 +02:00
|
|
|
RETURN_STATUS
|
2007-06-29 07:37:38 +02:00
|
|
|
EFIAPI
|
|
|
|
SerialPortInitialize (
|
|
|
|
VOID
|
|
|
|
)
|
|
|
|
{
|
2010-12-30 02:07:39 +01:00
|
|
|
return RETURN_SUCCESS;
|
2007-06-29 07:37:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2008-10-07 11:01:12 +02:00
|
|
|
Write data from buffer to serial device.
|
|
|
|
|
|
|
|
Writes NumberOfBytes data bytes from Buffer to the serial device.
|
|
|
|
The number of bytes actually written to the serial device is returned.
|
|
|
|
If the return value is less than NumberOfBytes, then the write operation failed.
|
|
|
|
If Buffer is NULL, then ASSERT().
|
|
|
|
If NumberOfBytes is zero, then return 0.
|
2007-06-29 07:37:38 +02:00
|
|
|
|
2010-06-25 23:56:02 +02:00
|
|
|
@param Buffer The pointer to the data buffer to be written.
|
|
|
|
@param NumberOfBytes The number of bytes to written to the serial device.
|
2007-06-29 07:37:38 +02:00
|
|
|
|
2008-10-07 11:01:12 +02:00
|
|
|
@retval 0 NumberOfBytes is 0.
|
|
|
|
@retval >0 The number of bytes written to the serial device.
|
|
|
|
If this value is less than NumberOfBytes, then the read operation failed.
|
2007-06-29 07:37:38 +02:00
|
|
|
|
|
|
|
**/
|
|
|
|
UINTN
|
|
|
|
EFIAPI
|
|
|
|
SerialPortWrite (
|
|
|
|
IN UINT8 *Buffer,
|
|
|
|
IN UINTN NumberOfBytes
|
|
|
|
)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2008-11-26 05:36:05 +01:00
|
|
|
Read data from serial device and save the datas in buffer.
|
|
|
|
|
|
|
|
Reads NumberOfBytes data bytes from a serial device into the buffer
|
|
|
|
specified by Buffer. The number of bytes actually read is returned.
|
|
|
|
If the return value is less than NumberOfBytes, then the rest operation failed.
|
|
|
|
If Buffer is NULL, then ASSERT().
|
|
|
|
If NumberOfBytes is zero, then return 0.
|
2007-06-29 07:37:38 +02:00
|
|
|
|
2010-06-25 23:56:02 +02:00
|
|
|
@param Buffer The pointer to the data buffer to store the data read from the serial device.
|
|
|
|
@param NumberOfBytes The number of bytes which will be read.
|
2007-06-29 07:37:38 +02:00
|
|
|
|
2010-06-25 23:56:02 +02:00
|
|
|
@retval 0 Read data failed; No data is to be read.
|
|
|
|
@retval >0 The actual number of bytes read from serial device.
|
2007-06-29 07:37:38 +02:00
|
|
|
|
|
|
|
**/
|
|
|
|
UINTN
|
|
|
|
EFIAPI
|
|
|
|
SerialPortRead (
|
|
|
|
OUT UINT8 *Buffer,
|
|
|
|
IN UINTN NumberOfBytes
|
|
|
|
)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-08-10 07:39:21 +02:00
|
|
|
/**
|
2008-10-09 12:11:48 +02:00
|
|
|
Polls a serial device to see if there is any data waiting to be read.
|
2008-08-10 07:39:21 +02:00
|
|
|
|
2009-04-02 07:34:26 +02:00
|
|
|
Polls a serial device to see if there is any data waiting to be read.
|
2008-10-09 12:11:48 +02:00
|
|
|
If there is data waiting to be read from the serial device, then TRUE is returned.
|
|
|
|
If there is no data waiting to be read from the serial device, then FALSE is returned.
|
2008-08-10 07:39:21 +02:00
|
|
|
|
2008-10-09 12:11:48 +02:00
|
|
|
@retval TRUE Data is waiting to be read from the serial device.
|
|
|
|
@retval FALSE There is no data waiting to be read from the serial device.
|
2008-08-10 07:39:21 +02:00
|
|
|
|
|
|
|
**/
|
|
|
|
BOOLEAN
|
|
|
|
EFIAPI
|
|
|
|
SerialPortPoll (
|
|
|
|
VOID
|
|
|
|
)
|
|
|
|
{
|
2008-08-13 23:02:24 +02:00
|
|
|
return FALSE;
|
|
|
|
}
|
2008-08-10 07:39:21 +02:00
|
|
|
|