Merge remote-tracking branch 'spi/topic/davinci' into spi-next
[linux-2.6-block.git] / include / linux / serial_8250.h
CommitLineData
1da177e4
LT
1/*
2 * linux/include/linux/serial_8250.h
3 *
4 * Copyright (C) 2004 Russell King
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 */
11#ifndef _LINUX_SERIAL_8250_H
12#define _LINUX_SERIAL_8250_H
13
14#include <linux/serial_core.h>
34d2e458 15#include <linux/serial_reg.h>
d052d1be 16#include <linux/platform_device.h>
1da177e4 17
bc49a661
RK
18/*
19 * This is the platform device platform_data structure
20 */
1da177e4
LT
21struct plat_serial8250_port {
22 unsigned long iobase; /* io base address */
23 void __iomem *membase; /* ioremap cookie or NULL */
4f640efb 24 resource_size_t mapbase; /* resource base */
1da177e4 25 unsigned int irq; /* interrupt number */
1c2f0493 26 unsigned long irqflags; /* request_irq flags */
1da177e4 27 unsigned int uartclk; /* UART clock rate */
74a19741 28 void *private_data;
1da177e4
LT
29 unsigned char regshift; /* register shift */
30 unsigned char iotype; /* UPIO_* */
ec9f47cd 31 unsigned char hub6;
0077d45e 32 upf_t flags; /* UPF_* flags */
8e23fcc8 33 unsigned int type; /* If UPF_FIXED_TYPE */
7d6a07d1
DD
34 unsigned int (*serial_in)(struct uart_port *, int);
35 void (*serial_out)(struct uart_port *, int, int);
235dae5d
PL
36 void (*set_termios)(struct uart_port *,
37 struct ktermios *new,
38 struct ktermios *old);
583d28e9 39 int (*handle_irq)(struct uart_port *);
c161afe9
ML
40 void (*pm)(struct uart_port *, unsigned int state,
41 unsigned old);
bf03f65b 42 void (*handle_break)(struct uart_port *);
1da177e4
LT
43};
44
6df29deb
RK
45/*
46 * Allocate 8250 platform device IDs. Nothing is implied by
47 * the numbering here, except for the legacy entry being -1.
48 */
49enum {
50 PLAT8250_DEV_LEGACY = -1,
51 PLAT8250_DEV_PLATFORM,
52 PLAT8250_DEV_PLATFORM1,
104c7b03 53 PLAT8250_DEV_PLATFORM2,
6df29deb
RK
54 PLAT8250_DEV_FOURPORT,
55 PLAT8250_DEV_ACCENT,
56 PLAT8250_DEV_BOCA,
e0980daf 57 PLAT8250_DEV_EXAR_ST16C554,
6df29deb 58 PLAT8250_DEV_HUB6,
21c614a7 59 PLAT8250_DEV_AU1X00,
61711f8f 60 PLAT8250_DEV_SM501,
6df29deb
RK
61};
62
9ee4b83e 63struct uart_8250_dma;
a4416cd1
PH
64struct uart_8250_port;
65
66/**
67 * 8250 core driver operations
68 *
69 * @setup_irq() Setup irq handling. The universal 8250 driver links this
70 * port to the irq chain. Other drivers may @request_irq().
71 * @release_irq() Undo irq handling. The universal 8250 driver unlinks
72 * the port from the irq chain.
73 */
74struct uart_8250_ops {
75 int (*setup_irq)(struct uart_8250_port *);
76 void (*release_irq)(struct uart_8250_port *);
77};
9ee4b83e 78
bc49a661
RK
79/*
80 * This should be used by drivers which want to register
81 * their own 8250 ports without registering their own
82 * platform device. Using these will make your driver
83 * dependent on the 8250 driver.
84 */
ce7240e4
AC
85
86struct uart_8250_port {
87 struct uart_port port;
88 struct timer_list timer; /* "no irq" timer */
89 struct list_head list; /* ports on this IRQ */
90 unsigned short capabilities; /* port capabilities */
91 unsigned short bugs; /* port bugs */
aef9a7bd 92 bool fifo_bug; /* min RX trigger if enabled */
ce7240e4
AC
93 unsigned int tx_loadsz; /* transmit fifo load size */
94 unsigned char acr;
aef9a7bd 95 unsigned char fcr;
ce7240e4
AC
96 unsigned char ier;
97 unsigned char lcr;
98 unsigned char mcr;
99 unsigned char mcr_mask; /* mask of user bits */
100 unsigned char mcr_force; /* mask of forced bits */
101 unsigned char cur_iotype; /* Running I/O type */
baeb7ef3 102 unsigned int rpm_tx_active;
4516d50a
PH
103 unsigned char canary; /* non-zero during system sleep
104 * if no_console_suspend
105 */
40375393
PH
106 unsigned char probe;
107#define UART_PROBE_RSA (1 << 0)
ce7240e4
AC
108
109 /*
110 * Some bits in registers are cleared on a read, so they must
111 * be saved whenever the register is read but the bits will not
112 * be immediately processed.
113 */
114#define LSR_SAVE_FLAGS UART_LSR_BRK_ERROR_BITS
115 unsigned char lsr_saved_flags;
116#define MSR_SAVE_FLAGS UART_MSR_ANY_DELTA
117 unsigned char msr_saved_flags;
118
9ee4b83e 119 struct uart_8250_dma *dma;
a4416cd1 120 const struct uart_8250_ops *ops;
9ee4b83e 121
ce7240e4
AC
122 /* 8250 specific callbacks */
123 int (*dl_read)(struct uart_8250_port *);
124 void (*dl_write)(struct uart_8250_port *, int);
125};
bc49a661 126
b1261c86
AS
127static inline struct uart_8250_port *up_to_u8250p(struct uart_port *up)
128{
129 return container_of(up, struct uart_8250_port, port);
130}
131
f73fa05b 132int serial8250_register_8250_port(struct uart_8250_port *);
bc49a661
RK
133void serial8250_unregister_port(int line);
134void serial8250_suspend_port(int line);
135void serial8250_resume_port(int line);
136
b187f180
YL
137extern int early_serial_setup(struct uart_port *port);
138
1c5841e8
EH
139extern int early_serial8250_setup(struct earlycon_device *device,
140 const char *options);
235dae5d
PL
141extern void serial8250_do_set_termios(struct uart_port *port,
142 struct ktermios *termios, struct ktermios *old);
b99b121b
SAS
143extern int serial8250_do_startup(struct uart_port *port);
144extern void serial8250_do_shutdown(struct uart_port *port);
c161afe9
ML
145extern void serial8250_do_pm(struct uart_port *port, unsigned int state,
146 unsigned int oldstate);
4bf4ea9d 147extern void serial8250_do_set_mctrl(struct uart_port *port, unsigned int mctrl);
9deaa53a 148extern int fsl8250_handle_irq(struct uart_port *port);
583d28e9 149int serial8250_handle_irq(struct uart_port *port, unsigned int iir);
3986fb2b
PG
150unsigned char serial8250_rx_chars(struct uart_8250_port *up, unsigned char lsr);
151void serial8250_tx_chars(struct uart_8250_port *up);
152unsigned int serial8250_modem_status(struct uart_8250_port *up);
b6830f6d
PH
153void serial8250_init_port(struct uart_8250_port *up);
154void serial8250_set_defaults(struct uart_8250_port *up);
155void serial8250_console_write(struct uart_8250_port *up, const char *s,
156 unsigned int count);
157int serial8250_console_setup(struct uart_port *port, char *options, bool probe);
18a8bd94 158
af7f3743
AC
159extern void serial8250_set_isa_configurator(void (*v)
160 (int port, struct uart_port *up,
161 unsigned short *capabilities));
162
1da177e4 163#endif