TianoCore EDK2 master
Loading...
Searching...
No Matches
BaseSerialPortLib16550.c File Reference
#include <Base.h>
#include <IndustryStandard/Pci.h>
#include <Library/SerialPortLib.h>
#include <Library/PcdLib.h>
#include <Library/IoLib.h>
#include <Library/PciLib.h>
#include <Library/PlatformHookLib.h>
#include <Library/BaseLib.h>

Go to the source code of this file.

Data Structures

struct  PCI_UART_DEVICE_INFO
 

Macros

#define PCI_BRIDGE_32_BIT_IO_SPACE   0x01
 
#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
 

Functions

UINT8 SerialPortReadRegister (UINTN Base, UINTN Offset)
 
UINT8 SerialPortWriteRegister (UINTN Base, UINTN Offset, UINT8 Value)
 
UINT16 SerialPortLibUpdatePciRegister16 (UINTN PciAddress, UINT16 Value, UINT16 Mask)
 
UINT32 SerialPortLibUpdatePciRegister32 (UINTN PciAddress, UINT32 Value, UINT32 Mask)
 
UINTN GetSerialRegisterBase (VOID)
 
BOOLEAN SerialPortWritable (UINTN SerialRegisterBase)
 
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)
 
EFI_STATUS EFIAPI BaseSerialPortLib16550 (VOID)
 

Detailed Description

16550 UART Serial Port library functions

(C) Copyright 2014 Hewlett-Packard Development Company, L.P.
Copyright (c) 2006 - 2019, Intel Corporation. All rights reserved.
Copyright (c) 2018, AMD Incorporated. All rights reserved.
Copyright (c) 2020, ARM Limited. All rights reserved.

SPDX-License-Identifier: BSD-2-Clause-Patent

Definition in file BaseSerialPortLib16550.c.

Macro Definition Documentation

◆ B_UART_FCR_FIFO64

#define B_UART_FCR_FIFO64   BIT5

Definition at line 37 of file BaseSerialPortLib16550.c.

◆ B_UART_FCR_FIFOE

#define B_UART_FCR_FIFOE   BIT0

Definition at line 36 of file BaseSerialPortLib16550.c.

◆ B_UART_LCR_DLAB

#define B_UART_LCR_DLAB   BIT7

Definition at line 39 of file BaseSerialPortLib16550.c.

◆ B_UART_LSR_RXRDY

#define B_UART_LSR_RXRDY   BIT0

Definition at line 44 of file BaseSerialPortLib16550.c.

◆ B_UART_LSR_TEMT

#define B_UART_LSR_TEMT   BIT6

Definition at line 46 of file BaseSerialPortLib16550.c.

◆ B_UART_LSR_TXRDY

#define B_UART_LSR_TXRDY   BIT5

Definition at line 45 of file BaseSerialPortLib16550.c.

◆ B_UART_MCR_DTRC

#define B_UART_MCR_DTRC   BIT0

Definition at line 41 of file BaseSerialPortLib16550.c.

◆ B_UART_MCR_RTS

#define B_UART_MCR_RTS   BIT1

Definition at line 42 of file BaseSerialPortLib16550.c.

◆ B_UART_MSR_CTS

#define B_UART_MSR_CTS   BIT4

Definition at line 48 of file BaseSerialPortLib16550.c.

◆ B_UART_MSR_DCD

#define B_UART_MSR_DCD   BIT7

Definition at line 51 of file BaseSerialPortLib16550.c.

◆ B_UART_MSR_DSR

#define B_UART_MSR_DSR   BIT5

Definition at line 49 of file BaseSerialPortLib16550.c.

◆ B_UART_MSR_RI

#define B_UART_MSR_RI   BIT6

Definition at line 50 of file BaseSerialPortLib16550.c.

◆ PCI_BRIDGE_32_BIT_IO_SPACE

#define PCI_BRIDGE_32_BIT_IO_SPACE   0x01

Definition at line 25 of file BaseSerialPortLib16550.c.

◆ R_UART_BAUD_HIGH

#define R_UART_BAUD_HIGH   1

Definition at line 33 of file BaseSerialPortLib16550.c.

◆ R_UART_BAUD_LOW

#define R_UART_BAUD_LOW   0

Definition at line 32 of file BaseSerialPortLib16550.c.

◆ R_UART_FCR

#define R_UART_FCR   2

Definition at line 35 of file BaseSerialPortLib16550.c.

◆ R_UART_IER

#define R_UART_IER   1

Definition at line 34 of file BaseSerialPortLib16550.c.

◆ R_UART_LCR

#define R_UART_LCR   3

Definition at line 38 of file BaseSerialPortLib16550.c.

◆ R_UART_LSR

#define R_UART_LSR   5

Definition at line 43 of file BaseSerialPortLib16550.c.

◆ R_UART_MCR

#define R_UART_MCR   4

Definition at line 40 of file BaseSerialPortLib16550.c.

◆ R_UART_MSR

#define R_UART_MSR   6

Definition at line 47 of file BaseSerialPortLib16550.c.

◆ R_UART_RXBUF

#define R_UART_RXBUF   0

Definition at line 30 of file BaseSerialPortLib16550.c.

◆ R_UART_TXBUF

#define R_UART_TXBUF   0

Definition at line 31 of file BaseSerialPortLib16550.c.

Function Documentation

◆ BaseSerialPortLib16550()

EFI_STATUS EFIAPI BaseSerialPortLib16550 ( VOID  )

Base Serial Port 16550 Library Constructor

Return values
RETURN_SUCCESSSuccess.

Definition at line 1133 of file BaseSerialPortLib16550.c.

◆ GetSerialRegisterBase()

UINTN GetSerialRegisterBase ( VOID  )

Retrieve the I/O or MMIO base address register for the PCI UART device.

This function assumes Root Bus Numer is Zero, and enables I/O and MMIO in PCI UART Device if they are not already enabled.

Returns
The base address register of the UART device.

Definition at line 196 of file BaseSerialPortLib16550.c.

◆ 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.
RETURN_UNSUPPORTEDThe serial device does not support this operation.
RETURN_DEVICE_ERRORThe serial device is not functioning correctly.

Definition at line 863 of file BaseSerialPortLib16550.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. If the serial device could not be initialized, then return RETURN_DEVICE_ERROR.

Return values
RETURN_SUCCESSThe serial device was initialized.
RETURN_DEVICE_ERRORThe serial device could not be initialized.

Definition at line 489 of file BaseSerialPortLib16550.c.

◆ SerialPortLibUpdatePciRegister16()

UINT16 SerialPortLibUpdatePciRegister16 ( UINTN  PciAddress,
UINT16  Value,
UINT16  Mask 
)

Update the value of an 16-bit PCI configuration register in a PCI device. If the PCI Configuration register specified by PciAddress is already programmed with a non-zero value, then return the current value. Otherwise update the PCI configuration register specified by PciAddress with the value specified by Value and return the value programmed into the PCI configuration register. All values must be masked using the bitmask specified by Mask.

Parameters
PciAddressPCI Library address of the PCI Configuration register to update.
ValueThe value to program into the PCI Configuration Register.
MaskBitmask of the bits to check and update in the PCI configuration register.

Definition at line 138 of file BaseSerialPortLib16550.c.

◆ SerialPortLibUpdatePciRegister32()

UINT32 SerialPortLibUpdatePciRegister32 ( UINTN  PciAddress,
UINT32  Value,
UINT32  Mask 
)

Update the value of an 32-bit PCI configuration register in a PCI device. If the PCI Configuration register specified by PciAddress is already programmed with a non-zero value, then return the current value. Otherwise update the PCI configuration register specified by PciAddress with the value specified by Value and return the value programmed into the PCI configuration register. All values must be masked using the bitmask specified by Mask.

Parameters
PciAddressPCI Library address of the PCI Configuration register to update.
ValueThe value to program into the PCI Configuration Register.
MaskBitmask of the bits to check and update in the PCI configuration register.
Returns
The Secondary bus number that is actually programed into the PCI to PCI Bridge device.

Definition at line 170 of file BaseSerialPortLib16550.c.

◆ SerialPortPoll()

BOOLEAN EFIAPI SerialPortPoll ( VOID  )

Polls a serial device to see if there is any data waiting to be read.

Polls aserial 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 761 of file BaseSerialPortLib16550.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 699 of file BaseSerialPortLib16550.c.

◆ SerialPortReadRegister()

UINT8 SerialPortReadRegister ( UINTN  Base,
UINTN  Offset 
)

Read an 8-bit 16550 register. If PcdSerialUseMmio is TRUE, then the value is read from MMIO space. If PcdSerialUseMmio is FALSE, then the value is read from I/O space. The parameter Offset is added to the base address of the 16550 registers that is specified by PcdSerialRegisterBase. PcdSerialRegisterAccessWidth specifies the MMIO space access width and defaults to 8 bit access, and supports 8 or 32 bit access.

Parameters
BaseThe base address register of UART device.
OffsetThe offset of the 16550 register to read.
Returns
The value read from the 16550 register.

Definition at line 76 of file BaseSerialPortLib16550.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.
RETURN_UNSUPPORTEDThe serial device does not support this operation.
RETURN_INVALID_PARAMETEROne or more of the attributes has an unsupported value.
RETURN_DEVICE_ERRORThe serial device is not functioning correctly.

Definition at line 968 of file BaseSerialPortLib16550.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.
RETURN_UNSUPPORTEDThe serial device does not support this operation.
RETURN_DEVICE_ERRORThe serial device is not functioning correctly.

Definition at line 808 of file BaseSerialPortLib16550.c.

◆ SerialPortWritable()

BOOLEAN SerialPortWritable ( UINTN  SerialRegisterBase)

Return whether the hardware flow control signal allows writing.

Parameters
SerialRegisterBaseThe base address register of UART device.
Return values
TRUEThe serial port is writable.
FALSEThe serial port is not writable.

Definition at line 437 of file BaseSerialPortLib16550.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 ASSERT().

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 606 of file BaseSerialPortLib16550.c.

◆ SerialPortWriteRegister()

UINT8 SerialPortWriteRegister ( UINTN  Base,
UINTN  Offset,
UINT8  Value 
)

Write an 8-bit 16550 register. If PcdSerialUseMmio is TRUE, then the value is written to MMIO space. If PcdSerialUseMmio is FALSE, then the value is written to I/O space. The parameter Offset is added to the base address of the 16550 registers that is specified by PcdSerialRegisterBase. PcdSerialRegisterAccessWidth specifies the MMIO space access width and defaults to 8 bit access, and supports 8 or 32 bit access.

Parameters
BaseThe base address register of UART device.
OffsetThe offset of the 16550 register to write.
ValueThe value to write to the 16550 register specified by Offset.
Returns
The value written to the 16550 register.

Definition at line 107 of file BaseSerialPortLib16550.c.