TianoCore EDK2 master
|
#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) |
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.
#define B_UART_FCR_FIFO64 BIT5 |
Definition at line 37 of file BaseSerialPortLib16550.c.
#define B_UART_FCR_FIFOE BIT0 |
Definition at line 36 of file BaseSerialPortLib16550.c.
#define B_UART_LCR_DLAB BIT7 |
Definition at line 39 of file BaseSerialPortLib16550.c.
#define B_UART_LSR_RXRDY BIT0 |
Definition at line 44 of file BaseSerialPortLib16550.c.
#define B_UART_LSR_TEMT BIT6 |
Definition at line 46 of file BaseSerialPortLib16550.c.
#define B_UART_LSR_TXRDY BIT5 |
Definition at line 45 of file BaseSerialPortLib16550.c.
#define B_UART_MCR_DTRC BIT0 |
Definition at line 41 of file BaseSerialPortLib16550.c.
#define B_UART_MCR_RTS BIT1 |
Definition at line 42 of file BaseSerialPortLib16550.c.
#define B_UART_MSR_CTS BIT4 |
Definition at line 48 of file BaseSerialPortLib16550.c.
#define B_UART_MSR_DCD BIT7 |
Definition at line 51 of file BaseSerialPortLib16550.c.
#define B_UART_MSR_DSR BIT5 |
Definition at line 49 of file BaseSerialPortLib16550.c.
#define B_UART_MSR_RI BIT6 |
Definition at line 50 of file BaseSerialPortLib16550.c.
#define PCI_BRIDGE_32_BIT_IO_SPACE 0x01 |
Definition at line 25 of file BaseSerialPortLib16550.c.
#define R_UART_BAUD_HIGH 1 |
Definition at line 33 of file BaseSerialPortLib16550.c.
#define R_UART_BAUD_LOW 0 |
Definition at line 32 of file BaseSerialPortLib16550.c.
#define R_UART_FCR 2 |
Definition at line 35 of file BaseSerialPortLib16550.c.
#define R_UART_IER 1 |
Definition at line 34 of file BaseSerialPortLib16550.c.
#define R_UART_LCR 3 |
Definition at line 38 of file BaseSerialPortLib16550.c.
#define R_UART_LSR 5 |
Definition at line 43 of file BaseSerialPortLib16550.c.
#define R_UART_MCR 4 |
Definition at line 40 of file BaseSerialPortLib16550.c.
#define R_UART_MSR 6 |
Definition at line 47 of file BaseSerialPortLib16550.c.
#define R_UART_RXBUF 0 |
Definition at line 30 of file BaseSerialPortLib16550.c.
#define R_UART_TXBUF 0 |
Definition at line 31 of file BaseSerialPortLib16550.c.
EFI_STATUS EFIAPI BaseSerialPortLib16550 | ( | VOID | ) |
Base Serial Port 16550 Library Constructor
RETURN_SUCCESS | Success. |
Definition at line 1133 of file BaseSerialPortLib16550.c.
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.
Definition at line 196 of file BaseSerialPortLib16550.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. |
RETURN_UNSUPPORTED | The serial device does not support this operation. |
RETURN_DEVICE_ERROR | The serial device is not functioning correctly. |
Definition at line 863 of file BaseSerialPortLib16550.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. If the serial device could not be initialized, then return RETURN_DEVICE_ERROR.
RETURN_SUCCESS | The serial device was initialized. |
RETURN_DEVICE_ERROR | The serial device could not be initialized. |
Definition at line 489 of file BaseSerialPortLib16550.c.
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.
PciAddress | PCI Library address of the PCI Configuration register to update. |
Value | The value to program into the PCI Configuration Register. |
Mask | Bitmask of the bits to check and update in the PCI configuration register. |
Definition at line 138 of file BaseSerialPortLib16550.c.
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.
PciAddress | PCI Library address of the PCI Configuration register to update. |
Value | The value to program into the PCI Configuration Register. |
Mask | Bitmask of the bits to check and update in the PCI configuration register. |
Definition at line 170 of file BaseSerialPortLib16550.c.
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.
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 761 of file BaseSerialPortLib16550.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 699 of file BaseSerialPortLib16550.c.
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.
Base | The base address register of UART device. |
Offset | The offset of the 16550 register to read. |
Definition at line 76 of file BaseSerialPortLib16550.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. |
RETURN_UNSUPPORTED | The serial device does not support this operation. |
RETURN_INVALID_PARAMETER | One or more of the attributes has an unsupported value. |
RETURN_DEVICE_ERROR | The serial device is not functioning correctly. |
Definition at line 968 of file BaseSerialPortLib16550.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. |
RETURN_UNSUPPORTED | The serial device does not support this operation. |
RETURN_DEVICE_ERROR | The serial device is not functioning correctly. |
Definition at line 808 of file BaseSerialPortLib16550.c.
BOOLEAN SerialPortWritable | ( | UINTN | SerialRegisterBase | ) |
Return whether the hardware flow control signal allows writing.
SerialRegisterBase | The base address register of UART device. |
TRUE | The serial port is writable. |
FALSE | The serial port is not writable. |
Definition at line 437 of file BaseSerialPortLib16550.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 ASSERT().
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 606 of file BaseSerialPortLib16550.c.
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.
Base | The base address register of UART device. |
Offset | The offset of the 16550 register to write. |
Value | The value to write to the 16550 register specified by Offset. |
Definition at line 107 of file BaseSerialPortLib16550.c.