blob: 1341608e9e3b8453c52b0872b85466aa05fe3bc3 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * scsi_scan.c
3 *
4 * Copyright (C) 2000 Eric Youngdale,
5 * Copyright (C) 2002 Patrick Mansfield
6 *
7 * The general scanning/probing algorithm is as follows, exceptions are
8 * made to it depending on device specific flags, compilation options, and
9 * global variable (boot or module load time) settings.
10 *
11 * A specific LUN is scanned via an INQUIRY command; if the LUN has a
Christoph Hellwigf64a1812005-10-31 18:32:08 +010012 * device attached, a scsi_device is allocated and setup for it.
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 *
14 * For every id of every channel on the given host:
15 *
16 * Scan LUN 0; if the target responds to LUN 0 (even if there is no
17 * device or storage attached to LUN 0):
18 *
19 * If LUN 0 has a device attached, allocate and setup a
Christoph Hellwigf64a1812005-10-31 18:32:08 +010020 * scsi_device for it.
Linus Torvalds1da177e2005-04-16 15:20:36 -070021 *
22 * If target is SCSI-3 or up, issue a REPORT LUN, and scan
23 * all of the LUNs returned by the REPORT LUN; else,
24 * sequentially scan LUNs up until some maximum is reached,
25 * or a LUN is seen that cannot have a device attached to it.
26 */
27
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <linux/module.h>
29#include <linux/moduleparam.h>
30#include <linux/init.h>
31#include <linux/blkdev.h>
32#include <asm/semaphore.h>
33
34#include <scsi/scsi.h>
Christoph Hellwigbeb40482006-06-10 18:01:03 +020035#include <scsi/scsi_cmnd.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <scsi/scsi_device.h>
37#include <scsi/scsi_driver.h>
38#include <scsi/scsi_devinfo.h>
39#include <scsi/scsi_host.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#include <scsi/scsi_transport.h>
41#include <scsi/scsi_eh.h>
42
43#include "scsi_priv.h"
44#include "scsi_logging.h"
45
46#define ALLOC_FAILURE_MSG KERN_ERR "%s: Allocation failure during" \
47 " SCSI scanning, some SCSI devices might not be configured\n"
48
49/*
50 * Default timeout
51 */
52#define SCSI_TIMEOUT (2*HZ)
53
54/*
55 * Prefix values for the SCSI id's (stored in driverfs name field)
56 */
57#define SCSI_UID_SER_NUM 'S'
58#define SCSI_UID_UNKNOWN 'Z'
59
60/*
61 * Return values of some of the scanning functions.
62 *
63 * SCSI_SCAN_NO_RESPONSE: no valid response received from the target, this
64 * includes allocation or general failures preventing IO from being sent.
65 *
66 * SCSI_SCAN_TARGET_PRESENT: target responded, but no device is available
67 * on the given LUN.
68 *
69 * SCSI_SCAN_LUN_PRESENT: target responded, and a device is available on a
70 * given LUN.
71 */
72#define SCSI_SCAN_NO_RESPONSE 0
73#define SCSI_SCAN_TARGET_PRESENT 1
74#define SCSI_SCAN_LUN_PRESENT 2
75
Arjan van de Ven0ad78202005-11-28 16:22:25 +010076static const char *scsi_null_device_strs = "nullnullnullnull";
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
78#define MAX_SCSI_LUNS 512
79
80#ifdef CONFIG_SCSI_MULTI_LUN
81static unsigned int max_scsi_luns = MAX_SCSI_LUNS;
82#else
83static unsigned int max_scsi_luns = 1;
84#endif
85
86module_param_named(max_luns, max_scsi_luns, int, S_IRUGO|S_IWUSR);
87MODULE_PARM_DESC(max_luns,
88 "last scsi LUN (should be between 1 and 2^32-1)");
89
90/*
91 * max_scsi_report_luns: the maximum number of LUNS that will be
92 * returned from the REPORT LUNS command. 8 times this value must
93 * be allocated. In theory this could be up to an 8 byte value, but
94 * in practice, the maximum number of LUNs suppored by any device
95 * is about 16k.
96 */
97static unsigned int max_scsi_report_luns = 511;
98
99module_param_named(max_report_luns, max_scsi_report_luns, int, S_IRUGO|S_IWUSR);
100MODULE_PARM_DESC(max_report_luns,
101 "REPORT LUNS maximum number of LUNS received (should be"
102 " between 1 and 16384)");
103
104static unsigned int scsi_inq_timeout = SCSI_TIMEOUT/HZ+3;
105
106module_param_named(inq_timeout, scsi_inq_timeout, int, S_IRUGO|S_IWUSR);
107MODULE_PARM_DESC(inq_timeout,
108 "Timeout (in seconds) waiting for devices to answer INQUIRY."
109 " Default is 5. Some non-compliant devices need more.");
110
111/**
112 * scsi_unlock_floptical - unlock device via a special MODE SENSE command
James Bottomley39216032005-06-15 18:48:29 -0500113 * @sdev: scsi device to send command to
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 * @result: area to store the result of the MODE SENSE
115 *
116 * Description:
James Bottomley39216032005-06-15 18:48:29 -0500117 * Send a vendor specific MODE SENSE (not a MODE SELECT) command.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 * Called for BLIST_KEY devices.
119 **/
James Bottomley39216032005-06-15 18:48:29 -0500120static void scsi_unlock_floptical(struct scsi_device *sdev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 unsigned char *result)
122{
123 unsigned char scsi_cmd[MAX_COMMAND_SIZE];
124
125 printk(KERN_NOTICE "scsi: unlocking floptical drive\n");
126 scsi_cmd[0] = MODE_SENSE;
127 scsi_cmd[1] = 0;
128 scsi_cmd[2] = 0x2e;
129 scsi_cmd[3] = 0;
James Bottomley39216032005-06-15 18:48:29 -0500130 scsi_cmd[4] = 0x2a; /* size */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 scsi_cmd[5] = 0;
James Bottomley39216032005-06-15 18:48:29 -0500132 scsi_execute_req(sdev, scsi_cmd, DMA_FROM_DEVICE, result, 0x2a, NULL,
133 SCSI_TIMEOUT, 3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134}
135
136/**
137 * print_inquiry - printk the inquiry information
138 * @inq_result: printk this SCSI INQUIRY
139 *
140 * Description:
141 * printk the vendor, model, and other information found in the
142 * INQUIRY data in @inq_result.
143 *
144 * Notes:
145 * Remove this, and replace with a hotplug event that logs any
146 * relevant information.
147 **/
148static void print_inquiry(unsigned char *inq_result)
149{
150 int i;
151
152 printk(KERN_NOTICE " Vendor: ");
153 for (i = 8; i < 16; i++)
154 if (inq_result[i] >= 0x20 && i < inq_result[4] + 5)
155 printk("%c", inq_result[i]);
156 else
157 printk(" ");
158
159 printk(" Model: ");
160 for (i = 16; i < 32; i++)
161 if (inq_result[i] >= 0x20 && i < inq_result[4] + 5)
162 printk("%c", inq_result[i]);
163 else
164 printk(" ");
165
166 printk(" Rev: ");
167 for (i = 32; i < 36; i++)
168 if (inq_result[i] >= 0x20 && i < inq_result[4] + 5)
169 printk("%c", inq_result[i]);
170 else
171 printk(" ");
172
173 printk("\n");
174
175 i = inq_result[0] & 0x1f;
176
177 printk(KERN_NOTICE " Type: %s ",
178 i <
179 MAX_SCSI_DEVICE_CODE ? scsi_device_types[i] :
180 "Unknown ");
181 printk(" ANSI SCSI revision: %02x",
182 inq_result[2] & 0x07);
183 if ((inq_result[2] & 0x07) == 1 && (inq_result[3] & 0x0f) == 1)
184 printk(" CCS\n");
185 else
186 printk("\n");
187}
188
189/**
190 * scsi_alloc_sdev - allocate and setup a scsi_Device
191 *
192 * Description:
193 * Allocate, initialize for io, and return a pointer to a scsi_Device.
194 * Stores the @shost, @channel, @id, and @lun in the scsi_Device, and
195 * adds scsi_Device to the appropriate list.
196 *
197 * Return value:
198 * scsi_Device pointer, or NULL on failure.
199 **/
200static struct scsi_device *scsi_alloc_sdev(struct scsi_target *starget,
201 unsigned int lun, void *hostdata)
202{
203 struct scsi_device *sdev;
204 int display_failure_msg = 1, ret;
205 struct Scsi_Host *shost = dev_to_shost(starget->dev.parent);
206
Jes Sorensen24669f752006-01-16 10:31:18 -0500207 sdev = kzalloc(sizeof(*sdev) + shost->transportt->device_size,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 GFP_ATOMIC);
209 if (!sdev)
210 goto out;
211
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 sdev->vendor = scsi_null_device_strs;
213 sdev->model = scsi_null_device_strs;
214 sdev->rev = scsi_null_device_strs;
215 sdev->host = shost;
216 sdev->id = starget->id;
217 sdev->lun = lun;
218 sdev->channel = starget->channel;
219 sdev->sdev_state = SDEV_CREATED;
220 INIT_LIST_HEAD(&sdev->siblings);
221 INIT_LIST_HEAD(&sdev->same_target_siblings);
222 INIT_LIST_HEAD(&sdev->cmd_list);
223 INIT_LIST_HEAD(&sdev->starved_entry);
224 spin_lock_init(&sdev->list_lock);
225
226 sdev->sdev_gendev.parent = get_device(&starget->dev);
227 sdev->sdev_target = starget;
228
229 /* usually NULL and set by ->slave_alloc instead */
230 sdev->hostdata = hostdata;
231
232 /* if the device needs this changing, it may do so in the
233 * slave_configure function */
234 sdev->max_device_blocked = SCSI_DEFAULT_DEVICE_BLOCKED;
235
236 /*
237 * Some low level driver could use device->type
238 */
239 sdev->type = -1;
240
241 /*
242 * Assume that the device will have handshaking problems,
243 * and then fix this field later if it turns out it
244 * doesn't
245 */
246 sdev->borken = 1;
247
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 sdev->request_queue = scsi_alloc_queue(sdev);
249 if (!sdev->request_queue) {
250 /* release fn is set up in scsi_sysfs_device_initialise, so
251 * have to free and put manually here */
252 put_device(&starget->dev);
Dave Jones93f560892006-03-09 10:21:27 -0500253 kfree(sdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 goto out;
255 }
256
257 sdev->request_queue->queuedata = sdev;
258 scsi_adjust_queue_depth(sdev, 0, sdev->host->cmd_per_lun);
259
260 scsi_sysfs_device_initialize(sdev);
261
262 if (shost->hostt->slave_alloc) {
263 ret = shost->hostt->slave_alloc(sdev);
264 if (ret) {
265 /*
266 * if LLDD reports slave not present, don't clutter
267 * console with alloc failure messages
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 */
269 if (ret == -ENXIO)
270 display_failure_msg = 0;
271 goto out_device_destroy;
272 }
273 }
274
275 return sdev;
276
277out_device_destroy:
278 transport_destroy_device(&sdev->sdev_gendev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 put_device(&sdev->sdev_gendev);
280out:
281 if (display_failure_msg)
282 printk(ALLOC_FAILURE_MSG, __FUNCTION__);
283 return NULL;
284}
285
286static void scsi_target_dev_release(struct device *dev)
287{
288 struct device *parent = dev->parent;
289 struct scsi_target *starget = to_scsi_target(dev);
James Bottomleya283bd32005-05-24 12:06:38 -0500290
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 kfree(starget);
292 put_device(parent);
293}
294
295int scsi_is_target_device(const struct device *dev)
296{
297 return dev->release == scsi_target_dev_release;
298}
299EXPORT_SYMBOL(scsi_is_target_device);
300
301static struct scsi_target *__scsi_find_target(struct device *parent,
302 int channel, uint id)
303{
304 struct scsi_target *starget, *found_starget = NULL;
305 struct Scsi_Host *shost = dev_to_shost(parent);
306 /*
307 * Search for an existing target for this sdev.
308 */
309 list_for_each_entry(starget, &shost->__targets, siblings) {
310 if (starget->id == id &&
311 starget->channel == channel) {
312 found_starget = starget;
313 break;
314 }
315 }
316 if (found_starget)
317 get_device(&found_starget->dev);
318
319 return found_starget;
320}
321
322static struct scsi_target *scsi_alloc_target(struct device *parent,
323 int channel, uint id)
324{
325 struct Scsi_Host *shost = dev_to_shost(parent);
326 struct device *dev = NULL;
327 unsigned long flags;
328 const int size = sizeof(struct scsi_target)
329 + shost->transportt->target_size;
James.Smart@Emulex.Com5c44cd22005-06-10 22:24:30 -0400330 struct scsi_target *starget;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 struct scsi_target *found_target;
Brian King32f95792006-02-22 14:28:24 -0600332 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333
Jes Sorensen24669f752006-01-16 10:31:18 -0500334 starget = kzalloc(size, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 if (!starget) {
336 printk(KERN_ERR "%s: allocation failure\n", __FUNCTION__);
337 return NULL;
338 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 dev = &starget->dev;
340 device_initialize(dev);
341 starget->reap_ref = 1;
342 dev->parent = get_device(parent);
343 dev->release = scsi_target_dev_release;
344 sprintf(dev->bus_id, "target%d:%d:%d",
345 shost->host_no, channel, id);
346 starget->id = id;
347 starget->channel = channel;
348 INIT_LIST_HEAD(&starget->siblings);
349 INIT_LIST_HEAD(&starget->devices);
James Bottomleyffedb452006-02-23 14:27:18 -0600350 starget->state = STARGET_RUNNING;
351 retry:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 spin_lock_irqsave(shost->host_lock, flags);
353
354 found_target = __scsi_find_target(parent, channel, id);
355 if (found_target)
356 goto found;
357
358 list_add_tail(&starget->siblings, &shost->__targets);
359 spin_unlock_irqrestore(shost->host_lock, flags);
360 /* allocate and add */
James Bottomleya283bd32005-05-24 12:06:38 -0500361 transport_setup_device(dev);
Brian King32f95792006-02-22 14:28:24 -0600362 error = device_add(dev);
363 if (error) {
364 dev_err(dev, "target device_add failed, error %d\n", error);
365 spin_lock_irqsave(shost->host_lock, flags);
366 list_del_init(&starget->siblings);
367 spin_unlock_irqrestore(shost->host_lock, flags);
368 transport_destroy_device(dev);
369 put_device(parent);
370 kfree(starget);
371 return NULL;
372 }
James Bottomleya283bd32005-05-24 12:06:38 -0500373 transport_add_device(dev);
374 if (shost->hostt->target_alloc) {
Brian King32f95792006-02-22 14:28:24 -0600375 error = shost->hostt->target_alloc(starget);
James Bottomleya283bd32005-05-24 12:06:38 -0500376
377 if(error) {
378 dev_printk(KERN_ERR, dev, "target allocation failed, error %d\n", error);
379 /* don't want scsi_target_reap to do the final
380 * put because it will be under the host lock */
381 get_device(dev);
382 scsi_target_reap(starget);
383 put_device(dev);
384 return NULL;
385 }
386 }
387
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 return starget;
389
390 found:
391 found_target->reap_ref++;
392 spin_unlock_irqrestore(shost->host_lock, flags);
393 put_device(parent);
James Bottomleyffedb452006-02-23 14:27:18 -0600394 if (found_target->state != STARGET_DEL) {
395 kfree(starget);
396 return found_target;
397 }
398 /* Unfortunately, we found a dying target; need to
399 * wait until it's dead before we can get a new one */
400 put_device(&found_target->dev);
401 flush_scheduled_work();
402 goto retry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403}
404
James Bottomley65110b22006-02-14 10:48:46 -0600405static void scsi_target_reap_usercontext(void *data)
406{
407 struct scsi_target *starget = data;
James Bottomley863a9302005-12-15 20:01:43 -0800408 struct Scsi_Host *shost = dev_to_shost(starget->dev.parent);
409 unsigned long flags;
410
James Bottomleyffedb452006-02-23 14:27:18 -0600411 transport_remove_device(&starget->dev);
412 device_del(&starget->dev);
413 transport_destroy_device(&starget->dev);
James Bottomley863a9302005-12-15 20:01:43 -0800414 spin_lock_irqsave(shost->host_lock, flags);
Mike Andersona50a5e32006-03-14 11:18:46 -0800415 if (shost->hostt->target_destroy)
416 shost->hostt->target_destroy(starget);
James Bottomleyffedb452006-02-23 14:27:18 -0600417 list_del_init(&starget->siblings);
James Bottomley863a9302005-12-15 20:01:43 -0800418 spin_unlock_irqrestore(shost->host_lock, flags);
James Bottomleyffedb452006-02-23 14:27:18 -0600419 put_device(&starget->dev);
James Bottomley863a9302005-12-15 20:01:43 -0800420}
421
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422/**
423 * scsi_target_reap - check to see if target is in use and destroy if not
424 *
425 * @starget: target to be checked
426 *
427 * This is used after removing a LUN or doing a last put of the target
428 * it checks atomically that nothing is using the target and removes
429 * it if so.
430 */
431void scsi_target_reap(struct scsi_target *starget)
432{
James Bottomleyffedb452006-02-23 14:27:18 -0600433 struct Scsi_Host *shost = dev_to_shost(starget->dev.parent);
434 unsigned long flags;
435
436 spin_lock_irqsave(shost->host_lock, flags);
437
438 if (--starget->reap_ref == 0 && list_empty(&starget->devices)) {
439 BUG_ON(starget->state == STARGET_DEL);
440 starget->state = STARGET_DEL;
441 spin_unlock_irqrestore(shost->host_lock, flags);
442 execute_in_process_context(scsi_target_reap_usercontext,
443 starget, &starget->ew);
444 return;
445
446 }
447 spin_unlock_irqrestore(shost->host_lock, flags);
448
449 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450}
451
452/**
453 * scsi_probe_lun - probe a single LUN using a SCSI INQUIRY
James Bottomley39216032005-06-15 18:48:29 -0500454 * @sdev: scsi_device to probe
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 * @inq_result: area to store the INQUIRY result
James Bottomley39216032005-06-15 18:48:29 -0500456 * @result_len: len of inq_result
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 * @bflags: store any bflags found here
458 *
459 * Description:
James Bottomley39216032005-06-15 18:48:29 -0500460 * Probe the lun associated with @req using a standard SCSI INQUIRY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 *
James Bottomley39216032005-06-15 18:48:29 -0500462 * If the INQUIRY is successful, zero is returned and the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 * INQUIRY data is in @inq_result; the scsi_level and INQUIRY length
Christoph Hellwigf64a1812005-10-31 18:32:08 +0100464 * are copied to the scsi_device any flags value is stored in *@bflags.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 **/
James Bottomley39216032005-06-15 18:48:29 -0500466static int scsi_probe_lun(struct scsi_device *sdev, char *inq_result,
467 int result_len, int *bflags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 unsigned char scsi_cmd[MAX_COMMAND_SIZE];
470 int first_inquiry_len, try_inquiry_len, next_inquiry_len;
471 int response_len = 0;
James Bottomley39216032005-06-15 18:48:29 -0500472 int pass, count, result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 struct scsi_sense_hdr sshdr;
474
475 *bflags = 0;
476
477 /* Perform up to 3 passes. The first pass uses a conservative
478 * transfer length of 36 unless sdev->inquiry_len specifies a
479 * different value. */
480 first_inquiry_len = sdev->inquiry_len ? sdev->inquiry_len : 36;
481 try_inquiry_len = first_inquiry_len;
482 pass = 1;
483
484 next_pass:
James Bottomley9ccfc752005-10-02 11:45:08 -0500485 SCSI_LOG_SCAN_BUS(3, sdev_printk(KERN_INFO, sdev,
486 "scsi scan: INQUIRY pass %d length %d\n",
487 pass, try_inquiry_len));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488
489 /* Each pass gets up to three chances to ignore Unit Attention */
490 for (count = 0; count < 3; ++count) {
491 memset(scsi_cmd, 0, 6);
492 scsi_cmd[0] = INQUIRY;
493 scsi_cmd[4] = (unsigned char) try_inquiry_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494
495 memset(inq_result, 0, try_inquiry_len);
James Bottomley39216032005-06-15 18:48:29 -0500496
497 result = scsi_execute_req(sdev, scsi_cmd, DMA_FROM_DEVICE,
James Bottomleyea73a9f2005-08-28 11:33:52 -0500498 inq_result, try_inquiry_len, &sshdr,
James Bottomley39216032005-06-15 18:48:29 -0500499 HZ / 2 + HZ * scsi_inq_timeout, 3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500
501 SCSI_LOG_SCAN_BUS(3, printk(KERN_INFO "scsi scan: INQUIRY %s "
502 "with code 0x%x\n",
James Bottomley39216032005-06-15 18:48:29 -0500503 result ? "failed" : "successful", result));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504
James Bottomley39216032005-06-15 18:48:29 -0500505 if (result) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 /*
507 * not-ready to ready transition [asc/ascq=0x28/0x0]
508 * or power-on, reset [asc/ascq=0x29/0x0], continue.
509 * INQUIRY should not yield UNIT_ATTENTION
510 * but many buggy devices do so anyway.
511 */
James Bottomley39216032005-06-15 18:48:29 -0500512 if ((driver_byte(result) & DRIVER_SENSE) &&
James Bottomleyea73a9f2005-08-28 11:33:52 -0500513 scsi_sense_valid(&sshdr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 if ((sshdr.sense_key == UNIT_ATTENTION) &&
515 ((sshdr.asc == 0x28) ||
516 (sshdr.asc == 0x29)) &&
517 (sshdr.ascq == 0))
518 continue;
519 }
520 }
521 break;
522 }
523
James Bottomley39216032005-06-15 18:48:29 -0500524 if (result == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 response_len = (unsigned char) inq_result[4] + 5;
526 if (response_len > 255)
527 response_len = first_inquiry_len; /* sanity */
528
529 /*
530 * Get any flags for this device.
531 *
Christoph Hellwigf64a1812005-10-31 18:32:08 +0100532 * XXX add a bflags to scsi_device, and replace the
533 * corresponding bit fields in scsi_device, so bflags
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 * need not be passed as an argument.
535 */
536 *bflags = scsi_get_device_flags(sdev, &inq_result[8],
537 &inq_result[16]);
538
539 /* When the first pass succeeds we gain information about
540 * what larger transfer lengths might work. */
541 if (pass == 1) {
542 if (BLIST_INQUIRY_36 & *bflags)
543 next_inquiry_len = 36;
544 else if (BLIST_INQUIRY_58 & *bflags)
545 next_inquiry_len = 58;
546 else if (sdev->inquiry_len)
547 next_inquiry_len = sdev->inquiry_len;
548 else
549 next_inquiry_len = response_len;
550
551 /* If more data is available perform the second pass */
552 if (next_inquiry_len > try_inquiry_len) {
553 try_inquiry_len = next_inquiry_len;
554 pass = 2;
555 goto next_pass;
556 }
557 }
558
559 } else if (pass == 2) {
560 printk(KERN_INFO "scsi scan: %d byte inquiry failed. "
561 "Consider BLIST_INQUIRY_36 for this device\n",
562 try_inquiry_len);
563
564 /* If this pass failed, the third pass goes back and transfers
565 * the same amount as we successfully got in the first pass. */
566 try_inquiry_len = first_inquiry_len;
567 pass = 3;
568 goto next_pass;
569 }
570
571 /* If the last transfer attempt got an error, assume the
572 * peripheral doesn't exist or is dead. */
James Bottomley39216032005-06-15 18:48:29 -0500573 if (result)
574 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575
576 /* Don't report any more data than the device says is valid */
577 sdev->inquiry_len = min(try_inquiry_len, response_len);
578
579 /*
580 * XXX Abort if the response length is less than 36? If less than
581 * 32, the lookup of the device flags (above) could be invalid,
582 * and it would be possible to take an incorrect action - we do
583 * not want to hang because of a short INQUIRY. On the flip side,
584 * if the device is spun down or becoming ready (and so it gives a
585 * short INQUIRY), an abort here prevents any further use of the
586 * device, including spin up.
587 *
588 * Related to the above issue:
589 *
590 * XXX Devices (disk or all?) should be sent a TEST UNIT READY,
591 * and if not ready, sent a START_STOP to start (maybe spin up) and
592 * then send the INQUIRY again, since the INQUIRY can change after
593 * a device is initialized.
594 *
595 * Ideally, start a device if explicitly asked to do so. This
596 * assumes that a device is spun up on power on, spun down on
597 * request, and then spun up on request.
598 */
599
600 /*
601 * The scanning code needs to know the scsi_level, even if no
602 * device is attached at LUN 0 (SCSI_SCAN_TARGET_PRESENT) so
603 * non-zero LUNs can be scanned.
604 */
605 sdev->scsi_level = inq_result[2] & 0x07;
606 if (sdev->scsi_level >= 2 ||
607 (sdev->scsi_level == 1 && (inq_result[3] & 0x0f) == 1))
608 sdev->scsi_level++;
James Bottomley6f3a2022005-09-22 20:33:28 -0500609 sdev->sdev_target->scsi_level = sdev->scsi_level;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610
James Bottomley39216032005-06-15 18:48:29 -0500611 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612}
613
614/**
Christoph Hellwigf64a1812005-10-31 18:32:08 +0100615 * scsi_add_lun - allocate and fully initialze a scsi_device
616 * @sdevscan: holds information to be stored in the new scsi_device
617 * @sdevnew: store the address of the newly allocated scsi_device
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 * @inq_result: holds the result of a previous INQUIRY to the LUN
619 * @bflags: black/white list flag
620 *
621 * Description:
Christoph Hellwigf64a1812005-10-31 18:32:08 +0100622 * Allocate and initialize a scsi_device matching sdevscan. Optionally
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 * set fields based on values in *@bflags. If @sdevnew is not
Christoph Hellwigf64a1812005-10-31 18:32:08 +0100624 * NULL, store the address of the new scsi_device in *@sdevnew (needed
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 * when scanning a particular LUN).
626 *
627 * Return:
Christoph Hellwigf64a1812005-10-31 18:32:08 +0100628 * SCSI_SCAN_NO_RESPONSE: could not allocate or setup a scsi_device
629 * SCSI_SCAN_LUN_PRESENT: a new scsi_device was allocated and initialized
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 **/
631static int scsi_add_lun(struct scsi_device *sdev, char *inq_result, int *bflags)
632{
633 /*
634 * XXX do not save the inquiry, since it can change underneath us,
635 * save just vendor/model/rev.
636 *
637 * Rather than save it and have an ioctl that retrieves the saved
638 * value, have an ioctl that executes the same INQUIRY code used
639 * in scsi_probe_lun, let user level programs doing INQUIRY
640 * scanning run at their own risk, or supply a user level program
641 * that can correctly scan.
642 */
643 sdev->inquiry = kmalloc(sdev->inquiry_len, GFP_ATOMIC);
644 if (sdev->inquiry == NULL) {
645 return SCSI_SCAN_NO_RESPONSE;
646 }
647
648 memcpy(sdev->inquiry, inq_result, sdev->inquiry_len);
649 sdev->vendor = (char *) (sdev->inquiry + 8);
650 sdev->model = (char *) (sdev->inquiry + 16);
651 sdev->rev = (char *) (sdev->inquiry + 32);
652
653 if (*bflags & BLIST_ISROM) {
654 /*
655 * It would be better to modify sdev->type, and set
656 * sdev->removable, but then the print_inquiry() output
657 * would not show TYPE_ROM; if print_inquiry() is removed
658 * the issue goes away.
659 */
660 inq_result[0] = TYPE_ROM;
661 inq_result[1] |= 0x80; /* removable */
662 } else if (*bflags & BLIST_NO_ULD_ATTACH)
663 sdev->no_uld_attach = 1;
664
665 switch (sdev->type = (inq_result[0] & 0x1f)) {
666 case TYPE_TAPE:
667 case TYPE_DISK:
668 case TYPE_PRINTER:
669 case TYPE_MOD:
670 case TYPE_PROCESSOR:
671 case TYPE_SCANNER:
672 case TYPE_MEDIUM_CHANGER:
673 case TYPE_ENCLOSURE:
674 case TYPE_COMM:
James Bottomley4d7db042006-03-31 20:07:45 -0600675 case TYPE_RAID:
Al Viro 631e8a12005-05-16 01:59:55 +0100676 case TYPE_RBC:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 sdev->writeable = 1;
678 break;
679 case TYPE_WORM:
680 case TYPE_ROM:
681 sdev->writeable = 0;
682 break;
683 default:
684 printk(KERN_INFO "scsi: unknown device type %d\n", sdev->type);
685 }
686
687 print_inquiry(inq_result);
688
689 /*
690 * For a peripheral qualifier (PQ) value of 1 (001b), the SCSI
691 * spec says: The device server is capable of supporting the
692 * specified peripheral device type on this logical unit. However,
693 * the physical device is not currently connected to this logical
694 * unit.
695 *
696 * The above is vague, as it implies that we could treat 001 and
697 * 011 the same. Stay compatible with previous code, and create a
Christoph Hellwigf64a1812005-10-31 18:32:08 +0100698 * scsi_device for a PQ of 1
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 *
700 * Don't set the device offline here; rather let the upper
701 * level drivers eval the PQ to decide whether they should
702 * attach. So remove ((inq_result[0] >> 5) & 7) == 1 check.
703 */
704
705 sdev->inq_periph_qual = (inq_result[0] >> 5) & 7;
706 sdev->removable = (0x80 & inq_result[1]) >> 7;
707 sdev->lockable = sdev->removable;
708 sdev->soft_reset = (inq_result[7] & 1) && ((inq_result[3] & 7) == 2);
709
710 if (sdev->scsi_level >= SCSI_3 || (sdev->inquiry_len > 56 &&
711 inq_result[56] & 0x04))
712 sdev->ppr = 1;
713 if (inq_result[7] & 0x60)
714 sdev->wdtr = 1;
715 if (inq_result[7] & 0x10)
716 sdev->sdtr = 1;
717
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 /*
Greg KH5e3c34c2006-01-18 16:17:46 -0800719 * End sysfs code.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 */
721
722 if ((sdev->scsi_level >= SCSI_2) && (inq_result[7] & 2) &&
723 !(*bflags & BLIST_NOTQ))
724 sdev->tagged_supported = 1;
725 /*
726 * Some devices (Texel CD ROM drives) have handshaking problems
727 * when used with the Seagate controllers. borken is initialized
728 * to 1, and then set it to 0 here.
729 */
730 if ((*bflags & BLIST_BORKEN) == 0)
731 sdev->borken = 0;
732
733 /*
734 * Apparently some really broken devices (contrary to the SCSI
735 * standards) need to be selected without asserting ATN
736 */
737 if (*bflags & BLIST_SELECT_NO_ATN)
738 sdev->select_no_atn = 1;
739
740 /*
James Bottomley4d7db042006-03-31 20:07:45 -0600741 * Maximum 512 sector transfer length
742 * broken RA4x00 Compaq Disk Array
743 */
744 if (*bflags & BLIST_MAX_512)
745 blk_queue_max_sectors(sdev->request_queue, 512);
746
747 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 * Some devices may not want to have a start command automatically
749 * issued when a device is added.
750 */
751 if (*bflags & BLIST_NOSTARTONADD)
752 sdev->no_start_on_add = 1;
753
754 if (*bflags & BLIST_SINGLELUN)
755 sdev->single_lun = 1;
756
757
758 sdev->use_10_for_rw = 1;
759
760 if (*bflags & BLIST_MS_SKIP_PAGE_08)
761 sdev->skip_ms_page_8 = 1;
762
763 if (*bflags & BLIST_MS_SKIP_PAGE_3F)
764 sdev->skip_ms_page_3f = 1;
765
766 if (*bflags & BLIST_USE_10_BYTE_MS)
767 sdev->use_10_for_ms = 1;
768
769 /* set the device running here so that slave configure
770 * may do I/O */
771 scsi_device_set_state(sdev, SDEV_RUNNING);
772
773 if (*bflags & BLIST_MS_192_BYTES_FOR_3F)
774 sdev->use_192_bytes_for_3f = 1;
775
776 if (*bflags & BLIST_NOT_LOCKABLE)
777 sdev->lockable = 0;
778
779 if (*bflags & BLIST_RETRY_HWERROR)
780 sdev->retry_hwerror = 1;
781
782 transport_configure_device(&sdev->sdev_gendev);
783
Christoph Hellwig93805092006-02-17 12:11:29 +0100784 if (sdev->host->hostt->slave_configure) {
785 int ret = sdev->host->hostt->slave_configure(sdev);
786 if (ret) {
787 /*
788 * if LLDD reports slave not present, don't clutter
789 * console with alloc failure messages
790 */
791 if (ret != -ENXIO) {
792 sdev_printk(KERN_ERR, sdev,
793 "failed to configure device\n");
794 }
795 return SCSI_SCAN_NO_RESPONSE;
796 }
797 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798
799 /*
800 * Ok, the device is now all set up, we can
801 * register it and tell the rest of the kernel
802 * about it.
803 */
Alan Sternb24b1032005-07-27 11:43:46 -0700804 if (scsi_sysfs_add_sdev(sdev) != 0)
805 return SCSI_SCAN_NO_RESPONSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806
807 return SCSI_SCAN_LUN_PRESENT;
808}
809
James Bottomley6f3a2022005-09-22 20:33:28 -0500810static inline void scsi_destroy_sdev(struct scsi_device *sdev)
811{
812 if (sdev->host->hostt->slave_destroy)
813 sdev->host->hostt->slave_destroy(sdev);
814 transport_destroy_device(&sdev->sdev_gendev);
815 put_device(&sdev->sdev_gendev);
816}
817
akpm@osdl.orgc5f2e642006-04-15 00:30:24 -0700818#ifdef CONFIG_SCSI_LOGGING
Kurt Garloff6c7154c2006-04-03 15:18:35 +0200819/**
820 * scsi_inq_str - print INQUIRY data from min to max index,
821 * strip trailing whitespace
822 * @buf: Output buffer with at least end-first+1 bytes of space
823 * @inq: Inquiry buffer (input)
824 * @first: Offset of string into inq
825 * @end: Index after last character in inq
826 */
akpm@osdl.orgc5f2e642006-04-15 00:30:24 -0700827static unsigned char *scsi_inq_str(unsigned char *buf, unsigned char *inq,
Kurt Garloff6c7154c2006-04-03 15:18:35 +0200828 unsigned first, unsigned end)
829{
830 unsigned term = 0, idx;
akpm@osdl.orgc5f2e642006-04-15 00:30:24 -0700831
832 for (idx = 0; idx + first < end && idx + first < inq[4] + 5; idx++) {
833 if (inq[idx+first] > ' ') {
Kurt Garloff6c7154c2006-04-03 15:18:35 +0200834 buf[idx] = inq[idx+first];
835 term = idx+1;
836 } else {
837 buf[idx] = ' ';
838 }
839 }
840 buf[term] = 0;
841 return buf;
842}
akpm@osdl.orgc5f2e642006-04-15 00:30:24 -0700843#endif
James Bottomley6f3a2022005-09-22 20:33:28 -0500844
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845/**
846 * scsi_probe_and_add_lun - probe a LUN, if a LUN is found add it
847 * @starget: pointer to target device structure
848 * @lun: LUN of target device
Christoph Hellwigf64a1812005-10-31 18:32:08 +0100849 * @sdevscan: probe the LUN corresponding to this scsi_device
850 * @sdevnew: store the value of any new scsi_device allocated
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 * @bflagsp: store bflags here if not NULL
852 *
853 * Description:
854 * Call scsi_probe_lun, if a LUN with an attached device is found,
855 * allocate and set it up by calling scsi_add_lun.
856 *
857 * Return:
Christoph Hellwigf64a1812005-10-31 18:32:08 +0100858 * SCSI_SCAN_NO_RESPONSE: could not allocate or setup a scsi_device
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 * SCSI_SCAN_TARGET_PRESENT: target responded, but no device is
860 * attached at the LUN
Christoph Hellwigf64a1812005-10-31 18:32:08 +0100861 * SCSI_SCAN_LUN_PRESENT: a new scsi_device was allocated and initialized
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 **/
863static int scsi_probe_and_add_lun(struct scsi_target *starget,
864 uint lun, int *bflagsp,
865 struct scsi_device **sdevp, int rescan,
866 void *hostdata)
867{
868 struct scsi_device *sdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 unsigned char *result;
James Bottomley39216032005-06-15 18:48:29 -0500870 int bflags, res = SCSI_SCAN_NO_RESPONSE, result_len = 256;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 struct Scsi_Host *shost = dev_to_shost(starget->dev.parent);
872
873 /*
874 * The rescan flag is used as an optimization, the first scan of a
875 * host adapter calls into here with rescan == 0.
876 */
James Bottomley6f3a2022005-09-22 20:33:28 -0500877 sdev = scsi_device_lookup_by_target(starget, lun);
878 if (sdev) {
879 if (rescan || sdev->sdev_state != SDEV_CREATED) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 SCSI_LOG_SCAN_BUS(3, printk(KERN_INFO
881 "scsi scan: device exists on %s\n",
882 sdev->sdev_gendev.bus_id));
883 if (sdevp)
884 *sdevp = sdev;
885 else
886 scsi_device_put(sdev);
887
888 if (bflagsp)
889 *bflagsp = scsi_get_device_flags(sdev,
890 sdev->vendor,
891 sdev->model);
892 return SCSI_SCAN_LUN_PRESENT;
893 }
James Bottomley6f3a2022005-09-22 20:33:28 -0500894 scsi_device_put(sdev);
895 } else
896 sdev = scsi_alloc_sdev(starget, lun, hostdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 if (!sdev)
898 goto out;
James Bottomley39216032005-06-15 18:48:29 -0500899
900 result = kmalloc(result_len, GFP_ATOMIC |
Al Virobc861202005-04-24 12:28:34 -0700901 ((shost->unchecked_isa_dma) ? __GFP_DMA : 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 if (!result)
James Bottomley39216032005-06-15 18:48:29 -0500903 goto out_free_sdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904
James Bottomley39216032005-06-15 18:48:29 -0500905 if (scsi_probe_lun(sdev, result, result_len, &bflags))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 goto out_free_result;
907
Kurt Garloff4186ab12006-04-03 15:16:48 +0200908 if (bflagsp)
909 *bflagsp = bflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 /*
911 * result contains valid SCSI INQUIRY data.
912 */
Kurt Garloff13f7e5a2006-04-03 15:20:08 +0200913 if (((result[0] >> 5) == 3) && !(bflags & BLIST_ATTACH_PQ3)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 /*
915 * For a Peripheral qualifier 3 (011b), the SCSI
916 * spec says: The device server is not capable of
917 * supporting a physical device on this logical
918 * unit.
919 *
920 * For disks, this implies that there is no
921 * logical disk configured at sdev->lun, but there
922 * is a target id responding.
923 */
Kurt Garloff6c7154c2006-04-03 15:18:35 +0200924 SCSI_LOG_SCAN_BUS(2, sdev_printk(KERN_INFO, sdev, "scsi scan:"
925 " peripheral qualifier of 3, device not"
926 " added\n"))
927 if (lun == 0) {
akpm@osdl.orgc5f2e642006-04-15 00:30:24 -0700928 SCSI_LOG_SCAN_BUS(1, {
929 unsigned char vend[9];
930 unsigned char mod[17];
931
932 sdev_printk(KERN_INFO, sdev,
Kurt Garloff6c7154c2006-04-03 15:18:35 +0200933 "scsi scan: consider passing scsi_mod."
934 "dev_flags=%s:%s:0x240 or 0x800240\n",
935 scsi_inq_str(vend, result, 8, 16),
akpm@osdl.orgc5f2e642006-04-15 00:30:24 -0700936 scsi_inq_str(mod, result, 16, 32));
937 });
Kurt Garloff6c7154c2006-04-03 15:18:35 +0200938 }
939
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 res = SCSI_SCAN_TARGET_PRESENT;
941 goto out_free_result;
942 }
943
Alan Stern1bfc5d92006-02-09 15:26:18 -0500944 /*
945 * Non-standard SCSI targets may set the PDT to 0x1f (unknown or
946 * no device type) instead of using the Peripheral Qualifier to
947 * indicate that no LUN is present. For example, USB UFI does this.
948 */
949 if (starget->pdt_1f_for_no_lun && (result[0] & 0x1f) == 0x1f) {
950 SCSI_LOG_SCAN_BUS(3, printk(KERN_INFO
951 "scsi scan: peripheral device type"
952 " of 31, no device added\n"));
953 res = SCSI_SCAN_TARGET_PRESENT;
954 goto out_free_result;
955 }
956
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 res = scsi_add_lun(sdev, result, &bflags);
958 if (res == SCSI_SCAN_LUN_PRESENT) {
959 if (bflags & BLIST_KEY) {
960 sdev->lockable = 0;
James Bottomley39216032005-06-15 18:48:29 -0500961 scsi_unlock_floptical(sdev, result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963 }
964
965 out_free_result:
966 kfree(result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 out_free_sdev:
968 if (res == SCSI_SCAN_LUN_PRESENT) {
969 if (sdevp) {
Alan Sternb70d37b2005-07-26 10:30:40 -0400970 if (scsi_device_get(sdev) == 0) {
971 *sdevp = sdev;
972 } else {
973 __scsi_remove_device(sdev);
974 res = SCSI_SCAN_NO_RESPONSE;
975 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 }
James Bottomley6f3a2022005-09-22 20:33:28 -0500977 } else
978 scsi_destroy_sdev(sdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 out:
980 return res;
981}
982
983/**
984 * scsi_sequential_lun_scan - sequentially scan a SCSI target
985 * @starget: pointer to target structure to scan
986 * @bflags: black/white list flag for LUN 0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 *
988 * Description:
989 * Generally, scan from LUN 1 (LUN 0 is assumed to already have been
990 * scanned) to some maximum lun until a LUN is found with no device
991 * attached. Use the bflags to figure out any oddities.
992 *
993 * Modifies sdevscan->lun.
994 **/
995static void scsi_sequential_lun_scan(struct scsi_target *starget,
Kurt Garloff4186ab12006-04-03 15:16:48 +0200996 int bflags, int scsi_level, int rescan)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997{
998 unsigned int sparse_lun, lun, max_dev_lun;
999 struct Scsi_Host *shost = dev_to_shost(starget->dev.parent);
1000
1001 SCSI_LOG_SCAN_BUS(3, printk(KERN_INFO "scsi scan: Sequential scan of"
1002 "%s\n", starget->dev.bus_id));
1003
1004 max_dev_lun = min(max_scsi_luns, shost->max_lun);
1005 /*
1006 * If this device is known to support sparse multiple units,
1007 * override the other settings, and scan all of them. Normally,
1008 * SCSI-3 devices should be scanned via the REPORT LUNS.
1009 */
1010 if (bflags & BLIST_SPARSELUN) {
1011 max_dev_lun = shost->max_lun;
1012 sparse_lun = 1;
1013 } else
1014 sparse_lun = 0;
1015
1016 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 * If less than SCSI_1_CSS, and no special lun scaning, stop
1018 * scanning; this matches 2.4 behaviour, but could just be a bug
1019 * (to continue scanning a SCSI_1_CSS device).
1020 *
1021 * This test is broken. We might not have any device on lun0 for
1022 * a sparselun device, and if that's the case then how would we
1023 * know the real scsi_level, eh? It might make sense to just not
1024 * scan any SCSI_1 device for non-0 luns, but that check would best
1025 * go into scsi_alloc_sdev() and just have it return null when asked
1026 * to alloc an sdev for lun > 0 on an already found SCSI_1 device.
1027 *
1028 if ((sdevscan->scsi_level < SCSI_1_CCS) &&
1029 ((bflags & (BLIST_FORCELUN | BLIST_SPARSELUN | BLIST_MAX5LUN))
1030 == 0))
1031 return;
1032 */
1033 /*
1034 * If this device is known to support multiple units, override
1035 * the other settings, and scan all of them.
1036 */
1037 if (bflags & BLIST_FORCELUN)
1038 max_dev_lun = shost->max_lun;
1039 /*
1040 * REGAL CDC-4X: avoid hang after LUN 4
1041 */
1042 if (bflags & BLIST_MAX5LUN)
1043 max_dev_lun = min(5U, max_dev_lun);
1044 /*
1045 * Do not scan SCSI-2 or lower device past LUN 7, unless
1046 * BLIST_LARGELUN.
1047 */
1048 if (scsi_level < SCSI_3 && !(bflags & BLIST_LARGELUN))
1049 max_dev_lun = min(8U, max_dev_lun);
1050
1051 /*
1052 * We have already scanned LUN 0, so start at LUN 1. Keep scanning
1053 * until we reach the max, or no LUN is found and we are not
1054 * sparse_lun.
1055 */
1056 for (lun = 1; lun < max_dev_lun; ++lun)
1057 if ((scsi_probe_and_add_lun(starget, lun, NULL, NULL, rescan,
1058 NULL) != SCSI_SCAN_LUN_PRESENT) &&
1059 !sparse_lun)
1060 return;
1061}
1062
1063/**
1064 * scsilun_to_int: convert a scsi_lun to an int
1065 * @scsilun: struct scsi_lun to be converted.
1066 *
1067 * Description:
1068 * Convert @scsilun from a struct scsi_lun to a four byte host byte-ordered
1069 * integer, and return the result. The caller must check for
1070 * truncation before using this function.
1071 *
1072 * Notes:
1073 * The struct scsi_lun is assumed to be four levels, with each level
1074 * effectively containing a SCSI byte-ordered (big endian) short; the
1075 * addressing bits of each level are ignored (the highest two bits).
1076 * For a description of the LUN format, post SCSI-3 see the SCSI
1077 * Architecture Model, for SCSI-3 see the SCSI Controller Commands.
1078 *
1079 * Given a struct scsi_lun of: 0a 04 0b 03 00 00 00 00, this function returns
1080 * the integer: 0x0b030a04
1081 **/
1082static int scsilun_to_int(struct scsi_lun *scsilun)
1083{
1084 int i;
1085 unsigned int lun;
1086
1087 lun = 0;
1088 for (i = 0; i < sizeof(lun); i += 2)
1089 lun = lun | (((scsilun->scsi_lun[i] << 8) |
1090 scsilun->scsi_lun[i + 1]) << (i * 8));
1091 return lun;
1092}
1093
1094/**
James.Smart@Emulex.Com2f4701d2005-07-13 22:05:03 -04001095 * int_to_scsilun: reverts an int into a scsi_lun
1096 * @int: integer to be reverted
1097 * @scsilun: struct scsi_lun to be set.
1098 *
1099 * Description:
1100 * Reverts the functionality of the scsilun_to_int, which packed
1101 * an 8-byte lun value into an int. This routine unpacks the int
1102 * back into the lun value.
1103 * Note: the scsilun_to_int() routine does not truly handle all
1104 * 8bytes of the lun value. This functions restores only as much
1105 * as was set by the routine.
1106 *
1107 * Notes:
1108 * Given an integer : 0x0b030a04, this function returns a
1109 * scsi_lun of : struct scsi_lun of: 0a 04 0b 03 00 00 00 00
1110 *
1111 **/
1112void int_to_scsilun(unsigned int lun, struct scsi_lun *scsilun)
1113{
1114 int i;
1115
1116 memset(scsilun->scsi_lun, 0, sizeof(scsilun->scsi_lun));
1117
1118 for (i = 0; i < sizeof(lun); i += 2) {
1119 scsilun->scsi_lun[i] = (lun >> 8) & 0xFF;
1120 scsilun->scsi_lun[i+1] = lun & 0xFF;
1121 lun = lun >> 16;
1122 }
1123}
1124EXPORT_SYMBOL(int_to_scsilun);
1125
1126/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127 * scsi_report_lun_scan - Scan using SCSI REPORT LUN results
Christoph Hellwigf64a1812005-10-31 18:32:08 +01001128 * @sdevscan: scan the host, channel, and id of this scsi_device
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 *
1130 * Description:
1131 * If @sdevscan is for a SCSI-3 or up device, send a REPORT LUN
1132 * command, and scan the resulting list of LUNs by calling
1133 * scsi_probe_and_add_lun.
1134 *
1135 * Modifies sdevscan->lun.
1136 *
1137 * Return:
1138 * 0: scan completed (or no memory, so further scanning is futile)
1139 * 1: no report lun scan, or not configured
1140 **/
James Bottomley6f3a2022005-09-22 20:33:28 -05001141static int scsi_report_lun_scan(struct scsi_target *starget, int bflags,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 int rescan)
1143{
1144 char devname[64];
1145 unsigned char scsi_cmd[MAX_COMMAND_SIZE];
1146 unsigned int length;
1147 unsigned int lun;
1148 unsigned int num_luns;
1149 unsigned int retries;
James Bottomley39216032005-06-15 18:48:29 -05001150 int result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 struct scsi_lun *lunp, *lun_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 u8 *data;
1153 struct scsi_sense_hdr sshdr;
James Bottomley6f3a2022005-09-22 20:33:28 -05001154 struct scsi_device *sdev;
1155 struct Scsi_Host *shost = dev_to_shost(&starget->dev);
Alan Stern2ef89192005-11-08 15:51:55 -05001156 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157
1158 /*
1159 * Only support SCSI-3 and up devices if BLIST_NOREPORTLUN is not set.
1160 * Also allow SCSI-2 if BLIST_REPORTLUN2 is set and host adapter does
1161 * support more than 8 LUNs.
1162 */
James Bottomley4d7db042006-03-31 20:07:45 -06001163 if (bflags & BLIST_NOREPORTLUN)
1164 return 1;
1165 if (starget->scsi_level < SCSI_2 &&
1166 starget->scsi_level != SCSI_UNKNOWN)
1167 return 1;
1168 if (starget->scsi_level < SCSI_3 &&
1169 (!(bflags & BLIST_REPORTLUN2) || shost->max_lun <= 8))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 return 1;
1171 if (bflags & BLIST_NOLUN)
1172 return 0;
1173
James Bottomley6f3a2022005-09-22 20:33:28 -05001174 if (!(sdev = scsi_device_lookup_by_target(starget, 0))) {
1175 sdev = scsi_alloc_sdev(starget, 0, NULL);
1176 if (!sdev)
1177 return 0;
1178 if (scsi_device_get(sdev))
1179 return 0;
1180 }
1181
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 sprintf(devname, "host %d channel %d id %d",
James Bottomley6f3a2022005-09-22 20:33:28 -05001183 shost->host_no, sdev->channel, sdev->id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184
1185 /*
1186 * Allocate enough to hold the header (the same size as one scsi_lun)
1187 * plus the max number of luns we are requesting.
1188 *
1189 * Reallocating and trying again (with the exact amount we need)
1190 * would be nice, but then we need to somehow limit the size
1191 * allocated based on the available memory and the limits of
1192 * kmalloc - we don't want a kmalloc() failure of a huge value to
1193 * prevent us from finding any LUNs on this target.
1194 */
1195 length = (max_scsi_report_luns + 1) * sizeof(struct scsi_lun);
1196 lun_data = kmalloc(length, GFP_ATOMIC |
1197 (sdev->host->unchecked_isa_dma ? __GFP_DMA : 0));
James Bottomley6f3a2022005-09-22 20:33:28 -05001198 if (!lun_data) {
1199 printk(ALLOC_FAILURE_MSG, __FUNCTION__);
James Bottomley39216032005-06-15 18:48:29 -05001200 goto out;
James Bottomley6f3a2022005-09-22 20:33:28 -05001201 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202
1203 scsi_cmd[0] = REPORT_LUNS;
1204
1205 /*
1206 * bytes 1 - 5: reserved, set to zero.
1207 */
1208 memset(&scsi_cmd[1], 0, 5);
1209
1210 /*
1211 * bytes 6 - 9: length of the command.
1212 */
1213 scsi_cmd[6] = (unsigned char) (length >> 24) & 0xff;
1214 scsi_cmd[7] = (unsigned char) (length >> 16) & 0xff;
1215 scsi_cmd[8] = (unsigned char) (length >> 8) & 0xff;
1216 scsi_cmd[9] = (unsigned char) length & 0xff;
1217
1218 scsi_cmd[10] = 0; /* reserved */
1219 scsi_cmd[11] = 0; /* control */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220
1221 /*
1222 * We can get a UNIT ATTENTION, for example a power on/reset, so
1223 * retry a few times (like sd.c does for TEST UNIT READY).
1224 * Experience shows some combinations of adapter/devices get at
1225 * least two power on/resets.
1226 *
1227 * Illegal requests (for devices that do not support REPORT LUNS)
1228 * should come through as a check condition, and will not generate
1229 * a retry.
1230 */
1231 for (retries = 0; retries < 3; retries++) {
1232 SCSI_LOG_SCAN_BUS(3, printk (KERN_INFO "scsi scan: Sending"
1233 " REPORT LUNS to %s (try %d)\n", devname,
1234 retries));
James Bottomley39216032005-06-15 18:48:29 -05001235
James Bottomley39216032005-06-15 18:48:29 -05001236 result = scsi_execute_req(sdev, scsi_cmd, DMA_FROM_DEVICE,
James Bottomleyea73a9f2005-08-28 11:33:52 -05001237 lun_data, length, &sshdr,
James Bottomley39216032005-06-15 18:48:29 -05001238 SCSI_TIMEOUT + 4 * HZ, 3);
1239
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240 SCSI_LOG_SCAN_BUS(3, printk (KERN_INFO "scsi scan: REPORT LUNS"
James Bottomley39216032005-06-15 18:48:29 -05001241 " %s (try %d) result 0x%x\n", result
1242 ? "failed" : "successful", retries, result));
1243 if (result == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244 break;
James Bottomleyea73a9f2005-08-28 11:33:52 -05001245 else if (scsi_sense_valid(&sshdr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246 if (sshdr.sense_key != UNIT_ATTENTION)
1247 break;
1248 }
1249 }
1250
James Bottomley39216032005-06-15 18:48:29 -05001251 if (result) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252 /*
1253 * The device probably does not support a REPORT LUN command
1254 */
Alan Stern2ef89192005-11-08 15:51:55 -05001255 ret = 1;
1256 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258
1259 /*
1260 * Get the length from the first four bytes of lun_data.
1261 */
1262 data = (u8 *) lun_data->scsi_lun;
1263 length = ((data[0] << 24) | (data[1] << 16) |
1264 (data[2] << 8) | (data[3] << 0));
1265
1266 num_luns = (length / sizeof(struct scsi_lun));
1267 if (num_luns > max_scsi_report_luns) {
1268 printk(KERN_WARNING "scsi: On %s only %d (max_scsi_report_luns)"
1269 " of %d luns reported, try increasing"
1270 " max_scsi_report_luns.\n", devname,
1271 max_scsi_report_luns, num_luns);
1272 num_luns = max_scsi_report_luns;
1273 }
1274
Jeff Garzik3bf743e2005-10-24 18:04:06 -04001275 SCSI_LOG_SCAN_BUS(3, sdev_printk (KERN_INFO, sdev,
1276 "scsi scan: REPORT LUN scan\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277
1278 /*
1279 * Scan the luns in lun_data. The entry at offset 0 is really
1280 * the header, so start at 1 and go up to and including num_luns.
1281 */
1282 for (lunp = &lun_data[1]; lunp <= &lun_data[num_luns]; lunp++) {
1283 lun = scsilun_to_int(lunp);
1284
1285 /*
1286 * Check if the unused part of lunp is non-zero, and so
1287 * does not fit in lun.
1288 */
1289 if (memcmp(&lunp->scsi_lun[sizeof(lun)], "\0\0\0\0", 4)) {
1290 int i;
1291
1292 /*
1293 * Output an error displaying the LUN in byte order,
1294 * this differs from what linux would print for the
1295 * integer LUN value.
1296 */
1297 printk(KERN_WARNING "scsi: %s lun 0x", devname);
1298 data = (char *)lunp->scsi_lun;
1299 for (i = 0; i < sizeof(struct scsi_lun); i++)
1300 printk("%02x", data[i]);
1301 printk(" has a LUN larger than currently supported.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302 } else if (lun > sdev->host->max_lun) {
1303 printk(KERN_WARNING "scsi: %s lun%d has a LUN larger"
1304 " than allowed by the host adapter\n",
1305 devname, lun);
1306 } else {
1307 int res;
1308
1309 res = scsi_probe_and_add_lun(starget,
1310 lun, NULL, NULL, rescan, NULL);
1311 if (res == SCSI_SCAN_NO_RESPONSE) {
1312 /*
1313 * Got some results, but now none, abort.
1314 */
Jeff Garzik3bf743e2005-10-24 18:04:06 -04001315 sdev_printk(KERN_ERR, sdev,
1316 "Unexpected response"
1317 " from lun %d while scanning, scan"
1318 " aborted\n", lun);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319 break;
1320 }
1321 }
1322 }
1323
Alan Stern2ef89192005-11-08 15:51:55 -05001324 out_err:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325 kfree(lun_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 out:
James Bottomley6f3a2022005-09-22 20:33:28 -05001327 scsi_device_put(sdev);
1328 if (sdev->sdev_state == SDEV_CREATED)
1329 /*
1330 * the sdev we used didn't appear in the report luns scan
1331 */
1332 scsi_destroy_sdev(sdev);
Alan Stern2ef89192005-11-08 15:51:55 -05001333 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334}
1335
1336struct scsi_device *__scsi_add_device(struct Scsi_Host *shost, uint channel,
1337 uint id, uint lun, void *hostdata)
1338{
Matthew Wilcoxa97a83a2006-02-05 08:01:33 -07001339 struct scsi_device *sdev = ERR_PTR(-ENODEV);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340 struct device *parent = &shost->shost_gendev;
Christoph Hellwige02f3f52006-01-13 19:04:00 +01001341 struct scsi_target *starget;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342
Christoph Hellwige02f3f52006-01-13 19:04:00 +01001343 starget = scsi_alloc_target(parent, channel, id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344 if (!starget)
1345 return ERR_PTR(-ENOMEM);
1346
Nathan Lynchc92715b2005-06-02 17:15:09 -05001347 get_device(&starget->dev);
Arjan van de Ven0b950672006-01-11 13:16:10 +01001348 mutex_lock(&shost->scan_mutex);
Matthew Wilcoxa97a83a2006-02-05 08:01:33 -07001349 if (scsi_host_scan_allowed(shost))
1350 scsi_probe_and_add_lun(starget, lun, NULL, &sdev, 1, hostdata);
Arjan van de Ven0b950672006-01-11 13:16:10 +01001351 mutex_unlock(&shost->scan_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352 scsi_target_reap(starget);
1353 put_device(&starget->dev);
1354
1355 return sdev;
1356}
1357EXPORT_SYMBOL(__scsi_add_device);
1358
James Bottomley146f7262005-09-10 12:44:09 -05001359int scsi_add_device(struct Scsi_Host *host, uint channel,
1360 uint target, uint lun)
1361{
1362 struct scsi_device *sdev =
1363 __scsi_add_device(host, channel, target, lun, NULL);
1364 if (IS_ERR(sdev))
1365 return PTR_ERR(sdev);
1366
1367 scsi_device_put(sdev);
1368 return 0;
1369}
1370EXPORT_SYMBOL(scsi_add_device);
1371
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372void scsi_rescan_device(struct device *dev)
1373{
1374 struct scsi_driver *drv;
1375
1376 if (!dev->driver)
1377 return;
1378
1379 drv = to_scsi_driver(dev->driver);
1380 if (try_module_get(drv->owner)) {
1381 if (drv->rescan)
1382 drv->rescan(dev);
1383 module_put(drv->owner);
1384 }
1385}
1386EXPORT_SYMBOL(scsi_rescan_device);
1387
Alan Sterne517d312005-07-26 10:18:45 -04001388static void __scsi_scan_target(struct device *parent, unsigned int channel,
1389 unsigned int id, unsigned int lun, int rescan)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390{
1391 struct Scsi_Host *shost = dev_to_shost(parent);
1392 int bflags = 0;
1393 int res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394 struct scsi_target *starget;
1395
1396 if (shost->this_id == id)
1397 /*
1398 * Don't scan the host adapter
1399 */
1400 return;
1401
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402 starget = scsi_alloc_target(parent, channel, id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403 if (!starget)
1404 return;
1405
1406 get_device(&starget->dev);
1407 if (lun != SCAN_WILD_CARD) {
1408 /*
1409 * Scan for a specific host/chan/id/lun.
1410 */
1411 scsi_probe_and_add_lun(starget, lun, NULL, NULL, rescan, NULL);
1412 goto out_reap;
1413 }
1414
1415 /*
1416 * Scan LUN 0, if there is some response, scan further. Ideally, we
1417 * would not configure LUN 0 until all LUNs are scanned.
1418 */
James Bottomley6f3a2022005-09-22 20:33:28 -05001419 res = scsi_probe_and_add_lun(starget, 0, &bflags, NULL, rescan, NULL);
1420 if (res == SCSI_SCAN_LUN_PRESENT || res == SCSI_SCAN_TARGET_PRESENT) {
1421 if (scsi_report_lun_scan(starget, bflags, rescan) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422 /*
1423 * The REPORT LUN did not scan the target,
1424 * do a sequential scan.
1425 */
1426 scsi_sequential_lun_scan(starget, bflags,
Kurt Garloff4186ab12006-04-03 15:16:48 +02001427 starget->scsi_level, rescan);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429
1430 out_reap:
1431 /* now determine if the target has any children at all
1432 * and if not, nuke it */
1433 scsi_target_reap(starget);
1434
1435 put_device(&starget->dev);
1436}
Alan Sterne517d312005-07-26 10:18:45 -04001437
1438/**
1439 * scsi_scan_target - scan a target id, possibly including all LUNs on the
1440 * target.
1441 * @parent: host to scan
1442 * @channel: channel to scan
1443 * @id: target id to scan
1444 * @lun: Specific LUN to scan or SCAN_WILD_CARD
1445 * @rescan: passed to LUN scanning routines
1446 *
1447 * Description:
1448 * Scan the target id on @parent, @channel, and @id. Scan at least LUN 0,
1449 * and possibly all LUNs on the target id.
1450 *
1451 * First try a REPORT LUN scan, if that does not scan the target, do a
1452 * sequential scan of LUNs on the target id.
1453 **/
1454void scsi_scan_target(struct device *parent, unsigned int channel,
1455 unsigned int id, unsigned int lun, int rescan)
1456{
1457 struct Scsi_Host *shost = dev_to_shost(parent);
1458
Arjan van de Ven0b950672006-01-11 13:16:10 +01001459 mutex_lock(&shost->scan_mutex);
Alan Sterne517d312005-07-26 10:18:45 -04001460 if (scsi_host_scan_allowed(shost))
1461 __scsi_scan_target(parent, channel, id, lun, rescan);
Arjan van de Ven0b950672006-01-11 13:16:10 +01001462 mutex_unlock(&shost->scan_mutex);
Alan Sterne517d312005-07-26 10:18:45 -04001463}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464EXPORT_SYMBOL(scsi_scan_target);
1465
1466static void scsi_scan_channel(struct Scsi_Host *shost, unsigned int channel,
1467 unsigned int id, unsigned int lun, int rescan)
1468{
1469 uint order_id;
1470
1471 if (id == SCAN_WILD_CARD)
1472 for (id = 0; id < shost->max_id; ++id) {
1473 /*
1474 * XXX adapter drivers when possible (FCP, iSCSI)
1475 * could modify max_id to match the current max,
1476 * not the absolute max.
1477 *
1478 * XXX add a shost id iterator, so for example,
1479 * the FC ID can be the same as a target id
1480 * without a huge overhead of sparse id's.
1481 */
1482 if (shost->reverse_ordering)
1483 /*
1484 * Scan from high to low id.
1485 */
1486 order_id = shost->max_id - id - 1;
1487 else
1488 order_id = id;
Alan Sterne517d312005-07-26 10:18:45 -04001489 __scsi_scan_target(&shost->shost_gendev, channel,
1490 order_id, lun, rescan);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491 }
1492 else
Alan Sterne517d312005-07-26 10:18:45 -04001493 __scsi_scan_target(&shost->shost_gendev, channel,
1494 id, lun, rescan);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495}
1496
1497int scsi_scan_host_selected(struct Scsi_Host *shost, unsigned int channel,
1498 unsigned int id, unsigned int lun, int rescan)
1499{
Jeff Garzik3bf743e2005-10-24 18:04:06 -04001500 SCSI_LOG_SCAN_BUS(3, shost_printk (KERN_INFO, shost,
1501 "%s: <%u:%u:%u>\n",
1502 __FUNCTION__, channel, id, lun));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503
1504 if (((channel != SCAN_WILD_CARD) && (channel > shost->max_channel)) ||
Amit Arora091686d2006-05-19 16:14:50 -07001505 ((id != SCAN_WILD_CARD) && (id >= shost->max_id)) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506 ((lun != SCAN_WILD_CARD) && (lun > shost->max_lun)))
1507 return -EINVAL;
1508
Arjan van de Ven0b950672006-01-11 13:16:10 +01001509 mutex_lock(&shost->scan_mutex);
Mike Anderson82f29462005-06-16 11:14:33 -07001510 if (scsi_host_scan_allowed(shost)) {
1511 if (channel == SCAN_WILD_CARD)
1512 for (channel = 0; channel <= shost->max_channel;
1513 channel++)
1514 scsi_scan_channel(shost, channel, id, lun,
1515 rescan);
1516 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517 scsi_scan_channel(shost, channel, id, lun, rescan);
Mike Anderson82f29462005-06-16 11:14:33 -07001518 }
Arjan van de Ven0b950672006-01-11 13:16:10 +01001519 mutex_unlock(&shost->scan_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520
1521 return 0;
1522}
1523
1524/**
1525 * scsi_scan_host - scan the given adapter
1526 * @shost: adapter to scan
1527 **/
1528void scsi_scan_host(struct Scsi_Host *shost)
1529{
1530 scsi_scan_host_selected(shost, SCAN_WILD_CARD, SCAN_WILD_CARD,
1531 SCAN_WILD_CARD, 0);
1532}
1533EXPORT_SYMBOL(scsi_scan_host);
1534
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535void scsi_forget_host(struct Scsi_Host *shost)
1536{
Alan Sterna64358d2005-07-26 10:27:10 -04001537 struct scsi_device *sdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538 unsigned long flags;
1539
Alan Sterna64358d2005-07-26 10:27:10 -04001540 restart:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541 spin_lock_irqsave(shost->host_lock, flags);
Alan Sterna64358d2005-07-26 10:27:10 -04001542 list_for_each_entry(sdev, &shost->__devices, siblings) {
1543 if (sdev->sdev_state == SDEV_DEL)
1544 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545 spin_unlock_irqrestore(shost->host_lock, flags);
Alan Sterna64358d2005-07-26 10:27:10 -04001546 __scsi_remove_device(sdev);
1547 goto restart;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548 }
1549 spin_unlock_irqrestore(shost->host_lock, flags);
1550}
1551
1552/*
1553 * Function: scsi_get_host_dev()
1554 *
Christoph Hellwigf64a1812005-10-31 18:32:08 +01001555 * Purpose: Create a scsi_device that points to the host adapter itself.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556 *
Christoph Hellwigf64a1812005-10-31 18:32:08 +01001557 * Arguments: SHpnt - Host that needs a scsi_device
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558 *
1559 * Lock status: None assumed.
1560 *
Christoph Hellwigf64a1812005-10-31 18:32:08 +01001561 * Returns: The scsi_device or NULL
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562 *
1563 * Notes:
Christoph Hellwigf64a1812005-10-31 18:32:08 +01001564 * Attach a single scsi_device to the Scsi_Host - this should
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565 * be made to look like a "pseudo-device" that points to the
1566 * HA itself.
1567 *
1568 * Note - this device is not accessible from any high-level
1569 * drivers (including generics), which is probably not
1570 * optimal. We can add hooks later to attach
1571 */
1572struct scsi_device *scsi_get_host_dev(struct Scsi_Host *shost)
1573{
Alan Sterne517d312005-07-26 10:18:45 -04001574 struct scsi_device *sdev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575 struct scsi_target *starget;
1576
Arjan van de Ven0b950672006-01-11 13:16:10 +01001577 mutex_lock(&shost->scan_mutex);
Alan Sterne517d312005-07-26 10:18:45 -04001578 if (!scsi_host_scan_allowed(shost))
1579 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580 starget = scsi_alloc_target(&shost->shost_gendev, 0, shost->this_id);
1581 if (!starget)
Alan Sterne517d312005-07-26 10:18:45 -04001582 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583
1584 sdev = scsi_alloc_sdev(starget, 0, NULL);
1585 if (sdev) {
1586 sdev->sdev_gendev.parent = get_device(&starget->dev);
1587 sdev->borken = 0;
1588 }
1589 put_device(&starget->dev);
Alan Sterne517d312005-07-26 10:18:45 -04001590 out:
Arjan van de Ven0b950672006-01-11 13:16:10 +01001591 mutex_unlock(&shost->scan_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592 return sdev;
1593}
1594EXPORT_SYMBOL(scsi_get_host_dev);
1595
1596/*
1597 * Function: scsi_free_host_dev()
1598 *
1599 * Purpose: Free a scsi_device that points to the host adapter itself.
1600 *
Christoph Hellwigf64a1812005-10-31 18:32:08 +01001601 * Arguments: SHpnt - Host that needs a scsi_device
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602 *
1603 * Lock status: None assumed.
1604 *
1605 * Returns: Nothing
1606 *
1607 * Notes:
1608 */
1609void scsi_free_host_dev(struct scsi_device *sdev)
1610{
1611 BUG_ON(sdev->id != sdev->host->this_id);
1612
James Bottomley6f3a2022005-09-22 20:33:28 -05001613 scsi_destroy_sdev(sdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614}
1615EXPORT_SYMBOL(scsi_free_host_dev);
1616