kern - Convert aio from zalloc to objcache
[dragonfly.git] / sys / kern / tty_conf.c
blob8a33c62543188347ddc9cc8db7f1006fdd686d16
1 /*-
2 * (MPSAFE)
4 * Copyright (c) 1982, 1986, 1991, 1993
5 * The Regents of the University of California. All rights reserved.
6 * (c) UNIX System Laboratories, Inc.
7 * All or some portions of this file are derived from material licensed
8 * to the University of California by American Telephone and Telegraph
9 * Co. or Unix System Laboratories, Inc. and are reproduced herein with
10 * the permission of UNIX System Laboratories, Inc.
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. All advertising materials mentioning features or use of this software
21 * must display the following acknowledgement:
22 * This product includes software developed by the University of
23 * California, Berkeley and its contributors.
24 * 4. Neither the name of the University nor the names of its contributors
25 * may be used to endorse or promote products derived from this software
26 * without specific prior written permission.
28 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
29 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
30 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
31 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
32 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
33 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
34 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
35 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
36 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
37 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
38 * SUCH DAMAGE.
40 * @(#)tty_conf.c 8.4 (Berkeley) 1/21/94
41 * $FreeBSD: src/sys/kern/tty_conf.c,v 1.16.2.1 2002/03/11 01:14:55 dd Exp $
42 * $DragonFly: src/sys/kern/tty_conf.c,v 1.6 2006/12/23 23:47:54 swildner Exp $
45 #include "opt_compat.h"
47 #include <sys/param.h>
48 #include <sys/systm.h>
49 #include <sys/tty.h>
50 #include <sys/conf.h>
52 #ifndef MAXLDISC
53 #define MAXLDISC 9
54 #endif
56 static l_open_t l_noopen;
57 static l_close_t l_noclose;
58 static l_rint_t l_norint;
59 static l_start_t l_nostart;
62 * XXX it probably doesn't matter what the entries other than the l_open
63 * entry are here. The l_nullioctl and ttymodem entries still look fishy.
64 * Reconsider the removal of nullmodem anyway. It was too much like
65 * ttymodem, but a completely null version might be useful.
67 #define NODISC(n) \
68 { l_noopen, l_noclose, l_noread, l_nowrite, \
69 l_nullioctl, l_norint, l_nostart, ttymodem }
71 struct linesw linesw[MAXLDISC] =
73 /* 0- termios */
74 { ttyopen, ttylclose, ttread, ttwrite,
75 l_nullioctl, ttyinput, ttstart, ttymodem },
76 NODISC(1), /* 1- defunct */
77 /* 2- NTTYDISC */
78 #ifdef COMPAT_43
79 { ttyopen, ttylclose, ttread, ttwrite,
80 l_nullioctl, ttyinput, ttstart, ttymodem },
81 #else
82 NODISC(2),
83 #endif
84 NODISC(3), /* loadable */
85 NODISC(4), /* SLIPDISC */
86 NODISC(5), /* PPPDISC */
87 NODISC(6), /* NETGRAPHDISC */
88 NODISC(7), /* loadable */
89 NODISC(8), /* loadable */
92 int nlinesw = sizeof (linesw) / sizeof (linesw[0]);
94 static struct linesw nodisc = NODISC(0);
96 #define LOADABLE_LDISC 7
98 * ldisc_register: Register a line discipline.
100 * discipline: Index for discipline to load, or LDISC_LOAD for us to choose.
101 * linesw_p: Pointer to linesw_p.
103 * Returns: Index used or -1 on failure.
106 ldisc_register(int discipline, struct linesw *linesw_p)
108 int slot = -1;
110 lwkt_gettoken(&tty_token);
111 if (discipline == LDISC_LOAD) {
112 int i;
113 for (i = LOADABLE_LDISC; i < MAXLDISC; i++)
114 if (bcmp(linesw + i, &nodisc, sizeof(nodisc)) == 0) {
115 slot = i;
118 else if (discipline >= 0 && discipline < MAXLDISC) {
119 slot = discipline;
122 if (slot != -1 && linesw_p)
123 linesw[slot] = *linesw_p;
125 lwkt_reltoken(&tty_token);
126 return slot;
130 * ldisc_deregister: Deregister a line discipline obtained with
131 * ldisc_register.
133 * discipline: Index for discipline to unload.
135 void
136 ldisc_deregister(int discipline)
138 lwkt_gettoken(&tty_token);
139 if (discipline < MAXLDISC) {
140 linesw[discipline] = nodisc;
142 lwkt_reltoken(&tty_token);
145 static int
146 l_noopen(cdev_t dev, struct tty *tp)
149 return (ENODEV);
152 static int
153 l_noclose(struct tty *tp, int flag)
156 return (ENODEV);
160 l_noread(struct tty *tp, struct uio *uio, int flag)
163 return (ENODEV);
167 l_nowrite(struct tty *tp, struct uio *uio, int flag)
170 return (ENODEV);
173 static int
174 l_norint(int c, struct tty *tp)
177 return (ENODEV);
180 static int
181 l_nostart(struct tty *tp)
184 return (ENODEV);
188 * Do nothing specific version of line
189 * discipline specific ioctl command.
192 l_nullioctl(struct tty *tp, u_long cmd, char *data, int flags,
193 struct ucred *cred)
196 return (ENOIOCTL);