2 * Private header file for the (dumb) serial driver
4 * Copyright (C) 1997 by Theodore Ts'o.
6 * Redistribution of this file is permitted under the terms of the GNU
10 #ifndef _LINUX_SERIALP_H
11 #define _LINUX_SERIALP_H
14 * This is our internal structure for each serial port's state.
16 * Many fields are paralleled by the structure used by the serial_struct
19 * For definitions of the flags field, see tty.h
22 #include <linux/version.h>
23 #include <linux/config.h>
24 #include <linux/termios.h>
25 #include <linux/workqueue.h>
26 #include <linux/interrupt.h>
27 #include <linux/circ_buf.h>
28 #include <linux/wait.h>
39 int revision
; /* Chip revision (950) */
45 unsigned short close_delay
;
46 unsigned short closing_wait
; /* time to wait before closing */
47 struct async_icount icount
;
49 struct async_struct
*info
;
59 struct serial_state
*state
;
60 struct tty_struct
*tty
;
62 int ignore_status_mask
;
65 int x_char
; /* xon/xoff character */
67 unsigned short closing_wait
;
68 unsigned short closing_wait2
; /* obsolete */
69 int IER
; /* Interrupt Enable Register */
70 int MCR
; /* Modem control register */
71 int LCR
; /* Line control register */
72 int ACR
; /* 16950 Additional Control Reg. */
74 unsigned long last_active
;
76 int blocked_open
; /* # of blocked opens */
82 struct work_struct work
;
83 struct tasklet_struct tlet
;
84 #ifdef DECLARE_WAITQUEUE
85 wait_queue_head_t open_wait
;
86 wait_queue_head_t close_wait
;
87 wait_queue_head_t delta_msr_wait
;
89 struct wait_queue
*open_wait
;
90 struct wait_queue
*close_wait
;
91 struct wait_queue
*delta_msr_wait
;
93 struct async_struct
*next_port
; /* For the linked list */
94 struct async_struct
*prev_port
;
97 #define CONFIGURED_SERIAL_PORT(info) ((info)->port || ((info)->iomem_base))
99 #define SERIAL_MAGIC 0x5301
100 #define SSTATE_MAGIC 0x5302
103 * Events are used to schedule things to happen at timer-interrupt
104 * time, instead of at rs interrupt time.
106 #define RS_EVENT_WRITE_WAKEUP 0
109 * Multiport serial configuration structure --- internal structure
111 struct rs_multiport_struct
{
113 unsigned char mask1
, match1
;
115 unsigned char mask2
, match2
;
117 unsigned char mask3
, match3
;
119 unsigned char mask4
, match4
;
123 #if defined(__alpha__) && !defined(CONFIG_PCI)
125 * Digital did something really horribly wrong with the OUT1 and OUT2
126 * lines on at least some ALPHA's. The failure mode is that if either
127 * is cleared, the machine locks up with endless interrupts.
129 * This is still used by arch/mips/au1000/common/serial.c for some weird
130 * reason (mips != alpha!)
132 #define ALPHA_KLUDGE_MCR (UART_MCR_OUT2 | UART_MCR_OUT1)
133 #elif defined(CONFIG_SBC8560)
135 * WindRiver did something similarly broken on their SBC8560 board. The
136 * UART tristates its IRQ output while OUT2 is clear, but they pulled
137 * the interrupt line _up_ instead of down, so if we register the IRQ
138 * while the UART is in that state, we die in an IRQ storm. */
139 #define ALPHA_KLUDGE_MCR (UART_MCR_OUT2)
141 #define ALPHA_KLUDGE_MCR 0
145 * Definitions for PCI support.
147 #define SPCI_FL_BASE_MASK 0x0007
148 #define SPCI_FL_BASE0 0x0000
149 #define SPCI_FL_BASE1 0x0001
150 #define SPCI_FL_BASE2 0x0002
151 #define SPCI_FL_BASE3 0x0003
152 #define SPCI_FL_BASE4 0x0004
153 #define SPCI_FL_GET_BASE(x) (x & SPCI_FL_BASE_MASK)
155 #define SPCI_FL_IRQ_MASK (0x0007 << 4)
156 #define SPCI_FL_IRQBASE0 (0x0000 << 4)
157 #define SPCI_FL_IRQBASE1 (0x0001 << 4)
158 #define SPCI_FL_IRQBASE2 (0x0002 << 4)
159 #define SPCI_FL_IRQBASE3 (0x0003 << 4)
160 #define SPCI_FL_IRQBASE4 (0x0004 << 4)
161 #define SPCI_FL_GET_IRQBASE(x) ((x & SPCI_FL_IRQ_MASK) >> 4)
163 /* Use successive BARs (PCI base address registers),
164 else use offset into some specified BAR */
165 #define SPCI_FL_BASE_TABLE 0x0100
167 /* Use successive entries in the irq resource table */
168 #define SPCI_FL_IRQ_TABLE 0x0200
170 /* Use the irq resource table instead of dev->irq */
171 #define SPCI_FL_IRQRESOURCE 0x0400
173 /* Use the Base address register size to cap number of ports */
174 #define SPCI_FL_REGION_SZ_CAP 0x0800
176 /* Do not use irq sharing for this device */
177 #define SPCI_FL_NO_SHIRQ 0x1000
179 /* This is a PNP device */
180 #define SPCI_FL_ISPNP 0x2000
182 #define SPCI_FL_PNPDEFAULT (SPCI_FL_IRQRESOURCE|SPCI_FL_ISPNP)
184 #endif /* _LINUX_SERIAL_H */