tcp: Cache align ACK queue header.
[dragonfly.git] / sys / sys / cons.h
blob18c258d88fa5fc21ca7a6eeb7d715f13c2fc01df
1 /*
2 * Copyright (c) 1988 University of Utah.
3 * Copyright (c) 1991 The Regents of the University of California.
4 * All rights reserved.
6 * This code is derived from software contributed to Berkeley by
7 * the Systems Programming Group of the University of Utah Computer
8 * Science Department.
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
12 * are met:
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
18 * 3. Neither the name of the University nor the names of its contributors
19 * may be used to endorse or promote products derived from this software
20 * without specific prior written permission.
22 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
23 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
26 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 * SUCH DAMAGE.
34 * from: @(#)cons.h 7.2 (Berkeley) 5/9/91
35 * $FreeBSD: src/sys/sys/cons.h,v 1.24 2000/01/11 14:54:01 yokota Exp $
38 #ifndef _SYS_CONS_H_
39 #define _SYS_CONS_H_
41 #ifndef _SYS_TYPES_H_
42 #include <sys/types.h>
43 #endif
45 struct consdev;
47 typedef void cn_probe_t (struct consdev *);
48 typedef void cn_init_t (struct consdev *);
49 typedef void cn_init_fini_t (struct consdev *);
50 typedef void cn_term_t (struct consdev *);
51 typedef int cn_getc_t (void *);
52 typedef int cn_checkc_t (void *);
53 typedef void cn_putc_t (void *, int);
54 typedef void cn_dbctl_t (void *, int);
55 typedef void cn_poll_t (void *, int);
57 struct consdev {
58 cn_probe_t *cn_probe; /* probe hardware */
59 cn_init_t *cn_init; /* initialize for use */
60 cn_init_fini_t *cn_init_fini; /* tie in cdev_t */
61 cn_term_t *cn_term; /* terminate use as console */
62 cn_getc_t *cn_getc; /* kernel getchar interface */
63 cn_checkc_t *cn_checkc; /* kernel test char ready */
64 cn_putc_t *cn_putc; /* kernel putchar interface */
65 cn_dbctl_t *cn_dbctl; /* debugger control interface */
66 cn_poll_t *cn_poll; /* polling mode control */
67 struct tty *cn_tp; /* tty structure for console device */
68 cdev_t cn_dev; /* device after cn_init_fini tie-in */
69 short cn_pri; /* pecking order; the higher the better */
70 short cn_probegood; /* probe routine must set to non-zero */
71 void *cn_private; /* private data for get/check/put/dbctl */
72 void *cn_gdbprivate; /* private data for gdb */
73 int cn_unit; /* some drivers prefer this */
74 int cn_flags; /* capabilities of this console */
75 //char cn_name[SPECNAMELEN + 1]; /* console (device) name */
79 /* Values for cn_flags. */
80 #define CN_FLAG_NODEBUG 0x00000001 /* Not supported with debugger. */
81 #define CN_FLAG_NOAVAIL 0x00000002 /* Temporarily not available. */
84 /* values for cn_pri - reflect our policy for console selection */
85 #define CN_DEAD 0 /* device doesn't exist */
86 #define CN_NORMAL 1 /* device exists but is nothing special */
87 #define CN_INTERNAL 2 /* "internal" bit-mapped display */
88 #define CN_REMOTE 3 /* serial interface with remote bit set */
90 #ifdef _KERNEL
91 extern int cons_unavail;
92 extern int sysbeep_enable; /* enable audio system beep */
93 extern struct consdev *cn_tab; /* console device */
94 extern struct consdev *gdb_tab;/* gdb debugger device */
96 #define CONS_DRIVER(name, probe, init, initfini, term, getc, checkc, putc, dbctl, poller) \
97 static struct consdev name##_consdev = { \
98 probe, init, initfini, term, getc, checkc, putc, dbctl, \
99 poller \
100 }; \
101 DATA_SET(cons_set, name##_consdev)
103 /* Other kernel entry points. */
104 int cncheckc (void);
105 int cngetc (void);
106 void cninit (void);
107 void cninit_finish (void);
108 void cndbctl (int);
109 void cnputc (int);
110 void cnpoll (int);
112 #endif /* _KERNEL */
114 #endif /* !_SYS_CONS_H_ */