Varun Wadekar | eeeced5 | 2015-05-19 16:44:17 +0530 | [diff] [blame] | 1 | /* |
Antonio Nino Diaz | 4b32e62 | 2018-08-16 16:52:57 +0100 | [diff] [blame] | 2 | * Copyright (c) 2015-2018, ARM Limited and Contributors. All rights reserved. |
Varun Wadekar | eeeced5 | 2015-05-19 16:44:17 +0530 | [diff] [blame] | 3 | * |
dp-arm | fa3cf0b | 2017-05-03 09:38:09 +0100 | [diff] [blame] | 4 | * SPDX-License-Identifier: BSD-3-Clause |
Varun Wadekar | eeeced5 | 2015-05-19 16:44:17 +0530 | [diff] [blame] | 5 | */ |
| 6 | |
Antonio Nino Diaz | 5eb8837 | 2018-11-08 10:20:19 +0000 | [diff] [blame] | 7 | #ifndef UART_16550_H |
| 8 | #define UART_16550_H |
Varun Wadekar | eeeced5 | 2015-05-19 16:44:17 +0530 | [diff] [blame] | 9 | |
Antonio Nino Diaz | e0f9063 | 2018-12-14 00:18:21 +0000 | [diff] [blame] | 10 | #include <drivers/console.h> |
Julius Werner | 4e406bf | 2017-09-18 16:57:51 -0700 | [diff] [blame] | 11 | |
Varun Wadekar | eeeced5 | 2015-05-19 16:44:17 +0530 | [diff] [blame] | 12 | /* UART16550 Registers */ |
| 13 | #define UARTTX 0x0 |
| 14 | #define UARTRX 0x0 |
| 15 | #define UARTDLL 0x0 |
| 16 | #define UARTIER 0x4 |
| 17 | #define UARTDLLM 0x4 |
| 18 | #define UARTIIR 0x8 |
| 19 | #define UARTFCR 0x8 |
| 20 | #define UARTLCR 0xc |
| 21 | #define UARTMCR 0x10 |
| 22 | #define UARTLSR 0x14 |
| 23 | #define UARTMSR 0x18 |
| 24 | #define UARTSPR 0x1c |
| 25 | #define UARTCSR 0x20 |
Benjamin Fair | 4d5853d | 2016-10-14 01:13:33 +0000 | [diff] [blame] | 26 | /* Some instances have MDR1 defined as well */ |
| 27 | #define UARTMDR1 0x20 |
Varun Wadekar | eeeced5 | 2015-05-19 16:44:17 +0530 | [diff] [blame] | 28 | #define UARTRXFIFOCFG 0x24 |
| 29 | #define UARTMIE 0x28 |
| 30 | #define UARTVNDR 0x2c |
| 31 | #define UARTASR 0x3c |
| 32 | |
| 33 | /* FIFO Control Register bits */ |
| 34 | #define UARTFCR_FIFOMD_16450 (0 << 6) |
| 35 | #define UARTFCR_FIFOMD_16550 (1 << 6) |
| 36 | #define UARTFCR_RXTRIG_1 (0 << 6) |
| 37 | #define UARTFCR_RXTRIG_4 (1 << 6) |
| 38 | #define UARTFCR_RXTRIG_8 (2 << 6) |
| 39 | #define UARTFCR_RXTRIG_16 (3 << 6) |
| 40 | #define UARTFCR_TXTRIG_1 (0 << 4) |
| 41 | #define UARTFCR_TXTRIG_4 (1 << 4) |
| 42 | #define UARTFCR_TXTRIG_8 (2 << 4) |
| 43 | #define UARTFCR_TXTRIG_16 (3 << 4) |
| 44 | #define UARTFCR_DMAEN (1 << 3) /* Enable DMA mode */ |
| 45 | #define UARTFCR_TXCLR (1 << 2) /* Clear contents of Tx FIFO */ |
| 46 | #define UARTFCR_RXCLR (1 << 1) /* Clear contents of Rx FIFO */ |
| 47 | #define UARTFCR_FIFOEN (1 << 0) /* Enable the Tx/Rx FIFO */ |
| 48 | |
| 49 | /* Line Control Register bits */ |
| 50 | #define UARTLCR_DLAB (1 << 7) /* Divisor Latch Access */ |
| 51 | #define UARTLCR_SETB (1 << 6) /* Set BREAK Condition */ |
| 52 | #define UARTLCR_SETP (1 << 5) /* Set Parity to LCR[4] */ |
| 53 | #define UARTLCR_EVEN (1 << 4) /* Even Parity Format */ |
| 54 | #define UARTLCR_PAR (1 << 3) /* Parity */ |
| 55 | #define UARTLCR_STOP (1 << 2) /* Stop Bit */ |
| 56 | #define UARTLCR_WORDSZ_5 0 /* Word Length of 5 */ |
| 57 | #define UARTLCR_WORDSZ_6 1 /* Word Length of 6 */ |
| 58 | #define UARTLCR_WORDSZ_7 2 /* Word Length of 7 */ |
| 59 | #define UARTLCR_WORDSZ_8 3 /* Word Length of 8 */ |
| 60 | |
| 61 | /* Line Status Register bits */ |
| 62 | #define UARTLSR_RXFIFOEMT (1 << 9) /* Rx Fifo Empty */ |
| 63 | #define UARTLSR_TXFIFOFULL (1 << 8) /* Tx Fifo Full */ |
| 64 | #define UARTLSR_RXFIFOERR (1 << 7) /* Rx Fifo Error */ |
| 65 | #define UARTLSR_TEMT (1 << 6) /* Tx Shift Register Empty */ |
| 66 | #define UARTLSR_THRE (1 << 5) /* Tx Holding Register Empty */ |
| 67 | #define UARTLSR_BRK (1 << 4) /* Break Condition Detected */ |
| 68 | #define UARTLSR_FERR (1 << 3) /* Framing Error */ |
| 69 | #define UARTLSR_PERR (1 << 3) /* Parity Error */ |
| 70 | #define UARTLSR_OVRF (1 << 2) /* Rx Overrun Error */ |
Nishanth Menon | 7b4b513 | 2017-01-10 09:34:07 -0600 | [diff] [blame] | 71 | #define UARTLSR_RDR_BIT (0) /* Rx Data Ready Bit */ |
| 72 | #define UARTLSR_RDR (1 << UARTLSR_RDR_BIT) /* Rx Data Ready */ |
Varun Wadekar | eeeced5 | 2015-05-19 16:44:17 +0530 | [diff] [blame] | 73 | |
Julius Werner | 4e406bf | 2017-09-18 16:57:51 -0700 | [diff] [blame] | 74 | #define CONSOLE_T_16550_BASE CONSOLE_T_DRVDATA |
| 75 | |
| 76 | #ifndef __ASSEMBLY__ |
| 77 | |
Antonio Nino Diaz | 4b32e62 | 2018-08-16 16:52:57 +0100 | [diff] [blame] | 78 | #include <stdint.h> |
Julius Werner | 4e406bf | 2017-09-18 16:57:51 -0700 | [diff] [blame] | 79 | |
| 80 | typedef struct { |
| 81 | console_t console; |
| 82 | uintptr_t base; |
| 83 | } console_16550_t; |
| 84 | |
| 85 | /* |
| 86 | * Initialize a new 16550 console instance and register it with the console |
| 87 | * framework. The |console| pointer must point to storage that will be valid |
| 88 | * for the lifetime of the console, such as a global or static local variable. |
| 89 | * Its contents will be reinitialized from scratch. |
| 90 | */ |
| 91 | int console_16550_register(uintptr_t baseaddr, uint32_t clock, uint32_t baud, |
| 92 | console_16550_t *console); |
| 93 | |
| 94 | #endif /*__ASSEMBLY__*/ |
| 95 | |
Antonio Nino Diaz | 5eb8837 | 2018-11-08 10:20:19 +0000 | [diff] [blame] | 96 | #endif /* UART_16550_H */ |