]> git.proxmox.com Git - mirror_edk2.git/blob - ArmPlatformPkg/Include/Drivers/PL011Uart.h
ArmPlatformPkg: Minor code changes (comments, misspellings, coding stylei, line endings)
[mirror_edk2.git] / ArmPlatformPkg / Include / Drivers / PL011Uart.h
1 /** @file
2 *
3 * Copyright (c) 2011, ARM Limited. All rights reserved.
4 *
5 * This program and the accompanying materials
6 * are licensed and made available under the terms and conditions of the BSD License
7 * which accompanies this distribution. The full text of the license may be found at
8 * http://opensource.org/licenses/bsd-license.php
9 *
10 * THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
12 *
13 **/
14
15 #ifndef __PL011_UART_H__
16 #define __PL011_UART_H__
17
18 // PL011 Registers
19 #define UARTDR 0x000
20 #define UARTRSR 0x004
21 #define UARTECR 0x004
22 #define UARTFR 0x018
23 #define UARTILPR 0x020
24 #define UARTIBRD 0x024
25 #define UARTFBRD 0x028
26 #define UARTLCR_H 0x02C
27 #define UARTCR 0x030
28 #define UARTIFLS 0x034
29 #define UARTIMSC 0x038
30 #define UARTRIS 0x03C
31 #define UARTMIS 0x040
32 #define UARTICR 0x044
33 #define UARTDMACR 0x048
34
35 #define UART_115200_IDIV 13 // Integer Part
36 #define UART_115200_FDIV 1 // Fractional Part
37 #define UART_38400_IDIV 39
38 #define UART_38400_FDIV 5
39 #define UART_19200_IDIV 12
40 #define UART_19200_FDIV 37
41
42 // Data status bits
43 #define UART_DATA_ERROR_MASK 0x0F00
44
45 // Status reg bits
46 #define UART_STATUS_ERROR_MASK 0x0F
47
48 // Flag reg bits
49 #define UART_TX_EMPTY_FLAG_MASK 0x80
50 #define UART_RX_FULL_FLAG_MASK 0x40
51 #define UART_TX_FULL_FLAG_MASK 0x20
52 #define UART_RX_EMPTY_FLAG_MASK 0x10
53 #define UART_BUSY_FLAG_MASK 0x08
54
55 // Control reg bits
56 #define PL011_UARTCR_CTSEN (1 << 15) // CTS hardware flow control enable
57 #define PL011_UARTCR_RTSEN (1 << 14) // RTS hardware flow control enable
58 #define PL011_UARTCR_RTS (1 << 11) // Request to send
59 #define PL011_UARTCR_DTR (1 << 10) // Data transmit ready.
60 #define PL011_UARTCR_RXE (1 << 9) // Receive enable
61 #define PL011_UARTCR_TXE (1 << 8) // Transmit enable
62 #define PL011_UARTCR_UARTEN (1 << 0) // UART Enable
63
64 // Line Control Register Bits
65 #define PL011_UARTLCR_H_SPS (1 << 7) // Stick parity select
66 #define PL011_UARTLCR_H_WLEN_8 (3 << 5)
67 #define PL011_UARTLCR_H_WLEN_7 (2 << 5)
68 #define PL011_UARTLCR_H_WLEN_6 (1 << 5)
69 #define PL011_UARTLCR_H_WLEN_5 (0 << 5)
70 #define PL011_UARTLCR_H_FEN (1 << 4) // FIFOs Enable
71 #define PL011_UARTLCR_H_STP2 (1 << 3) // Two stop bits select
72 #define PL011_UARTLCR_H_EPS (1 << 2) // Even parity select
73 #define PL011_UARTLCR_H_PEN (1 << 1) // Parity Enable
74 #define PL011_UARTLCR_H_BRK (1 << 0) // Send break
75
76 /*
77
78 Programmed hardware of Serial port.
79
80 @return Always return EFI_UNSUPPORTED.
81
82 **/
83 RETURN_STATUS
84 EFIAPI
85 PL011UartInitialize (
86 IN UINTN UartBase,
87 IN UINTN BaudRate,
88 IN UINTN LineControl
89 );
90
91 /**
92 Write data to serial device.
93
94 @param Buffer Point of data buffer which need to be writed.
95 @param NumberOfBytes Number of output bytes which are cached in Buffer.
96
97 @retval 0 Write data failed.
98 @retval !0 Actual number of bytes writed to serial device.
99
100 **/
101 UINTN
102 EFIAPI
103 PL011UartWrite (
104 IN UINTN UartBase,
105 IN UINT8 *Buffer,
106 IN UINTN NumberOfBytes
107 );
108
109 /**
110 Read data from serial device and save the datas in buffer.
111
112 @param Buffer Point of data buffer which need to be writed.
113 @param NumberOfBytes Number of output bytes which are cached in Buffer.
114
115 @retval 0 Read data failed.
116 @retval !0 Aactual number of bytes read from serial device.
117
118 **/
119 UINTN
120 EFIAPI
121 PL011UartRead (
122 IN UINTN UartBase,
123 OUT UINT8 *Buffer,
124 IN UINTN NumberOfBytes
125 );
126
127 /**
128 Check to see if any data is avaiable to be read from the debug device.
129
130 @retval EFI_SUCCESS At least one byte of data is avaiable to be read
131 @retval EFI_NOT_READY No data is avaiable to be read
132 @retval EFI_DEVICE_ERROR The serial device is not functioning properly
133
134 **/
135 BOOLEAN
136 EFIAPI
137 PL011UartPoll (
138 IN UINTN UartBase
139 );
140
141 #endif