Fix a boot panic with the amd device. We inherited some busdma code from
[dragonfly.git] / sys / kern / subr_xxx.c
1 /*
2  * Copyright (c) 1982, 1986, 1991, 1993
3  *      The Regents of the University of California.  All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  * 3. All advertising materials mentioning features or use of this software
14  *    must display the following acknowledgement:
15  *      This product includes software developed by the University of
16  *      California, Berkeley and its contributors.
17  * 4. Neither the name of the University nor the names of its contributors
18  *    may be used to endorse or promote products derived from this software
19  *    without specific prior written permission.
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31  * SUCH DAMAGE.
32  *
33  *      @(#)subr_xxx.c  8.1 (Berkeley) 6/10/93
34  * $FreeBSD: src/sys/kern/subr_xxx.c,v 1.15.2.1 2001/02/26 04:23:16 jlemon Exp $
35  * $DragonFly: src/sys/kern/Attic/subr_xxx.c,v 1.4 2004/05/19 22:52:58 dillon Exp $
36  */
37
38 /*
39  * Miscellaneous trivial functions.
40  */
41 #include <sys/param.h>
42 #include <sys/systm.h>
43 #include <sys/buf.h>
44
45 /*
46  * Return error for operation not supported
47  * on a specific object or file type.
48  */
49 int
50 eopnotsupp(void)
51 {
52         return (EOPNOTSUPP);
53 }
54
55 /*
56  * Return error for an inval operation
57  * on a specific object or file type.
58  */
59 int
60 einval(void)
61 {
62         return (EINVAL);
63 }
64
65 /*
66  * Generic null operation, always returns success.
67  */
68 int
69 nullop(void)
70 {
71         return (0);
72 }
73
74 #include <sys/conf.h>
75
76 /*
77  * Unsupported devswitch functions (e.g. for writing to read-only device).
78  * XXX may belong elsewhere.
79  */
80
81 int
82 noclone(dev_t dev)
83 {
84         /* take no action */
85         return (0);     /* allow the clone */
86 }
87
88 int
89 noopen(dev_t dev, int flags, int fmt, struct thread *td)
90 {
91         return (ENODEV);
92 }
93
94 int
95 noclose(dev_t dev, int flags, int fmt, struct thread *td)
96 {
97         return (ENODEV);
98 }
99
100 int
101 noread(dev_t dev, struct uio *uio, int ioflag)
102 {
103         return (ENODEV);
104 }
105
106 int
107 nowrite(dev_t dev, struct uio *uio, int ioflag)
108 {
109         return (ENODEV);
110 }
111
112 int
113 noioctl(dev_t dev, u_long cmd, caddr_t data, int flags, struct thread *td)
114 {
115         return (ENODEV);
116 }
117
118 int
119 nokqfilter(dev_t dev, struct knote *kn)
120 {
121         return (ENODEV);
122 }
123
124 int
125 nommap(dev_t dev, vm_offset_t offset, int nprot)
126 {
127         /* Don't return ENODEV.  That would allow mapping address ENODEV! */
128         return (-1);
129 }
130
131 int
132 nopoll(dev_t dev, int events, d_thread_t *td)
133 {
134         return(0);
135 }
136
137 void
138 nostrategy(struct buf *bp)
139 {
140         bp->b_flags |= B_ERROR;
141         bp->b_error = EOPNOTSUPP;
142         biodone(bp);
143 }
144
145 int
146 nopsize(dev_t dev)
147 {
148         return(0);
149 }
150
151 int
152 nodump(dev_t dev, u_int count, u_int blkno, u_int secsize) 
153 {
154         return (ENODEV);
155 }
156
157 /*
158  * Null devswitch functions (for when the operation always succeeds).
159  * XXX may belong elsewhere.
160  * XXX not all are here (e.g., seltrue() isn't).
161  */
162
163 /*
164  * XXX this is probably bogus.  Any device that uses it isn't checking the
165  * minor number.
166  */
167 int
168 nullopen(dev_t dev, int flags, int fmt, struct thread *td)
169 {
170         return (0);
171 }
172
173 int
174 nullclose(dev_t dev, int flags, int fmt, struct thread *td)
175 {
176         return (0);
177 }
178