blob: 84f01fd0c8fde8fbc7c5a404bfbc775c6d286280 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * scsi_scan.c
3 *
4 * Copyright (C) 2000 Eric Youngdale,
5 * Copyright (C) 2002 Patrick Mansfield
6 *
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.
10 *
11 * A specific LUN is scanned via an INQUIRY command; if the LUN has a
Christoph Hellwigf64a1812005-10-31 18:32:08 +010012 * device attached, a scsi_device is allocated and setup for it.
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 *
14 * For every id of every channel on the given host:
15 *
16 * Scan LUN 0; if the target responds to LUN 0 (even if there is no
17 * device or storage attached to LUN 0):
18 *
19 * If LUN 0 has a device attached, allocate and setup a
Christoph Hellwigf64a1812005-10-31 18:32:08 +010020 * scsi_device for it.
Linus Torvalds1da177e2005-04-16 15:20:36 -070021 *
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.
26 */
27
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>
34
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>
43
44#include "scsi_priv.h"
45#include "scsi_logging.h"
46
47#define ALLOC_FAILURE_MSG KERN_ERR "%s: Allocation failure during" \
48 " SCSI scanning, some SCSI devices might not be configured\n"
49
50/*
51 * Default timeout
52 */
53#define SCSI_TIMEOUT (2*HZ)
54
55/*
56 * Prefix values for the SCSI id's (stored in driverfs name field)
57 */
58#define SCSI_UID_SER_NUM 'S'
59#define SCSI_UID_UNKNOWN 'Z'
60
61/*
62 * Return values of some of the scanning functions.
63 *
64 * SCSI_SCAN_NO_RESPONSE: no valid response received from the target, this
65 * includes allocation or general failures preventing IO from being sent.
66 *
67 * SCSI_SCAN_TARGET_PRESENT: target responded, but no device is available
68 * on the given LUN.
69 *
70 * SCSI_SCAN_LUN_PRESENT: target responded, and a device is available on a
71 * given LUN.
72 */
73#define SCSI_SCAN_NO_RESPONSE 0
74#define SCSI_SCAN_TARGET_PRESENT 1
75#define SCSI_SCAN_LUN_PRESENT 2
76
Arjan van de Ven0ad78202005-11-28 16:22:25 +010077static const char *scsi_null_device_strs = "nullnullnullnull";
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
79#define MAX_SCSI_LUNS 512
80
81#ifdef CONFIG_SCSI_MULTI_LUN
82static unsigned int max_scsi_luns = MAX_SCSI_LUNS;
83#else
84static unsigned int max_scsi_luns = 1;
85#endif
86
87module_param_named(max_luns, max_scsi_luns, int, S_IRUGO|S_IWUSR);
88MODULE_PARM_DESC(max_luns,
89 "last scsi LUN (should be between 1 and 2^32-1)");
90
91/*
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.
97 */
98static unsigned int max_scsi_report_luns = 511;
99
100module_param_named(max_report_luns, max_scsi_report_luns, int, S_IRUGO|S_IWUSR);
101MODULE_PARM_DESC(max_report_luns,
102 "REPORT LUNS maximum number of LUNS received (should be"
103 " between 1 and 16384)");
104
105static unsigned int scsi_inq_timeout = SCSI_TIMEOUT/HZ+3;
106
107module_param_named(inq_timeout, scsi_inq_timeout, int, S_IRUGO|S_IWUSR);
108MODULE_PARM_DESC(inq_timeout,
109 "Timeout (in seconds) waiting for devices to answer INQUIRY."
110 " Default is 5. Some non-compliant devices need more.");
111
112/**
113 * scsi_unlock_floptical - unlock device via a special MODE SENSE command
James Bottomley39216032005-06-15 18:48:29 -0500114 * @sdev: scsi device to send command to
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 * @result: area to store the result of the MODE SENSE
116 *
117 * Description:
James Bottomley39216032005-06-15 18:48:29 -0500118 * Send a vendor specific MODE SENSE (not a MODE SELECT) command.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 * Called for BLIST_KEY devices.
120 **/
James Bottomley39216032005-06-15 18:48:29 -0500121static void scsi_unlock_floptical(struct scsi_device *sdev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 unsigned char *result)
123{
124 unsigned char scsi_cmd[MAX_COMMAND_SIZE];
125
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;
James Bottomley39216032005-06-15 18:48:29 -0500131 scsi_cmd[4] = 0x2a; /* size */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 scsi_cmd[5] = 0;
James Bottomley39216032005-06-15 18:48:29 -0500133 scsi_execute_req(sdev, scsi_cmd, DMA_FROM_DEVICE, result, 0x2a, NULL,
134 SCSI_TIMEOUT, 3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135}
136
137/**
138 * print_inquiry - printk the inquiry information
139 * @inq_result: printk this SCSI INQUIRY
140 *
141 * Description:
142 * printk the vendor, model, and other information found in the
143 * INQUIRY data in @inq_result.
144 *
145 * Notes:
146 * Remove this, and replace with a hotplug event that logs any
147 * relevant information.
148 **/
149static void print_inquiry(unsigned char *inq_result)
150{
151 int i;
152
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(" ");
159
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(" ");
166
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(" ");
173
174 printk("\n");
175
176 i = inq_result[0] & 0x1f;
177
178 printk(KERN_NOTICE " Type: %s ",
179 i <
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");
188}
189
190/**
191 * scsi_alloc_sdev - allocate and setup a scsi_Device
192 *
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.
197 *
198 * Return value:
199 * scsi_Device pointer, or NULL on failure.
200 **/
201static struct scsi_device *scsi_alloc_sdev(struct scsi_target *starget,
202 unsigned int lun, void *hostdata)
203{
204 struct scsi_device *sdev;
205 int display_failure_msg = 1, ret;
206 struct Scsi_Host *shost = dev_to_shost(starget->dev.parent);
207
Jes Sorensen24669f752006-01-16 10:31:18 -0500208 sdev = kzalloc(sizeof(*sdev) + shost->transportt->device_size,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 GFP_ATOMIC);
210 if (!sdev)
211 goto out;
212
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 sdev->vendor = scsi_null_device_strs;
214 sdev->model = scsi_null_device_strs;
215 sdev->rev = scsi_null_device_strs;
216 sdev->host = shost;
217 sdev->id = starget->id;
218 sdev->lun = lun;
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);
226
227 sdev->sdev_gendev.parent = get_device(&starget->dev);
228 sdev->sdev_target = starget;
229
230 /* usually NULL and set by ->slave_alloc instead */
231 sdev->hostdata = hostdata;
232
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;
236
237 /*
238 * Some low level driver could use device->type
239 */
240 sdev->type = -1;
241
242 /*
243 * Assume that the device will have handshaking problems,
244 * and then fix this field later if it turns out it
245 * doesn't
246 */
247 sdev->borken = 1;
248
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 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);
254 goto out;
255 }
256
257 sdev->request_queue->queuedata = sdev;
258 scsi_adjust_queue_depth(sdev, 0, sdev->host->cmd_per_lun);
259
260 scsi_sysfs_device_initialize(sdev);
261
262 if (shost->hostt->slave_alloc) {
263 ret = shost->hostt->slave_alloc(sdev);
264 if (ret) {
265 /*
266 * if LLDD reports slave not present, don't clutter
267 * console with alloc failure messages
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 */
269 if (ret == -ENXIO)
270 display_failure_msg = 0;
271 goto out_device_destroy;
272 }
273 }
274
275 return sdev;
276
277out_device_destroy:
278 transport_destroy_device(&sdev->sdev_gendev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 put_device(&sdev->sdev_gendev);
280out:
281 if (display_failure_msg)
282 printk(ALLOC_FAILURE_MSG, __FUNCTION__);
283 return NULL;
284}
285
286static void scsi_target_dev_release(struct device *dev)
287{
288 struct device *parent = dev->parent;
289 struct scsi_target *starget = to_scsi_target(dev);
James Bottomleya283bd32005-05-24 12:06:38 -0500290 struct Scsi_Host *shost = dev_to_shost(parent);
291
292 if (shost->hostt->target_destroy)
293 shost->hostt->target_destroy(starget);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 kfree(starget);
295 put_device(parent);
296}
297
298int scsi_is_target_device(const struct device *dev)
299{
300 return dev->release == scsi_target_dev_release;
301}
302EXPORT_SYMBOL(scsi_is_target_device);
303
304static struct scsi_target *__scsi_find_target(struct device *parent,
305 int channel, uint id)
306{
307 struct scsi_target *starget, *found_starget = NULL;
308 struct Scsi_Host *shost = dev_to_shost(parent);
309 /*
310 * Search for an existing target for this sdev.
311 */
312 list_for_each_entry(starget, &shost->__targets, siblings) {
313 if (starget->id == id &&
314 starget->channel == channel) {
315 found_starget = starget;
316 break;
317 }
318 }
319 if (found_starget)
320 get_device(&found_starget->dev);
321
322 return found_starget;
323}
324
325static struct scsi_target *scsi_alloc_target(struct device *parent,
326 int channel, uint id)
327{
328 struct Scsi_Host *shost = dev_to_shost(parent);
329 struct device *dev = NULL;
330 unsigned long flags;
331 const int size = sizeof(struct scsi_target)
332 + shost->transportt->target_size;
James.Smart@Emulex.Com5c44cd22005-06-10 22:24:30 -0400333 struct scsi_target *starget;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 struct scsi_target *found_target;
335
Jes Sorensen24669f752006-01-16 10:31:18 -0500336 starget = kzalloc(size, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 if (!starget) {
338 printk(KERN_ERR "%s: allocation failure\n", __FUNCTION__);
339 return NULL;
340 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 dev = &starget->dev;
342 device_initialize(dev);
343 starget->reap_ref = 1;
344 dev->parent = get_device(parent);
345 dev->release = scsi_target_dev_release;
346 sprintf(dev->bus_id, "target%d:%d:%d",
347 shost->host_no, channel, id);
348 starget->id = id;
349 starget->channel = channel;
350 INIT_LIST_HEAD(&starget->siblings);
351 INIT_LIST_HEAD(&starget->devices);
James Bottomleyffedb452006-02-23 14:27:18 -0600352 starget->state = STARGET_RUNNING;
353 retry:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 spin_lock_irqsave(shost->host_lock, flags);
355
356 found_target = __scsi_find_target(parent, channel, id);
357 if (found_target)
358 goto found;
359
360 list_add_tail(&starget->siblings, &shost->__targets);
361 spin_unlock_irqrestore(shost->host_lock, flags);
362 /* allocate and add */
James Bottomleya283bd32005-05-24 12:06:38 -0500363 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);
368
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;
377 }
378 }
379
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 return starget;
381
382 found:
383 found_target->reap_ref++;
384 spin_unlock_irqrestore(shost->host_lock, flags);
385 put_device(parent);
James Bottomleyffedb452006-02-23 14:27:18 -0600386 if (found_target->state != STARGET_DEL) {
387 kfree(starget);
388 return found_target;
389 }
390 /* Unfortunately, we found a dying target; need to
391 * wait until it's dead before we can get a new one */
392 put_device(&found_target->dev);
393 flush_scheduled_work();
394 goto retry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395}
396
James Bottomley65110b22006-02-14 10:48:46 -0600397static void scsi_target_reap_usercontext(void *data)
398{
399 struct scsi_target *starget = data;
James Bottomley863a9302005-12-15 20:01:43 -0800400 struct Scsi_Host *shost = dev_to_shost(starget->dev.parent);
401 unsigned long flags;
402
James Bottomleyffedb452006-02-23 14:27:18 -0600403 transport_remove_device(&starget->dev);
404 device_del(&starget->dev);
405 transport_destroy_device(&starget->dev);
James Bottomley863a9302005-12-15 20:01:43 -0800406 spin_lock_irqsave(shost->host_lock, flags);
James Bottomleyffedb452006-02-23 14:27:18 -0600407 list_del_init(&starget->siblings);
James Bottomley863a9302005-12-15 20:01:43 -0800408 spin_unlock_irqrestore(shost->host_lock, flags);
James Bottomleyffedb452006-02-23 14:27:18 -0600409 put_device(&starget->dev);
James Bottomley863a9302005-12-15 20:01:43 -0800410}
411
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412/**
413 * scsi_target_reap - check to see if target is in use and destroy if not
414 *
415 * @starget: target to be checked
416 *
417 * This is used after removing a LUN or doing a last put of the target
418 * it checks atomically that nothing is using the target and removes
419 * it if so.
420 */
421void scsi_target_reap(struct scsi_target *starget)
422{
James Bottomleyffedb452006-02-23 14:27:18 -0600423 struct Scsi_Host *shost = dev_to_shost(starget->dev.parent);
424 unsigned long flags;
425
426 spin_lock_irqsave(shost->host_lock, flags);
427
428 if (--starget->reap_ref == 0 && list_empty(&starget->devices)) {
429 BUG_ON(starget->state == STARGET_DEL);
430 starget->state = STARGET_DEL;
431 spin_unlock_irqrestore(shost->host_lock, flags);
432 execute_in_process_context(scsi_target_reap_usercontext,
433 starget, &starget->ew);
434 return;
435
436 }
437 spin_unlock_irqrestore(shost->host_lock, flags);
438
439 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440}
441
442/**
443 * scsi_probe_lun - probe a single LUN using a SCSI INQUIRY
James Bottomley39216032005-06-15 18:48:29 -0500444 * @sdev: scsi_device to probe
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 * @inq_result: area to store the INQUIRY result
James Bottomley39216032005-06-15 18:48:29 -0500446 * @result_len: len of inq_result
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 * @bflags: store any bflags found here
448 *
449 * Description:
James Bottomley39216032005-06-15 18:48:29 -0500450 * Probe the lun associated with @req using a standard SCSI INQUIRY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 *
James Bottomley39216032005-06-15 18:48:29 -0500452 * If the INQUIRY is successful, zero is returned and the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 * INQUIRY data is in @inq_result; the scsi_level and INQUIRY length
Christoph Hellwigf64a1812005-10-31 18:32:08 +0100454 * are copied to the scsi_device any flags value is stored in *@bflags.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 **/
James Bottomley39216032005-06-15 18:48:29 -0500456static int scsi_probe_lun(struct scsi_device *sdev, char *inq_result,
457 int result_len, int *bflags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 unsigned char scsi_cmd[MAX_COMMAND_SIZE];
460 int first_inquiry_len, try_inquiry_len, next_inquiry_len;
461 int response_len = 0;
James Bottomley39216032005-06-15 18:48:29 -0500462 int pass, count, result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 struct scsi_sense_hdr sshdr;
464
465 *bflags = 0;
466
467 /* Perform up to 3 passes. The first pass uses a conservative
468 * transfer length of 36 unless sdev->inquiry_len specifies a
469 * different value. */
470 first_inquiry_len = sdev->inquiry_len ? sdev->inquiry_len : 36;
471 try_inquiry_len = first_inquiry_len;
472 pass = 1;
473
474 next_pass:
James Bottomley9ccfc752005-10-02 11:45:08 -0500475 SCSI_LOG_SCAN_BUS(3, sdev_printk(KERN_INFO, sdev,
476 "scsi scan: INQUIRY pass %d length %d\n",
477 pass, try_inquiry_len));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478
479 /* Each pass gets up to three chances to ignore Unit Attention */
480 for (count = 0; count < 3; ++count) {
481 memset(scsi_cmd, 0, 6);
482 scsi_cmd[0] = INQUIRY;
483 scsi_cmd[4] = (unsigned char) try_inquiry_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484
485 memset(inq_result, 0, try_inquiry_len);
James Bottomley39216032005-06-15 18:48:29 -0500486
487 result = scsi_execute_req(sdev, scsi_cmd, DMA_FROM_DEVICE,
James Bottomleyea73a9f2005-08-28 11:33:52 -0500488 inq_result, try_inquiry_len, &sshdr,
James Bottomley39216032005-06-15 18:48:29 -0500489 HZ / 2 + HZ * scsi_inq_timeout, 3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490
491 SCSI_LOG_SCAN_BUS(3, printk(KERN_INFO "scsi scan: INQUIRY %s "
492 "with code 0x%x\n",
James Bottomley39216032005-06-15 18:48:29 -0500493 result ? "failed" : "successful", result));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494
James Bottomley39216032005-06-15 18:48:29 -0500495 if (result) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 /*
497 * not-ready to ready transition [asc/ascq=0x28/0x0]
498 * or power-on, reset [asc/ascq=0x29/0x0], continue.
499 * INQUIRY should not yield UNIT_ATTENTION
500 * but many buggy devices do so anyway.
501 */
James Bottomley39216032005-06-15 18:48:29 -0500502 if ((driver_byte(result) & DRIVER_SENSE) &&
James Bottomleyea73a9f2005-08-28 11:33:52 -0500503 scsi_sense_valid(&sshdr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 if ((sshdr.sense_key == UNIT_ATTENTION) &&
505 ((sshdr.asc == 0x28) ||
506 (sshdr.asc == 0x29)) &&
507 (sshdr.ascq == 0))
508 continue;
509 }
510 }
511 break;
512 }
513
James Bottomley39216032005-06-15 18:48:29 -0500514 if (result == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 response_len = (unsigned char) inq_result[4] + 5;
516 if (response_len > 255)
517 response_len = first_inquiry_len; /* sanity */
518
519 /*
520 * Get any flags for this device.
521 *
Christoph Hellwigf64a1812005-10-31 18:32:08 +0100522 * XXX add a bflags to scsi_device, and replace the
523 * corresponding bit fields in scsi_device, so bflags
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 * need not be passed as an argument.
525 */
526 *bflags = scsi_get_device_flags(sdev, &inq_result[8],
527 &inq_result[16]);
528
529 /* When the first pass succeeds we gain information about
530 * what larger transfer lengths might work. */
531 if (pass == 1) {
532 if (BLIST_INQUIRY_36 & *bflags)
533 next_inquiry_len = 36;
534 else if (BLIST_INQUIRY_58 & *bflags)
535 next_inquiry_len = 58;
536 else if (sdev->inquiry_len)
537 next_inquiry_len = sdev->inquiry_len;
538 else
539 next_inquiry_len = response_len;
540
541 /* If more data is available perform the second pass */
542 if (next_inquiry_len > try_inquiry_len) {
543 try_inquiry_len = next_inquiry_len;
544 pass = 2;
545 goto next_pass;
546 }
547 }
548
549 } else if (pass == 2) {
550 printk(KERN_INFO "scsi scan: %d byte inquiry failed. "
551 "Consider BLIST_INQUIRY_36 for this device\n",
552 try_inquiry_len);
553
554 /* If this pass failed, the third pass goes back and transfers
555 * the same amount as we successfully got in the first pass. */
556 try_inquiry_len = first_inquiry_len;
557 pass = 3;
558 goto next_pass;
559 }
560
561 /* If the last transfer attempt got an error, assume the
562 * peripheral doesn't exist or is dead. */
James Bottomley39216032005-06-15 18:48:29 -0500563 if (result)
564 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565
566 /* Don't report any more data than the device says is valid */
567 sdev->inquiry_len = min(try_inquiry_len, response_len);
568
569 /*
570 * XXX Abort if the response length is less than 36? If less than
571 * 32, the lookup of the device flags (above) could be invalid,
572 * and it would be possible to take an incorrect action - we do
573 * not want to hang because of a short INQUIRY. On the flip side,
574 * if the device is spun down or becoming ready (and so it gives a
575 * short INQUIRY), an abort here prevents any further use of the
576 * device, including spin up.
577 *
578 * Related to the above issue:
579 *
580 * XXX Devices (disk or all?) should be sent a TEST UNIT READY,
581 * and if not ready, sent a START_STOP to start (maybe spin up) and
582 * then send the INQUIRY again, since the INQUIRY can change after
583 * a device is initialized.
584 *
585 * Ideally, start a device if explicitly asked to do so. This
586 * assumes that a device is spun up on power on, spun down on
587 * request, and then spun up on request.
588 */
589
590 /*
591 * The scanning code needs to know the scsi_level, even if no
592 * device is attached at LUN 0 (SCSI_SCAN_TARGET_PRESENT) so
593 * non-zero LUNs can be scanned.
594 */
595 sdev->scsi_level = inq_result[2] & 0x07;
596 if (sdev->scsi_level >= 2 ||
597 (sdev->scsi_level == 1 && (inq_result[3] & 0x0f) == 1))
598 sdev->scsi_level++;
James Bottomley6f3a2022005-09-22 20:33:28 -0500599 sdev->sdev_target->scsi_level = sdev->scsi_level;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600
James Bottomley39216032005-06-15 18:48:29 -0500601 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602}
603
604/**
Christoph Hellwigf64a1812005-10-31 18:32:08 +0100605 * scsi_add_lun - allocate and fully initialze a scsi_device
606 * @sdevscan: holds information to be stored in the new scsi_device
607 * @sdevnew: store the address of the newly allocated scsi_device
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 * @inq_result: holds the result of a previous INQUIRY to the LUN
609 * @bflags: black/white list flag
610 *
611 * Description:
Christoph Hellwigf64a1812005-10-31 18:32:08 +0100612 * Allocate and initialize a scsi_device matching sdevscan. Optionally
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 * set fields based on values in *@bflags. If @sdevnew is not
Christoph Hellwigf64a1812005-10-31 18:32:08 +0100614 * NULL, store the address of the new scsi_device in *@sdevnew (needed
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 * when scanning a particular LUN).
616 *
617 * Return:
Christoph Hellwigf64a1812005-10-31 18:32:08 +0100618 * SCSI_SCAN_NO_RESPONSE: could not allocate or setup a scsi_device
619 * SCSI_SCAN_LUN_PRESENT: a new scsi_device was allocated and initialized
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 **/
621static int scsi_add_lun(struct scsi_device *sdev, char *inq_result, int *bflags)
622{
623 /*
624 * XXX do not save the inquiry, since it can change underneath us,
625 * save just vendor/model/rev.
626 *
627 * Rather than save it and have an ioctl that retrieves the saved
628 * value, have an ioctl that executes the same INQUIRY code used
629 * in scsi_probe_lun, let user level programs doing INQUIRY
630 * scanning run at their own risk, or supply a user level program
631 * that can correctly scan.
632 */
633 sdev->inquiry = kmalloc(sdev->inquiry_len, GFP_ATOMIC);
634 if (sdev->inquiry == NULL) {
635 return SCSI_SCAN_NO_RESPONSE;
636 }
637
638 memcpy(sdev->inquiry, inq_result, sdev->inquiry_len);
639 sdev->vendor = (char *) (sdev->inquiry + 8);
640 sdev->model = (char *) (sdev->inquiry + 16);
641 sdev->rev = (char *) (sdev->inquiry + 32);
642
643 if (*bflags & BLIST_ISROM) {
644 /*
645 * It would be better to modify sdev->type, and set
646 * sdev->removable, but then the print_inquiry() output
647 * would not show TYPE_ROM; if print_inquiry() is removed
648 * the issue goes away.
649 */
650 inq_result[0] = TYPE_ROM;
651 inq_result[1] |= 0x80; /* removable */
652 } else if (*bflags & BLIST_NO_ULD_ATTACH)
653 sdev->no_uld_attach = 1;
654
655 switch (sdev->type = (inq_result[0] & 0x1f)) {
656 case TYPE_TAPE:
657 case TYPE_DISK:
658 case TYPE_PRINTER:
659 case TYPE_MOD:
660 case TYPE_PROCESSOR:
661 case TYPE_SCANNER:
662 case TYPE_MEDIUM_CHANGER:
663 case TYPE_ENCLOSURE:
664 case TYPE_COMM:
Al Viro 631e8a12005-05-16 01:59:55 +0100665 case TYPE_RBC:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 sdev->writeable = 1;
667 break;
668 case TYPE_WORM:
669 case TYPE_ROM:
670 sdev->writeable = 0;
671 break;
672 default:
673 printk(KERN_INFO "scsi: unknown device type %d\n", sdev->type);
674 }
675
676 print_inquiry(inq_result);
677
678 /*
679 * For a peripheral qualifier (PQ) value of 1 (001b), the SCSI
680 * spec says: The device server is capable of supporting the
681 * specified peripheral device type on this logical unit. However,
682 * the physical device is not currently connected to this logical
683 * unit.
684 *
685 * The above is vague, as it implies that we could treat 001 and
686 * 011 the same. Stay compatible with previous code, and create a
Christoph Hellwigf64a1812005-10-31 18:32:08 +0100687 * scsi_device for a PQ of 1
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 *
689 * Don't set the device offline here; rather let the upper
690 * level drivers eval the PQ to decide whether they should
691 * attach. So remove ((inq_result[0] >> 5) & 7) == 1 check.
692 */
693
694 sdev->inq_periph_qual = (inq_result[0] >> 5) & 7;
695 sdev->removable = (0x80 & inq_result[1]) >> 7;
696 sdev->lockable = sdev->removable;
697 sdev->soft_reset = (inq_result[7] & 1) && ((inq_result[3] & 7) == 2);
698
699 if (sdev->scsi_level >= SCSI_3 || (sdev->inquiry_len > 56 &&
700 inq_result[56] & 0x04))
701 sdev->ppr = 1;
702 if (inq_result[7] & 0x60)
703 sdev->wdtr = 1;
704 if (inq_result[7] & 0x10)
705 sdev->sdtr = 1;
706
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 /*
Greg KH5e3c34c2006-01-18 16:17:46 -0800708 * End sysfs code.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 */
710
711 if ((sdev->scsi_level >= SCSI_2) && (inq_result[7] & 2) &&
712 !(*bflags & BLIST_NOTQ))
713 sdev->tagged_supported = 1;
714 /*
715 * Some devices (Texel CD ROM drives) have handshaking problems
716 * when used with the Seagate controllers. borken is initialized
717 * to 1, and then set it to 0 here.
718 */
719 if ((*bflags & BLIST_BORKEN) == 0)
720 sdev->borken = 0;
721
722 /*
723 * Apparently some really broken devices (contrary to the SCSI
724 * standards) need to be selected without asserting ATN
725 */
726 if (*bflags & BLIST_SELECT_NO_ATN)
727 sdev->select_no_atn = 1;
728
729 /*
730 * Some devices may not want to have a start command automatically
731 * issued when a device is added.
732 */
733 if (*bflags & BLIST_NOSTARTONADD)
734 sdev->no_start_on_add = 1;
735
736 if (*bflags & BLIST_SINGLELUN)
737 sdev->single_lun = 1;
738
739
740 sdev->use_10_for_rw = 1;
741
742 if (*bflags & BLIST_MS_SKIP_PAGE_08)
743 sdev->skip_ms_page_8 = 1;
744
745 if (*bflags & BLIST_MS_SKIP_PAGE_3F)
746 sdev->skip_ms_page_3f = 1;
747
748 if (*bflags & BLIST_USE_10_BYTE_MS)
749 sdev->use_10_for_ms = 1;
750
751 /* set the device running here so that slave configure
752 * may do I/O */
753 scsi_device_set_state(sdev, SDEV_RUNNING);
754
755 if (*bflags & BLIST_MS_192_BYTES_FOR_3F)
756 sdev->use_192_bytes_for_3f = 1;
757
758 if (*bflags & BLIST_NOT_LOCKABLE)
759 sdev->lockable = 0;
760
761 if (*bflags & BLIST_RETRY_HWERROR)
762 sdev->retry_hwerror = 1;
763
764 transport_configure_device(&sdev->sdev_gendev);
765
766 if (sdev->host->hostt->slave_configure)
767 sdev->host->hostt->slave_configure(sdev);
768
769 /*
770 * Ok, the device is now all set up, we can
771 * register it and tell the rest of the kernel
772 * about it.
773 */
Alan Sternb24b1032005-07-27 11:43:46 -0700774 if (scsi_sysfs_add_sdev(sdev) != 0)
775 return SCSI_SCAN_NO_RESPONSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776
777 return SCSI_SCAN_LUN_PRESENT;
778}
779
James Bottomley6f3a2022005-09-22 20:33:28 -0500780static inline void scsi_destroy_sdev(struct scsi_device *sdev)
781{
782 if (sdev->host->hostt->slave_destroy)
783 sdev->host->hostt->slave_destroy(sdev);
784 transport_destroy_device(&sdev->sdev_gendev);
785 put_device(&sdev->sdev_gendev);
786}
787
788
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789/**
790 * scsi_probe_and_add_lun - probe a LUN, if a LUN is found add it
791 * @starget: pointer to target device structure
792 * @lun: LUN of target device
Christoph Hellwigf64a1812005-10-31 18:32:08 +0100793 * @sdevscan: probe the LUN corresponding to this scsi_device
794 * @sdevnew: store the value of any new scsi_device allocated
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 * @bflagsp: store bflags here if not NULL
796 *
797 * Description:
798 * Call scsi_probe_lun, if a LUN with an attached device is found,
799 * allocate and set it up by calling scsi_add_lun.
800 *
801 * Return:
Christoph Hellwigf64a1812005-10-31 18:32:08 +0100802 * SCSI_SCAN_NO_RESPONSE: could not allocate or setup a scsi_device
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 * SCSI_SCAN_TARGET_PRESENT: target responded, but no device is
804 * attached at the LUN
Christoph Hellwigf64a1812005-10-31 18:32:08 +0100805 * SCSI_SCAN_LUN_PRESENT: a new scsi_device was allocated and initialized
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 **/
807static int scsi_probe_and_add_lun(struct scsi_target *starget,
808 uint lun, int *bflagsp,
809 struct scsi_device **sdevp, int rescan,
810 void *hostdata)
811{
812 struct scsi_device *sdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 unsigned char *result;
James Bottomley39216032005-06-15 18:48:29 -0500814 int bflags, res = SCSI_SCAN_NO_RESPONSE, result_len = 256;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 struct Scsi_Host *shost = dev_to_shost(starget->dev.parent);
816
817 /*
818 * The rescan flag is used as an optimization, the first scan of a
819 * host adapter calls into here with rescan == 0.
820 */
James Bottomley6f3a2022005-09-22 20:33:28 -0500821 sdev = scsi_device_lookup_by_target(starget, lun);
822 if (sdev) {
823 if (rescan || sdev->sdev_state != SDEV_CREATED) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 SCSI_LOG_SCAN_BUS(3, printk(KERN_INFO
825 "scsi scan: device exists on %s\n",
826 sdev->sdev_gendev.bus_id));
827 if (sdevp)
828 *sdevp = sdev;
829 else
830 scsi_device_put(sdev);
831
832 if (bflagsp)
833 *bflagsp = scsi_get_device_flags(sdev,
834 sdev->vendor,
835 sdev->model);
836 return SCSI_SCAN_LUN_PRESENT;
837 }
James Bottomley6f3a2022005-09-22 20:33:28 -0500838 scsi_device_put(sdev);
839 } else
840 sdev = scsi_alloc_sdev(starget, lun, hostdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 if (!sdev)
842 goto out;
James Bottomley39216032005-06-15 18:48:29 -0500843
844 result = kmalloc(result_len, GFP_ATOMIC |
Al Virobc861202005-04-24 12:28:34 -0700845 ((shost->unchecked_isa_dma) ? __GFP_DMA : 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 if (!result)
James Bottomley39216032005-06-15 18:48:29 -0500847 goto out_free_sdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848
James Bottomley39216032005-06-15 18:48:29 -0500849 if (scsi_probe_lun(sdev, result, result_len, &bflags))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 goto out_free_result;
851
852 /*
853 * result contains valid SCSI INQUIRY data.
854 */
855 if ((result[0] >> 5) == 3) {
856 /*
857 * For a Peripheral qualifier 3 (011b), the SCSI
858 * spec says: The device server is not capable of
859 * supporting a physical device on this logical
860 * unit.
861 *
862 * For disks, this implies that there is no
863 * logical disk configured at sdev->lun, but there
864 * is a target id responding.
865 */
866 SCSI_LOG_SCAN_BUS(3, printk(KERN_INFO
867 "scsi scan: peripheral qualifier of 3,"
868 " no device added\n"));
869 res = SCSI_SCAN_TARGET_PRESENT;
870 goto out_free_result;
871 }
872
Alan Stern1bfc5d92006-02-09 15:26:18 -0500873 /*
874 * Non-standard SCSI targets may set the PDT to 0x1f (unknown or
875 * no device type) instead of using the Peripheral Qualifier to
876 * indicate that no LUN is present. For example, USB UFI does this.
877 */
878 if (starget->pdt_1f_for_no_lun && (result[0] & 0x1f) == 0x1f) {
879 SCSI_LOG_SCAN_BUS(3, printk(KERN_INFO
880 "scsi scan: peripheral device type"
881 " of 31, no device added\n"));
882 res = SCSI_SCAN_TARGET_PRESENT;
883 goto out_free_result;
884 }
885
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 res = scsi_add_lun(sdev, result, &bflags);
887 if (res == SCSI_SCAN_LUN_PRESENT) {
888 if (bflags & BLIST_KEY) {
889 sdev->lockable = 0;
James Bottomley39216032005-06-15 18:48:29 -0500890 scsi_unlock_floptical(sdev, result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 }
892 if (bflagsp)
893 *bflagsp = bflags;
894 }
895
896 out_free_result:
897 kfree(result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 out_free_sdev:
899 if (res == SCSI_SCAN_LUN_PRESENT) {
900 if (sdevp) {
Alan Sternb70d37b2005-07-26 10:30:40 -0400901 if (scsi_device_get(sdev) == 0) {
902 *sdevp = sdev;
903 } else {
904 __scsi_remove_device(sdev);
905 res = SCSI_SCAN_NO_RESPONSE;
906 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 }
James Bottomley6f3a2022005-09-22 20:33:28 -0500908 } else
909 scsi_destroy_sdev(sdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 out:
911 return res;
912}
913
914/**
915 * scsi_sequential_lun_scan - sequentially scan a SCSI target
916 * @starget: pointer to target structure to scan
917 * @bflags: black/white list flag for LUN 0
918 * @lun0_res: result of scanning LUN 0
919 *
920 * Description:
921 * Generally, scan from LUN 1 (LUN 0 is assumed to already have been
922 * scanned) to some maximum lun until a LUN is found with no device
923 * attached. Use the bflags to figure out any oddities.
924 *
925 * Modifies sdevscan->lun.
926 **/
927static void scsi_sequential_lun_scan(struct scsi_target *starget,
928 int bflags, int lun0_res, int scsi_level,
929 int rescan)
930{
931 unsigned int sparse_lun, lun, max_dev_lun;
932 struct Scsi_Host *shost = dev_to_shost(starget->dev.parent);
933
934 SCSI_LOG_SCAN_BUS(3, printk(KERN_INFO "scsi scan: Sequential scan of"
935 "%s\n", starget->dev.bus_id));
936
937 max_dev_lun = min(max_scsi_luns, shost->max_lun);
938 /*
939 * If this device is known to support sparse multiple units,
940 * override the other settings, and scan all of them. Normally,
941 * SCSI-3 devices should be scanned via the REPORT LUNS.
942 */
943 if (bflags & BLIST_SPARSELUN) {
944 max_dev_lun = shost->max_lun;
945 sparse_lun = 1;
946 } else
947 sparse_lun = 0;
948
949 /*
950 * If not sparse lun and no device attached at LUN 0 do not scan
951 * any further.
952 */
953 if (!sparse_lun && (lun0_res != SCSI_SCAN_LUN_PRESENT))
954 return;
955
956 /*
957 * If less than SCSI_1_CSS, and no special lun scaning, stop
958 * scanning; this matches 2.4 behaviour, but could just be a bug
959 * (to continue scanning a SCSI_1_CSS device).
960 *
961 * This test is broken. We might not have any device on lun0 for
962 * a sparselun device, and if that's the case then how would we
963 * know the real scsi_level, eh? It might make sense to just not
964 * scan any SCSI_1 device for non-0 luns, but that check would best
965 * go into scsi_alloc_sdev() and just have it return null when asked
966 * to alloc an sdev for lun > 0 on an already found SCSI_1 device.
967 *
968 if ((sdevscan->scsi_level < SCSI_1_CCS) &&
969 ((bflags & (BLIST_FORCELUN | BLIST_SPARSELUN | BLIST_MAX5LUN))
970 == 0))
971 return;
972 */
973 /*
974 * If this device is known to support multiple units, override
975 * the other settings, and scan all of them.
976 */
977 if (bflags & BLIST_FORCELUN)
978 max_dev_lun = shost->max_lun;
979 /*
980 * REGAL CDC-4X: avoid hang after LUN 4
981 */
982 if (bflags & BLIST_MAX5LUN)
983 max_dev_lun = min(5U, max_dev_lun);
984 /*
985 * Do not scan SCSI-2 or lower device past LUN 7, unless
986 * BLIST_LARGELUN.
987 */
988 if (scsi_level < SCSI_3 && !(bflags & BLIST_LARGELUN))
989 max_dev_lun = min(8U, max_dev_lun);
990
991 /*
992 * We have already scanned LUN 0, so start at LUN 1. Keep scanning
993 * until we reach the max, or no LUN is found and we are not
994 * sparse_lun.
995 */
996 for (lun = 1; lun < max_dev_lun; ++lun)
997 if ((scsi_probe_and_add_lun(starget, lun, NULL, NULL, rescan,
998 NULL) != SCSI_SCAN_LUN_PRESENT) &&
999 !sparse_lun)
1000 return;
1001}
1002
1003/**
1004 * scsilun_to_int: convert a scsi_lun to an int
1005 * @scsilun: struct scsi_lun to be converted.
1006 *
1007 * Description:
1008 * Convert @scsilun from a struct scsi_lun to a four byte host byte-ordered
1009 * integer, and return the result. The caller must check for
1010 * truncation before using this function.
1011 *
1012 * Notes:
1013 * The struct scsi_lun is assumed to be four levels, with each level
1014 * effectively containing a SCSI byte-ordered (big endian) short; the
1015 * addressing bits of each level are ignored (the highest two bits).
1016 * For a description of the LUN format, post SCSI-3 see the SCSI
1017 * Architecture Model, for SCSI-3 see the SCSI Controller Commands.
1018 *
1019 * Given a struct scsi_lun of: 0a 04 0b 03 00 00 00 00, this function returns
1020 * the integer: 0x0b030a04
1021 **/
1022static int scsilun_to_int(struct scsi_lun *scsilun)
1023{
1024 int i;
1025 unsigned int lun;
1026
1027 lun = 0;
1028 for (i = 0; i < sizeof(lun); i += 2)
1029 lun = lun | (((scsilun->scsi_lun[i] << 8) |
1030 scsilun->scsi_lun[i + 1]) << (i * 8));
1031 return lun;
1032}
1033
1034/**
James.Smart@Emulex.Com2f4701d2005-07-13 22:05:03 -04001035 * int_to_scsilun: reverts an int into a scsi_lun
1036 * @int: integer to be reverted
1037 * @scsilun: struct scsi_lun to be set.
1038 *
1039 * Description:
1040 * Reverts the functionality of the scsilun_to_int, which packed
1041 * an 8-byte lun value into an int. This routine unpacks the int
1042 * back into the lun value.
1043 * Note: the scsilun_to_int() routine does not truly handle all
1044 * 8bytes of the lun value. This functions restores only as much
1045 * as was set by the routine.
1046 *
1047 * Notes:
1048 * Given an integer : 0x0b030a04, this function returns a
1049 * scsi_lun of : struct scsi_lun of: 0a 04 0b 03 00 00 00 00
1050 *
1051 **/
1052void int_to_scsilun(unsigned int lun, struct scsi_lun *scsilun)
1053{
1054 int i;
1055
1056 memset(scsilun->scsi_lun, 0, sizeof(scsilun->scsi_lun));
1057
1058 for (i = 0; i < sizeof(lun); i += 2) {
1059 scsilun->scsi_lun[i] = (lun >> 8) & 0xFF;
1060 scsilun->scsi_lun[i+1] = lun & 0xFF;
1061 lun = lun >> 16;
1062 }
1063}
1064EXPORT_SYMBOL(int_to_scsilun);
1065
1066/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 * scsi_report_lun_scan - Scan using SCSI REPORT LUN results
Christoph Hellwigf64a1812005-10-31 18:32:08 +01001068 * @sdevscan: scan the host, channel, and id of this scsi_device
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 *
1070 * Description:
1071 * If @sdevscan is for a SCSI-3 or up device, send a REPORT LUN
1072 * command, and scan the resulting list of LUNs by calling
1073 * scsi_probe_and_add_lun.
1074 *
1075 * Modifies sdevscan->lun.
1076 *
1077 * Return:
1078 * 0: scan completed (or no memory, so further scanning is futile)
1079 * 1: no report lun scan, or not configured
1080 **/
James Bottomley6f3a2022005-09-22 20:33:28 -05001081static int scsi_report_lun_scan(struct scsi_target *starget, int bflags,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 int rescan)
1083{
1084 char devname[64];
1085 unsigned char scsi_cmd[MAX_COMMAND_SIZE];
1086 unsigned int length;
1087 unsigned int lun;
1088 unsigned int num_luns;
1089 unsigned int retries;
James Bottomley39216032005-06-15 18:48:29 -05001090 int result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 struct scsi_lun *lunp, *lun_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 u8 *data;
1093 struct scsi_sense_hdr sshdr;
James Bottomley6f3a2022005-09-22 20:33:28 -05001094 struct scsi_device *sdev;
1095 struct Scsi_Host *shost = dev_to_shost(&starget->dev);
Alan Stern2ef89192005-11-08 15:51:55 -05001096 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097
1098 /*
1099 * Only support SCSI-3 and up devices if BLIST_NOREPORTLUN is not set.
1100 * Also allow SCSI-2 if BLIST_REPORTLUN2 is set and host adapter does
1101 * support more than 8 LUNs.
1102 */
1103 if ((bflags & BLIST_NOREPORTLUN) ||
James Bottomley6f3a2022005-09-22 20:33:28 -05001104 starget->scsi_level < SCSI_2 ||
1105 (starget->scsi_level < SCSI_3 &&
1106 (!(bflags & BLIST_REPORTLUN2) || shost->max_lun <= 8)) )
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 return 1;
1108 if (bflags & BLIST_NOLUN)
1109 return 0;
1110
James Bottomley6f3a2022005-09-22 20:33:28 -05001111 if (!(sdev = scsi_device_lookup_by_target(starget, 0))) {
1112 sdev = scsi_alloc_sdev(starget, 0, NULL);
1113 if (!sdev)
1114 return 0;
1115 if (scsi_device_get(sdev))
1116 return 0;
1117 }
1118
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 sprintf(devname, "host %d channel %d id %d",
James Bottomley6f3a2022005-09-22 20:33:28 -05001120 shost->host_no, sdev->channel, sdev->id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121
1122 /*
1123 * Allocate enough to hold the header (the same size as one scsi_lun)
1124 * plus the max number of luns we are requesting.
1125 *
1126 * Reallocating and trying again (with the exact amount we need)
1127 * would be nice, but then we need to somehow limit the size
1128 * allocated based on the available memory and the limits of
1129 * kmalloc - we don't want a kmalloc() failure of a huge value to
1130 * prevent us from finding any LUNs on this target.
1131 */
1132 length = (max_scsi_report_luns + 1) * sizeof(struct scsi_lun);
1133 lun_data = kmalloc(length, GFP_ATOMIC |
1134 (sdev->host->unchecked_isa_dma ? __GFP_DMA : 0));
James Bottomley6f3a2022005-09-22 20:33:28 -05001135 if (!lun_data) {
1136 printk(ALLOC_FAILURE_MSG, __FUNCTION__);
James Bottomley39216032005-06-15 18:48:29 -05001137 goto out;
James Bottomley6f3a2022005-09-22 20:33:28 -05001138 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139
1140 scsi_cmd[0] = REPORT_LUNS;
1141
1142 /*
1143 * bytes 1 - 5: reserved, set to zero.
1144 */
1145 memset(&scsi_cmd[1], 0, 5);
1146
1147 /*
1148 * bytes 6 - 9: length of the command.
1149 */
1150 scsi_cmd[6] = (unsigned char) (length >> 24) & 0xff;
1151 scsi_cmd[7] = (unsigned char) (length >> 16) & 0xff;
1152 scsi_cmd[8] = (unsigned char) (length >> 8) & 0xff;
1153 scsi_cmd[9] = (unsigned char) length & 0xff;
1154
1155 scsi_cmd[10] = 0; /* reserved */
1156 scsi_cmd[11] = 0; /* control */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157
1158 /*
1159 * We can get a UNIT ATTENTION, for example a power on/reset, so
1160 * retry a few times (like sd.c does for TEST UNIT READY).
1161 * Experience shows some combinations of adapter/devices get at
1162 * least two power on/resets.
1163 *
1164 * Illegal requests (for devices that do not support REPORT LUNS)
1165 * should come through as a check condition, and will not generate
1166 * a retry.
1167 */
1168 for (retries = 0; retries < 3; retries++) {
1169 SCSI_LOG_SCAN_BUS(3, printk (KERN_INFO "scsi scan: Sending"
1170 " REPORT LUNS to %s (try %d)\n", devname,
1171 retries));
James Bottomley39216032005-06-15 18:48:29 -05001172
James Bottomley39216032005-06-15 18:48:29 -05001173 result = scsi_execute_req(sdev, scsi_cmd, DMA_FROM_DEVICE,
James Bottomleyea73a9f2005-08-28 11:33:52 -05001174 lun_data, length, &sshdr,
James Bottomley39216032005-06-15 18:48:29 -05001175 SCSI_TIMEOUT + 4 * HZ, 3);
1176
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 SCSI_LOG_SCAN_BUS(3, printk (KERN_INFO "scsi scan: REPORT LUNS"
James Bottomley39216032005-06-15 18:48:29 -05001178 " %s (try %d) result 0x%x\n", result
1179 ? "failed" : "successful", retries, result));
1180 if (result == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 break;
James Bottomleyea73a9f2005-08-28 11:33:52 -05001182 else if (scsi_sense_valid(&sshdr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 if (sshdr.sense_key != UNIT_ATTENTION)
1184 break;
1185 }
1186 }
1187
James Bottomley39216032005-06-15 18:48:29 -05001188 if (result) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 /*
1190 * The device probably does not support a REPORT LUN command
1191 */
Alan Stern2ef89192005-11-08 15:51:55 -05001192 ret = 1;
1193 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195
1196 /*
1197 * Get the length from the first four bytes of lun_data.
1198 */
1199 data = (u8 *) lun_data->scsi_lun;
1200 length = ((data[0] << 24) | (data[1] << 16) |
1201 (data[2] << 8) | (data[3] << 0));
1202
1203 num_luns = (length / sizeof(struct scsi_lun));
1204 if (num_luns > max_scsi_report_luns) {
1205 printk(KERN_WARNING "scsi: On %s only %d (max_scsi_report_luns)"
1206 " of %d luns reported, try increasing"
1207 " max_scsi_report_luns.\n", devname,
1208 max_scsi_report_luns, num_luns);
1209 num_luns = max_scsi_report_luns;
1210 }
1211
Jeff Garzik3bf743e2005-10-24 18:04:06 -04001212 SCSI_LOG_SCAN_BUS(3, sdev_printk (KERN_INFO, sdev,
1213 "scsi scan: REPORT LUN scan\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214
1215 /*
1216 * Scan the luns in lun_data. The entry at offset 0 is really
1217 * the header, so start at 1 and go up to and including num_luns.
1218 */
1219 for (lunp = &lun_data[1]; lunp <= &lun_data[num_luns]; lunp++) {
1220 lun = scsilun_to_int(lunp);
1221
1222 /*
1223 * Check if the unused part of lunp is non-zero, and so
1224 * does not fit in lun.
1225 */
1226 if (memcmp(&lunp->scsi_lun[sizeof(lun)], "\0\0\0\0", 4)) {
1227 int i;
1228
1229 /*
1230 * Output an error displaying the LUN in byte order,
1231 * this differs from what linux would print for the
1232 * integer LUN value.
1233 */
1234 printk(KERN_WARNING "scsi: %s lun 0x", devname);
1235 data = (char *)lunp->scsi_lun;
1236 for (i = 0; i < sizeof(struct scsi_lun); i++)
1237 printk("%02x", data[i]);
1238 printk(" has a LUN larger than currently supported.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239 } else if (lun > sdev->host->max_lun) {
1240 printk(KERN_WARNING "scsi: %s lun%d has a LUN larger"
1241 " than allowed by the host adapter\n",
1242 devname, lun);
1243 } else {
1244 int res;
1245
1246 res = scsi_probe_and_add_lun(starget,
1247 lun, NULL, NULL, rescan, NULL);
1248 if (res == SCSI_SCAN_NO_RESPONSE) {
1249 /*
1250 * Got some results, but now none, abort.
1251 */
Jeff Garzik3bf743e2005-10-24 18:04:06 -04001252 sdev_printk(KERN_ERR, sdev,
1253 "Unexpected response"
1254 " from lun %d while scanning, scan"
1255 " aborted\n", lun);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256 break;
1257 }
1258 }
1259 }
1260
Alan Stern2ef89192005-11-08 15:51:55 -05001261 out_err:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262 kfree(lun_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 out:
James Bottomley6f3a2022005-09-22 20:33:28 -05001264 scsi_device_put(sdev);
1265 if (sdev->sdev_state == SDEV_CREATED)
1266 /*
1267 * the sdev we used didn't appear in the report luns scan
1268 */
1269 scsi_destroy_sdev(sdev);
Alan Stern2ef89192005-11-08 15:51:55 -05001270 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271}
1272
1273struct scsi_device *__scsi_add_device(struct Scsi_Host *shost, uint channel,
1274 uint id, uint lun, void *hostdata)
1275{
Matthew Wilcoxa97a83a2006-02-05 08:01:33 -07001276 struct scsi_device *sdev = ERR_PTR(-ENODEV);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277 struct device *parent = &shost->shost_gendev;
Christoph Hellwige02f3f52006-01-13 19:04:00 +01001278 struct scsi_target *starget;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279
Christoph Hellwige02f3f52006-01-13 19:04:00 +01001280 starget = scsi_alloc_target(parent, channel, id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281 if (!starget)
1282 return ERR_PTR(-ENOMEM);
1283
Nathan Lynchc92715b2005-06-02 17:15:09 -05001284 get_device(&starget->dev);
Arjan van de Ven0b950672006-01-11 13:16:10 +01001285 mutex_lock(&shost->scan_mutex);
Matthew Wilcoxa97a83a2006-02-05 08:01:33 -07001286 if (scsi_host_scan_allowed(shost))
1287 scsi_probe_and_add_lun(starget, lun, NULL, &sdev, 1, hostdata);
Arjan van de Ven0b950672006-01-11 13:16:10 +01001288 mutex_unlock(&shost->scan_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289 scsi_target_reap(starget);
1290 put_device(&starget->dev);
1291
1292 return sdev;
1293}
1294EXPORT_SYMBOL(__scsi_add_device);
1295
James Bottomley146f7262005-09-10 12:44:09 -05001296int scsi_add_device(struct Scsi_Host *host, uint channel,
1297 uint target, uint lun)
1298{
1299 struct scsi_device *sdev =
1300 __scsi_add_device(host, channel, target, lun, NULL);
1301 if (IS_ERR(sdev))
1302 return PTR_ERR(sdev);
1303
1304 scsi_device_put(sdev);
1305 return 0;
1306}
1307EXPORT_SYMBOL(scsi_add_device);
1308
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309void scsi_rescan_device(struct device *dev)
1310{
1311 struct scsi_driver *drv;
1312
1313 if (!dev->driver)
1314 return;
1315
1316 drv = to_scsi_driver(dev->driver);
1317 if (try_module_get(drv->owner)) {
1318 if (drv->rescan)
1319 drv->rescan(dev);
1320 module_put(drv->owner);
1321 }
1322}
1323EXPORT_SYMBOL(scsi_rescan_device);
1324
Alan Sterne517d312005-07-26 10:18:45 -04001325static void __scsi_scan_target(struct device *parent, unsigned int channel,
1326 unsigned int id, unsigned int lun, int rescan)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327{
1328 struct Scsi_Host *shost = dev_to_shost(parent);
1329 int bflags = 0;
1330 int res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331 struct scsi_target *starget;
1332
1333 if (shost->this_id == id)
1334 /*
1335 * Don't scan the host adapter
1336 */
1337 return;
1338
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339 starget = scsi_alloc_target(parent, channel, id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340 if (!starget)
1341 return;
1342
1343 get_device(&starget->dev);
1344 if (lun != SCAN_WILD_CARD) {
1345 /*
1346 * Scan for a specific host/chan/id/lun.
1347 */
1348 scsi_probe_and_add_lun(starget, lun, NULL, NULL, rescan, NULL);
1349 goto out_reap;
1350 }
1351
1352 /*
1353 * Scan LUN 0, if there is some response, scan further. Ideally, we
1354 * would not configure LUN 0 until all LUNs are scanned.
1355 */
James Bottomley6f3a2022005-09-22 20:33:28 -05001356 res = scsi_probe_and_add_lun(starget, 0, &bflags, NULL, rescan, NULL);
1357 if (res == SCSI_SCAN_LUN_PRESENT || res == SCSI_SCAN_TARGET_PRESENT) {
1358 if (scsi_report_lun_scan(starget, bflags, rescan) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359 /*
1360 * The REPORT LUN did not scan the target,
1361 * do a sequential scan.
1362 */
1363 scsi_sequential_lun_scan(starget, bflags,
James Bottomley6f3a2022005-09-22 20:33:28 -05001364 res, starget->scsi_level, rescan);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366
1367 out_reap:
1368 /* now determine if the target has any children at all
1369 * and if not, nuke it */
1370 scsi_target_reap(starget);
1371
1372 put_device(&starget->dev);
1373}
Alan Sterne517d312005-07-26 10:18:45 -04001374
1375/**
1376 * scsi_scan_target - scan a target id, possibly including all LUNs on the
1377 * target.
1378 * @parent: host to scan
1379 * @channel: channel to scan
1380 * @id: target id to scan
1381 * @lun: Specific LUN to scan or SCAN_WILD_CARD
1382 * @rescan: passed to LUN scanning routines
1383 *
1384 * Description:
1385 * Scan the target id on @parent, @channel, and @id. Scan at least LUN 0,
1386 * and possibly all LUNs on the target id.
1387 *
1388 * First try a REPORT LUN scan, if that does not scan the target, do a
1389 * sequential scan of LUNs on the target id.
1390 **/
1391void scsi_scan_target(struct device *parent, unsigned int channel,
1392 unsigned int id, unsigned int lun, int rescan)
1393{
1394 struct Scsi_Host *shost = dev_to_shost(parent);
1395
Arjan van de Ven0b950672006-01-11 13:16:10 +01001396 mutex_lock(&shost->scan_mutex);
Alan Sterne517d312005-07-26 10:18:45 -04001397 if (scsi_host_scan_allowed(shost))
1398 __scsi_scan_target(parent, channel, id, lun, rescan);
Arjan van de Ven0b950672006-01-11 13:16:10 +01001399 mutex_unlock(&shost->scan_mutex);
Alan Sterne517d312005-07-26 10:18:45 -04001400}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401EXPORT_SYMBOL(scsi_scan_target);
1402
1403static void scsi_scan_channel(struct Scsi_Host *shost, unsigned int channel,
1404 unsigned int id, unsigned int lun, int rescan)
1405{
1406 uint order_id;
1407
1408 if (id == SCAN_WILD_CARD)
1409 for (id = 0; id < shost->max_id; ++id) {
1410 /*
1411 * XXX adapter drivers when possible (FCP, iSCSI)
1412 * could modify max_id to match the current max,
1413 * not the absolute max.
1414 *
1415 * XXX add a shost id iterator, so for example,
1416 * the FC ID can be the same as a target id
1417 * without a huge overhead of sparse id's.
1418 */
1419 if (shost->reverse_ordering)
1420 /*
1421 * Scan from high to low id.
1422 */
1423 order_id = shost->max_id - id - 1;
1424 else
1425 order_id = id;
Alan Sterne517d312005-07-26 10:18:45 -04001426 __scsi_scan_target(&shost->shost_gendev, channel,
1427 order_id, lun, rescan);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428 }
1429 else
Alan Sterne517d312005-07-26 10:18:45 -04001430 __scsi_scan_target(&shost->shost_gendev, channel,
1431 id, lun, rescan);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432}
1433
1434int scsi_scan_host_selected(struct Scsi_Host *shost, unsigned int channel,
1435 unsigned int id, unsigned int lun, int rescan)
1436{
Jeff Garzik3bf743e2005-10-24 18:04:06 -04001437 SCSI_LOG_SCAN_BUS(3, shost_printk (KERN_INFO, shost,
1438 "%s: <%u:%u:%u>\n",
1439 __FUNCTION__, channel, id, lun));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440
1441 if (((channel != SCAN_WILD_CARD) && (channel > shost->max_channel)) ||
1442 ((id != SCAN_WILD_CARD) && (id > shost->max_id)) ||
1443 ((lun != SCAN_WILD_CARD) && (lun > shost->max_lun)))
1444 return -EINVAL;
1445
Arjan van de Ven0b950672006-01-11 13:16:10 +01001446 mutex_lock(&shost->scan_mutex);
Mike Anderson82f29462005-06-16 11:14:33 -07001447 if (scsi_host_scan_allowed(shost)) {
1448 if (channel == SCAN_WILD_CARD)
1449 for (channel = 0; channel <= shost->max_channel;
1450 channel++)
1451 scsi_scan_channel(shost, channel, id, lun,
1452 rescan);
1453 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454 scsi_scan_channel(shost, channel, id, lun, rescan);
Mike Anderson82f29462005-06-16 11:14:33 -07001455 }
Arjan van de Ven0b950672006-01-11 13:16:10 +01001456 mutex_unlock(&shost->scan_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457
1458 return 0;
1459}
1460
1461/**
1462 * scsi_scan_host - scan the given adapter
1463 * @shost: adapter to scan
1464 **/
1465void scsi_scan_host(struct Scsi_Host *shost)
1466{
1467 scsi_scan_host_selected(shost, SCAN_WILD_CARD, SCAN_WILD_CARD,
1468 SCAN_WILD_CARD, 0);
1469}
1470EXPORT_SYMBOL(scsi_scan_host);
1471
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472void scsi_forget_host(struct Scsi_Host *shost)
1473{
Alan Sterna64358d2005-07-26 10:27:10 -04001474 struct scsi_device *sdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475 unsigned long flags;
1476
Alan Sterna64358d2005-07-26 10:27:10 -04001477 restart:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 spin_lock_irqsave(shost->host_lock, flags);
Alan Sterna64358d2005-07-26 10:27:10 -04001479 list_for_each_entry(sdev, &shost->__devices, siblings) {
1480 if (sdev->sdev_state == SDEV_DEL)
1481 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482 spin_unlock_irqrestore(shost->host_lock, flags);
Alan Sterna64358d2005-07-26 10:27:10 -04001483 __scsi_remove_device(sdev);
1484 goto restart;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485 }
1486 spin_unlock_irqrestore(shost->host_lock, flags);
1487}
1488
1489/*
1490 * Function: scsi_get_host_dev()
1491 *
Christoph Hellwigf64a1812005-10-31 18:32:08 +01001492 * Purpose: Create a scsi_device that points to the host adapter itself.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493 *
Christoph Hellwigf64a1812005-10-31 18:32:08 +01001494 * Arguments: SHpnt - Host that needs a scsi_device
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495 *
1496 * Lock status: None assumed.
1497 *
Christoph Hellwigf64a1812005-10-31 18:32:08 +01001498 * Returns: The scsi_device or NULL
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499 *
1500 * Notes:
Christoph Hellwigf64a1812005-10-31 18:32:08 +01001501 * Attach a single scsi_device to the Scsi_Host - this should
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502 * be made to look like a "pseudo-device" that points to the
1503 * HA itself.
1504 *
1505 * Note - this device is not accessible from any high-level
1506 * drivers (including generics), which is probably not
1507 * optimal. We can add hooks later to attach
1508 */
1509struct scsi_device *scsi_get_host_dev(struct Scsi_Host *shost)
1510{
Alan Sterne517d312005-07-26 10:18:45 -04001511 struct scsi_device *sdev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512 struct scsi_target *starget;
1513
Arjan van de Ven0b950672006-01-11 13:16:10 +01001514 mutex_lock(&shost->scan_mutex);
Alan Sterne517d312005-07-26 10:18:45 -04001515 if (!scsi_host_scan_allowed(shost))
1516 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517 starget = scsi_alloc_target(&shost->shost_gendev, 0, shost->this_id);
1518 if (!starget)
Alan Sterne517d312005-07-26 10:18:45 -04001519 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520
1521 sdev = scsi_alloc_sdev(starget, 0, NULL);
1522 if (sdev) {
1523 sdev->sdev_gendev.parent = get_device(&starget->dev);
1524 sdev->borken = 0;
1525 }
1526 put_device(&starget->dev);
Alan Sterne517d312005-07-26 10:18:45 -04001527 out:
Arjan van de Ven0b950672006-01-11 13:16:10 +01001528 mutex_unlock(&shost->scan_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529 return sdev;
1530}
1531EXPORT_SYMBOL(scsi_get_host_dev);
1532
1533/*
1534 * Function: scsi_free_host_dev()
1535 *
1536 * Purpose: Free a scsi_device that points to the host adapter itself.
1537 *
Christoph Hellwigf64a1812005-10-31 18:32:08 +01001538 * Arguments: SHpnt - Host that needs a scsi_device
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539 *
1540 * Lock status: None assumed.
1541 *
1542 * Returns: Nothing
1543 *
1544 * Notes:
1545 */
1546void scsi_free_host_dev(struct scsi_device *sdev)
1547{
1548 BUG_ON(sdev->id != sdev->host->this_id);
1549
James Bottomley6f3a2022005-09-22 20:33:28 -05001550 scsi_destroy_sdev(sdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551}
1552EXPORT_SYMBOL(scsi_free_host_dev);
1553