Marek Vasut | 237ce0f | 2011-08-28 03:35:13 +0200 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2011 Marek Vasut <marek.vasut@gmail.com> |
| 3 | * |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 4 | * SPDX-License-Identifier: GPL-2.0+ |
Marek Vasut | 237ce0f | 2011-08-28 03:35:13 +0200 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | #ifndef __REGS_UART_H__ |
| 8 | #define __REGS_UART_H__ |
| 9 | |
| 10 | #define FFUART_BASE 0x40100000 |
| 11 | #define BTUART_BASE 0x40200000 |
| 12 | #define STUART_BASE 0x40700000 |
| 13 | #define HWUART_BASE 0x41600000 |
| 14 | |
| 15 | struct pxa_uart_regs { |
| 16 | union { |
| 17 | uint32_t thr; |
| 18 | uint32_t rbr; |
| 19 | uint32_t dll; |
| 20 | }; |
| 21 | union { |
| 22 | uint32_t ier; |
| 23 | uint32_t dlh; |
| 24 | }; |
| 25 | union { |
| 26 | uint32_t fcr; |
| 27 | uint32_t iir; |
| 28 | }; |
| 29 | uint32_t lcr; |
| 30 | uint32_t mcr; |
| 31 | uint32_t lsr; |
| 32 | uint32_t msr; |
| 33 | uint32_t spr; |
| 34 | uint32_t isr; |
| 35 | }; |
| 36 | |
| 37 | #define IER_DMAE (1 << 7) |
| 38 | #define IER_UUE (1 << 6) |
| 39 | #define IER_NRZE (1 << 5) |
| 40 | #define IER_RTIOE (1 << 4) |
| 41 | #define IER_MIE (1 << 3) |
| 42 | #define IER_RLSE (1 << 2) |
| 43 | #define IER_TIE (1 << 1) |
| 44 | #define IER_RAVIE (1 << 0) |
| 45 | |
| 46 | #define IIR_FIFOES1 (1 << 7) |
| 47 | #define IIR_FIFOES0 (1 << 6) |
| 48 | #define IIR_TOD (1 << 3) |
| 49 | #define IIR_IID2 (1 << 2) |
| 50 | #define IIR_IID1 (1 << 1) |
| 51 | #define IIR_IP (1 << 0) |
| 52 | |
| 53 | #define FCR_ITL2 (1 << 7) |
| 54 | #define FCR_ITL1 (1 << 6) |
| 55 | #define FCR_RESETTF (1 << 2) |
| 56 | #define FCR_RESETRF (1 << 1) |
| 57 | #define FCR_TRFIFOE (1 << 0) |
| 58 | #define FCR_ITL_1 0 |
| 59 | #define FCR_ITL_8 (FCR_ITL1) |
| 60 | #define FCR_ITL_16 (FCR_ITL2) |
| 61 | #define FCR_ITL_32 (FCR_ITL2|FCR_ITL1) |
| 62 | |
| 63 | #define LCR_DLAB (1 << 7) |
| 64 | #define LCR_SB (1 << 6) |
| 65 | #define LCR_STKYP (1 << 5) |
| 66 | #define LCR_EPS (1 << 4) |
| 67 | #define LCR_PEN (1 << 3) |
| 68 | #define LCR_STB (1 << 2) |
| 69 | #define LCR_WLS1 (1 << 1) |
| 70 | #define LCR_WLS0 (1 << 0) |
| 71 | |
| 72 | #define LSR_FIFOE (1 << 7) |
| 73 | #define LSR_TEMT (1 << 6) |
| 74 | #define LSR_TDRQ (1 << 5) |
| 75 | #define LSR_BI (1 << 4) |
| 76 | #define LSR_FE (1 << 3) |
| 77 | #define LSR_PE (1 << 2) |
| 78 | #define LSR_OE (1 << 1) |
| 79 | #define LSR_DR (1 << 0) |
| 80 | |
| 81 | #define MCR_LOOP (1 << 4) |
| 82 | #define MCR_OUT2 (1 << 3) |
| 83 | #define MCR_OUT1 (1 << 2) |
| 84 | #define MCR_RTS (1 << 1) |
| 85 | #define MCR_DTR (1 << 0) |
| 86 | |
| 87 | #define MSR_DCD (1 << 7) |
| 88 | #define MSR_RI (1 << 6) |
| 89 | #define MSR_DSR (1 << 5) |
| 90 | #define MSR_CTS (1 << 4) |
| 91 | #define MSR_DDCD (1 << 3) |
| 92 | #define MSR_TERI (1 << 2) |
| 93 | #define MSR_DDSR (1 << 1) |
| 94 | #define MSR_DCTS (1 << 0) |
| 95 | |
| 96 | #endif /* __REGS_UART_H__ */ |