serial: 8250_dma: add timer for dma receive
[firefly-linux-kernel-4.4.55.git] / drivers / tty / serial / 8250 / 8250.h
1 /*
2  *  Driver for 8250/16550-type serial ports
3  *
4  *  Based on drivers/char/serial.c, by Linus Torvalds, Theodore Ts'o.
5  *
6  *  Copyright (C) 2001 Russell King.
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  */
13
14 #include <linux/serial_8250.h>
15 #include <linux/serial_reg.h>
16 #include <linux/dmaengine.h>
17
18 struct uart_8250_dma {
19         int (*tx_dma)(struct uart_8250_port *p);
20         int (*rx_dma)(struct uart_8250_port *p, unsigned int iir);
21
22         /* Filter function */
23         dma_filter_fn           fn;
24         /* Parameter to the filter function */
25         void                    *rx_param;
26         void                    *tx_param;
27
28         struct dma_slave_config rxconf;
29         struct dma_slave_config txconf;
30
31         struct dma_chan         *rxchan;
32         struct dma_chan         *txchan;
33
34         dma_addr_t              rx_addr;
35         dma_addr_t              tx_addr;
36
37         dma_cookie_t            rx_cookie;
38         dma_cookie_t            tx_cookie;
39
40         void                    *rx_buf;
41
42         size_t                  rx_size;
43         size_t                  tx_size;
44
45         unsigned char           tx_running;
46         unsigned char           tx_err;
47         unsigned char           rx_running;
48
49         size_t                  rx_index;
50         struct timer_list       dma_rx_timer;
51 };
52
53 struct old_serial_port {
54         unsigned int uart;
55         unsigned int baud_base;
56         unsigned int port;
57         unsigned int irq;
58         upf_t        flags;
59         unsigned char hub6;
60         unsigned char io_type;
61         unsigned char __iomem *iomem_base;
62         unsigned short iomem_reg_shift;
63         unsigned long irqflags;
64 };
65
66 struct serial8250_config {
67         const char      *name;
68         unsigned short  fifo_size;
69         unsigned short  tx_loadsz;
70         unsigned char   fcr;
71         unsigned char   rxtrig_bytes[UART_FCR_R_TRIG_MAX_STATE];
72         unsigned int    flags;
73 };
74
75 #define UART_CAP_FIFO   (1 << 8)        /* UART has FIFO */
76 #define UART_CAP_EFR    (1 << 9)        /* UART has EFR */
77 #define UART_CAP_SLEEP  (1 << 10)       /* UART has IER sleep */
78 #define UART_CAP_AFE    (1 << 11)       /* MCR-based hw flow control */
79 #define UART_CAP_UUE    (1 << 12)       /* UART needs IER bit 6 set (Xscale) */
80 #define UART_CAP_RTOIE  (1 << 13)       /* UART needs IER bit 4 set (Xscale, Tegra) */
81 #define UART_CAP_HFIFO  (1 << 14)       /* UART has a "hidden" FIFO */
82 #define UART_CAP_RPM    (1 << 15)       /* Runtime PM is active while idle */
83
84 #define UART_BUG_QUOT   (1 << 0)        /* UART has buggy quot LSB */
85 #define UART_BUG_TXEN   (1 << 1)        /* UART has buggy TX IIR status */
86 #define UART_BUG_NOMSR  (1 << 2)        /* UART has buggy MSR status bits (Au1x00) */
87 #define UART_BUG_THRE   (1 << 3)        /* UART has buggy THRE reassertion */
88 #define UART_BUG_PARITY (1 << 4)        /* UART mishandles parity if FIFO enabled */
89
90 #define HIGH_BITS_OFFSET ((sizeof(long)-sizeof(int))*8)
91
92 #ifdef CONFIG_SERIAL_8250_SHARE_IRQ
93 #define SERIAL8250_SHARE_IRQS 1
94 #else
95 #define SERIAL8250_SHARE_IRQS 0
96 #endif
97
98 static inline int serial_in(struct uart_8250_port *up, int offset)
99 {
100         return up->port.serial_in(&up->port, offset);
101 }
102
103 static inline void serial_out(struct uart_8250_port *up, int offset, int value)
104 {
105         up->port.serial_out(&up->port, offset, value);
106 }
107
108 void serial8250_clear_and_reinit_fifos(struct uart_8250_port *p);
109
110 static inline int serial_dl_read(struct uart_8250_port *up)
111 {
112         return up->dl_read(up);
113 }
114
115 static inline void serial_dl_write(struct uart_8250_port *up, int value)
116 {
117         up->dl_write(up, value);
118 }
119
120 struct uart_8250_port *serial8250_get_port(int line);
121 void serial8250_rpm_get(struct uart_8250_port *p);
122 void serial8250_rpm_put(struct uart_8250_port *p);
123
124 #if defined(__alpha__) && !defined(CONFIG_PCI)
125 /*
126  * Digital did something really horribly wrong with the OUT1 and OUT2
127  * lines on at least some ALPHA's.  The failure mode is that if either
128  * is cleared, the machine locks up with endless interrupts.
129  */
130 #define ALPHA_KLUDGE_MCR  (UART_MCR_OUT2 | UART_MCR_OUT1)
131 #else
132 #define ALPHA_KLUDGE_MCR 0
133 #endif
134
135 #ifdef CONFIG_SERIAL_8250_PNP
136 int serial8250_pnp_init(void);
137 void serial8250_pnp_exit(void);
138 #else
139 static inline int serial8250_pnp_init(void) { return 0; }
140 static inline void serial8250_pnp_exit(void) { }
141 #endif
142
143 #ifdef CONFIG_ARCH_OMAP1
144 static inline int is_omap1_8250(struct uart_8250_port *pt)
145 {
146         int res;
147
148         switch (pt->port.mapbase) {
149         case OMAP1_UART1_BASE:
150         case OMAP1_UART2_BASE:
151         case OMAP1_UART3_BASE:
152                 res = 1;
153                 break;
154         default:
155                 res = 0;
156                 break;
157         }
158
159         return res;
160 }
161
162 static inline int is_omap1510_8250(struct uart_8250_port *pt)
163 {
164         if (!cpu_is_omap1510())
165                 return 0;
166
167         return is_omap1_8250(pt);
168 }
169 #else
170 static inline int is_omap1_8250(struct uart_8250_port *pt)
171 {
172         return 0;
173 }
174 static inline int is_omap1510_8250(struct uart_8250_port *pt)
175 {
176         return 0;
177 }
178 #endif
179
180 #ifdef CONFIG_SERIAL_8250_DMA
181 extern int serial8250_tx_dma(struct uart_8250_port *);
182 extern int serial8250_rx_dma(struct uart_8250_port *, unsigned int iir);
183 extern int serial8250_request_dma(struct uart_8250_port *);
184 extern void serial8250_release_dma(struct uart_8250_port *);
185 #else
186 static inline int serial8250_tx_dma(struct uart_8250_port *p)
187 {
188         return -1;
189 }
190 static inline int serial8250_rx_dma(struct uart_8250_port *p, unsigned int iir)
191 {
192         return -1;
193 }
194 static inline int serial8250_request_dma(struct uart_8250_port *p)
195 {
196         return -1;
197 }
198 static inline void serial8250_release_dma(struct uart_8250_port *p) { }
199 #endif
200
201 static inline int ns16550a_goto_highspeed(struct uart_8250_port *up)
202 {
203         unsigned char status;
204
205         status = serial_in(up, 0x04); /* EXCR2 */
206 #define PRESL(x) ((x) & 0x30)
207         if (PRESL(status) == 0x10) {
208                 /* already in high speed mode */
209                 return 0;
210         } else {
211                 status &= ~0xB0; /* Disable LOCK, mask out PRESL[01] */
212                 status |= 0x10;  /* 1.625 divisor for baud_base --> 921600 */
213                 serial_out(up, 0x04, status);
214         }
215         return 1;
216 }
217
218 static inline int serial_index(struct uart_port *port)
219 {
220         return port->minor - 64;
221 }
222
223 #if 0
224 #define DEBUG_INTR(fmt...)      printk(fmt)
225 #else
226 #define DEBUG_INTR(fmt...)      do { } while (0)
227 #endif