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
);
296 int scsi_is_target_device(const struct device
*dev
)
298 return dev
->release
== scsi_target_dev_release
;
300 EXPORT_SYMBOL(scsi_is_target_device
);
302 static struct scsi_target
*__scsi_find_target(struct device
*parent
,
303 int channel
, uint id
)
305 struct scsi_target
*starget
, *found_starget
= NULL
;
306 struct Scsi_Host
*shost
= dev_to_shost(parent
);
308 * Search for an existing target for this sdev.
310 list_for_each_entry(starget
, &shost
->__targets
, siblings
) {
311 if (starget
->id
== id
&&
312 starget
->channel
== channel
) {
313 found_starget
= starget
;
318 get_device(&found_starget
->dev
);
320 return found_starget
;
323 static struct scsi_target
*scsi_alloc_target(struct device
*parent
,
324 int channel
, uint id
)
326 struct Scsi_Host
*shost
= dev_to_shost(parent
);
327 struct device
*dev
= NULL
;
329 const int size
= sizeof(struct scsi_target
)
330 + shost
->transportt
->target_size
;
331 struct scsi_target
*starget
;
332 struct scsi_target
*found_target
;
335 starget
= kzalloc(size
, GFP_KERNEL
);
337 printk(KERN_ERR
"%s: allocation failure\n", __FUNCTION__
);
341 device_initialize(dev
);
342 starget
->reap_ref
= 1;
343 dev
->parent
= get_device(parent
);
344 dev
->release
= scsi_target_dev_release
;
345 sprintf(dev
->bus_id
, "target%d:%d:%d",
346 shost
->host_no
, channel
, id
);
348 starget
->channel
= channel
;
349 INIT_LIST_HEAD(&starget
->siblings
);
350 INIT_LIST_HEAD(&starget
->devices
);
351 starget
->state
= STARGET_RUNNING
;
353 spin_lock_irqsave(shost
->host_lock
, flags
);
355 found_target
= __scsi_find_target(parent
, channel
, id
);
359 list_add_tail(&starget
->siblings
, &shost
->__targets
);
360 spin_unlock_irqrestore(shost
->host_lock
, flags
);
361 /* allocate and add */
362 transport_setup_device(dev
);
363 error
= device_add(dev
);
365 dev_err(dev
, "target device_add failed, error %d\n", error
);
366 spin_lock_irqsave(shost
->host_lock
, flags
);
367 list_del_init(&starget
->siblings
);
368 spin_unlock_irqrestore(shost
->host_lock
, flags
);
369 transport_destroy_device(dev
);
374 transport_add_device(dev
);
375 if (shost
->hostt
->target_alloc
) {
376 error
= shost
->hostt
->target_alloc(starget
);
379 dev_printk(KERN_ERR
, dev
, "target allocation failed, error %d\n", error
);
380 /* don't want scsi_target_reap to do the final
381 * put because it will be under the host lock */
383 scsi_target_reap(starget
);
392 found_target
->reap_ref
++;
393 spin_unlock_irqrestore(shost
->host_lock
, flags
);
395 if (found_target
->state
!= STARGET_DEL
) {
399 /* Unfortunately, we found a dying target; need to
400 * wait until it's dead before we can get a new one */
401 put_device(&found_target
->dev
);
402 flush_scheduled_work();
406 static void scsi_target_reap_usercontext(void *data
)
408 struct scsi_target
*starget
= data
;
409 struct Scsi_Host
*shost
= dev_to_shost(starget
->dev
.parent
);
412 transport_remove_device(&starget
->dev
);
413 device_del(&starget
->dev
);
414 transport_destroy_device(&starget
->dev
);
415 spin_lock_irqsave(shost
->host_lock
, flags
);
416 if (shost
->hostt
->target_destroy
)
417 shost
->hostt
->target_destroy(starget
);
418 list_del_init(&starget
->siblings
);
419 spin_unlock_irqrestore(shost
->host_lock
, flags
);
420 put_device(&starget
->dev
);
424 * scsi_target_reap - check to see if target is in use and destroy if not
426 * @starget: target to be checked
428 * This is used after removing a LUN or doing a last put of the target
429 * it checks atomically that nothing is using the target and removes
432 void scsi_target_reap(struct scsi_target
*starget
)
434 struct Scsi_Host
*shost
= dev_to_shost(starget
->dev
.parent
);
437 spin_lock_irqsave(shost
->host_lock
, flags
);
439 if (--starget
->reap_ref
== 0 && list_empty(&starget
->devices
)) {
440 BUG_ON(starget
->state
== STARGET_DEL
);
441 starget
->state
= STARGET_DEL
;
442 spin_unlock_irqrestore(shost
->host_lock
, flags
);
443 execute_in_process_context(scsi_target_reap_usercontext
,
444 starget
, &starget
->ew
);
448 spin_unlock_irqrestore(shost
->host_lock
, flags
);
454 * scsi_probe_lun - probe a single LUN using a SCSI INQUIRY
455 * @sdev: scsi_device to probe
456 * @inq_result: area to store the INQUIRY result
457 * @result_len: len of inq_result
458 * @bflags: store any bflags found here
461 * Probe the lun associated with @req using a standard SCSI INQUIRY;
463 * If the INQUIRY is successful, zero is returned and the
464 * INQUIRY data is in @inq_result; the scsi_level and INQUIRY length
465 * are copied to the scsi_device any flags value is stored in *@bflags.
467 static int scsi_probe_lun(struct scsi_device
*sdev
, char *inq_result
,
468 int result_len
, int *bflags
)
470 unsigned char scsi_cmd
[MAX_COMMAND_SIZE
];
471 int first_inquiry_len
, try_inquiry_len
, next_inquiry_len
;
472 int response_len
= 0;
473 int pass
, count
, result
;
474 struct scsi_sense_hdr sshdr
;
478 /* Perform up to 3 passes. The first pass uses a conservative
479 * transfer length of 36 unless sdev->inquiry_len specifies a
480 * different value. */
481 first_inquiry_len
= sdev
->inquiry_len
? sdev
->inquiry_len
: 36;
482 try_inquiry_len
= first_inquiry_len
;
486 SCSI_LOG_SCAN_BUS(3, sdev_printk(KERN_INFO
, sdev
,
487 "scsi scan: INQUIRY pass %d length %d\n",
488 pass
, try_inquiry_len
));
490 /* Each pass gets up to three chances to ignore Unit Attention */
491 for (count
= 0; count
< 3; ++count
) {
492 memset(scsi_cmd
, 0, 6);
493 scsi_cmd
[0] = INQUIRY
;
494 scsi_cmd
[4] = (unsigned char) try_inquiry_len
;
496 memset(inq_result
, 0, try_inquiry_len
);
498 result
= scsi_execute_req(sdev
, scsi_cmd
, DMA_FROM_DEVICE
,
499 inq_result
, try_inquiry_len
, &sshdr
,
500 HZ
/ 2 + HZ
* scsi_inq_timeout
, 3);
502 SCSI_LOG_SCAN_BUS(3, printk(KERN_INFO
"scsi scan: INQUIRY %s "
504 result
? "failed" : "successful", result
));
508 * not-ready to ready transition [asc/ascq=0x28/0x0]
509 * or power-on, reset [asc/ascq=0x29/0x0], continue.
510 * INQUIRY should not yield UNIT_ATTENTION
511 * but many buggy devices do so anyway.
513 if ((driver_byte(result
) & DRIVER_SENSE
) &&
514 scsi_sense_valid(&sshdr
)) {
515 if ((sshdr
.sense_key
== UNIT_ATTENTION
) &&
516 ((sshdr
.asc
== 0x28) ||
517 (sshdr
.asc
== 0x29)) &&
526 response_len
= (unsigned char) inq_result
[4] + 5;
527 if (response_len
> 255)
528 response_len
= first_inquiry_len
; /* sanity */
531 * Get any flags for this device.
533 * XXX add a bflags to scsi_device, and replace the
534 * corresponding bit fields in scsi_device, so bflags
535 * need not be passed as an argument.
537 *bflags
= scsi_get_device_flags(sdev
, &inq_result
[8],
540 /* When the first pass succeeds we gain information about
541 * what larger transfer lengths might work. */
543 if (BLIST_INQUIRY_36
& *bflags
)
544 next_inquiry_len
= 36;
545 else if (BLIST_INQUIRY_58
& *bflags
)
546 next_inquiry_len
= 58;
547 else if (sdev
->inquiry_len
)
548 next_inquiry_len
= sdev
->inquiry_len
;
550 next_inquiry_len
= response_len
;
552 /* If more data is available perform the second pass */
553 if (next_inquiry_len
> try_inquiry_len
) {
554 try_inquiry_len
= next_inquiry_len
;
560 } else if (pass
== 2) {
561 printk(KERN_INFO
"scsi scan: %d byte inquiry failed. "
562 "Consider BLIST_INQUIRY_36 for this device\n",
565 /* If this pass failed, the third pass goes back and transfers
566 * the same amount as we successfully got in the first pass. */
567 try_inquiry_len
= first_inquiry_len
;
572 /* If the last transfer attempt got an error, assume the
573 * peripheral doesn't exist or is dead. */
577 /* Don't report any more data than the device says is valid */
578 sdev
->inquiry_len
= min(try_inquiry_len
, response_len
);
581 * XXX Abort if the response length is less than 36? If less than
582 * 32, the lookup of the device flags (above) could be invalid,
583 * and it would be possible to take an incorrect action - we do
584 * not want to hang because of a short INQUIRY. On the flip side,
585 * if the device is spun down or becoming ready (and so it gives a
586 * short INQUIRY), an abort here prevents any further use of the
587 * device, including spin up.
589 * Related to the above issue:
591 * XXX Devices (disk or all?) should be sent a TEST UNIT READY,
592 * and if not ready, sent a START_STOP to start (maybe spin up) and
593 * then send the INQUIRY again, since the INQUIRY can change after
594 * a device is initialized.
596 * Ideally, start a device if explicitly asked to do so. This
597 * assumes that a device is spun up on power on, spun down on
598 * request, and then spun up on request.
602 * The scanning code needs to know the scsi_level, even if no
603 * device is attached at LUN 0 (SCSI_SCAN_TARGET_PRESENT) so
604 * non-zero LUNs can be scanned.
606 sdev
->scsi_level
= inq_result
[2] & 0x07;
607 if (sdev
->scsi_level
>= 2 ||
608 (sdev
->scsi_level
== 1 && (inq_result
[3] & 0x0f) == 1))
610 sdev
->sdev_target
->scsi_level
= sdev
->scsi_level
;
616 * scsi_add_lun - allocate and fully initialze a scsi_device
617 * @sdevscan: holds information to be stored in the new scsi_device
618 * @sdevnew: store the address of the newly allocated scsi_device
619 * @inq_result: holds the result of a previous INQUIRY to the LUN
620 * @bflags: black/white list flag
623 * Allocate and initialize a scsi_device matching sdevscan. Optionally
624 * set fields based on values in *@bflags. If @sdevnew is not
625 * NULL, store the address of the new scsi_device in *@sdevnew (needed
626 * when scanning a particular LUN).
629 * SCSI_SCAN_NO_RESPONSE: could not allocate or setup a scsi_device
630 * SCSI_SCAN_LUN_PRESENT: a new scsi_device was allocated and initialized
632 static int scsi_add_lun(struct scsi_device
*sdev
, char *inq_result
, int *bflags
)
635 * XXX do not save the inquiry, since it can change underneath us,
636 * save just vendor/model/rev.
638 * Rather than save it and have an ioctl that retrieves the saved
639 * value, have an ioctl that executes the same INQUIRY code used
640 * in scsi_probe_lun, let user level programs doing INQUIRY
641 * scanning run at their own risk, or supply a user level program
642 * that can correctly scan.
644 sdev
->inquiry
= kmalloc(sdev
->inquiry_len
, GFP_ATOMIC
);
645 if (sdev
->inquiry
== NULL
) {
646 return SCSI_SCAN_NO_RESPONSE
;
649 memcpy(sdev
->inquiry
, inq_result
, sdev
->inquiry_len
);
650 sdev
->vendor
= (char *) (sdev
->inquiry
+ 8);
651 sdev
->model
= (char *) (sdev
->inquiry
+ 16);
652 sdev
->rev
= (char *) (sdev
->inquiry
+ 32);
654 if (*bflags
& BLIST_ISROM
) {
656 * It would be better to modify sdev->type, and set
657 * sdev->removable, but then the print_inquiry() output
658 * would not show TYPE_ROM; if print_inquiry() is removed
659 * the issue goes away.
661 inq_result
[0] = TYPE_ROM
;
662 inq_result
[1] |= 0x80; /* removable */
663 } else if (*bflags
& BLIST_NO_ULD_ATTACH
)
664 sdev
->no_uld_attach
= 1;
666 switch (sdev
->type
= (inq_result
[0] & 0x1f)) {
673 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 * Maximum 512 sector transfer length
743 * broken RA4x00 Compaq Disk Array
745 if (*bflags
& BLIST_MAX_512
)
746 blk_queue_max_sectors(sdev
->request_queue
, 512);
749 * Some devices may not want to have a start command automatically
750 * issued when a device is added.
752 if (*bflags
& BLIST_NOSTARTONADD
)
753 sdev
->no_start_on_add
= 1;
755 if (*bflags
& BLIST_SINGLELUN
)
756 sdev
->single_lun
= 1;
759 sdev
->use_10_for_rw
= 1;
761 if (*bflags
& BLIST_MS_SKIP_PAGE_08
)
762 sdev
->skip_ms_page_8
= 1;
764 if (*bflags
& BLIST_MS_SKIP_PAGE_3F
)
765 sdev
->skip_ms_page_3f
= 1;
767 if (*bflags
& BLIST_USE_10_BYTE_MS
)
768 sdev
->use_10_for_ms
= 1;
770 /* set the device running here so that slave configure
772 scsi_device_set_state(sdev
, SDEV_RUNNING
);
774 if (*bflags
& BLIST_MS_192_BYTES_FOR_3F
)
775 sdev
->use_192_bytes_for_3f
= 1;
777 if (*bflags
& BLIST_NOT_LOCKABLE
)
780 if (*bflags
& BLIST_RETRY_HWERROR
)
781 sdev
->retry_hwerror
= 1;
783 transport_configure_device(&sdev
->sdev_gendev
);
785 if (sdev
->host
->hostt
->slave_configure
) {
786 int ret
= sdev
->host
->hostt
->slave_configure(sdev
);
789 * if LLDD reports slave not present, don't clutter
790 * console with alloc failure messages
793 sdev_printk(KERN_ERR
, sdev
,
794 "failed to configure device\n");
796 return SCSI_SCAN_NO_RESPONSE
;
801 * Ok, the device is now all set up, we can
802 * register it and tell the rest of the kernel
805 if (scsi_sysfs_add_sdev(sdev
) != 0)
806 return SCSI_SCAN_NO_RESPONSE
;
808 return SCSI_SCAN_LUN_PRESENT
;
811 static inline void scsi_destroy_sdev(struct scsi_device
*sdev
)
813 if (sdev
->host
->hostt
->slave_destroy
)
814 sdev
->host
->hostt
->slave_destroy(sdev
);
815 transport_destroy_device(&sdev
->sdev_gendev
);
816 put_device(&sdev
->sdev_gendev
);
820 * scsi_inq_str - print INQUIRY data from min to max index,
821 * strip trailing whitespace
822 * @buf: Output buffer with at least end-first+1 bytes of space
823 * @inq: Inquiry buffer (input)
824 * @first: Offset of string into inq
825 * @end: Index after last character in inq
827 static unsigned char* scsi_inq_str(unsigned char* buf
, unsigned char *inq
,
828 unsigned first
, unsigned end
)
830 unsigned term
= 0, idx
;
831 for (idx
= 0; idx
+first
< end
&& idx
+first
< inq
[4]+5; ++idx
) {
832 if (inq
[idx
+first
] > 0x20) {
833 buf
[idx
] = inq
[idx
+first
];
844 * scsi_probe_and_add_lun - probe a LUN, if a LUN is found add it
845 * @starget: pointer to target device structure
846 * @lun: LUN of target device
847 * @sdevscan: probe the LUN corresponding to this scsi_device
848 * @sdevnew: store the value of any new scsi_device allocated
849 * @bflagsp: store bflags here if not NULL
852 * Call scsi_probe_lun, if a LUN with an attached device is found,
853 * allocate and set it up by calling scsi_add_lun.
856 * SCSI_SCAN_NO_RESPONSE: could not allocate or setup a scsi_device
857 * SCSI_SCAN_TARGET_PRESENT: target responded, but no device is
858 * attached at the LUN
859 * SCSI_SCAN_LUN_PRESENT: a new scsi_device was allocated and initialized
861 static int scsi_probe_and_add_lun(struct scsi_target
*starget
,
862 uint lun
, int *bflagsp
,
863 struct scsi_device
**sdevp
, int rescan
,
866 struct scsi_device
*sdev
;
867 unsigned char *result
;
868 int bflags
, res
= SCSI_SCAN_NO_RESPONSE
, result_len
= 256;
869 struct Scsi_Host
*shost
= dev_to_shost(starget
->dev
.parent
);
872 * The rescan flag is used as an optimization, the first scan of a
873 * host adapter calls into here with rescan == 0.
875 sdev
= scsi_device_lookup_by_target(starget
, lun
);
877 if (rescan
|| sdev
->sdev_state
!= SDEV_CREATED
) {
878 SCSI_LOG_SCAN_BUS(3, printk(KERN_INFO
879 "scsi scan: device exists on %s\n",
880 sdev
->sdev_gendev
.bus_id
));
884 scsi_device_put(sdev
);
887 *bflagsp
= scsi_get_device_flags(sdev
,
890 return SCSI_SCAN_LUN_PRESENT
;
892 scsi_device_put(sdev
);
894 sdev
= scsi_alloc_sdev(starget
, lun
, hostdata
);
898 result
= kmalloc(result_len
, GFP_ATOMIC
|
899 ((shost
->unchecked_isa_dma
) ? __GFP_DMA
: 0));
903 if (scsi_probe_lun(sdev
, result
, result_len
, &bflags
))
904 goto out_free_result
;
909 * result contains valid SCSI INQUIRY data.
911 if (((result
[0] >> 5) == 3) && !(bflags
& BLIST_ATTACH_PQ3
)) {
913 * For a Peripheral qualifier 3 (011b), the SCSI
914 * spec says: The device server is not capable of
915 * supporting a physical device on this logical
918 * For disks, this implies that there is no
919 * logical disk configured at sdev->lun, but there
920 * is a target id responding.
922 SCSI_LOG_SCAN_BUS(2, sdev_printk(KERN_INFO
, sdev
, "scsi scan:"
923 " peripheral qualifier of 3, device not"
926 unsigned char vend
[9], mod
[17];
927 SCSI_LOG_SCAN_BUS(1, sdev_printk(KERN_INFO
, sdev
,
928 "scsi scan: consider passing scsi_mod."
929 "dev_flags=%s:%s:0x240 or 0x800240\n",
930 scsi_inq_str(vend
, result
, 8, 16),
931 scsi_inq_str(mod
, result
, 16, 32)));
934 res
= SCSI_SCAN_TARGET_PRESENT
;
935 goto out_free_result
;
939 * Non-standard SCSI targets may set the PDT to 0x1f (unknown or
940 * no device type) instead of using the Peripheral Qualifier to
941 * indicate that no LUN is present. For example, USB UFI does this.
943 if (starget
->pdt_1f_for_no_lun
&& (result
[0] & 0x1f) == 0x1f) {
944 SCSI_LOG_SCAN_BUS(3, printk(KERN_INFO
945 "scsi scan: peripheral device type"
946 " of 31, no device added\n"));
947 res
= SCSI_SCAN_TARGET_PRESENT
;
948 goto out_free_result
;
951 res
= scsi_add_lun(sdev
, result
, &bflags
);
952 if (res
== SCSI_SCAN_LUN_PRESENT
) {
953 if (bflags
& BLIST_KEY
) {
955 scsi_unlock_floptical(sdev
, result
);
962 if (res
== SCSI_SCAN_LUN_PRESENT
) {
964 if (scsi_device_get(sdev
) == 0) {
967 __scsi_remove_device(sdev
);
968 res
= SCSI_SCAN_NO_RESPONSE
;
972 scsi_destroy_sdev(sdev
);
978 * scsi_sequential_lun_scan - sequentially scan a SCSI target
979 * @starget: pointer to target structure to scan
980 * @bflags: black/white list flag for LUN 0
983 * Generally, scan from LUN 1 (LUN 0 is assumed to already have been
984 * scanned) to some maximum lun until a LUN is found with no device
985 * attached. Use the bflags to figure out any oddities.
987 * Modifies sdevscan->lun.
989 static void scsi_sequential_lun_scan(struct scsi_target
*starget
,
990 int bflags
, int scsi_level
, int rescan
)
992 unsigned int sparse_lun
, lun
, max_dev_lun
;
993 struct Scsi_Host
*shost
= dev_to_shost(starget
->dev
.parent
);
995 SCSI_LOG_SCAN_BUS(3, printk(KERN_INFO
"scsi scan: Sequential scan of"
996 "%s\n", starget
->dev
.bus_id
));
998 max_dev_lun
= min(max_scsi_luns
, shost
->max_lun
);
1000 * If this device is known to support sparse multiple units,
1001 * override the other settings, and scan all of them. Normally,
1002 * SCSI-3 devices should be scanned via the REPORT LUNS.
1004 if (bflags
& BLIST_SPARSELUN
) {
1005 max_dev_lun
= shost
->max_lun
;
1011 * If less than SCSI_1_CSS, and no special lun scaning, stop
1012 * scanning; this matches 2.4 behaviour, but could just be a bug
1013 * (to continue scanning a SCSI_1_CSS device).
1015 * This test is broken. We might not have any device on lun0 for
1016 * a sparselun device, and if that's the case then how would we
1017 * know the real scsi_level, eh? It might make sense to just not
1018 * scan any SCSI_1 device for non-0 luns, but that check would best
1019 * go into scsi_alloc_sdev() and just have it return null when asked
1020 * to alloc an sdev for lun > 0 on an already found SCSI_1 device.
1022 if ((sdevscan->scsi_level < SCSI_1_CCS) &&
1023 ((bflags & (BLIST_FORCELUN | BLIST_SPARSELUN | BLIST_MAX5LUN))
1028 * If this device is known to support multiple units, override
1029 * the other settings, and scan all of them.
1031 if (bflags
& BLIST_FORCELUN
)
1032 max_dev_lun
= shost
->max_lun
;
1034 * REGAL CDC-4X: avoid hang after LUN 4
1036 if (bflags
& BLIST_MAX5LUN
)
1037 max_dev_lun
= min(5U, max_dev_lun
);
1039 * Do not scan SCSI-2 or lower device past LUN 7, unless
1042 if (scsi_level
< SCSI_3
&& !(bflags
& BLIST_LARGELUN
))
1043 max_dev_lun
= min(8U, max_dev_lun
);
1046 * We have already scanned LUN 0, so start at LUN 1. Keep scanning
1047 * until we reach the max, or no LUN is found and we are not
1050 for (lun
= 1; lun
< max_dev_lun
; ++lun
)
1051 if ((scsi_probe_and_add_lun(starget
, lun
, NULL
, NULL
, rescan
,
1052 NULL
) != SCSI_SCAN_LUN_PRESENT
) &&
1058 * scsilun_to_int: convert a scsi_lun to an int
1059 * @scsilun: struct scsi_lun to be converted.
1062 * Convert @scsilun from a struct scsi_lun to a four byte host byte-ordered
1063 * integer, and return the result. The caller must check for
1064 * truncation before using this function.
1067 * The struct scsi_lun is assumed to be four levels, with each level
1068 * effectively containing a SCSI byte-ordered (big endian) short; the
1069 * addressing bits of each level are ignored (the highest two bits).
1070 * For a description of the LUN format, post SCSI-3 see the SCSI
1071 * Architecture Model, for SCSI-3 see the SCSI Controller Commands.
1073 * Given a struct scsi_lun of: 0a 04 0b 03 00 00 00 00, this function returns
1074 * the integer: 0x0b030a04
1076 static int scsilun_to_int(struct scsi_lun
*scsilun
)
1082 for (i
= 0; i
< sizeof(lun
); i
+= 2)
1083 lun
= lun
| (((scsilun
->scsi_lun
[i
] << 8) |
1084 scsilun
->scsi_lun
[i
+ 1]) << (i
* 8));
1089 * int_to_scsilun: reverts an int into a scsi_lun
1090 * @int: integer to be reverted
1091 * @scsilun: struct scsi_lun to be set.
1094 * Reverts the functionality of the scsilun_to_int, which packed
1095 * an 8-byte lun value into an int. This routine unpacks the int
1096 * back into the lun value.
1097 * Note: the scsilun_to_int() routine does not truly handle all
1098 * 8bytes of the lun value. This functions restores only as much
1099 * as was set by the routine.
1102 * Given an integer : 0x0b030a04, this function returns a
1103 * scsi_lun of : struct scsi_lun of: 0a 04 0b 03 00 00 00 00
1106 void int_to_scsilun(unsigned int lun
, struct scsi_lun
*scsilun
)
1110 memset(scsilun
->scsi_lun
, 0, sizeof(scsilun
->scsi_lun
));
1112 for (i
= 0; i
< sizeof(lun
); i
+= 2) {
1113 scsilun
->scsi_lun
[i
] = (lun
>> 8) & 0xFF;
1114 scsilun
->scsi_lun
[i
+1] = lun
& 0xFF;
1118 EXPORT_SYMBOL(int_to_scsilun
);
1121 * scsi_report_lun_scan - Scan using SCSI REPORT LUN results
1122 * @sdevscan: scan the host, channel, and id of this scsi_device
1125 * If @sdevscan is for a SCSI-3 or up device, send a REPORT LUN
1126 * command, and scan the resulting list of LUNs by calling
1127 * scsi_probe_and_add_lun.
1129 * Modifies sdevscan->lun.
1132 * 0: scan completed (or no memory, so further scanning is futile)
1133 * 1: no report lun scan, or not configured
1135 static int scsi_report_lun_scan(struct scsi_target
*starget
, int bflags
,
1139 unsigned char scsi_cmd
[MAX_COMMAND_SIZE
];
1140 unsigned int length
;
1142 unsigned int num_luns
;
1143 unsigned int retries
;
1145 struct scsi_lun
*lunp
, *lun_data
;
1147 struct scsi_sense_hdr sshdr
;
1148 struct scsi_device
*sdev
;
1149 struct Scsi_Host
*shost
= dev_to_shost(&starget
->dev
);
1153 * Only support SCSI-3 and up devices if BLIST_NOREPORTLUN is not set.
1154 * Also allow SCSI-2 if BLIST_REPORTLUN2 is set and host adapter does
1155 * support more than 8 LUNs.
1157 if (bflags
& BLIST_NOREPORTLUN
)
1159 if (starget
->scsi_level
< SCSI_2
&&
1160 starget
->scsi_level
!= SCSI_UNKNOWN
)
1162 if (starget
->scsi_level
< SCSI_3
&&
1163 (!(bflags
& BLIST_REPORTLUN2
) || shost
->max_lun
<= 8))
1165 if (bflags
& BLIST_NOLUN
)
1168 if (!(sdev
= scsi_device_lookup_by_target(starget
, 0))) {
1169 sdev
= scsi_alloc_sdev(starget
, 0, NULL
);
1172 if (scsi_device_get(sdev
))
1176 sprintf(devname
, "host %d channel %d id %d",
1177 shost
->host_no
, sdev
->channel
, sdev
->id
);
1180 * Allocate enough to hold the header (the same size as one scsi_lun)
1181 * plus the max number of luns we are requesting.
1183 * Reallocating and trying again (with the exact amount we need)
1184 * would be nice, but then we need to somehow limit the size
1185 * allocated based on the available memory and the limits of
1186 * kmalloc - we don't want a kmalloc() failure of a huge value to
1187 * prevent us from finding any LUNs on this target.
1189 length
= (max_scsi_report_luns
+ 1) * sizeof(struct scsi_lun
);
1190 lun_data
= kmalloc(length
, GFP_ATOMIC
|
1191 (sdev
->host
->unchecked_isa_dma
? __GFP_DMA
: 0));
1193 printk(ALLOC_FAILURE_MSG
, __FUNCTION__
);
1197 scsi_cmd
[0] = REPORT_LUNS
;
1200 * bytes 1 - 5: reserved, set to zero.
1202 memset(&scsi_cmd
[1], 0, 5);
1205 * bytes 6 - 9: length of the command.
1207 scsi_cmd
[6] = (unsigned char) (length
>> 24) & 0xff;
1208 scsi_cmd
[7] = (unsigned char) (length
>> 16) & 0xff;
1209 scsi_cmd
[8] = (unsigned char) (length
>> 8) & 0xff;
1210 scsi_cmd
[9] = (unsigned char) length
& 0xff;
1212 scsi_cmd
[10] = 0; /* reserved */
1213 scsi_cmd
[11] = 0; /* control */
1216 * We can get a UNIT ATTENTION, for example a power on/reset, so
1217 * retry a few times (like sd.c does for TEST UNIT READY).
1218 * Experience shows some combinations of adapter/devices get at
1219 * least two power on/resets.
1221 * Illegal requests (for devices that do not support REPORT LUNS)
1222 * should come through as a check condition, and will not generate
1225 for (retries
= 0; retries
< 3; retries
++) {
1226 SCSI_LOG_SCAN_BUS(3, printk (KERN_INFO
"scsi scan: Sending"
1227 " REPORT LUNS to %s (try %d)\n", devname
,
1230 result
= scsi_execute_req(sdev
, scsi_cmd
, DMA_FROM_DEVICE
,
1231 lun_data
, length
, &sshdr
,
1232 SCSI_TIMEOUT
+ 4 * HZ
, 3);
1234 SCSI_LOG_SCAN_BUS(3, printk (KERN_INFO
"scsi scan: REPORT LUNS"
1235 " %s (try %d) result 0x%x\n", result
1236 ? "failed" : "successful", retries
, result
));
1239 else if (scsi_sense_valid(&sshdr
)) {
1240 if (sshdr
.sense_key
!= UNIT_ATTENTION
)
1247 * The device probably does not support a REPORT LUN command
1254 * Get the length from the first four bytes of lun_data.
1256 data
= (u8
*) lun_data
->scsi_lun
;
1257 length
= ((data
[0] << 24) | (data
[1] << 16) |
1258 (data
[2] << 8) | (data
[3] << 0));
1260 num_luns
= (length
/ sizeof(struct scsi_lun
));
1261 if (num_luns
> max_scsi_report_luns
) {
1262 printk(KERN_WARNING
"scsi: On %s only %d (max_scsi_report_luns)"
1263 " of %d luns reported, try increasing"
1264 " max_scsi_report_luns.\n", devname
,
1265 max_scsi_report_luns
, num_luns
);
1266 num_luns
= max_scsi_report_luns
;
1269 SCSI_LOG_SCAN_BUS(3, sdev_printk (KERN_INFO
, sdev
,
1270 "scsi scan: REPORT LUN scan\n"));
1273 * Scan the luns in lun_data. The entry at offset 0 is really
1274 * the header, so start at 1 and go up to and including num_luns.
1276 for (lunp
= &lun_data
[1]; lunp
<= &lun_data
[num_luns
]; lunp
++) {
1277 lun
= scsilun_to_int(lunp
);
1280 * Check if the unused part of lunp is non-zero, and so
1281 * does not fit in lun.
1283 if (memcmp(&lunp
->scsi_lun
[sizeof(lun
)], "\0\0\0\0", 4)) {
1287 * Output an error displaying the LUN in byte order,
1288 * this differs from what linux would print for the
1289 * integer LUN value.
1291 printk(KERN_WARNING
"scsi: %s lun 0x", devname
);
1292 data
= (char *)lunp
->scsi_lun
;
1293 for (i
= 0; i
< sizeof(struct scsi_lun
); i
++)
1294 printk("%02x", data
[i
]);
1295 printk(" has a LUN larger than currently supported.\n");
1296 } else if (lun
> sdev
->host
->max_lun
) {
1297 printk(KERN_WARNING
"scsi: %s lun%d has a LUN larger"
1298 " than allowed by the host adapter\n",
1303 res
= scsi_probe_and_add_lun(starget
,
1304 lun
, NULL
, NULL
, rescan
, NULL
);
1305 if (res
== SCSI_SCAN_NO_RESPONSE
) {
1307 * Got some results, but now none, abort.
1309 sdev_printk(KERN_ERR
, sdev
,
1310 "Unexpected response"
1311 " from lun %d while scanning, scan"
1321 scsi_device_put(sdev
);
1322 if (sdev
->sdev_state
== SDEV_CREATED
)
1324 * the sdev we used didn't appear in the report luns scan
1326 scsi_destroy_sdev(sdev
);
1330 struct scsi_device
*__scsi_add_device(struct Scsi_Host
*shost
, uint channel
,
1331 uint id
, uint lun
, void *hostdata
)
1333 struct scsi_device
*sdev
= ERR_PTR(-ENODEV
);
1334 struct device
*parent
= &shost
->shost_gendev
;
1335 struct scsi_target
*starget
;
1337 starget
= scsi_alloc_target(parent
, channel
, id
);
1339 return ERR_PTR(-ENOMEM
);
1341 get_device(&starget
->dev
);
1342 mutex_lock(&shost
->scan_mutex
);
1343 if (scsi_host_scan_allowed(shost
))
1344 scsi_probe_and_add_lun(starget
, lun
, NULL
, &sdev
, 1, hostdata
);
1345 mutex_unlock(&shost
->scan_mutex
);
1346 scsi_target_reap(starget
);
1347 put_device(&starget
->dev
);
1351 EXPORT_SYMBOL(__scsi_add_device
);
1353 int scsi_add_device(struct Scsi_Host
*host
, uint channel
,
1354 uint target
, uint lun
)
1356 struct scsi_device
*sdev
=
1357 __scsi_add_device(host
, channel
, target
, lun
, NULL
);
1359 return PTR_ERR(sdev
);
1361 scsi_device_put(sdev
);
1364 EXPORT_SYMBOL(scsi_add_device
);
1366 void scsi_rescan_device(struct device
*dev
)
1368 struct scsi_driver
*drv
;
1373 drv
= to_scsi_driver(dev
->driver
);
1374 if (try_module_get(drv
->owner
)) {
1377 module_put(drv
->owner
);
1380 EXPORT_SYMBOL(scsi_rescan_device
);
1382 static void __scsi_scan_target(struct device
*parent
, unsigned int channel
,
1383 unsigned int id
, unsigned int lun
, int rescan
)
1385 struct Scsi_Host
*shost
= dev_to_shost(parent
);
1388 struct scsi_target
*starget
;
1390 if (shost
->this_id
== id
)
1392 * Don't scan the host adapter
1396 starget
= scsi_alloc_target(parent
, channel
, id
);
1400 get_device(&starget
->dev
);
1401 if (lun
!= SCAN_WILD_CARD
) {
1403 * Scan for a specific host/chan/id/lun.
1405 scsi_probe_and_add_lun(starget
, lun
, NULL
, NULL
, rescan
, NULL
);
1410 * Scan LUN 0, if there is some response, scan further. Ideally, we
1411 * would not configure LUN 0 until all LUNs are scanned.
1413 res
= scsi_probe_and_add_lun(starget
, 0, &bflags
, NULL
, rescan
, NULL
);
1414 if (res
== SCSI_SCAN_LUN_PRESENT
|| res
== SCSI_SCAN_TARGET_PRESENT
) {
1415 if (scsi_report_lun_scan(starget
, bflags
, rescan
) != 0)
1417 * The REPORT LUN did not scan the target,
1418 * do a sequential scan.
1420 scsi_sequential_lun_scan(starget
, bflags
,
1421 starget
->scsi_level
, rescan
);
1425 /* now determine if the target has any children at all
1426 * and if not, nuke it */
1427 scsi_target_reap(starget
);
1429 put_device(&starget
->dev
);
1433 * scsi_scan_target - scan a target id, possibly including all LUNs on the
1435 * @parent: host to scan
1436 * @channel: channel to scan
1437 * @id: target id to scan
1438 * @lun: Specific LUN to scan or SCAN_WILD_CARD
1439 * @rescan: passed to LUN scanning routines
1442 * Scan the target id on @parent, @channel, and @id. Scan at least LUN 0,
1443 * and possibly all LUNs on the target id.
1445 * First try a REPORT LUN scan, if that does not scan the target, do a
1446 * sequential scan of LUNs on the target id.
1448 void scsi_scan_target(struct device
*parent
, unsigned int channel
,
1449 unsigned int id
, unsigned int lun
, int rescan
)
1451 struct Scsi_Host
*shost
= dev_to_shost(parent
);
1453 mutex_lock(&shost
->scan_mutex
);
1454 if (scsi_host_scan_allowed(shost
))
1455 __scsi_scan_target(parent
, channel
, id
, lun
, rescan
);
1456 mutex_unlock(&shost
->scan_mutex
);
1458 EXPORT_SYMBOL(scsi_scan_target
);
1460 static void scsi_scan_channel(struct Scsi_Host
*shost
, unsigned int channel
,
1461 unsigned int id
, unsigned int lun
, int rescan
)
1465 if (id
== SCAN_WILD_CARD
)
1466 for (id
= 0; id
< shost
->max_id
; ++id
) {
1468 * XXX adapter drivers when possible (FCP, iSCSI)
1469 * could modify max_id to match the current max,
1470 * not the absolute max.
1472 * XXX add a shost id iterator, so for example,
1473 * the FC ID can be the same as a target id
1474 * without a huge overhead of sparse id's.
1476 if (shost
->reverse_ordering
)
1478 * Scan from high to low id.
1480 order_id
= shost
->max_id
- id
- 1;
1483 __scsi_scan_target(&shost
->shost_gendev
, channel
,
1484 order_id
, lun
, rescan
);
1487 __scsi_scan_target(&shost
->shost_gendev
, channel
,
1491 int scsi_scan_host_selected(struct Scsi_Host
*shost
, unsigned int channel
,
1492 unsigned int id
, unsigned int lun
, int rescan
)
1494 SCSI_LOG_SCAN_BUS(3, shost_printk (KERN_INFO
, shost
,
1496 __FUNCTION__
, channel
, id
, lun
));
1498 if (((channel
!= SCAN_WILD_CARD
) && (channel
> shost
->max_channel
)) ||
1499 ((id
!= SCAN_WILD_CARD
) && (id
> shost
->max_id
)) ||
1500 ((lun
!= SCAN_WILD_CARD
) && (lun
> shost
->max_lun
)))
1503 mutex_lock(&shost
->scan_mutex
);
1504 if (scsi_host_scan_allowed(shost
)) {
1505 if (channel
== SCAN_WILD_CARD
)
1506 for (channel
= 0; channel
<= shost
->max_channel
;
1508 scsi_scan_channel(shost
, channel
, id
, lun
,
1511 scsi_scan_channel(shost
, channel
, id
, lun
, rescan
);
1513 mutex_unlock(&shost
->scan_mutex
);
1519 * scsi_scan_host - scan the given adapter
1520 * @shost: adapter to scan
1522 void scsi_scan_host(struct Scsi_Host
*shost
)
1524 scsi_scan_host_selected(shost
, SCAN_WILD_CARD
, SCAN_WILD_CARD
,
1527 EXPORT_SYMBOL(scsi_scan_host
);
1529 void scsi_forget_host(struct Scsi_Host
*shost
)
1531 struct scsi_device
*sdev
;
1532 unsigned long flags
;
1535 spin_lock_irqsave(shost
->host_lock
, flags
);
1536 list_for_each_entry(sdev
, &shost
->__devices
, siblings
) {
1537 if (sdev
->sdev_state
== SDEV_DEL
)
1539 spin_unlock_irqrestore(shost
->host_lock
, flags
);
1540 __scsi_remove_device(sdev
);
1543 spin_unlock_irqrestore(shost
->host_lock
, flags
);
1547 * Function: scsi_get_host_dev()
1549 * Purpose: Create a scsi_device that points to the host adapter itself.
1551 * Arguments: SHpnt - Host that needs a scsi_device
1553 * Lock status: None assumed.
1555 * Returns: The scsi_device or NULL
1558 * Attach a single scsi_device to the Scsi_Host - this should
1559 * be made to look like a "pseudo-device" that points to the
1562 * Note - this device is not accessible from any high-level
1563 * drivers (including generics), which is probably not
1564 * optimal. We can add hooks later to attach
1566 struct scsi_device
*scsi_get_host_dev(struct Scsi_Host
*shost
)
1568 struct scsi_device
*sdev
= NULL
;
1569 struct scsi_target
*starget
;
1571 mutex_lock(&shost
->scan_mutex
);
1572 if (!scsi_host_scan_allowed(shost
))
1574 starget
= scsi_alloc_target(&shost
->shost_gendev
, 0, shost
->this_id
);
1578 sdev
= scsi_alloc_sdev(starget
, 0, NULL
);
1580 sdev
->sdev_gendev
.parent
= get_device(&starget
->dev
);
1583 put_device(&starget
->dev
);
1585 mutex_unlock(&shost
->scan_mutex
);
1588 EXPORT_SYMBOL(scsi_get_host_dev
);
1591 * Function: scsi_free_host_dev()
1593 * Purpose: Free a scsi_device that points to the host adapter itself.
1595 * Arguments: SHpnt - Host that needs a scsi_device
1597 * Lock status: None assumed.
1603 void scsi_free_host_dev(struct scsi_device
*sdev
)
1605 BUG_ON(sdev
->id
!= sdev
->host
->this_id
);
1607 scsi_destroy_sdev(sdev
);
1609 EXPORT_SYMBOL(scsi_free_host_dev
);