2 * Copyright (c) 1990, 1993
3 * The Regents of the University of California. All rights reserved.
4 * (c) UNIX System Laboratories, Inc.
5 * All or some portions of this file are derived from material licensed
6 * to the University of California by American Telephone and Telegraph
7 * Co. or Unix System Laboratories, Inc. and are reproduced herein with
8 * the permission of UNIX System Laboratories, Inc.
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
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. All advertising materials mentioning features or use of this software
19 * must display the following acknowledgement:
20 * This product includes software developed by the University of
21 * California, Berkeley and its contributors.
22 * 4. Neither the name of the University nor the names of its contributors
23 * may be used to endorse or promote products derived from this software
24 * without specific prior written permission.
26 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
27 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
28 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
29 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
30 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
31 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
32 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
33 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
35 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
38 * @(#)conf.h 8.5 (Berkeley) 1/9/95
39 * $FreeBSD: src/sys/sys/conf.h,v 1.103.2.6 2002/03/11 01:14:55 dd Exp $
40 * $DragonFly: src/sys/sys/conf.h,v 1.18 2007/05/09 00:53:35 dillon Exp $
46 #if defined(_KERNEL) || defined(_KERNEL_STRUCTURES)
49 #include <sys/queue.h>
54 #ifndef _SYS_BIOTRACK_H_
55 #include <sys/biotrack.h>
57 #ifndef _SYS_SYSREF_H_
58 #include <sys/sysref.h>
61 #define SPECNAMELEN 15
72 LIST_ENTRY(cdev
) si_hash
;
73 SLIST_HEAD(, vnode
) si_hlist
;
74 char si_name
[SPECNAMELEN
+ 1];
77 struct dev_ops
*si_ops
; /* device operations vector */
78 int si_iosize_max
; /* maximum I/O size (for physio &al) */
79 struct sysref si_sysref
;
82 struct tty
*__sit_tty
;
85 struct disk
*__sid_disk
;
86 struct mount
*__sid_mountpoint
;
87 int __sid_bsize_phys
; /* min physical block size */
88 int __sid_bsize_best
; /* optimal block size */
91 struct bio_track si_track_read
;
92 struct bio_track si_track_write
;
93 time_t si_lastread
; /* time_second */
94 time_t si_lastwrite
; /* time_second */
97 #define SI_UNUSED01 0x0001
98 #define SI_HASHED 0x0002 /* in (maj,min) hash table */
99 #define SI_ADHOC 0x0004 /* created via make_adhoc_dev() or udev2dev() */
100 #define SI_INTERCEPTED 0x0008 /* device ops was intercepted */
102 #define si_tty __si_u.__si_tty.__sit_tty
103 #define si_disk __si_u.__si_disk.__sid_disk
104 #define si_mountpoint __si_u.__si_disk.__sid_mountpoint
105 #define si_bsize_phys __si_u.__si_disk.__sid_bsize_phys
106 #define si_bsize_best __si_u.__si_disk.__sid_bsize_best
108 #define CDEVSW_ALL_MINORS 0 /* mask of 0 always matches 0 */
111 * Special device management
114 #define SPECHASH(rdev) (((unsigned)(minor(rdev)))%SPECHSZ)
117 * Definitions of device driver entry switches
129 typedef int l_open_t (struct cdev
*dev
, struct tty
*tp
);
130 typedef int l_close_t (struct tty
*tp
, int flag
);
131 typedef int l_read_t (struct tty
*tp
, struct uio
*uio
, int flag
);
132 typedef int l_write_t (struct tty
*tp
, struct uio
*uio
, int flag
);
133 typedef int l_ioctl_t (struct tty
*tp
, u_long cmd
, caddr_t data
, int flag
,
135 typedef int l_rint_t (int c
, struct tty
*tp
);
136 typedef int l_start_t (struct tty
*tp
);
137 typedef int l_modem_t (struct tty
*tp
, int flag
);
140 * Line discipline switch table
155 extern struct linesw linesw
[];
158 int ldisc_register (int , struct linesw
*);
159 void ldisc_deregister (int);
160 #define LDISC_LOAD -1 /* Loadable line discipline */
167 udev_t sw_dev
; /* For quasibogus swapdev reporting */
171 struct cdev
*sw_device
;
173 #define SW_FREED 0x01
174 #define SW_SEQUENTIAL 0x02
175 #define sw_freed sw_flags /* XXX compat */
179 l_ioctl_t l_nullioctl
;
185 struct devsw_module_data
{
186 int (*chainevh
)(struct module
*, int, void *); /* next handler */
187 void *chainarg
; /* arg for next event handler */
188 /* Do not initialize fields hereafter */
191 #define DEV_MODULE(name, evh, arg) \
192 static moduledata_t name##_mod = { \
197 DECLARE_MODULE(name, name##_mod, SI_SUB_DRIVERS, SI_ORDER_MIDDLE)
199 int count_dev (cdev_t dev
);
200 int count_udev (int x
, int y
);
201 void destroy_dev (cdev_t dev
);
202 void release_dev (cdev_t dev
);
203 cdev_t
get_dev (int x
, int y
);
204 cdev_t
reference_dev (cdev_t dev
);
205 struct dev_ops
*devsw (cdev_t dev
);
206 const char *devtoname (cdev_t dev
);
207 void freedev (cdev_t dev
);
208 int iszerodev (cdev_t dev
);
210 cdev_t
make_sub_dev (cdev_t dev
, int minor
);
211 int lminor (cdev_t dev
);
213 cdev_t
kgetdiskbyname(const char *name
);
214 int dev_is_good(cdev_t dev
);
217 * XXX: This included for when DEVFS resurfaces
226 #define GID_OPERATOR 5
229 #define GID_DIALER 68
232 #endif /* _KERNEL || _KERNEL_STRUCTURES */
234 #endif /* !_SYS_CONF_H_ */