[PARISC] Use F_EXTEND() for COMMAND_GLOBAL
[linux-2.6.22.y-op.git] / drivers / scsi / scsi_scan.c
blob752fb5da3de4f55e461c2b93d3e3e108a2b2a89d
1 /*
2 * scsi_scan.c
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
20 * scsi_device for it.
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"
51 * Default timeout
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
68 * on the given LUN.
70 * SCSI_SCAN_LUN_PRESENT: target responded, and a device is available on a
71 * given LUN.
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;
83 #else
84 static unsigned int max_scsi_luns = 1;
85 #endif
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
96 * is about 16k.
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
117 * Description:
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;
128 scsi_cmd[1] = 0;
129 scsi_cmd[2] = 0x2e;
130 scsi_cmd[3] = 0;
131 scsi_cmd[4] = 0x2a; /* size */
132 scsi_cmd[5] = 0;
133 scsi_execute_req(sdev, scsi_cmd, DMA_FROM_DEVICE, result, 0x2a, NULL,
134 SCSI_TIMEOUT, 3);
138 * print_inquiry - printk the inquiry information
139 * @inq_result: printk this SCSI INQUIRY
141 * Description:
142 * printk the vendor, model, and other information found in the
143 * INQUIRY data in @inq_result.
145 * Notes:
146 * Remove this, and replace with a hotplug event that logs any
147 * relevant information.
149 static void print_inquiry(unsigned char *inq_result)
151 int i;
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]);
157 else
158 printk(" ");
160 printk(" Model: ");
161 for (i = 16; i < 32; i++)
162 if (inq_result[i] >= 0x20 && i < inq_result[4] + 5)
163 printk("%c", inq_result[i]);
164 else
165 printk(" ");
167 printk(" Rev: ");
168 for (i = 32; i < 36; i++)
169 if (inq_result[i] >= 0x20 && i < inq_result[4] + 5)
170 printk("%c", inq_result[i]);
171 else
172 printk(" ");
174 printk("\n");
176 i = inq_result[0] & 0x1f;
178 printk(KERN_NOTICE " Type: %s ",
180 MAX_SCSI_DEVICE_CODE ? scsi_device_types[i] :
181 "Unknown ");
182 printk(" ANSI SCSI revision: %02x",
183 inq_result[2] & 0x07);
184 if ((inq_result[2] & 0x07) == 1 && (inq_result[3] & 0x0f) == 1)
185 printk(" CCS\n");
186 else
187 printk("\n");
191 * scsi_alloc_sdev - allocate and setup a scsi_Device
193 * Description:
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.
198 * Return value:
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 = kmalloc(sizeof(*sdev) + shost->transportt->device_size,
209 GFP_ATOMIC);
210 if (!sdev)
211 goto out;
213 memset(sdev, 0, sizeof(*sdev));
214 sdev->vendor = scsi_null_device_strs;
215 sdev->model = scsi_null_device_strs;
216 sdev->rev = scsi_null_device_strs;
217 sdev->host = shost;
218 sdev->id = starget->id;
219 sdev->lun = lun;
220 sdev->channel = starget->channel;
221 sdev->sdev_state = SDEV_CREATED;
222 INIT_LIST_HEAD(&sdev->siblings);
223 INIT_LIST_HEAD(&sdev->same_target_siblings);
224 INIT_LIST_HEAD(&sdev->cmd_list);
225 INIT_LIST_HEAD(&sdev->starved_entry);
226 spin_lock_init(&sdev->list_lock);
228 sdev->sdev_gendev.parent = get_device(&starget->dev);
229 sdev->sdev_target = starget;
231 /* usually NULL and set by ->slave_alloc instead */
232 sdev->hostdata = hostdata;
234 /* if the device needs this changing, it may do so in the
235 * slave_configure function */
236 sdev->max_device_blocked = SCSI_DEFAULT_DEVICE_BLOCKED;
239 * Some low level driver could use device->type
241 sdev->type = -1;
244 * Assume that the device will have handshaking problems,
245 * and then fix this field later if it turns out it
246 * doesn't
248 sdev->borken = 1;
250 sdev->request_queue = scsi_alloc_queue(sdev);
251 if (!sdev->request_queue) {
252 /* release fn is set up in scsi_sysfs_device_initialise, so
253 * have to free and put manually here */
254 put_device(&starget->dev);
255 goto out;
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);
265 if (ret) {
267 * if LLDD reports slave not present, don't clutter
268 * console with alloc failure messages
270 if (ret == -ENXIO)
271 display_failure_msg = 0;
272 goto out_device_destroy;
276 return sdev;
278 out_device_destroy:
279 transport_destroy_device(&sdev->sdev_gendev);
280 put_device(&sdev->sdev_gendev);
281 out:
282 if (display_failure_msg)
283 printk(ALLOC_FAILURE_MSG, __FUNCTION__);
284 return NULL;
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);
295 kfree(starget);
296 put_device(parent);
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;
317 break;
320 if (found_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;
331 unsigned long flags;
332 const int size = sizeof(struct scsi_target)
333 + shost->transportt->target_size;
334 struct scsi_target *starget;
335 struct scsi_target *found_target;
337 starget = kmalloc(size, GFP_KERNEL);
338 if (!starget) {
339 printk(KERN_ERR "%s: allocation failure\n", __FUNCTION__);
340 return NULL;
342 memset(starget, 0, size);
343 dev = &starget->dev;
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);
350 starget->id = id;
351 starget->channel = channel;
352 INIT_LIST_HEAD(&starget->siblings);
353 INIT_LIST_HEAD(&starget->devices);
354 spin_lock_irqsave(shost->host_lock, flags);
356 found_target = __scsi_find_target(parent, channel, id);
357 if (found_target)
358 goto found;
360 list_add_tail(&starget->siblings, &shost->__targets);
361 spin_unlock_irqrestore(shost->host_lock, flags);
362 /* allocate and add */
363 transport_setup_device(dev);
364 device_add(dev);
365 transport_add_device(dev);
366 if (shost->hostt->target_alloc) {
367 int error = shost->hostt->target_alloc(starget);
369 if(error) {
370 dev_printk(KERN_ERR, dev, "target allocation failed, error %d\n", error);
371 /* don't want scsi_target_reap to do the final
372 * put because it will be under the host lock */
373 get_device(dev);
374 scsi_target_reap(starget);
375 put_device(dev);
376 return NULL;
380 return starget;
382 found:
383 found_target->reap_ref++;
384 spin_unlock_irqrestore(shost->host_lock, flags);
385 put_device(parent);
386 kfree(starget);
387 return found_target;
390 struct work_queue_wrapper {
391 struct work_struct work;
392 struct scsi_target *starget;
395 static void scsi_target_reap_work(void *data) {
396 struct work_queue_wrapper *wqw = (struct work_queue_wrapper *)data;
397 struct scsi_target *starget = wqw->starget;
398 struct Scsi_Host *shost = dev_to_shost(starget->dev.parent);
399 unsigned long flags;
401 kfree(wqw);
403 spin_lock_irqsave(shost->host_lock, flags);
405 if (--starget->reap_ref == 0 && list_empty(&starget->devices)) {
406 list_del_init(&starget->siblings);
407 spin_unlock_irqrestore(shost->host_lock, flags);
408 transport_remove_device(&starget->dev);
409 device_del(&starget->dev);
410 transport_destroy_device(&starget->dev);
411 put_device(&starget->dev);
412 return;
415 spin_unlock_irqrestore(shost->host_lock, flags);
417 return;
421 * scsi_target_reap - check to see if target is in use and destroy if not
423 * @starget: target to be checked
425 * This is used after removing a LUN or doing a last put of the target
426 * it checks atomically that nothing is using the target and removes
427 * it if so.
429 void scsi_target_reap(struct scsi_target *starget)
431 struct work_queue_wrapper *wqw =
432 kzalloc(sizeof(struct work_queue_wrapper), GFP_ATOMIC);
434 if (!wqw) {
435 starget_printk(KERN_ERR, starget,
436 "Failed to allocate memory in scsi_reap_target()\n");
437 return;
440 INIT_WORK(&wqw->work, scsi_target_reap_work, wqw);
441 wqw->starget = starget;
442 schedule_work(&wqw->work);
446 * scsi_probe_lun - probe a single LUN using a SCSI INQUIRY
447 * @sdev: scsi_device to probe
448 * @inq_result: area to store the INQUIRY result
449 * @result_len: len of inq_result
450 * @bflags: store any bflags found here
452 * Description:
453 * Probe the lun associated with @req using a standard SCSI INQUIRY;
455 * If the INQUIRY is successful, zero is returned and the
456 * INQUIRY data is in @inq_result; the scsi_level and INQUIRY length
457 * are copied to the scsi_device any flags value is stored in *@bflags.
459 static int scsi_probe_lun(struct scsi_device *sdev, char *inq_result,
460 int result_len, int *bflags)
462 unsigned char scsi_cmd[MAX_COMMAND_SIZE];
463 int first_inquiry_len, try_inquiry_len, next_inquiry_len;
464 int response_len = 0;
465 int pass, count, result;
466 struct scsi_sense_hdr sshdr;
468 *bflags = 0;
470 /* Perform up to 3 passes. The first pass uses a conservative
471 * transfer length of 36 unless sdev->inquiry_len specifies a
472 * different value. */
473 first_inquiry_len = sdev->inquiry_len ? sdev->inquiry_len : 36;
474 try_inquiry_len = first_inquiry_len;
475 pass = 1;
477 next_pass:
478 SCSI_LOG_SCAN_BUS(3, sdev_printk(KERN_INFO, sdev,
479 "scsi scan: INQUIRY pass %d length %d\n",
480 pass, try_inquiry_len));
482 /* Each pass gets up to three chances to ignore Unit Attention */
483 for (count = 0; count < 3; ++count) {
484 memset(scsi_cmd, 0, 6);
485 scsi_cmd[0] = INQUIRY;
486 scsi_cmd[4] = (unsigned char) try_inquiry_len;
488 memset(inq_result, 0, try_inquiry_len);
490 result = scsi_execute_req(sdev, scsi_cmd, DMA_FROM_DEVICE,
491 inq_result, try_inquiry_len, &sshdr,
492 HZ / 2 + HZ * scsi_inq_timeout, 3);
494 SCSI_LOG_SCAN_BUS(3, printk(KERN_INFO "scsi scan: INQUIRY %s "
495 "with code 0x%x\n",
496 result ? "failed" : "successful", result));
498 if (result) {
500 * not-ready to ready transition [asc/ascq=0x28/0x0]
501 * or power-on, reset [asc/ascq=0x29/0x0], continue.
502 * INQUIRY should not yield UNIT_ATTENTION
503 * but many buggy devices do so anyway.
505 if ((driver_byte(result) & DRIVER_SENSE) &&
506 scsi_sense_valid(&sshdr)) {
507 if ((sshdr.sense_key == UNIT_ATTENTION) &&
508 ((sshdr.asc == 0x28) ||
509 (sshdr.asc == 0x29)) &&
510 (sshdr.ascq == 0))
511 continue;
514 break;
517 if (result == 0) {
518 response_len = (unsigned char) inq_result[4] + 5;
519 if (response_len > 255)
520 response_len = first_inquiry_len; /* sanity */
523 * Get any flags for this device.
525 * XXX add a bflags to scsi_device, and replace the
526 * corresponding bit fields in scsi_device, so bflags
527 * need not be passed as an argument.
529 *bflags = scsi_get_device_flags(sdev, &inq_result[8],
530 &inq_result[16]);
532 /* When the first pass succeeds we gain information about
533 * what larger transfer lengths might work. */
534 if (pass == 1) {
535 if (BLIST_INQUIRY_36 & *bflags)
536 next_inquiry_len = 36;
537 else if (BLIST_INQUIRY_58 & *bflags)
538 next_inquiry_len = 58;
539 else if (sdev->inquiry_len)
540 next_inquiry_len = sdev->inquiry_len;
541 else
542 next_inquiry_len = response_len;
544 /* If more data is available perform the second pass */
545 if (next_inquiry_len > try_inquiry_len) {
546 try_inquiry_len = next_inquiry_len;
547 pass = 2;
548 goto next_pass;
552 } else if (pass == 2) {
553 printk(KERN_INFO "scsi scan: %d byte inquiry failed. "
554 "Consider BLIST_INQUIRY_36 for this device\n",
555 try_inquiry_len);
557 /* If this pass failed, the third pass goes back and transfers
558 * the same amount as we successfully got in the first pass. */
559 try_inquiry_len = first_inquiry_len;
560 pass = 3;
561 goto next_pass;
564 /* If the last transfer attempt got an error, assume the
565 * peripheral doesn't exist or is dead. */
566 if (result)
567 return -EIO;
569 /* Don't report any more data than the device says is valid */
570 sdev->inquiry_len = min(try_inquiry_len, response_len);
573 * XXX Abort if the response length is less than 36? If less than
574 * 32, the lookup of the device flags (above) could be invalid,
575 * and it would be possible to take an incorrect action - we do
576 * not want to hang because of a short INQUIRY. On the flip side,
577 * if the device is spun down or becoming ready (and so it gives a
578 * short INQUIRY), an abort here prevents any further use of the
579 * device, including spin up.
581 * Related to the above issue:
583 * XXX Devices (disk or all?) should be sent a TEST UNIT READY,
584 * and if not ready, sent a START_STOP to start (maybe spin up) and
585 * then send the INQUIRY again, since the INQUIRY can change after
586 * a device is initialized.
588 * Ideally, start a device if explicitly asked to do so. This
589 * assumes that a device is spun up on power on, spun down on
590 * request, and then spun up on request.
594 * The scanning code needs to know the scsi_level, even if no
595 * device is attached at LUN 0 (SCSI_SCAN_TARGET_PRESENT) so
596 * non-zero LUNs can be scanned.
598 sdev->scsi_level = inq_result[2] & 0x07;
599 if (sdev->scsi_level >= 2 ||
600 (sdev->scsi_level == 1 && (inq_result[3] & 0x0f) == 1))
601 sdev->scsi_level++;
602 sdev->sdev_target->scsi_level = sdev->scsi_level;
604 return 0;
608 * scsi_add_lun - allocate and fully initialze a scsi_device
609 * @sdevscan: holds information to be stored in the new scsi_device
610 * @sdevnew: store the address of the newly allocated scsi_device
611 * @inq_result: holds the result of a previous INQUIRY to the LUN
612 * @bflags: black/white list flag
614 * Description:
615 * Allocate and initialize a scsi_device matching sdevscan. Optionally
616 * set fields based on values in *@bflags. If @sdevnew is not
617 * NULL, store the address of the new scsi_device in *@sdevnew (needed
618 * when scanning a particular LUN).
620 * Return:
621 * SCSI_SCAN_NO_RESPONSE: could not allocate or setup a scsi_device
622 * SCSI_SCAN_LUN_PRESENT: a new scsi_device was allocated and initialized
624 static int scsi_add_lun(struct scsi_device *sdev, char *inq_result, int *bflags)
627 * XXX do not save the inquiry, since it can change underneath us,
628 * save just vendor/model/rev.
630 * Rather than save it and have an ioctl that retrieves the saved
631 * value, have an ioctl that executes the same INQUIRY code used
632 * in scsi_probe_lun, let user level programs doing INQUIRY
633 * scanning run at their own risk, or supply a user level program
634 * that can correctly scan.
636 sdev->inquiry = kmalloc(sdev->inquiry_len, GFP_ATOMIC);
637 if (sdev->inquiry == NULL) {
638 return SCSI_SCAN_NO_RESPONSE;
641 memcpy(sdev->inquiry, inq_result, sdev->inquiry_len);
642 sdev->vendor = (char *) (sdev->inquiry + 8);
643 sdev->model = (char *) (sdev->inquiry + 16);
644 sdev->rev = (char *) (sdev->inquiry + 32);
646 if (*bflags & BLIST_ISROM) {
648 * It would be better to modify sdev->type, and set
649 * sdev->removable, but then the print_inquiry() output
650 * would not show TYPE_ROM; if print_inquiry() is removed
651 * the issue goes away.
653 inq_result[0] = TYPE_ROM;
654 inq_result[1] |= 0x80; /* removable */
655 } else if (*bflags & BLIST_NO_ULD_ATTACH)
656 sdev->no_uld_attach = 1;
658 switch (sdev->type = (inq_result[0] & 0x1f)) {
659 case TYPE_TAPE:
660 case TYPE_DISK:
661 case TYPE_PRINTER:
662 case TYPE_MOD:
663 case TYPE_PROCESSOR:
664 case TYPE_SCANNER:
665 case TYPE_MEDIUM_CHANGER:
666 case TYPE_ENCLOSURE:
667 case TYPE_COMM:
668 case TYPE_RBC:
669 sdev->writeable = 1;
670 break;
671 case TYPE_WORM:
672 case TYPE_ROM:
673 sdev->writeable = 0;
674 break;
675 default:
676 printk(KERN_INFO "scsi: unknown device type %d\n", sdev->type);
679 print_inquiry(inq_result);
682 * For a peripheral qualifier (PQ) value of 1 (001b), the SCSI
683 * spec says: The device server is capable of supporting the
684 * specified peripheral device type on this logical unit. However,
685 * the physical device is not currently connected to this logical
686 * unit.
688 * The above is vague, as it implies that we could treat 001 and
689 * 011 the same. Stay compatible with previous code, and create a
690 * scsi_device for a PQ of 1
692 * Don't set the device offline here; rather let the upper
693 * level drivers eval the PQ to decide whether they should
694 * attach. So remove ((inq_result[0] >> 5) & 7) == 1 check.
697 sdev->inq_periph_qual = (inq_result[0] >> 5) & 7;
698 sdev->removable = (0x80 & inq_result[1]) >> 7;
699 sdev->lockable = sdev->removable;
700 sdev->soft_reset = (inq_result[7] & 1) && ((inq_result[3] & 7) == 2);
702 if (sdev->scsi_level >= SCSI_3 || (sdev->inquiry_len > 56 &&
703 inq_result[56] & 0x04))
704 sdev->ppr = 1;
705 if (inq_result[7] & 0x60)
706 sdev->wdtr = 1;
707 if (inq_result[7] & 0x10)
708 sdev->sdtr = 1;
710 sprintf(sdev->devfs_name, "scsi/host%d/bus%d/target%d/lun%d",
711 sdev->host->host_no, sdev->channel,
712 sdev->id, sdev->lun);
715 * End driverfs/devfs code.
718 if ((sdev->scsi_level >= SCSI_2) && (inq_result[7] & 2) &&
719 !(*bflags & BLIST_NOTQ))
720 sdev->tagged_supported = 1;
722 * Some devices (Texel CD ROM drives) have handshaking problems
723 * when used with the Seagate controllers. borken is initialized
724 * to 1, and then set it to 0 here.
726 if ((*bflags & BLIST_BORKEN) == 0)
727 sdev->borken = 0;
730 * Apparently some really broken devices (contrary to the SCSI
731 * standards) need to be selected without asserting ATN
733 if (*bflags & BLIST_SELECT_NO_ATN)
734 sdev->select_no_atn = 1;
737 * Some devices may not want to have a start command automatically
738 * issued when a device is added.
740 if (*bflags & BLIST_NOSTARTONADD)
741 sdev->no_start_on_add = 1;
743 if (*bflags & BLIST_SINGLELUN)
744 sdev->single_lun = 1;
747 sdev->use_10_for_rw = 1;
749 if (*bflags & BLIST_MS_SKIP_PAGE_08)
750 sdev->skip_ms_page_8 = 1;
752 if (*bflags & BLIST_MS_SKIP_PAGE_3F)
753 sdev->skip_ms_page_3f = 1;
755 if (*bflags & BLIST_USE_10_BYTE_MS)
756 sdev->use_10_for_ms = 1;
758 /* set the device running here so that slave configure
759 * may do I/O */
760 scsi_device_set_state(sdev, SDEV_RUNNING);
762 if (*bflags & BLIST_MS_192_BYTES_FOR_3F)
763 sdev->use_192_bytes_for_3f = 1;
765 if (*bflags & BLIST_NOT_LOCKABLE)
766 sdev->lockable = 0;
768 if (*bflags & BLIST_RETRY_HWERROR)
769 sdev->retry_hwerror = 1;
771 transport_configure_device(&sdev->sdev_gendev);
773 if (sdev->host->hostt->slave_configure)
774 sdev->host->hostt->slave_configure(sdev);
777 * Ok, the device is now all set up, we can
778 * register it and tell the rest of the kernel
779 * about it.
781 if (scsi_sysfs_add_sdev(sdev) != 0)
782 return SCSI_SCAN_NO_RESPONSE;
784 return SCSI_SCAN_LUN_PRESENT;
787 static inline void scsi_destroy_sdev(struct scsi_device *sdev)
789 if (sdev->host->hostt->slave_destroy)
790 sdev->host->hostt->slave_destroy(sdev);
791 transport_destroy_device(&sdev->sdev_gendev);
792 put_device(&sdev->sdev_gendev);
797 * scsi_probe_and_add_lun - probe a LUN, if a LUN is found add it
798 * @starget: pointer to target device structure
799 * @lun: LUN of target device
800 * @sdevscan: probe the LUN corresponding to this scsi_device
801 * @sdevnew: store the value of any new scsi_device allocated
802 * @bflagsp: store bflags here if not NULL
804 * Description:
805 * Call scsi_probe_lun, if a LUN with an attached device is found,
806 * allocate and set it up by calling scsi_add_lun.
808 * Return:
809 * SCSI_SCAN_NO_RESPONSE: could not allocate or setup a scsi_device
810 * SCSI_SCAN_TARGET_PRESENT: target responded, but no device is
811 * attached at the LUN
812 * SCSI_SCAN_LUN_PRESENT: a new scsi_device was allocated and initialized
814 static int scsi_probe_and_add_lun(struct scsi_target *starget,
815 uint lun, int *bflagsp,
816 struct scsi_device **sdevp, int rescan,
817 void *hostdata)
819 struct scsi_device *sdev;
820 unsigned char *result;
821 int bflags, res = SCSI_SCAN_NO_RESPONSE, result_len = 256;
822 struct Scsi_Host *shost = dev_to_shost(starget->dev.parent);
825 * The rescan flag is used as an optimization, the first scan of a
826 * host adapter calls into here with rescan == 0.
828 sdev = scsi_device_lookup_by_target(starget, lun);
829 if (sdev) {
830 if (rescan || sdev->sdev_state != SDEV_CREATED) {
831 SCSI_LOG_SCAN_BUS(3, printk(KERN_INFO
832 "scsi scan: device exists on %s\n",
833 sdev->sdev_gendev.bus_id));
834 if (sdevp)
835 *sdevp = sdev;
836 else
837 scsi_device_put(sdev);
839 if (bflagsp)
840 *bflagsp = scsi_get_device_flags(sdev,
841 sdev->vendor,
842 sdev->model);
843 return SCSI_SCAN_LUN_PRESENT;
845 scsi_device_put(sdev);
846 } else
847 sdev = scsi_alloc_sdev(starget, lun, hostdata);
848 if (!sdev)
849 goto out;
851 result = kmalloc(result_len, GFP_ATOMIC |
852 ((shost->unchecked_isa_dma) ? __GFP_DMA : 0));
853 if (!result)
854 goto out_free_sdev;
856 if (scsi_probe_lun(sdev, result, result_len, &bflags))
857 goto out_free_result;
860 * result contains valid SCSI INQUIRY data.
862 if ((result[0] >> 5) == 3) {
864 * For a Peripheral qualifier 3 (011b), the SCSI
865 * spec says: The device server is not capable of
866 * supporting a physical device on this logical
867 * unit.
869 * For disks, this implies that there is no
870 * logical disk configured at sdev->lun, but there
871 * is a target id responding.
873 SCSI_LOG_SCAN_BUS(3, printk(KERN_INFO
874 "scsi scan: peripheral qualifier of 3,"
875 " no device added\n"));
876 res = SCSI_SCAN_TARGET_PRESENT;
877 goto out_free_result;
880 res = scsi_add_lun(sdev, result, &bflags);
881 if (res == SCSI_SCAN_LUN_PRESENT) {
882 if (bflags & BLIST_KEY) {
883 sdev->lockable = 0;
884 scsi_unlock_floptical(sdev, result);
886 if (bflagsp)
887 *bflagsp = bflags;
890 out_free_result:
891 kfree(result);
892 out_free_sdev:
893 if (res == SCSI_SCAN_LUN_PRESENT) {
894 if (sdevp) {
895 if (scsi_device_get(sdev) == 0) {
896 *sdevp = sdev;
897 } else {
898 __scsi_remove_device(sdev);
899 res = SCSI_SCAN_NO_RESPONSE;
902 } else
903 scsi_destroy_sdev(sdev);
904 out:
905 return res;
909 * scsi_sequential_lun_scan - sequentially scan a SCSI target
910 * @starget: pointer to target structure to scan
911 * @bflags: black/white list flag for LUN 0
912 * @lun0_res: result of scanning LUN 0
914 * Description:
915 * Generally, scan from LUN 1 (LUN 0 is assumed to already have been
916 * scanned) to some maximum lun until a LUN is found with no device
917 * attached. Use the bflags to figure out any oddities.
919 * Modifies sdevscan->lun.
921 static void scsi_sequential_lun_scan(struct scsi_target *starget,
922 int bflags, int lun0_res, int scsi_level,
923 int rescan)
925 unsigned int sparse_lun, lun, max_dev_lun;
926 struct Scsi_Host *shost = dev_to_shost(starget->dev.parent);
928 SCSI_LOG_SCAN_BUS(3, printk(KERN_INFO "scsi scan: Sequential scan of"
929 "%s\n", starget->dev.bus_id));
931 max_dev_lun = min(max_scsi_luns, shost->max_lun);
933 * If this device is known to support sparse multiple units,
934 * override the other settings, and scan all of them. Normally,
935 * SCSI-3 devices should be scanned via the REPORT LUNS.
937 if (bflags & BLIST_SPARSELUN) {
938 max_dev_lun = shost->max_lun;
939 sparse_lun = 1;
940 } else
941 sparse_lun = 0;
944 * If not sparse lun and no device attached at LUN 0 do not scan
945 * any further.
947 if (!sparse_lun && (lun0_res != SCSI_SCAN_LUN_PRESENT))
948 return;
951 * If less than SCSI_1_CSS, and no special lun scaning, stop
952 * scanning; this matches 2.4 behaviour, but could just be a bug
953 * (to continue scanning a SCSI_1_CSS device).
955 * This test is broken. We might not have any device on lun0 for
956 * a sparselun device, and if that's the case then how would we
957 * know the real scsi_level, eh? It might make sense to just not
958 * scan any SCSI_1 device for non-0 luns, but that check would best
959 * go into scsi_alloc_sdev() and just have it return null when asked
960 * to alloc an sdev for lun > 0 on an already found SCSI_1 device.
962 if ((sdevscan->scsi_level < SCSI_1_CCS) &&
963 ((bflags & (BLIST_FORCELUN | BLIST_SPARSELUN | BLIST_MAX5LUN))
964 == 0))
965 return;
968 * If this device is known to support multiple units, override
969 * the other settings, and scan all of them.
971 if (bflags & BLIST_FORCELUN)
972 max_dev_lun = shost->max_lun;
974 * REGAL CDC-4X: avoid hang after LUN 4
976 if (bflags & BLIST_MAX5LUN)
977 max_dev_lun = min(5U, max_dev_lun);
979 * Do not scan SCSI-2 or lower device past LUN 7, unless
980 * BLIST_LARGELUN.
982 if (scsi_level < SCSI_3 && !(bflags & BLIST_LARGELUN))
983 max_dev_lun = min(8U, max_dev_lun);
986 * We have already scanned LUN 0, so start at LUN 1. Keep scanning
987 * until we reach the max, or no LUN is found and we are not
988 * sparse_lun.
990 for (lun = 1; lun < max_dev_lun; ++lun)
991 if ((scsi_probe_and_add_lun(starget, lun, NULL, NULL, rescan,
992 NULL) != SCSI_SCAN_LUN_PRESENT) &&
993 !sparse_lun)
994 return;
998 * scsilun_to_int: convert a scsi_lun to an int
999 * @scsilun: struct scsi_lun to be converted.
1001 * Description:
1002 * Convert @scsilun from a struct scsi_lun to a four byte host byte-ordered
1003 * integer, and return the result. The caller must check for
1004 * truncation before using this function.
1006 * Notes:
1007 * The struct scsi_lun is assumed to be four levels, with each level
1008 * effectively containing a SCSI byte-ordered (big endian) short; the
1009 * addressing bits of each level are ignored (the highest two bits).
1010 * For a description of the LUN format, post SCSI-3 see the SCSI
1011 * Architecture Model, for SCSI-3 see the SCSI Controller Commands.
1013 * Given a struct scsi_lun of: 0a 04 0b 03 00 00 00 00, this function returns
1014 * the integer: 0x0b030a04
1016 static int scsilun_to_int(struct scsi_lun *scsilun)
1018 int i;
1019 unsigned int lun;
1021 lun = 0;
1022 for (i = 0; i < sizeof(lun); i += 2)
1023 lun = lun | (((scsilun->scsi_lun[i] << 8) |
1024 scsilun->scsi_lun[i + 1]) << (i * 8));
1025 return lun;
1029 * int_to_scsilun: reverts an int into a scsi_lun
1030 * @int: integer to be reverted
1031 * @scsilun: struct scsi_lun to be set.
1033 * Description:
1034 * Reverts the functionality of the scsilun_to_int, which packed
1035 * an 8-byte lun value into an int. This routine unpacks the int
1036 * back into the lun value.
1037 * Note: the scsilun_to_int() routine does not truly handle all
1038 * 8bytes of the lun value. This functions restores only as much
1039 * as was set by the routine.
1041 * Notes:
1042 * Given an integer : 0x0b030a04, this function returns a
1043 * scsi_lun of : struct scsi_lun of: 0a 04 0b 03 00 00 00 00
1046 void int_to_scsilun(unsigned int lun, struct scsi_lun *scsilun)
1048 int i;
1050 memset(scsilun->scsi_lun, 0, sizeof(scsilun->scsi_lun));
1052 for (i = 0; i < sizeof(lun); i += 2) {
1053 scsilun->scsi_lun[i] = (lun >> 8) & 0xFF;
1054 scsilun->scsi_lun[i+1] = lun & 0xFF;
1055 lun = lun >> 16;
1058 EXPORT_SYMBOL(int_to_scsilun);
1061 * scsi_report_lun_scan - Scan using SCSI REPORT LUN results
1062 * @sdevscan: scan the host, channel, and id of this scsi_device
1064 * Description:
1065 * If @sdevscan is for a SCSI-3 or up device, send a REPORT LUN
1066 * command, and scan the resulting list of LUNs by calling
1067 * scsi_probe_and_add_lun.
1069 * Modifies sdevscan->lun.
1071 * Return:
1072 * 0: scan completed (or no memory, so further scanning is futile)
1073 * 1: no report lun scan, or not configured
1075 static int scsi_report_lun_scan(struct scsi_target *starget, int bflags,
1076 int rescan)
1078 char devname[64];
1079 unsigned char scsi_cmd[MAX_COMMAND_SIZE];
1080 unsigned int length;
1081 unsigned int lun;
1082 unsigned int num_luns;
1083 unsigned int retries;
1084 int result;
1085 struct scsi_lun *lunp, *lun_data;
1086 u8 *data;
1087 struct scsi_sense_hdr sshdr;
1088 struct scsi_device *sdev;
1089 struct Scsi_Host *shost = dev_to_shost(&starget->dev);
1090 int ret = 0;
1093 * Only support SCSI-3 and up devices if BLIST_NOREPORTLUN is not set.
1094 * Also allow SCSI-2 if BLIST_REPORTLUN2 is set and host adapter does
1095 * support more than 8 LUNs.
1097 if ((bflags & BLIST_NOREPORTLUN) ||
1098 starget->scsi_level < SCSI_2 ||
1099 (starget->scsi_level < SCSI_3 &&
1100 (!(bflags & BLIST_REPORTLUN2) || shost->max_lun <= 8)) )
1101 return 1;
1102 if (bflags & BLIST_NOLUN)
1103 return 0;
1105 if (!(sdev = scsi_device_lookup_by_target(starget, 0))) {
1106 sdev = scsi_alloc_sdev(starget, 0, NULL);
1107 if (!sdev)
1108 return 0;
1109 if (scsi_device_get(sdev))
1110 return 0;
1113 sprintf(devname, "host %d channel %d id %d",
1114 shost->host_no, sdev->channel, sdev->id);
1117 * Allocate enough to hold the header (the same size as one scsi_lun)
1118 * plus the max number of luns we are requesting.
1120 * Reallocating and trying again (with the exact amount we need)
1121 * would be nice, but then we need to somehow limit the size
1122 * allocated based on the available memory and the limits of
1123 * kmalloc - we don't want a kmalloc() failure of a huge value to
1124 * prevent us from finding any LUNs on this target.
1126 length = (max_scsi_report_luns + 1) * sizeof(struct scsi_lun);
1127 lun_data = kmalloc(length, GFP_ATOMIC |
1128 (sdev->host->unchecked_isa_dma ? __GFP_DMA : 0));
1129 if (!lun_data) {
1130 printk(ALLOC_FAILURE_MSG, __FUNCTION__);
1131 goto out;
1134 scsi_cmd[0] = REPORT_LUNS;
1137 * bytes 1 - 5: reserved, set to zero.
1139 memset(&scsi_cmd[1], 0, 5);
1142 * bytes 6 - 9: length of the command.
1144 scsi_cmd[6] = (unsigned char) (length >> 24) & 0xff;
1145 scsi_cmd[7] = (unsigned char) (length >> 16) & 0xff;
1146 scsi_cmd[8] = (unsigned char) (length >> 8) & 0xff;
1147 scsi_cmd[9] = (unsigned char) length & 0xff;
1149 scsi_cmd[10] = 0; /* reserved */
1150 scsi_cmd[11] = 0; /* control */
1153 * We can get a UNIT ATTENTION, for example a power on/reset, so
1154 * retry a few times (like sd.c does for TEST UNIT READY).
1155 * Experience shows some combinations of adapter/devices get at
1156 * least two power on/resets.
1158 * Illegal requests (for devices that do not support REPORT LUNS)
1159 * should come through as a check condition, and will not generate
1160 * a retry.
1162 for (retries = 0; retries < 3; retries++) {
1163 SCSI_LOG_SCAN_BUS(3, printk (KERN_INFO "scsi scan: Sending"
1164 " REPORT LUNS to %s (try %d)\n", devname,
1165 retries));
1167 result = scsi_execute_req(sdev, scsi_cmd, DMA_FROM_DEVICE,
1168 lun_data, length, &sshdr,
1169 SCSI_TIMEOUT + 4 * HZ, 3);
1171 SCSI_LOG_SCAN_BUS(3, printk (KERN_INFO "scsi scan: REPORT LUNS"
1172 " %s (try %d) result 0x%x\n", result
1173 ? "failed" : "successful", retries, result));
1174 if (result == 0)
1175 break;
1176 else if (scsi_sense_valid(&sshdr)) {
1177 if (sshdr.sense_key != UNIT_ATTENTION)
1178 break;
1182 if (result) {
1184 * The device probably does not support a REPORT LUN command
1186 ret = 1;
1187 goto out_err;
1191 * Get the length from the first four bytes of lun_data.
1193 data = (u8 *) lun_data->scsi_lun;
1194 length = ((data[0] << 24) | (data[1] << 16) |
1195 (data[2] << 8) | (data[3] << 0));
1197 num_luns = (length / sizeof(struct scsi_lun));
1198 if (num_luns > max_scsi_report_luns) {
1199 printk(KERN_WARNING "scsi: On %s only %d (max_scsi_report_luns)"
1200 " of %d luns reported, try increasing"
1201 " max_scsi_report_luns.\n", devname,
1202 max_scsi_report_luns, num_luns);
1203 num_luns = max_scsi_report_luns;
1206 SCSI_LOG_SCAN_BUS(3, sdev_printk (KERN_INFO, sdev,
1207 "scsi scan: REPORT LUN scan\n"));
1210 * Scan the luns in lun_data. The entry at offset 0 is really
1211 * the header, so start at 1 and go up to and including num_luns.
1213 for (lunp = &lun_data[1]; lunp <= &lun_data[num_luns]; lunp++) {
1214 lun = scsilun_to_int(lunp);
1217 * Check if the unused part of lunp is non-zero, and so
1218 * does not fit in lun.
1220 if (memcmp(&lunp->scsi_lun[sizeof(lun)], "\0\0\0\0", 4)) {
1221 int i;
1224 * Output an error displaying the LUN in byte order,
1225 * this differs from what linux would print for the
1226 * integer LUN value.
1228 printk(KERN_WARNING "scsi: %s lun 0x", devname);
1229 data = (char *)lunp->scsi_lun;
1230 for (i = 0; i < sizeof(struct scsi_lun); i++)
1231 printk("%02x", data[i]);
1232 printk(" has a LUN larger than currently supported.\n");
1233 } else if (lun > sdev->host->max_lun) {
1234 printk(KERN_WARNING "scsi: %s lun%d has a LUN larger"
1235 " than allowed by the host adapter\n",
1236 devname, lun);
1237 } else {
1238 int res;
1240 res = scsi_probe_and_add_lun(starget,
1241 lun, NULL, NULL, rescan, NULL);
1242 if (res == SCSI_SCAN_NO_RESPONSE) {
1244 * Got some results, but now none, abort.
1246 sdev_printk(KERN_ERR, sdev,
1247 "Unexpected response"
1248 " from lun %d while scanning, scan"
1249 " aborted\n", lun);
1250 break;
1255 out_err:
1256 kfree(lun_data);
1257 out:
1258 scsi_device_put(sdev);
1259 if (sdev->sdev_state == SDEV_CREATED)
1261 * the sdev we used didn't appear in the report luns scan
1263 scsi_destroy_sdev(sdev);
1264 return ret;
1267 struct scsi_device *__scsi_add_device(struct Scsi_Host *shost, uint channel,
1268 uint id, uint lun, void *hostdata)
1270 struct scsi_device *sdev;
1271 struct device *parent = &shost->shost_gendev;
1272 int res;
1273 struct scsi_target *starget;
1275 starget = scsi_alloc_target(parent, channel, id);
1276 if (!starget)
1277 return ERR_PTR(-ENOMEM);
1279 get_device(&starget->dev);
1280 mutex_lock(&shost->scan_mutex);
1281 if (scsi_host_scan_allowed(shost)) {
1282 res = scsi_probe_and_add_lun(starget, lun, NULL, &sdev, 1,
1283 hostdata);
1284 if (res != SCSI_SCAN_LUN_PRESENT)
1285 sdev = ERR_PTR(-ENODEV);
1287 mutex_unlock(&shost->scan_mutex);
1288 scsi_target_reap(starget);
1289 put_device(&starget->dev);
1291 return sdev;
1293 EXPORT_SYMBOL(__scsi_add_device);
1295 int scsi_add_device(struct Scsi_Host *host, uint channel,
1296 uint target, uint lun)
1298 struct scsi_device *sdev =
1299 __scsi_add_device(host, channel, target, lun, NULL);
1300 if (IS_ERR(sdev))
1301 return PTR_ERR(sdev);
1303 scsi_device_put(sdev);
1304 return 0;
1306 EXPORT_SYMBOL(scsi_add_device);
1308 void scsi_rescan_device(struct device *dev)
1310 struct scsi_driver *drv;
1312 if (!dev->driver)
1313 return;
1315 drv = to_scsi_driver(dev->driver);
1316 if (try_module_get(drv->owner)) {
1317 if (drv->rescan)
1318 drv->rescan(dev);
1319 module_put(drv->owner);
1322 EXPORT_SYMBOL(scsi_rescan_device);
1324 static void __scsi_scan_target(struct device *parent, unsigned int channel,
1325 unsigned int id, unsigned int lun, int rescan)
1327 struct Scsi_Host *shost = dev_to_shost(parent);
1328 int bflags = 0;
1329 int res;
1330 struct scsi_target *starget;
1332 if (shost->this_id == id)
1334 * Don't scan the host adapter
1336 return;
1338 starget = scsi_alloc_target(parent, channel, id);
1339 if (!starget)
1340 return;
1342 get_device(&starget->dev);
1343 if (lun != SCAN_WILD_CARD) {
1345 * Scan for a specific host/chan/id/lun.
1347 scsi_probe_and_add_lun(starget, lun, NULL, NULL, rescan, NULL);
1348 goto out_reap;
1352 * Scan LUN 0, if there is some response, scan further. Ideally, we
1353 * would not configure LUN 0 until all LUNs are scanned.
1355 res = scsi_probe_and_add_lun(starget, 0, &bflags, NULL, rescan, NULL);
1356 if (res == SCSI_SCAN_LUN_PRESENT || res == SCSI_SCAN_TARGET_PRESENT) {
1357 if (scsi_report_lun_scan(starget, bflags, rescan) != 0)
1359 * The REPORT LUN did not scan the target,
1360 * do a sequential scan.
1362 scsi_sequential_lun_scan(starget, bflags,
1363 res, starget->scsi_level, rescan);
1366 out_reap:
1367 /* now determine if the target has any children at all
1368 * and if not, nuke it */
1369 scsi_target_reap(starget);
1371 put_device(&starget->dev);
1375 * scsi_scan_target - scan a target id, possibly including all LUNs on the
1376 * target.
1377 * @parent: host to scan
1378 * @channel: channel to scan
1379 * @id: target id to scan
1380 * @lun: Specific LUN to scan or SCAN_WILD_CARD
1381 * @rescan: passed to LUN scanning routines
1383 * Description:
1384 * Scan the target id on @parent, @channel, and @id. Scan at least LUN 0,
1385 * and possibly all LUNs on the target id.
1387 * First try a REPORT LUN scan, if that does not scan the target, do a
1388 * sequential scan of LUNs on the target id.
1390 void scsi_scan_target(struct device *parent, unsigned int channel,
1391 unsigned int id, unsigned int lun, int rescan)
1393 struct Scsi_Host *shost = dev_to_shost(parent);
1395 mutex_lock(&shost->scan_mutex);
1396 if (scsi_host_scan_allowed(shost))
1397 __scsi_scan_target(parent, channel, id, lun, rescan);
1398 mutex_unlock(&shost->scan_mutex);
1400 EXPORT_SYMBOL(scsi_scan_target);
1402 static void scsi_scan_channel(struct Scsi_Host *shost, unsigned int channel,
1403 unsigned int id, unsigned int lun, int rescan)
1405 uint order_id;
1407 if (id == SCAN_WILD_CARD)
1408 for (id = 0; id < shost->max_id; ++id) {
1410 * XXX adapter drivers when possible (FCP, iSCSI)
1411 * could modify max_id to match the current max,
1412 * not the absolute max.
1414 * XXX add a shost id iterator, so for example,
1415 * the FC ID can be the same as a target id
1416 * without a huge overhead of sparse id's.
1418 if (shost->reverse_ordering)
1420 * Scan from high to low id.
1422 order_id = shost->max_id - id - 1;
1423 else
1424 order_id = id;
1425 __scsi_scan_target(&shost->shost_gendev, channel,
1426 order_id, lun, rescan);
1428 else
1429 __scsi_scan_target(&shost->shost_gendev, channel,
1430 id, lun, rescan);
1433 int scsi_scan_host_selected(struct Scsi_Host *shost, unsigned int channel,
1434 unsigned int id, unsigned int lun, int rescan)
1436 SCSI_LOG_SCAN_BUS(3, shost_printk (KERN_INFO, shost,
1437 "%s: <%u:%u:%u>\n",
1438 __FUNCTION__, channel, id, lun));
1440 if (((channel != SCAN_WILD_CARD) && (channel > shost->max_channel)) ||
1441 ((id != SCAN_WILD_CARD) && (id > shost->max_id)) ||
1442 ((lun != SCAN_WILD_CARD) && (lun > shost->max_lun)))
1443 return -EINVAL;
1445 mutex_lock(&shost->scan_mutex);
1446 if (scsi_host_scan_allowed(shost)) {
1447 if (channel == SCAN_WILD_CARD)
1448 for (channel = 0; channel <= shost->max_channel;
1449 channel++)
1450 scsi_scan_channel(shost, channel, id, lun,
1451 rescan);
1452 else
1453 scsi_scan_channel(shost, channel, id, lun, rescan);
1455 mutex_unlock(&shost->scan_mutex);
1457 return 0;
1461 * scsi_scan_host - scan the given adapter
1462 * @shost: adapter to scan
1464 void scsi_scan_host(struct Scsi_Host *shost)
1466 scsi_scan_host_selected(shost, SCAN_WILD_CARD, SCAN_WILD_CARD,
1467 SCAN_WILD_CARD, 0);
1469 EXPORT_SYMBOL(scsi_scan_host);
1471 void scsi_forget_host(struct Scsi_Host *shost)
1473 struct scsi_device *sdev;
1474 unsigned long flags;
1476 restart:
1477 spin_lock_irqsave(shost->host_lock, flags);
1478 list_for_each_entry(sdev, &shost->__devices, siblings) {
1479 if (sdev->sdev_state == SDEV_DEL)
1480 continue;
1481 spin_unlock_irqrestore(shost->host_lock, flags);
1482 __scsi_remove_device(sdev);
1483 goto restart;
1485 spin_unlock_irqrestore(shost->host_lock, flags);
1489 * Function: scsi_get_host_dev()
1491 * Purpose: Create a scsi_device that points to the host adapter itself.
1493 * Arguments: SHpnt - Host that needs a scsi_device
1495 * Lock status: None assumed.
1497 * Returns: The scsi_device or NULL
1499 * Notes:
1500 * Attach a single scsi_device to the Scsi_Host - this should
1501 * be made to look like a "pseudo-device" that points to the
1502 * HA itself.
1504 * Note - this device is not accessible from any high-level
1505 * drivers (including generics), which is probably not
1506 * optimal. We can add hooks later to attach
1508 struct scsi_device *scsi_get_host_dev(struct Scsi_Host *shost)
1510 struct scsi_device *sdev = NULL;
1511 struct scsi_target *starget;
1513 mutex_lock(&shost->scan_mutex);
1514 if (!scsi_host_scan_allowed(shost))
1515 goto out;
1516 starget = scsi_alloc_target(&shost->shost_gendev, 0, shost->this_id);
1517 if (!starget)
1518 goto out;
1520 sdev = scsi_alloc_sdev(starget, 0, NULL);
1521 if (sdev) {
1522 sdev->sdev_gendev.parent = get_device(&starget->dev);
1523 sdev->borken = 0;
1525 put_device(&starget->dev);
1526 out:
1527 mutex_unlock(&shost->scan_mutex);
1528 return sdev;
1530 EXPORT_SYMBOL(scsi_get_host_dev);
1533 * Function: scsi_free_host_dev()
1535 * Purpose: Free a scsi_device that points to the host adapter itself.
1537 * Arguments: SHpnt - Host that needs a scsi_device
1539 * Lock status: None assumed.
1541 * Returns: Nothing
1543 * Notes:
1545 void scsi_free_host_dev(struct scsi_device *sdev)
1547 BUG_ON(sdev->id != sdev->host->this_id);
1549 scsi_destroy_sdev(sdev);
1551 EXPORT_SYMBOL(scsi_free_host_dev);