Merge 6.4-rc5 into tty-next
[linux-2.6-block.git] / drivers / tty / serial / 8250 / 8250.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  *  Driver for 8250/16550-type serial ports
4  *
5  *  Based on drivers/char/serial.c, by Linus Torvalds, Theodore Ts'o.
6  *
7  *  Copyright (C) 2001 Russell King.
8  */
9
10 #include <linux/bits.h>
11 #include <linux/serial_8250.h>
12 #include <linux/serial_reg.h>
13 #include <linux/dmaengine.h>
14
15 #include "../serial_mctrl_gpio.h"
16
17 struct uart_8250_dma {
18         int (*tx_dma)(struct uart_8250_port *p);
19         int (*rx_dma)(struct uart_8250_port *p);
20         void (*prepare_tx_dma)(struct uart_8250_port *p);
21         void (*prepare_rx_dma)(struct uart_8250_port *p);
22
23         /* Filter function */
24         dma_filter_fn           fn;
25         /* Parameter to the filter function */
26         void                    *rx_param;
27         void                    *tx_param;
28
29         struct dma_slave_config rxconf;
30         struct dma_slave_config txconf;
31
32         struct dma_chan         *rxchan;
33         struct dma_chan         *txchan;
34
35         /* Device address base for DMA operations */
36         phys_addr_t             rx_dma_addr;
37         phys_addr_t             tx_dma_addr;
38
39         /* DMA address of the buffer in memory */
40         dma_addr_t              rx_addr;
41         dma_addr_t              tx_addr;
42
43         dma_cookie_t            rx_cookie;
44         dma_cookie_t            tx_cookie;
45
46         void                    *rx_buf;
47
48         size_t                  rx_size;
49         size_t                  tx_size;
50
51         unsigned char           tx_running;
52         unsigned char           tx_err;
53         unsigned char           rx_running;
54 };
55
56 struct old_serial_port {
57         unsigned int uart;
58         unsigned int baud_base;
59         unsigned int port;
60         unsigned int irq;
61         upf_t        flags;
62         unsigned char io_type;
63         unsigned char __iomem *iomem_base;
64         unsigned short iomem_reg_shift;
65 };
66
67 struct serial8250_config {
68         const char      *name;
69         unsigned short  fifo_size;
70         unsigned short  tx_loadsz;
71         unsigned char   fcr;
72         unsigned char   rxtrig_bytes[UART_FCR_R_TRIG_MAX_STATE];
73         unsigned int    flags;
74 };
75
76 #define UART_CAP_FIFO   BIT(8)  /* UART has FIFO */
77 #define UART_CAP_EFR    BIT(9)  /* UART has EFR */
78 #define UART_CAP_SLEEP  BIT(10) /* UART has IER sleep */
79 #define UART_CAP_AFE    BIT(11) /* MCR-based hw flow control */
80 #define UART_CAP_UUE    BIT(12) /* UART needs IER bit 6 set (Xscale) */
81 #define UART_CAP_RTOIE  BIT(13) /* UART needs IER bit 4 set (Xscale, Tegra) */
82 #define UART_CAP_HFIFO  BIT(14) /* UART has a "hidden" FIFO */
83 #define UART_CAP_RPM    BIT(15) /* Runtime PM is active while idle */
84 #define UART_CAP_IRDA   BIT(16) /* UART supports IrDA line discipline */
85 #define UART_CAP_MINI   BIT(17) /* Mini UART on BCM283X family lacks:
86                                          * STOP PARITY EPAR SPAR WLEN5 WLEN6
87                                          */
88 #define UART_CAP_NOTEMT BIT(18) /* UART without interrupt on TEMT available */
89
90 #define UART_BUG_QUOT   BIT(0)  /* UART has buggy quot LSB */
91 #define UART_BUG_TXEN   BIT(1)  /* UART has buggy TX IIR status */
92 #define UART_BUG_NOMSR  BIT(2)  /* UART has buggy MSR status bits (Au1x00) */
93 #define UART_BUG_THRE   BIT(3)  /* UART has buggy THRE reassertion */
94 #define UART_BUG_PARITY BIT(4)  /* UART mishandles parity if FIFO enabled */
95 #define UART_BUG_TXRACE BIT(5)  /* UART Tx fails to set remote DR */
96
97
98 #ifdef CONFIG_SERIAL_8250_SHARE_IRQ
99 #define SERIAL8250_SHARE_IRQS 1
100 #else
101 #define SERIAL8250_SHARE_IRQS 0
102 #endif
103
104 #define SERIAL8250_PORT_FLAGS(_base, _irq, _flags)              \
105         {                                                       \
106                 .iobase         = _base,                        \
107                 .irq            = _irq,                         \
108                 .uartclk        = 1843200,                      \
109                 .iotype         = UPIO_PORT,                    \
110                 .flags          = UPF_BOOT_AUTOCONF | (_flags), \
111         }
112
113 #define SERIAL8250_PORT(_base, _irq) SERIAL8250_PORT_FLAGS(_base, _irq, 0)
114
115
116 static inline int serial_in(struct uart_8250_port *up, int offset)
117 {
118         return up->port.serial_in(&up->port, offset);
119 }
120
121 static inline void serial_out(struct uart_8250_port *up, int offset, int value)
122 {
123         up->port.serial_out(&up->port, offset, value);
124 }
125
126 /**
127  *      serial_lsr_in - Read LSR register and preserve flags across reads
128  *      @up:    uart 8250 port
129  *
130  *      Read LSR register and handle saving non-preserved flags across reads.
131  *      The flags that are not preserved across reads are stored into
132  *      up->lsr_saved_flags.
133  *
134  *      Returns LSR value or'ed with the preserved flags (if any).
135  */
136 static inline u16 serial_lsr_in(struct uart_8250_port *up)
137 {
138         u16 lsr = up->lsr_saved_flags;
139
140         lsr |= serial_in(up, UART_LSR);
141         up->lsr_saved_flags = lsr & up->lsr_save_mask;
142
143         return lsr;
144 }
145
146 /*
147  * For the 16C950
148  */
149 static void serial_icr_write(struct uart_8250_port *up, int offset, int value)
150 {
151         serial_out(up, UART_SCR, offset);
152         serial_out(up, UART_ICR, value);
153 }
154
155 static unsigned int __maybe_unused serial_icr_read(struct uart_8250_port *up,
156                                                    int offset)
157 {
158         unsigned int value;
159
160         serial_icr_write(up, UART_ACR, up->acr | UART_ACR_ICRRD);
161         serial_out(up, UART_SCR, offset);
162         value = serial_in(up, UART_ICR);
163         serial_icr_write(up, UART_ACR, up->acr);
164
165         return value;
166 }
167
168 void serial8250_clear_and_reinit_fifos(struct uart_8250_port *p);
169
170 static inline u32 serial_dl_read(struct uart_8250_port *up)
171 {
172         return up->dl_read(up);
173 }
174
175 static inline void serial_dl_write(struct uart_8250_port *up, u32 value)
176 {
177         up->dl_write(up, value);
178 }
179
180 static inline bool serial8250_set_THRI(struct uart_8250_port *up)
181 {
182         /* Port locked to synchronize UART_IER access against the console. */
183         lockdep_assert_held_once(&up->port.lock);
184
185         if (up->ier & UART_IER_THRI)
186                 return false;
187         up->ier |= UART_IER_THRI;
188         serial_out(up, UART_IER, up->ier);
189         return true;
190 }
191
192 static inline bool serial8250_clear_THRI(struct uart_8250_port *up)
193 {
194         /* Port locked to synchronize UART_IER access against the console. */
195         lockdep_assert_held_once(&up->port.lock);
196
197         if (!(up->ier & UART_IER_THRI))
198                 return false;
199         up->ier &= ~UART_IER_THRI;
200         serial_out(up, UART_IER, up->ier);
201         return true;
202 }
203
204 struct uart_8250_port *serial8250_get_port(int line);
205
206 void serial8250_rpm_get(struct uart_8250_port *p);
207 void serial8250_rpm_put(struct uart_8250_port *p);
208
209 void serial8250_rpm_get_tx(struct uart_8250_port *p);
210 void serial8250_rpm_put_tx(struct uart_8250_port *p);
211
212 int serial8250_em485_config(struct uart_port *port, struct ktermios *termios,
213                             struct serial_rs485 *rs485);
214 void serial8250_em485_start_tx(struct uart_8250_port *p);
215 void serial8250_em485_stop_tx(struct uart_8250_port *p);
216 void serial8250_em485_destroy(struct uart_8250_port *p);
217 extern struct serial_rs485 serial8250_em485_supported;
218
219 /* MCR <-> TIOCM conversion */
220 static inline int serial8250_TIOCM_to_MCR(int tiocm)
221 {
222         int mcr = 0;
223
224         if (tiocm & TIOCM_RTS)
225                 mcr |= UART_MCR_RTS;
226         if (tiocm & TIOCM_DTR)
227                 mcr |= UART_MCR_DTR;
228         if (tiocm & TIOCM_OUT1)
229                 mcr |= UART_MCR_OUT1;
230         if (tiocm & TIOCM_OUT2)
231                 mcr |= UART_MCR_OUT2;
232         if (tiocm & TIOCM_LOOP)
233                 mcr |= UART_MCR_LOOP;
234
235         return mcr;
236 }
237
238 static inline int serial8250_MCR_to_TIOCM(int mcr)
239 {
240         int tiocm = 0;
241
242         if (mcr & UART_MCR_RTS)
243                 tiocm |= TIOCM_RTS;
244         if (mcr & UART_MCR_DTR)
245                 tiocm |= TIOCM_DTR;
246         if (mcr & UART_MCR_OUT1)
247                 tiocm |= TIOCM_OUT1;
248         if (mcr & UART_MCR_OUT2)
249                 tiocm |= TIOCM_OUT2;
250         if (mcr & UART_MCR_LOOP)
251                 tiocm |= TIOCM_LOOP;
252
253         return tiocm;
254 }
255
256 /* MSR <-> TIOCM conversion */
257 static inline int serial8250_MSR_to_TIOCM(int msr)
258 {
259         int tiocm = 0;
260
261         if (msr & UART_MSR_DCD)
262                 tiocm |= TIOCM_CAR;
263         if (msr & UART_MSR_RI)
264                 tiocm |= TIOCM_RNG;
265         if (msr & UART_MSR_DSR)
266                 tiocm |= TIOCM_DSR;
267         if (msr & UART_MSR_CTS)
268                 tiocm |= TIOCM_CTS;
269
270         return tiocm;
271 }
272
273 static inline void serial8250_out_MCR(struct uart_8250_port *up, int value)
274 {
275         serial_out(up, UART_MCR, value);
276
277         if (up->gpios)
278                 mctrl_gpio_set(up->gpios, serial8250_MCR_to_TIOCM(value));
279 }
280
281 static inline int serial8250_in_MCR(struct uart_8250_port *up)
282 {
283         int mctrl;
284
285         mctrl = serial_in(up, UART_MCR);
286
287         if (up->gpios) {
288                 unsigned int mctrl_gpio = 0;
289
290                 mctrl_gpio = mctrl_gpio_get_outputs(up->gpios, &mctrl_gpio);
291                 mctrl |= serial8250_TIOCM_to_MCR(mctrl_gpio);
292         }
293
294         return mctrl;
295 }
296
297 bool alpha_jensen(void);
298 void alpha_jensen_set_mctrl(struct uart_port *port, unsigned int mctrl);
299
300 #ifdef CONFIG_SERIAL_8250_PNP
301 int serial8250_pnp_init(void);
302 void serial8250_pnp_exit(void);
303 #else
304 static inline int serial8250_pnp_init(void) { return 0; }
305 static inline void serial8250_pnp_exit(void) { }
306 #endif
307
308 #ifdef CONFIG_SERIAL_8250_FINTEK
309 int fintek_8250_probe(struct uart_8250_port *uart);
310 #else
311 static inline int fintek_8250_probe(struct uart_8250_port *uart) { return 0; }
312 #endif
313
314 #ifdef CONFIG_ARCH_OMAP1
315 #include <linux/soc/ti/omap1-soc.h>
316 static inline int is_omap1_8250(struct uart_8250_port *pt)
317 {
318         int res;
319
320         switch (pt->port.mapbase) {
321         case OMAP1_UART1_BASE:
322         case OMAP1_UART2_BASE:
323         case OMAP1_UART3_BASE:
324                 res = 1;
325                 break;
326         default:
327                 res = 0;
328                 break;
329         }
330
331         return res;
332 }
333
334 static inline int is_omap1510_8250(struct uart_8250_port *pt)
335 {
336         if (!cpu_is_omap1510())
337                 return 0;
338
339         return is_omap1_8250(pt);
340 }
341 #else
342 static inline int is_omap1_8250(struct uart_8250_port *pt)
343 {
344         return 0;
345 }
346 static inline int is_omap1510_8250(struct uart_8250_port *pt)
347 {
348         return 0;
349 }
350 #endif
351
352 #ifdef CONFIG_SERIAL_8250_DMA
353 extern int serial8250_tx_dma(struct uart_8250_port *);
354 extern int serial8250_rx_dma(struct uart_8250_port *);
355 extern void serial8250_rx_dma_flush(struct uart_8250_port *);
356 extern int serial8250_request_dma(struct uart_8250_port *);
357 extern void serial8250_release_dma(struct uart_8250_port *);
358
359 static inline void serial8250_do_prepare_tx_dma(struct uart_8250_port *p)
360 {
361         struct uart_8250_dma *dma = p->dma;
362
363         if (dma->prepare_tx_dma)
364                 dma->prepare_tx_dma(p);
365 }
366
367 static inline void serial8250_do_prepare_rx_dma(struct uart_8250_port *p)
368 {
369         struct uart_8250_dma *dma = p->dma;
370
371         if (dma->prepare_rx_dma)
372                 dma->prepare_rx_dma(p);
373 }
374
375 static inline bool serial8250_tx_dma_running(struct uart_8250_port *p)
376 {
377         struct uart_8250_dma *dma = p->dma;
378
379         return dma && dma->tx_running;
380 }
381 #else
382 static inline int serial8250_tx_dma(struct uart_8250_port *p)
383 {
384         return -1;
385 }
386 static inline int serial8250_rx_dma(struct uart_8250_port *p)
387 {
388         return -1;
389 }
390 static inline void serial8250_rx_dma_flush(struct uart_8250_port *p) { }
391 static inline int serial8250_request_dma(struct uart_8250_port *p)
392 {
393         return -1;
394 }
395 static inline void serial8250_release_dma(struct uart_8250_port *p) { }
396
397 static inline bool serial8250_tx_dma_running(struct uart_8250_port *p)
398 {
399         return false;
400 }
401 #endif
402
403 static inline int ns16550a_goto_highspeed(struct uart_8250_port *up)
404 {
405         unsigned char status;
406
407         status = serial_in(up, 0x04); /* EXCR2 */
408 #define PRESL(x) ((x) & 0x30)
409         if (PRESL(status) == 0x10) {
410                 /* already in high speed mode */
411                 return 0;
412         } else {
413                 status &= ~0xB0; /* Disable LOCK, mask out PRESL[01] */
414                 status |= 0x10;  /* 1.625 divisor for baud_base --> 921600 */
415                 serial_out(up, 0x04, status);
416         }
417         return 1;
418 }
419
420 static inline int serial_index(struct uart_port *port)
421 {
422         return port->minor - 64;
423 }