comvar.h revision 1.23 1 /* $NetBSD: comvar.h,v 1.23 1998/06/10 12:06:24 jonathan Exp $ */
2
3 /*
4 * Copyright (c) 1996 Christopher G. Demetriou. All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:
9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * 2. Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 * 3. All advertising materials mentioning features or use of this software
15 * must display the following acknowledgement:
16 * This product includes software developed by Christopher G. Demetriou
17 * for the NetBSD Project.
18 * 4. The name of the author may not be used to endorse or promote products
19 * derived from this software without specific prior written permission
20 *
21 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
22 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
23 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
24 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
25 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
26 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
30 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31 */
32
33 #include "rnd.h"
34 #if NRND > 0 && defined(RND_COM)
35 #include <sys/rnd.h>
36 #endif
37
38 int comcnattach __P((bus_space_tag_t, int, int, int, tcflag_t));
39
40 #ifdef KGDB
41 int com_kgdb_attach __P((bus_space_tag_t, int, int, int, tcflag_t));
42 #endif
43
44 int com_is_console __P((bus_space_tag_t, int, bus_space_handle_t *));
45
46 /* Hardware flag masks */
47 #define COM_HW_NOIEN 0x01
48 #define COM_HW_FIFO 0x02
49 #define COM_HW_HAYESP 0x04
50 #define COM_HW_FLOW 0x08
51 #define COM_HW_DEV_OK 0x20
52 #define COM_HW_CONSOLE 0x40
53 #define COM_HW_KGDB 0x80
54
55 /* Buffer size for character buffer */
56 #define COM_RING_SIZE 2048
57
58 struct com_softc {
59 struct device sc_dev;
60 void *sc_si;
61 struct tty *sc_tty;
62
63 int sc_iobase; /* XXX ISA-centric name */
64 int sc_frequency;
65
66 bus_space_tag_t sc_iot;
67 bus_space_handle_t sc_ioh;
68 bus_space_handle_t sc_hayespioh;
69
70 u_int sc_overflows,
71 sc_floods,
72 sc_errors;
73
74 int sc_hwflags,
75 sc_swflags;
76 u_int sc_fifolen;
77
78 u_int sc_r_hiwat,
79 sc_r_lowat;
80 u_char *volatile sc_rbget,
81 *volatile sc_rbput;
82 volatile u_int sc_rbavail;
83 u_char *sc_rbuf,
84 *sc_ebuf;
85
86 u_char *sc_tba;
87 u_int sc_tbc,
88 sc_heldtbc;
89
90 volatile u_char sc_rx_flags,
91 #define RX_TTY_BLOCKED 0x01
92 #define RX_TTY_OVERFLOWED 0x02
93 #define RX_IBUF_BLOCKED 0x04
94 #define RX_IBUF_OVERFLOWED 0x08
95 #define RX_ANY_BLOCK 0x0f
96 sc_tx_busy,
97 sc_tx_done,
98 sc_tx_stopped,
99 sc_st_check,
100 sc_rx_ready;
101
102 volatile u_char sc_heldchange;
103 volatile u_char sc_msr, sc_msr_delta, sc_msr_mask, sc_mcr,
104 sc_mcr_active, sc_lcr, sc_ier, sc_fifo, sc_dlbl, sc_dlbh, sc_efr;
105 u_char sc_mcr_dtr, sc_mcr_rts, sc_msr_cts, sc_msr_dcd;
106
107 /* power management hooks */
108 int (*enable) __P((struct com_softc *));
109 void (*disable) __P((struct com_softc *));
110 int enabled;
111
112 /* PPS signal on DCD, with or without inkernel clock disciplining */
113 int sc_ppsassertmask; /* pps signal mask */
114 int sc_ppsassert; /* pps edge mask */
115 int sc_ppsclearmask; /* pps signal mask */
116 int sc_ppsclear; /* pps edge mask */
117 pps_info_t ppsinfo;
118 pps_params_t ppsparam;
119
120 #if NRND > 0 && defined(RND_COM)
121 rndsource_element_t rnd_source;
122 #endif
123 };
124
125 /* Macros to clear/set/test flags. */
126 #define SET(t, f) (t) |= (f)
127 #define CLR(t, f) (t) &= ~(f)
128 #define ISSET(t, f) ((t) & (f))
129
130 int comprobe1 __P((bus_space_tag_t, bus_space_handle_t, int));
131 int comintr __P((void *));
132 void com_attach_subr __P((struct com_softc *));
133 int cominit __P((bus_space_tag_t, int, int, int, tcflag_t,
134 bus_space_handle_t *));
135
136 #ifndef __GENERIC_SOFT_INTERRUPTS
137 #if defined(alpha) || defined(arm32)
138 #define __NO_SOFT_SERIAL_INTERRUPT
139 #endif
140 #ifdef __NO_SOFT_SERIAL_INTERRUPT
141 #define IPL_SERIAL IPL_TTY
142 #define splserial() spltty()
143 #define IPL_SOFTSERIAL IPL_TTY
144 #define splsoftserial() spltty()
145 #endif
146 #endif
147