4 * Copyright (C) 2000 Eric Youngdale,
5 * Copyright (C) 2002 Patrick Mansfield
7 * The general scanning/probing algorithm is as follows, exceptions are
8 * made to it depending on device specific flags, compilation options, and
9 * global variable (boot or module load time) settings.
11 * A specific LUN is scanned via an INQUIRY command; if the LUN has a
12 * device attached, a scsi_device is allocated and setup for it.
14 * For every id of every channel on the given host:
16 * Scan LUN 0; if the target responds to LUN 0 (even if there is no
17 * device or storage attached to LUN 0):
19 * If LUN 0 has a device attached, allocate and setup a
22 * If target is SCSI-3 or up, issue a REPORT LUN, and scan
23 * all of the LUNs returned by the REPORT LUN; else,
24 * sequentially scan LUNs up until some maximum is reached,
25 * or a LUN is seen that cannot have a device attached to it.
28 #include <linux/config.h>
29 #include <linux/module.h>
30 #include <linux/moduleparam.h>
31 #include <linux/init.h>
32 #include <linux/blkdev.h>
33 #include <asm/semaphore.h>
35 #include <scsi/scsi.h>
36 #include <scsi/scsi_device.h>
37 #include <scsi/scsi_driver.h>
38 #include <scsi/scsi_devinfo.h>
39 #include <scsi/scsi_host.h>
40 #include <scsi/scsi_request.h>
41 #include <scsi/scsi_transport.h>
42 #include <scsi/scsi_eh.h>
44 #include "scsi_priv.h"
45 #include "scsi_logging.h"
47 #define ALLOC_FAILURE_MSG KERN_ERR "%s: Allocation failure during" \
48 " SCSI scanning, some SCSI devices might not be configured\n"
53 #define SCSI_TIMEOUT (2*HZ)
56 * Prefix values for the SCSI id's (stored in driverfs name field)
58 #define SCSI_UID_SER_NUM 'S'
59 #define SCSI_UID_UNKNOWN 'Z'
62 * Return values of some of the scanning functions.
64 * SCSI_SCAN_NO_RESPONSE: no valid response received from the target, this
65 * includes allocation or general failures preventing IO from being sent.
67 * SCSI_SCAN_TARGET_PRESENT: target responded, but no device is available
70 * SCSI_SCAN_LUN_PRESENT: target responded, and a device is available on a
73 #define SCSI_SCAN_NO_RESPONSE 0
74 #define SCSI_SCAN_TARGET_PRESENT 1
75 #define SCSI_SCAN_LUN_PRESENT 2
77 static const char *scsi_null_device_strs = "nullnullnullnull";
79 #define MAX_SCSI_LUNS 512
81 #ifdef CONFIG_SCSI_MULTI_LUN
82 static unsigned int max_scsi_luns = MAX_SCSI_LUNS;
84 static unsigned int max_scsi_luns = 1;
87 module_param_named(max_luns, max_scsi_luns, int, S_IRUGO|S_IWUSR);
88 MODULE_PARM_DESC(max_luns,
89 "last scsi LUN (should be between 1 and 2^32-1)");
92 * max_scsi_report_luns: the maximum number of LUNS that will be
93 * returned from the REPORT LUNS command. 8 times this value must
94 * be allocated. In theory this could be up to an 8 byte value, but
95 * in practice, the maximum number of LUNs suppored by any device
98 static unsigned int max_scsi_report_luns = 511;
100 module_param_named(max_report_luns, max_scsi_report_luns, int, S_IRUGO|S_IWUSR);
101 MODULE_PARM_DESC(max_report_luns,
102 "REPORT LUNS maximum number of LUNS received (should be"
103 " between 1 and 16384)");
105 static unsigned int scsi_inq_timeout = SCSI_TIMEOUT/HZ+3;
107 module_param_named(inq_timeout, scsi_inq_timeout, int, S_IRUGO|S_IWUSR);
108 MODULE_PARM_DESC(inq_timeout,
109 "Timeout (in seconds) waiting for devices to answer INQUIRY."
110 " Default is 5. Some non-compliant devices need more.");
113 * scsi_unlock_floptical - unlock device via a special MODE SENSE command
114 * @sdev: scsi device to send command to
115 * @result: area to store the result of the MODE SENSE
118 * Send a vendor specific MODE SENSE (not a MODE SELECT) command.
119 * Called for BLIST_KEY devices.
121 static void scsi_unlock_floptical(struct scsi_device *sdev,
122 unsigned char *result)
124 unsigned char scsi_cmd[MAX_COMMAND_SIZE];
126 printk(KERN_NOTICE "scsi: unlocking floptical drive\n");
127 scsi_cmd[0] = MODE_SENSE;
131 scsi_cmd[4] = 0x2a; /* size */
133 scsi_execute_req(sdev, scsi_cmd, DMA_FROM_DEVICE, result, 0x2a, NULL,
138 * print_inquiry - printk the inquiry information
139 * @inq_result: printk this SCSI INQUIRY
142 * printk the vendor, model, and other information found in the
143 * INQUIRY data in @inq_result.
146 * Remove this, and replace with a hotplug event that logs any
147 * relevant information.
149 static void print_inquiry(unsigned char *inq_result)
153 printk(KERN_NOTICE " Vendor: ");
154 for (i = 8; i < 16; i++)
155 if (inq_result[i] >= 0x20 && i < inq_result[4] + 5)
156 printk("%c", inq_result[i]);
161 for (i = 16; i < 32; i++)
162 if (inq_result[i] >= 0x20 && i < inq_result[4] + 5)
163 printk("%c", inq_result[i]);
168 for (i = 32; i < 36; i++)
169 if (inq_result[i] >= 0x20 && i < inq_result[4] + 5)
170 printk("%c", inq_result[i]);
176 i = inq_result[0] & 0x1f;
178 printk(KERN_NOTICE " Type: %s ",
180 MAX_SCSI_DEVICE_CODE ? scsi_device_types[i] :
182 printk(" ANSI SCSI revision: %02x",
183 inq_result[2] & 0x07);
184 if ((inq_result[2] & 0x07) == 1 && (inq_result[3] & 0x0f) == 1)
191 * scsi_alloc_sdev - allocate and setup a scsi_Device
194 * Allocate, initialize for io, and return a pointer to a scsi_Device.
195 * Stores the @shost, @channel, @id, and @lun in the scsi_Device, and
196 * adds scsi_Device to the appropriate list.
199 * scsi_Device pointer, or NULL on failure.
201 static struct scsi_device *scsi_alloc_sdev(struct scsi_target *starget,
202 unsigned int lun, void *hostdata)
204 struct scsi_device *sdev;
205 int display_failure_msg = 1, ret;
206 struct Scsi_Host *shost = dev_to_shost(starget->dev.parent);
208 sdev = kzalloc(sizeof(*sdev) + shost->transportt->device_size,
213 sdev->vendor = scsi_null_device_strs;
214 sdev->model = scsi_null_device_strs;
215 sdev->rev = scsi_null_device_strs;
217 sdev->id = starget->id;
219 sdev->channel = starget->channel;
220 sdev->sdev_state = SDEV_CREATED;
221 INIT_LIST_HEAD(&sdev->siblings);
222 INIT_LIST_HEAD(&sdev->same_target_siblings);
223 INIT_LIST_HEAD(&sdev->cmd_list);
224 INIT_LIST_HEAD(&sdev->starved_entry);
225 spin_lock_init(&sdev->list_lock);
227 sdev->sdev_gendev.parent = get_device(&starget->dev);
228 sdev->sdev_target = starget;
230 /* usually NULL and set by ->slave_alloc instead */
231 sdev->hostdata = hostdata;
233 /* if the device needs this changing, it may do so in the
234 * slave_configure function */
235 sdev->max_device_blocked = SCSI_DEFAULT_DEVICE_BLOCKED;
238 * Some low level driver could use device->type
243 * Assume that the device will have handshaking problems,
244 * and then fix this field later if it turns out it
249 sdev->request_queue = scsi_alloc_queue(sdev);
250 if (!sdev->request_queue) {
251 /* release fn is set up in scsi_sysfs_device_initialise, so
252 * have to free and put manually here */
253 put_device(&starget->dev);
258 sdev->request_queue->queuedata = sdev;
259 scsi_adjust_queue_depth(sdev, 0, sdev->host->cmd_per_lun);
261 scsi_sysfs_device_initialize(sdev);
263 if (shost->hostt->slave_alloc) {
264 ret = shost->hostt->slave_alloc(sdev);
267 * if LLDD reports slave not present, don't clutter
268 * console with alloc failure messages
271 display_failure_msg = 0;
272 goto out_device_destroy;
279 transport_destroy_device(&sdev->sdev_gendev);
280 put_device(&sdev->sdev_gendev);
282 if (display_failure_msg)
283 printk(ALLOC_FAILURE_MSG, __FUNCTION__);
287 static void scsi_target_dev_release(struct device *dev)
289 struct device *parent = dev->parent;
290 struct scsi_target *starget = to_scsi_target(dev);
291 struct Scsi_Host *shost = dev_to_shost(parent);
293 if (shost->hostt->target_destroy)
294 shost->hostt->target_destroy(starget);
299 int scsi_is_target_device(const struct device *dev)
301 return dev->release == scsi_target_dev_release;
303 EXPORT_SYMBOL(scsi_is_target_device);
305 static struct scsi_target *__scsi_find_target(struct device *parent,
306 int channel, uint id)
308 struct scsi_target *starget, *found_starget = NULL;
309 struct Scsi_Host *shost = dev_to_shost(parent);
311 * Search for an existing target for this sdev.
313 list_for_each_entry(starget, &shost->__targets, siblings) {
314 if (starget->id == id &&
315 starget->channel == channel) {
316 found_starget = starget;
321 get_device(&found_starget->dev);
323 return found_starget;
326 static struct scsi_target *scsi_alloc_target(struct device *parent,
327 int channel, uint id)
329 struct Scsi_Host *shost = dev_to_shost(parent);
330 struct device *dev = NULL;
332 const int size = sizeof(struct scsi_target)
333 + shost->transportt->target_size;
334 struct scsi_target *starget;
335 struct scsi_target *found_target;
338 starget = kzalloc(size, GFP_KERNEL);
340 printk(KERN_ERR "%s: allocation failure\n", __FUNCTION__);
344 device_initialize(dev);
345 starget->reap_ref = 1;
346 dev->parent = get_device(parent);
347 dev->release = scsi_target_dev_release;
348 sprintf(dev->bus_id, "target%d:%d:%d",
349 shost->host_no, channel, id);
351 starget->channel = channel;
352 INIT_LIST_HEAD(&starget->siblings);
353 INIT_LIST_HEAD(&starget->devices);
354 starget->state = STARGET_RUNNING;
356 spin_lock_irqsave(shost->host_lock, flags);
358 found_target = __scsi_find_target(parent, channel, id);
362 list_add_tail(&starget->siblings, &shost->__targets);
363 spin_unlock_irqrestore(shost->host_lock, flags);
364 /* allocate and add */
365 transport_setup_device(dev);
366 error = device_add(dev);
368 dev_err(dev, "target device_add failed, error %d\n", error);
369 spin_lock_irqsave(shost->host_lock, flags);
370 list_del_init(&starget->siblings);
371 spin_unlock_irqrestore(shost->host_lock, flags);
372 transport_destroy_device(dev);
377 transport_add_device(dev);
378 if (shost->hostt->target_alloc) {
379 error = shost->hostt->target_alloc(starget);
382 dev_printk(KERN_ERR, dev, "target allocation failed, error %d\n", error);
383 /* don't want scsi_target_reap to do the final
384 * put because it will be under the host lock */
386 scsi_target_reap(starget);
395 found_target->reap_ref++;
396 spin_unlock_irqrestore(shost->host_lock, flags);
398 if (found_target->state != STARGET_DEL) {
402 /* Unfortunately, we found a dying target; need to
403 * wait until it's dead before we can get a new one */
404 put_device(&found_target->dev);
405 flush_scheduled_work();
409 static void scsi_target_reap_usercontext(void *data)
411 struct scsi_target *starget = data;
412 struct Scsi_Host *shost = dev_to_shost(starget->dev.parent);
415 transport_remove_device(&starget->dev);
416 device_del(&starget->dev);
417 transport_destroy_device(&starget->dev);
418 spin_lock_irqsave(shost->host_lock, flags);
419 list_del_init(&starget->siblings);
420 spin_unlock_irqrestore(shost->host_lock, flags);
421 put_device(&starget->dev);
425 * scsi_target_reap - check to see if target is in use and destroy if not
427 * @starget: target to be checked
429 * This is used after removing a LUN or doing a last put of the target
430 * it checks atomically that nothing is using the target and removes
433 void scsi_target_reap(struct scsi_target *starget)
435 struct Scsi_Host *shost = dev_to_shost(starget->dev.parent);
438 spin_lock_irqsave(shost->host_lock, flags);
440 if (--starget->reap_ref == 0 && list_empty(&starget->devices)) {
441 BUG_ON(starget->state == STARGET_DEL);
442 starget->state = STARGET_DEL;
443 spin_unlock_irqrestore(shost->host_lock, flags);
444 execute_in_process_context(scsi_target_reap_usercontext,
445 starget, &starget->ew);
449 spin_unlock_irqrestore(shost->host_lock, flags);
455 * scsi_probe_lun - probe a single LUN using a SCSI INQUIRY
456 * @sdev: scsi_device to probe
457 * @inq_result: area to store the INQUIRY result
458 * @result_len: len of inq_result
459 * @bflags: store any bflags found here
462 * Probe the lun associated with @req using a standard SCSI INQUIRY;
464 * If the INQUIRY is successful, zero is returned and the
465 * INQUIRY data is in @inq_result; the scsi_level and INQUIRY length
466 * are copied to the scsi_device any flags value is stored in *@bflags.
468 static int scsi_probe_lun(struct scsi_device *sdev, char *inq_result,
469 int result_len, int *bflags)
471 unsigned char scsi_cmd[MAX_COMMAND_SIZE];
472 int first_inquiry_len, try_inquiry_len, next_inquiry_len;
473 int response_len = 0;
474 int pass, count, result;
475 struct scsi_sense_hdr sshdr;
479 /* Perform up to 3 passes. The first pass uses a conservative
480 * transfer length of 36 unless sdev->inquiry_len specifies a
481 * different value. */
482 first_inquiry_len = sdev->inquiry_len ? sdev->inquiry_len : 36;
483 try_inquiry_len = first_inquiry_len;
487 SCSI_LOG_SCAN_BUS(3, sdev_printk(KERN_INFO, sdev,
488 "scsi scan: INQUIRY pass %d length %d\n",
489 pass, try_inquiry_len));
491 /* Each pass gets up to three chances to ignore Unit Attention */
492 for (count = 0; count < 3; ++count) {
493 memset(scsi_cmd, 0, 6);
494 scsi_cmd[0] = INQUIRY;
495 scsi_cmd[4] = (unsigned char) try_inquiry_len;
497 memset(inq_result, 0, try_inquiry_len);
499 result = scsi_execute_req(sdev, scsi_cmd, DMA_FROM_DEVICE,
500 inq_result, try_inquiry_len, &sshdr,
501 HZ / 2 + HZ * scsi_inq_timeout, 3);
503 SCSI_LOG_SCAN_BUS(3, printk(KERN_INFO "scsi scan: INQUIRY %s "
505 result ? "failed" : "successful", result));
509 * not-ready to ready transition [asc/ascq=0x28/0x0]
510 * or power-on, reset [asc/ascq=0x29/0x0], continue.
511 * INQUIRY should not yield UNIT_ATTENTION
512 * but many buggy devices do so anyway.
514 if ((driver_byte(result) & DRIVER_SENSE) &&
515 scsi_sense_valid(&sshdr)) {
516 if ((sshdr.sense_key == UNIT_ATTENTION) &&
517 ((sshdr.asc == 0x28) ||
518 (sshdr.asc == 0x29)) &&
527 response_len = (unsigned char) inq_result[4] + 5;
528 if (response_len > 255)
529 response_len = first_inquiry_len; /* sanity */
532 * Get any flags for this device.
534 * XXX add a bflags to scsi_device, and replace the
535 * corresponding bit fields in scsi_device, so bflags
536 * need not be passed as an argument.
538 *bflags = scsi_get_device_flags(sdev, &inq_result[8],
541 /* When the first pass succeeds we gain information about
542 * what larger transfer lengths might work. */
544 if (BLIST_INQUIRY_36 & *bflags)
545 next_inquiry_len = 36;
546 else if (BLIST_INQUIRY_58 & *bflags)
547 next_inquiry_len = 58;
548 else if (sdev->inquiry_len)
549 next_inquiry_len = sdev->inquiry_len;
551 next_inquiry_len = response_len;
553 /* If more data is available perform the second pass */
554 if (next_inquiry_len > try_inquiry_len) {
555 try_inquiry_len = next_inquiry_len;
561 } else if (pass == 2) {
562 printk(KERN_INFO "scsi scan: %d byte inquiry failed. "
563 "Consider BLIST_INQUIRY_36 for this device\n",
566 /* If this pass failed, the third pass goes back and transfers
567 * the same amount as we successfully got in the first pass. */
568 try_inquiry_len = first_inquiry_len;
573 /* If the last transfer attempt got an error, assume the
574 * peripheral doesn't exist or is dead. */
578 /* Don't report any more data than the device says is valid */
579 sdev->inquiry_len = min(try_inquiry_len, response_len);
582 * XXX Abort if the response length is less than 36? If less than
583 * 32, the lookup of the device flags (above) could be invalid,
584 * and it would be possible to take an incorrect action - we do
585 * not want to hang because of a short INQUIRY. On the flip side,
586 * if the device is spun down or becoming ready (and so it gives a
587 * short INQUIRY), an abort here prevents any further use of the
588 * device, including spin up.
590 * Related to the above issue:
592 * XXX Devices (disk or all?) should be sent a TEST UNIT READY,
593 * and if not ready, sent a START_STOP to start (maybe spin up) and
594 * then send the INQUIRY again, since the INQUIRY can change after
595 * a device is initialized.
597 * Ideally, start a device if explicitly asked to do so. This
598 * assumes that a device is spun up on power on, spun down on
599 * request, and then spun up on request.
603 * The scanning code needs to know the scsi_level, even if no
604 * device is attached at LUN 0 (SCSI_SCAN_TARGET_PRESENT) so
605 * non-zero LUNs can be scanned.
607 sdev->scsi_level = inq_result[2] & 0x07;
608 if (sdev->scsi_level >= 2 ||
609 (sdev->scsi_level == 1 && (inq_result[3] & 0x0f) == 1))
611 sdev->sdev_target->scsi_level = sdev->scsi_level;
617 * scsi_add_lun - allocate and fully initialze a scsi_device
618 * @sdevscan: holds information to be stored in the new scsi_device
619 * @sdevnew: store the address of the newly allocated scsi_device
620 * @inq_result: holds the result of a previous INQUIRY to the LUN
621 * @bflags: black/white list flag
624 * Allocate and initialize a scsi_device matching sdevscan. Optionally
625 * set fields based on values in *@bflags. If @sdevnew is not
626 * NULL, store the address of the new scsi_device in *@sdevnew (needed
627 * when scanning a particular LUN).
630 * SCSI_SCAN_NO_RESPONSE: could not allocate or setup a scsi_device
631 * SCSI_SCAN_LUN_PRESENT: a new scsi_device was allocated and initialized
633 static int scsi_add_lun(struct scsi_device *sdev, char *inq_result, int *bflags)
636 * XXX do not save the inquiry, since it can change underneath us,
637 * save just vendor/model/rev.
639 * Rather than save it and have an ioctl that retrieves the saved
640 * value, have an ioctl that executes the same INQUIRY code used
641 * in scsi_probe_lun, let user level programs doing INQUIRY
642 * scanning run at their own risk, or supply a user level program
643 * that can correctly scan.
645 sdev->inquiry = kmalloc(sdev->inquiry_len, GFP_ATOMIC);
646 if (sdev->inquiry == NULL) {
647 return SCSI_SCAN_NO_RESPONSE;
650 memcpy(sdev->inquiry, inq_result, sdev->inquiry_len);
651 sdev->vendor = (char *) (sdev->inquiry + 8);
652 sdev->model = (char *) (sdev->inquiry + 16);
653 sdev->rev = (char *) (sdev->inquiry + 32);
655 if (*bflags & BLIST_ISROM) {
657 * It would be better to modify sdev->type, and set
658 * sdev->removable, but then the print_inquiry() output
659 * would not show TYPE_ROM; if print_inquiry() is removed
660 * the issue goes away.
662 inq_result[0] = TYPE_ROM;
663 inq_result[1] |= 0x80; /* removable */
664 } else if (*bflags & BLIST_NO_ULD_ATTACH)
665 sdev->no_uld_attach = 1;
667 switch (sdev->type = (inq_result[0] & 0x1f)) {
674 case TYPE_MEDIUM_CHANGER:
685 printk(KERN_INFO "scsi: unknown device type %d\n", sdev->type);
688 print_inquiry(inq_result);
691 * For a peripheral qualifier (PQ) value of 1 (001b), the SCSI
692 * spec says: The device server is capable of supporting the
693 * specified peripheral device type on this logical unit. However,
694 * the physical device is not currently connected to this logical
697 * The above is vague, as it implies that we could treat 001 and
698 * 011 the same. Stay compatible with previous code, and create a
699 * scsi_device for a PQ of 1
701 * Don't set the device offline here; rather let the upper
702 * level drivers eval the PQ to decide whether they should
703 * attach. So remove ((inq_result[0] >> 5) & 7) == 1 check.
706 sdev->inq_periph_qual = (inq_result[0] >> 5) & 7;
707 sdev->removable = (0x80 & inq_result[1]) >> 7;
708 sdev->lockable = sdev->removable;
709 sdev->soft_reset = (inq_result[7] & 1) && ((inq_result[3] & 7) == 2);
711 if (sdev->scsi_level >= SCSI_3 || (sdev->inquiry_len > 56 &&
712 inq_result[56] & 0x04))
714 if (inq_result[7] & 0x60)
716 if (inq_result[7] & 0x10)
723 if ((sdev->scsi_level >= SCSI_2) && (inq_result[7] & 2) &&
724 !(*bflags & BLIST_NOTQ))
725 sdev->tagged_supported = 1;
727 * Some devices (Texel CD ROM drives) have handshaking problems
728 * when used with the Seagate controllers. borken is initialized
729 * to 1, and then set it to 0 here.
731 if ((*bflags & BLIST_BORKEN) == 0)
735 * Apparently some really broken devices (contrary to the SCSI
736 * standards) need to be selected without asserting ATN
738 if (*bflags & BLIST_SELECT_NO_ATN)
739 sdev->select_no_atn = 1;
742 * Some devices may not want to have a start command automatically
743 * issued when a device is added.
745 if (*bflags & BLIST_NOSTARTONADD)
746 sdev->no_start_on_add = 1;
748 if (*bflags & BLIST_SINGLELUN)
749 sdev->single_lun = 1;
752 sdev->use_10_for_rw = 1;
754 if (*bflags & BLIST_MS_SKIP_PAGE_08)
755 sdev->skip_ms_page_8 = 1;
757 if (*bflags & BLIST_MS_SKIP_PAGE_3F)
758 sdev->skip_ms_page_3f = 1;
760 if (*bflags & BLIST_USE_10_BYTE_MS)
761 sdev->use_10_for_ms = 1;
763 /* set the device running here so that slave configure
765 scsi_device_set_state(sdev, SDEV_RUNNING);
767 if (*bflags & BLIST_MS_192_BYTES_FOR_3F)
768 sdev->use_192_bytes_for_3f = 1;
770 if (*bflags & BLIST_NOT_LOCKABLE)
773 if (*bflags & BLIST_RETRY_HWERROR)
774 sdev->retry_hwerror = 1;
776 transport_configure_device(&sdev->sdev_gendev);
778 if (sdev->host->hostt->slave_configure)
779 sdev->host->hostt->slave_configure(sdev);
782 * Ok, the device is now all set up, we can
783 * register it and tell the rest of the kernel
786 if (scsi_sysfs_add_sdev(sdev) != 0)
787 return SCSI_SCAN_NO_RESPONSE;
789 return SCSI_SCAN_LUN_PRESENT;
792 static inline void scsi_destroy_sdev(struct scsi_device *sdev)
794 if (sdev->host->hostt->slave_destroy)
795 sdev->host->hostt->slave_destroy(sdev);
796 transport_destroy_device(&sdev->sdev_gendev);
797 put_device(&sdev->sdev_gendev);
802 * scsi_probe_and_add_lun - probe a LUN, if a LUN is found add it
803 * @starget: pointer to target device structure
804 * @lun: LUN of target device
805 * @sdevscan: probe the LUN corresponding to this scsi_device
806 * @sdevnew: store the value of any new scsi_device allocated
807 * @bflagsp: store bflags here if not NULL
810 * Call scsi_probe_lun, if a LUN with an attached device is found,
811 * allocate and set it up by calling scsi_add_lun.
814 * SCSI_SCAN_NO_RESPONSE: could not allocate or setup a scsi_device
815 * SCSI_SCAN_TARGET_PRESENT: target responded, but no device is
816 * attached at the LUN
817 * SCSI_SCAN_LUN_PRESENT: a new scsi_device was allocated and initialized
819 static int scsi_probe_and_add_lun(struct scsi_target *starget,
820 uint lun, int *bflagsp,
821 struct scsi_device **sdevp, int rescan,
824 struct scsi_device *sdev;
825 unsigned char *result;
826 int bflags, res = SCSI_SCAN_NO_RESPONSE, result_len = 256;
827 struct Scsi_Host *shost = dev_to_shost(starget->dev.parent);
830 * The rescan flag is used as an optimization, the first scan of a
831 * host adapter calls into here with rescan == 0.
833 sdev = scsi_device_lookup_by_target(starget, lun);
835 if (rescan || sdev->sdev_state != SDEV_CREATED) {
836 SCSI_LOG_SCAN_BUS(3, printk(KERN_INFO
837 "scsi scan: device exists on %s\n",
838 sdev->sdev_gendev.bus_id));
842 scsi_device_put(sdev);
845 *bflagsp = scsi_get_device_flags(sdev,
848 return SCSI_SCAN_LUN_PRESENT;
850 scsi_device_put(sdev);
852 sdev = scsi_alloc_sdev(starget, lun, hostdata);
856 result = kmalloc(result_len, GFP_ATOMIC |
857 ((shost->unchecked_isa_dma) ? __GFP_DMA : 0));
861 if (scsi_probe_lun(sdev, result, result_len, &bflags))
862 goto out_free_result;
865 * result contains valid SCSI INQUIRY data.
867 if ((result[0] >> 5) == 3) {
869 * For a Peripheral qualifier 3 (011b), the SCSI
870 * spec says: The device server is not capable of
871 * supporting a physical device on this logical
874 * For disks, this implies that there is no
875 * logical disk configured at sdev->lun, but there
876 * is a target id responding.
878 SCSI_LOG_SCAN_BUS(3, printk(KERN_INFO
879 "scsi scan: peripheral qualifier of 3,"
880 " no device added\n"));
881 res = SCSI_SCAN_TARGET_PRESENT;
882 goto out_free_result;
886 * Non-standard SCSI targets may set the PDT to 0x1f (unknown or
887 * no device type) instead of using the Peripheral Qualifier to
888 * indicate that no LUN is present. For example, USB UFI does this.
890 if (starget->pdt_1f_for_no_lun && (result[0] & 0x1f) == 0x1f) {
891 SCSI_LOG_SCAN_BUS(3, printk(KERN_INFO
892 "scsi scan: peripheral device type"
893 " of 31, no device added\n"));
894 res = SCSI_SCAN_TARGET_PRESENT;
895 goto out_free_result;
898 res = scsi_add_lun(sdev, result, &bflags);
899 if (res == SCSI_SCAN_LUN_PRESENT) {
900 if (bflags & BLIST_KEY) {
902 scsi_unlock_floptical(sdev, result);
911 if (res == SCSI_SCAN_LUN_PRESENT) {
913 if (scsi_device_get(sdev) == 0) {
916 __scsi_remove_device(sdev);
917 res = SCSI_SCAN_NO_RESPONSE;
921 scsi_destroy_sdev(sdev);
927 * scsi_sequential_lun_scan - sequentially scan a SCSI target
928 * @starget: pointer to target structure to scan
929 * @bflags: black/white list flag for LUN 0
930 * @lun0_res: result of scanning LUN 0
933 * Generally, scan from LUN 1 (LUN 0 is assumed to already have been
934 * scanned) to some maximum lun until a LUN is found with no device
935 * attached. Use the bflags to figure out any oddities.
937 * Modifies sdevscan->lun.
939 static void scsi_sequential_lun_scan(struct scsi_target *starget,
940 int bflags, int lun0_res, int scsi_level,
943 unsigned int sparse_lun, lun, max_dev_lun;
944 struct Scsi_Host *shost = dev_to_shost(starget->dev.parent);
946 SCSI_LOG_SCAN_BUS(3, printk(KERN_INFO "scsi scan: Sequential scan of"
947 "%s\n", starget->dev.bus_id));
949 max_dev_lun = min(max_scsi_luns, shost->max_lun);
951 * If this device is known to support sparse multiple units,
952 * override the other settings, and scan all of them. Normally,
953 * SCSI-3 devices should be scanned via the REPORT LUNS.
955 if (bflags & BLIST_SPARSELUN) {
956 max_dev_lun = shost->max_lun;
962 * If not sparse lun and no device attached at LUN 0 do not scan
965 if (!sparse_lun && (lun0_res != SCSI_SCAN_LUN_PRESENT))
969 * If less than SCSI_1_CSS, and no special lun scaning, stop
970 * scanning; this matches 2.4 behaviour, but could just be a bug
971 * (to continue scanning a SCSI_1_CSS device).
973 * This test is broken. We might not have any device on lun0 for
974 * a sparselun device, and if that's the case then how would we
975 * know the real scsi_level, eh? It might make sense to just not
976 * scan any SCSI_1 device for non-0 luns, but that check would best
977 * go into scsi_alloc_sdev() and just have it return null when asked
978 * to alloc an sdev for lun > 0 on an already found SCSI_1 device.
980 if ((sdevscan->scsi_level < SCSI_1_CCS) &&
981 ((bflags & (BLIST_FORCELUN | BLIST_SPARSELUN | BLIST_MAX5LUN))
986 * If this device is known to support multiple units, override
987 * the other settings, and scan all of them.
989 if (bflags & BLIST_FORCELUN)
990 max_dev_lun = shost->max_lun;
992 * REGAL CDC-4X: avoid hang after LUN 4
994 if (bflags & BLIST_MAX5LUN)
995 max_dev_lun = min(5U, max_dev_lun);
997 * Do not scan SCSI-2 or lower device past LUN 7, unless
1000 if (scsi_level < SCSI_3 && !(bflags & BLIST_LARGELUN))
1001 max_dev_lun = min(8U, max_dev_lun);
1004 * We have already scanned LUN 0, so start at LUN 1. Keep scanning
1005 * until we reach the max, or no LUN is found and we are not
1008 for (lun = 1; lun < max_dev_lun; ++lun)
1009 if ((scsi_probe_and_add_lun(starget, lun, NULL, NULL, rescan,
1010 NULL) != SCSI_SCAN_LUN_PRESENT) &&
1016 * scsilun_to_int: convert a scsi_lun to an int
1017 * @scsilun: struct scsi_lun to be converted.
1020 * Convert @scsilun from a struct scsi_lun to a four byte host byte-ordered
1021 * integer, and return the result. The caller must check for
1022 * truncation before using this function.
1025 * The struct scsi_lun is assumed to be four levels, with each level
1026 * effectively containing a SCSI byte-ordered (big endian) short; the
1027 * addressing bits of each level are ignored (the highest two bits).
1028 * For a description of the LUN format, post SCSI-3 see the SCSI
1029 * Architecture Model, for SCSI-3 see the SCSI Controller Commands.
1031 * Given a struct scsi_lun of: 0a 04 0b 03 00 00 00 00, this function returns
1032 * the integer: 0x0b030a04
1034 static int scsilun_to_int(struct scsi_lun *scsilun)
1040 for (i = 0; i < sizeof(lun); i += 2)
1041 lun = lun | (((scsilun->scsi_lun[i] << 8) |
1042 scsilun->scsi_lun[i + 1]) << (i * 8));
1047 * int_to_scsilun: reverts an int into a scsi_lun
1048 * @int: integer to be reverted
1049 * @scsilun: struct scsi_lun to be set.
1052 * Reverts the functionality of the scsilun_to_int, which packed
1053 * an 8-byte lun value into an int. This routine unpacks the int
1054 * back into the lun value.
1055 * Note: the scsilun_to_int() routine does not truly handle all
1056 * 8bytes of the lun value. This functions restores only as much
1057 * as was set by the routine.
1060 * Given an integer : 0x0b030a04, this function returns a
1061 * scsi_lun of : struct scsi_lun of: 0a 04 0b 03 00 00 00 00
1064 void int_to_scsilun(unsigned int lun, struct scsi_lun *scsilun)
1068 memset(scsilun->scsi_lun, 0, sizeof(scsilun->scsi_lun));
1070 for (i = 0; i < sizeof(lun); i += 2) {
1071 scsilun->scsi_lun[i] = (lun >> 8) & 0xFF;
1072 scsilun->scsi_lun[i+1] = lun & 0xFF;
1076 EXPORT_SYMBOL(int_to_scsilun);
1079 * scsi_report_lun_scan - Scan using SCSI REPORT LUN results
1080 * @sdevscan: scan the host, channel, and id of this scsi_device
1083 * If @sdevscan is for a SCSI-3 or up device, send a REPORT LUN
1084 * command, and scan the resulting list of LUNs by calling
1085 * scsi_probe_and_add_lun.
1087 * Modifies sdevscan->lun.
1090 * 0: scan completed (or no memory, so further scanning is futile)
1091 * 1: no report lun scan, or not configured
1093 static int scsi_report_lun_scan(struct scsi_target *starget, int bflags,
1097 unsigned char scsi_cmd[MAX_COMMAND_SIZE];
1098 unsigned int length;
1100 unsigned int num_luns;
1101 unsigned int retries;
1103 struct scsi_lun *lunp, *lun_data;
1105 struct scsi_sense_hdr sshdr;
1106 struct scsi_device *sdev;
1107 struct Scsi_Host *shost = dev_to_shost(&starget->dev);
1111 * Only support SCSI-3 and up devices if BLIST_NOREPORTLUN is not set.
1112 * Also allow SCSI-2 if BLIST_REPORTLUN2 is set and host adapter does
1113 * support more than 8 LUNs.
1115 if ((bflags & BLIST_NOREPORTLUN) ||
1116 starget->scsi_level < SCSI_2 ||
1117 (starget->scsi_level < SCSI_3 &&
1118 (!(bflags & BLIST_REPORTLUN2) || shost->max_lun <= 8)) )
1120 if (bflags & BLIST_NOLUN)
1123 if (!(sdev = scsi_device_lookup_by_target(starget, 0))) {
1124 sdev = scsi_alloc_sdev(starget, 0, NULL);
1127 if (scsi_device_get(sdev))
1131 sprintf(devname, "host %d channel %d id %d",
1132 shost->host_no, sdev->channel, sdev->id);
1135 * Allocate enough to hold the header (the same size as one scsi_lun)
1136 * plus the max number of luns we are requesting.
1138 * Reallocating and trying again (with the exact amount we need)
1139 * would be nice, but then we need to somehow limit the size
1140 * allocated based on the available memory and the limits of
1141 * kmalloc - we don't want a kmalloc() failure of a huge value to
1142 * prevent us from finding any LUNs on this target.
1144 length = (max_scsi_report_luns + 1) * sizeof(struct scsi_lun);
1145 lun_data = kmalloc(length, GFP_ATOMIC |
1146 (sdev->host->unchecked_isa_dma ? __GFP_DMA : 0));
1148 printk(ALLOC_FAILURE_MSG, __FUNCTION__);
1152 scsi_cmd[0] = REPORT_LUNS;
1155 * bytes 1 - 5: reserved, set to zero.
1157 memset(&scsi_cmd[1], 0, 5);
1160 * bytes 6 - 9: length of the command.
1162 scsi_cmd[6] = (unsigned char) (length >> 24) & 0xff;
1163 scsi_cmd[7] = (unsigned char) (length >> 16) & 0xff;
1164 scsi_cmd[8] = (unsigned char) (length >> 8) & 0xff;
1165 scsi_cmd[9] = (unsigned char) length & 0xff;
1167 scsi_cmd[10] = 0; /* reserved */
1168 scsi_cmd[11] = 0; /* control */
1171 * We can get a UNIT ATTENTION, for example a power on/reset, so
1172 * retry a few times (like sd.c does for TEST UNIT READY).
1173 * Experience shows some combinations of adapter/devices get at
1174 * least two power on/resets.
1176 * Illegal requests (for devices that do not support REPORT LUNS)
1177 * should come through as a check condition, and will not generate
1180 for (retries = 0; retries < 3; retries++) {
1181 SCSI_LOG_SCAN_BUS(3, printk (KERN_INFO "scsi scan: Sending"
1182 " REPORT LUNS to %s (try %d)\n", devname,
1185 result = scsi_execute_req(sdev, scsi_cmd, DMA_FROM_DEVICE,
1186 lun_data, length, &sshdr,
1187 SCSI_TIMEOUT + 4 * HZ, 3);
1189 SCSI_LOG_SCAN_BUS(3, printk (KERN_INFO "scsi scan: REPORT LUNS"
1190 " %s (try %d) result 0x%x\n", result
1191 ? "failed" : "successful", retries, result));
1194 else if (scsi_sense_valid(&sshdr)) {
1195 if (sshdr.sense_key != UNIT_ATTENTION)
1202 * The device probably does not support a REPORT LUN command
1209 * Get the length from the first four bytes of lun_data.
1211 data = (u8 *) lun_data->scsi_lun;
1212 length = ((data[0] << 24) | (data[1] << 16) |
1213 (data[2] << 8) | (data[3] << 0));
1215 num_luns = (length / sizeof(struct scsi_lun));
1216 if (num_luns > max_scsi_report_luns) {
1217 printk(KERN_WARNING "scsi: On %s only %d (max_scsi_report_luns)"
1218 " of %d luns reported, try increasing"
1219 " max_scsi_report_luns.\n", devname,
1220 max_scsi_report_luns, num_luns);
1221 num_luns = max_scsi_report_luns;
1224 SCSI_LOG_SCAN_BUS(3, sdev_printk (KERN_INFO, sdev,
1225 "scsi scan: REPORT LUN scan\n"));
1228 * Scan the luns in lun_data. The entry at offset 0 is really
1229 * the header, so start at 1 and go up to and including num_luns.
1231 for (lunp = &lun_data[1]; lunp <= &lun_data[num_luns]; lunp++) {
1232 lun = scsilun_to_int(lunp);
1235 * Check if the unused part of lunp is non-zero, and so
1236 * does not fit in lun.
1238 if (memcmp(&lunp->scsi_lun[sizeof(lun)], "\0\0\0\0", 4)) {
1242 * Output an error displaying the LUN in byte order,
1243 * this differs from what linux would print for the
1244 * integer LUN value.
1246 printk(KERN_WARNING "scsi: %s lun 0x", devname);
1247 data = (char *)lunp->scsi_lun;
1248 for (i = 0; i < sizeof(struct scsi_lun); i++)
1249 printk("%02x", data[i]);
1250 printk(" has a LUN larger than currently supported.\n");
1251 } else if (lun > sdev->host->max_lun) {
1252 printk(KERN_WARNING "scsi: %s lun%d has a LUN larger"
1253 " than allowed by the host adapter\n",
1258 res = scsi_probe_and_add_lun(starget,
1259 lun, NULL, NULL, rescan, NULL);
1260 if (res == SCSI_SCAN_NO_RESPONSE) {
1262 * Got some results, but now none, abort.
1264 sdev_printk(KERN_ERR, sdev,
1265 "Unexpected response"
1266 " from lun %d while scanning, scan"
1276 scsi_device_put(sdev);
1277 if (sdev->sdev_state == SDEV_CREATED)
1279 * the sdev we used didn't appear in the report luns scan
1281 scsi_destroy_sdev(sdev);
1285 struct scsi_device *__scsi_add_device(struct Scsi_Host *shost, uint channel,
1286 uint id, uint lun, void *hostdata)
1288 struct scsi_device *sdev = ERR_PTR(-ENODEV);
1289 struct device *parent = &shost->shost_gendev;
1290 struct scsi_target *starget;
1292 starget = scsi_alloc_target(parent, channel, id);
1294 return ERR_PTR(-ENOMEM);
1296 get_device(&starget->dev);
1297 mutex_lock(&shost->scan_mutex);
1298 if (scsi_host_scan_allowed(shost))
1299 scsi_probe_and_add_lun(starget, lun, NULL, &sdev, 1, hostdata);
1300 mutex_unlock(&shost->scan_mutex);
1301 scsi_target_reap(starget);
1302 put_device(&starget->dev);
1306 EXPORT_SYMBOL(__scsi_add_device);
1308 int scsi_add_device(struct Scsi_Host *host, uint channel,
1309 uint target, uint lun)
1311 struct scsi_device *sdev =
1312 __scsi_add_device(host, channel, target, lun, NULL);
1314 return PTR_ERR(sdev);
1316 scsi_device_put(sdev);
1319 EXPORT_SYMBOL(scsi_add_device);
1321 void scsi_rescan_device(struct device *dev)
1323 struct scsi_driver *drv;
1328 drv = to_scsi_driver(dev->driver);
1329 if (try_module_get(drv->owner)) {
1332 module_put(drv->owner);
1335 EXPORT_SYMBOL(scsi_rescan_device);
1337 static void __scsi_scan_target(struct device *parent, unsigned int channel,
1338 unsigned int id, unsigned int lun, int rescan)
1340 struct Scsi_Host *shost = dev_to_shost(parent);
1343 struct scsi_target *starget;
1345 if (shost->this_id == id)
1347 * Don't scan the host adapter
1351 starget = scsi_alloc_target(parent, channel, id);
1355 get_device(&starget->dev);
1356 if (lun != SCAN_WILD_CARD) {
1358 * Scan for a specific host/chan/id/lun.
1360 scsi_probe_and_add_lun(starget, lun, NULL, NULL, rescan, NULL);
1365 * Scan LUN 0, if there is some response, scan further. Ideally, we
1366 * would not configure LUN 0 until all LUNs are scanned.
1368 res = scsi_probe_and_add_lun(starget, 0, &bflags, NULL, rescan, NULL);
1369 if (res == SCSI_SCAN_LUN_PRESENT || res == SCSI_SCAN_TARGET_PRESENT) {
1370 if (scsi_report_lun_scan(starget, bflags, rescan) != 0)
1372 * The REPORT LUN did not scan the target,
1373 * do a sequential scan.
1375 scsi_sequential_lun_scan(starget, bflags,
1376 res, starget->scsi_level, rescan);
1380 /* now determine if the target has any children at all
1381 * and if not, nuke it */
1382 scsi_target_reap(starget);
1384 put_device(&starget->dev);
1388 * scsi_scan_target - scan a target id, possibly including all LUNs on the
1390 * @parent: host to scan
1391 * @channel: channel to scan
1392 * @id: target id to scan
1393 * @lun: Specific LUN to scan or SCAN_WILD_CARD
1394 * @rescan: passed to LUN scanning routines
1397 * Scan the target id on @parent, @channel, and @id. Scan at least LUN 0,
1398 * and possibly all LUNs on the target id.
1400 * First try a REPORT LUN scan, if that does not scan the target, do a
1401 * sequential scan of LUNs on the target id.
1403 void scsi_scan_target(struct device *parent, unsigned int channel,
1404 unsigned int id, unsigned int lun, int rescan)
1406 struct Scsi_Host *shost = dev_to_shost(parent);
1408 mutex_lock(&shost->scan_mutex);
1409 if (scsi_host_scan_allowed(shost))
1410 __scsi_scan_target(parent, channel, id, lun, rescan);
1411 mutex_unlock(&shost->scan_mutex);
1413 EXPORT_SYMBOL(scsi_scan_target);
1415 static void scsi_scan_channel(struct Scsi_Host *shost, unsigned int channel,
1416 unsigned int id, unsigned int lun, int rescan)
1420 if (id == SCAN_WILD_CARD)
1421 for (id = 0; id < shost->max_id; ++id) {
1423 * XXX adapter drivers when possible (FCP, iSCSI)
1424 * could modify max_id to match the current max,
1425 * not the absolute max.
1427 * XXX add a shost id iterator, so for example,
1428 * the FC ID can be the same as a target id
1429 * without a huge overhead of sparse id's.
1431 if (shost->reverse_ordering)
1433 * Scan from high to low id.
1435 order_id = shost->max_id - id - 1;
1438 __scsi_scan_target(&shost->shost_gendev, channel,
1439 order_id, lun, rescan);
1442 __scsi_scan_target(&shost->shost_gendev, channel,
1446 int scsi_scan_host_selected(struct Scsi_Host *shost, unsigned int channel,
1447 unsigned int id, unsigned int lun, int rescan)
1449 SCSI_LOG_SCAN_BUS(3, shost_printk (KERN_INFO, shost,
1451 __FUNCTION__, channel, id, lun));
1453 if (((channel != SCAN_WILD_CARD) && (channel > shost->max_channel)) ||
1454 ((id != SCAN_WILD_CARD) && (id > shost->max_id)) ||
1455 ((lun != SCAN_WILD_CARD) && (lun > shost->max_lun)))
1458 mutex_lock(&shost->scan_mutex);
1459 if (scsi_host_scan_allowed(shost)) {
1460 if (channel == SCAN_WILD_CARD)
1461 for (channel = 0; channel <= shost->max_channel;
1463 scsi_scan_channel(shost, channel, id, lun,
1466 scsi_scan_channel(shost, channel, id, lun, rescan);
1468 mutex_unlock(&shost->scan_mutex);
1474 * scsi_scan_host - scan the given adapter
1475 * @shost: adapter to scan
1477 void scsi_scan_host(struct Scsi_Host *shost)
1479 scsi_scan_host_selected(shost, SCAN_WILD_CARD, SCAN_WILD_CARD,
1482 EXPORT_SYMBOL(scsi_scan_host);
1484 void scsi_forget_host(struct Scsi_Host *shost)
1486 struct scsi_device *sdev;
1487 unsigned long flags;
1490 spin_lock_irqsave(shost->host_lock, flags);
1491 list_for_each_entry(sdev, &shost->__devices, siblings) {
1492 if (sdev->sdev_state == SDEV_DEL)
1494 spin_unlock_irqrestore(shost->host_lock, flags);
1495 __scsi_remove_device(sdev);
1498 spin_unlock_irqrestore(shost->host_lock, flags);
1502 * Function: scsi_get_host_dev()
1504 * Purpose: Create a scsi_device that points to the host adapter itself.
1506 * Arguments: SHpnt - Host that needs a scsi_device
1508 * Lock status: None assumed.
1510 * Returns: The scsi_device or NULL
1513 * Attach a single scsi_device to the Scsi_Host - this should
1514 * be made to look like a "pseudo-device" that points to the
1517 * Note - this device is not accessible from any high-level
1518 * drivers (including generics), which is probably not
1519 * optimal. We can add hooks later to attach
1521 struct scsi_device *scsi_get_host_dev(struct Scsi_Host *shost)
1523 struct scsi_device *sdev = NULL;
1524 struct scsi_target *starget;
1526 mutex_lock(&shost->scan_mutex);
1527 if (!scsi_host_scan_allowed(shost))
1529 starget = scsi_alloc_target(&shost->shost_gendev, 0, shost->this_id);
1533 sdev = scsi_alloc_sdev(starget, 0, NULL);
1535 sdev->sdev_gendev.parent = get_device(&starget->dev);
1538 put_device(&starget->dev);
1540 mutex_unlock(&shost->scan_mutex);
1543 EXPORT_SYMBOL(scsi_get_host_dev);
1546 * Function: scsi_free_host_dev()
1548 * Purpose: Free a scsi_device that points to the host adapter itself.
1550 * Arguments: SHpnt - Host that needs a scsi_device
1552 * Lock status: None assumed.
1558 void scsi_free_host_dev(struct scsi_device *sdev)
1560 BUG_ON(sdev->id != sdev->host->this_id);
1562 scsi_destroy_sdev(sdev);
1564 EXPORT_SYMBOL(scsi_free_host_dev);