TianoCore EDK2 master
|
#include <PiDxe.h>
#include <Base.h>
#include <Library/PcdLib.h>
#include <Library/IoLib.h>
#include <Library/BaseLib.h>
#include <Library/HobLib.h>
#include <Library/TimerLib.h>
#include <Library/DebugLib.h>
#include <Protocol/SerialIo.h>
#include <UniversalPayload/SerialPortInfo.h>
Go to the source code of this file.
Data Structures | |
struct | UART_INFO |
Macros | |
#define | R_UART_RXBUF 0 |
#define | R_UART_TXBUF 0 |
#define | R_UART_BAUD_LOW 0 |
#define | R_UART_BAUD_HIGH 1 |
#define | R_UART_IER 1 |
#define | R_UART_FCR 2 |
#define | B_UART_FCR_FIFOE BIT0 |
#define | B_UART_FCR_FIFO64 BIT5 |
#define | R_UART_LCR 3 |
#define | B_UART_LCR_DLAB BIT7 |
#define | R_UART_MCR 4 |
#define | B_UART_MCR_DTRC BIT0 |
#define | B_UART_MCR_RTS BIT1 |
#define | R_UART_LSR 5 |
#define | B_UART_LSR_RXRDY BIT0 |
#define | B_UART_LSR_TXRDY BIT5 |
#define | B_UART_LSR_TEMT BIT6 |
#define | R_UART_MSR 6 |
#define | B_UART_MSR_CTS BIT4 |
#define | B_UART_MSR_DSR BIT5 |
#define | B_UART_MSR_RI BIT6 |
#define | B_UART_MSR_DCD BIT7 |
#define | MAX_SIZE 16 |
Functions | |
UINT8 | SerialPortReadRegister (UINTN Base, UINTN Offset, BOOLEAN UseMmio, UINT8 RegisterStride) |
UINT8 | SerialPortWriteRegister (UINTN Base, UINTN Offset, UINT8 Value, BOOLEAN UseMmio, UINT8 RegisterStride) |
RETURN_STATUS EFIAPI | SerialPortInitialize (VOID) |
UINTN EFIAPI | SerialPortWrite (IN UINT8 *Buffer, IN UINTN NumberOfBytes) |
UINTN EFIAPI | SerialPortRead (OUT UINT8 *Buffer, IN UINTN NumberOfBytes) |
BOOLEAN EFIAPI | SerialPortPoll (VOID) |
RETURN_STATUS EFIAPI | SerialPortSetControl (IN UINT32 Control) |
RETURN_STATUS EFIAPI | SerialPortGetControl (OUT UINT32 *Control) |
RETURN_STATUS EFIAPI | SerialPortSetAttributes (IN OUT UINT64 *BaudRate, IN OUT UINT32 *ReceiveFifoDepth, IN OUT UINT32 *Timeout, IN OUT EFI_PARITY_TYPE *Parity, IN OUT UINT8 *DataBits, IN OUT EFI_STOP_BITS_TYPE *StopBits) |
Variables | |
UART_INFO | mUartInfo [MAX_SIZE] |
UINT8 | mUartCount = 0 |
BOOLEAN | mBaseSerialPortLibHobAtRuntime = FALSE |
UART Serial Port library functions.
Copyright (c) 2022, Intel Corporation. All rights reserved.
SPDX-License-Identifier: BSD-2-Clause-Patent
Definition in file BaseSerialPortLibHob.c.
#define B_UART_FCR_FIFO64 BIT5 |
Definition at line 29 of file BaseSerialPortLibHob.c.
#define B_UART_FCR_FIFOE BIT0 |
Definition at line 28 of file BaseSerialPortLibHob.c.
#define B_UART_LCR_DLAB BIT7 |
Definition at line 31 of file BaseSerialPortLibHob.c.
#define B_UART_LSR_RXRDY BIT0 |
Definition at line 36 of file BaseSerialPortLibHob.c.
#define B_UART_LSR_TEMT BIT6 |
Definition at line 38 of file BaseSerialPortLibHob.c.
#define B_UART_LSR_TXRDY BIT5 |
Definition at line 37 of file BaseSerialPortLibHob.c.
#define B_UART_MCR_DTRC BIT0 |
Definition at line 33 of file BaseSerialPortLibHob.c.
#define B_UART_MCR_RTS BIT1 |
Definition at line 34 of file BaseSerialPortLibHob.c.
#define B_UART_MSR_CTS BIT4 |
Definition at line 40 of file BaseSerialPortLibHob.c.
#define B_UART_MSR_DCD BIT7 |
Definition at line 43 of file BaseSerialPortLibHob.c.
#define B_UART_MSR_DSR BIT5 |
Definition at line 41 of file BaseSerialPortLibHob.c.
#define B_UART_MSR_RI BIT6 |
Definition at line 42 of file BaseSerialPortLibHob.c.
#define MAX_SIZE 16 |
Definition at line 45 of file BaseSerialPortLibHob.c.
#define R_UART_BAUD_HIGH 1 |
Definition at line 25 of file BaseSerialPortLibHob.c.
#define R_UART_BAUD_LOW 0 |
Definition at line 24 of file BaseSerialPortLibHob.c.
#define R_UART_FCR 2 |
Definition at line 27 of file BaseSerialPortLibHob.c.
#define R_UART_IER 1 |
Definition at line 26 of file BaseSerialPortLibHob.c.
#define R_UART_LCR 3 |
Definition at line 30 of file BaseSerialPortLibHob.c.
#define R_UART_LSR 5 |
Definition at line 35 of file BaseSerialPortLibHob.c.
#define R_UART_MCR 4 |
Definition at line 32 of file BaseSerialPortLibHob.c.
#define R_UART_MSR 6 |
Definition at line 39 of file BaseSerialPortLibHob.c.
#define R_UART_RXBUF 0 |
Definition at line 22 of file BaseSerialPortLibHob.c.
#define R_UART_TXBUF 0 |
Definition at line 23 of file BaseSerialPortLibHob.c.
RETURN_STATUS EFIAPI SerialPortGetControl | ( | OUT UINT32 * | Control | ) |
Retrieve the status of the control bits on a serial device.
Control | A pointer to return the current control signals from the serial device. |
RETURN_SUCCESS | The control bits were read from the serial device. |
Definition at line 632 of file BaseSerialPortLibHob.c.
RETURN_STATUS EFIAPI SerialPortInitialize | ( | VOID | ) |
Initialize the serial device hardware.
If no initialization is required, then return RETURN_SUCCESS. If the serial device was successfully initialized, then return RETURN_SUCCESS.
RETURN_SUCCESS | The serial device was initialized. |
Definition at line 127 of file BaseSerialPortLibHob.c.
BOOLEAN EFIAPI SerialPortPoll | ( | VOID | ) |
Polls a serial device to see if there is any data waiting to be read.
Polls a serial device to see if there is any data waiting to be read. 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.
TRUE | Data is waiting to be read from the serial device. |
FALSE | There is no data waiting to be read from the serial device. |
Definition at line 503 of file BaseSerialPortLibHob.c.
Reads data from a serial device into a buffer.
Buffer | Pointer to the data buffer to store the data read from the serial device. |
NumberOfBytes | Number of bytes to read from the serial device. |
0 | NumberOfBytes is 0. |
>0 | The number of bytes read from the serial device. If this value is less than NumberOfBytes, then the read operation failed. |
Definition at line 411 of file BaseSerialPortLibHob.c.
Reads an 8-bit register. If UseMmio is TRUE, then the value is read from MMIO space. If UseMmio is FALSE, then the value is read from I/O space. The parameter Offset is added to the base address of the register.
Base | The base address register of UART device. |
Offset | The offset of the register to read. |
UseMmio | Check if value has to be read from MMIO space or IO space. |
RegisterStride | Number of bytes between registers in serial device. |
Definition at line 72 of file BaseSerialPortLibHob.c.
RETURN_STATUS EFIAPI SerialPortSetAttributes | ( | IN OUT UINT64 * | BaudRate, |
IN OUT UINT32 * | ReceiveFifoDepth, | ||
IN OUT UINT32 * | Timeout, | ||
IN OUT EFI_PARITY_TYPE * | Parity, | ||
IN OUT UINT8 * | DataBits, | ||
IN OUT EFI_STOP_BITS_TYPE * | StopBits | ||
) |
Sets the baud rate, receive FIFO depth, transmit/receice time out, parity, data bits, and stop bits on a serial device.
BaudRate | The requested baud rate. A BaudRate value of 0 will use the device's default interface speed. On output, the value actually set. |
ReveiveFifoDepth | The requested depth of the FIFO on the receive side of the serial interface. A ReceiveFifoDepth value of 0 will use the device's default FIFO depth. On output, the value actually set. |
Timeout | The requested time out for a single character in microseconds. This timeout applies to both the transmit and receive side of the interface. A Timeout value of 0 will use the device's default time out value. On output, the value actually set. |
Parity | The type of parity to use on this serial device. A Parity value of DefaultParity will use the device's default parity value. On output, the value actually set. |
DataBits | The number of data bits to use on the serial device. A DataBits vaule of 0 will use the device's default data bit setting. On output, the value actually set. |
StopBits | The number of stop bits to use on this serial device. A StopBits value of DefaultStopBits will use the device's default number of stop bits. On output, the value actually set. |
RETURN_SUCCESS | The new attributes were set on the serial device. |
Definition at line 755 of file BaseSerialPortLibHob.c.
RETURN_STATUS EFIAPI SerialPortSetControl | ( | IN UINT32 | Control | ) |
Sets the control bits on a serial device.
Control | Sets the bits of Control that are settable. |
RETURN_SUCCESS | The new control bits were set on the serial device. |
Definition at line 567 of file BaseSerialPortLibHob.c.
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 return 0.
If NumberOfBytes is zero, then return 0.
Buffer | Pointer to the data buffer to be written. |
NumberOfBytes | Number of bytes to written to the serial device. |
0 | NumberOfBytes is 0. |
>0 | The number of bytes written to the serial device. If this value is less than NumberOfBytes, then the write operation failed. |
Definition at line 322 of file BaseSerialPortLibHob.c.
UINT8 SerialPortWriteRegister | ( | UINTN | Base, |
UINTN | Offset, | ||
UINT8 | Value, | ||
BOOLEAN | UseMmio, | ||
UINT8 | RegisterStride | ||
) |
Writes an 8-bit register.. If UseMmio is TRUE, then the value is written to MMIO space. If UseMmio is FALSE, then the value is written to I/O space. The parameter Offset is added to the base address of the registers.
Base | The base address register of UART device. |
Offset | The offset of the register to write. |
Value | Value to be written. |
UseMmio | Check if value has to be written to MMIO space or IO space. |
RegisterStride | Number of bytes between registers in serial device. |
Definition at line 101 of file BaseSerialPortLibHob.c.
BOOLEAN mBaseSerialPortLibHobAtRuntime = FALSE |
Definition at line 56 of file BaseSerialPortLibHob.c.
UINT8 mUartCount = 0 |
Definition at line 55 of file BaseSerialPortLibHob.c.
UART_INFO mUartInfo[MAX_SIZE] |
Definition at line 54 of file BaseSerialPortLibHob.c.