d2ca4b8fbc13fef37ca55d9ede16fe3af902361f
[sfrench/cifs-2.6.git] / drivers / scsi / scsi_scan.c
1 /*
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
12  * device attached, a Scsi_Device is allocated and setup for it.
13  *
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
20  *              Scsi_Device for it.
21  *
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
77 static char *scsi_null_device_strs = "nullnullnullnull";
78
79 #define MAX_SCSI_LUNS   512
80
81 #ifdef CONFIG_SCSI_MULTI_LUN
82 static unsigned int max_scsi_luns = MAX_SCSI_LUNS;
83 #else
84 static unsigned int max_scsi_luns = 1;
85 #endif
86
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)");
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  */
98 static unsigned int max_scsi_report_luns = 511;
99
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)");
104
105 static unsigned int scsi_inq_timeout = SCSI_TIMEOUT/HZ+3;
106
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.");
111
112 /**
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
116  *
117  * Description:
118  *     Send a vendor specific MODE SENSE (not a MODE SELECT) command.
119  *     Called for BLIST_KEY devices.
120  **/
121 static void scsi_unlock_floptical(struct scsi_device *sdev,
122                                   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;
131         scsi_cmd[4] = 0x2a;     /* size */
132         scsi_cmd[5] = 0;
133         scsi_execute_req(sdev, scsi_cmd, DMA_FROM_DEVICE, result, 0x2a, NULL,
134                          SCSI_TIMEOUT, 3);
135 }
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  **/
149 static 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  **/
201 static 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
208         sdev = kmalloc(sizeof(*sdev) + shost->transportt->device_size,
209                        GFP_ATOMIC);
210         if (!sdev)
211                 goto out;
212
213         memset(sdev, 0, sizeof(*sdev));
214         sdev->vendor = scsi_null_device_strs;
215         sdev->model = scsi_null_device_strs;
216         sdev->rev = scsi_null_device_strs;
217         sdev->host = shost;
218         sdev->id = starget->id;
219         sdev->lun = lun;
220         sdev->channel = starget->channel;
221         sdev->sdev_state = SDEV_CREATED;
222         INIT_LIST_HEAD(&sdev->siblings);
223         INIT_LIST_HEAD(&sdev->same_target_siblings);
224         INIT_LIST_HEAD(&sdev->cmd_list);
225         INIT_LIST_HEAD(&sdev->starved_entry);
226         spin_lock_init(&sdev->list_lock);
227
228         sdev->sdev_gendev.parent = get_device(&starget->dev);
229         sdev->sdev_target = starget;
230
231         /* usually NULL and set by ->slave_alloc instead */
232         sdev->hostdata = hostdata;
233
234         /* if the device needs this changing, it may do so in the
235          * slave_configure function */
236         sdev->max_device_blocked = SCSI_DEFAULT_DEVICE_BLOCKED;
237
238         /*
239          * Some low level driver could use device->type
240          */
241         sdev->type = -1;
242
243         /*
244          * Assume that the device will have handshaking problems,
245          * and then fix this field later if it turns out it
246          * doesn't
247          */
248         sdev->borken = 1;
249
250         sdev->request_queue = scsi_alloc_queue(sdev);
251         if (!sdev->request_queue) {
252                 /* release fn is set up in scsi_sysfs_device_initialise, so
253                  * have to free and put manually here */
254                 put_device(&starget->dev);
255                 goto out;
256         }
257
258         sdev->request_queue->queuedata = sdev;
259         scsi_adjust_queue_depth(sdev, 0, sdev->host->cmd_per_lun);
260
261         scsi_sysfs_device_initialize(sdev);
262
263         if (shost->hostt->slave_alloc) {
264                 ret = shost->hostt->slave_alloc(sdev);
265                 if (ret) {
266                         /*
267                          * if LLDD reports slave not present, don't clutter
268                          * console with alloc failure messages
269
270
271                          */
272                         if (ret == -ENXIO)
273                                 display_failure_msg = 0;
274                         goto out_device_destroy;
275                 }
276         }
277
278         return sdev;
279
280 out_device_destroy:
281         transport_destroy_device(&sdev->sdev_gendev);
282         scsi_free_queue(sdev->request_queue);
283         put_device(&sdev->sdev_gendev);
284 out:
285         if (display_failure_msg)
286                 printk(ALLOC_FAILURE_MSG, __FUNCTION__);
287         return NULL;
288 }
289
290 static void scsi_target_dev_release(struct device *dev)
291 {
292         struct device *parent = dev->parent;
293         struct scsi_target *starget = to_scsi_target(dev);
294         struct Scsi_Host *shost = dev_to_shost(parent);
295
296         if (shost->hostt->target_destroy)
297                 shost->hostt->target_destroy(starget);
298         kfree(starget);
299         put_device(parent);
300 }
301
302 int scsi_is_target_device(const struct device *dev)
303 {
304         return dev->release == scsi_target_dev_release;
305 }
306 EXPORT_SYMBOL(scsi_is_target_device);
307
308 static struct scsi_target *__scsi_find_target(struct device *parent,
309                                               int channel, uint id)
310 {
311         struct scsi_target *starget, *found_starget = NULL;
312         struct Scsi_Host *shost = dev_to_shost(parent);
313         /*
314          * Search for an existing target for this sdev.
315          */
316         list_for_each_entry(starget, &shost->__targets, siblings) {
317                 if (starget->id == id &&
318                     starget->channel == channel) {
319                         found_starget = starget;
320                         break;
321                 }
322         }
323         if (found_starget)
324                 get_device(&found_starget->dev);
325
326         return found_starget;
327 }
328
329 static struct scsi_target *scsi_alloc_target(struct device *parent,
330                                              int channel, uint id)
331 {
332         struct Scsi_Host *shost = dev_to_shost(parent);
333         struct device *dev = NULL;
334         unsigned long flags;
335         const int size = sizeof(struct scsi_target)
336                 + shost->transportt->target_size;
337         struct scsi_target *starget;
338         struct scsi_target *found_target;
339
340         /*
341          * Obtain the real parent from the transport. The transport
342          * is allowed to fail (no error) if there is nothing at that
343          * target id.
344          */
345         if (shost->transportt->target_parent) {
346                 spin_lock_irqsave(shost->host_lock, flags);
347                 parent = shost->transportt->target_parent(shost, channel, id);
348                 spin_unlock_irqrestore(shost->host_lock, flags);
349                 if (!parent)
350                         return NULL;
351         }
352
353         starget = kmalloc(size, GFP_KERNEL);
354         if (!starget) {
355                 printk(KERN_ERR "%s: allocation failure\n", __FUNCTION__);
356                 return NULL;
357         }
358         memset(starget, 0, size);
359         dev = &starget->dev;
360         device_initialize(dev);
361         starget->reap_ref = 1;
362         dev->parent = get_device(parent);
363         dev->release = scsi_target_dev_release;
364         sprintf(dev->bus_id, "target%d:%d:%d",
365                 shost->host_no, channel, id);
366         starget->id = id;
367         starget->channel = channel;
368         INIT_LIST_HEAD(&starget->siblings);
369         INIT_LIST_HEAD(&starget->devices);
370         spin_lock_irqsave(shost->host_lock, flags);
371
372         found_target = __scsi_find_target(parent, channel, id);
373         if (found_target)
374                 goto found;
375
376         list_add_tail(&starget->siblings, &shost->__targets);
377         spin_unlock_irqrestore(shost->host_lock, flags);
378         /* allocate and add */
379         transport_setup_device(dev);
380         device_add(dev);
381         transport_add_device(dev);
382         if (shost->hostt->target_alloc) {
383                 int error = shost->hostt->target_alloc(starget);
384
385                 if(error) {
386                         dev_printk(KERN_ERR, dev, "target allocation failed, error %d\n", error);
387                         /* don't want scsi_target_reap to do the final
388                          * put because it will be under the host lock */
389                         get_device(dev);
390                         scsi_target_reap(starget);
391                         put_device(dev);
392                         return NULL;
393                 }
394         }
395
396         return starget;
397
398  found:
399         found_target->reap_ref++;
400         spin_unlock_irqrestore(shost->host_lock, flags);
401         put_device(parent);
402         kfree(starget);
403         return found_target;
404 }
405
406 /**
407  * scsi_target_reap - check to see if target is in use and destroy if not
408  *
409  * @starget: target to be checked
410  *
411  * This is used after removing a LUN or doing a last put of the target
412  * it checks atomically that nothing is using the target and removes
413  * it if so.
414  */
415 void scsi_target_reap(struct scsi_target *starget)
416 {
417         struct Scsi_Host *shost = dev_to_shost(starget->dev.parent);
418         unsigned long flags;
419         spin_lock_irqsave(shost->host_lock, flags);
420
421         if (--starget->reap_ref == 0 && list_empty(&starget->devices)) {
422                 list_del_init(&starget->siblings);
423                 spin_unlock_irqrestore(shost->host_lock, flags);
424                 device_del(&starget->dev);
425                 transport_unregister_device(&starget->dev);
426                 put_device(&starget->dev);
427                 return;
428         }
429         spin_unlock_irqrestore(shost->host_lock, flags);
430 }
431
432 /**
433  * scsi_probe_lun - probe a single LUN using a SCSI INQUIRY
434  * @sdev:       scsi_device to probe
435  * @inq_result: area to store the INQUIRY result
436  * @result_len: len of inq_result
437  * @bflags:     store any bflags found here
438  *
439  * Description:
440  *     Probe the lun associated with @req using a standard SCSI INQUIRY;
441  *
442  *     If the INQUIRY is successful, zero is returned and the
443  *     INQUIRY data is in @inq_result; the scsi_level and INQUIRY length
444  *     are copied to the Scsi_Device any flags value is stored in *@bflags.
445  **/
446 static int scsi_probe_lun(struct scsi_device *sdev, char *inq_result,
447                           int result_len, int *bflags)
448 {
449         char sense[SCSI_SENSE_BUFFERSIZE];
450         unsigned char scsi_cmd[MAX_COMMAND_SIZE];
451         int first_inquiry_len, try_inquiry_len, next_inquiry_len;
452         int response_len = 0;
453         int pass, count, result;
454         struct scsi_sense_hdr sshdr;
455
456         *bflags = 0;
457
458         /* Perform up to 3 passes.  The first pass uses a conservative
459          * transfer length of 36 unless sdev->inquiry_len specifies a
460          * different value. */
461         first_inquiry_len = sdev->inquiry_len ? sdev->inquiry_len : 36;
462         try_inquiry_len = first_inquiry_len;
463         pass = 1;
464
465  next_pass:
466         SCSI_LOG_SCAN_BUS(3, printk(KERN_INFO "scsi scan: INQUIRY pass %d "
467                         "to host %d channel %d id %d lun %d, length %d\n",
468                         pass, sdev->host->host_no, sdev->channel,
469                         sdev->id, sdev->lun, try_inquiry_len));
470
471         /* Each pass gets up to three chances to ignore Unit Attention */
472         for (count = 0; count < 3; ++count) {
473                 memset(scsi_cmd, 0, 6);
474                 scsi_cmd[0] = INQUIRY;
475                 scsi_cmd[4] = (unsigned char) try_inquiry_len;
476
477                 memset(sense, 0, sizeof(sense));
478                 memset(inq_result, 0, try_inquiry_len);
479
480                 result = scsi_execute_req(sdev,  scsi_cmd, DMA_FROM_DEVICE,
481                                           inq_result, try_inquiry_len, sense,
482                                           HZ / 2 + HZ * scsi_inq_timeout, 3);
483
484                 SCSI_LOG_SCAN_BUS(3, printk(KERN_INFO "scsi scan: INQUIRY %s "
485                                 "with code 0x%x\n",
486                                 result ? "failed" : "successful", result));
487
488                 if (result) {
489                         /*
490                          * not-ready to ready transition [asc/ascq=0x28/0x0]
491                          * or power-on, reset [asc/ascq=0x29/0x0], continue.
492                          * INQUIRY should not yield UNIT_ATTENTION
493                          * but many buggy devices do so anyway. 
494                          */
495                         if ((driver_byte(result) & DRIVER_SENSE) &&
496                             scsi_normalize_sense(sense, sizeof(sense),
497                                                  &sshdr)) {
498                                 if ((sshdr.sense_key == UNIT_ATTENTION) &&
499                                     ((sshdr.asc == 0x28) ||
500                                      (sshdr.asc == 0x29)) &&
501                                     (sshdr.ascq == 0))
502                                         continue;
503                         }
504                 }
505                 break;
506         }
507
508         if (result == 0) {
509                 response_len = (unsigned char) inq_result[4] + 5;
510                 if (response_len > 255)
511                         response_len = first_inquiry_len;       /* sanity */
512
513                 /*
514                  * Get any flags for this device.
515                  *
516                  * XXX add a bflags to Scsi_Device, and replace the
517                  * corresponding bit fields in Scsi_Device, so bflags
518                  * need not be passed as an argument.
519                  */
520                 *bflags = scsi_get_device_flags(sdev, &inq_result[8],
521                                 &inq_result[16]);
522
523                 /* When the first pass succeeds we gain information about
524                  * what larger transfer lengths might work. */
525                 if (pass == 1) {
526                         if (BLIST_INQUIRY_36 & *bflags)
527                                 next_inquiry_len = 36;
528                         else if (BLIST_INQUIRY_58 & *bflags)
529                                 next_inquiry_len = 58;
530                         else if (sdev->inquiry_len)
531                                 next_inquiry_len = sdev->inquiry_len;
532                         else
533                                 next_inquiry_len = response_len;
534
535                         /* If more data is available perform the second pass */
536                         if (next_inquiry_len > try_inquiry_len) {
537                                 try_inquiry_len = next_inquiry_len;
538                                 pass = 2;
539                                 goto next_pass;
540                         }
541                 }
542
543         } else if (pass == 2) {
544                 printk(KERN_INFO "scsi scan: %d byte inquiry failed.  "
545                                 "Consider BLIST_INQUIRY_36 for this device\n",
546                                 try_inquiry_len);
547
548                 /* If this pass failed, the third pass goes back and transfers
549                  * the same amount as we successfully got in the first pass. */
550                 try_inquiry_len = first_inquiry_len;
551                 pass = 3;
552                 goto next_pass;
553         }
554
555         /* If the last transfer attempt got an error, assume the
556          * peripheral doesn't exist or is dead. */
557         if (result)
558                 return -EIO;
559
560         /* Don't report any more data than the device says is valid */
561         sdev->inquiry_len = min(try_inquiry_len, response_len);
562
563         /*
564          * XXX Abort if the response length is less than 36? If less than
565          * 32, the lookup of the device flags (above) could be invalid,
566          * and it would be possible to take an incorrect action - we do
567          * not want to hang because of a short INQUIRY. On the flip side,
568          * if the device is spun down or becoming ready (and so it gives a
569          * short INQUIRY), an abort here prevents any further use of the
570          * device, including spin up.
571          *
572          * Related to the above issue:
573          *
574          * XXX Devices (disk or all?) should be sent a TEST UNIT READY,
575          * and if not ready, sent a START_STOP to start (maybe spin up) and
576          * then send the INQUIRY again, since the INQUIRY can change after
577          * a device is initialized.
578          *
579          * Ideally, start a device if explicitly asked to do so.  This
580          * assumes that a device is spun up on power on, spun down on
581          * request, and then spun up on request.
582          */
583
584         /*
585          * The scanning code needs to know the scsi_level, even if no
586          * device is attached at LUN 0 (SCSI_SCAN_TARGET_PRESENT) so
587          * non-zero LUNs can be scanned.
588          */
589         sdev->scsi_level = inq_result[2] & 0x07;
590         if (sdev->scsi_level >= 2 ||
591             (sdev->scsi_level == 1 && (inq_result[3] & 0x0f) == 1))
592                 sdev->scsi_level++;
593
594         return 0;
595 }
596
597 /**
598  * scsi_add_lun - allocate and fully initialze a Scsi_Device
599  * @sdevscan:   holds information to be stored in the new Scsi_Device
600  * @sdevnew:    store the address of the newly allocated Scsi_Device
601  * @inq_result: holds the result of a previous INQUIRY to the LUN
602  * @bflags:     black/white list flag
603  *
604  * Description:
605  *     Allocate and initialize a Scsi_Device matching sdevscan. Optionally
606  *     set fields based on values in *@bflags. If @sdevnew is not
607  *     NULL, store the address of the new Scsi_Device in *@sdevnew (needed
608  *     when scanning a particular LUN).
609  *
610  * Return:
611  *     SCSI_SCAN_NO_RESPONSE: could not allocate or setup a Scsi_Device
612  *     SCSI_SCAN_LUN_PRESENT: a new Scsi_Device was allocated and initialized
613  **/
614 static int scsi_add_lun(struct scsi_device *sdev, char *inq_result, int *bflags)
615 {
616         /*
617          * XXX do not save the inquiry, since it can change underneath us,
618          * save just vendor/model/rev.
619          *
620          * Rather than save it and have an ioctl that retrieves the saved
621          * value, have an ioctl that executes the same INQUIRY code used
622          * in scsi_probe_lun, let user level programs doing INQUIRY
623          * scanning run at their own risk, or supply a user level program
624          * that can correctly scan.
625          */
626         sdev->inquiry = kmalloc(sdev->inquiry_len, GFP_ATOMIC);
627         if (sdev->inquiry == NULL) {
628                 return SCSI_SCAN_NO_RESPONSE;
629         }
630
631         memcpy(sdev->inquiry, inq_result, sdev->inquiry_len);
632         sdev->vendor = (char *) (sdev->inquiry + 8);
633         sdev->model = (char *) (sdev->inquiry + 16);
634         sdev->rev = (char *) (sdev->inquiry + 32);
635
636         if (*bflags & BLIST_ISROM) {
637                 /*
638                  * It would be better to modify sdev->type, and set
639                  * sdev->removable, but then the print_inquiry() output
640                  * would not show TYPE_ROM; if print_inquiry() is removed
641                  * the issue goes away.
642                  */
643                 inq_result[0] = TYPE_ROM;
644                 inq_result[1] |= 0x80;  /* removable */
645         } else if (*bflags & BLIST_NO_ULD_ATTACH)
646                 sdev->no_uld_attach = 1;
647
648         switch (sdev->type = (inq_result[0] & 0x1f)) {
649         case TYPE_TAPE:
650         case TYPE_DISK:
651         case TYPE_PRINTER:
652         case TYPE_MOD:
653         case TYPE_PROCESSOR:
654         case TYPE_SCANNER:
655         case TYPE_MEDIUM_CHANGER:
656         case TYPE_ENCLOSURE:
657         case TYPE_COMM:
658         case TYPE_RBC:
659                 sdev->writeable = 1;
660                 break;
661         case TYPE_WORM:
662         case TYPE_ROM:
663                 sdev->writeable = 0;
664                 break;
665         default:
666                 printk(KERN_INFO "scsi: unknown device type %d\n", sdev->type);
667         }
668
669         print_inquiry(inq_result);
670
671         /*
672          * For a peripheral qualifier (PQ) value of 1 (001b), the SCSI
673          * spec says: The device server is capable of supporting the
674          * specified peripheral device type on this logical unit. However,
675          * the physical device is not currently connected to this logical
676          * unit.
677          *
678          * The above is vague, as it implies that we could treat 001 and
679          * 011 the same. Stay compatible with previous code, and create a
680          * Scsi_Device for a PQ of 1
681          *
682          * Don't set the device offline here; rather let the upper
683          * level drivers eval the PQ to decide whether they should
684          * attach. So remove ((inq_result[0] >> 5) & 7) == 1 check.
685          */ 
686
687         sdev->inq_periph_qual = (inq_result[0] >> 5) & 7;
688         sdev->removable = (0x80 & inq_result[1]) >> 7;
689         sdev->lockable = sdev->removable;
690         sdev->soft_reset = (inq_result[7] & 1) && ((inq_result[3] & 7) == 2);
691
692         if (sdev->scsi_level >= SCSI_3 || (sdev->inquiry_len > 56 &&
693                 inq_result[56] & 0x04))
694                 sdev->ppr = 1;
695         if (inq_result[7] & 0x60)
696                 sdev->wdtr = 1;
697         if (inq_result[7] & 0x10)
698                 sdev->sdtr = 1;
699
700         sprintf(sdev->devfs_name, "scsi/host%d/bus%d/target%d/lun%d",
701                                 sdev->host->host_no, sdev->channel,
702                                 sdev->id, sdev->lun);
703
704         /*
705          * End driverfs/devfs code.
706          */
707
708         if ((sdev->scsi_level >= SCSI_2) && (inq_result[7] & 2) &&
709             !(*bflags & BLIST_NOTQ))
710                 sdev->tagged_supported = 1;
711         /*
712          * Some devices (Texel CD ROM drives) have handshaking problems
713          * when used with the Seagate controllers. borken is initialized
714          * to 1, and then set it to 0 here.
715          */
716         if ((*bflags & BLIST_BORKEN) == 0)
717                 sdev->borken = 0;
718
719         /*
720          * Apparently some really broken devices (contrary to the SCSI
721          * standards) need to be selected without asserting ATN
722          */
723         if (*bflags & BLIST_SELECT_NO_ATN)
724                 sdev->select_no_atn = 1;
725
726         /*
727          * Some devices may not want to have a start command automatically
728          * issued when a device is added.
729          */
730         if (*bflags & BLIST_NOSTARTONADD)
731                 sdev->no_start_on_add = 1;
732
733         if (*bflags & BLIST_SINGLELUN)
734                 sdev->single_lun = 1;
735
736
737         sdev->use_10_for_rw = 1;
738
739         if (*bflags & BLIST_MS_SKIP_PAGE_08)
740                 sdev->skip_ms_page_8 = 1;
741
742         if (*bflags & BLIST_MS_SKIP_PAGE_3F)
743                 sdev->skip_ms_page_3f = 1;
744
745         if (*bflags & BLIST_USE_10_BYTE_MS)
746                 sdev->use_10_for_ms = 1;
747
748         /* set the device running here so that slave configure
749          * may do I/O */
750         scsi_device_set_state(sdev, SDEV_RUNNING);
751
752         if (*bflags & BLIST_MS_192_BYTES_FOR_3F)
753                 sdev->use_192_bytes_for_3f = 1;
754
755         if (*bflags & BLIST_NOT_LOCKABLE)
756                 sdev->lockable = 0;
757
758         if (*bflags & BLIST_RETRY_HWERROR)
759                 sdev->retry_hwerror = 1;
760
761         transport_configure_device(&sdev->sdev_gendev);
762
763         if (sdev->host->hostt->slave_configure)
764                 sdev->host->hostt->slave_configure(sdev);
765
766         /*
767          * Ok, the device is now all set up, we can
768          * register it and tell the rest of the kernel
769          * about it.
770          */
771         if (scsi_sysfs_add_sdev(sdev) != 0)
772                 return SCSI_SCAN_NO_RESPONSE;
773
774         return SCSI_SCAN_LUN_PRESENT;
775 }
776
777 /**
778  * scsi_probe_and_add_lun - probe a LUN, if a LUN is found add it
779  * @starget:    pointer to target device structure
780  * @lun:        LUN of target device
781  * @sdevscan:   probe the LUN corresponding to this Scsi_Device
782  * @sdevnew:    store the value of any new Scsi_Device allocated
783  * @bflagsp:    store bflags here if not NULL
784  *
785  * Description:
786  *     Call scsi_probe_lun, if a LUN with an attached device is found,
787  *     allocate and set it up by calling scsi_add_lun.
788  *
789  * Return:
790  *     SCSI_SCAN_NO_RESPONSE: could not allocate or setup a Scsi_Device
791  *     SCSI_SCAN_TARGET_PRESENT: target responded, but no device is
792  *         attached at the LUN
793  *     SCSI_SCAN_LUN_PRESENT: a new Scsi_Device was allocated and initialized
794  **/
795 static int scsi_probe_and_add_lun(struct scsi_target *starget,
796                                   uint lun, int *bflagsp,
797                                   struct scsi_device **sdevp, int rescan,
798                                   void *hostdata)
799 {
800         struct scsi_device *sdev;
801         unsigned char *result;
802         int bflags, res = SCSI_SCAN_NO_RESPONSE, result_len = 256;
803         struct Scsi_Host *shost = dev_to_shost(starget->dev.parent);
804
805         /*
806          * The rescan flag is used as an optimization, the first scan of a
807          * host adapter calls into here with rescan == 0.
808          */
809         if (rescan) {
810                 sdev = scsi_device_lookup_by_target(starget, lun);
811                 if (sdev) {
812                         SCSI_LOG_SCAN_BUS(3, printk(KERN_INFO
813                                 "scsi scan: device exists on %s\n",
814                                 sdev->sdev_gendev.bus_id));
815                         if (sdevp)
816                                 *sdevp = sdev;
817                         else
818                                 scsi_device_put(sdev);
819
820                         if (bflagsp)
821                                 *bflagsp = scsi_get_device_flags(sdev,
822                                                                  sdev->vendor,
823                                                                  sdev->model);
824                         return SCSI_SCAN_LUN_PRESENT;
825                 }
826         }
827
828         sdev = scsi_alloc_sdev(starget, lun, hostdata);
829         if (!sdev)
830                 goto out;
831
832         result = kmalloc(result_len, GFP_ATOMIC |
833                         ((shost->unchecked_isa_dma) ? __GFP_DMA : 0));
834         if (!result)
835                 goto out_free_sdev;
836
837         if (scsi_probe_lun(sdev, result, result_len, &bflags))
838                 goto out_free_result;
839
840         /*
841          * result contains valid SCSI INQUIRY data.
842          */
843         if ((result[0] >> 5) == 3) {
844                 /*
845                  * For a Peripheral qualifier 3 (011b), the SCSI
846                  * spec says: The device server is not capable of
847                  * supporting a physical device on this logical
848                  * unit.
849                  *
850                  * For disks, this implies that there is no
851                  * logical disk configured at sdev->lun, but there
852                  * is a target id responding.
853                  */
854                 SCSI_LOG_SCAN_BUS(3, printk(KERN_INFO
855                                         "scsi scan: peripheral qualifier of 3,"
856                                         " no device added\n"));
857                 res = SCSI_SCAN_TARGET_PRESENT;
858                 goto out_free_result;
859         }
860
861         res = scsi_add_lun(sdev, result, &bflags);
862         if (res == SCSI_SCAN_LUN_PRESENT) {
863                 if (bflags & BLIST_KEY) {
864                         sdev->lockable = 0;
865                         scsi_unlock_floptical(sdev, result);
866                 }
867                 if (bflagsp)
868                         *bflagsp = bflags;
869         }
870
871  out_free_result:
872         kfree(result);
873  out_free_sdev:
874         if (res == SCSI_SCAN_LUN_PRESENT) {
875                 if (sdevp) {
876                         scsi_device_get(sdev);
877                         *sdevp = sdev;
878                 }
879         } else {
880                 if (sdev->host->hostt->slave_destroy)
881                         sdev->host->hostt->slave_destroy(sdev);
882                 transport_destroy_device(&sdev->sdev_gendev);
883                 put_device(&sdev->sdev_gendev);
884         }
885  out:
886         return res;
887 }
888
889 /**
890  * scsi_sequential_lun_scan - sequentially scan a SCSI target
891  * @starget:    pointer to target structure to scan
892  * @bflags:     black/white list flag for LUN 0
893  * @lun0_res:   result of scanning LUN 0
894  *
895  * Description:
896  *     Generally, scan from LUN 1 (LUN 0 is assumed to already have been
897  *     scanned) to some maximum lun until a LUN is found with no device
898  *     attached. Use the bflags to figure out any oddities.
899  *
900  *     Modifies sdevscan->lun.
901  **/
902 static void scsi_sequential_lun_scan(struct scsi_target *starget,
903                                      int bflags, int lun0_res, int scsi_level,
904                                      int rescan)
905 {
906         unsigned int sparse_lun, lun, max_dev_lun;
907         struct Scsi_Host *shost = dev_to_shost(starget->dev.parent);
908
909         SCSI_LOG_SCAN_BUS(3, printk(KERN_INFO "scsi scan: Sequential scan of"
910                                     "%s\n", starget->dev.bus_id));
911
912         max_dev_lun = min(max_scsi_luns, shost->max_lun);
913         /*
914          * If this device is known to support sparse multiple units,
915          * override the other settings, and scan all of them. Normally,
916          * SCSI-3 devices should be scanned via the REPORT LUNS.
917          */
918         if (bflags & BLIST_SPARSELUN) {
919                 max_dev_lun = shost->max_lun;
920                 sparse_lun = 1;
921         } else
922                 sparse_lun = 0;
923
924         /*
925          * If not sparse lun and no device attached at LUN 0 do not scan
926          * any further.
927          */
928         if (!sparse_lun && (lun0_res != SCSI_SCAN_LUN_PRESENT))
929                 return;
930
931         /*
932          * If less than SCSI_1_CSS, and no special lun scaning, stop
933          * scanning; this matches 2.4 behaviour, but could just be a bug
934          * (to continue scanning a SCSI_1_CSS device).
935          *
936          * This test is broken.  We might not have any device on lun0 for
937          * a sparselun device, and if that's the case then how would we
938          * know the real scsi_level, eh?  It might make sense to just not
939          * scan any SCSI_1 device for non-0 luns, but that check would best
940          * go into scsi_alloc_sdev() and just have it return null when asked
941          * to alloc an sdev for lun > 0 on an already found SCSI_1 device.
942          *
943         if ((sdevscan->scsi_level < SCSI_1_CCS) &&
944             ((bflags & (BLIST_FORCELUN | BLIST_SPARSELUN | BLIST_MAX5LUN))
945              == 0))
946                 return;
947          */
948         /*
949          * If this device is known to support multiple units, override
950          * the other settings, and scan all of them.
951          */
952         if (bflags & BLIST_FORCELUN)
953                 max_dev_lun = shost->max_lun;
954         /*
955          * REGAL CDC-4X: avoid hang after LUN 4
956          */
957         if (bflags & BLIST_MAX5LUN)
958                 max_dev_lun = min(5U, max_dev_lun);
959         /*
960          * Do not scan SCSI-2 or lower device past LUN 7, unless
961          * BLIST_LARGELUN.
962          */
963         if (scsi_level < SCSI_3 && !(bflags & BLIST_LARGELUN))
964                 max_dev_lun = min(8U, max_dev_lun);
965
966         /*
967          * We have already scanned LUN 0, so start at LUN 1. Keep scanning
968          * until we reach the max, or no LUN is found and we are not
969          * sparse_lun.
970          */
971         for (lun = 1; lun < max_dev_lun; ++lun)
972                 if ((scsi_probe_and_add_lun(starget, lun, NULL, NULL, rescan,
973                                             NULL) != SCSI_SCAN_LUN_PRESENT) &&
974                     !sparse_lun)
975                         return;
976 }
977
978 /**
979  * scsilun_to_int: convert a scsi_lun to an int
980  * @scsilun:    struct scsi_lun to be converted.
981  *
982  * Description:
983  *     Convert @scsilun from a struct scsi_lun to a four byte host byte-ordered
984  *     integer, and return the result. The caller must check for
985  *     truncation before using this function.
986  *
987  * Notes:
988  *     The struct scsi_lun is assumed to be four levels, with each level
989  *     effectively containing a SCSI byte-ordered (big endian) short; the
990  *     addressing bits of each level are ignored (the highest two bits).
991  *     For a description of the LUN format, post SCSI-3 see the SCSI
992  *     Architecture Model, for SCSI-3 see the SCSI Controller Commands.
993  *
994  *     Given a struct scsi_lun of: 0a 04 0b 03 00 00 00 00, this function returns
995  *     the integer: 0x0b030a04
996  **/
997 static int scsilun_to_int(struct scsi_lun *scsilun)
998 {
999         int i;
1000         unsigned int lun;
1001
1002         lun = 0;
1003         for (i = 0; i < sizeof(lun); i += 2)
1004                 lun = lun | (((scsilun->scsi_lun[i] << 8) |
1005                               scsilun->scsi_lun[i + 1]) << (i * 8));
1006         return lun;
1007 }
1008
1009 /**
1010  * int_to_scsilun: reverts an int into a scsi_lun
1011  * @int:        integer to be reverted
1012  * @scsilun:    struct scsi_lun to be set.
1013  *
1014  * Description:
1015  *     Reverts the functionality of the scsilun_to_int, which packed
1016  *     an 8-byte lun value into an int. This routine unpacks the int
1017  *     back into the lun value.
1018  *     Note: the scsilun_to_int() routine does not truly handle all
1019  *     8bytes of the lun value. This functions restores only as much
1020  *     as was set by the routine.
1021  *
1022  * Notes:
1023  *     Given an integer : 0x0b030a04,  this function returns a
1024  *     scsi_lun of : struct scsi_lun of: 0a 04 0b 03 00 00 00 00
1025  *
1026  **/
1027 void int_to_scsilun(unsigned int lun, struct scsi_lun *scsilun)
1028 {
1029         int i;
1030
1031         memset(scsilun->scsi_lun, 0, sizeof(scsilun->scsi_lun));
1032
1033         for (i = 0; i < sizeof(lun); i += 2) {
1034                 scsilun->scsi_lun[i] = (lun >> 8) & 0xFF;
1035                 scsilun->scsi_lun[i+1] = lun & 0xFF;
1036                 lun = lun >> 16;
1037         }
1038 }
1039 EXPORT_SYMBOL(int_to_scsilun);
1040
1041 /**
1042  * scsi_report_lun_scan - Scan using SCSI REPORT LUN results
1043  * @sdevscan:   scan the host, channel, and id of this Scsi_Device
1044  *
1045  * Description:
1046  *     If @sdevscan is for a SCSI-3 or up device, send a REPORT LUN
1047  *     command, and scan the resulting list of LUNs by calling
1048  *     scsi_probe_and_add_lun.
1049  *
1050  *     Modifies sdevscan->lun.
1051  *
1052  * Return:
1053  *     0: scan completed (or no memory, so further scanning is futile)
1054  *     1: no report lun scan, or not configured
1055  **/
1056 static int scsi_report_lun_scan(struct scsi_device *sdev, int bflags,
1057                                 int rescan)
1058 {
1059         char devname[64];
1060         char sense[SCSI_SENSE_BUFFERSIZE];
1061         unsigned char scsi_cmd[MAX_COMMAND_SIZE];
1062         unsigned int length;
1063         unsigned int lun;
1064         unsigned int num_luns;
1065         unsigned int retries;
1066         int result;
1067         struct scsi_lun *lunp, *lun_data;
1068         u8 *data;
1069         struct scsi_sense_hdr sshdr;
1070         struct scsi_target *starget = scsi_target(sdev);
1071
1072         /*
1073          * Only support SCSI-3 and up devices if BLIST_NOREPORTLUN is not set.
1074          * Also allow SCSI-2 if BLIST_REPORTLUN2 is set and host adapter does
1075          * support more than 8 LUNs.
1076          */
1077         if ((bflags & BLIST_NOREPORTLUN) || 
1078              sdev->scsi_level < SCSI_2 ||
1079             (sdev->scsi_level < SCSI_3 && 
1080              (!(bflags & BLIST_REPORTLUN2) || sdev->host->max_lun <= 8)) )
1081                 return 1;
1082         if (bflags & BLIST_NOLUN)
1083                 return 0;
1084
1085         sprintf(devname, "host %d channel %d id %d",
1086                 sdev->host->host_no, sdev->channel, sdev->id);
1087
1088         /*
1089          * Allocate enough to hold the header (the same size as one scsi_lun)
1090          * plus the max number of luns we are requesting.
1091          *
1092          * Reallocating and trying again (with the exact amount we need)
1093          * would be nice, but then we need to somehow limit the size
1094          * allocated based on the available memory and the limits of
1095          * kmalloc - we don't want a kmalloc() failure of a huge value to
1096          * prevent us from finding any LUNs on this target.
1097          */
1098         length = (max_scsi_report_luns + 1) * sizeof(struct scsi_lun);
1099         lun_data = kmalloc(length, GFP_ATOMIC |
1100                            (sdev->host->unchecked_isa_dma ? __GFP_DMA : 0));
1101         if (!lun_data)
1102                 goto out;
1103
1104         scsi_cmd[0] = REPORT_LUNS;
1105
1106         /*
1107          * bytes 1 - 5: reserved, set to zero.
1108          */
1109         memset(&scsi_cmd[1], 0, 5);
1110
1111         /*
1112          * bytes 6 - 9: length of the command.
1113          */
1114         scsi_cmd[6] = (unsigned char) (length >> 24) & 0xff;
1115         scsi_cmd[7] = (unsigned char) (length >> 16) & 0xff;
1116         scsi_cmd[8] = (unsigned char) (length >> 8) & 0xff;
1117         scsi_cmd[9] = (unsigned char) length & 0xff;
1118
1119         scsi_cmd[10] = 0;       /* reserved */
1120         scsi_cmd[11] = 0;       /* control */
1121
1122         /*
1123          * We can get a UNIT ATTENTION, for example a power on/reset, so
1124          * retry a few times (like sd.c does for TEST UNIT READY).
1125          * Experience shows some combinations of adapter/devices get at
1126          * least two power on/resets.
1127          *
1128          * Illegal requests (for devices that do not support REPORT LUNS)
1129          * should come through as a check condition, and will not generate
1130          * a retry.
1131          */
1132         for (retries = 0; retries < 3; retries++) {
1133                 SCSI_LOG_SCAN_BUS(3, printk (KERN_INFO "scsi scan: Sending"
1134                                 " REPORT LUNS to %s (try %d)\n", devname,
1135                                 retries));
1136
1137                 memset(sense, 0, sizeof(sense));
1138                 result = scsi_execute_req(sdev, scsi_cmd, DMA_FROM_DEVICE,
1139                                           lun_data, length, sense,
1140                                           SCSI_TIMEOUT + 4 * HZ, 3);
1141
1142                 SCSI_LOG_SCAN_BUS(3, printk (KERN_INFO "scsi scan: REPORT LUNS"
1143                                 " %s (try %d) result 0x%x\n", result
1144                                 ?  "failed" : "successful", retries, result));
1145                 if (result == 0)
1146                         break;
1147                 else if (scsi_normalize_sense(sense, sizeof(sense), &sshdr)) {
1148                         if (sshdr.sense_key != UNIT_ATTENTION)
1149                                 break;
1150                 }
1151         }
1152
1153         if (result) {
1154                 /*
1155                  * The device probably does not support a REPORT LUN command
1156                  */
1157                 kfree(lun_data);
1158                 return 1;
1159         }
1160
1161         /*
1162          * Get the length from the first four bytes of lun_data.
1163          */
1164         data = (u8 *) lun_data->scsi_lun;
1165         length = ((data[0] << 24) | (data[1] << 16) |
1166                   (data[2] << 8) | (data[3] << 0));
1167
1168         num_luns = (length / sizeof(struct scsi_lun));
1169         if (num_luns > max_scsi_report_luns) {
1170                 printk(KERN_WARNING "scsi: On %s only %d (max_scsi_report_luns)"
1171                        " of %d luns reported, try increasing"
1172                        " max_scsi_report_luns.\n", devname,
1173                        max_scsi_report_luns, num_luns);
1174                 num_luns = max_scsi_report_luns;
1175         }
1176
1177         SCSI_LOG_SCAN_BUS(3, printk (KERN_INFO "scsi scan: REPORT LUN scan of"
1178                         " host %d channel %d id %d\n", sdev->host->host_no,
1179                         sdev->channel, sdev->id));
1180
1181         /*
1182          * Scan the luns in lun_data. The entry at offset 0 is really
1183          * the header, so start at 1 and go up to and including num_luns.
1184          */
1185         for (lunp = &lun_data[1]; lunp <= &lun_data[num_luns]; lunp++) {
1186                 lun = scsilun_to_int(lunp);
1187
1188                 /*
1189                  * Check if the unused part of lunp is non-zero, and so
1190                  * does not fit in lun.
1191                  */
1192                 if (memcmp(&lunp->scsi_lun[sizeof(lun)], "\0\0\0\0", 4)) {
1193                         int i;
1194
1195                         /*
1196                          * Output an error displaying the LUN in byte order,
1197                          * this differs from what linux would print for the
1198                          * integer LUN value.
1199                          */
1200                         printk(KERN_WARNING "scsi: %s lun 0x", devname);
1201                         data = (char *)lunp->scsi_lun;
1202                         for (i = 0; i < sizeof(struct scsi_lun); i++)
1203                                 printk("%02x", data[i]);
1204                         printk(" has a LUN larger than currently supported.\n");
1205                 } else if (lun == 0) {
1206                         /*
1207                          * LUN 0 has already been scanned.
1208                          */
1209                 } else if (lun > sdev->host->max_lun) {
1210                         printk(KERN_WARNING "scsi: %s lun%d has a LUN larger"
1211                                " than allowed by the host adapter\n",
1212                                devname, lun);
1213                 } else {
1214                         int res;
1215
1216                         res = scsi_probe_and_add_lun(starget,
1217                                 lun, NULL, NULL, rescan, NULL);
1218                         if (res == SCSI_SCAN_NO_RESPONSE) {
1219                                 /*
1220                                  * Got some results, but now none, abort.
1221                                  */
1222                                 printk(KERN_ERR "scsi: Unexpected response"
1223                                        " from %s lun %d while scanning, scan"
1224                                        " aborted\n", devname, lun);
1225                                 break;
1226                         }
1227                 }
1228         }
1229
1230         kfree(lun_data);
1231         return 0;
1232
1233  out:
1234         /*
1235          * We are out of memory, don't try scanning any further.
1236          */
1237         printk(ALLOC_FAILURE_MSG, __FUNCTION__);
1238         return 0;
1239 }
1240
1241 struct scsi_device *__scsi_add_device(struct Scsi_Host *shost, uint channel,
1242                                       uint id, uint lun, void *hostdata)
1243 {
1244         struct scsi_device *sdev;
1245         struct device *parent = &shost->shost_gendev;
1246         int res;
1247         struct scsi_target *starget = scsi_alloc_target(parent, channel, id);
1248
1249         if (!starget)
1250                 return ERR_PTR(-ENOMEM);
1251
1252         get_device(&starget->dev);
1253         down(&shost->scan_mutex);
1254         res = scsi_probe_and_add_lun(starget, lun, NULL, &sdev, 1, hostdata);
1255         if (res != SCSI_SCAN_LUN_PRESENT)
1256                 sdev = ERR_PTR(-ENODEV);
1257         up(&shost->scan_mutex);
1258         scsi_target_reap(starget);
1259         put_device(&starget->dev);
1260
1261         return sdev;
1262 }
1263 EXPORT_SYMBOL(__scsi_add_device);
1264
1265 void scsi_rescan_device(struct device *dev)
1266 {
1267         struct scsi_driver *drv;
1268         
1269         if (!dev->driver)
1270                 return;
1271
1272         drv = to_scsi_driver(dev->driver);
1273         if (try_module_get(drv->owner)) {
1274                 if (drv->rescan)
1275                         drv->rescan(dev);
1276                 module_put(drv->owner);
1277         }
1278 }
1279 EXPORT_SYMBOL(scsi_rescan_device);
1280
1281 /**
1282  * scsi_scan_target - scan a target id, possibly including all LUNs on the
1283  *     target.
1284  * @sdevsca:    Scsi_Device handle for scanning
1285  * @shost:      host to scan
1286  * @channel:    channel to scan
1287  * @id:         target id to scan
1288  *
1289  * Description:
1290  *     Scan the target id on @shost, @channel, and @id. Scan at least LUN
1291  *     0, and possibly all LUNs on the target id.
1292  *
1293  *     Use the pre-allocated @sdevscan as a handle for the scanning. This
1294  *     function sets sdevscan->host, sdevscan->id and sdevscan->lun; the
1295  *     scanning functions modify sdevscan->lun.
1296  *
1297  *     First try a REPORT LUN scan, if that does not scan the target, do a
1298  *     sequential scan of LUNs on the target id.
1299  **/
1300 void scsi_scan_target(struct device *parent, unsigned int channel,
1301                       unsigned int id, unsigned int lun, int rescan)
1302 {
1303         struct Scsi_Host *shost = dev_to_shost(parent);
1304         int bflags = 0;
1305         int res;
1306         struct scsi_device *sdev = NULL;
1307         struct scsi_target *starget;
1308
1309         if (shost->this_id == id)
1310                 /*
1311                  * Don't scan the host adapter
1312                  */
1313                 return;
1314
1315
1316         starget = scsi_alloc_target(parent, channel, id);
1317
1318         if (!starget)
1319                 return;
1320
1321         get_device(&starget->dev);
1322         if (lun != SCAN_WILD_CARD) {
1323                 /*
1324                  * Scan for a specific host/chan/id/lun.
1325                  */
1326                 scsi_probe_and_add_lun(starget, lun, NULL, NULL, rescan, NULL);
1327                 goto out_reap;
1328         }
1329
1330         /*
1331          * Scan LUN 0, if there is some response, scan further. Ideally, we
1332          * would not configure LUN 0 until all LUNs are scanned.
1333          */
1334         res = scsi_probe_and_add_lun(starget, 0, &bflags, &sdev, rescan, NULL);
1335         if (res == SCSI_SCAN_LUN_PRESENT) {
1336                 if (scsi_report_lun_scan(sdev, bflags, rescan) != 0)
1337                         /*
1338                          * The REPORT LUN did not scan the target,
1339                          * do a sequential scan.
1340                          */
1341                         scsi_sequential_lun_scan(starget, bflags,
1342                                         res, sdev->scsi_level, rescan);
1343         } else if (res == SCSI_SCAN_TARGET_PRESENT) {
1344                 /*
1345                  * There's a target here, but lun 0 is offline so we
1346                  * can't use the report_lun scan.  Fall back to a
1347                  * sequential lun scan with a bflags of SPARSELUN and
1348                  * a default scsi level of SCSI_2
1349                  */
1350                 scsi_sequential_lun_scan(starget, BLIST_SPARSELUN,
1351                                 SCSI_SCAN_TARGET_PRESENT, SCSI_2, rescan);
1352         }
1353         if (sdev)
1354                 scsi_device_put(sdev);
1355
1356  out_reap:
1357         /* now determine if the target has any children at all
1358          * and if not, nuke it */
1359         scsi_target_reap(starget);
1360
1361         put_device(&starget->dev);
1362 }
1363 EXPORT_SYMBOL(scsi_scan_target);
1364
1365 static void scsi_scan_channel(struct Scsi_Host *shost, unsigned int channel,
1366                               unsigned int id, unsigned int lun, int rescan)
1367 {
1368         uint order_id;
1369
1370         if (id == SCAN_WILD_CARD)
1371                 for (id = 0; id < shost->max_id; ++id) {
1372                         /*
1373                          * XXX adapter drivers when possible (FCP, iSCSI)
1374                          * could modify max_id to match the current max,
1375                          * not the absolute max.
1376                          *
1377                          * XXX add a shost id iterator, so for example,
1378                          * the FC ID can be the same as a target id
1379                          * without a huge overhead of sparse id's.
1380                          */
1381                         if (shost->reverse_ordering)
1382                                 /*
1383                                  * Scan from high to low id.
1384                                  */
1385                                 order_id = shost->max_id - id - 1;
1386                         else
1387                                 order_id = id;
1388                         scsi_scan_target(&shost->shost_gendev, channel, order_id, lun, rescan);
1389                 }
1390         else
1391                 scsi_scan_target(&shost->shost_gendev, channel, id, lun, rescan);
1392 }
1393
1394 int scsi_scan_host_selected(struct Scsi_Host *shost, unsigned int channel,
1395                             unsigned int id, unsigned int lun, int rescan)
1396 {
1397         SCSI_LOG_SCAN_BUS(3, printk (KERN_INFO "%s: <%u:%u:%u:%u>\n",
1398                 __FUNCTION__, shost->host_no, channel, id, lun));
1399
1400         if (((channel != SCAN_WILD_CARD) && (channel > shost->max_channel)) ||
1401             ((id != SCAN_WILD_CARD) && (id > shost->max_id)) ||
1402             ((lun != SCAN_WILD_CARD) && (lun > shost->max_lun)))
1403                 return -EINVAL;
1404
1405         down(&shost->scan_mutex);
1406         if (channel == SCAN_WILD_CARD) 
1407                 for (channel = 0; channel <= shost->max_channel; channel++)
1408                         scsi_scan_channel(shost, channel, id, lun, rescan);
1409         else
1410                 scsi_scan_channel(shost, channel, id, lun, rescan);
1411         up(&shost->scan_mutex);
1412
1413         return 0;
1414 }
1415
1416 /**
1417  * scsi_scan_host - scan the given adapter
1418  * @shost:      adapter to scan
1419  **/
1420 void scsi_scan_host(struct Scsi_Host *shost)
1421 {
1422         scsi_scan_host_selected(shost, SCAN_WILD_CARD, SCAN_WILD_CARD,
1423                                 SCAN_WILD_CARD, 0);
1424 }
1425 EXPORT_SYMBOL(scsi_scan_host);
1426
1427 /**
1428  * scsi_scan_single_target - scan the given SCSI target
1429  * @shost:         adapter to scan
1430  * @chan:          channel to scan
1431  * @id:            target id to scan
1432  **/
1433 void scsi_scan_single_target(struct Scsi_Host *shost, 
1434         unsigned int chan, unsigned int id)
1435 {
1436         scsi_scan_host_selected(shost, chan, id, SCAN_WILD_CARD, 1);
1437 }
1438 EXPORT_SYMBOL(scsi_scan_single_target);
1439
1440 void scsi_forget_host(struct Scsi_Host *shost)
1441 {
1442         struct scsi_target *starget, *tmp;
1443         unsigned long flags;
1444
1445         /*
1446          * Ok, this look a bit strange.  We always look for the first device
1447          * on the list as scsi_remove_device removes them from it - thus we
1448          * also have to release the lock.
1449          * We don't need to get another reference to the device before
1450          * releasing the lock as we already own the reference from
1451          * scsi_register_device that's release in scsi_remove_device.  And
1452          * after that we don't look at sdev anymore.
1453          */
1454         spin_lock_irqsave(shost->host_lock, flags);
1455         list_for_each_entry_safe(starget, tmp, &shost->__targets, siblings) {
1456                 spin_unlock_irqrestore(shost->host_lock, flags);
1457                 scsi_remove_target(&starget->dev);
1458                 spin_lock_irqsave(shost->host_lock, flags);
1459         }
1460         spin_unlock_irqrestore(shost->host_lock, flags);
1461 }
1462
1463 /*
1464  * Function:    scsi_get_host_dev()
1465  *
1466  * Purpose:     Create a Scsi_Device that points to the host adapter itself.
1467  *
1468  * Arguments:   SHpnt   - Host that needs a Scsi_Device
1469  *
1470  * Lock status: None assumed.
1471  *
1472  * Returns:     The Scsi_Device or NULL
1473  *
1474  * Notes:
1475  *      Attach a single Scsi_Device to the Scsi_Host - this should
1476  *      be made to look like a "pseudo-device" that points to the
1477  *      HA itself.
1478  *
1479  *      Note - this device is not accessible from any high-level
1480  *      drivers (including generics), which is probably not
1481  *      optimal.  We can add hooks later to attach 
1482  */
1483 struct scsi_device *scsi_get_host_dev(struct Scsi_Host *shost)
1484 {
1485         struct scsi_device *sdev;
1486         struct scsi_target *starget;
1487
1488         starget = scsi_alloc_target(&shost->shost_gendev, 0, shost->this_id);
1489         if (!starget)
1490                 return NULL;
1491
1492         sdev = scsi_alloc_sdev(starget, 0, NULL);
1493         if (sdev) {
1494                 sdev->sdev_gendev.parent = get_device(&starget->dev);
1495                 sdev->borken = 0;
1496         }
1497         put_device(&starget->dev);
1498         return sdev;
1499 }
1500 EXPORT_SYMBOL(scsi_get_host_dev);
1501
1502 /*
1503  * Function:    scsi_free_host_dev()
1504  *
1505  * Purpose:     Free a scsi_device that points to the host adapter itself.
1506  *
1507  * Arguments:   SHpnt   - Host that needs a Scsi_Device
1508  *
1509  * Lock status: None assumed.
1510  *
1511  * Returns:     Nothing
1512  *
1513  * Notes:
1514  */
1515 void scsi_free_host_dev(struct scsi_device *sdev)
1516 {
1517         BUG_ON(sdev->id != sdev->host->this_id);
1518
1519         if (sdev->host->hostt->slave_destroy)
1520                 sdev->host->hostt->slave_destroy(sdev);
1521         transport_destroy_device(&sdev->sdev_gendev);
1522         put_device(&sdev->sdev_gendev);
1523 }
1524 EXPORT_SYMBOL(scsi_free_host_dev);
1525