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