TianoCore EDK2 master
Loading...
Searching...
No Matches
BaseSerialPortLibHob.c File Reference
#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
 

Detailed Description

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.

Macro Definition Documentation

◆ B_UART_FCR_FIFO64

#define B_UART_FCR_FIFO64   BIT5

Definition at line 29 of file BaseSerialPortLibHob.c.

◆ B_UART_FCR_FIFOE

#define B_UART_FCR_FIFOE   BIT0

Definition at line 28 of file BaseSerialPortLibHob.c.

◆ B_UART_LCR_DLAB

#define B_UART_LCR_DLAB   BIT7

Definition at line 31 of file BaseSerialPortLibHob.c.

◆ B_UART_LSR_RXRDY

#define B_UART_LSR_RXRDY   BIT0

Definition at line 36 of file BaseSerialPortLibHob.c.

◆ B_UART_LSR_TEMT

#define B_UART_LSR_TEMT   BIT6

Definition at line 38 of file BaseSerialPortLibHob.c.

◆ B_UART_LSR_TXRDY

#define B_UART_LSR_TXRDY   BIT5

Definition at line 37 of file BaseSerialPortLibHob.c.

◆ B_UART_MCR_DTRC

#define B_UART_MCR_DTRC   BIT0

Definition at line 33 of file BaseSerialPortLibHob.c.

◆ B_UART_MCR_RTS

#define B_UART_MCR_RTS   BIT1

Definition at line 34 of file BaseSerialPortLibHob.c.

◆ B_UART_MSR_CTS

#define B_UART_MSR_CTS   BIT4

Definition at line 40 of file BaseSerialPortLibHob.c.

◆ B_UART_MSR_DCD

#define B_UART_MSR_DCD   BIT7

Definition at line 43 of file BaseSerialPortLibHob.c.

◆ B_UART_MSR_DSR

#define B_UART_MSR_DSR   BIT5

Definition at line 41 of file BaseSerialPortLibHob.c.

◆ B_UART_MSR_RI

#define B_UART_MSR_RI   BIT6

Definition at line 42 of file BaseSerialPortLibHob.c.

◆ MAX_SIZE

#define MAX_SIZE   16

Definition at line 45 of file BaseSerialPortLibHob.c.

◆ R_UART_BAUD_HIGH

#define R_UART_BAUD_HIGH   1

Definition at line 25 of file BaseSerialPortLibHob.c.

◆ R_UART_BAUD_LOW

#define R_UART_BAUD_LOW   0

Definition at line 24 of file BaseSerialPortLibHob.c.

◆ R_UART_FCR

#define R_UART_FCR   2

Definition at line 27 of file BaseSerialPortLibHob.c.

◆ R_UART_IER

#define R_UART_IER   1

Definition at line 26 of file BaseSerialPortLibHob.c.

◆ R_UART_LCR

#define R_UART_LCR   3

Definition at line 30 of file BaseSerialPortLibHob.c.

◆ R_UART_LSR

#define R_UART_LSR   5

Definition at line 35 of file BaseSerialPortLibHob.c.

◆ R_UART_MCR

#define R_UART_MCR   4

Definition at line 32 of file BaseSerialPortLibHob.c.

◆ R_UART_MSR

#define R_UART_MSR   6

Definition at line 39 of file BaseSerialPortLibHob.c.

◆ R_UART_RXBUF

#define R_UART_RXBUF   0

Definition at line 22 of file BaseSerialPortLibHob.c.

◆ R_UART_TXBUF

#define R_UART_TXBUF   0

Definition at line 23 of file BaseSerialPortLibHob.c.

Function Documentation

◆ SerialPortGetControl()

RETURN_STATUS EFIAPI SerialPortGetControl ( OUT UINT32 *  Control)

Retrieve the status of the control bits on a serial device.

Parameters
ControlA pointer to return the current control signals from the serial device.
Return values
RETURN_SUCCESSThe control bits were read from the serial device.

Definition at line 632 of file BaseSerialPortLibHob.c.

◆ SerialPortInitialize()

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 values
RETURN_SUCCESSThe serial device was initialized.

Definition at line 127 of file BaseSerialPortLibHob.c.

◆ SerialPortPoll()

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.

Return values
TRUEData is waiting to be read from the serial device.
FALSEThere is no data waiting to be read from the serial device.

Definition at line 503 of file BaseSerialPortLibHob.c.

◆ SerialPortRead()

UINTN EFIAPI SerialPortRead ( OUT UINT8 *  Buffer,
IN UINTN  NumberOfBytes 
)

Reads data from a serial device into a buffer.

Parameters
BufferPointer to the data buffer to store the data read from the serial device.
NumberOfBytesNumber of bytes to read from the serial device.
Return values
0NumberOfBytes is 0.
>0The 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.

◆ SerialPortReadRegister()

UINT8 SerialPortReadRegister ( UINTN  Base,
UINTN  Offset,
BOOLEAN  UseMmio,
UINT8  RegisterStride 
)

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.

Parameters
BaseThe base address register of UART device.
OffsetThe offset of the register to read.
UseMmioCheck if value has to be read from MMIO space or IO space.
RegisterStrideNumber of bytes between registers in serial device.
Returns
The value read from the register.

Definition at line 72 of file BaseSerialPortLibHob.c.

◆ SerialPortSetAttributes()

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.

Parameters
BaudRateThe requested baud rate. A BaudRate value of 0 will use the device's default interface speed. On output, the value actually set.
ReveiveFifoDepthThe 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.
TimeoutThe 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.
ParityThe 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.
DataBitsThe 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.
StopBitsThe 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 values
RETURN_SUCCESSThe new attributes were set on the serial device.

Definition at line 755 of file BaseSerialPortLibHob.c.

◆ SerialPortSetControl()

RETURN_STATUS EFIAPI SerialPortSetControl ( IN UINT32  Control)

Sets the control bits on a serial device.

Parameters
ControlSets the bits of Control that are settable.
Return values
RETURN_SUCCESSThe new control bits were set on the serial device.

Definition at line 567 of file BaseSerialPortLibHob.c.

◆ SerialPortWrite()

UINTN EFIAPI SerialPortWrite ( IN UINT8 *  Buffer,
IN UINTN  NumberOfBytes 
)

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.

Parameters
BufferPointer to the data buffer to be written.
NumberOfBytesNumber of bytes to written to the serial device.
Return values
0NumberOfBytes is 0.
>0The 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.

◆ SerialPortWriteRegister()

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.

Parameters
BaseThe base address register of UART device.
OffsetThe offset of the register to write.
ValueValue to be written.
UseMmioCheck if value has to be written to MMIO space or IO space.
RegisterStrideNumber of bytes between registers in serial device.
Returns
The value written to the register.

Definition at line 101 of file BaseSerialPortLibHob.c.

Variable Documentation

◆ mBaseSerialPortLibHobAtRuntime

BOOLEAN mBaseSerialPortLibHobAtRuntime = FALSE

Definition at line 56 of file BaseSerialPortLibHob.c.

◆ mUartCount

UINT8 mUartCount = 0

Definition at line 55 of file BaseSerialPortLibHob.c.

◆ mUartInfo

UART_INFO mUartInfo[MAX_SIZE]

Definition at line 54 of file BaseSerialPortLibHob.c.