scsiconf.c revision 1.299 1 1.299 riastrad /* $NetBSD: scsiconf.c,v 1.299 2022/03/12 15:32:32 riastradh Exp $ */
2 1.14 cgd
3 1.106 mycroft /*-
4 1.223 mycroft * Copyright (c) 1998, 1999, 2004 The NetBSD Foundation, Inc.
5 1.106 mycroft * All rights reserved.
6 1.106 mycroft *
7 1.106 mycroft * This code is derived from software contributed to The NetBSD Foundation
8 1.111 thorpej * by Charles M. Hannum; Jason R. Thorpe of the Numerical Aerospace
9 1.111 thorpej * Simulation Facility, NASA Ames Research Center.
10 1.12 mycroft *
11 1.12 mycroft * Redistribution and use in source and binary forms, with or without
12 1.12 mycroft * modification, are permitted provided that the following conditions
13 1.12 mycroft * are met:
14 1.12 mycroft * 1. Redistributions of source code must retain the above copyright
15 1.12 mycroft * notice, this list of conditions and the following disclaimer.
16 1.12 mycroft * 2. Redistributions in binary form must reproduce the above copyright
17 1.12 mycroft * notice, this list of conditions and the following disclaimer in the
18 1.12 mycroft * documentation and/or other materials provided with the distribution.
19 1.12 mycroft *
20 1.106 mycroft * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
21 1.106 mycroft * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
22 1.106 mycroft * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
23 1.106 mycroft * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
24 1.106 mycroft * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
25 1.106 mycroft * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
26 1.106 mycroft * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
27 1.106 mycroft * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28 1.106 mycroft * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
29 1.106 mycroft * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
30 1.106 mycroft * POSSIBILITY OF SUCH DAMAGE.
31 1.12 mycroft */
32 1.12 mycroft
33 1.12 mycroft /*
34 1.12 mycroft * Originally written by Julian Elischer (julian (at) tfs.com)
35 1.5 deraadt * for TRW Financial Systems for use under the MACH(2.5) operating system.
36 1.1 cgd *
37 1.1 cgd * TRW Financial Systems, in accordance with their agreement with Carnegie
38 1.1 cgd * Mellon University, makes this software available to CMU to distribute
39 1.1 cgd * or use in any manner that they see fit as long as this message is kept with
40 1.1 cgd * the software. For this reason TFS also grants any other persons or
41 1.1 cgd * organisations permission to use or modify this software.
42 1.1 cgd *
43 1.1 cgd * TFS supplies this software to be publicly redistributed
44 1.1 cgd * on the understanding that TFS is not responsible for the correct
45 1.1 cgd * functioning of this software in any circumstances.
46 1.7 cgd *
47 1.12 mycroft * Ported to run under 386BSD by Julian Elischer (julian (at) tfs.com) Sept 1992
48 1.1 cgd */
49 1.165 lukem
50 1.165 lukem #include <sys/cdefs.h>
51 1.299 riastrad __KERNEL_RCSID(0, "$NetBSD: scsiconf.c,v 1.299 2022/03/12 15:32:32 riastradh Exp $");
52 1.1 cgd
53 1.10 mycroft #include <sys/param.h>
54 1.10 mycroft #include <sys/systm.h>
55 1.128 thorpej #include <sys/kernel.h>
56 1.128 thorpej #include <sys/proc.h>
57 1.157 bouyer #include <sys/kthread.h>
58 1.12 mycroft #include <sys/malloc.h>
59 1.260 rmind #include <sys/mutex.h>
60 1.260 rmind #include <sys/once.h>
61 1.12 mycroft #include <sys/device.h>
62 1.111 thorpej #include <sys/conf.h>
63 1.113 thorpej #include <sys/fcntl.h>
64 1.112 thorpej #include <sys/scsiio.h>
65 1.188 jmc #include <sys/queue.h>
66 1.277 mlelstv #include <sys/atomic.h>
67 1.294 jakllsch #include <sys/kmem.h>
68 1.10 mycroft
69 1.88 bouyer #include <dev/scsipi/scsi_all.h>
70 1.88 bouyer #include <dev/scsipi/scsipi_all.h>
71 1.88 bouyer #include <dev/scsipi/scsiconf.h>
72 1.92 enami
73 1.88 bouyer #include "locators.h"
74 1.1 cgd
75 1.226 thorpej static const struct scsipi_periphsw scsi_probe_dev = {
76 1.12 mycroft NULL,
77 1.12 mycroft NULL,
78 1.12 mycroft NULL,
79 1.12 mycroft NULL,
80 1.12 mycroft };
81 1.12 mycroft
82 1.188 jmc struct scsi_initq {
83 1.188 jmc struct scsipi_channel *sc_channel;
84 1.188 jmc TAILQ_ENTRY(scsi_initq) scsi_initq;
85 1.188 jmc };
86 1.188 jmc
87 1.260 rmind static ONCE_DECL(scsi_conf_ctrl);
88 1.260 rmind static TAILQ_HEAD(, scsi_initq) scsi_initq_head;
89 1.260 rmind static kmutex_t scsibus_qlock;
90 1.260 rmind static kcondvar_t scsibus_qcv;
91 1.188 jmc
92 1.226 thorpej static int scsi_probe_device(struct scsibus_softc *, int, int);
93 1.157 bouyer
94 1.253 cegger static int scsibusmatch(device_t, cfdata_t, void *);
95 1.253 cegger static void scsibusattach(device_t, device_t, void *);
96 1.253 cegger static int scsibusdetach(device_t, int flags);
97 1.253 cegger static int scsibusrescan(device_t, const char *, const int *);
98 1.253 cegger static void scsidevdetached(device_t, device_t);
99 1.126 thorpej
100 1.251 dyoung CFATTACH_DECL3_NEW(scsibus, sizeof(struct scsibus_softc),
101 1.255 dyoung scsibusmatch, scsibusattach, scsibusdetach, NULL,
102 1.251 dyoung scsibusrescan, scsidevdetached, DVF_DETACH_SHUTDOWN);
103 1.53 thorpej
104 1.94 thorpej extern struct cfdriver scsibus_cd;
105 1.12 mycroft
106 1.226 thorpej static dev_type_open(scsibusopen);
107 1.226 thorpej static dev_type_close(scsibusclose);
108 1.226 thorpej static dev_type_ioctl(scsibusioctl);
109 1.187 gehenna
110 1.187 gehenna const struct cdevsw scsibus_cdevsw = {
111 1.272 dholland .d_open = scsibusopen,
112 1.272 dholland .d_close = scsibusclose,
113 1.272 dholland .d_read = noread,
114 1.272 dholland .d_write = nowrite,
115 1.272 dholland .d_ioctl = scsibusioctl,
116 1.272 dholland .d_stop = nostop,
117 1.272 dholland .d_tty = notty,
118 1.272 dholland .d_poll = nopoll,
119 1.272 dholland .d_mmap = nommap,
120 1.272 dholland .d_kqfilter = nokqfilter,
121 1.273 dholland .d_discard = nodiscard,
122 1.276 mlelstv .d_flag = D_OTHER | D_MPSAFE
123 1.187 gehenna };
124 1.187 gehenna
125 1.226 thorpej static int scsibusprint(void *, const char *);
126 1.275 mlelstv static void scsibus_discover_thread(void *);
127 1.275 mlelstv static void scsibus_config(struct scsibus_softc *);
128 1.62 cgd
129 1.157 bouyer const struct scsipi_bustype scsi_bustype = {
130 1.286 riastrad .bustype_type = SCSIPI_BUSTYPE_BUSTYPE(SCSIPI_BUSTYPE_SCSI,
131 1.286 riastrad SCSIPI_BUSTYPE_SCSI_PSCSI),
132 1.286 riastrad .bustype_cmd = scsi_scsipi_cmd,
133 1.286 riastrad .bustype_interpret_sense = scsipi_interpret_sense,
134 1.286 riastrad .bustype_printaddr = scsi_print_addr,
135 1.286 riastrad .bustype_kill_pending = scsi_kill_pending,
136 1.286 riastrad .bustype_async_event_xfer_mode = scsi_async_event_xfer_mode,
137 1.266 bouyer };
138 1.266 bouyer
139 1.266 bouyer const struct scsipi_bustype scsi_fc_bustype = {
140 1.286 riastrad .bustype_type = SCSIPI_BUSTYPE_BUSTYPE(SCSIPI_BUSTYPE_SCSI,
141 1.286 riastrad SCSIPI_BUSTYPE_SCSI_FC),
142 1.286 riastrad .bustype_cmd = scsi_scsipi_cmd,
143 1.286 riastrad .bustype_interpret_sense = scsipi_interpret_sense,
144 1.286 riastrad .bustype_printaddr = scsi_print_addr,
145 1.286 riastrad .bustype_kill_pending = scsi_kill_pending,
146 1.286 riastrad .bustype_async_event_xfer_mode = scsi_fc_sas_async_event_xfer_mode,
147 1.266 bouyer };
148 1.266 bouyer
149 1.266 bouyer const struct scsipi_bustype scsi_sas_bustype = {
150 1.286 riastrad .bustype_type = SCSIPI_BUSTYPE_BUSTYPE(SCSIPI_BUSTYPE_SCSI,
151 1.286 riastrad SCSIPI_BUSTYPE_SCSI_SAS),
152 1.286 riastrad .bustype_cmd = scsi_scsipi_cmd,
153 1.286 riastrad .bustype_interpret_sense = scsipi_interpret_sense,
154 1.286 riastrad .bustype_printaddr = scsi_print_addr,
155 1.286 riastrad .bustype_kill_pending = scsi_kill_pending,
156 1.286 riastrad .bustype_async_event_xfer_mode = scsi_fc_sas_async_event_xfer_mode,
157 1.266 bouyer };
158 1.266 bouyer
159 1.266 bouyer const struct scsipi_bustype scsi_usb_bustype = {
160 1.286 riastrad .bustype_type = SCSIPI_BUSTYPE_BUSTYPE(SCSIPI_BUSTYPE_SCSI,
161 1.286 riastrad SCSIPI_BUSTYPE_SCSI_USB),
162 1.286 riastrad .bustype_cmd = scsi_scsipi_cmd,
163 1.286 riastrad .bustype_interpret_sense = scsipi_interpret_sense,
164 1.286 riastrad .bustype_printaddr = scsi_print_addr,
165 1.286 riastrad .bustype_kill_pending = scsi_kill_pending,
166 1.286 riastrad .bustype_async_event_xfer_mode = NULL,
167 1.157 bouyer };
168 1.157 bouyer
169 1.260 rmind static int
170 1.260 rmind scsibus_init(void)
171 1.260 rmind {
172 1.260 rmind
173 1.260 rmind TAILQ_INIT(&scsi_initq_head);
174 1.260 rmind mutex_init(&scsibus_qlock, MUTEX_DEFAULT, IPL_NONE);
175 1.260 rmind cv_init(&scsibus_qcv, "scsinitq");
176 1.260 rmind return 0;
177 1.260 rmind }
178 1.260 rmind
179 1.157 bouyer int
180 1.226 thorpej scsiprint(void *aux, const char *pnp)
181 1.157 bouyer {
182 1.157 bouyer struct scsipi_channel *chan = aux;
183 1.157 bouyer struct scsipi_adapter *adapt = chan->chan_adapter;
184 1.157 bouyer
185 1.157 bouyer /* only "scsibus"es can attach to "scsi"s; easy. */
186 1.157 bouyer if (pnp)
187 1.196 thorpej aprint_normal("scsibus at %s", pnp);
188 1.157 bouyer
189 1.157 bouyer /* don't print channel if the controller says there can be only one. */
190 1.157 bouyer if (adapt->adapt_nchannels != 1)
191 1.196 thorpej aprint_normal(" channel %d", chan->chan_channel);
192 1.157 bouyer
193 1.157 bouyer return (UNCONF);
194 1.157 bouyer }
195 1.157 bouyer
196 1.226 thorpej static int
197 1.253 cegger scsibusmatch(device_t parent, cfdata_t cf, void *aux)
198 1.12 mycroft {
199 1.157 bouyer struct scsipi_channel *chan = aux;
200 1.62 cgd
201 1.266 bouyer if (SCSIPI_BUSTYPE_TYPE(chan->chan_bustype->bustype_type) !=
202 1.266 bouyer SCSIPI_BUSTYPE_SCSI)
203 1.157 bouyer return 0;
204 1.62 cgd
205 1.157 bouyer if (cf->cf_loc[SCSICF_CHANNEL] != chan->chan_channel &&
206 1.92 enami cf->cf_loc[SCSICF_CHANNEL] != SCSICF_CHANNEL_DEFAULT)
207 1.62 cgd return (0);
208 1.12 mycroft
209 1.62 cgd return (1);
210 1.12 mycroft }
211 1.12 mycroft
212 1.226 thorpej static void
213 1.253 cegger scsibusattach(device_t parent, device_t self, void *aux)
214 1.12 mycroft {
215 1.236 thorpej struct scsibus_softc *sc = device_private(self);
216 1.157 bouyer struct scsipi_channel *chan = aux;
217 1.188 jmc struct scsi_initq *scsi_initq;
218 1.103 thorpej
219 1.244 jmcneill if (!pmf_device_register(self, NULL, NULL))
220 1.244 jmcneill aprint_error_dev(self, "couldn't establish power handler\n");
221 1.244 jmcneill
222 1.250 drochner sc->sc_dev = self;
223 1.157 bouyer sc->sc_channel = chan;
224 1.250 drochner chan->chan_name = device_xname(sc->sc_dev);
225 1.72 thorpej
226 1.205 thorpej aprint_naive(": SCSI bus\n");
227 1.205 thorpej aprint_normal(": %d target%s, %d lun%s per target\n",
228 1.188 jmc chan->chan_ntargets,
229 1.188 jmc chan->chan_ntargets == 1 ? "" : "s",
230 1.188 jmc chan->chan_nluns,
231 1.188 jmc chan->chan_nluns == 1 ? "" : "s");
232 1.188 jmc
233 1.269 bouyer /*
234 1.269 bouyer * XXX
235 1.269 bouyer * newer adapters support more than 256 outstanding commands
236 1.269 bouyer * per periph and don't use the tag (they eventually allocate one
237 1.269 bouyer * internally). Right now scsipi always allocate a tag and
238 1.269 bouyer * is limited to 256 tags, per scsi specs.
239 1.269 bouyer * this should be revisited
240 1.269 bouyer */
241 1.269 bouyer if (chan->chan_flags & SCSIPI_CHAN_OPENINGS) {
242 1.269 bouyer if (chan->chan_max_periph > 256)
243 1.269 bouyer chan->chan_max_periph = 256;
244 1.269 bouyer } else {
245 1.269 bouyer if (chan->chan_adapter->adapt_max_periph > 256)
246 1.269 bouyer chan->chan_adapter->adapt_max_periph = 256;
247 1.269 bouyer }
248 1.269 bouyer
249 1.277 mlelstv if (atomic_inc_uint_nv(&chan_running(chan)) == 1)
250 1.277 mlelstv mutex_init(chan_mtx(chan), MUTEX_DEFAULT, IPL_BIO);
251 1.277 mlelstv
252 1.276 mlelstv cv_init(&chan->chan_cv_thr, "scshut");
253 1.276 mlelstv cv_init(&chan->chan_cv_comp, "sccomp");
254 1.276 mlelstv cv_init(&chan->chan_cv_xs, "xscmd");
255 1.276 mlelstv
256 1.223 mycroft if (scsipi_adapter_addref(chan->chan_adapter))
257 1.223 mycroft return;
258 1.223 mycroft
259 1.260 rmind RUN_ONCE(&scsi_conf_ctrl, scsibus_init);
260 1.260 rmind
261 1.157 bouyer /* Initialize the channel structure first */
262 1.275 mlelstv chan->chan_init_cb = NULL;
263 1.275 mlelstv chan->chan_init_cb_arg = NULL;
264 1.229 perry
265 1.188 jmc scsi_initq = malloc(sizeof(struct scsi_initq), M_DEVBUF, M_WAITOK);
266 1.188 jmc scsi_initq->sc_channel = chan;
267 1.188 jmc TAILQ_INSERT_TAIL(&scsi_initq_head, scsi_initq, scsi_initq);
268 1.271 christos config_pending_incr(sc->sc_dev);
269 1.157 bouyer if (scsipi_channel_init(chan)) {
270 1.250 drochner aprint_error_dev(sc->sc_dev, "failed to init channel\n");
271 1.157 bouyer return;
272 1.72 thorpej }
273 1.275 mlelstv
274 1.275 mlelstv /*
275 1.275 mlelstv * Create the discover thread
276 1.275 mlelstv */
277 1.275 mlelstv if (kthread_create(PRI_NONE, 0, NULL, scsibus_discover_thread, sc,
278 1.281 mlelstv &chan->chan_dthread, "%s-d", chan->chan_name)) {
279 1.275 mlelstv aprint_error_dev(sc->sc_dev, "unable to create discovery "
280 1.275 mlelstv "thread for channel %d\n", chan->chan_channel);
281 1.275 mlelstv return;
282 1.275 mlelstv }
283 1.128 thorpej }
284 1.128 thorpej
285 1.226 thorpej static void
286 1.275 mlelstv scsibus_discover_thread(void *arg)
287 1.128 thorpej {
288 1.188 jmc struct scsibus_softc *sc = arg;
289 1.275 mlelstv
290 1.275 mlelstv scsibus_config(sc);
291 1.281 mlelstv sc->sc_channel->chan_dthread = NULL;
292 1.275 mlelstv kthread_exit(0);
293 1.275 mlelstv }
294 1.275 mlelstv
295 1.275 mlelstv static void
296 1.275 mlelstv scsibus_config(struct scsibus_softc *sc)
297 1.275 mlelstv {
298 1.275 mlelstv struct scsipi_channel *chan = sc->sc_channel;
299 1.188 jmc struct scsi_initq *scsi_initq;
300 1.157 bouyer
301 1.132 soren #ifndef SCSI_DELAY
302 1.12 mycroft #define SCSI_DELAY 2
303 1.132 soren #endif
304 1.201 bouyer if ((chan->chan_flags & SCSIPI_CHAN_NOSETTLE) == 0 &&
305 1.201 bouyer SCSI_DELAY > 0) {
306 1.250 drochner aprint_normal_dev(sc->sc_dev,
307 1.246 cegger "waiting %d seconds for devices to settle...\n",
308 1.246 cegger SCSI_DELAY);
309 1.201 bouyer /* ...an identifier we know no one will use... */
310 1.276 mlelstv kpause("scsidly", false, SCSI_DELAY * hz, NULL);
311 1.201 bouyer }
312 1.157 bouyer
313 1.188 jmc /* Make sure the devices probe in scsibus order to avoid jitter. */
314 1.260 rmind mutex_enter(&scsibus_qlock);
315 1.188 jmc for (;;) {
316 1.188 jmc scsi_initq = TAILQ_FIRST(&scsi_initq_head);
317 1.188 jmc if (scsi_initq->sc_channel == chan)
318 1.188 jmc break;
319 1.260 rmind cv_wait(&scsibus_qcv, &scsibus_qlock);
320 1.188 jmc }
321 1.260 rmind mutex_exit(&scsibus_qlock);
322 1.128 thorpej
323 1.157 bouyer scsi_probe_bus(sc, -1, -1);
324 1.188 jmc
325 1.260 rmind mutex_enter(&scsibus_qlock);
326 1.188 jmc TAILQ_REMOVE(&scsi_initq_head, scsi_initq, scsi_initq);
327 1.260 rmind cv_broadcast(&scsibus_qcv);
328 1.260 rmind mutex_exit(&scsibus_qlock);
329 1.188 jmc
330 1.188 jmc free(scsi_initq, M_DEVBUF);
331 1.188 jmc
332 1.224 mycroft scsipi_adapter_delref(chan->chan_adapter);
333 1.224 mycroft
334 1.271 christos config_pending_decr(sc->sc_dev);
335 1.12 mycroft }
336 1.12 mycroft
337 1.226 thorpej static int
338 1.253 cegger scsibusdetach(device_t self, int flags)
339 1.126 thorpej {
340 1.236 thorpej struct scsibus_softc *sc = device_private(self);
341 1.157 bouyer struct scsipi_channel *chan = sc->sc_channel;
342 1.222 bouyer int error;
343 1.221 bouyer
344 1.262 hannken /*
345 1.281 mlelstv * Defer while discovery thread is running
346 1.281 mlelstv */
347 1.281 mlelstv while (chan->chan_dthread != NULL)
348 1.281 mlelstv kpause("scsibusdet", false, hz, NULL);
349 1.281 mlelstv
350 1.281 mlelstv /*
351 1.262 hannken * Detach all of the periphs.
352 1.262 hannken */
353 1.280 mlelstv error = scsipi_target_detach(chan, -1, -1, flags);
354 1.280 mlelstv if (error)
355 1.262 hannken return error;
356 1.262 hannken
357 1.244 jmcneill pmf_device_deregister(self);
358 1.126 thorpej
359 1.157 bouyer /*
360 1.280 mlelstv * Shut down the channel.
361 1.221 bouyer */
362 1.221 bouyer scsipi_channel_shutdown(chan);
363 1.264 mrg
364 1.276 mlelstv cv_destroy(&chan->chan_cv_xs);
365 1.276 mlelstv cv_destroy(&chan->chan_cv_comp);
366 1.276 mlelstv cv_destroy(&chan->chan_cv_thr);
367 1.277 mlelstv
368 1.299 riastrad membar_exit();
369 1.299 riastrad if (atomic_dec_uint_nv(&chan_running(chan)) == 0) {
370 1.299 riastrad membar_enter();
371 1.277 mlelstv mutex_destroy(chan_mtx(chan));
372 1.299 riastrad }
373 1.264 mrg
374 1.262 hannken return 0;
375 1.18 mycroft }
376 1.18 mycroft
377 1.294 jakllsch static int
378 1.294 jakllsch lun_compar(const void *a, const void *b)
379 1.294 jakllsch {
380 1.294 jakllsch const uint16_t * const la = a, * const lb = b;
381 1.294 jakllsch
382 1.294 jakllsch if (*la < *lb)
383 1.294 jakllsch return -1;
384 1.294 jakllsch if (*la > *lb)
385 1.294 jakllsch return 1;
386 1.294 jakllsch return 0;
387 1.294 jakllsch }
388 1.294 jakllsch
389 1.294 jakllsch static int
390 1.294 jakllsch scsi_report_luns(struct scsibus_softc *sc, int target,
391 1.294 jakllsch uint16_t ** const luns, size_t *nluns)
392 1.294 jakllsch {
393 1.294 jakllsch struct scsi_report_luns replun;
394 1.294 jakllsch struct scsi_report_luns_header *rlr;
395 1.294 jakllsch struct scsi_report_luns_lun *lunp;
396 1.294 jakllsch
397 1.294 jakllsch struct scsipi_channel *chan = sc->sc_channel;
398 1.294 jakllsch struct scsipi_inquiry_data inqbuf;
399 1.294 jakllsch struct scsipi_periph *periph;
400 1.294 jakllsch uint16_t tmp;
401 1.294 jakllsch
402 1.294 jakllsch int error;
403 1.294 jakllsch size_t i, rlrlen;
404 1.294 jakllsch
405 1.298 hannken memset(&replun, 0, sizeof(replun));
406 1.298 hannken
407 1.294 jakllsch periph = scsipi_alloc_periph(M_WAITOK);
408 1.294 jakllsch periph->periph_channel = chan;
409 1.294 jakllsch periph->periph_switch = &scsi_probe_dev;
410 1.294 jakllsch
411 1.294 jakllsch periph->periph_target = target;
412 1.294 jakllsch periph->periph_lun = 0;
413 1.294 jakllsch periph->periph_quirks = chan->chan_defquirks;
414 1.294 jakllsch
415 1.294 jakllsch if ((error = scsipi_inquire(periph, &inqbuf,
416 1.294 jakllsch XS_CTL_DISCOVERY | XS_CTL_SILENT)))
417 1.294 jakllsch goto end2;
418 1.294 jakllsch periph->periph_version = inqbuf.version & SID_ANSII;
419 1.294 jakllsch if (periph->periph_version < 3) {
420 1.294 jakllsch error = ENOTSUP;
421 1.294 jakllsch goto end2;
422 1.294 jakllsch }
423 1.294 jakllsch
424 1.294 jakllsch rlrlen = sizeof(*rlr) + sizeof(*lunp) * 1;
425 1.294 jakllsch
426 1.294 jakllsch again:
427 1.294 jakllsch rlr = kmem_zalloc(rlrlen, KM_SLEEP);
428 1.294 jakllsch
429 1.294 jakllsch replun.opcode = SCSI_REPORT_LUNS;
430 1.294 jakllsch replun.selectreport = SELECTREPORT_NORMAL;
431 1.294 jakllsch _lto4b(rlrlen, replun.alloclen);
432 1.294 jakllsch
433 1.294 jakllsch error = scsipi_command(periph, (void *)&replun, sizeof(replun),
434 1.294 jakllsch (void *)rlr, rlrlen, SCSIPIRETRIES, 10000, NULL,
435 1.294 jakllsch XS_CTL_DATA_IN | XS_CTL_DISCOVERY | XS_CTL_SILENT);
436 1.294 jakllsch if (error)
437 1.294 jakllsch goto end;
438 1.294 jakllsch
439 1.294 jakllsch if (sizeof(*rlr) + _4btol(rlr->length) > rlrlen &&
440 1.294 jakllsch sizeof(*rlr) + _4btol(rlr->length) <= 32) {
441 1.294 jakllsch const size_t old_rlrlen = rlrlen;
442 1.294 jakllsch rlrlen = sizeof(*rlr) + uimin(_4btol(rlr->length),
443 1.294 jakllsch 16383 * sizeof(*lunp));
444 1.294 jakllsch kmem_free(rlr, old_rlrlen);
445 1.294 jakllsch rlr = NULL;
446 1.294 jakllsch goto again;
447 1.294 jakllsch }
448 1.294 jakllsch
449 1.294 jakllsch KASSERT(nluns != NULL);
450 1.294 jakllsch *nluns = (rlrlen - sizeof(*rlr)) / sizeof(*lunp);
451 1.294 jakllsch
452 1.294 jakllsch KASSERT(luns != NULL);
453 1.294 jakllsch *luns = kmem_alloc(*nluns * sizeof(**luns), KM_SLEEP);
454 1.294 jakllsch
455 1.294 jakllsch for (i = 0; i < *nluns; i++) {
456 1.294 jakllsch lunp = &((struct scsi_report_luns_lun *)&rlr[1])[i];
457 1.294 jakllsch switch (lunp->lun[0] & 0xC0) {
458 1.294 jakllsch default:
459 1.294 jakllsch scsi_print_addr(periph);
460 1.294 jakllsch printf("LUN %016"PRIx64" ignored\n", _8btol(lunp->lun));
461 1.294 jakllsch (*luns)[i] = 0;
462 1.294 jakllsch break;
463 1.294 jakllsch case 0x40:
464 1.294 jakllsch (*luns)[i] = _2btol(&lunp->lun[0]) & 0x3FFF;
465 1.294 jakllsch break;
466 1.294 jakllsch case 0x00:
467 1.294 jakllsch (*luns)[i] = _2btol(&lunp->lun[0]) & 0x00FF;
468 1.294 jakllsch break;
469 1.294 jakllsch }
470 1.294 jakllsch }
471 1.294 jakllsch
472 1.294 jakllsch kheapsort(*luns, *nluns, sizeof(**luns), lun_compar, &tmp);
473 1.294 jakllsch
474 1.294 jakllsch end:
475 1.294 jakllsch if (rlr)
476 1.294 jakllsch kmem_free(rlr, rlrlen);
477 1.294 jakllsch end2:
478 1.294 jakllsch scsipi_free_periph(periph);
479 1.294 jakllsch return error;
480 1.294 jakllsch }
481 1.294 jakllsch
482 1.296 christos static void
483 1.296 christos scsi_discover_luns(struct scsibus_softc *sc, int target, int minlun, int maxlun)
484 1.296 christos {
485 1.297 martin uint16_t *luns = NULL; /* XXX gcc */
486 1.297 martin size_t nluns = 0; /* XXX gcc */
487 1.296 christos
488 1.296 christos if (scsi_report_luns(sc, target, &luns, &nluns) == 0) {
489 1.296 christos for (size_t i = 0; i < nluns; i++)
490 1.296 christos if (luns[i] >= minlun && luns[i] <= maxlun)
491 1.296 christos scsi_probe_device(sc, target, luns[i]);
492 1.296 christos kmem_free(luns, sizeof(*luns) * nluns);
493 1.296 christos return;
494 1.296 christos }
495 1.296 christos
496 1.296 christos for (int lun = minlun; lun <= maxlun; lun++) {
497 1.296 christos /*
498 1.296 christos * See if there's a device present, and configure it.
499 1.296 christos */
500 1.296 christos if (scsi_probe_device(sc, target, lun) == 0)
501 1.296 christos break;
502 1.296 christos /* otherwise something says we should look further */
503 1.296 christos }
504 1.296 christos }
505 1.296 christos
506 1.12 mycroft /*
507 1.12 mycroft * Probe the requested scsi bus. It must be already set up.
508 1.18 mycroft * target and lun optionally narrow the search if not -1
509 1.12 mycroft */
510 1.12 mycroft int
511 1.226 thorpej scsi_probe_bus(struct scsibus_softc *sc, int target, int lun)
512 1.12 mycroft {
513 1.157 bouyer struct scsipi_channel *chan = sc->sc_channel;
514 1.18 mycroft int maxtarget, mintarget, maxlun, minlun;
515 1.116 thorpej int error;
516 1.12 mycroft
517 1.18 mycroft if (target == -1) {
518 1.157 bouyer maxtarget = chan->chan_ntargets - 1;
519 1.18 mycroft mintarget = 0;
520 1.12 mycroft } else {
521 1.157 bouyer if (target < 0 || target >= chan->chan_ntargets)
522 1.92 enami return (EINVAL);
523 1.18 mycroft maxtarget = mintarget = target;
524 1.12 mycroft }
525 1.1 cgd
526 1.12 mycroft if (lun == -1) {
527 1.157 bouyer maxlun = chan->chan_nluns - 1;
528 1.12 mycroft minlun = 0;
529 1.12 mycroft } else {
530 1.157 bouyer if (lun < 0 || lun >= chan->chan_nluns)
531 1.92 enami return (EINVAL);
532 1.12 mycroft maxlun = minlun = lun;
533 1.12 mycroft }
534 1.12 mycroft
535 1.153 ad /*
536 1.153 ad * Some HBAs provide an abstracted view of the bus; give them an
537 1.289 jakllsch * opportunity to re-scan it before we do.
538 1.153 ad */
539 1.276 mlelstv scsipi_adapter_ioctl(chan, SCBUSIOLLSCAN, NULL, 0, curproc);
540 1.153 ad
541 1.157 bouyer if ((error = scsipi_adapter_addref(chan->chan_adapter)) != 0)
542 1.268 jakllsch goto ret;
543 1.18 mycroft for (target = mintarget; target <= maxtarget; target++) {
544 1.157 bouyer if (target == chan->chan_id)
545 1.12 mycroft continue;
546 1.229 perry
547 1.296 christos scsi_discover_luns(sc, target, minlun, maxlun);
548 1.294 jakllsch
549 1.157 bouyer /*
550 1.157 bouyer * Now that we've discovered all of the LUNs on this
551 1.157 bouyer * I_T Nexus, update the xfer mode for all of them
552 1.157 bouyer * that we know about.
553 1.157 bouyer */
554 1.157 bouyer scsipi_set_xfer_mode(chan, target, 1);
555 1.8 deraadt }
556 1.281 mlelstv
557 1.157 bouyer scsipi_adapter_delref(chan->chan_adapter);
558 1.268 jakllsch ret:
559 1.268 jakllsch return (error);
560 1.12 mycroft }
561 1.12 mycroft
562 1.226 thorpej static int
563 1.291 thorpej scsibusrescan(device_t sc, const char *ifattr, const int *locators)
564 1.225 drochner {
565 1.225 drochner
566 1.225 drochner KASSERT(ifattr && !strcmp(ifattr, "scsibus"));
567 1.225 drochner KASSERT(locators);
568 1.225 drochner
569 1.250 drochner return (scsi_probe_bus(device_private(sc),
570 1.225 drochner locators[SCSIBUSCF_TARGET], locators[SCSIBUSCF_LUN]));
571 1.225 drochner }
572 1.225 drochner
573 1.226 thorpej static void
574 1.256 dyoung scsidevdetached(device_t self, device_t child)
575 1.225 drochner {
576 1.256 dyoung struct scsibus_softc *sc = device_private(self);
577 1.256 dyoung struct scsipi_channel *chan = sc->sc_channel;
578 1.225 drochner struct scsipi_periph *periph;
579 1.225 drochner int target, lun;
580 1.225 drochner
581 1.256 dyoung target = device_locator(child, SCSIBUSCF_TARGET);
582 1.256 dyoung lun = device_locator(child, SCSIBUSCF_LUN);
583 1.225 drochner
584 1.276 mlelstv mutex_enter(chan_mtx(chan));
585 1.263 mrg
586 1.276 mlelstv periph = scsipi_lookup_periph_locked(chan, target, lun);
587 1.278 mlelstv KASSERT(periph != NULL && periph->periph_dev == child);
588 1.225 drochner
589 1.225 drochner scsipi_remove_periph(chan, periph);
590 1.276 mlelstv scsipi_free_periph(periph);
591 1.263 mrg
592 1.276 mlelstv mutex_exit(chan_mtx(chan));
593 1.225 drochner }
594 1.225 drochner
595 1.88 bouyer /*
596 1.88 bouyer * Print out autoconfiguration information for a subdevice.
597 1.88 bouyer *
598 1.88 bouyer * This is a slight abuse of 'standard' autoconfiguration semantics,
599 1.88 bouyer * because 'print' functions don't normally print the colon and
600 1.88 bouyer * device information. However, in this case that's better than
601 1.88 bouyer * either printing redundant information before the attach message,
602 1.88 bouyer * or having the device driver call a special function to print out
603 1.88 bouyer * the standard device information.
604 1.88 bouyer */
605 1.226 thorpej static int
606 1.226 thorpej scsibusprint(void *aux, const char *pnp)
607 1.12 mycroft {
608 1.88 bouyer struct scsipibus_attach_args *sa = aux;
609 1.88 bouyer struct scsipi_inquiry_pattern *inqbuf;
610 1.228 reinoud u_int8_t type;
611 1.193 soren const char *dtype;
612 1.88 bouyer char vendor[33], product[65], revision[17];
613 1.88 bouyer int target, lun;
614 1.88 bouyer
615 1.88 bouyer if (pnp != NULL)
616 1.196 thorpej aprint_normal("%s", pnp);
617 1.88 bouyer
618 1.88 bouyer inqbuf = &sa->sa_inqbuf;
619 1.88 bouyer
620 1.157 bouyer target = sa->sa_periph->periph_target;
621 1.157 bouyer lun = sa->sa_periph->periph_lun;
622 1.88 bouyer type = inqbuf->type & SID_TYPE;
623 1.88 bouyer
624 1.193 soren dtype = scsipi_dtype(type);
625 1.2 deraadt
626 1.274 christos strnvisx(vendor, sizeof(vendor), inqbuf->vendor, 8,
627 1.274 christos VIS_TRIM|VIS_SAFE|VIS_OCTAL);
628 1.274 christos strnvisx(product, sizeof(product), inqbuf->product, 16,
629 1.274 christos VIS_TRIM|VIS_SAFE|VIS_OCTAL);
630 1.274 christos strnvisx(revision, sizeof(revision), inqbuf->revision, 4,
631 1.274 christos VIS_TRIM|VIS_SAFE|VIS_OCTAL);
632 1.88 bouyer
633 1.284 kardel aprint_normal(" target %d lun %d: <%s, %s, %s> %s %s%s",
634 1.284 kardel target, lun, vendor, product, revision, dtype,
635 1.284 kardel inqbuf->removable ? "removable" : "fixed",
636 1.284 kardel (sa->sa_periph->periph_opcs != NULL)
637 1.284 kardel ? " timeout-info" : "");
638 1.88 bouyer
639 1.88 bouyer return (UNCONF);
640 1.12 mycroft }
641 1.1 cgd
642 1.226 thorpej static const struct scsi_quirk_inquiry_pattern scsi_quirk_patterns[] = {
643 1.265 christos {{T_DIRECT, T_REMOV,
644 1.265 christos "Apple ", "iPod ", ""}, PQUIRK_START},
645 1.48 christos {{T_CDROM, T_REMOV,
646 1.157 bouyer "CHINON ", "CD-ROM CDS-431 ", ""}, PQUIRK_NOLUNS},
647 1.48 christos {{T_CDROM, T_REMOV,
648 1.208 jrf "CHINON ", "CD-ROM CDS-435 ", ""}, PQUIRK_NOLUNS},
649 1.208 jrf {{T_CDROM, T_REMOV,
650 1.157 bouyer "Chinon ", "CD-ROM CDS-525 ", ""}, PQUIRK_NOLUNS},
651 1.48 christos {{T_CDROM, T_REMOV,
652 1.157 bouyer "CHINON ", "CD-ROM CDS-535 ", ""}, PQUIRK_NOLUNS},
653 1.100 thorpej {{T_CDROM, T_REMOV,
654 1.157 bouyer "DEC ", "RRD42 (C) DEC ", ""}, PQUIRK_NOLUNS},
655 1.48 christos {{T_CDROM, T_REMOV,
656 1.157 bouyer "DENON ", "DRD-25X ", "V"}, PQUIRK_NOLUNS},
657 1.148 bouyer {{T_CDROM, T_REMOV,
658 1.157 bouyer "GENERIC ", "CRD-BP2 ", ""}, PQUIRK_NOLUNS},
659 1.83 mycroft {{T_CDROM, T_REMOV,
660 1.157 bouyer "HP ", "C4324/C4325 ", ""}, PQUIRK_NOLUNS},
661 1.48 christos {{T_CDROM, T_REMOV,
662 1.157 bouyer "IMS ", "CDD521/10 ", "2.06"}, PQUIRK_NOLUNS},
663 1.48 christos {{T_CDROM, T_REMOV,
664 1.157 bouyer "MATSHITA", "CD-ROM CR-5XX ", "1.0b"}, PQUIRK_NOLUNS},
665 1.68 mikel {{T_CDROM, T_REMOV,
666 1.157 bouyer "MEDAVIS ", "RENO CD-ROMX2A ", ""}, PQUIRK_NOLUNS},
667 1.84 perry {{T_CDROM, T_REMOV,
668 1.157 bouyer "MEDIAVIS", "CDR-H93MV ", "1.3"}, PQUIRK_NOLUNS},
669 1.199 bouyer {{T_CDROM, T_REMOV,
670 1.199 bouyer "NEC ", "CD-ROM DRIVE:502", ""}, PQUIRK_NOLUNS},
671 1.48 christos {{T_CDROM, T_REMOV,
672 1.157 bouyer "NEC ", "CD-ROM DRIVE:55 ", ""}, PQUIRK_NOLUNS},
673 1.48 christos {{T_CDROM, T_REMOV,
674 1.157 bouyer "NEC ", "CD-ROM DRIVE:83 ", ""}, PQUIRK_NOLUNS},
675 1.48 christos {{T_CDROM, T_REMOV,
676 1.157 bouyer "NEC ", "CD-ROM DRIVE:84 ", ""}, PQUIRK_NOLUNS},
677 1.48 christos {{T_CDROM, T_REMOV,
678 1.157 bouyer "NEC ", "CD-ROM DRIVE:841", ""}, PQUIRK_NOLUNS},
679 1.208 jrf {{T_CDROM, T_REMOV,
680 1.229 perry "OLYMPUS ", "CDS620E ", "1.1d"},
681 1.208 jrf PQUIRK_NOLUNS|PQUIRK_NOSYNC|PQUIRK_NOCAPACITY},
682 1.70 thorpej {{T_CDROM, T_REMOV,
683 1.157 bouyer "PIONEER ", "CD-ROM DR-124X ", "1.01"}, PQUIRK_NOLUNS},
684 1.208 jrf {{T_CDROM, T_REMOV,
685 1.208 jrf "PLEXTOR ", "CD-ROM PX-4XCS ", "1.01"},
686 1.208 jrf PQUIRK_NOLUNS|PQUIRK_NOSYNC},
687 1.48 christos {{T_CDROM, T_REMOV,
688 1.157 bouyer "SONY ", "CD-ROM CDU-541 ", ""}, PQUIRK_NOLUNS},
689 1.48 christos {{T_CDROM, T_REMOV,
690 1.157 bouyer "SONY ", "CD-ROM CDU-55S ", ""}, PQUIRK_NOLUNS},
691 1.130 hwr {{T_CDROM, T_REMOV,
692 1.157 bouyer "SONY ", "CD-ROM CDU-561 ", ""}, PQUIRK_NOLUNS},
693 1.186 bouyer {{T_CDROM, T_REMOV,
694 1.186 bouyer "SONY ", "CD-ROM CDU-76S", ""},
695 1.186 bouyer PQUIRK_NOLUNS|PQUIRK_NOSYNC|PQUIRK_NOWIDE},
696 1.48 christos {{T_CDROM, T_REMOV,
697 1.157 bouyer "SONY ", "CD-ROM CDU-8003A", ""}, PQUIRK_NOLUNS},
698 1.48 christos {{T_CDROM, T_REMOV,
699 1.157 bouyer "SONY ", "CD-ROM CDU-8012 ", ""}, PQUIRK_NOLUNS},
700 1.48 christos {{T_CDROM, T_REMOV,
701 1.157 bouyer "TEAC ", "CD-ROM ", "1.06"}, PQUIRK_NOLUNS},
702 1.69 explorer {{T_CDROM, T_REMOV,
703 1.157 bouyer "TEAC ", "CD-ROM CD-56S ", "1.0B"}, PQUIRK_NOLUNS},
704 1.48 christos {{T_CDROM, T_REMOV,
705 1.157 bouyer "TEXEL ", "CD-ROM ", "1.06"}, PQUIRK_NOLUNS},
706 1.127 nathanw {{T_CDROM, T_REMOV,
707 1.157 bouyer "TEXEL ", "CD-ROM DM-XX24 K", "1.09"}, PQUIRK_NOLUNS},
708 1.48 christos {{T_CDROM, T_REMOV,
709 1.157 bouyer "TEXEL ", "CD-ROM DM-XX24 K", "1.10"}, PQUIRK_NOLUNS},
710 1.89 pk {{T_CDROM, T_REMOV,
711 1.198 bouyer "TOSHIBA ", "XM-4101TASUNSLCD", ""}, PQUIRK_NOLUNS|PQUIRK_NOSYNC},
712 1.158 pk /* "IBM CDRM00201 !F" 0724 is an IBM OEM Toshiba XM-4101BME */
713 1.158 pk {{T_CDROM, T_REMOV,
714 1.158 pk "IBM ", "CDRM00201 !F", "0724"}, PQUIRK_NOLUNS|PQUIRK_NOSYNC},
715 1.92 enami {{T_CDROM, T_REMOV,
716 1.167 tsutsui "ShinaKen", "CD-ROM DM-3x1S", "1.04"}, PQUIRK_NOLUNS},
717 1.98 explorer {{T_CDROM, T_REMOV,
718 1.157 bouyer "JVC ", "R2626", ""}, PQUIRK_NOLUNS},
719 1.137 sjg {{T_CDROM, T_REMOV,
720 1.157 bouyer "YAMAHA", "CRW8424S", ""}, PQUIRK_NOLUNS},
721 1.156 fvdl {{T_CDROM, T_REMOV,
722 1.195 jdolecek "NEC ", "CD-ROM DRIVE:222", ""}, PQUIRK_NOLUNS|PQUIRK_NOSYNC},
723 1.156 fvdl
724 1.80 pk {{T_DIRECT, T_FIXED,
725 1.157 bouyer "MICROP ", "1588-15MBSUN0669", ""}, PQUIRK_AUTOSAVE},
726 1.110 thorpej {{T_DIRECT, T_FIXED,
727 1.157 bouyer "MICROP ", "2217-15MQ1091501", ""}, PQUIRK_NOSYNCCACHE},
728 1.55 scottr {{T_OPTICAL, T_REMOV,
729 1.157 bouyer "EPSON ", "OMD-5010 ", "3.08"}, PQUIRK_NOLUNS},
730 1.129 hwr {{T_DIRECT, T_FIXED,
731 1.157 bouyer "ADAPTEC ", "AEC-4412BD", "1.2A"}, PQUIRK_NOMODESENSE},
732 1.50 mycroft {{T_DIRECT, T_FIXED,
733 1.171 fredette "ADAPTEC ", "ACB-4000", ""}, PQUIRK_FORCELUNS|PQUIRK_AUTOSAVE|PQUIRK_NOMODESENSE},
734 1.171 fredette {{T_DIRECT, T_FIXED,
735 1.157 bouyer "DEC ", "RZ55 (C) DEC", ""}, PQUIRK_AUTOSAVE},
736 1.48 christos {{T_DIRECT, T_FIXED,
737 1.167 tsutsui "EMULEX ", "MD21/S2 ESDI", "A00"},
738 1.167 tsutsui PQUIRK_FORCELUNS|PQUIRK_AUTOSAVE},
739 1.162 christos {{T_DIRECT, T_FIXED,
740 1.167 tsutsui "MICROP", "1548-15MZ1077801", "HZ2P"}, PQUIRK_NOTAG},
741 1.76 scottr {{T_DIRECT, T_FIXED,
742 1.157 bouyer "HP ", "C372", ""}, PQUIRK_NOTAG},
743 1.108 mjacob {{T_DIRECT, T_FIXED,
744 1.157 bouyer "IBMRAID ", "0662S", ""}, PQUIRK_AUTOSAVE},
745 1.76 scottr {{T_DIRECT, T_FIXED,
746 1.157 bouyer "IBM ", "0663H", ""}, PQUIRK_AUTOSAVE},
747 1.82 thorpej {{T_DIRECT, T_FIXED,
748 1.157 bouyer "IBM", "0664", ""}, PQUIRK_AUTOSAVE},
749 1.84 perry {{T_DIRECT, T_FIXED,
750 1.184 bouyer /* improperly report DT-only sync mode */
751 1.184 bouyer "IBM ", "DXHS36D", ""},
752 1.203 fvdl PQUIRK_CAP_SYNC|PQUIRK_CAP_WIDE16},
753 1.203 fvdl {{T_DIRECT, T_FIXED,
754 1.203 fvdl "IBM ", "DXHS18Y", ""},
755 1.184 bouyer PQUIRK_CAP_SYNC|PQUIRK_CAP_WIDE16},
756 1.184 bouyer {{T_DIRECT, T_FIXED,
757 1.167 tsutsui "IBM ", "H3171-S2", ""},
758 1.167 tsutsui PQUIRK_NOLUNS|PQUIRK_AUTOSAVE},
759 1.96 scottr {{T_DIRECT, T_FIXED,
760 1.157 bouyer "IBM ", "KZ-C", ""}, PQUIRK_AUTOSAVE},
761 1.81 thorpej /* Broken IBM disk */
762 1.81 thorpej {{T_DIRECT, T_FIXED,
763 1.157 bouyer "" , "DFRSS2F", ""}, PQUIRK_AUTOSAVE},
764 1.241 christos {{T_DIRECT, T_FIXED,
765 1.241 christos "Initio ", "", ""}, PQUIRK_NOBIGMODESENSE},
766 1.282 christos {{T_DIRECT, T_FIXED,
767 1.282 christos "JMicron ", "Generic ", ""}, PQUIRK_NOFUA},
768 1.87 mjacob {{T_DIRECT, T_REMOV,
769 1.157 bouyer "MPL ", "MC-DISK- ", ""}, PQUIRK_NOLUNS},
770 1.48 christos {{T_DIRECT, T_FIXED,
771 1.157 bouyer "MAXTOR ", "XT-3280 ", ""}, PQUIRK_NOLUNS},
772 1.48 christos {{T_DIRECT, T_FIXED,
773 1.157 bouyer "MAXTOR ", "XT-4380S ", ""}, PQUIRK_NOLUNS},
774 1.48 christos {{T_DIRECT, T_FIXED,
775 1.157 bouyer "MAXTOR ", "MXT-1240S ", ""}, PQUIRK_NOLUNS},
776 1.48 christos {{T_DIRECT, T_FIXED,
777 1.157 bouyer "MAXTOR ", "XT-4170S ", ""}, PQUIRK_NOLUNS},
778 1.48 christos {{T_DIRECT, T_FIXED,
779 1.157 bouyer "MAXTOR ", "XT-8760S", ""}, PQUIRK_NOLUNS},
780 1.48 christos {{T_DIRECT, T_FIXED,
781 1.157 bouyer "MAXTOR ", "LXT-213S ", ""}, PQUIRK_NOLUNS},
782 1.48 christos {{T_DIRECT, T_FIXED,
783 1.157 bouyer "MAXTOR ", "LXT-213S SUN0207", ""}, PQUIRK_NOLUNS},
784 1.52 thorpej {{T_DIRECT, T_FIXED,
785 1.157 bouyer "MAXTOR ", "LXT-200S ", ""}, PQUIRK_NOLUNS},
786 1.48 christos {{T_DIRECT, T_FIXED,
787 1.157 bouyer "MEGADRV ", "EV1000", ""}, PQUIRK_NOMODESENSE},
788 1.178 chs {{T_DIRECT, T_FIXED,
789 1.178 chs "MICROP", "1991-27MZ", ""}, PQUIRK_NOTAG},
790 1.90 mjacob {{T_DIRECT, T_FIXED,
791 1.157 bouyer "MST ", "SnapLink ", ""}, PQUIRK_NOLUNS},
792 1.54 hpeyerl {{T_DIRECT, T_FIXED,
793 1.157 bouyer "NEC ", "D3847 ", "0307"}, PQUIRK_NOLUNS},
794 1.96 scottr {{T_DIRECT, T_FIXED,
795 1.157 bouyer "QUANTUM ", "ELS85S ", ""}, PQUIRK_AUTOSAVE},
796 1.48 christos {{T_DIRECT, T_FIXED,
797 1.157 bouyer "QUANTUM ", "LPS525S ", ""}, PQUIRK_NOLUNS},
798 1.48 christos {{T_DIRECT, T_FIXED,
799 1.157 bouyer "QUANTUM ", "P105S 910-10-94x", ""}, PQUIRK_NOLUNS},
800 1.48 christos {{T_DIRECT, T_FIXED,
801 1.157 bouyer "QUANTUM ", "PD1225S ", ""}, PQUIRK_NOLUNS},
802 1.48 christos {{T_DIRECT, T_FIXED,
803 1.157 bouyer "QUANTUM ", "PD210S SUN0207", ""}, PQUIRK_NOLUNS},
804 1.48 christos {{T_DIRECT, T_FIXED,
805 1.202 fvdl "QUANTUM ", "ATLAS IV 9 WLS", "0A0A"}, PQUIRK_CAP_NODT},
806 1.202 fvdl {{T_DIRECT, T_FIXED,
807 1.157 bouyer "RODIME ", "RO3000S ", ""}, PQUIRK_NOLUNS},
808 1.75 scottr {{T_DIRECT, T_FIXED,
809 1.157 bouyer "SEAGATE ", "ST125N ", ""}, PQUIRK_NOLUNS},
810 1.48 christos {{T_DIRECT, T_FIXED,
811 1.157 bouyer "SEAGATE ", "ST157N ", ""}, PQUIRK_NOLUNS},
812 1.48 christos {{T_DIRECT, T_FIXED,
813 1.157 bouyer "SEAGATE ", "ST296 ", ""}, PQUIRK_NOLUNS},
814 1.48 christos {{T_DIRECT, T_FIXED,
815 1.157 bouyer "SEAGATE ", "ST296N ", ""}, PQUIRK_NOLUNS},
816 1.204 fvdl {{T_DIRECT, T_FIXED,
817 1.204 fvdl "SEAGATE ", "ST318404LC ", ""}, PQUIRK_NOLUNS},
818 1.163 mjl {{T_DIRECT, T_FIXED,
819 1.283 tsutsui "SEAGATE ", "ST336753LC ", ""}, PQUIRK_NOLUNS},
820 1.283 tsutsui {{T_DIRECT, T_FIXED,
821 1.283 tsutsui "SEAGATE ", "ST336753LW ", ""}, PQUIRK_NOLUNS},
822 1.283 tsutsui {{T_DIRECT, T_FIXED,
823 1.283 tsutsui "SEAGATE ", "ST336754LC ", ""}, PQUIRK_NOLUNS},
824 1.283 tsutsui {{T_DIRECT, T_FIXED,
825 1.279 tsutsui "SEAGATE ", "ST39236LC ", ""}, PQUIRK_NOLUNS},
826 1.279 tsutsui {{T_DIRECT, T_FIXED,
827 1.163 mjl "SEAGATE ", "ST15150N ", ""}, PQUIRK_NOTAG},
828 1.86 mjacob {{T_DIRECT, T_FIXED,
829 1.157 bouyer "SEAGATE ", "ST19171", ""}, PQUIRK_NOMODESENSE},
830 1.90 mjacob {{T_DIRECT, T_FIXED,
831 1.170 tsutsui "SEAGATE ", "ST32430N", ""}, PQUIRK_CAP_SYNC},
832 1.170 tsutsui {{T_DIRECT, T_FIXED,
833 1.157 bouyer "SEAGATE ", "ST34501FC ", ""}, PQUIRK_NOMODESENSE},
834 1.48 christos {{T_DIRECT, T_FIXED,
835 1.220 bouyer "SEAGATE ", "SX910800N", ""}, PQUIRK_NOTAG},
836 1.220 bouyer {{T_DIRECT, T_FIXED,
837 1.157 bouyer "TOSHIBA ", "MK538FB ", "6027"}, PQUIRK_NOLUNS},
838 1.197 pk {{T_DIRECT, T_FIXED,
839 1.197 pk "MICROP ", "1924", ""}, PQUIRK_CAP_SYNC},
840 1.197 pk {{T_DIRECT, T_FIXED,
841 1.197 pk "FUJITSU ", "M2266", ""}, PQUIRK_CAP_SYNC},
842 1.237 bjh21 {{T_DIRECT, T_FIXED,
843 1.237 bjh21 "FUJITSU ", "M2624S-512 ", ""}, PQUIRK_CAP_SYNC},
844 1.242 bouyer {{T_DIRECT, T_FIXED,
845 1.242 bouyer "SEAGATE ", "SX336704LC" , ""}, PQUIRK_CAP_SYNC | PQUIRK_CAP_WIDE16},
846 1.259 macallan {{T_DIRECT, T_FIXED,
847 1.259 macallan "SEAGATE ", "SX173404LC", ""}, PQUIRK_CAP_SYNC | PQUIRK_CAP_WIDE16},
848 1.156 fvdl
849 1.58 christos {{T_DIRECT, T_REMOV,
850 1.259 macallan "IOMEGA", "ZIP 100", "J.03"}, PQUIRK_NOLUNS|PQUIRK_NOSYNC},
851 1.168 soren {{T_DIRECT, T_REMOV,
852 1.212 mycroft "INSITE", "I325VM", ""}, PQUIRK_NOLUNS},
853 1.18 mycroft
854 1.37 cgd /* XXX: QIC-36 tape behind Emulex adapter. Very broken. */
855 1.48 christos {{T_SEQUENTIAL, T_REMOV,
856 1.157 bouyer " ", " ", " "}, PQUIRK_NOLUNS},
857 1.171 fredette {{T_SEQUENTIAL, T_REMOV,
858 1.171 fredette "EMULEX ", "MT-02 QIC ", ""}, PQUIRK_NOLUNS},
859 1.48 christos {{T_SEQUENTIAL, T_REMOV,
860 1.157 bouyer "CALIPER ", "CP150 ", ""}, PQUIRK_NOLUNS},
861 1.48 christos {{T_SEQUENTIAL, T_REMOV,
862 1.157 bouyer "EXABYTE ", "EXB-8200 ", ""}, PQUIRK_NOLUNS},
863 1.48 christos {{T_SEQUENTIAL, T_REMOV,
864 1.157 bouyer "SONY ", "GY-10C ", ""}, PQUIRK_NOLUNS},
865 1.87 mjacob {{T_SEQUENTIAL, T_REMOV,
866 1.157 bouyer "SONY ", "SDT-2000 ", "2.09"}, PQUIRK_NOLUNS},
867 1.48 christos {{T_SEQUENTIAL, T_REMOV,
868 1.157 bouyer "SONY ", "SDT-5000 ", "3."}, PQUIRK_NOSYNC|PQUIRK_NOWIDE},
869 1.48 christos {{T_SEQUENTIAL, T_REMOV,
870 1.157 bouyer "SONY ", "SDT-5200 ", "3."}, PQUIRK_NOLUNS},
871 1.48 christos {{T_SEQUENTIAL, T_REMOV,
872 1.157 bouyer "TANDBERG", " TDC 3600 ", ""}, PQUIRK_NOLUNS},
873 1.47 pk /* Following entry reported as a Tandberg 3600; ref. PR1933 */
874 1.48 christos {{T_SEQUENTIAL, T_REMOV,
875 1.157 bouyer "ARCHIVE ", "VIPER 150 21247", ""}, PQUIRK_NOLUNS},
876 1.91 bouyer /* Following entry for a Cipher ST150S; ref. PR4171 */
877 1.91 bouyer {{T_SEQUENTIAL, T_REMOV,
878 1.157 bouyer "ARCHIVE ", "VIPER 1500 21247", "2.2G"}, PQUIRK_NOLUNS},
879 1.80 pk {{T_SEQUENTIAL, T_REMOV,
880 1.157 bouyer "ARCHIVE ", "Python 28454-XXX", ""}, PQUIRK_NOLUNS},
881 1.48 christos {{T_SEQUENTIAL, T_REMOV,
882 1.157 bouyer "WANGTEK ", "5099ES SCSI", ""}, PQUIRK_NOLUNS},
883 1.48 christos {{T_SEQUENTIAL, T_REMOV,
884 1.157 bouyer "WANGTEK ", "5150ES SCSI", ""}, PQUIRK_NOLUNS},
885 1.125 hwr {{T_SEQUENTIAL, T_REMOV,
886 1.157 bouyer "WANGTEK ", "SCSI-36", ""}, PQUIRK_NOLUNS},
887 1.48 christos {{T_SEQUENTIAL, T_REMOV,
888 1.157 bouyer "WangDAT ", "Model 1300 ", "02.4"}, PQUIRK_NOSYNC|PQUIRK_NOWIDE},
889 1.48 christos {{T_SEQUENTIAL, T_REMOV,
890 1.157 bouyer "WangDAT ", "Model 2600 ", "01.7"}, PQUIRK_NOSYNC|PQUIRK_NOWIDE},
891 1.48 christos {{T_SEQUENTIAL, T_REMOV,
892 1.157 bouyer "WangDAT ", "Model 3200 ", "02.2"}, PQUIRK_NOSYNC|PQUIRK_NOWIDE},
893 1.133 nisimura {{T_SEQUENTIAL, T_REMOV,
894 1.157 bouyer "TEAC ", "MT-2ST/N50 ", ""}, PQUIRK_NOLUNS},
895 1.87 mjacob
896 1.101 bouyer {{T_SCANNER, T_FIXED,
897 1.157 bouyer "RICOH ", "IS60 ", "1R08"}, PQUIRK_NOLUNS},
898 1.99 thorpej {{T_SCANNER, T_FIXED,
899 1.157 bouyer "UMAX ", "Astra 1200S ", "V2.9"}, PQUIRK_NOLUNS},
900 1.102 fvdl {{T_SCANNER, T_FIXED,
901 1.157 bouyer "UMAX ", "Astra 1220S ", ""}, PQUIRK_NOLUNS},
902 1.85 explorer {{T_SCANNER, T_FIXED,
903 1.157 bouyer "UMAX ", "UMAX S-6E ", "V2.0"}, PQUIRK_NOLUNS},
904 1.95 mikel {{T_SCANNER, T_FIXED,
905 1.157 bouyer "UMAX ", "UMAX S-12 ", "V2.1"}, PQUIRK_NOLUNS},
906 1.135 martin {{T_SCANNER, T_FIXED,
907 1.167 tsutsui "ULTIMA ", "A6000C ", ""}, PQUIRK_NOLUNS},
908 1.150 mjacob {{T_PROCESSOR, T_FIXED,
909 1.249 hannken "ESG-SHV", "SCA HSBP M15", ""}, PQUIRK_NOLUNS},
910 1.249 hannken {{T_PROCESSOR, T_FIXED,
911 1.167 tsutsui "SYMBIOS", "", ""}, PQUIRK_NOLUNS},
912 1.87 mjacob {{T_PROCESSOR, T_FIXED,
913 1.157 bouyer "LITRONIC", "PCMCIA ", ""}, PQUIRK_NOLUNS},
914 1.109 thorpej {{T_CHANGER, T_REMOV,
915 1.157 bouyer "SONY ", "CDL1100 ", ""}, PQUIRK_NOLUNS},
916 1.119 mjacob {{T_ENCLOSURE, T_FIXED,
917 1.167 tsutsui "SUN ", "SENA ", ""}, PQUIRK_NOLUNS},
918 1.18 mycroft };
919 1.18 mycroft
920 1.12 mycroft /*
921 1.95 mikel * given a target and lun, ask the device what
922 1.12 mycroft * it is, and find the correct driver table
923 1.12 mycroft * entry.
924 1.12 mycroft */
925 1.226 thorpej static int
926 1.226 thorpej scsi_probe_device(struct scsibus_softc *sc, int target, int lun)
927 1.18 mycroft {
928 1.157 bouyer struct scsipi_channel *chan = sc->sc_channel;
929 1.157 bouyer struct scsipi_periph *periph;
930 1.140 enami struct scsipi_inquiry_data inqbuf;
931 1.230 christos const struct scsi_quirk_inquiry_pattern *finger;
932 1.157 bouyer int checkdtype, priority, docontinue, quirks;
933 1.88 bouyer struct scsipibus_attach_args sa;
934 1.252 cegger cfdata_t cf;
935 1.231 drochner int locs[SCSIBUSCF_NLOCS];
936 1.18 mycroft
937 1.119 mjacob /*
938 1.289 jakllsch * Assume no more LUNs to search after this one.
939 1.119 mjacob * If we successfully get Inquiry data and after
940 1.119 mjacob * merging quirks we find we can probe for more
941 1.289 jakllsch * LUNs, we will.
942 1.119 mjacob */
943 1.119 mjacob docontinue = 0;
944 1.119 mjacob
945 1.18 mycroft /* Skip this slot if it is already attached. */
946 1.157 bouyer if (scsipi_lookup_periph(chan, target, lun) != NULL)
947 1.119 mjacob return (docontinue);
948 1.18 mycroft
949 1.285 chs periph = scsipi_alloc_periph(M_WAITOK);
950 1.157 bouyer periph->periph_channel = chan;
951 1.157 bouyer periph->periph_switch = &scsi_probe_dev;
952 1.157 bouyer
953 1.157 bouyer periph->periph_target = target;
954 1.157 bouyer periph->periph_lun = lun;
955 1.157 bouyer periph->periph_quirks = chan->chan_defquirks;
956 1.157 bouyer
957 1.157 bouyer #ifdef SCSIPI_DEBUG
958 1.157 bouyer if (SCSIPI_DEBUG_TYPE == SCSIPI_BUSTYPE_SCSI &&
959 1.157 bouyer SCSIPI_DEBUG_TARGET == target &&
960 1.157 bouyer SCSIPI_DEBUG_LUN == lun)
961 1.157 bouyer periph->periph_dbflags |= SCSIPI_DEBUG_FLAGS;
962 1.157 bouyer #endif
963 1.12 mycroft
964 1.12 mycroft /*
965 1.12 mycroft * Ask the device what it is
966 1.12 mycroft */
967 1.18 mycroft
968 1.23 mycroft #ifdef SCSI_2_DEF
969 1.12 mycroft /* some devices need to be told to go to SCSI2 */
970 1.12 mycroft /* However some just explode if you tell them this.. leave it out */
971 1.157 bouyer scsi_change_def(periph, XS_CTL_DISCOVERY | XS_CTL_SILENT);
972 1.18 mycroft #endif /* SCSI_2_DEF */
973 1.18 mycroft
974 1.18 mycroft /* Now go ask the device all about itself. */
975 1.157 bouyer memset(&inqbuf, 0, sizeof(inqbuf));
976 1.18 mycroft {
977 1.228 reinoud u_int8_t *extension = &inqbuf.flags1;
978 1.215 mycroft int len = 0;
979 1.20 mycroft while (len < 3)
980 1.141 dante extension[len++] = '\0';
981 1.20 mycroft while (len < 3 + 28)
982 1.141 dante extension[len++] = ' ';
983 1.141 dante while (len < 3 + 28 + 20)
984 1.141 dante extension[len++] = '\0';
985 1.141 dante while (len < 3 + 28 + 20 + 1)
986 1.141 dante extension[len++] = '\0';
987 1.142 dante while (len < 3 + 28 + 20 + 1 + 1)
988 1.142 dante extension[len++] = '\0';
989 1.142 dante while (len < 3 + 28 + 20 + 1 + 1 + (8*2))
990 1.142 dante extension[len++] = ' ';
991 1.18 mycroft }
992 1.254 rmind if (scsipi_inquire(periph, &inqbuf, XS_CTL_DISCOVERY | XS_CTL_SILENT))
993 1.215 mycroft goto bad;
994 1.18 mycroft
995 1.157 bouyer periph->periph_type = inqbuf.device & SID_TYPE;
996 1.157 bouyer if (inqbuf.dev_qual2 & SID_REMOVABLE)
997 1.157 bouyer periph->periph_flags |= PERIPH_REMOVABLE;
998 1.157 bouyer periph->periph_version = inqbuf.version & SID_ANSII;
999 1.12 mycroft
1000 1.12 mycroft /*
1001 1.12 mycroft * Any device qualifier that has the top bit set (qualifier&4 != 0)
1002 1.12 mycroft * is vendor specific and won't match in this switch.
1003 1.51 thorpej * All we do here is throw out bad/negative responses.
1004 1.12 mycroft */
1005 1.51 thorpej checkdtype = 0;
1006 1.18 mycroft switch (inqbuf.device & SID_QUAL) {
1007 1.157 bouyer case SID_QUAL_LU_PRESENT:
1008 1.51 thorpej checkdtype = 1;
1009 1.2 deraadt break;
1010 1.12 mycroft
1011 1.217 mycroft case SID_QUAL_LU_NOTPRESENT:
1012 1.157 bouyer case SID_QUAL_reserved:
1013 1.157 bouyer case SID_QUAL_LU_NOT_SUPP:
1014 1.18 mycroft goto bad;
1015 1.12 mycroft
1016 1.2 deraadt default:
1017 1.2 deraadt break;
1018 1.2 deraadt }
1019 1.151 ad
1020 1.289 jakllsch /* Let the adapter driver handle the device separately if it wants. */
1021 1.157 bouyer if (chan->chan_adapter->adapt_accesschk != NULL &&
1022 1.157 bouyer (*chan->chan_adapter->adapt_accesschk)(periph, &sa.sa_inqbuf))
1023 1.151 ad goto bad;
1024 1.151 ad
1025 1.149 mjacob if (checkdtype) {
1026 1.157 bouyer switch (periph->periph_type) {
1027 1.2 deraadt case T_DIRECT:
1028 1.2 deraadt case T_SEQUENTIAL:
1029 1.2 deraadt case T_PRINTER:
1030 1.2 deraadt case T_PROCESSOR:
1031 1.93 thorpej case T_WORM:
1032 1.18 mycroft case T_CDROM:
1033 1.2 deraadt case T_SCANNER:
1034 1.2 deraadt case T_OPTICAL:
1035 1.2 deraadt case T_CHANGER:
1036 1.2 deraadt case T_COMM:
1037 1.93 thorpej case T_IT8_1:
1038 1.93 thorpej case T_IT8_2:
1039 1.93 thorpej case T_STORARRAY:
1040 1.93 thorpej case T_ENCLOSURE:
1041 1.142 dante case T_SIMPLE_DIRECT:
1042 1.142 dante case T_OPTIC_CARD_RW:
1043 1.142 dante case T_OBJECT_STORED:
1044 1.51 thorpej default:
1045 1.2 deraadt break;
1046 1.12 mycroft case T_NODEVICE:
1047 1.18 mycroft goto bad;
1048 1.1 cgd }
1049 1.157 bouyer }
1050 1.157 bouyer
1051 1.157 bouyer sa.sa_periph = periph;
1052 1.157 bouyer sa.sa_inqbuf.type = inqbuf.device;
1053 1.157 bouyer sa.sa_inqbuf.removable = inqbuf.dev_qual2 & SID_REMOVABLE ?
1054 1.157 bouyer T_REMOV : T_FIXED;
1055 1.157 bouyer sa.sa_inqbuf.vendor = inqbuf.vendor;
1056 1.157 bouyer sa.sa_inqbuf.product = inqbuf.product;
1057 1.157 bouyer sa.sa_inqbuf.revision = inqbuf.revision;
1058 1.157 bouyer sa.scsipi_info.scsi_version = inqbuf.version;
1059 1.157 bouyer sa.sa_inqptr = &inqbuf;
1060 1.157 bouyer
1061 1.230 christos finger = scsipi_inqmatch(
1062 1.230 christos &sa.sa_inqbuf, scsi_quirk_patterns,
1063 1.157 bouyer sizeof(scsi_quirk_patterns)/sizeof(scsi_quirk_patterns[0]),
1064 1.157 bouyer sizeof(scsi_quirk_patterns[0]), &priority);
1065 1.157 bouyer
1066 1.157 bouyer if (finger != NULL)
1067 1.157 bouyer quirks = finger->quirks;
1068 1.157 bouyer else
1069 1.157 bouyer quirks = 0;
1070 1.157 bouyer
1071 1.157 bouyer /*
1072 1.157 bouyer * Determine the operating mode capabilities of the device.
1073 1.157 bouyer */
1074 1.157 bouyer if (periph->periph_version >= 2) {
1075 1.157 bouyer if ((inqbuf.flags3 & SID_CmdQue) != 0 &&
1076 1.157 bouyer (quirks & PQUIRK_NOTAG) == 0)
1077 1.157 bouyer periph->periph_cap |= PERIPH_CAP_TQING;
1078 1.157 bouyer if ((inqbuf.flags3 & SID_Linked) != 0)
1079 1.157 bouyer periph->periph_cap |= PERIPH_CAP_LINKCMDS;
1080 1.157 bouyer if ((inqbuf.flags3 & SID_Sync) != 0 &&
1081 1.157 bouyer (quirks & PQUIRK_NOSYNC) == 0)
1082 1.157 bouyer periph->periph_cap |= PERIPH_CAP_SYNC;
1083 1.157 bouyer if ((inqbuf.flags3 & SID_WBus16) != 0 &&
1084 1.157 bouyer (quirks & PQUIRK_NOWIDE) == 0)
1085 1.157 bouyer periph->periph_cap |= PERIPH_CAP_WIDE16;
1086 1.157 bouyer if ((inqbuf.flags3 & SID_WBus32) != 0 &&
1087 1.157 bouyer (quirks & PQUIRK_NOWIDE) == 0)
1088 1.157 bouyer periph->periph_cap |= PERIPH_CAP_WIDE32;
1089 1.157 bouyer if ((inqbuf.flags3 & SID_SftRe) != 0)
1090 1.157 bouyer periph->periph_cap |= PERIPH_CAP_SFTRESET;
1091 1.157 bouyer if ((inqbuf.flags3 & SID_RelAdr) != 0)
1092 1.157 bouyer periph->periph_cap |= PERIPH_CAP_RELADR;
1093 1.202 fvdl /* SPC-2 */
1094 1.202 fvdl if (periph->periph_version >= 3 &&
1095 1.202 fvdl !(quirks & PQUIRK_CAP_NODT)){
1096 1.181 bouyer /*
1097 1.181 bouyer * Report ST clocking though CAP_WIDExx/CAP_SYNC.
1098 1.181 bouyer * If the device only supports DT, clear these
1099 1.181 bouyer * flags (DT implies SYNC and WIDE)
1100 1.181 bouyer */
1101 1.181 bouyer switch (inqbuf.flags4 & SID_Clocking) {
1102 1.181 bouyer case SID_CLOCKING_DT_ONLY:
1103 1.181 bouyer periph->periph_cap &=
1104 1.181 bouyer ~(PERIPH_CAP_SYNC |
1105 1.181 bouyer PERIPH_CAP_WIDE16 |
1106 1.181 bouyer PERIPH_CAP_WIDE32);
1107 1.233 tsutsui /* FALLTHROUGH */
1108 1.181 bouyer case SID_CLOCKING_SD_DT:
1109 1.181 bouyer periph->periph_cap |= PERIPH_CAP_DT;
1110 1.181 bouyer break;
1111 1.181 bouyer default: /* ST only or invalid */
1112 1.181 bouyer /* nothing to do */
1113 1.183 thorpej break;
1114 1.181 bouyer }
1115 1.202 fvdl }
1116 1.202 fvdl if (periph->periph_version >= 3) {
1117 1.181 bouyer if (inqbuf.flags4 & SID_IUS)
1118 1.181 bouyer periph->periph_cap |= PERIPH_CAP_IUS;
1119 1.181 bouyer if (inqbuf.flags4 & SID_QAS)
1120 1.181 bouyer periph->periph_cap |= PERIPH_CAP_QAS;
1121 1.181 bouyer }
1122 1.157 bouyer }
1123 1.184 bouyer if (quirks & PQUIRK_CAP_SYNC)
1124 1.184 bouyer periph->periph_cap |= PERIPH_CAP_SYNC;
1125 1.184 bouyer if (quirks & PQUIRK_CAP_WIDE16)
1126 1.184 bouyer periph->periph_cap |= PERIPH_CAP_WIDE16;
1127 1.157 bouyer
1128 1.157 bouyer /*
1129 1.157 bouyer * Now apply any quirks from the table.
1130 1.157 bouyer */
1131 1.157 bouyer periph->periph_quirks |= quirks;
1132 1.157 bouyer if (periph->periph_version == 0 &&
1133 1.157 bouyer (periph->periph_quirks & PQUIRK_FORCELUNS) == 0)
1134 1.157 bouyer periph->periph_quirks |= PQUIRK_NOLUNS;
1135 1.157 bouyer
1136 1.157 bouyer if ((periph->periph_quirks & PQUIRK_NOLUNS) == 0)
1137 1.157 bouyer docontinue = 1;
1138 1.157 bouyer
1139 1.231 drochner locs[SCSIBUSCF_TARGET] = target;
1140 1.231 drochner locs[SCSIBUSCF_LUN] = lun;
1141 1.225 drochner
1142 1.293 riastrad KERNEL_LOCK(1, NULL);
1143 1.291 thorpej if ((cf = config_search(sc->sc_dev, &sa,
1144 1.292 thorpej CFARGS(.submatch = config_stdsubmatch,
1145 1.292 thorpej .locators = locs))) != NULL) {
1146 1.157 bouyer scsipi_insert_periph(chan, periph);
1147 1.284 kardel
1148 1.284 kardel /*
1149 1.287 jdc * Determine supported opcodes and timeouts if available.
1150 1.287 jdc * Only do this on peripherals reporting SCSI version 3
1151 1.287 jdc * or greater - this command isn't in the SCSI-2 spec. and
1152 1.287 jdc * it causes either timeouts or peripherals disappearing
1153 1.287 jdc * when sent to some SCSI-1 or SCSI-2 peripherals.
1154 1.284 kardel */
1155 1.287 jdc if (periph->periph_version >= 3)
1156 1.287 jdc scsipi_get_opcodeinfo(periph);
1157 1.284 kardel
1158 1.149 mjacob /*
1159 1.157 bouyer * XXX Can't assign periph_dev here, because we'll
1160 1.157 bouyer * XXX need it before config_attach() returns. Must
1161 1.157 bouyer * XXX assign it in periph driver.
1162 1.149 mjacob */
1163 1.291 thorpej config_attach(sc->sc_dev, cf, &sa, scsibusprint,
1164 1.292 thorpej CFARGS(.locators = locs));
1165 1.293 riastrad KERNEL_UNLOCK_ONE(NULL);
1166 1.51 thorpej } else {
1167 1.250 drochner scsibusprint(&sa, device_xname(sc->sc_dev));
1168 1.205 thorpej aprint_normal(" not configured\n");
1169 1.293 riastrad KERNEL_UNLOCK_ONE(NULL);
1170 1.18 mycroft goto bad;
1171 1.51 thorpej }
1172 1.18 mycroft
1173 1.119 mjacob return (docontinue);
1174 1.12 mycroft
1175 1.18 mycroft bad:
1176 1.276 mlelstv scsipi_free_periph(periph);
1177 1.119 mjacob return (docontinue);
1178 1.111 thorpej }
1179 1.111 thorpej
1180 1.111 thorpej /****** Entry points for user control of the SCSI bus. ******/
1181 1.111 thorpej
1182 1.226 thorpej static int
1183 1.240 christos scsibusopen(dev_t dev, int flag, int fmt,
1184 1.240 christos struct lwp *l)
1185 1.111 thorpej {
1186 1.111 thorpej struct scsibus_softc *sc;
1187 1.117 thorpej int error, unit = minor(dev);
1188 1.111 thorpej
1189 1.248 tsutsui sc = device_lookup_private(&scsibus_cd, unit);
1190 1.248 tsutsui if (sc == NULL)
1191 1.111 thorpej return (ENXIO);
1192 1.111 thorpej
1193 1.114 thorpej if (sc->sc_flags & SCSIBUSF_OPEN)
1194 1.111 thorpej return (EBUSY);
1195 1.117 thorpej
1196 1.157 bouyer if ((error = scsipi_adapter_addref(sc->sc_channel->chan_adapter)) != 0)
1197 1.117 thorpej return (error);
1198 1.117 thorpej
1199 1.114 thorpej sc->sc_flags |= SCSIBUSF_OPEN;
1200 1.111 thorpej
1201 1.111 thorpej return (0);
1202 1.111 thorpej }
1203 1.111 thorpej
1204 1.226 thorpej static int
1205 1.240 christos scsibusclose(dev_t dev, int flag, int fmt,
1206 1.240 christos struct lwp *l)
1207 1.111 thorpej {
1208 1.248 tsutsui struct scsibus_softc *sc;
1209 1.117 thorpej
1210 1.248 tsutsui sc = device_lookup_private(&scsibus_cd, minor(dev));
1211 1.157 bouyer scsipi_adapter_delref(sc->sc_channel->chan_adapter);
1212 1.111 thorpej
1213 1.114 thorpej sc->sc_flags &= ~SCSIBUSF_OPEN;
1214 1.111 thorpej
1215 1.111 thorpej return (0);
1216 1.111 thorpej }
1217 1.111 thorpej
1218 1.226 thorpej static int
1219 1.243 christos scsibusioctl(dev_t dev, u_long cmd, void *addr, int flag, struct lwp *l)
1220 1.111 thorpej {
1221 1.248 tsutsui struct scsibus_softc *sc;
1222 1.248 tsutsui struct scsipi_channel *chan;
1223 1.111 thorpej int error;
1224 1.111 thorpej
1225 1.248 tsutsui sc = device_lookup_private(&scsibus_cd, minor(dev));
1226 1.248 tsutsui chan = sc->sc_channel;
1227 1.248 tsutsui
1228 1.113 thorpej /*
1229 1.113 thorpej * Enforce write permission for ioctls that change the
1230 1.113 thorpej * state of the bus. Host adapter specific ioctls must
1231 1.113 thorpej * be checked by the adapter driver.
1232 1.113 thorpej */
1233 1.113 thorpej switch (cmd) {
1234 1.113 thorpej case SCBUSIOSCAN:
1235 1.159 bouyer case SCBUSIODETACH:
1236 1.113 thorpej case SCBUSIORESET:
1237 1.113 thorpej if ((flag & FWRITE) == 0)
1238 1.113 thorpej return (EBADF);
1239 1.113 thorpej }
1240 1.113 thorpej
1241 1.111 thorpej switch (cmd) {
1242 1.112 thorpej case SCBUSIOSCAN:
1243 1.112 thorpej {
1244 1.112 thorpej struct scbusioscan_args *a =
1245 1.112 thorpej (struct scbusioscan_args *)addr;
1246 1.112 thorpej
1247 1.157 bouyer error = scsi_probe_bus(sc, a->sa_target, a->sa_lun);
1248 1.112 thorpej break;
1249 1.112 thorpej }
1250 1.159 bouyer
1251 1.159 bouyer case SCBUSIODETACH:
1252 1.159 bouyer {
1253 1.159 bouyer struct scbusiodetach_args *a =
1254 1.159 bouyer (struct scbusiodetach_args *)addr;
1255 1.159 bouyer
1256 1.159 bouyer error = scsipi_target_detach(chan, a->sa_target, a->sa_lun, 0);
1257 1.159 bouyer break;
1258 1.159 bouyer }
1259 1.159 bouyer
1260 1.112 thorpej
1261 1.113 thorpej case SCBUSIORESET:
1262 1.113 thorpej /* FALLTHROUGH */
1263 1.111 thorpej default:
1264 1.276 mlelstv error = scsipi_adapter_ioctl(chan, cmd, addr, flag, l->l_proc);
1265 1.113 thorpej break;
1266 1.111 thorpej }
1267 1.111 thorpej
1268 1.111 thorpej return (error);
1269 1.1 cgd }
1270