scsipi_base.c revision 1.26.2.1 1 1.26.2.1 thorpej /* $NetBSD: scsipi_base.c,v 1.26.2.1 1999/10/19 17:39:35 thorpej Exp $ */
2 1.2 bouyer
3 1.8 mycroft /*-
4 1.26.2.1 thorpej * Copyright (c) 1998, 1999 The NetBSD Foundation, Inc.
5 1.8 mycroft * All rights reserved.
6 1.8 mycroft *
7 1.8 mycroft * This code is derived from software contributed to The NetBSD Foundation
8 1.26.2.1 thorpej * by Charles M. Hannum; by Jason R. Thorpe of the Numerical Aerospace
9 1.26.2.1 thorpej * Simulation Facility, NASA Ames Research Center.
10 1.2 bouyer *
11 1.2 bouyer * Redistribution and use in source and binary forms, with or without
12 1.2 bouyer * modification, are permitted provided that the following conditions
13 1.2 bouyer * are met:
14 1.2 bouyer * 1. Redistributions of source code must retain the above copyright
15 1.2 bouyer * notice, this list of conditions and the following disclaimer.
16 1.2 bouyer * 2. Redistributions in binary form must reproduce the above copyright
17 1.2 bouyer * notice, this list of conditions and the following disclaimer in the
18 1.2 bouyer * documentation and/or other materials provided with the distribution.
19 1.2 bouyer * 3. All advertising materials mentioning features or use of this software
20 1.2 bouyer * must display the following acknowledgement:
21 1.8 mycroft * This product includes software developed by the NetBSD
22 1.8 mycroft * Foundation, Inc. and its contributors.
23 1.8 mycroft * 4. Neither the name of The NetBSD Foundation nor the names of its
24 1.8 mycroft * contributors may be used to endorse or promote products derived
25 1.8 mycroft * from this software without specific prior written permission.
26 1.2 bouyer *
27 1.8 mycroft * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
28 1.8 mycroft * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
29 1.8 mycroft * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
30 1.8 mycroft * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
31 1.8 mycroft * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
32 1.8 mycroft * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
33 1.8 mycroft * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
34 1.8 mycroft * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
35 1.8 mycroft * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
36 1.8 mycroft * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
37 1.8 mycroft * POSSIBILITY OF SUCH DAMAGE.
38 1.2 bouyer */
39 1.2 bouyer
40 1.13 bouyer #include "opt_scsi.h"
41 1.13 bouyer
42 1.2 bouyer #include <sys/types.h>
43 1.2 bouyer #include <sys/param.h>
44 1.2 bouyer #include <sys/systm.h>
45 1.2 bouyer #include <sys/kernel.h>
46 1.2 bouyer #include <sys/buf.h>
47 1.2 bouyer #include <sys/uio.h>
48 1.2 bouyer #include <sys/malloc.h>
49 1.6 thorpej #include <sys/pool.h>
50 1.2 bouyer #include <sys/errno.h>
51 1.2 bouyer #include <sys/device.h>
52 1.2 bouyer #include <sys/proc.h>
53 1.26.2.1 thorpej #include <sys/kthread.h>
54 1.2 bouyer
55 1.2 bouyer #include <dev/scsipi/scsipi_all.h>
56 1.2 bouyer #include <dev/scsipi/scsipi_disk.h>
57 1.2 bouyer #include <dev/scsipi/scsipiconf.h>
58 1.2 bouyer #include <dev/scsipi/scsipi_base.h>
59 1.2 bouyer
60 1.26.2.1 thorpej #include <dev/scsipi/scsi_all.h>
61 1.26.2.1 thorpej #include <dev/scsipi/scsi_message.h>
62 1.26.2.1 thorpej
63 1.26.2.1 thorpej int scsipi_complete __P((struct scsipi_xfer *));
64 1.26.2.1 thorpej int scsipi_enqueue __P((struct scsipi_xfer *));
65 1.26.2.1 thorpej void scsipi_run_queue __P((struct scsipi_channel *chan));
66 1.26.2.1 thorpej
67 1.26.2.1 thorpej void scsipi_completion_thread __P((void *));
68 1.26.2.1 thorpej
69 1.26.2.1 thorpej void scsipi_get_tag __P((struct scsipi_xfer *));
70 1.26.2.1 thorpej void scsipi_put_tag __P((struct scsipi_xfer *));
71 1.6 thorpej
72 1.26.2.1 thorpej void scsipi_async_event_max_openings __P((struct scsipi_channel *,
73 1.26.2.1 thorpej struct scsipi_max_openings *));
74 1.26.2.1 thorpej
75 1.26.2.1 thorpej struct pool scsipi_xfer_pool;
76 1.2 bouyer
77 1.2 bouyer /*
78 1.26.2.1 thorpej * scsipi_init:
79 1.26.2.1 thorpej *
80 1.26.2.1 thorpej * Called when a scsibus or atapibus is attached to the system
81 1.26.2.1 thorpej * to initialize shared data structures.
82 1.6 thorpej */
83 1.6 thorpej void
84 1.6 thorpej scsipi_init()
85 1.6 thorpej {
86 1.6 thorpej static int scsipi_init_done;
87 1.6 thorpej
88 1.6 thorpej if (scsipi_init_done)
89 1.6 thorpej return;
90 1.6 thorpej scsipi_init_done = 1;
91 1.6 thorpej
92 1.6 thorpej /* Initialize the scsipi_xfer pool. */
93 1.6 thorpej pool_init(&scsipi_xfer_pool, sizeof(struct scsipi_xfer), 0,
94 1.6 thorpej 0, 0, "scxspl", 0, NULL, NULL, M_DEVBUF);
95 1.6 thorpej }
96 1.6 thorpej
97 1.6 thorpej /*
98 1.26.2.1 thorpej * scsipi_channel_init:
99 1.26.2.1 thorpej *
100 1.26.2.1 thorpej * Initialize a scsipi_channel when it is attached.
101 1.26.2.1 thorpej */
102 1.26.2.1 thorpej void
103 1.26.2.1 thorpej scsipi_channel_init(chan)
104 1.26.2.1 thorpej struct scsipi_channel *chan;
105 1.26.2.1 thorpej {
106 1.26.2.1 thorpej size_t nbytes;
107 1.26.2.1 thorpej int i;
108 1.26.2.1 thorpej
109 1.26.2.1 thorpej /* Initialize shared data. */
110 1.26.2.1 thorpej scsipi_init();
111 1.26.2.1 thorpej
112 1.26.2.1 thorpej /* Initialize the queues. */
113 1.26.2.1 thorpej TAILQ_INIT(&chan->chan_queue);
114 1.26.2.1 thorpej TAILQ_INIT(&chan->chan_complete);
115 1.26.2.1 thorpej
116 1.26.2.1 thorpej nbytes = chan->chan_ntargets * sizeof(struct scsipi_link **);
117 1.26.2.1 thorpej chan->chan_periphs = malloc(nbytes, M_DEVBUF, M_WAITOK);
118 1.26.2.1 thorpej
119 1.26.2.1 thorpej nbytes = chan->chan_nluns * sizeof(struct scsipi_periph *);
120 1.26.2.1 thorpej for (i = 0; i < chan->chan_ntargets; i++) {
121 1.26.2.1 thorpej chan->chan_periphs[i] = malloc(nbytes, M_DEVBUF, M_WAITOK);
122 1.26.2.1 thorpej memset(chan->chan_periphs[i], 0, nbytes);
123 1.26.2.1 thorpej }
124 1.26.2.1 thorpej
125 1.26.2.1 thorpej /*
126 1.26.2.1 thorpej * Create the asynchronous completion thread.
127 1.26.2.1 thorpej */
128 1.26.2.1 thorpej kthread_create(scsipi_create_completion_thread, chan);
129 1.26.2.1 thorpej }
130 1.26.2.1 thorpej
131 1.26.2.1 thorpej /*
132 1.26.2.1 thorpej * scsipi_lookup_periph:
133 1.26.2.1 thorpej *
134 1.26.2.1 thorpej * Lookup a periph on the specified channel.
135 1.26.2.1 thorpej */
136 1.26.2.1 thorpej struct scsipi_periph *
137 1.26.2.1 thorpej scsipi_lookup_periph(chan, target, lun)
138 1.26.2.1 thorpej struct scsipi_channel *chan;
139 1.26.2.1 thorpej int target, lun;
140 1.26.2.1 thorpej {
141 1.26.2.1 thorpej struct scsipi_periph *periph;
142 1.26.2.1 thorpej int s;
143 1.26.2.1 thorpej
144 1.26.2.1 thorpej if (target >= chan->chan_ntargets ||
145 1.26.2.1 thorpej lun >= chan->chan_nluns)
146 1.26.2.1 thorpej return (NULL);
147 1.26.2.1 thorpej
148 1.26.2.1 thorpej s = splbio();
149 1.26.2.1 thorpej periph = chan->chan_periphs[target][lun];
150 1.26.2.1 thorpej splx(s);
151 1.26.2.1 thorpej
152 1.26.2.1 thorpej return (periph);
153 1.26.2.1 thorpej }
154 1.26.2.1 thorpej
155 1.26.2.1 thorpej /*
156 1.26.2.1 thorpej * scsipi_get_resource:
157 1.26.2.1 thorpej *
158 1.26.2.1 thorpej * Allocate a single xfer `resource' from the channel.
159 1.26.2.1 thorpej *
160 1.26.2.1 thorpej * NOTE: Must be called at splbio().
161 1.26.2.1 thorpej */
162 1.26.2.1 thorpej int
163 1.26.2.1 thorpej scsipi_get_resource(chan)
164 1.26.2.1 thorpej struct scsipi_channel *chan;
165 1.26.2.1 thorpej {
166 1.26.2.1 thorpej struct scsipi_adapter *adapt = chan->chan_adapter;
167 1.26.2.1 thorpej
168 1.26.2.1 thorpej if (chan->chan_flags & SCSIPI_CHAN_OPENINGS) {
169 1.26.2.1 thorpej if (chan->chan_openings > 0) {
170 1.26.2.1 thorpej chan->chan_openings--;
171 1.26.2.1 thorpej return (1);
172 1.26.2.1 thorpej }
173 1.26.2.1 thorpej return (0);
174 1.26.2.1 thorpej }
175 1.26.2.1 thorpej
176 1.26.2.1 thorpej if (adapt->adapt_openings > 0) {
177 1.26.2.1 thorpej adapt->adapt_openings--;
178 1.26.2.1 thorpej return (1);
179 1.26.2.1 thorpej }
180 1.26.2.1 thorpej return (0);
181 1.26.2.1 thorpej }
182 1.26.2.1 thorpej
183 1.26.2.1 thorpej /*
184 1.26.2.1 thorpej * scsipi_grow_resources:
185 1.26.2.1 thorpej *
186 1.26.2.1 thorpej * Attempt to grow resources for a channel. If this succeeds,
187 1.26.2.1 thorpej * we allocate one for our caller.
188 1.26.2.1 thorpej *
189 1.26.2.1 thorpej * NOTE: Must be called at splbio().
190 1.26.2.1 thorpej */
191 1.26.2.1 thorpej int
192 1.26.2.1 thorpej scsipi_grow_resources(chan)
193 1.26.2.1 thorpej struct scsipi_channel *chan;
194 1.26.2.1 thorpej {
195 1.26.2.1 thorpej
196 1.26.2.1 thorpej if (chan->chan_flags & SCSIPI_CHAN_CANGROW) {
197 1.26.2.1 thorpej scsipi_adapter_request(chan, ADAPTER_REQ_GROW_RESOURCES, NULL);
198 1.26.2.1 thorpej return (scsipi_get_resource(chan));
199 1.26.2.1 thorpej }
200 1.26.2.1 thorpej
201 1.26.2.1 thorpej return (0);
202 1.26.2.1 thorpej }
203 1.26.2.1 thorpej
204 1.26.2.1 thorpej /*
205 1.26.2.1 thorpej * scsipi_put_resource:
206 1.26.2.1 thorpej *
207 1.26.2.1 thorpej * Free a single xfer `resource' to the channel.
208 1.26.2.1 thorpej *
209 1.26.2.1 thorpej * NOTE: Must be called at splbio().
210 1.26.2.1 thorpej */
211 1.26.2.1 thorpej void
212 1.26.2.1 thorpej scsipi_put_resource(chan)
213 1.26.2.1 thorpej struct scsipi_channel *chan;
214 1.26.2.1 thorpej {
215 1.26.2.1 thorpej struct scsipi_adapter *adapt = chan->chan_adapter;
216 1.26.2.1 thorpej
217 1.26.2.1 thorpej if (chan->chan_flags & SCSIPI_CHAN_OPENINGS)
218 1.26.2.1 thorpej chan->chan_openings++;
219 1.26.2.1 thorpej else
220 1.26.2.1 thorpej adapt->adapt_openings++;
221 1.26.2.1 thorpej }
222 1.26.2.1 thorpej
223 1.26.2.1 thorpej /*
224 1.26.2.1 thorpej * scsipi_get_tag:
225 1.26.2.1 thorpej *
226 1.26.2.1 thorpej * Get a tag ID for the specified xfer.
227 1.26.2.1 thorpej *
228 1.26.2.1 thorpej * NOTE: Must be called at splbio().
229 1.26.2.1 thorpej */
230 1.26.2.1 thorpej void
231 1.26.2.1 thorpej scsipi_get_tag(xs)
232 1.26.2.1 thorpej struct scsipi_xfer *xs;
233 1.26.2.1 thorpej {
234 1.26.2.1 thorpej struct scsipi_periph *periph = xs->xs_periph;
235 1.26.2.1 thorpej int word, bit, tag;
236 1.26.2.1 thorpej
237 1.26.2.1 thorpej for (word = 0; word < PERIPH_NTAGWORDS; word++) {
238 1.26.2.1 thorpej bit = ffs(periph->periph_freetags[word]);
239 1.26.2.1 thorpej if (bit != 0)
240 1.26.2.1 thorpej break;
241 1.26.2.1 thorpej }
242 1.26.2.1 thorpej #ifdef DIAGNOSTIC
243 1.26.2.1 thorpej if (word == PERIPH_NTAGWORDS) {
244 1.26.2.1 thorpej scsipi_printaddr(periph);
245 1.26.2.1 thorpej printf("no free tags\n");
246 1.26.2.1 thorpej panic("scsipi_get_tag");
247 1.26.2.1 thorpej }
248 1.26.2.1 thorpej #endif
249 1.26.2.1 thorpej
250 1.26.2.1 thorpej bit -= 1;
251 1.26.2.1 thorpej periph->periph_freetags[word] &= ~(1 << bit);
252 1.26.2.1 thorpej tag = (word << 5) | bit;
253 1.26.2.1 thorpej
254 1.26.2.1 thorpej /* XXX Should eventually disallow this completely. */
255 1.26.2.1 thorpej if (tag >= periph->periph_openings) {
256 1.26.2.1 thorpej scsipi_printaddr(periph);
257 1.26.2.1 thorpej printf("WARNING: tag %d greater than available openings %d\n",
258 1.26.2.1 thorpej tag, periph->periph_openings);
259 1.26.2.1 thorpej }
260 1.26.2.1 thorpej
261 1.26.2.1 thorpej xs->xs_tag_id = tag;
262 1.26.2.1 thorpej }
263 1.26.2.1 thorpej
264 1.26.2.1 thorpej /*
265 1.26.2.1 thorpej * scsipi_put_tag:
266 1.26.2.1 thorpej *
267 1.26.2.1 thorpej * Put the tag ID for the specified xfer back into the pool.
268 1.26.2.1 thorpej *
269 1.26.2.1 thorpej * NOTE: Must be called at splbio().
270 1.2 bouyer */
271 1.26.2.1 thorpej void
272 1.26.2.1 thorpej scsipi_put_tag(xs)
273 1.26.2.1 thorpej struct scsipi_xfer *xs;
274 1.26.2.1 thorpej {
275 1.26.2.1 thorpej struct scsipi_periph *periph = xs->xs_periph;
276 1.26.2.1 thorpej int word, bit;
277 1.26.2.1 thorpej
278 1.26.2.1 thorpej word = xs->xs_tag_id >> 5;
279 1.26.2.1 thorpej bit = xs->xs_tag_id & 0x1f;
280 1.26.2.1 thorpej
281 1.26.2.1 thorpej periph->periph_freetags[word] |= (1 << bit);
282 1.26.2.1 thorpej }
283 1.2 bouyer
284 1.26.2.1 thorpej /*
285 1.26.2.1 thorpej * scsipi_get_xs:
286 1.26.2.1 thorpej *
287 1.26.2.1 thorpej * Allocate an xfer descriptor and associate it with the
288 1.26.2.1 thorpej * specified peripherial. If the peripherial has no more
289 1.26.2.1 thorpej * available command openings, we either block waiting for
290 1.26.2.1 thorpej * one to become available, or fail.
291 1.26.2.1 thorpej */
292 1.2 bouyer struct scsipi_xfer *
293 1.26.2.1 thorpej scsipi_get_xs(periph, flags)
294 1.26.2.1 thorpej struct scsipi_periph *periph;
295 1.26.2.1 thorpej int flags;
296 1.2 bouyer {
297 1.2 bouyer struct scsipi_xfer *xs;
298 1.2 bouyer int s;
299 1.2 bouyer
300 1.2 bouyer SC_DEBUG(sc_link, SDEV_DB3, ("scsipi_get_xs\n"));
301 1.6 thorpej
302 1.24 thorpej /*
303 1.24 thorpej * If we're cold, make sure we poll.
304 1.24 thorpej */
305 1.24 thorpej if (cold)
306 1.24 thorpej flags |= XS_CTL_NOSLEEP | XS_CTL_POLL;
307 1.24 thorpej
308 1.26.2.1 thorpej #ifdef DIAGNOSTIC
309 1.26.2.1 thorpej /*
310 1.26.2.1 thorpej * URGENT commands can never be ASYNC.
311 1.26.2.1 thorpej */
312 1.26.2.1 thorpej if ((flags & (XS_CTL_URGENT|XS_CTL_ASYNC)) ==
313 1.26.2.1 thorpej (XS_CTL_URGENT|XS_CTL_ASYNC)) {
314 1.26.2.1 thorpej scsipi_printaddr(periph);
315 1.26.2.1 thorpej printf("URGENT and ASYNC\n");
316 1.26.2.1 thorpej panic("scsipi_get_xs");
317 1.26.2.1 thorpej }
318 1.26.2.1 thorpej #endif
319 1.26.2.1 thorpej
320 1.2 bouyer s = splbio();
321 1.26.2.1 thorpej /*
322 1.26.2.1 thorpej * Wait for a command opening to become available. Rules:
323 1.26.2.1 thorpej *
324 1.26.2.1 thorpej * - All xfers must wait for an available opening.
325 1.26.2.1 thorpej * Exception: URGENT xfers can proceed when
326 1.26.2.1 thorpej * active == openings, because we use the opening
327 1.26.2.1 thorpej * of the command we're recovering for.
328 1.26.2.1 thorpej *
329 1.26.2.1 thorpej * - If the periph is recovering, only URGENT xfers may
330 1.26.2.1 thorpej * proceed.
331 1.26.2.1 thorpej *
332 1.26.2.1 thorpej * - If the periph is currently executing a recovery
333 1.26.2.1 thorpej * command, URGENT commands must block, because only
334 1.26.2.1 thorpej * one recovery command can execute at a time.
335 1.26.2.1 thorpej */
336 1.26.2.1 thorpej for (;;) {
337 1.26.2.1 thorpej if (flags & XS_CTL_URGENT) {
338 1.26.2.1 thorpej if (periph->periph_active > periph->periph_openings ||
339 1.26.2.1 thorpej (periph->periph_flags &
340 1.26.2.1 thorpej PERIPH_RECOVERY_ACTIVE) != 0)
341 1.26.2.1 thorpej goto wait_for_opening;
342 1.26.2.1 thorpej periph->periph_flags |= PERIPH_RECOVERY_ACTIVE;
343 1.26.2.1 thorpej break;
344 1.26.2.1 thorpej }
345 1.26.2.1 thorpej if (periph->periph_active >= periph->periph_openings ||
346 1.26.2.1 thorpej (periph->periph_flags & PERIPH_RECOVERING) != 0)
347 1.26.2.1 thorpej goto wait_for_opening;
348 1.26.2.1 thorpej periph->periph_active++;
349 1.26.2.1 thorpej break;
350 1.26.2.1 thorpej
351 1.26.2.1 thorpej wait_for_opening:
352 1.26.2.1 thorpej if (flags & XS_CTL_NOSLEEP) {
353 1.2 bouyer splx(s);
354 1.26.2.1 thorpej return (NULL);
355 1.2 bouyer }
356 1.26.2.1 thorpej SC_DEBUG(sc_link, SDEV_DB3, ("sleeping\n"));
357 1.26.2.1 thorpej periph->periph_flags |= PERIPH_WAITING;
358 1.26.2.1 thorpej (void) tsleep(periph, PRIBIO, "getxs", 0);
359 1.2 bouyer }
360 1.6 thorpej SC_DEBUG(sc_link, SDEV_DB3, ("calling pool_get\n"));
361 1.6 thorpej xs = pool_get(&scsipi_xfer_pool,
362 1.24 thorpej ((flags & XS_CTL_NOSLEEP) != 0 ? PR_NOWAIT : PR_WAITOK));
363 1.26.2.1 thorpej if (xs == NULL) {
364 1.26.2.1 thorpej if (flags & XS_CTL_URGENT)
365 1.26.2.1 thorpej periph->periph_flags &= ~PERIPH_RECOVERY_ACTIVE;
366 1.26.2.1 thorpej else
367 1.26.2.1 thorpej periph->periph_active--;
368 1.26.2.1 thorpej scsipi_printaddr(periph);
369 1.26.2.1 thorpej printf("unable to allocate %sscsipi_xfer\n",
370 1.26.2.1 thorpej (flags & XS_CTL_URGENT) ? "URGENT " : "");
371 1.2 bouyer }
372 1.6 thorpej splx(s);
373 1.2 bouyer
374 1.2 bouyer SC_DEBUG(sc_link, SDEV_DB3, ("returning\n"));
375 1.6 thorpej
376 1.7 scottr if (xs != NULL) {
377 1.26.2.1 thorpej memset(xs, 0, sizeof(*xs));
378 1.26.2.1 thorpej xs->xs_periph = periph;
379 1.24 thorpej xs->xs_control = flags;
380 1.26.2.1 thorpej s = splbio();
381 1.26.2.1 thorpej TAILQ_INSERT_TAIL(&periph->periph_xferq, xs, device_q);
382 1.26.2.1 thorpej splx(s);
383 1.7 scottr }
384 1.3 enami return (xs);
385 1.2 bouyer }
386 1.2 bouyer
387 1.2 bouyer /*
388 1.26.2.1 thorpej * scsipi_put_xs:
389 1.6 thorpej *
390 1.26.2.1 thorpej * Release an xfer descriptor, decreasing the outstanding command
391 1.26.2.1 thorpej * count for the peripherial. If there is a thread waiting for
392 1.26.2.1 thorpej * an opening, wake it up. If not, kick any queued I/O the
393 1.26.2.1 thorpej * peripherial may have.
394 1.26.2.1 thorpej *
395 1.26.2.1 thorpej * NOTE: Must be called at splbio().
396 1.2 bouyer */
397 1.3 enami void
398 1.26.2.1 thorpej scsipi_put_xs(xs)
399 1.2 bouyer struct scsipi_xfer *xs;
400 1.2 bouyer {
401 1.26.2.1 thorpej struct scsipi_periph *periph = xs->xs_periph;
402 1.26.2.1 thorpej int flags = xs->xs_control;
403 1.2 bouyer
404 1.26.2.1 thorpej SC_DEBUG(sc_link, SDEV_DB3, ("scsipi_free_xs\n"));
405 1.26.2.1 thorpej
406 1.26.2.1 thorpej TAILQ_REMOVE(&periph->periph_xferq, xs, device_q);
407 1.6 thorpej pool_put(&scsipi_xfer_pool, xs);
408 1.2 bouyer
409 1.26.2.1 thorpej #ifdef DIAGNOSTIC
410 1.26.2.1 thorpej if ((periph->periph_flags & PERIPH_RECOVERY_ACTIVE) != 0 &&
411 1.26.2.1 thorpej periph->periph_active == 0) {
412 1.26.2.1 thorpej scsipi_printaddr(periph);
413 1.26.2.1 thorpej printf("recovery without a command to recovery for\n");
414 1.26.2.1 thorpej panic("scsipi_put_xs");
415 1.26.2.1 thorpej }
416 1.26.2.1 thorpej #endif
417 1.26.2.1 thorpej
418 1.26.2.1 thorpej if (flags & XS_CTL_URGENT)
419 1.26.2.1 thorpej periph->periph_flags &= ~PERIPH_RECOVERY_ACTIVE;
420 1.26.2.1 thorpej else
421 1.26.2.1 thorpej periph->periph_active--;
422 1.26.2.1 thorpej if (periph->periph_active == 0 &&
423 1.26.2.1 thorpej (periph->periph_flags & PERIPH_WAITDRAIN) != 0) {
424 1.26.2.1 thorpej periph->periph_flags &= ~PERIPH_WAITDRAIN;
425 1.26.2.1 thorpej wakeup(&periph->periph_active);
426 1.26.2.1 thorpej }
427 1.26.2.1 thorpej
428 1.26.2.1 thorpej if (periph->periph_flags & PERIPH_WAITING) {
429 1.26.2.1 thorpej periph->periph_flags &= ~PERIPH_WAITING;
430 1.26.2.1 thorpej wakeup(periph);
431 1.2 bouyer } else {
432 1.26.2.1 thorpej if (periph->periph_switch->psw_start != NULL) {
433 1.3 enami SC_DEBUG(sc_link, SDEV_DB2,
434 1.3 enami ("calling private start()\n"));
435 1.26.2.1 thorpej (*periph->periph_switch->psw_start)(periph);
436 1.2 bouyer }
437 1.2 bouyer }
438 1.15 thorpej }
439 1.15 thorpej
440 1.15 thorpej /*
441 1.26.2.1 thorpej * scsipi_periph_freeze:
442 1.26.2.1 thorpej *
443 1.26.2.1 thorpej * Freeze a device's xfer queue.
444 1.26.2.1 thorpej */
445 1.26.2.1 thorpej void
446 1.26.2.1 thorpej scsipi_periph_freeze(periph, count)
447 1.26.2.1 thorpej struct scsipi_periph *periph;
448 1.26.2.1 thorpej int count;
449 1.26.2.1 thorpej {
450 1.26.2.1 thorpej int s;
451 1.26.2.1 thorpej
452 1.26.2.1 thorpej s = splbio();
453 1.26.2.1 thorpej periph->periph_qfreeze += count;
454 1.26.2.1 thorpej splx(s);
455 1.26.2.1 thorpej }
456 1.26.2.1 thorpej
457 1.26.2.1 thorpej /*
458 1.26.2.1 thorpej * scsipi_periph_thaw:
459 1.26.2.1 thorpej *
460 1.26.2.1 thorpej * Thaw a device's xfer queue.
461 1.26.2.1 thorpej */
462 1.26.2.1 thorpej void
463 1.26.2.1 thorpej scsipi_periph_thaw(periph, count)
464 1.26.2.1 thorpej struct scsipi_periph *periph;
465 1.26.2.1 thorpej int count;
466 1.26.2.1 thorpej {
467 1.26.2.1 thorpej int s;
468 1.26.2.1 thorpej
469 1.26.2.1 thorpej s = splbio();
470 1.26.2.1 thorpej periph->periph_qfreeze -= count;
471 1.26.2.1 thorpej if (periph->periph_qfreeze == 0 &&
472 1.26.2.1 thorpej (periph->periph_flags & PERIPH_WAITING) != 0)
473 1.26.2.1 thorpej wakeup(periph);
474 1.26.2.1 thorpej splx(s);
475 1.26.2.1 thorpej }
476 1.26.2.1 thorpej
477 1.26.2.1 thorpej /*
478 1.26.2.1 thorpej * scsipi_periph_timed_thaw:
479 1.26.2.1 thorpej *
480 1.26.2.1 thorpej * Thaw a device after some time has expired.
481 1.26.2.1 thorpej */
482 1.26.2.1 thorpej void
483 1.26.2.1 thorpej scsipi_periph_timed_thaw(arg)
484 1.26.2.1 thorpej void *arg;
485 1.26.2.1 thorpej {
486 1.26.2.1 thorpej struct scsipi_periph *periph = arg;
487 1.26.2.1 thorpej
488 1.26.2.1 thorpej scsipi_periph_thaw(periph, 1);
489 1.26.2.1 thorpej
490 1.26.2.1 thorpej /* XXX XXX XXX */
491 1.26.2.1 thorpej scsipi_printaddr(periph);
492 1.26.2.1 thorpej printf("timed thaw: should kick channel's queue here.\n");
493 1.26.2.1 thorpej }
494 1.26.2.1 thorpej
495 1.26.2.1 thorpej /*
496 1.26.2.1 thorpej * scsipi_wait_drain:
497 1.26.2.1 thorpej *
498 1.26.2.1 thorpej * Wait for a periph's pending xfers to drain.
499 1.15 thorpej */
500 1.15 thorpej void
501 1.26.2.1 thorpej scsipi_wait_drain(periph)
502 1.26.2.1 thorpej struct scsipi_periph *periph;
503 1.15 thorpej {
504 1.15 thorpej int s;
505 1.15 thorpej
506 1.15 thorpej s = splbio();
507 1.26.2.1 thorpej while (periph->periph_active != 0) {
508 1.26.2.1 thorpej periph->periph_flags |= PERIPH_WAITDRAIN;
509 1.26.2.1 thorpej (void) tsleep(&periph->periph_active, PRIBIO, "sxdrn", 0);
510 1.15 thorpej }
511 1.15 thorpej splx(s);
512 1.23 thorpej }
513 1.23 thorpej
514 1.23 thorpej /*
515 1.26.2.1 thorpej * scsipi_kill_pending:
516 1.23 thorpej *
517 1.26.2.1 thorpej * Kill off all pending xfers for a periph.
518 1.26.2.1 thorpej *
519 1.26.2.1 thorpej * NOTE: Must be called at splbio().
520 1.23 thorpej */
521 1.23 thorpej void
522 1.26.2.1 thorpej scsipi_kill_pending(periph)
523 1.26.2.1 thorpej struct scsipi_periph *periph;
524 1.23 thorpej {
525 1.23 thorpej struct scsipi_xfer *xs;
526 1.23 thorpej
527 1.26.2.1 thorpej while ((xs = TAILQ_FIRST(&periph->periph_xferq)) != NULL) {
528 1.26 enami xs->error = XS_DRIVER_STUFFUP;
529 1.23 thorpej scsipi_done(xs);
530 1.23 thorpej }
531 1.2 bouyer }
532 1.2 bouyer
533 1.2 bouyer /*
534 1.26.2.1 thorpej * scsipi_interpret_sense:
535 1.26.2.1 thorpej *
536 1.26.2.1 thorpej * Look at the returned sense and act on the error, determining
537 1.26.2.1 thorpej * the unix error number to pass back. (0 = report no error)
538 1.13 bouyer *
539 1.26.2.1 thorpej * NOTE: If we return ERESTART, we are expected to haved
540 1.26.2.1 thorpej * thawed the device!
541 1.26.2.1 thorpej *
542 1.26.2.1 thorpej * THIS IS THE DEFAULT ERROR HANDLER FOR SCSI DEVICES.
543 1.13 bouyer */
544 1.13 bouyer int
545 1.13 bouyer scsipi_interpret_sense(xs)
546 1.13 bouyer struct scsipi_xfer *xs;
547 1.13 bouyer {
548 1.13 bouyer struct scsipi_sense_data *sense;
549 1.26.2.1 thorpej struct scsipi_periph *periph = xs->xs_periph;
550 1.13 bouyer u_int8_t key;
551 1.13 bouyer u_int32_t info;
552 1.13 bouyer int error;
553 1.13 bouyer #ifndef SCSIVERBOSE
554 1.13 bouyer static char *error_mes[] = {
555 1.13 bouyer "soft error (corrected)",
556 1.13 bouyer "not ready", "medium error",
557 1.13 bouyer "non-media hardware failure", "illegal request",
558 1.13 bouyer "unit attention", "readonly device",
559 1.13 bouyer "no data found", "vendor unique",
560 1.13 bouyer "copy aborted", "command aborted",
561 1.13 bouyer "search returned equal", "volume overflow",
562 1.13 bouyer "verify miscompare", "unknown error key"
563 1.13 bouyer };
564 1.13 bouyer #endif
565 1.13 bouyer
566 1.13 bouyer sense = &xs->sense.scsi_sense;
567 1.13 bouyer #ifdef SCSIDEBUG
568 1.13 bouyer if ((sc_link->flags & SDEV_DB1) != 0) {
569 1.13 bouyer int count;
570 1.13 bouyer printf("code 0x%x valid 0x%x ",
571 1.13 bouyer sense->error_code & SSD_ERRCODE,
572 1.13 bouyer sense->error_code & SSD_ERRCODE_VALID ? 1 : 0);
573 1.13 bouyer printf("seg 0x%x key 0x%x ili 0x%x eom 0x%x fmark 0x%x\n",
574 1.13 bouyer sense->segment,
575 1.13 bouyer sense->flags & SSD_KEY,
576 1.13 bouyer sense->flags & SSD_ILI ? 1 : 0,
577 1.13 bouyer sense->flags & SSD_EOM ? 1 : 0,
578 1.13 bouyer sense->flags & SSD_FILEMARK ? 1 : 0);
579 1.13 bouyer printf("info: 0x%x 0x%x 0x%x 0x%x followed by %d extra bytes\n",
580 1.13 bouyer sense->info[0],
581 1.13 bouyer sense->info[1],
582 1.13 bouyer sense->info[2],
583 1.13 bouyer sense->info[3],
584 1.13 bouyer sense->extra_len);
585 1.13 bouyer printf("extra: ");
586 1.13 bouyer for (count = 0; count < ADD_BYTES_LIM(sense); count++)
587 1.13 bouyer printf("0x%x ", sense->cmd_spec_info[count]);
588 1.13 bouyer printf("\n");
589 1.13 bouyer }
590 1.13 bouyer #endif /* SCSIDEBUG */
591 1.26.2.1 thorpej
592 1.13 bouyer /*
593 1.26.2.1 thorpej * If the periph has it's own error handler, call it first.
594 1.13 bouyer * If it returns a legit error value, return that, otherwise
595 1.13 bouyer * it wants us to continue with normal error processing.
596 1.13 bouyer */
597 1.26.2.1 thorpej if (periph->periph_switch->psw_error != NULL) {
598 1.13 bouyer SC_DEBUG(sc_link, SDEV_DB2,
599 1.13 bouyer ("calling private err_handler()\n"));
600 1.26.2.1 thorpej error = (*periph->periph_switch->psw_error)(xs);
601 1.26.2.1 thorpej if (error != EJUSTRETURN)
602 1.26.2.1 thorpej return (error);
603 1.13 bouyer }
604 1.13 bouyer /* otherwise use the default */
605 1.13 bouyer switch (sense->error_code & SSD_ERRCODE) {
606 1.13 bouyer /*
607 1.13 bouyer * If it's code 70, use the extended stuff and
608 1.13 bouyer * interpret the key
609 1.13 bouyer */
610 1.13 bouyer case 0x71: /* delayed error */
611 1.26.2.1 thorpej scsipi_printaddr(periph);
612 1.13 bouyer key = sense->flags & SSD_KEY;
613 1.13 bouyer printf(" DEFERRED ERROR, key = 0x%x\n", key);
614 1.13 bouyer /* FALLTHROUGH */
615 1.13 bouyer case 0x70:
616 1.13 bouyer if ((sense->error_code & SSD_ERRCODE_VALID) != 0)
617 1.13 bouyer info = _4btol(sense->info);
618 1.13 bouyer else
619 1.13 bouyer info = 0;
620 1.13 bouyer key = sense->flags & SSD_KEY;
621 1.13 bouyer
622 1.13 bouyer switch (key) {
623 1.13 bouyer case SKEY_NO_SENSE:
624 1.13 bouyer case SKEY_RECOVERED_ERROR:
625 1.13 bouyer if (xs->resid == xs->datalen && xs->datalen) {
626 1.13 bouyer /*
627 1.13 bouyer * Why is this here?
628 1.13 bouyer */
629 1.13 bouyer xs->resid = 0; /* not short read */
630 1.13 bouyer }
631 1.13 bouyer case SKEY_EQUAL:
632 1.13 bouyer error = 0;
633 1.13 bouyer break;
634 1.13 bouyer case SKEY_NOT_READY:
635 1.26.2.1 thorpej if ((periph->periph_flags & PERIPH_REMOVABLE) != 0)
636 1.26.2.1 thorpej periph->periph_flags &= ~PERIPH_MEDIA_LOADED;
637 1.24 thorpej if ((xs->xs_control & XS_CTL_IGNORE_NOT_READY) != 0)
638 1.13 bouyer return (0);
639 1.19 bouyer if (sense->add_sense_code == 0x3A &&
640 1.19 bouyer sense->add_sense_code_qual == 0x00)
641 1.19 bouyer error = ENODEV; /* Medium not present */
642 1.19 bouyer else
643 1.19 bouyer error = EIO;
644 1.24 thorpej if ((xs->xs_control & XS_CTL_SILENT) != 0)
645 1.19 bouyer return (error);
646 1.13 bouyer break;
647 1.13 bouyer case SKEY_ILLEGAL_REQUEST:
648 1.24 thorpej if ((xs->xs_control &
649 1.24 thorpej XS_CTL_IGNORE_ILLEGAL_REQUEST) != 0)
650 1.13 bouyer return (0);
651 1.24 thorpej /*
652 1.24 thorpej * Handle the case where a device reports
653 1.24 thorpej * Logical Unit Not Supported during discovery.
654 1.24 thorpej */
655 1.24 thorpej if ((xs->xs_control & XS_CTL_DISCOVERY) != 0 &&
656 1.24 thorpej sense->add_sense_code == 0x25 &&
657 1.24 thorpej sense->add_sense_code_qual == 0x00)
658 1.24 thorpej return (EINVAL);
659 1.24 thorpej if ((xs->xs_control & XS_CTL_SILENT) != 0)
660 1.13 bouyer return (EIO);
661 1.13 bouyer error = EINVAL;
662 1.13 bouyer break;
663 1.13 bouyer case SKEY_UNIT_ATTENTION:
664 1.20 bouyer if (sense->add_sense_code == 0x29 &&
665 1.26.2.1 thorpej sense->add_sense_code_qual == 0x00) {
666 1.26.2.1 thorpej /* device or bus reset */
667 1.26.2.1 thorpej return (ERESTART);
668 1.26.2.1 thorpej }
669 1.26.2.1 thorpej if ((periph->periph_flags & PERIPH_REMOVABLE) != 0)
670 1.26.2.1 thorpej periph->periph_flags &= ~PERIPH_MEDIA_LOADED;
671 1.24 thorpej if ((xs->xs_control &
672 1.24 thorpej XS_CTL_IGNORE_MEDIA_CHANGE) != 0 ||
673 1.13 bouyer /* XXX Should reupload any transient state. */
674 1.26.2.1 thorpej (periph->periph_flags &
675 1.26.2.1 thorpej PERIPH_REMOVABLE) == 0) {
676 1.13 bouyer return (ERESTART);
677 1.26.2.1 thorpej }
678 1.24 thorpej if ((xs->xs_control & XS_CTL_SILENT) != 0)
679 1.13 bouyer return (EIO);
680 1.13 bouyer error = EIO;
681 1.13 bouyer break;
682 1.13 bouyer case SKEY_WRITE_PROTECT:
683 1.13 bouyer error = EROFS;
684 1.13 bouyer break;
685 1.13 bouyer case SKEY_BLANK_CHECK:
686 1.13 bouyer error = 0;
687 1.13 bouyer break;
688 1.13 bouyer case SKEY_ABORTED_COMMAND:
689 1.13 bouyer error = ERESTART;
690 1.13 bouyer break;
691 1.13 bouyer case SKEY_VOLUME_OVERFLOW:
692 1.13 bouyer error = ENOSPC;
693 1.13 bouyer break;
694 1.13 bouyer default:
695 1.13 bouyer error = EIO;
696 1.13 bouyer break;
697 1.13 bouyer }
698 1.13 bouyer
699 1.13 bouyer #ifdef SCSIVERBOSE
700 1.24 thorpej if ((xs->xs_control & XS_CTL_SILENT) == 0)
701 1.13 bouyer scsipi_print_sense(xs, 0);
702 1.13 bouyer #else
703 1.13 bouyer if (key) {
704 1.26.2.1 thorpej scsipi_printaddr(periph);
705 1.13 bouyer printf("%s", error_mes[key - 1]);
706 1.13 bouyer if ((sense->error_code & SSD_ERRCODE_VALID) != 0) {
707 1.13 bouyer switch (key) {
708 1.13 bouyer case SKEY_NOT_READY:
709 1.13 bouyer case SKEY_ILLEGAL_REQUEST:
710 1.13 bouyer case SKEY_UNIT_ATTENTION:
711 1.13 bouyer case SKEY_WRITE_PROTECT:
712 1.13 bouyer break;
713 1.13 bouyer case SKEY_BLANK_CHECK:
714 1.13 bouyer printf(", requested size: %d (decimal)",
715 1.13 bouyer info);
716 1.13 bouyer break;
717 1.13 bouyer case SKEY_ABORTED_COMMAND:
718 1.26.2.1 thorpej if (xs->xs_retries)
719 1.13 bouyer printf(", retrying");
720 1.13 bouyer printf(", cmd 0x%x, info 0x%x",
721 1.13 bouyer xs->cmd->opcode, info);
722 1.13 bouyer break;
723 1.13 bouyer default:
724 1.13 bouyer printf(", info = %d (decimal)", info);
725 1.13 bouyer }
726 1.13 bouyer }
727 1.13 bouyer if (sense->extra_len != 0) {
728 1.13 bouyer int n;
729 1.13 bouyer printf(", data =");
730 1.13 bouyer for (n = 0; n < sense->extra_len; n++)
731 1.13 bouyer printf(" %02x",
732 1.13 bouyer sense->cmd_spec_info[n]);
733 1.13 bouyer }
734 1.13 bouyer printf("\n");
735 1.13 bouyer }
736 1.13 bouyer #endif
737 1.13 bouyer return (error);
738 1.13 bouyer
739 1.13 bouyer /*
740 1.13 bouyer * Not code 70, just report it
741 1.13 bouyer */
742 1.13 bouyer default:
743 1.26.2.1 thorpej scsipi_printaddr(periph);
744 1.17 mjacob printf("Sense Error Code 0x%x",
745 1.17 mjacob sense->error_code & SSD_ERRCODE);
746 1.13 bouyer if ((sense->error_code & SSD_ERRCODE_VALID) != 0) {
747 1.13 bouyer struct scsipi_sense_data_unextended *usense =
748 1.13 bouyer (struct scsipi_sense_data_unextended *)sense;
749 1.13 bouyer printf(" at block no. %d (decimal)",
750 1.13 bouyer _3btol(usense->block));
751 1.13 bouyer }
752 1.13 bouyer printf("\n");
753 1.13 bouyer return (EIO);
754 1.13 bouyer }
755 1.13 bouyer }
756 1.13 bouyer
757 1.13 bouyer /*
758 1.26.2.1 thorpej * scsipi_size:
759 1.26.2.1 thorpej *
760 1.26.2.1 thorpej * Find out from the device what its capacity is.
761 1.2 bouyer */
762 1.2 bouyer u_long
763 1.26.2.1 thorpej scsipi_size(periph, flags)
764 1.26.2.1 thorpej struct scsipi_periph *periph;
765 1.2 bouyer int flags;
766 1.2 bouyer {
767 1.2 bouyer struct scsipi_read_cap_data rdcap;
768 1.2 bouyer struct scsipi_read_capacity scsipi_cmd;
769 1.2 bouyer
770 1.2 bouyer bzero(&scsipi_cmd, sizeof(scsipi_cmd));
771 1.2 bouyer scsipi_cmd.opcode = READ_CAPACITY;
772 1.2 bouyer
773 1.2 bouyer /*
774 1.2 bouyer * If the command works, interpret the result as a 4 byte
775 1.2 bouyer * number of blocks
776 1.2 bouyer */
777 1.26.2.1 thorpej if (scsipi_command(periph, (struct scsipi_generic *)&scsipi_cmd,
778 1.3 enami sizeof(scsipi_cmd), (u_char *)&rdcap, sizeof(rdcap),
779 1.24 thorpej 2, 20000, NULL, flags | XS_CTL_DATA_IN) != 0) {
780 1.26.2.1 thorpej scsipi_printaddr(periph);
781 1.2 bouyer printf("could not get size\n");
782 1.3 enami return (0);
783 1.2 bouyer }
784 1.2 bouyer
785 1.3 enami return (_4btol(rdcap.addr) + 1);
786 1.2 bouyer }
787 1.2 bouyer
788 1.2 bouyer /*
789 1.26.2.1 thorpej * scsipi_test_unit_ready:
790 1.26.2.1 thorpej *
791 1.26.2.1 thorpej * Issue a `test unit ready' request.
792 1.2 bouyer */
793 1.3 enami int
794 1.26.2.1 thorpej scsipi_test_unit_ready(periph, flags)
795 1.26.2.1 thorpej struct scsipi_periph *periph;
796 1.2 bouyer int flags;
797 1.2 bouyer {
798 1.2 bouyer struct scsipi_test_unit_ready scsipi_cmd;
799 1.2 bouyer
800 1.2 bouyer /* some ATAPI drives don't support TEST_UNIT_READY. Sigh */
801 1.26.2.1 thorpej if (periph->periph_quirks & PQUIRK_NOTUR)
802 1.3 enami return (0);
803 1.2 bouyer
804 1.2 bouyer bzero(&scsipi_cmd, sizeof(scsipi_cmd));
805 1.2 bouyer scsipi_cmd.opcode = TEST_UNIT_READY;
806 1.2 bouyer
807 1.26.2.1 thorpej return (scsipi_command(periph,
808 1.3 enami (struct scsipi_generic *)&scsipi_cmd, sizeof(scsipi_cmd),
809 1.3 enami 0, 0, 2, 10000, NULL, flags));
810 1.2 bouyer }
811 1.2 bouyer
812 1.2 bouyer /*
813 1.26.2.1 thorpej * scsipi_inquire:
814 1.26.2.1 thorpej *
815 1.26.2.1 thorpej * Ask the device about itself.
816 1.2 bouyer */
817 1.3 enami int
818 1.26.2.1 thorpej scsipi_inquire(periph, inqbuf, flags)
819 1.26.2.1 thorpej struct scsipi_periph *periph;
820 1.2 bouyer struct scsipi_inquiry_data *inqbuf;
821 1.2 bouyer int flags;
822 1.2 bouyer {
823 1.2 bouyer struct scsipi_inquiry scsipi_cmd;
824 1.2 bouyer
825 1.2 bouyer bzero(&scsipi_cmd, sizeof(scsipi_cmd));
826 1.2 bouyer scsipi_cmd.opcode = INQUIRY;
827 1.2 bouyer scsipi_cmd.length = sizeof(struct scsipi_inquiry_data);
828 1.2 bouyer
829 1.26.2.1 thorpej return (scsipi_command(periph,
830 1.3 enami (struct scsipi_generic *) &scsipi_cmd, sizeof(scsipi_cmd),
831 1.3 enami (u_char *) inqbuf, sizeof(struct scsipi_inquiry_data),
832 1.24 thorpej 2, 10000, NULL, XS_CTL_DATA_IN | flags));
833 1.2 bouyer }
834 1.2 bouyer
835 1.2 bouyer /*
836 1.26.2.1 thorpej * scsipi_prevent:
837 1.26.2.1 thorpej *
838 1.26.2.1 thorpej * Prevent or allow the user to remove the media
839 1.2 bouyer */
840 1.3 enami int
841 1.26.2.1 thorpej scsipi_prevent(periph, type, flags)
842 1.26.2.1 thorpej struct scsipi_periph *periph;
843 1.2 bouyer int type, flags;
844 1.2 bouyer {
845 1.2 bouyer struct scsipi_prevent scsipi_cmd;
846 1.2 bouyer
847 1.26.2.1 thorpej if (periph->periph_quirks & PQUIRK_NODOORLOCK)
848 1.3 enami return (0);
849 1.2 bouyer
850 1.2 bouyer bzero(&scsipi_cmd, sizeof(scsipi_cmd));
851 1.2 bouyer scsipi_cmd.opcode = PREVENT_ALLOW;
852 1.2 bouyer scsipi_cmd.how = type;
853 1.26.2.1 thorpej
854 1.26.2.1 thorpej return (scsipi_command(periph,
855 1.3 enami (struct scsipi_generic *) &scsipi_cmd, sizeof(scsipi_cmd),
856 1.3 enami 0, 0, 2, 5000, NULL, flags));
857 1.2 bouyer }
858 1.2 bouyer
859 1.2 bouyer /*
860 1.26.2.1 thorpej * scsipi_start:
861 1.26.2.1 thorpej *
862 1.26.2.1 thorpej * Send a START UNIT.
863 1.2 bouyer */
864 1.3 enami int
865 1.26.2.1 thorpej scsipi_start(periph, type, flags)
866 1.26.2.1 thorpej struct scsipi_periph *periph;
867 1.2 bouyer int type, flags;
868 1.2 bouyer {
869 1.2 bouyer struct scsipi_start_stop scsipi_cmd;
870 1.18 bouyer
871 1.26.2.1 thorpej if (periph->periph_quirks & PQUIRK_NOSTARTUNIT)
872 1.18 bouyer return 0;
873 1.2 bouyer
874 1.2 bouyer bzero(&scsipi_cmd, sizeof(scsipi_cmd));
875 1.2 bouyer scsipi_cmd.opcode = START_STOP;
876 1.2 bouyer scsipi_cmd.byte2 = 0x00;
877 1.2 bouyer scsipi_cmd.how = type;
878 1.26.2.1 thorpej
879 1.26.2.1 thorpej return (scsipi_command(periph,
880 1.3 enami (struct scsipi_generic *) &scsipi_cmd, sizeof(scsipi_cmd),
881 1.21 bouyer 0, 0, 2, (type & SSS_START) ? 30000 : 10000, NULL, flags));
882 1.2 bouyer }
883 1.2 bouyer
884 1.2 bouyer /*
885 1.26.2.1 thorpej * scsipi_done:
886 1.26.2.1 thorpej *
887 1.26.2.1 thorpej * This routine is called by an adapter's interrupt handler when
888 1.26.2.1 thorpej * an xfer is completed.
889 1.2 bouyer */
890 1.3 enami void
891 1.2 bouyer scsipi_done(xs)
892 1.2 bouyer struct scsipi_xfer *xs;
893 1.2 bouyer {
894 1.26.2.1 thorpej struct scsipi_periph *periph = xs->xs_periph;
895 1.26.2.1 thorpej struct scsipi_channel *chan = periph->periph_channel;
896 1.26.2.1 thorpej int s, freezecnt;
897 1.2 bouyer
898 1.2 bouyer SC_DEBUG(sc_link, SDEV_DB2, ("scsipi_done\n"));
899 1.2 bouyer #ifdef SCSIDEBUG
900 1.2 bouyer if ((sc_link->flags & SDEV_DB1) != 0)
901 1.2 bouyer show_scsipi_cmd(xs);
902 1.2 bouyer #endif /* SCSIDEBUG */
903 1.2 bouyer
904 1.26.2.1 thorpej s = splbio();
905 1.26.2.1 thorpej /*
906 1.26.2.1 thorpej * The resource this command was using is now free.
907 1.26.2.1 thorpej */
908 1.26.2.1 thorpej scsipi_put_resource(chan);
909 1.26.2.1 thorpej
910 1.26.2.1 thorpej /*
911 1.26.2.1 thorpej * If the command was tagged, free the tag.
912 1.26.2.1 thorpej */
913 1.26.2.1 thorpej if (XS_CTL_TAGTYPE(xs) != 0)
914 1.26.2.1 thorpej scsipi_put_tag(xs);
915 1.26.2.1 thorpej
916 1.26.2.1 thorpej /* Mark the command as `done'. */
917 1.26.2.1 thorpej xs->xs_status |= XS_STS_DONE;
918 1.26.2.1 thorpej
919 1.2 bouyer /*
920 1.3 enami * If it's a user level request, bypass all usual completion
921 1.26.2.1 thorpej * processing, let the user work it out.. We take reponsibility
922 1.26.2.1 thorpej * for freeing the xs (and restarting the device's queue) when
923 1.26.2.1 thorpej * the user returns.
924 1.3 enami */
925 1.24 thorpej if ((xs->xs_control & XS_CTL_USERCMD) != 0) {
926 1.26.2.1 thorpej splx(s);
927 1.2 bouyer SC_DEBUG(sc_link, SDEV_DB3, ("calling user done()\n"));
928 1.26.2.1 thorpej scsipi_user_done(xs);
929 1.2 bouyer SC_DEBUG(sc_link, SDEV_DB3, ("returned from user done()\n "));
930 1.26.2.1 thorpej goto out;
931 1.2 bouyer }
932 1.2 bouyer
933 1.26.2.1 thorpej #ifdef DIAGNOSTIC
934 1.26.2.1 thorpej if ((xs->xs_control & (XS_CTL_ASYNC|XS_CTL_POLL)) ==
935 1.26.2.1 thorpej (XS_CTL_ASYNC|XS_CTL_POLL))
936 1.26.2.1 thorpej panic("scsipi_done: ASYNC and POLL");
937 1.26.2.1 thorpej #endif
938 1.26.2.1 thorpej
939 1.26.2.1 thorpej /*
940 1.26.2.1 thorpej * If the xfer had an error of any sort, freeze the
941 1.26.2.1 thorpej * periph's queue. Freeze it again if we were requested
942 1.26.2.1 thorpej * to do so in the xfer.
943 1.26.2.1 thorpej */
944 1.26.2.1 thorpej freezecnt = 0;
945 1.26.2.1 thorpej if (xs->error != XS_NOERROR)
946 1.26.2.1 thorpej freezecnt++;
947 1.26.2.1 thorpej if (xs->xs_control & XS_CTL_FREEZE_PERIPH)
948 1.26.2.1 thorpej freezecnt++;
949 1.26.2.1 thorpej if (freezecnt != 0)
950 1.26.2.1 thorpej scsipi_periph_freeze(periph, freezecnt);
951 1.26.2.1 thorpej
952 1.26.2.1 thorpej /*
953 1.26.2.1 thorpej * If this was an xfer that was not to complete asynchrnously,
954 1.26.2.1 thorpej * let the requesting thread perform error checking/handling
955 1.26.2.1 thorpej * in its context.
956 1.26.2.1 thorpej */
957 1.24 thorpej if ((xs->xs_control & XS_CTL_ASYNC) == 0) {
958 1.26.2.1 thorpej splx(s);
959 1.2 bouyer /*
960 1.26.2.1 thorpej * If it's a polling job, just return, to unwind the
961 1.26.2.1 thorpej * call graph. We don't need to restart the queue,
962 1.26.2.1 thorpej * because pollings jobs are treated specially, and
963 1.26.2.1 thorpej * are really only used during crash dumps anyway
964 1.26.2.1 thorpej * (XXX or during boot-time autconfiguration of
965 1.26.2.1 thorpej * ATAPI devices).
966 1.2 bouyer */
967 1.26.2.1 thorpej if (xs->xs_control & XS_CTL_POLL)
968 1.26.2.1 thorpej return;
969 1.2 bouyer wakeup(xs);
970 1.26.2.1 thorpej goto out;
971 1.2 bouyer }
972 1.2 bouyer
973 1.2 bouyer /*
974 1.26.2.1 thorpej * Catch the extremely common case of I/O completing
975 1.26.2.1 thorpej * without error; no use in taking a context switch
976 1.26.2.1 thorpej * if we can handle it in interrupt context.
977 1.2 bouyer */
978 1.26.2.1 thorpej if (xs->error == XS_NOERROR) {
979 1.26.2.1 thorpej splx(s);
980 1.26.2.1 thorpej (void) scsipi_complete(xs);
981 1.26.2.1 thorpej goto out;
982 1.20 bouyer }
983 1.2 bouyer
984 1.9 scottr /*
985 1.26.2.1 thorpej * There is an error on this xfer. Put it on the channel's
986 1.26.2.1 thorpej * completion queue, and wake up the completion thread.
987 1.9 scottr */
988 1.26.2.1 thorpej TAILQ_INSERT_TAIL(&chan->chan_complete, xs, channel_q);
989 1.26.2.1 thorpej splx(s);
990 1.26.2.1 thorpej wakeup(&chan->chan_complete);
991 1.26.2.1 thorpej
992 1.26.2.1 thorpej out:
993 1.26.2.1 thorpej /*
994 1.26.2.1 thorpej * If there are more xfers on the channel's queue, attempt to
995 1.26.2.1 thorpej * run them.
996 1.26.2.1 thorpej */
997 1.26.2.1 thorpej scsipi_run_queue(chan);
998 1.2 bouyer }
999 1.2 bouyer
1000 1.26.2.1 thorpej /*
1001 1.26.2.1 thorpej * scsipi_complete:
1002 1.26.2.1 thorpej *
1003 1.26.2.1 thorpej * Completion of a scsipi_xfer. This is the guts of scsipi_done().
1004 1.26.2.1 thorpej *
1005 1.26.2.1 thorpej * NOTE: This routine MUST be called with valid thread context
1006 1.26.2.1 thorpej * except for the case where the following two conditions are
1007 1.26.2.1 thorpej * true:
1008 1.26.2.1 thorpej *
1009 1.26.2.1 thorpej * xs->error == XS_NOERROR
1010 1.26.2.1 thorpej * XS_CTL_ASYNC is set in xs->xs_control
1011 1.26.2.1 thorpej *
1012 1.26.2.1 thorpej * The semantics of this routine can be tricky, so here is an
1013 1.26.2.1 thorpej * explanation:
1014 1.26.2.1 thorpej *
1015 1.26.2.1 thorpej * 0 Xfer completed successfully.
1016 1.26.2.1 thorpej *
1017 1.26.2.1 thorpej * ERESTART Xfer had an error, but was restarted.
1018 1.26.2.1 thorpej *
1019 1.26.2.1 thorpej * anything else Xfer had an error, return value is Unix
1020 1.26.2.1 thorpej * errno.
1021 1.26.2.1 thorpej *
1022 1.26.2.1 thorpej * If the return value is anything but ERESTART:
1023 1.26.2.1 thorpej *
1024 1.26.2.1 thorpej * - If XS_CTL_ASYNC is set, `xs' has been freed back to
1025 1.26.2.1 thorpej * the pool.
1026 1.26.2.1 thorpej * - If there is a buf associated with the xfer,
1027 1.26.2.1 thorpej * it has been biodone()'d.
1028 1.26.2.1 thorpej */
1029 1.2 bouyer int
1030 1.26.2.1 thorpej scsipi_complete(xs)
1031 1.2 bouyer struct scsipi_xfer *xs;
1032 1.2 bouyer {
1033 1.26.2.1 thorpej struct scsipi_periph *periph = xs->xs_periph;
1034 1.26.2.1 thorpej struct scsipi_channel *chan = periph->periph_channel;
1035 1.26.2.1 thorpej struct buf *bp;
1036 1.26.2.1 thorpej int error, s;
1037 1.2 bouyer
1038 1.26.2.1 thorpej #ifdef DIAGNOSTIC
1039 1.26.2.1 thorpej if ((xs->xs_control & XS_CTL_ASYNC) != 0 && xs->bp == NULL)
1040 1.26.2.1 thorpej panic("scsipi_complete: XS_CTL_ASYNC but no buf");
1041 1.26.2.1 thorpej #endif
1042 1.2 bouyer
1043 1.26.2.1 thorpej switch (xs->error) {
1044 1.26.2.1 thorpej case XS_NOERROR:
1045 1.26.2.1 thorpej error = 0;
1046 1.26.2.1 thorpej break;
1047 1.26.2.1 thorpej
1048 1.26.2.1 thorpej case XS_SENSE:
1049 1.26.2.1 thorpej case XS_SHORTSENSE:
1050 1.26.2.1 thorpej error = (*chan->chan_bustype->bustype_interpret_sense)(xs);
1051 1.26.2.1 thorpej break;
1052 1.26.2.1 thorpej
1053 1.26.2.1 thorpej case XS_RESOURCE_SHORTAGE:
1054 1.26.2.1 thorpej /*
1055 1.26.2.1 thorpej * XXX Should freeze channel's queue.
1056 1.26.2.1 thorpej */
1057 1.26.2.1 thorpej scsipi_printaddr(periph);
1058 1.26.2.1 thorpej printf("adapter resource shortage\n");
1059 1.26.2.1 thorpej /* FALLTHROUGH */
1060 1.26.2.1 thorpej
1061 1.26.2.1 thorpej case XS_BUSY:
1062 1.26.2.1 thorpej if (xs->error == XS_BUSY && xs->status == SCSI_QUEUE_FULL) {
1063 1.26.2.1 thorpej struct scsipi_max_openings mo;
1064 1.26.2.1 thorpej
1065 1.26.2.1 thorpej /*
1066 1.26.2.1 thorpej * We set the openings to active - 1, assuming that
1067 1.26.2.1 thorpej * the command that got us here is the first one that
1068 1.26.2.1 thorpej * can't fit into the device's queue. If that's not
1069 1.26.2.1 thorpej * the case, I guess we'll find out soon enough.
1070 1.26.2.1 thorpej */
1071 1.26.2.1 thorpej mo.mo_target = periph->periph_target;
1072 1.26.2.1 thorpej mo.mo_lun = periph->periph_lun;
1073 1.26.2.1 thorpej mo.mo_openings = periph->periph_active - 1;
1074 1.2 bouyer #ifdef DIAGNOSTIC
1075 1.26.2.1 thorpej if (mo.mo_openings < 0) {
1076 1.26.2.1 thorpej scsipi_printaddr(periph);
1077 1.26.2.1 thorpej printf("QUEUE FULL resulted in < 0 openings\n");
1078 1.26.2.1 thorpej panic("scsipi_done");
1079 1.26.2.1 thorpej }
1080 1.2 bouyer #endif
1081 1.26.2.1 thorpej if (mo.mo_openings == 0) {
1082 1.26.2.1 thorpej scsipi_printaddr(periph);
1083 1.26.2.1 thorpej printf("QUEUE FULL resulted in 0 openings\n");
1084 1.26.2.1 thorpej mo.mo_openings = 1;
1085 1.26.2.1 thorpej }
1086 1.26.2.1 thorpej scsipi_async_event(chan, ASYNC_EVENT_MAX_OPENINGS, &mo);
1087 1.26.2.1 thorpej error = ERESTART;
1088 1.26.2.1 thorpej } else if (xs->xs_retries != 0) {
1089 1.26.2.1 thorpej xs->xs_retries--;
1090 1.26.2.1 thorpej /*
1091 1.26.2.1 thorpej * Wait one second, and try again.
1092 1.26.2.1 thorpej */
1093 1.26.2.1 thorpej if (xs->xs_control & XS_CTL_POLL)
1094 1.26.2.1 thorpej delay(1000000);
1095 1.26.2.1 thorpej else {
1096 1.26.2.1 thorpej scsipi_periph_freeze(periph, 1);
1097 1.26.2.1 thorpej timeout(scsipi_periph_timed_thaw, periph, hz);
1098 1.26.2.1 thorpej }
1099 1.26.2.1 thorpej error = ERESTART;
1100 1.26.2.1 thorpej } else
1101 1.26.2.1 thorpej error = EBUSY;
1102 1.26.2.1 thorpej break;
1103 1.2 bouyer
1104 1.26.2.1 thorpej case XS_TIMEOUT:
1105 1.26.2.1 thorpej if (xs->xs_retries != 0) {
1106 1.26.2.1 thorpej xs->xs_retries--;
1107 1.26.2.1 thorpej error = ERESTART;
1108 1.26.2.1 thorpej } else
1109 1.26.2.1 thorpej error = EIO;
1110 1.26.2.1 thorpej break;
1111 1.26.2.1 thorpej
1112 1.26.2.1 thorpej case XS_SELTIMEOUT:
1113 1.26.2.1 thorpej /* XXX Disable device? */
1114 1.26.2.1 thorpej error = EIO;
1115 1.26.2.1 thorpej break;
1116 1.26.2.1 thorpej
1117 1.26.2.1 thorpej case XS_RESET:
1118 1.26.2.1 thorpej if (xs->xs_retries != 0) {
1119 1.26.2.1 thorpej xs->xs_retries--;
1120 1.26.2.1 thorpej error = ERESTART;
1121 1.26.2.1 thorpej } else
1122 1.26.2.1 thorpej error = EIO;
1123 1.26.2.1 thorpej break;
1124 1.2 bouyer
1125 1.2 bouyer default:
1126 1.26.2.1 thorpej scsipi_printaddr(periph);
1127 1.26.2.1 thorpej printf("invalid return code from adapter: %d\n", xs->error);
1128 1.26.2.1 thorpej error = EIO;
1129 1.26.2.1 thorpej break;
1130 1.2 bouyer }
1131 1.2 bouyer
1132 1.26.2.1 thorpej s = splbio();
1133 1.26.2.1 thorpej if (error == ERESTART) {
1134 1.26.2.1 thorpej /*
1135 1.26.2.1 thorpej * If we get here, the periph has been thawed and frozen
1136 1.26.2.1 thorpej * again if we had to issue recovery commands. Alternatively,
1137 1.26.2.1 thorpej * it may have been frozen again and in a timed thaw. In
1138 1.26.2.1 thorpej * any case, we thaw the periph once we re-enqueue the
1139 1.26.2.1 thorpej * command. Once the periph is fully thawed, it will begin
1140 1.26.2.1 thorpej * operation again.
1141 1.26.2.1 thorpej */
1142 1.26.2.1 thorpej xs->error = XS_NOERROR;
1143 1.26.2.1 thorpej xs->status = SCSI_OK;
1144 1.26.2.1 thorpej xs->xs_status &= ~XS_STS_DONE;
1145 1.26.2.1 thorpej xs->xs_requeuecnt++;
1146 1.26.2.1 thorpej error = scsipi_enqueue(xs);
1147 1.26.2.1 thorpej if (error == 0) {
1148 1.26.2.1 thorpej scsipi_periph_thaw(periph, 1);
1149 1.26.2.1 thorpej splx(s);
1150 1.26.2.1 thorpej return (ERESTART);
1151 1.26.2.1 thorpej }
1152 1.26.2.1 thorpej }
1153 1.26.2.1 thorpej
1154 1.26.2.1 thorpej /*
1155 1.26.2.1 thorpej * scsipi_done() freezes the queue if not XS_NOERROR.
1156 1.26.2.1 thorpej * Thaw it here.
1157 1.26.2.1 thorpej */
1158 1.26.2.1 thorpej if (xs->error != XS_NOERROR)
1159 1.26.2.1 thorpej scsipi_periph_thaw(periph, 1);
1160 1.26.2.1 thorpej
1161 1.26.2.1 thorpej if ((bp = xs->bp) != NULL) {
1162 1.26.2.1 thorpej if (error) {
1163 1.26.2.1 thorpej bp->b_error = error;
1164 1.26.2.1 thorpej bp->b_flags |= B_ERROR;
1165 1.26.2.1 thorpej bp->b_resid = bp->b_bcount;
1166 1.26.2.1 thorpej } else {
1167 1.26.2.1 thorpej bp->b_error = 0;
1168 1.26.2.1 thorpej bp->b_resid = xs->resid;
1169 1.26.2.1 thorpej }
1170 1.26.2.1 thorpej biodone(bp);
1171 1.26.2.1 thorpej }
1172 1.26.2.1 thorpej
1173 1.26.2.1 thorpej if (xs->xs_control & XS_CTL_ASYNC)
1174 1.26.2.1 thorpej scsipi_put_xs(xs);
1175 1.26.2.1 thorpej splx(s);
1176 1.26.2.1 thorpej
1177 1.26.2.1 thorpej return (error);
1178 1.26.2.1 thorpej }
1179 1.26.2.1 thorpej
1180 1.26.2.1 thorpej /*
1181 1.26.2.1 thorpej * scsipi_enqueue:
1182 1.26.2.1 thorpej *
1183 1.26.2.1 thorpej * Enqueue an xfer on a channel.
1184 1.26.2.1 thorpej */
1185 1.26.2.1 thorpej int
1186 1.26.2.1 thorpej scsipi_enqueue(xs)
1187 1.26.2.1 thorpej struct scsipi_xfer *xs;
1188 1.26.2.1 thorpej {
1189 1.26.2.1 thorpej struct scsipi_channel *chan = xs->xs_periph->periph_channel;
1190 1.26.2.1 thorpej struct scsipi_xfer *qxs;
1191 1.26.2.1 thorpej int s;
1192 1.26.2.1 thorpej
1193 1.26.2.1 thorpej s = splbio();
1194 1.26.2.1 thorpej
1195 1.26.2.1 thorpej /*
1196 1.26.2.1 thorpej * If the xfer is to be polled, and there are already jobs on
1197 1.26.2.1 thorpej * the queue, we can't proceed.
1198 1.26.2.1 thorpej */
1199 1.26.2.1 thorpej if ((xs->xs_control & XS_CTL_POLL) != 0 &&
1200 1.26.2.1 thorpej TAILQ_FIRST(&chan->chan_queue) != NULL) {
1201 1.26.2.1 thorpej splx(s);
1202 1.26.2.1 thorpej xs->error = XS_DRIVER_STUFFUP;
1203 1.26.2.1 thorpej return (EAGAIN);
1204 1.26.2.1 thorpej }
1205 1.26.2.1 thorpej
1206 1.26.2.1 thorpej /*
1207 1.26.2.1 thorpej * If we have an URGENT xfer, it's an error recovery command
1208 1.26.2.1 thorpej * and it should just go on the head of the channel's queue.
1209 1.26.2.1 thorpej */
1210 1.26.2.1 thorpej if (xs->xs_control & XS_CTL_URGENT) {
1211 1.26.2.1 thorpej TAILQ_INSERT_HEAD(&chan->chan_queue, xs, channel_q);
1212 1.26.2.1 thorpej goto out;
1213 1.26.2.1 thorpej }
1214 1.26.2.1 thorpej
1215 1.26.2.1 thorpej /*
1216 1.26.2.1 thorpej * If this xfer has already been on the queue before, we
1217 1.26.2.1 thorpej * need to reinsert it in the correct order. That order is:
1218 1.26.2.1 thorpej *
1219 1.26.2.1 thorpej * Immediately before the first xfer for this periph
1220 1.26.2.1 thorpej * with a requeuecnt less than xs->xs_requeuecnt.
1221 1.26.2.1 thorpej *
1222 1.26.2.1 thorpej * Failing that, at the end of the queue. (We'll end up
1223 1.26.2.1 thorpej * there naturally.)
1224 1.26.2.1 thorpej */
1225 1.26.2.1 thorpej if (xs->xs_requeuecnt != 0) {
1226 1.26.2.1 thorpej for (qxs = TAILQ_FIRST(&chan->chan_queue); qxs != NULL;
1227 1.26.2.1 thorpej qxs = TAILQ_NEXT(qxs, channel_q)) {
1228 1.26.2.1 thorpej if (qxs->xs_periph == xs->xs_periph &&
1229 1.26.2.1 thorpej qxs->xs_requeuecnt < xs->xs_requeuecnt)
1230 1.26.2.1 thorpej break;
1231 1.26.2.1 thorpej }
1232 1.26.2.1 thorpej if (qxs != NULL) {
1233 1.26.2.1 thorpej TAILQ_INSERT_AFTER(&chan->chan_queue, qxs, xs,
1234 1.26.2.1 thorpej channel_q);
1235 1.26.2.1 thorpej goto out;
1236 1.26.2.1 thorpej }
1237 1.26.2.1 thorpej }
1238 1.26.2.1 thorpej TAILQ_INSERT_TAIL(&chan->chan_queue, xs, channel_q);
1239 1.26.2.1 thorpej out:
1240 1.26.2.1 thorpej if (xs->xs_control & XS_CTL_THAW_PERIPH)
1241 1.26.2.1 thorpej scsipi_periph_thaw(xs->xs_periph, 1);
1242 1.26.2.1 thorpej splx(s);
1243 1.26.2.1 thorpej return (0);
1244 1.26.2.1 thorpej }
1245 1.26.2.1 thorpej
1246 1.26.2.1 thorpej /*
1247 1.26.2.1 thorpej * scsipi_run_queue:
1248 1.26.2.1 thorpej *
1249 1.26.2.1 thorpej * Start as many xfers as possible running on the channel.
1250 1.26.2.1 thorpej */
1251 1.26.2.1 thorpej void
1252 1.26.2.1 thorpej scsipi_run_queue(chan)
1253 1.26.2.1 thorpej struct scsipi_channel *chan;
1254 1.26.2.1 thorpej {
1255 1.26.2.1 thorpej struct scsipi_xfer *xs;
1256 1.26.2.1 thorpej struct scsipi_periph *periph;
1257 1.26.2.1 thorpej int s;
1258 1.26.2.1 thorpej
1259 1.26.2.1 thorpej for (;;) {
1260 1.26.2.1 thorpej s = splbio();
1261 1.26.2.1 thorpej /*
1262 1.26.2.1 thorpej * Look for work to do, and make sure we can do it.
1263 1.26.2.1 thorpej */
1264 1.26.2.1 thorpej for (xs = TAILQ_FIRST(&chan->chan_queue); xs != NULL;
1265 1.26.2.1 thorpej xs = TAILQ_NEXT(xs, channel_q)) {
1266 1.26.2.1 thorpej periph = xs->xs_periph;
1267 1.26.2.1 thorpej
1268 1.26.2.1 thorpej if ((periph->periph_active > periph->periph_openings) || periph->periph_qfreeze != 0)
1269 1.26.2.1 thorpej continue;
1270 1.26.2.1 thorpej
1271 1.26.2.1 thorpej if ((periph->periph_flags & PERIPH_RECOVERING) != 0 &&
1272 1.26.2.1 thorpej (xs->xs_control & XS_CTL_URGENT) == 0)
1273 1.26.2.1 thorpej continue;
1274 1.26.2.1 thorpej
1275 1.26.2.1 thorpej /*
1276 1.26.2.1 thorpej * We can issue this xfer!
1277 1.26.2.1 thorpej */
1278 1.26.2.1 thorpej goto got_one;
1279 1.26.2.1 thorpej }
1280 1.26.2.1 thorpej
1281 1.26.2.1 thorpej /*
1282 1.26.2.1 thorpej * Can't find any work to do right now.
1283 1.26.2.1 thorpej */
1284 1.26.2.1 thorpej splx(s);
1285 1.26.2.1 thorpej return;
1286 1.26.2.1 thorpej
1287 1.26.2.1 thorpej got_one:
1288 1.26.2.1 thorpej /*
1289 1.26.2.1 thorpej * Have an xfer to run. Allocate a resource from
1290 1.26.2.1 thorpej * the adapter to run it. If we can't allocate that
1291 1.26.2.1 thorpej * resource, we don't dequeue the xfer.
1292 1.26.2.1 thorpej */
1293 1.26.2.1 thorpej if (scsipi_get_resource(chan) == 0) {
1294 1.26.2.1 thorpej /*
1295 1.26.2.1 thorpej * Adapter is out of resources. If the adapter
1296 1.26.2.1 thorpej * supports it, attempt to grow them.
1297 1.26.2.1 thorpej */
1298 1.26.2.1 thorpej if (scsipi_grow_resources(chan) == 0) {
1299 1.26.2.1 thorpej /*
1300 1.26.2.1 thorpej * Wasn't able to grow resources,
1301 1.26.2.1 thorpej * nothing more we can do.
1302 1.26.2.1 thorpej */
1303 1.26.2.1 thorpej if (xs->xs_control & XS_CTL_POLL) {
1304 1.26.2.1 thorpej scsipi_printaddr(xs->xs_periph);
1305 1.26.2.1 thorpej printf("polling command but no "
1306 1.26.2.1 thorpej "adapter resources");
1307 1.26.2.1 thorpej /* We'll panic shortly... */
1308 1.26.2.1 thorpej }
1309 1.26.2.1 thorpej splx(s);
1310 1.26.2.1 thorpej return;
1311 1.26.2.1 thorpej }
1312 1.26.2.1 thorpej /*
1313 1.26.2.1 thorpej * scsipi_grow_resources() allocated the resource
1314 1.26.2.1 thorpej * for us.
1315 1.26.2.1 thorpej */
1316 1.26.2.1 thorpej }
1317 1.26.2.1 thorpej
1318 1.26.2.1 thorpej /*
1319 1.26.2.1 thorpej * We have a resource to run this xfer, do it!
1320 1.26.2.1 thorpej */
1321 1.26.2.1 thorpej TAILQ_REMOVE(&chan->chan_queue, xs, channel_q);
1322 1.26.2.1 thorpej
1323 1.26.2.1 thorpej /*
1324 1.26.2.1 thorpej * If the command is to be tagged, allocate a tag ID
1325 1.26.2.1 thorpej * for it.
1326 1.26.2.1 thorpej */
1327 1.26.2.1 thorpej if (XS_CTL_TAGTYPE(xs) != 0)
1328 1.26.2.1 thorpej scsipi_get_tag(xs);
1329 1.26.2.1 thorpej splx(s);
1330 1.26.2.1 thorpej
1331 1.26.2.1 thorpej scsipi_adapter_request(chan, ADAPTER_REQ_RUN_XFER, xs);
1332 1.26.2.1 thorpej }
1333 1.2 bouyer #ifdef DIAGNOSTIC
1334 1.26.2.1 thorpej panic("scsipi_run_queue: impossible");
1335 1.2 bouyer #endif
1336 1.2 bouyer }
1337 1.2 bouyer
1338 1.26.2.1 thorpej /*
1339 1.26.2.1 thorpej * scsipi_execute_xs:
1340 1.26.2.1 thorpej *
1341 1.26.2.1 thorpej * Begin execution of an xfer, waiting for it to complete, if necessary.
1342 1.26.2.1 thorpej */
1343 1.3 enami int
1344 1.26.2.1 thorpej scsipi_execute_xs(xs)
1345 1.2 bouyer struct scsipi_xfer *xs;
1346 1.2 bouyer {
1347 1.26.2.1 thorpej struct scsipi_periph *periph = xs->xs_periph;
1348 1.26.2.1 thorpej struct scsipi_channel *chan = periph->periph_channel;
1349 1.26.2.1 thorpej int async, poll, retries, error, s;
1350 1.26.2.1 thorpej
1351 1.26.2.1 thorpej xs->xs_status &= ~XS_STS_DONE;
1352 1.26.2.1 thorpej xs->error = XS_NOERROR;
1353 1.26.2.1 thorpej xs->resid = xs->datalen;
1354 1.26.2.1 thorpej xs->status = SCSI_OK;
1355 1.26.2.1 thorpej
1356 1.26.2.1 thorpej #ifdef SCSIDEBUG
1357 1.26.2.1 thorpej if (xs->sc_link->flags & SDEV_DB3) {
1358 1.26.2.1 thorpej printf("scsipi_exec_cmd: ");
1359 1.26.2.1 thorpej show_scsipi_xs(xs);
1360 1.26.2.1 thorpej printf("\n");
1361 1.26.2.1 thorpej }
1362 1.26.2.1 thorpej #endif
1363 1.2 bouyer
1364 1.26.2.1 thorpej /*
1365 1.26.2.1 thorpej * Deal with command tagging:
1366 1.26.2.1 thorpej *
1367 1.26.2.1 thorpej * - If the device's current operating mode doesn't
1368 1.26.2.1 thorpej * include tagged queueing, clear the tag mask.
1369 1.26.2.1 thorpej *
1370 1.26.2.1 thorpej * - If the device's current operating mode *does*
1371 1.26.2.1 thorpej * include tagged queueing, set the tag_type in
1372 1.26.2.1 thorpej * the xfer to the appropriate byte for the tag
1373 1.26.2.1 thorpej * message.
1374 1.26.2.1 thorpej */
1375 1.26.2.1 thorpej if ((PERIPH_XFER_MODE(periph) & PERIPH_CAP_TQING) == 0) {
1376 1.26.2.1 thorpej xs->xs_control &= ~XS_CTL_TAGMASK;
1377 1.26.2.1 thorpej xs->xs_tag_type = 0;
1378 1.26.2.1 thorpej } else {
1379 1.26.2.1 thorpej /*
1380 1.26.2.1 thorpej * If the request doesn't specify a tag, give Head
1381 1.26.2.1 thorpej * tags to URGENT operations and Ordered tags to
1382 1.26.2.1 thorpej * everything else.
1383 1.26.2.1 thorpej */
1384 1.26.2.1 thorpej if (XS_CTL_TAGTYPE(xs) == 0) {
1385 1.26.2.1 thorpej if (xs->xs_control & XS_CTL_URGENT)
1386 1.26.2.1 thorpej xs->xs_control |= XS_CTL_HEAD_TAG;
1387 1.26.2.1 thorpej else
1388 1.26.2.1 thorpej xs->xs_control |= XS_CTL_ORDERED_TAG;
1389 1.26.2.1 thorpej }
1390 1.26.2.1 thorpej
1391 1.26.2.1 thorpej switch (XS_CTL_TAGTYPE(xs)) {
1392 1.26.2.1 thorpej case XS_CTL_ORDERED_TAG:
1393 1.26.2.1 thorpej xs->xs_tag_type = MSG_ORDERED_Q_TAG;
1394 1.26.2.1 thorpej break;
1395 1.26.2.1 thorpej
1396 1.26.2.1 thorpej case XS_CTL_SIMPLE_TAG:
1397 1.26.2.1 thorpej xs->xs_tag_type = MSG_SIMPLE_Q_TAG;
1398 1.26.2.1 thorpej break;
1399 1.26.2.1 thorpej
1400 1.26.2.1 thorpej case XS_CTL_HEAD_TAG:
1401 1.26.2.1 thorpej xs->xs_tag_type = MSG_HEAD_OF_Q_TAG;
1402 1.26.2.1 thorpej break;
1403 1.26.2.1 thorpej
1404 1.26.2.1 thorpej default:
1405 1.26.2.1 thorpej scsipi_printaddr(periph);
1406 1.26.2.1 thorpej printf("invalid tag mask 0x%08x\n",
1407 1.26.2.1 thorpej XS_CTL_TAGTYPE(xs));
1408 1.26.2.1 thorpej panic("scsipi_execute_xs");
1409 1.26.2.1 thorpej }
1410 1.26.2.1 thorpej }
1411 1.2 bouyer
1412 1.2 bouyer /*
1413 1.26.2.1 thorpej * If we don't yet have a completion thread, or we are to poll for
1414 1.26.2.1 thorpej * completion, clear the ASYNC flag.
1415 1.2 bouyer */
1416 1.26.2.1 thorpej if (chan->chan_thread == NULL || (xs->xs_control & XS_CTL_POLL) != 0)
1417 1.26.2.1 thorpej xs->xs_control &= ~XS_CTL_ASYNC;
1418 1.2 bouyer
1419 1.26.2.1 thorpej async = (xs->xs_control & XS_CTL_ASYNC);
1420 1.26.2.1 thorpej poll = (xs->xs_control & XS_CTL_POLL);
1421 1.26.2.1 thorpej retries = xs->xs_retries; /* for polling commands */
1422 1.2 bouyer
1423 1.26.2.1 thorpej #ifdef DIAGNOSTIC
1424 1.26.2.1 thorpej if (async != 0 && xs->bp == NULL)
1425 1.26.2.1 thorpej panic("scsipi_execute_xs: XS_CTL_ASYNC but no buf");
1426 1.2 bouyer #endif
1427 1.26.2.1 thorpej
1428 1.26.2.1 thorpej /*
1429 1.26.2.1 thorpej * Enqueue the transfer. If we're not polling for completion, this
1430 1.26.2.1 thorpej * should ALWAYS return `no error'.
1431 1.26.2.1 thorpej */
1432 1.26.2.1 thorpej try_again:
1433 1.26.2.1 thorpej error = scsipi_enqueue(xs);
1434 1.26.2.1 thorpej if (error) {
1435 1.26.2.1 thorpej if (poll == 0) {
1436 1.26.2.1 thorpej scsipi_printaddr(periph);
1437 1.26.2.1 thorpej printf("not polling, but enqueue failed with %d\n",
1438 1.26.2.1 thorpej error);
1439 1.26.2.1 thorpej panic("scsipi_execute_xs");
1440 1.2 bouyer }
1441 1.26.2.1 thorpej
1442 1.26.2.1 thorpej scsipi_printaddr(periph);
1443 1.26.2.1 thorpej printf("failed to enqueue polling command");
1444 1.26.2.1 thorpej if (retries != 0) {
1445 1.26.2.1 thorpej printf(", retrying...\n");
1446 1.26.2.1 thorpej delay(1000000);
1447 1.26.2.1 thorpej retries--;
1448 1.26.2.1 thorpej goto try_again;
1449 1.2 bouyer }
1450 1.26.2.1 thorpej printf("\n");
1451 1.26.2.1 thorpej goto free_xs;
1452 1.26.2.1 thorpej }
1453 1.2 bouyer
1454 1.26.2.1 thorpej restarted:
1455 1.26.2.1 thorpej scsipi_run_queue(chan);
1456 1.12 thorpej
1457 1.26.2.1 thorpej /*
1458 1.26.2.1 thorpej * The xfer is enqueued, and possibly running. If it's to be
1459 1.26.2.1 thorpej * completed asynchronously, just return now.
1460 1.26.2.1 thorpej */
1461 1.26.2.1 thorpej if (async)
1462 1.26.2.1 thorpej return (EJUSTRETURN);
1463 1.26.2.1 thorpej
1464 1.26.2.1 thorpej /*
1465 1.26.2.1 thorpej * Not an asynchronous command; wait for it to complete.
1466 1.26.2.1 thorpej */
1467 1.26.2.1 thorpej while ((xs->xs_status & XS_STS_DONE) == 0) {
1468 1.26.2.1 thorpej if (poll) {
1469 1.26.2.1 thorpej scsipi_printaddr(periph);
1470 1.26.2.1 thorpej printf("polling command not done\n");
1471 1.26.2.1 thorpej panic("scsipi_execute_xs");
1472 1.12 thorpej }
1473 1.26.2.1 thorpej (void) tsleep(xs, PRIBIO, "xscmd", 0);
1474 1.26.2.1 thorpej }
1475 1.2 bouyer
1476 1.26.2.1 thorpej /*
1477 1.26.2.1 thorpej * Command is complete. scsipi_done() has awakened us to perform
1478 1.26.2.1 thorpej * the error handling.
1479 1.26.2.1 thorpej */
1480 1.26.2.1 thorpej error = scsipi_complete(xs);
1481 1.26.2.1 thorpej if (error == ERESTART)
1482 1.26.2.1 thorpej goto restarted;
1483 1.26.2.1 thorpej
1484 1.26.2.1 thorpej /*
1485 1.26.2.1 thorpej * Command completed successfully or fatal error occurred. Fall
1486 1.26.2.1 thorpej * into....
1487 1.26.2.1 thorpej */
1488 1.26.2.1 thorpej free_xs:
1489 1.26.2.1 thorpej s = splbio();
1490 1.26.2.1 thorpej scsipi_put_xs(xs);
1491 1.26.2.1 thorpej splx(s);
1492 1.26.2.1 thorpej
1493 1.26.2.1 thorpej /*
1494 1.26.2.1 thorpej * Kick the queue, keep it running in case it stopped for some
1495 1.26.2.1 thorpej * reason.
1496 1.26.2.1 thorpej */
1497 1.26.2.1 thorpej scsipi_run_queue(chan);
1498 1.26.2.1 thorpej
1499 1.26.2.1 thorpej return (error);
1500 1.26.2.1 thorpej }
1501 1.26.2.1 thorpej
1502 1.26.2.1 thorpej /*
1503 1.26.2.1 thorpej * scsipi_completion_thread:
1504 1.26.2.1 thorpej *
1505 1.26.2.1 thorpej * This is the completion thread. We wait for errors on
1506 1.26.2.1 thorpej * asynchronous xfers, and perform the error handling
1507 1.26.2.1 thorpej * function, restarting the command, if necessary.
1508 1.26.2.1 thorpej */
1509 1.26.2.1 thorpej void
1510 1.26.2.1 thorpej scsipi_completion_thread(arg)
1511 1.26.2.1 thorpej void *arg;
1512 1.26.2.1 thorpej {
1513 1.26.2.1 thorpej struct scsipi_channel *chan = arg;
1514 1.26.2.1 thorpej struct scsipi_xfer *xs;
1515 1.26.2.1 thorpej int s;
1516 1.26.2.1 thorpej
1517 1.26.2.1 thorpej while ((chan->chan_flags & SCSIPI_CHAN_SHUTDOWN) == 0) {
1518 1.26.2.1 thorpej s = splbio();
1519 1.26.2.1 thorpej if ((xs = TAILQ_FIRST(&chan->chan_complete)) == NULL) {
1520 1.26.2.1 thorpej splx(s);
1521 1.26.2.1 thorpej (void) tsleep(&chan->chan_complete, PRIBIO,
1522 1.26.2.1 thorpej "sccomp", 0);
1523 1.26.2.1 thorpej continue;
1524 1.26.2.1 thorpej }
1525 1.26.2.1 thorpej TAILQ_REMOVE(&chan->chan_complete, xs, channel_q);
1526 1.26.2.1 thorpej splx(s);
1527 1.26.2.1 thorpej
1528 1.26.2.1 thorpej /*
1529 1.26.2.1 thorpej * Have an xfer with an error; process it.
1530 1.26.2.1 thorpej */
1531 1.26.2.1 thorpej (void) scsipi_complete(xs);
1532 1.26.2.1 thorpej
1533 1.26.2.1 thorpej /*
1534 1.26.2.1 thorpej * Kick the queue; keep it running if it was stopped
1535 1.26.2.1 thorpej * for some reason.
1536 1.26.2.1 thorpej */
1537 1.26.2.1 thorpej scsipi_run_queue(chan);
1538 1.26.2.1 thorpej }
1539 1.26.2.1 thorpej
1540 1.26.2.1 thorpej chan->chan_thread = NULL;
1541 1.26.2.1 thorpej
1542 1.26.2.1 thorpej /* In case parent is waiting for us to exit. */
1543 1.26.2.1 thorpej wakeup(&chan->chan_thread);
1544 1.26.2.1 thorpej
1545 1.26.2.1 thorpej kthread_exit(0);
1546 1.26.2.1 thorpej }
1547 1.26.2.1 thorpej
1548 1.26.2.1 thorpej /*
1549 1.26.2.1 thorpej * scsipi_create_completion_thread:
1550 1.26.2.1 thorpej *
1551 1.26.2.1 thorpej * Callback to actually create the completion thread.
1552 1.26.2.1 thorpej */
1553 1.26.2.1 thorpej void
1554 1.26.2.1 thorpej scsipi_create_completion_thread(arg)
1555 1.26.2.1 thorpej void *arg;
1556 1.26.2.1 thorpej {
1557 1.26.2.1 thorpej struct scsipi_channel *chan = arg;
1558 1.26.2.1 thorpej struct scsipi_adapter *adapt = chan->chan_adapter;
1559 1.26.2.1 thorpej
1560 1.26.2.1 thorpej if (kthread_create1(scsipi_completion_thread, chan,
1561 1.26.2.1 thorpej &chan->chan_thread, "%s:%d", adapt->adapt_dev->dv_xname,
1562 1.26.2.1 thorpej chan->chan_channel)) {
1563 1.26.2.1 thorpej printf("%s: unable to create completion thread for "
1564 1.26.2.1 thorpej "channel %d\n", adapt->adapt_dev->dv_xname,
1565 1.26.2.1 thorpej chan->chan_channel);
1566 1.26.2.1 thorpej panic("scsipi_create_completion_thread");
1567 1.26.2.1 thorpej }
1568 1.26.2.1 thorpej }
1569 1.26.2.1 thorpej
1570 1.26.2.1 thorpej /*
1571 1.26.2.1 thorpej * scsipi_async_event:
1572 1.26.2.1 thorpej *
1573 1.26.2.1 thorpej * Handle an asynchronous event from an adapter.
1574 1.26.2.1 thorpej */
1575 1.26.2.1 thorpej void
1576 1.26.2.1 thorpej scsipi_async_event(chan, event, arg)
1577 1.26.2.1 thorpej struct scsipi_channel *chan;
1578 1.26.2.1 thorpej scsipi_async_event_t event;
1579 1.26.2.1 thorpej void *arg;
1580 1.26.2.1 thorpej {
1581 1.26.2.1 thorpej int s;
1582 1.26.2.1 thorpej
1583 1.26.2.1 thorpej s = splbio();
1584 1.26.2.1 thorpej switch (event) {
1585 1.26.2.1 thorpej case ASYNC_EVENT_MAX_OPENINGS:
1586 1.26.2.1 thorpej scsipi_async_event_max_openings(chan,
1587 1.26.2.1 thorpej (struct scsipi_max_openings *)arg);
1588 1.2 bouyer break;
1589 1.2 bouyer }
1590 1.26.2.1 thorpej splx(s);
1591 1.26.2.1 thorpej }
1592 1.2 bouyer
1593 1.26.2.1 thorpej /*
1594 1.26.2.1 thorpej * scsipi_print_xfer_mode:
1595 1.26.2.1 thorpej *
1596 1.26.2.1 thorpej * Print a periph's capabilities.
1597 1.26.2.1 thorpej */
1598 1.26.2.1 thorpej void
1599 1.26.2.1 thorpej scsipi_print_xfer_mode(periph)
1600 1.26.2.1 thorpej struct scsipi_periph *periph;
1601 1.26.2.1 thorpej {
1602 1.26.2.1 thorpej int period, freq, speed, mbs;
1603 1.26.2.1 thorpej
1604 1.26.2.1 thorpej if ((periph->periph_flags & PERIPH_MODE_VALID) == 0)
1605 1.26.2.1 thorpej return;
1606 1.26.2.1 thorpej
1607 1.26.2.1 thorpej printf("%s: ", periph->periph_dev->dv_xname);
1608 1.26.2.1 thorpej if (periph->periph_mode & PERIPH_CAP_SYNC) {
1609 1.26.2.1 thorpej period = scsipi_sync_factor_to_period(periph->periph_period);
1610 1.26.2.1 thorpej printf("Sync (%d.%dns offset %d)",
1611 1.26.2.1 thorpej period / 10, period % 10, periph->periph_offset);
1612 1.26.2.1 thorpej } else
1613 1.26.2.1 thorpej printf("Async");
1614 1.26.2.1 thorpej
1615 1.26.2.1 thorpej if (periph->periph_mode & PERIPH_CAP_WIDE32)
1616 1.26.2.1 thorpej printf(", 32-bit");
1617 1.26.2.1 thorpej else if (periph->periph_mode & PERIPH_CAP_WIDE16)
1618 1.26.2.1 thorpej printf(", 16-bit");
1619 1.26.2.1 thorpej else
1620 1.26.2.1 thorpej printf(", 8-bit");
1621 1.26.2.1 thorpej
1622 1.26.2.1 thorpej if (periph->periph_mode & PERIPH_CAP_SYNC) {
1623 1.26.2.1 thorpej freq = scsipi_sync_factor_to_freq(periph->periph_period);
1624 1.26.2.1 thorpej speed = freq;
1625 1.26.2.1 thorpej if (periph->periph_mode & PERIPH_CAP_WIDE32)
1626 1.26.2.1 thorpej speed *= 4;
1627 1.26.2.1 thorpej else if (periph->periph_mode & PERIPH_CAP_WIDE16)
1628 1.26.2.1 thorpej speed *= 2;
1629 1.26.2.1 thorpej mbs = speed / 1000;
1630 1.26.2.1 thorpej if (mbs > 0)
1631 1.26.2.1 thorpej printf(" (%d.%03dMB/s)", mbs, speed % 1000);
1632 1.26.2.1 thorpej else
1633 1.26.2.1 thorpej printf(" (%dKB/s)", speed % 1000);
1634 1.26.2.1 thorpej }
1635 1.26.2.1 thorpej
1636 1.26.2.1 thorpej printf(" transfers");
1637 1.26.2.1 thorpej
1638 1.26.2.1 thorpej if (periph->periph_mode & PERIPH_CAP_TQING)
1639 1.26.2.1 thorpej printf(", tagged queueing");
1640 1.26.2.1 thorpej
1641 1.26.2.1 thorpej printf("\n");
1642 1.2 bouyer }
1643 1.2 bouyer
1644 1.14 thorpej /*
1645 1.26.2.1 thorpej * scsipi_async_event_max_openings:
1646 1.26.2.1 thorpej *
1647 1.26.2.1 thorpej * Update the maximum number of outstanding commands a
1648 1.26.2.1 thorpej * device may have.
1649 1.26.2.1 thorpej */
1650 1.26.2.1 thorpej void
1651 1.26.2.1 thorpej scsipi_async_event_max_openings(chan, mo)
1652 1.26.2.1 thorpej struct scsipi_channel *chan;
1653 1.26.2.1 thorpej struct scsipi_max_openings *mo;
1654 1.26.2.1 thorpej {
1655 1.26.2.1 thorpej struct scsipi_periph *periph;
1656 1.26.2.1 thorpej
1657 1.26.2.1 thorpej periph = scsipi_lookup_periph(chan, mo->mo_target, mo->mo_lun);
1658 1.26.2.1 thorpej if (periph == NULL) {
1659 1.26.2.1 thorpej printf("%s:%d: xfer mode update for non-existent periph at "
1660 1.26.2.1 thorpej "target %d lun %d\n",
1661 1.26.2.1 thorpej chan->chan_adapter->adapt_dev->dv_xname,
1662 1.26.2.1 thorpej chan->chan_channel, mo->mo_target, mo->mo_lun);
1663 1.26.2.1 thorpej return;
1664 1.26.2.1 thorpej }
1665 1.26.2.1 thorpej
1666 1.26.2.1 thorpej if (mo->mo_openings < periph->periph_openings)
1667 1.26.2.1 thorpej periph->periph_openings = mo->mo_openings;
1668 1.26.2.1 thorpej else if (mo->mo_openings > periph->periph_openings &&
1669 1.26.2.1 thorpej (periph->periph_flags & PERIPH_GROW_OPENINGS) != 0)
1670 1.26.2.1 thorpej periph->periph_openings = mo->mo_openings;
1671 1.26.2.1 thorpej }
1672 1.26.2.1 thorpej
1673 1.26.2.1 thorpej /*
1674 1.26.2.1 thorpej * scsipi_adapter_addref:
1675 1.26.2.1 thorpej *
1676 1.26.2.1 thorpej * Add a reference to the adapter pointed to by the provided
1677 1.26.2.1 thorpej * link, enabling the adapter if necessary.
1678 1.14 thorpej */
1679 1.14 thorpej int
1680 1.26.2.1 thorpej scsipi_adapter_addref(adapt)
1681 1.26.2.1 thorpej struct scsipi_adapter *adapt;
1682 1.14 thorpej {
1683 1.14 thorpej int s, error = 0;
1684 1.14 thorpej
1685 1.14 thorpej s = splbio();
1686 1.26.2.1 thorpej if (adapt->adapt_refcnt++ == 0 && adapt->adapt_enable != NULL) {
1687 1.26.2.1 thorpej error = (*adapt->adapt_enable)(adapt->adapt_dev, 1);
1688 1.14 thorpej if (error)
1689 1.26.2.1 thorpej adapt->adapt_refcnt--;
1690 1.14 thorpej }
1691 1.14 thorpej splx(s);
1692 1.14 thorpej return (error);
1693 1.14 thorpej }
1694 1.14 thorpej
1695 1.14 thorpej /*
1696 1.26.2.1 thorpej * scsipi_adapter_delref:
1697 1.26.2.1 thorpej *
1698 1.26.2.1 thorpej * Delete a reference to the adapter pointed to by the provided
1699 1.26.2.1 thorpej * link, disabling the adapter if possible.
1700 1.14 thorpej */
1701 1.14 thorpej void
1702 1.26.2.1 thorpej scsipi_adapter_delref(adapt)
1703 1.26.2.1 thorpej struct scsipi_adapter *adapt;
1704 1.14 thorpej {
1705 1.14 thorpej int s;
1706 1.14 thorpej
1707 1.14 thorpej s = splbio();
1708 1.26.2.1 thorpej if (adapt->adapt_refcnt-- == 1 && adapt->adapt_enable != NULL)
1709 1.26.2.1 thorpej (void) (*adapt->adapt_enable)(adapt->adapt_dev, 0);
1710 1.14 thorpej splx(s);
1711 1.14 thorpej }
1712 1.14 thorpej
1713 1.26.2.1 thorpej struct scsipi_syncparam {
1714 1.26.2.1 thorpej int ss_factor;
1715 1.26.2.1 thorpej int ss_period; /* ns * 10 */
1716 1.26.2.1 thorpej } scsipi_syncparams[] = {
1717 1.26.2.1 thorpej { 0x0a, 250 },
1718 1.26.2.1 thorpej { 0x0b, 303 },
1719 1.26.2.1 thorpej { 0x0c, 500 },
1720 1.26.2.1 thorpej };
1721 1.26.2.1 thorpej const int scsipi_nsyncparams =
1722 1.26.2.1 thorpej sizeof(scsipi_syncparams) / sizeof(scsipi_syncparams[0]);
1723 1.26.2.1 thorpej
1724 1.26.2.1 thorpej int
1725 1.26.2.1 thorpej scsipi_sync_period_to_factor(period)
1726 1.26.2.1 thorpej int period; /* ns * 10 */
1727 1.26.2.1 thorpej {
1728 1.26.2.1 thorpej int i;
1729 1.26.2.1 thorpej
1730 1.26.2.1 thorpej for (i = 0; i < scsipi_nsyncparams; i++) {
1731 1.26.2.1 thorpej if (period <= scsipi_syncparams[i].ss_period)
1732 1.26.2.1 thorpej return (scsipi_syncparams[i].ss_factor);
1733 1.26.2.1 thorpej }
1734 1.26.2.1 thorpej
1735 1.26.2.1 thorpej return ((period / 10) / 4);
1736 1.26.2.1 thorpej }
1737 1.26.2.1 thorpej
1738 1.26.2.1 thorpej int
1739 1.26.2.1 thorpej scsipi_sync_factor_to_period(factor)
1740 1.26.2.1 thorpej int factor;
1741 1.26.2.1 thorpej {
1742 1.26.2.1 thorpej int i;
1743 1.26.2.1 thorpej
1744 1.26.2.1 thorpej for (i = 0; i < scsipi_nsyncparams; i++) {
1745 1.26.2.1 thorpej if (factor == scsipi_syncparams[i].ss_factor)
1746 1.26.2.1 thorpej return (scsipi_syncparams[i].ss_period);
1747 1.26.2.1 thorpej }
1748 1.26.2.1 thorpej
1749 1.26.2.1 thorpej return ((factor * 4) * 10);
1750 1.26.2.1 thorpej }
1751 1.26.2.1 thorpej
1752 1.26.2.1 thorpej int
1753 1.26.2.1 thorpej scsipi_sync_factor_to_freq(factor)
1754 1.26.2.1 thorpej int factor;
1755 1.26.2.1 thorpej {
1756 1.26.2.1 thorpej int i;
1757 1.26.2.1 thorpej
1758 1.26.2.1 thorpej for (i = 0; i < scsipi_nsyncparams; i++) {
1759 1.26.2.1 thorpej if (factor == scsipi_syncparams[i].ss_factor)
1760 1.26.2.1 thorpej return (10000000 / scsipi_syncparams[i].ss_period);
1761 1.26.2.1 thorpej }
1762 1.26.2.1 thorpej
1763 1.26.2.1 thorpej return (10000000 / ((factor * 4) * 10));
1764 1.26.2.1 thorpej }
1765 1.26.2.1 thorpej
1766 1.26.2.1 thorpej #ifdef SCSIDEBUG
1767 1.2 bouyer /*
1768 1.2 bouyer * Given a scsipi_xfer, dump the request, in all it's glory
1769 1.2 bouyer */
1770 1.2 bouyer void
1771 1.2 bouyer show_scsipi_xs(xs)
1772 1.2 bouyer struct scsipi_xfer *xs;
1773 1.2 bouyer {
1774 1.3 enami
1775 1.2 bouyer printf("xs(%p): ", xs);
1776 1.24 thorpej printf("xs_control(0x%08x)", xs->xs_control);
1777 1.24 thorpej printf("xs_status(0x%08x)", xs->xs_status);
1778 1.2 bouyer printf("sc_link(%p)", xs->sc_link);
1779 1.26.2.1 thorpej printf("retr(0x%x)", xs->xs_retries);
1780 1.2 bouyer printf("timo(0x%x)", xs->timeout);
1781 1.2 bouyer printf("cmd(%p)", xs->cmd);
1782 1.2 bouyer printf("len(0x%x)", xs->cmdlen);
1783 1.2 bouyer printf("data(%p)", xs->data);
1784 1.2 bouyer printf("len(0x%x)", xs->datalen);
1785 1.2 bouyer printf("res(0x%x)", xs->resid);
1786 1.2 bouyer printf("err(0x%x)", xs->error);
1787 1.2 bouyer printf("bp(%p)", xs->bp);
1788 1.2 bouyer show_scsipi_cmd(xs);
1789 1.2 bouyer }
1790 1.2 bouyer
1791 1.2 bouyer void
1792 1.2 bouyer show_scsipi_cmd(xs)
1793 1.2 bouyer struct scsipi_xfer *xs;
1794 1.2 bouyer {
1795 1.2 bouyer u_char *b = (u_char *) xs->cmd;
1796 1.3 enami int i = 0;
1797 1.2 bouyer
1798 1.3 enami (*xs->sc_link->sc_print_addr)(xs->sc_link);
1799 1.2 bouyer printf("command: ");
1800 1.2 bouyer
1801 1.24 thorpej if ((xs->xs_control & XS_CTL_RESET) == 0) {
1802 1.2 bouyer while (i < xs->cmdlen) {
1803 1.2 bouyer if (i)
1804 1.2 bouyer printf(",");
1805 1.2 bouyer printf("0x%x", b[i++]);
1806 1.2 bouyer }
1807 1.2 bouyer printf("-[%d bytes]\n", xs->datalen);
1808 1.2 bouyer if (xs->datalen)
1809 1.2 bouyer show_mem(xs->data, min(64, xs->datalen));
1810 1.2 bouyer } else
1811 1.2 bouyer printf("-RESET-\n");
1812 1.2 bouyer }
1813 1.2 bouyer
1814 1.2 bouyer void
1815 1.2 bouyer show_mem(address, num)
1816 1.2 bouyer u_char *address;
1817 1.2 bouyer int num;
1818 1.2 bouyer {
1819 1.2 bouyer int x;
1820 1.2 bouyer
1821 1.2 bouyer printf("------------------------------");
1822 1.2 bouyer for (x = 0; x < num; x++) {
1823 1.2 bouyer if ((x % 16) == 0)
1824 1.2 bouyer printf("\n%03d: ", x);
1825 1.2 bouyer printf("%02x ", *address++);
1826 1.2 bouyer }
1827 1.2 bouyer printf("\n------------------------------\n");
1828 1.2 bouyer }
1829 1.2 bouyer #endif /*SCSIDEBUG */
1830