master
1/*-
2 * SPDX-License-Identifier: BSD-3-Clause
3 *
4 * Copyright (c) 1988 University of Utah.
5 * Copyright (c) 1991 The Regents of the University of California.
6 * All rights reserved.
7 *
8 * This code is derived from software contributed to Berkeley by
9 * the Systems Programming Group of the University of Utah Computer
10 * Science Department.
11 *
12 * Redistribution and use in source and binary forms, with or without
13 * modification, are permitted provided that the following conditions
14 * are met:
15 * 1. Redistributions of source code must retain the above copyright
16 * notice, this list of conditions and the following disclaimer.
17 * 2. Redistributions in binary form must reproduce the above copyright
18 * notice, this list of conditions and the following disclaimer in the
19 * documentation and/or other materials provided with the distribution.
20 * 3. Neither the name of the University nor the names of its contributors
21 * may be used to endorse or promote products derived from this software
22 * without specific prior written permission.
23 *
24 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
25 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
28 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 * SUCH DAMAGE.
35 *
36 * from: @(#)cons.h 7.2 (Berkeley) 5/9/91
37 */
38
39#ifndef _MACHINE_CONS_H_
40#define _MACHINE_CONS_H_
41
42struct consdev;
43struct tty;
44
45typedef void cn_probe_t(struct consdev *);
46typedef void cn_init_t(struct consdev *);
47typedef void cn_term_t(struct consdev *);
48typedef void cn_grab_t(struct consdev *);
49typedef void cn_ungrab_t(struct consdev *);
50typedef int cn_getc_t(struct consdev *);
51typedef void cn_putc_t(struct consdev *, int);
52
53struct consdev_ops {
54 cn_probe_t *cn_probe;
55 /* probe hardware and fill in consdev info */
56 cn_init_t *cn_init;
57 /* turn on as console */
58 cn_term_t *cn_term;
59 /* turn off as console */
60 cn_getc_t *cn_getc;
61 /* kernel getchar interface */
62 cn_putc_t *cn_putc;
63 /* kernel putchar interface */
64 cn_grab_t *cn_grab;
65 /* grab console for exclusive kernel use */
66 cn_ungrab_t *cn_ungrab;
67 /* ungrab console */
68 cn_init_t *cn_resume;
69 /* set up console after sleep, optional */
70};
71
72struct consdev {
73 const struct consdev_ops *cn_ops;
74 /* console device operations. */
75 short cn_pri; /* pecking order; the higher the better */
76 void *cn_arg; /* drivers method argument */
77 int cn_flags; /* capabilities of this console */
78 char cn_name[SPECNAMELEN + 1]; /* console (device) name */
79};
80
81/* values for cn_pri - reflect our policy for console selection */
82#define CN_DEAD 0 /* device doesn't exist */
83#define CN_LOW 1 /* device is a last restort only */
84#define CN_NORMAL 2 /* device exists but is nothing special */
85#define CN_INTERNAL 3 /* "internal" bit-mapped display */
86#define CN_REMOTE 4 /* serial interface with remote bit set */
87
88/* Values for cn_flags. */
89#define CN_FLAG_NODEBUG 0x00000001 /* Not supported with debugger. */
90#define CN_FLAG_NOAVAIL 0x00000002 /* Temporarily not available. */
91
92/* Visibility of characters in cngets() */
93#define GETS_NOECHO 0 /* Disable echoing of characters. */
94#define GETS_ECHO 1 /* Enable echoing of characters. */
95#define GETS_ECHOPASS 2 /* Print a * for every character. */
96
97#ifdef _KERNEL
98
99extern struct msgbuf consmsgbuf; /* Message buffer for constty. */
100extern struct tty *constty; /* Temporary virtual console. */
101
102#define CONSOLE_DEVICE(name, ops, arg) \
103 static struct consdev name = { \
104 .cn_ops = &ops, \
105 .cn_arg = (arg), \
106 }; \
107 DATA_SET(cons_set, name)
108
109#define CONSOLE_DRIVER(name, ...) \
110 static const struct consdev_ops name##_consdev_ops = { \
111 /* Mandatory methods. */ \
112 .cn_probe = name##_cnprobe, \
113 .cn_init = name##_cninit, \
114 .cn_term = name##_cnterm, \
115 .cn_getc = name##_cngetc, \
116 .cn_putc = name##_cnputc, \
117 .cn_grab = name##_cngrab, \
118 .cn_ungrab = name##_cnungrab, \
119 /* Optional fields. */ \
120 __VA_ARGS__ \
121 }; \
122 CONSOLE_DEVICE(name##_consdev, name##_consdev_ops, NULL)
123
124/* Other kernel entry points. */
125void cninit(void);
126void cninit_finish(void);
127int cnadd(struct consdev *);
128void cnavailable(struct consdev *, int);
129void cnremove(struct consdev *);
130void cnselect(struct consdev *);
131void cngrab(void);
132void cnungrab(void);
133void cnresume(void);
134int cncheckc(void);
135int cngetc(void);
136void cngets(char *, size_t, int);
137void cnputc(int);
138void cnputs(const char *);
139void cnputsn(const char *, size_t);
140int cnunavailable(void);
141int constty_set(struct tty *tp);
142int constty_clear(struct tty *tp);
143
144/* sc(4) / vt(4) coexistence shim */
145#define VTY_SC 0x01
146#define VTY_VT 0x02
147int vty_enabled(unsigned int);
148
149#endif /* _KERNEL */
150
151#endif /* !_MACHINE_CONS_H_ */