2007-06-29 05:27:02 +02:00
|
|
|
/** @file
|
2008-11-19 09:34:41 +01:00
|
|
|
This library class provides common serial I/O port functions.
|
2007-06-29 05:27:02 +02:00
|
|
|
|
2008-11-14 04:45:34 +01:00
|
|
|
Copyright (c) 2006 - 2008, Intel Corporation
|
|
|
|
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-06-29 05:27:02 +02:00
|
|
|
|
2008-11-14 04:45:34 +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.
|
2007-06-29 05:27:02 +02:00
|
|
|
|
|
|
|
**/
|
|
|
|
|
|
|
|
#ifndef __SERIAL_PORT_LIB__
|
|
|
|
#define __SERIAL_PORT_LIB__
|
|
|
|
|
|
|
|
/**
|
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 05:27:02 +02:00
|
|
|
|
|
|
|
**/
|
2007-06-29 22:51:01 +02:00
|
|
|
RETURN_STATUS
|
2007-06-29 05:27:02 +02:00
|
|
|
EFIAPI
|
|
|
|
SerialPortInitialize (
|
|
|
|
VOID
|
|
|
|
);
|
|
|
|
|
|
|
|
/**
|
2008-07-15 13:12:43 +02:00
|
|
|
Write data from buffer to serial device.
|
2007-06-29 05:27:02 +02:00
|
|
|
|
2008-10-07 11:01:12 +02:00
|
|
|
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 05:27:02 +02:00
|
|
|
|
2008-10-07 11:01:12 +02:00
|
|
|
@param Buffer Pointer to the data buffer to be written.
|
|
|
|
@param NumberOfBytes Number of bytes to written to the serial device.
|
|
|
|
|
|
|
|
@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 05:27:02 +02:00
|
|
|
|
|
|
|
**/
|
|
|
|
UINTN
|
|
|
|
EFIAPI
|
|
|
|
SerialPortWrite (
|
2008-11-19 09:34:41 +01:00
|
|
|
IN UINT8 *Buffer,
|
|
|
|
IN UINTN NumberOfBytes
|
2007-06-29 22:51:01 +02:00
|
|
|
);
|
2007-06-29 05:27:02 +02:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
Read data from serial device and save the datas in buffer.
|
|
|
|
|
2008-10-07 11:01:12 +02:00
|
|
|
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 05:27:02 +02:00
|
|
|
|
2008-10-07 11:01:12 +02:00
|
|
|
@param Buffer Pointer to the data buffer to store the data read from the serial device.
|
2008-07-15 13:12:43 +02:00
|
|
|
@param NumberOfBytes Number of bytes which will be read.
|
2007-06-29 05:27:02 +02:00
|
|
|
|
2009-06-04 18:16:15 +02:00
|
|
|
@retval 0 Read data failed, no data is to be read.
|
2009-04-02 07:34:26 +02:00
|
|
|
@retval >0 Actual number of bytes read from serial device.
|
2007-06-29 05:27:02 +02:00
|
|
|
|
|
|
|
**/
|
|
|
|
UINTN
|
|
|
|
EFIAPI
|
|
|
|
SerialPortRead (
|
2008-11-19 09:34:41 +01:00
|
|
|
OUT UINT8 *Buffer,
|
|
|
|
IN UINTN NumberOfBytes
|
2007-06-29 22:51:01 +02:00
|
|
|
);
|
2007-06-29 05:27:02 +02:00
|
|
|
|
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
|
|
|
|
);
|
2007-06-29 05:27:02 +02:00
|
|
|
|
|
|
|
#endif
|