blob: 820c4ad7b5817e24550d50dd35ca740cd86de4fe [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * scsi_scan.c
3 *
4 * Copyright (C) 2000 Eric Youngdale,
5 * Copyright (C) 2002 Patrick Mansfield
6 *
7 * The general scanning/probing algorithm is as follows, exceptions are
8 * made to it depending on device specific flags, compilation options, and
9 * global variable (boot or module load time) settings.
10 *
11 * A specific LUN is scanned via an INQUIRY command; if the LUN has a
Christoph Hellwigf64a1812005-10-31 18:32:08 +010012 * device attached, a scsi_device is allocated and setup for it.
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 *
14 * For every id of every channel on the given host:
15 *
16 * Scan LUN 0; if the target responds to LUN 0 (even if there is no
17 * device or storage attached to LUN 0):
18 *
19 * If LUN 0 has a device attached, allocate and setup a
Christoph Hellwigf64a1812005-10-31 18:32:08 +010020 * scsi_device for it.
Linus Torvalds1da177e2005-04-16 15:20:36 -070021 *
22 * If target is SCSI-3 or up, issue a REPORT LUN, and scan
23 * all of the LUNs returned by the REPORT LUN; else,
24 * sequentially scan LUNs up until some maximum is reached,
25 * or a LUN is seen that cannot have a device attached to it.
26 */
27
28#include <linux/config.h>
29#include <linux/module.h>
30#include <linux/moduleparam.h>
31#include <linux/init.h>
32#include <linux/blkdev.h>
33#include <asm/semaphore.h>
34
35#include <scsi/scsi.h>
36#include <scsi/scsi_device.h>
37#include <scsi/scsi_driver.h>
38#include <scsi/scsi_devinfo.h>
39#include <scsi/scsi_host.h>
40#include <scsi/scsi_request.h>
41#include <scsi/scsi_transport.h>
42#include <scsi/scsi_eh.h>
43
44#include "scsi_priv.h"
45#include "scsi_logging.h"
46
47#define ALLOC_FAILURE_MSG KERN_ERR "%s: Allocation failure during" \
48 " SCSI scanning, some SCSI devices might not be configured\n"
49
50/*
51 * Default timeout
52 */
53#define SCSI_TIMEOUT (2*HZ)
54
55/*
56 * Prefix values for the SCSI id's (stored in driverfs name field)
57 */
58#define SCSI_UID_SER_NUM 'S'
59#define SCSI_UID_UNKNOWN 'Z'
60
61/*
62 * Return values of some of the scanning functions.
63 *
64 * SCSI_SCAN_NO_RESPONSE: no valid response received from the target, this
65 * includes allocation or general failures preventing IO from being sent.
66 *
67 * SCSI_SCAN_TARGET_PRESENT: target responded, but no device is available
68 * on the given LUN.
69 *
70 * SCSI_SCAN_LUN_PRESENT: target responded, and a device is available on a
71 * given LUN.
72 */
73#define SCSI_SCAN_NO_RESPONSE 0
74#define SCSI_SCAN_TARGET_PRESENT 1
75#define SCSI_SCAN_LUN_PRESENT 2
76
Arjan van de Ven0ad78202005-11-28 16:22:25 +010077static const char *scsi_null_device_strs = "nullnullnullnull";
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
79#define MAX_SCSI_LUNS 512
80
81#ifdef CONFIG_SCSI_MULTI_LUN
82static unsigned int max_scsi_luns = MAX_SCSI_LUNS;
83#else
84static unsigned int max_scsi_luns = 1;
85#endif
86
87module_param_named(max_luns, max_scsi_luns, int, S_IRUGO|S_IWUSR);
88MODULE_PARM_DESC(max_luns,
89 "last scsi LUN (should be between 1 and 2^32-1)");
90
91/*
92 * max_scsi_report_luns: the maximum number of LUNS that will be
93 * returned from the REPORT LUNS command. 8 times this value must
94 * be allocated. In theory this could be up to an 8 byte value, but
95 * in practice, the maximum number of LUNs suppored by any device
96 * is about 16k.
97 */
98static unsigned int max_scsi_report_luns = 511;
99
100module_param_named(max_report_luns, max_scsi_report_luns, int, S_IRUGO|S_IWUSR);
101MODULE_PARM_DESC(max_report_luns,
102 "REPORT LUNS maximum number of LUNS received (should be"
103 " between 1 and 16384)");
104
105static unsigned int scsi_inq_timeout = SCSI_TIMEOUT/HZ+3;
106
107module_param_named(inq_timeout, scsi_inq_timeout, int, S_IRUGO|S_IWUSR);
108MODULE_PARM_DESC(inq_timeout,
109 "Timeout (in seconds) waiting for devices to answer INQUIRY."
110 " Default is 5. Some non-compliant devices need more.");
111
112/**
113 * scsi_unlock_floptical - unlock device via a special MODE SENSE command
James Bottomley39216032005-06-15 18:48:29 -0500114 * @sdev: scsi device to send command to
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 * @result: area to store the result of the MODE SENSE
116 *
117 * Description:
James Bottomley39216032005-06-15 18:48:29 -0500118 * Send a vendor specific MODE SENSE (not a MODE SELECT) command.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 * Called for BLIST_KEY devices.
120 **/
James Bottomley39216032005-06-15 18:48:29 -0500121static void scsi_unlock_floptical(struct scsi_device *sdev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 unsigned char *result)
123{
124 unsigned char scsi_cmd[MAX_COMMAND_SIZE];
125
126 printk(KERN_NOTICE "scsi: unlocking floptical drive\n");
127 scsi_cmd[0] = MODE_SENSE;
128 scsi_cmd[1] = 0;
129 scsi_cmd[2] = 0x2e;
130 scsi_cmd[3] = 0;
James Bottomley39216032005-06-15 18:48:29 -0500131 scsi_cmd[4] = 0x2a; /* size */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 scsi_cmd[5] = 0;
James Bottomley39216032005-06-15 18:48:29 -0500133 scsi_execute_req(sdev, scsi_cmd, DMA_FROM_DEVICE, result, 0x2a, NULL,
134 SCSI_TIMEOUT, 3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135}
136
137/**
138 * print_inquiry - printk the inquiry information
139 * @inq_result: printk this SCSI INQUIRY
140 *
141 * Description:
142 * printk the vendor, model, and other information found in the
143 * INQUIRY data in @inq_result.
144 *
145 * Notes:
146 * Remove this, and replace with a hotplug event that logs any
147 * relevant information.
148 **/
149static void print_inquiry(unsigned char *inq_result)
150{
151 int i;
152
153 printk(KERN_NOTICE " Vendor: ");
154 for (i = 8; i < 16; i++)
155 if (inq_result[i] >= 0x20 && i < inq_result[4] + 5)
156 printk("%c", inq_result[i]);
157 else
158 printk(" ");
159
160 printk(" Model: ");
161 for (i = 16; i < 32; i++)
162 if (inq_result[i] >= 0x20 && i < inq_result[4] + 5)
163 printk("%c", inq_result[i]);
164 else
165 printk(" ");
166
167 printk(" Rev: ");
168 for (i = 32; i < 36; i++)
169 if (inq_result[i] >= 0x20 && i < inq_result[4] + 5)
170 printk("%c", inq_result[i]);
171 else
172 printk(" ");
173
174 printk("\n");
175
176 i = inq_result[0] & 0x1f;
177
178 printk(KERN_NOTICE " Type: %s ",
179 i <
180 MAX_SCSI_DEVICE_CODE ? scsi_device_types[i] :
181 "Unknown ");
182 printk(" ANSI SCSI revision: %02x",
183 inq_result[2] & 0x07);
184 if ((inq_result[2] & 0x07) == 1 && (inq_result[3] & 0x0f) == 1)
185 printk(" CCS\n");
186 else
187 printk("\n");
188}
189
190/**
191 * scsi_alloc_sdev - allocate and setup a scsi_Device
192 *
193 * Description:
194 * Allocate, initialize for io, and return a pointer to a scsi_Device.
195 * Stores the @shost, @channel, @id, and @lun in the scsi_Device, and
196 * adds scsi_Device to the appropriate list.
197 *
198 * Return value:
199 * scsi_Device pointer, or NULL on failure.
200 **/
201static struct scsi_device *scsi_alloc_sdev(struct scsi_target *starget,
202 unsigned int lun, void *hostdata)
203{
204 struct scsi_device *sdev;
205 int display_failure_msg = 1, ret;
206 struct Scsi_Host *shost = dev_to_shost(starget->dev.parent);
207
Jes Sorensen24669f752006-01-16 10:31:18 -0500208 sdev = kzalloc(sizeof(*sdev) + shost->transportt->device_size,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 GFP_ATOMIC);
210 if (!sdev)
211 goto out;
212
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 sdev->vendor = scsi_null_device_strs;
214 sdev->model = scsi_null_device_strs;
215 sdev->rev = scsi_null_device_strs;
216 sdev->host = shost;
217 sdev->id = starget->id;
218 sdev->lun = lun;
219 sdev->channel = starget->channel;
220 sdev->sdev_state = SDEV_CREATED;
221 INIT_LIST_HEAD(&sdev->siblings);
222 INIT_LIST_HEAD(&sdev->same_target_siblings);
223 INIT_LIST_HEAD(&sdev->cmd_list);
224 INIT_LIST_HEAD(&sdev->starved_entry);
225 spin_lock_init(&sdev->list_lock);
226
227 sdev->sdev_gendev.parent = get_device(&starget->dev);
228 sdev->sdev_target = starget;
229
230 /* usually NULL and set by ->slave_alloc instead */
231 sdev->hostdata = hostdata;
232
233 /* if the device needs this changing, it may do so in the
234 * slave_configure function */
235 sdev->max_device_blocked = SCSI_DEFAULT_DEVICE_BLOCKED;
236
237 /*
238 * Some low level driver could use device->type
239 */
240 sdev->type = -1;
241
242 /*
243 * Assume that the device will have handshaking problems,
244 * and then fix this field later if it turns out it
245 * doesn't
246 */
247 sdev->borken = 1;
248
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 sdev->request_queue = scsi_alloc_queue(sdev);
250 if (!sdev->request_queue) {
251 /* release fn is set up in scsi_sysfs_device_initialise, so
252 * have to free and put manually here */
253 put_device(&starget->dev);
Dave Jones93f560892006-03-09 10:21:27 -0500254 kfree(sdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 goto out;
256 }
257
258 sdev->request_queue->queuedata = sdev;
259 scsi_adjust_queue_depth(sdev, 0, sdev->host->cmd_per_lun);
260
261 scsi_sysfs_device_initialize(sdev);
262
263 if (shost->hostt->slave_alloc) {
264 ret = shost->hostt->slave_alloc(sdev);
265 if (ret) {
266 /*
267 * if LLDD reports slave not present, don't clutter
268 * console with alloc failure messages
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 */
270 if (ret == -ENXIO)
271 display_failure_msg = 0;
272 goto out_device_destroy;
273 }
274 }
275
276 return sdev;
277
278out_device_destroy:
279 transport_destroy_device(&sdev->sdev_gendev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 put_device(&sdev->sdev_gendev);
281out:
282 if (display_failure_msg)
283 printk(ALLOC_FAILURE_MSG, __FUNCTION__);
284 return NULL;
285}
286
287static void scsi_target_dev_release(struct device *dev)
288{
289 struct device *parent = dev->parent;
290 struct scsi_target *starget = to_scsi_target(dev);
James Bottomleya283bd32005-05-24 12:06:38 -0500291
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 kfree(starget);
293 put_device(parent);
294}
295
296int scsi_is_target_device(const struct device *dev)
297{
298 return dev->release == scsi_target_dev_release;
299}
300EXPORT_SYMBOL(scsi_is_target_device);
301
302static struct scsi_target *__scsi_find_target(struct device *parent,
303 int channel, uint id)
304{
305 struct scsi_target *starget, *found_starget = NULL;
306 struct Scsi_Host *shost = dev_to_shost(parent);
307 /*
308 * Search for an existing target for this sdev.
309 */
310 list_for_each_entry(starget, &shost->__targets, siblings) {
311 if (starget->id == id &&
312 starget->channel == channel) {
313 found_starget = starget;
314 break;
315 }
316 }
317 if (found_starget)
318 get_device(&found_starget->dev);
319
320 return found_starget;
321}
322
323static struct scsi_target *scsi_alloc_target(struct device *parent,
324 int channel, uint id)
325{
326 struct Scsi_Host *shost = dev_to_shost(parent);
327 struct device *dev = NULL;
328 unsigned long flags;
329 const int size = sizeof(struct scsi_target)
330 + shost->transportt->target_size;
James.Smart@Emulex.Com5c44cd22005-06-10 22:24:30 -0400331 struct scsi_target *starget;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 struct scsi_target *found_target;
Brian King32f95792006-02-22 14:28:24 -0600333 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334
Jes Sorensen24669f752006-01-16 10:31:18 -0500335 starget = kzalloc(size, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 if (!starget) {
337 printk(KERN_ERR "%s: allocation failure\n", __FUNCTION__);
338 return NULL;
339 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 dev = &starget->dev;
341 device_initialize(dev);
342 starget->reap_ref = 1;
343 dev->parent = get_device(parent);
344 dev->release = scsi_target_dev_release;
345 sprintf(dev->bus_id, "target%d:%d:%d",
346 shost->host_no, channel, id);
347 starget->id = id;
348 starget->channel = channel;
349 INIT_LIST_HEAD(&starget->siblings);
350 INIT_LIST_HEAD(&starget->devices);
James Bottomleyffedb452006-02-23 14:27:18 -0600351 starget->state = STARGET_RUNNING;
352 retry:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 spin_lock_irqsave(shost->host_lock, flags);
354
355 found_target = __scsi_find_target(parent, channel, id);
356 if (found_target)
357 goto found;
358
359 list_add_tail(&starget->siblings, &shost->__targets);
360 spin_unlock_irqrestore(shost->host_lock, flags);
361 /* allocate and add */
James Bottomleya283bd32005-05-24 12:06:38 -0500362 transport_setup_device(dev);
Brian King32f95792006-02-22 14:28:24 -0600363 error = device_add(dev);
364 if (error) {
365 dev_err(dev, "target device_add failed, error %d\n", error);
366 spin_lock_irqsave(shost->host_lock, flags);
367 list_del_init(&starget->siblings);
368 spin_unlock_irqrestore(shost->host_lock, flags);
369 transport_destroy_device(dev);
370 put_device(parent);
371 kfree(starget);
372 return NULL;
373 }
James Bottomleya283bd32005-05-24 12:06:38 -0500374 transport_add_device(dev);
375 if (shost->hostt->target_alloc) {
Brian King32f95792006-02-22 14:28:24 -0600376 error = shost->hostt->target_alloc(starget);
James Bottomleya283bd32005-05-24 12:06:38 -0500377
378 if(error) {
379 dev_printk(KERN_ERR, dev, "target allocation failed, error %d\n", error);
380 /* don't want scsi_target_reap to do the final
381 * put because it will be under the host lock */
382 get_device(dev);
383 scsi_target_reap(starget);
384 put_device(dev);
385 return NULL;
386 }
387 }
388
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 return starget;
390
391 found:
392 found_target->reap_ref++;
393 spin_unlock_irqrestore(shost->host_lock, flags);
394 put_device(parent);
James Bottomleyffedb452006-02-23 14:27:18 -0600395 if (found_target->state != STARGET_DEL) {
396 kfree(starget);
397 return found_target;
398 }
399 /* Unfortunately, we found a dying target; need to
400 * wait until it's dead before we can get a new one */
401 put_device(&found_target->dev);
402 flush_scheduled_work();
403 goto retry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404}
405
James Bottomley65110b22006-02-14 10:48:46 -0600406static void scsi_target_reap_usercontext(void *data)
407{
408 struct scsi_target *starget = data;
James Bottomley863a9302005-12-15 20:01:43 -0800409 struct Scsi_Host *shost = dev_to_shost(starget->dev.parent);
410 unsigned long flags;
411
James Bottomleyffedb452006-02-23 14:27:18 -0600412 transport_remove_device(&starget->dev);
413 device_del(&starget->dev);
414 transport_destroy_device(&starget->dev);
James Bottomley863a9302005-12-15 20:01:43 -0800415 spin_lock_irqsave(shost->host_lock, flags);
Mike Andersona50a5e32006-03-14 11:18:46 -0800416 if (shost->hostt->target_destroy)
417 shost->hostt->target_destroy(starget);
James Bottomleyffedb452006-02-23 14:27:18 -0600418 list_del_init(&starget->siblings);
James Bottomley863a9302005-12-15 20:01:43 -0800419 spin_unlock_irqrestore(shost->host_lock, flags);
James Bottomleyffedb452006-02-23 14:27:18 -0600420 put_device(&starget->dev);
James Bottomley863a9302005-12-15 20:01:43 -0800421}
422
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423/**
424 * scsi_target_reap - check to see if target is in use and destroy if not
425 *
426 * @starget: target to be checked
427 *
428 * This is used after removing a LUN or doing a last put of the target
429 * it checks atomically that nothing is using the target and removes
430 * it if so.
431 */
432void scsi_target_reap(struct scsi_target *starget)
433{
James Bottomleyffedb452006-02-23 14:27:18 -0600434 struct Scsi_Host *shost = dev_to_shost(starget->dev.parent);
435 unsigned long flags;
436
437 spin_lock_irqsave(shost->host_lock, flags);
438
439 if (--starget->reap_ref == 0 && list_empty(&starget->devices)) {
440 BUG_ON(starget->state == STARGET_DEL);
441 starget->state = STARGET_DEL;
442 spin_unlock_irqrestore(shost->host_lock, flags);
443 execute_in_process_context(scsi_target_reap_usercontext,
444 starget, &starget->ew);
445 return;
446
447 }
448 spin_unlock_irqrestore(shost->host_lock, flags);
449
450 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451}
452
453/**
454 * scsi_probe_lun - probe a single LUN using a SCSI INQUIRY
James Bottomley39216032005-06-15 18:48:29 -0500455 * @sdev: scsi_device to probe
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 * @inq_result: area to store the INQUIRY result
James Bottomley39216032005-06-15 18:48:29 -0500457 * @result_len: len of inq_result
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 * @bflags: store any bflags found here
459 *
460 * Description:
James Bottomley39216032005-06-15 18:48:29 -0500461 * Probe the lun associated with @req using a standard SCSI INQUIRY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 *
James Bottomley39216032005-06-15 18:48:29 -0500463 * If the INQUIRY is successful, zero is returned and the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 * INQUIRY data is in @inq_result; the scsi_level and INQUIRY length
Christoph Hellwigf64a1812005-10-31 18:32:08 +0100465 * are copied to the scsi_device any flags value is stored in *@bflags.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 **/
James Bottomley39216032005-06-15 18:48:29 -0500467static int scsi_probe_lun(struct scsi_device *sdev, char *inq_result,
468 int result_len, int *bflags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 unsigned char scsi_cmd[MAX_COMMAND_SIZE];
471 int first_inquiry_len, try_inquiry_len, next_inquiry_len;
472 int response_len = 0;
James Bottomley39216032005-06-15 18:48:29 -0500473 int pass, count, result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 struct scsi_sense_hdr sshdr;
475
476 *bflags = 0;
477
478 /* Perform up to 3 passes. The first pass uses a conservative
479 * transfer length of 36 unless sdev->inquiry_len specifies a
480 * different value. */
481 first_inquiry_len = sdev->inquiry_len ? sdev->inquiry_len : 36;
482 try_inquiry_len = first_inquiry_len;
483 pass = 1;
484
485 next_pass:
James Bottomley9ccfc752005-10-02 11:45:08 -0500486 SCSI_LOG_SCAN_BUS(3, sdev_printk(KERN_INFO, sdev,
487 "scsi scan: INQUIRY pass %d length %d\n",
488 pass, try_inquiry_len));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489
490 /* Each pass gets up to three chances to ignore Unit Attention */
491 for (count = 0; count < 3; ++count) {
492 memset(scsi_cmd, 0, 6);
493 scsi_cmd[0] = INQUIRY;
494 scsi_cmd[4] = (unsigned char) try_inquiry_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495
496 memset(inq_result, 0, try_inquiry_len);
James Bottomley39216032005-06-15 18:48:29 -0500497
498 result = scsi_execute_req(sdev, scsi_cmd, DMA_FROM_DEVICE,
James Bottomleyea73a9f2005-08-28 11:33:52 -0500499 inq_result, try_inquiry_len, &sshdr,
James Bottomley39216032005-06-15 18:48:29 -0500500 HZ / 2 + HZ * scsi_inq_timeout, 3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501
502 SCSI_LOG_SCAN_BUS(3, printk(KERN_INFO "scsi scan: INQUIRY %s "
503 "with code 0x%x\n",
James Bottomley39216032005-06-15 18:48:29 -0500504 result ? "failed" : "successful", result));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505
James Bottomley39216032005-06-15 18:48:29 -0500506 if (result) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 /*
508 * not-ready to ready transition [asc/ascq=0x28/0x0]
509 * or power-on, reset [asc/ascq=0x29/0x0], continue.
510 * INQUIRY should not yield UNIT_ATTENTION
511 * but many buggy devices do so anyway.
512 */
James Bottomley39216032005-06-15 18:48:29 -0500513 if ((driver_byte(result) & DRIVER_SENSE) &&
James Bottomleyea73a9f2005-08-28 11:33:52 -0500514 scsi_sense_valid(&sshdr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 if ((sshdr.sense_key == UNIT_ATTENTION) &&
516 ((sshdr.asc == 0x28) ||
517 (sshdr.asc == 0x29)) &&
518 (sshdr.ascq == 0))
519 continue;
520 }
521 }
522 break;
523 }
524
James Bottomley39216032005-06-15 18:48:29 -0500525 if (result == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 response_len = (unsigned char) inq_result[4] + 5;
527 if (response_len > 255)
528 response_len = first_inquiry_len; /* sanity */
529
530 /*
531 * Get any flags for this device.
532 *
Christoph Hellwigf64a1812005-10-31 18:32:08 +0100533 * XXX add a bflags to scsi_device, and replace the
534 * corresponding bit fields in scsi_device, so bflags
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 * need not be passed as an argument.
536 */
537 *bflags = scsi_get_device_flags(sdev, &inq_result[8],
538 &inq_result[16]);
539
540 /* When the first pass succeeds we gain information about
541 * what larger transfer lengths might work. */
542 if (pass == 1) {
543 if (BLIST_INQUIRY_36 & *bflags)
544 next_inquiry_len = 36;
545 else if (BLIST_INQUIRY_58 & *bflags)
546 next_inquiry_len = 58;
547 else if (sdev->inquiry_len)
548 next_inquiry_len = sdev->inquiry_len;
549 else
550 next_inquiry_len = response_len;
551
552 /* If more data is available perform the second pass */
553 if (next_inquiry_len > try_inquiry_len) {
554 try_inquiry_len = next_inquiry_len;
555 pass = 2;
556 goto next_pass;
557 }
558 }
559
560 } else if (pass == 2) {
561 printk(KERN_INFO "scsi scan: %d byte inquiry failed. "
562 "Consider BLIST_INQUIRY_36 for this device\n",
563 try_inquiry_len);
564
565 /* If this pass failed, the third pass goes back and transfers
566 * the same amount as we successfully got in the first pass. */
567 try_inquiry_len = first_inquiry_len;
568 pass = 3;
569 goto next_pass;
570 }
571
572 /* If the last transfer attempt got an error, assume the
573 * peripheral doesn't exist or is dead. */
James Bottomley39216032005-06-15 18:48:29 -0500574 if (result)
575 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576
577 /* Don't report any more data than the device says is valid */
578 sdev->inquiry_len = min(try_inquiry_len, response_len);
579
580 /*
581 * XXX Abort if the response length is less than 36? If less than
582 * 32, the lookup of the device flags (above) could be invalid,
583 * and it would be possible to take an incorrect action - we do
584 * not want to hang because of a short INQUIRY. On the flip side,
585 * if the device is spun down or becoming ready (and so it gives a
586 * short INQUIRY), an abort here prevents any further use of the
587 * device, including spin up.
588 *
589 * Related to the above issue:
590 *
591 * XXX Devices (disk or all?) should be sent a TEST UNIT READY,
592 * and if not ready, sent a START_STOP to start (maybe spin up) and
593 * then send the INQUIRY again, since the INQUIRY can change after
594 * a device is initialized.
595 *
596 * Ideally, start a device if explicitly asked to do so. This
597 * assumes that a device is spun up on power on, spun down on
598 * request, and then spun up on request.
599 */
600
601 /*
602 * The scanning code needs to know the scsi_level, even if no
603 * device is attached at LUN 0 (SCSI_SCAN_TARGET_PRESENT) so
604 * non-zero LUNs can be scanned.
605 */
606 sdev->scsi_level = inq_result[2] & 0x07;
607 if (sdev->scsi_level >= 2 ||
608 (sdev->scsi_level == 1 && (inq_result[3] & 0x0f) == 1))
609 sdev->scsi_level++;
James Bottomley6f3a2022005-09-22 20:33:28 -0500610 sdev->sdev_target->scsi_level = sdev->scsi_level;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611
James Bottomley39216032005-06-15 18:48:29 -0500612 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613}
614
615/**
Christoph Hellwigf64a1812005-10-31 18:32:08 +0100616 * scsi_add_lun - allocate and fully initialze a scsi_device
617 * @sdevscan: holds information to be stored in the new scsi_device
618 * @sdevnew: store the address of the newly allocated scsi_device
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 * @inq_result: holds the result of a previous INQUIRY to the LUN
620 * @bflags: black/white list flag
621 *
622 * Description:
Christoph Hellwigf64a1812005-10-31 18:32:08 +0100623 * Allocate and initialize a scsi_device matching sdevscan. Optionally
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 * set fields based on values in *@bflags. If @sdevnew is not
Christoph Hellwigf64a1812005-10-31 18:32:08 +0100625 * NULL, store the address of the new scsi_device in *@sdevnew (needed
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 * when scanning a particular LUN).
627 *
628 * Return:
Christoph Hellwigf64a1812005-10-31 18:32:08 +0100629 * SCSI_SCAN_NO_RESPONSE: could not allocate or setup a scsi_device
630 * SCSI_SCAN_LUN_PRESENT: a new scsi_device was allocated and initialized
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 **/
632static int scsi_add_lun(struct scsi_device *sdev, char *inq_result, int *bflags)
633{
634 /*
635 * XXX do not save the inquiry, since it can change underneath us,
636 * save just vendor/model/rev.
637 *
638 * Rather than save it and have an ioctl that retrieves the saved
639 * value, have an ioctl that executes the same INQUIRY code used
640 * in scsi_probe_lun, let user level programs doing INQUIRY
641 * scanning run at their own risk, or supply a user level program
642 * that can correctly scan.
643 */
644 sdev->inquiry = kmalloc(sdev->inquiry_len, GFP_ATOMIC);
645 if (sdev->inquiry == NULL) {
646 return SCSI_SCAN_NO_RESPONSE;
647 }
648
649 memcpy(sdev->inquiry, inq_result, sdev->inquiry_len);
650 sdev->vendor = (char *) (sdev->inquiry + 8);
651 sdev->model = (char *) (sdev->inquiry + 16);
652 sdev->rev = (char *) (sdev->inquiry + 32);
653
654 if (*bflags & BLIST_ISROM) {
655 /*
656 * It would be better to modify sdev->type, and set
657 * sdev->removable, but then the print_inquiry() output
658 * would not show TYPE_ROM; if print_inquiry() is removed
659 * the issue goes away.
660 */
661 inq_result[0] = TYPE_ROM;
662 inq_result[1] |= 0x80; /* removable */
663 } else if (*bflags & BLIST_NO_ULD_ATTACH)
664 sdev->no_uld_attach = 1;
665
666 switch (sdev->type = (inq_result[0] & 0x1f)) {
667 case TYPE_TAPE:
668 case TYPE_DISK:
669 case TYPE_PRINTER:
670 case TYPE_MOD:
671 case TYPE_PROCESSOR:
672 case TYPE_SCANNER:
673 case TYPE_MEDIUM_CHANGER:
674 case TYPE_ENCLOSURE:
675 case TYPE_COMM:
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 /*
741 * Some devices may not want to have a start command automatically
742 * issued when a device is added.
743 */
744 if (*bflags & BLIST_NOSTARTONADD)
745 sdev->no_start_on_add = 1;
746
747 if (*bflags & BLIST_SINGLELUN)
748 sdev->single_lun = 1;
749
750
751 sdev->use_10_for_rw = 1;
752
753 if (*bflags & BLIST_MS_SKIP_PAGE_08)
754 sdev->skip_ms_page_8 = 1;
755
756 if (*bflags & BLIST_MS_SKIP_PAGE_3F)
757 sdev->skip_ms_page_3f = 1;
758
759 if (*bflags & BLIST_USE_10_BYTE_MS)
760 sdev->use_10_for_ms = 1;
761
762 /* set the device running here so that slave configure
763 * may do I/O */
764 scsi_device_set_state(sdev, SDEV_RUNNING);
765
766 if (*bflags & BLIST_MS_192_BYTES_FOR_3F)
767 sdev->use_192_bytes_for_3f = 1;
768
769 if (*bflags & BLIST_NOT_LOCKABLE)
770 sdev->lockable = 0;
771
772 if (*bflags & BLIST_RETRY_HWERROR)
773 sdev->retry_hwerror = 1;
774
775 transport_configure_device(&sdev->sdev_gendev);
776
Christoph Hellwig93805092006-02-17 12:11:29 +0100777 if (sdev->host->hostt->slave_configure) {
778 int ret = sdev->host->hostt->slave_configure(sdev);
779 if (ret) {
780 /*
781 * if LLDD reports slave not present, don't clutter
782 * console with alloc failure messages
783 */
784 if (ret != -ENXIO) {
785 sdev_printk(KERN_ERR, sdev,
786 "failed to configure device\n");
787 }
788 return SCSI_SCAN_NO_RESPONSE;
789 }
790 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791
792 /*
793 * Ok, the device is now all set up, we can
794 * register it and tell the rest of the kernel
795 * about it.
796 */
Alan Sternb24b1032005-07-27 11:43:46 -0700797 if (scsi_sysfs_add_sdev(sdev) != 0)
798 return SCSI_SCAN_NO_RESPONSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799
800 return SCSI_SCAN_LUN_PRESENT;
801}
802
James Bottomley6f3a2022005-09-22 20:33:28 -0500803static inline void scsi_destroy_sdev(struct scsi_device *sdev)
804{
805 if (sdev->host->hostt->slave_destroy)
806 sdev->host->hostt->slave_destroy(sdev);
807 transport_destroy_device(&sdev->sdev_gendev);
808 put_device(&sdev->sdev_gendev);
809}
810
811
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812/**
813 * scsi_probe_and_add_lun - probe a LUN, if a LUN is found add it
814 * @starget: pointer to target device structure
815 * @lun: LUN of target device
Christoph Hellwigf64a1812005-10-31 18:32:08 +0100816 * @sdevscan: probe the LUN corresponding to this scsi_device
817 * @sdevnew: store the value of any new scsi_device allocated
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 * @bflagsp: store bflags here if not NULL
819 *
820 * Description:
821 * Call scsi_probe_lun, if a LUN with an attached device is found,
822 * allocate and set it up by calling scsi_add_lun.
823 *
824 * Return:
Christoph Hellwigf64a1812005-10-31 18:32:08 +0100825 * SCSI_SCAN_NO_RESPONSE: could not allocate or setup a scsi_device
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 * SCSI_SCAN_TARGET_PRESENT: target responded, but no device is
827 * attached at the LUN
Christoph Hellwigf64a1812005-10-31 18:32:08 +0100828 * SCSI_SCAN_LUN_PRESENT: a new scsi_device was allocated and initialized
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 **/
830static int scsi_probe_and_add_lun(struct scsi_target *starget,
831 uint lun, int *bflagsp,
832 struct scsi_device **sdevp, int rescan,
833 void *hostdata)
834{
835 struct scsi_device *sdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 unsigned char *result;
James Bottomley39216032005-06-15 18:48:29 -0500837 int bflags, res = SCSI_SCAN_NO_RESPONSE, result_len = 256;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 struct Scsi_Host *shost = dev_to_shost(starget->dev.parent);
839
840 /*
841 * The rescan flag is used as an optimization, the first scan of a
842 * host adapter calls into here with rescan == 0.
843 */
James Bottomley6f3a2022005-09-22 20:33:28 -0500844 sdev = scsi_device_lookup_by_target(starget, lun);
845 if (sdev) {
846 if (rescan || sdev->sdev_state != SDEV_CREATED) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 SCSI_LOG_SCAN_BUS(3, printk(KERN_INFO
848 "scsi scan: device exists on %s\n",
849 sdev->sdev_gendev.bus_id));
850 if (sdevp)
851 *sdevp = sdev;
852 else
853 scsi_device_put(sdev);
854
855 if (bflagsp)
856 *bflagsp = scsi_get_device_flags(sdev,
857 sdev->vendor,
858 sdev->model);
859 return SCSI_SCAN_LUN_PRESENT;
860 }
James Bottomley6f3a2022005-09-22 20:33:28 -0500861 scsi_device_put(sdev);
862 } else
863 sdev = scsi_alloc_sdev(starget, lun, hostdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 if (!sdev)
865 goto out;
James Bottomley39216032005-06-15 18:48:29 -0500866
867 result = kmalloc(result_len, GFP_ATOMIC |
Al Virobc861202005-04-24 12:28:34 -0700868 ((shost->unchecked_isa_dma) ? __GFP_DMA : 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 if (!result)
James Bottomley39216032005-06-15 18:48:29 -0500870 goto out_free_sdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871
James Bottomley39216032005-06-15 18:48:29 -0500872 if (scsi_probe_lun(sdev, result, result_len, &bflags))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 goto out_free_result;
874
Kurt Garloff4186ab12006-04-03 15:16:48 +0200875 if (bflagsp)
876 *bflagsp = bflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 /*
878 * result contains valid SCSI INQUIRY data.
879 */
880 if ((result[0] >> 5) == 3) {
881 /*
882 * For a Peripheral qualifier 3 (011b), the SCSI
883 * spec says: The device server is not capable of
884 * supporting a physical device on this logical
885 * unit.
886 *
887 * For disks, this implies that there is no
888 * logical disk configured at sdev->lun, but there
889 * is a target id responding.
890 */
891 SCSI_LOG_SCAN_BUS(3, printk(KERN_INFO
892 "scsi scan: peripheral qualifier of 3,"
893 " no device added\n"));
894 res = SCSI_SCAN_TARGET_PRESENT;
895 goto out_free_result;
896 }
897
Alan Stern1bfc5d92006-02-09 15:26:18 -0500898 /*
899 * Non-standard SCSI targets may set the PDT to 0x1f (unknown or
900 * no device type) instead of using the Peripheral Qualifier to
901 * indicate that no LUN is present. For example, USB UFI does this.
902 */
903 if (starget->pdt_1f_for_no_lun && (result[0] & 0x1f) == 0x1f) {
904 SCSI_LOG_SCAN_BUS(3, printk(KERN_INFO
905 "scsi scan: peripheral device type"
906 " of 31, no device added\n"));
907 res = SCSI_SCAN_TARGET_PRESENT;
908 goto out_free_result;
909 }
910
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 res = scsi_add_lun(sdev, result, &bflags);
912 if (res == SCSI_SCAN_LUN_PRESENT) {
913 if (bflags & BLIST_KEY) {
914 sdev->lockable = 0;
James Bottomley39216032005-06-15 18:48:29 -0500915 scsi_unlock_floptical(sdev, result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 }
918
919 out_free_result:
920 kfree(result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 out_free_sdev:
922 if (res == SCSI_SCAN_LUN_PRESENT) {
923 if (sdevp) {
Alan Sternb70d37b2005-07-26 10:30:40 -0400924 if (scsi_device_get(sdev) == 0) {
925 *sdevp = sdev;
926 } else {
927 __scsi_remove_device(sdev);
928 res = SCSI_SCAN_NO_RESPONSE;
929 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 }
James Bottomley6f3a2022005-09-22 20:33:28 -0500931 } else
932 scsi_destroy_sdev(sdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 out:
934 return res;
935}
936
937/**
938 * scsi_sequential_lun_scan - sequentially scan a SCSI target
939 * @starget: pointer to target structure to scan
940 * @bflags: black/white list flag for LUN 0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 *
942 * Description:
943 * Generally, scan from LUN 1 (LUN 0 is assumed to already have been
944 * scanned) to some maximum lun until a LUN is found with no device
945 * attached. Use the bflags to figure out any oddities.
946 *
947 * Modifies sdevscan->lun.
948 **/
949static void scsi_sequential_lun_scan(struct scsi_target *starget,
Kurt Garloff4186ab12006-04-03 15:16:48 +0200950 int bflags, int scsi_level, int rescan)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951{
952 unsigned int sparse_lun, lun, max_dev_lun;
953 struct Scsi_Host *shost = dev_to_shost(starget->dev.parent);
954
955 SCSI_LOG_SCAN_BUS(3, printk(KERN_INFO "scsi scan: Sequential scan of"
956 "%s\n", starget->dev.bus_id));
957
958 max_dev_lun = min(max_scsi_luns, shost->max_lun);
959 /*
960 * If this device is known to support sparse multiple units,
961 * override the other settings, and scan all of them. Normally,
962 * SCSI-3 devices should be scanned via the REPORT LUNS.
963 */
964 if (bflags & BLIST_SPARSELUN) {
965 max_dev_lun = shost->max_lun;
966 sparse_lun = 1;
967 } else
968 sparse_lun = 0;
969
970 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 * If less than SCSI_1_CSS, and no special lun scaning, stop
972 * scanning; this matches 2.4 behaviour, but could just be a bug
973 * (to continue scanning a SCSI_1_CSS device).
974 *
975 * This test is broken. We might not have any device on lun0 for
976 * a sparselun device, and if that's the case then how would we
977 * know the real scsi_level, eh? It might make sense to just not
978 * scan any SCSI_1 device for non-0 luns, but that check would best
979 * go into scsi_alloc_sdev() and just have it return null when asked
980 * to alloc an sdev for lun > 0 on an already found SCSI_1 device.
981 *
982 if ((sdevscan->scsi_level < SCSI_1_CCS) &&
983 ((bflags & (BLIST_FORCELUN | BLIST_SPARSELUN | BLIST_MAX5LUN))
984 == 0))
985 return;
986 */
987 /*
988 * If this device is known to support multiple units, override
989 * the other settings, and scan all of them.
990 */
991 if (bflags & BLIST_FORCELUN)
992 max_dev_lun = shost->max_lun;
993 /*
994 * REGAL CDC-4X: avoid hang after LUN 4
995 */
996 if (bflags & BLIST_MAX5LUN)
997 max_dev_lun = min(5U, max_dev_lun);
998 /*
999 * Do not scan SCSI-2 or lower device past LUN 7, unless
1000 * BLIST_LARGELUN.
1001 */
1002 if (scsi_level < SCSI_3 && !(bflags & BLIST_LARGELUN))
1003 max_dev_lun = min(8U, max_dev_lun);
1004
1005 /*
1006 * We have already scanned LUN 0, so start at LUN 1. Keep scanning
1007 * until we reach the max, or no LUN is found and we are not
1008 * sparse_lun.
1009 */
1010 for (lun = 1; lun < max_dev_lun; ++lun)
1011 if ((scsi_probe_and_add_lun(starget, lun, NULL, NULL, rescan,
1012 NULL) != SCSI_SCAN_LUN_PRESENT) &&
1013 !sparse_lun)
1014 return;
1015}
1016
1017/**
1018 * scsilun_to_int: convert a scsi_lun to an int
1019 * @scsilun: struct scsi_lun to be converted.
1020 *
1021 * Description:
1022 * Convert @scsilun from a struct scsi_lun to a four byte host byte-ordered
1023 * integer, and return the result. The caller must check for
1024 * truncation before using this function.
1025 *
1026 * Notes:
1027 * The struct scsi_lun is assumed to be four levels, with each level
1028 * effectively containing a SCSI byte-ordered (big endian) short; the
1029 * addressing bits of each level are ignored (the highest two bits).
1030 * For a description of the LUN format, post SCSI-3 see the SCSI
1031 * Architecture Model, for SCSI-3 see the SCSI Controller Commands.
1032 *
1033 * Given a struct scsi_lun of: 0a 04 0b 03 00 00 00 00, this function returns
1034 * the integer: 0x0b030a04
1035 **/
1036static int scsilun_to_int(struct scsi_lun *scsilun)
1037{
1038 int i;
1039 unsigned int lun;
1040
1041 lun = 0;
1042 for (i = 0; i < sizeof(lun); i += 2)
1043 lun = lun | (((scsilun->scsi_lun[i] << 8) |
1044 scsilun->scsi_lun[i + 1]) << (i * 8));
1045 return lun;
1046}
1047
1048/**
James.Smart@Emulex.Com2f4701d2005-07-13 22:05:03 -04001049 * int_to_scsilun: reverts an int into a scsi_lun
1050 * @int: integer to be reverted
1051 * @scsilun: struct scsi_lun to be set.
1052 *
1053 * Description:
1054 * Reverts the functionality of the scsilun_to_int, which packed
1055 * an 8-byte lun value into an int. This routine unpacks the int
1056 * back into the lun value.
1057 * Note: the scsilun_to_int() routine does not truly handle all
1058 * 8bytes of the lun value. This functions restores only as much
1059 * as was set by the routine.
1060 *
1061 * Notes:
1062 * Given an integer : 0x0b030a04, this function returns a
1063 * scsi_lun of : struct scsi_lun of: 0a 04 0b 03 00 00 00 00
1064 *
1065 **/
1066void int_to_scsilun(unsigned int lun, struct scsi_lun *scsilun)
1067{
1068 int i;
1069
1070 memset(scsilun->scsi_lun, 0, sizeof(scsilun->scsi_lun));
1071
1072 for (i = 0; i < sizeof(lun); i += 2) {
1073 scsilun->scsi_lun[i] = (lun >> 8) & 0xFF;
1074 scsilun->scsi_lun[i+1] = lun & 0xFF;
1075 lun = lun >> 16;
1076 }
1077}
1078EXPORT_SYMBOL(int_to_scsilun);
1079
1080/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 * scsi_report_lun_scan - Scan using SCSI REPORT LUN results
Christoph Hellwigf64a1812005-10-31 18:32:08 +01001082 * @sdevscan: scan the host, channel, and id of this scsi_device
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 *
1084 * Description:
1085 * If @sdevscan is for a SCSI-3 or up device, send a REPORT LUN
1086 * command, and scan the resulting list of LUNs by calling
1087 * scsi_probe_and_add_lun.
1088 *
1089 * Modifies sdevscan->lun.
1090 *
1091 * Return:
1092 * 0: scan completed (or no memory, so further scanning is futile)
1093 * 1: no report lun scan, or not configured
1094 **/
James Bottomley6f3a2022005-09-22 20:33:28 -05001095static int scsi_report_lun_scan(struct scsi_target *starget, int bflags,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 int rescan)
1097{
1098 char devname[64];
1099 unsigned char scsi_cmd[MAX_COMMAND_SIZE];
1100 unsigned int length;
1101 unsigned int lun;
1102 unsigned int num_luns;
1103 unsigned int retries;
James Bottomley39216032005-06-15 18:48:29 -05001104 int result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 struct scsi_lun *lunp, *lun_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106 u8 *data;
1107 struct scsi_sense_hdr sshdr;
James Bottomley6f3a2022005-09-22 20:33:28 -05001108 struct scsi_device *sdev;
1109 struct Scsi_Host *shost = dev_to_shost(&starget->dev);
Alan Stern2ef89192005-11-08 15:51:55 -05001110 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111
1112 /*
1113 * Only support SCSI-3 and up devices if BLIST_NOREPORTLUN is not set.
1114 * Also allow SCSI-2 if BLIST_REPORTLUN2 is set and host adapter does
1115 * support more than 8 LUNs.
1116 */
1117 if ((bflags & BLIST_NOREPORTLUN) ||
James Bottomley6f3a2022005-09-22 20:33:28 -05001118 starget->scsi_level < SCSI_2 ||
1119 (starget->scsi_level < SCSI_3 &&
1120 (!(bflags & BLIST_REPORTLUN2) || shost->max_lun <= 8)) )
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121 return 1;
1122 if (bflags & BLIST_NOLUN)
1123 return 0;
1124
James Bottomley6f3a2022005-09-22 20:33:28 -05001125 if (!(sdev = scsi_device_lookup_by_target(starget, 0))) {
1126 sdev = scsi_alloc_sdev(starget, 0, NULL);
1127 if (!sdev)
1128 return 0;
1129 if (scsi_device_get(sdev))
1130 return 0;
1131 }
1132
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 sprintf(devname, "host %d channel %d id %d",
James Bottomley6f3a2022005-09-22 20:33:28 -05001134 shost->host_no, sdev->channel, sdev->id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135
1136 /*
1137 * Allocate enough to hold the header (the same size as one scsi_lun)
1138 * plus the max number of luns we are requesting.
1139 *
1140 * Reallocating and trying again (with the exact amount we need)
1141 * would be nice, but then we need to somehow limit the size
1142 * allocated based on the available memory and the limits of
1143 * kmalloc - we don't want a kmalloc() failure of a huge value to
1144 * prevent us from finding any LUNs on this target.
1145 */
1146 length = (max_scsi_report_luns + 1) * sizeof(struct scsi_lun);
1147 lun_data = kmalloc(length, GFP_ATOMIC |
1148 (sdev->host->unchecked_isa_dma ? __GFP_DMA : 0));
James Bottomley6f3a2022005-09-22 20:33:28 -05001149 if (!lun_data) {
1150 printk(ALLOC_FAILURE_MSG, __FUNCTION__);
James Bottomley39216032005-06-15 18:48:29 -05001151 goto out;
James Bottomley6f3a2022005-09-22 20:33:28 -05001152 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153
1154 scsi_cmd[0] = REPORT_LUNS;
1155
1156 /*
1157 * bytes 1 - 5: reserved, set to zero.
1158 */
1159 memset(&scsi_cmd[1], 0, 5);
1160
1161 /*
1162 * bytes 6 - 9: length of the command.
1163 */
1164 scsi_cmd[6] = (unsigned char) (length >> 24) & 0xff;
1165 scsi_cmd[7] = (unsigned char) (length >> 16) & 0xff;
1166 scsi_cmd[8] = (unsigned char) (length >> 8) & 0xff;
1167 scsi_cmd[9] = (unsigned char) length & 0xff;
1168
1169 scsi_cmd[10] = 0; /* reserved */
1170 scsi_cmd[11] = 0; /* control */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171
1172 /*
1173 * We can get a UNIT ATTENTION, for example a power on/reset, so
1174 * retry a few times (like sd.c does for TEST UNIT READY).
1175 * Experience shows some combinations of adapter/devices get at
1176 * least two power on/resets.
1177 *
1178 * Illegal requests (for devices that do not support REPORT LUNS)
1179 * should come through as a check condition, and will not generate
1180 * a retry.
1181 */
1182 for (retries = 0; retries < 3; retries++) {
1183 SCSI_LOG_SCAN_BUS(3, printk (KERN_INFO "scsi scan: Sending"
1184 " REPORT LUNS to %s (try %d)\n", devname,
1185 retries));
James Bottomley39216032005-06-15 18:48:29 -05001186
James Bottomley39216032005-06-15 18:48:29 -05001187 result = scsi_execute_req(sdev, scsi_cmd, DMA_FROM_DEVICE,
James Bottomleyea73a9f2005-08-28 11:33:52 -05001188 lun_data, length, &sshdr,
James Bottomley39216032005-06-15 18:48:29 -05001189 SCSI_TIMEOUT + 4 * HZ, 3);
1190
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191 SCSI_LOG_SCAN_BUS(3, printk (KERN_INFO "scsi scan: REPORT LUNS"
James Bottomley39216032005-06-15 18:48:29 -05001192 " %s (try %d) result 0x%x\n", result
1193 ? "failed" : "successful", retries, result));
1194 if (result == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195 break;
James Bottomleyea73a9f2005-08-28 11:33:52 -05001196 else if (scsi_sense_valid(&sshdr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 if (sshdr.sense_key != UNIT_ATTENTION)
1198 break;
1199 }
1200 }
1201
James Bottomley39216032005-06-15 18:48:29 -05001202 if (result) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 /*
1204 * The device probably does not support a REPORT LUN command
1205 */
Alan Stern2ef89192005-11-08 15:51:55 -05001206 ret = 1;
1207 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209
1210 /*
1211 * Get the length from the first four bytes of lun_data.
1212 */
1213 data = (u8 *) lun_data->scsi_lun;
1214 length = ((data[0] << 24) | (data[1] << 16) |
1215 (data[2] << 8) | (data[3] << 0));
1216
1217 num_luns = (length / sizeof(struct scsi_lun));
1218 if (num_luns > max_scsi_report_luns) {
1219 printk(KERN_WARNING "scsi: On %s only %d (max_scsi_report_luns)"
1220 " of %d luns reported, try increasing"
1221 " max_scsi_report_luns.\n", devname,
1222 max_scsi_report_luns, num_luns);
1223 num_luns = max_scsi_report_luns;
1224 }
1225
Jeff Garzik3bf743e2005-10-24 18:04:06 -04001226 SCSI_LOG_SCAN_BUS(3, sdev_printk (KERN_INFO, sdev,
1227 "scsi scan: REPORT LUN scan\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228
1229 /*
1230 * Scan the luns in lun_data. The entry at offset 0 is really
1231 * the header, so start at 1 and go up to and including num_luns.
1232 */
1233 for (lunp = &lun_data[1]; lunp <= &lun_data[num_luns]; lunp++) {
1234 lun = scsilun_to_int(lunp);
1235
1236 /*
1237 * Check if the unused part of lunp is non-zero, and so
1238 * does not fit in lun.
1239 */
1240 if (memcmp(&lunp->scsi_lun[sizeof(lun)], "\0\0\0\0", 4)) {
1241 int i;
1242
1243 /*
1244 * Output an error displaying the LUN in byte order,
1245 * this differs from what linux would print for the
1246 * integer LUN value.
1247 */
1248 printk(KERN_WARNING "scsi: %s lun 0x", devname);
1249 data = (char *)lunp->scsi_lun;
1250 for (i = 0; i < sizeof(struct scsi_lun); i++)
1251 printk("%02x", data[i]);
1252 printk(" has a LUN larger than currently supported.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253 } else if (lun > sdev->host->max_lun) {
1254 printk(KERN_WARNING "scsi: %s lun%d has a LUN larger"
1255 " than allowed by the host adapter\n",
1256 devname, lun);
1257 } else {
1258 int res;
1259
1260 res = scsi_probe_and_add_lun(starget,
1261 lun, NULL, NULL, rescan, NULL);
1262 if (res == SCSI_SCAN_NO_RESPONSE) {
1263 /*
1264 * Got some results, but now none, abort.
1265 */
Jeff Garzik3bf743e2005-10-24 18:04:06 -04001266 sdev_printk(KERN_ERR, sdev,
1267 "Unexpected response"
1268 " from lun %d while scanning, scan"
1269 " aborted\n", lun);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 break;
1271 }
1272 }
1273 }
1274
Alan Stern2ef89192005-11-08 15:51:55 -05001275 out_err:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276 kfree(lun_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277 out:
James Bottomley6f3a2022005-09-22 20:33:28 -05001278 scsi_device_put(sdev);
1279 if (sdev->sdev_state == SDEV_CREATED)
1280 /*
1281 * the sdev we used didn't appear in the report luns scan
1282 */
1283 scsi_destroy_sdev(sdev);
Alan Stern2ef89192005-11-08 15:51:55 -05001284 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285}
1286
1287struct scsi_device *__scsi_add_device(struct Scsi_Host *shost, uint channel,
1288 uint id, uint lun, void *hostdata)
1289{
Matthew Wilcoxa97a83a2006-02-05 08:01:33 -07001290 struct scsi_device *sdev = ERR_PTR(-ENODEV);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291 struct device *parent = &shost->shost_gendev;
Christoph Hellwige02f3f52006-01-13 19:04:00 +01001292 struct scsi_target *starget;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293
Christoph Hellwige02f3f52006-01-13 19:04:00 +01001294 starget = scsi_alloc_target(parent, channel, id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295 if (!starget)
1296 return ERR_PTR(-ENOMEM);
1297
Nathan Lynchc92715b2005-06-02 17:15:09 -05001298 get_device(&starget->dev);
Arjan van de Ven0b950672006-01-11 13:16:10 +01001299 mutex_lock(&shost->scan_mutex);
Matthew Wilcoxa97a83a2006-02-05 08:01:33 -07001300 if (scsi_host_scan_allowed(shost))
1301 scsi_probe_and_add_lun(starget, lun, NULL, &sdev, 1, hostdata);
Arjan van de Ven0b950672006-01-11 13:16:10 +01001302 mutex_unlock(&shost->scan_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303 scsi_target_reap(starget);
1304 put_device(&starget->dev);
1305
1306 return sdev;
1307}
1308EXPORT_SYMBOL(__scsi_add_device);
1309
James Bottomley146f7262005-09-10 12:44:09 -05001310int scsi_add_device(struct Scsi_Host *host, uint channel,
1311 uint target, uint lun)
1312{
1313 struct scsi_device *sdev =
1314 __scsi_add_device(host, channel, target, lun, NULL);
1315 if (IS_ERR(sdev))
1316 return PTR_ERR(sdev);
1317
1318 scsi_device_put(sdev);
1319 return 0;
1320}
1321EXPORT_SYMBOL(scsi_add_device);
1322
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323void scsi_rescan_device(struct device *dev)
1324{
1325 struct scsi_driver *drv;
1326
1327 if (!dev->driver)
1328 return;
1329
1330 drv = to_scsi_driver(dev->driver);
1331 if (try_module_get(drv->owner)) {
1332 if (drv->rescan)
1333 drv->rescan(dev);
1334 module_put(drv->owner);
1335 }
1336}
1337EXPORT_SYMBOL(scsi_rescan_device);
1338
Alan Sterne517d312005-07-26 10:18:45 -04001339static void __scsi_scan_target(struct device *parent, unsigned int channel,
1340 unsigned int id, unsigned int lun, int rescan)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341{
1342 struct Scsi_Host *shost = dev_to_shost(parent);
1343 int bflags = 0;
1344 int res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345 struct scsi_target *starget;
1346
1347 if (shost->this_id == id)
1348 /*
1349 * Don't scan the host adapter
1350 */
1351 return;
1352
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353 starget = scsi_alloc_target(parent, channel, id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354 if (!starget)
1355 return;
1356
1357 get_device(&starget->dev);
1358 if (lun != SCAN_WILD_CARD) {
1359 /*
1360 * Scan for a specific host/chan/id/lun.
1361 */
1362 scsi_probe_and_add_lun(starget, lun, NULL, NULL, rescan, NULL);
1363 goto out_reap;
1364 }
1365
1366 /*
1367 * Scan LUN 0, if there is some response, scan further. Ideally, we
1368 * would not configure LUN 0 until all LUNs are scanned.
1369 */
James Bottomley6f3a2022005-09-22 20:33:28 -05001370 res = scsi_probe_and_add_lun(starget, 0, &bflags, NULL, rescan, NULL);
1371 if (res == SCSI_SCAN_LUN_PRESENT || res == SCSI_SCAN_TARGET_PRESENT) {
1372 if (scsi_report_lun_scan(starget, bflags, rescan) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373 /*
1374 * The REPORT LUN did not scan the target,
1375 * do a sequential scan.
1376 */
1377 scsi_sequential_lun_scan(starget, bflags,
Kurt Garloff4186ab12006-04-03 15:16:48 +02001378 starget->scsi_level, rescan);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380
1381 out_reap:
1382 /* now determine if the target has any children at all
1383 * and if not, nuke it */
1384 scsi_target_reap(starget);
1385
1386 put_device(&starget->dev);
1387}
Alan Sterne517d312005-07-26 10:18:45 -04001388
1389/**
1390 * scsi_scan_target - scan a target id, possibly including all LUNs on the
1391 * target.
1392 * @parent: host to scan
1393 * @channel: channel to scan
1394 * @id: target id to scan
1395 * @lun: Specific LUN to scan or SCAN_WILD_CARD
1396 * @rescan: passed to LUN scanning routines
1397 *
1398 * Description:
1399 * Scan the target id on @parent, @channel, and @id. Scan at least LUN 0,
1400 * and possibly all LUNs on the target id.
1401 *
1402 * First try a REPORT LUN scan, if that does not scan the target, do a
1403 * sequential scan of LUNs on the target id.
1404 **/
1405void scsi_scan_target(struct device *parent, unsigned int channel,
1406 unsigned int id, unsigned int lun, int rescan)
1407{
1408 struct Scsi_Host *shost = dev_to_shost(parent);
1409
Arjan van de Ven0b950672006-01-11 13:16:10 +01001410 mutex_lock(&shost->scan_mutex);
Alan Sterne517d312005-07-26 10:18:45 -04001411 if (scsi_host_scan_allowed(shost))
1412 __scsi_scan_target(parent, channel, id, lun, rescan);
Arjan van de Ven0b950672006-01-11 13:16:10 +01001413 mutex_unlock(&shost->scan_mutex);
Alan Sterne517d312005-07-26 10:18:45 -04001414}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415EXPORT_SYMBOL(scsi_scan_target);
1416
1417static void scsi_scan_channel(struct Scsi_Host *shost, unsigned int channel,
1418 unsigned int id, unsigned int lun, int rescan)
1419{
1420 uint order_id;
1421
1422 if (id == SCAN_WILD_CARD)
1423 for (id = 0; id < shost->max_id; ++id) {
1424 /*
1425 * XXX adapter drivers when possible (FCP, iSCSI)
1426 * could modify max_id to match the current max,
1427 * not the absolute max.
1428 *
1429 * XXX add a shost id iterator, so for example,
1430 * the FC ID can be the same as a target id
1431 * without a huge overhead of sparse id's.
1432 */
1433 if (shost->reverse_ordering)
1434 /*
1435 * Scan from high to low id.
1436 */
1437 order_id = shost->max_id - id - 1;
1438 else
1439 order_id = id;
Alan Sterne517d312005-07-26 10:18:45 -04001440 __scsi_scan_target(&shost->shost_gendev, channel,
1441 order_id, lun, rescan);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442 }
1443 else
Alan Sterne517d312005-07-26 10:18:45 -04001444 __scsi_scan_target(&shost->shost_gendev, channel,
1445 id, lun, rescan);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446}
1447
1448int scsi_scan_host_selected(struct Scsi_Host *shost, unsigned int channel,
1449 unsigned int id, unsigned int lun, int rescan)
1450{
Jeff Garzik3bf743e2005-10-24 18:04:06 -04001451 SCSI_LOG_SCAN_BUS(3, shost_printk (KERN_INFO, shost,
1452 "%s: <%u:%u:%u>\n",
1453 __FUNCTION__, channel, id, lun));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454
1455 if (((channel != SCAN_WILD_CARD) && (channel > shost->max_channel)) ||
1456 ((id != SCAN_WILD_CARD) && (id > shost->max_id)) ||
1457 ((lun != SCAN_WILD_CARD) && (lun > shost->max_lun)))
1458 return -EINVAL;
1459
Arjan van de Ven0b950672006-01-11 13:16:10 +01001460 mutex_lock(&shost->scan_mutex);
Mike Anderson82f29462005-06-16 11:14:33 -07001461 if (scsi_host_scan_allowed(shost)) {
1462 if (channel == SCAN_WILD_CARD)
1463 for (channel = 0; channel <= shost->max_channel;
1464 channel++)
1465 scsi_scan_channel(shost, channel, id, lun,
1466 rescan);
1467 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468 scsi_scan_channel(shost, channel, id, lun, rescan);
Mike Anderson82f29462005-06-16 11:14:33 -07001469 }
Arjan van de Ven0b950672006-01-11 13:16:10 +01001470 mutex_unlock(&shost->scan_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471
1472 return 0;
1473}
1474
1475/**
1476 * scsi_scan_host - scan the given adapter
1477 * @shost: adapter to scan
1478 **/
1479void scsi_scan_host(struct Scsi_Host *shost)
1480{
1481 scsi_scan_host_selected(shost, SCAN_WILD_CARD, SCAN_WILD_CARD,
1482 SCAN_WILD_CARD, 0);
1483}
1484EXPORT_SYMBOL(scsi_scan_host);
1485
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486void scsi_forget_host(struct Scsi_Host *shost)
1487{
Alan Sterna64358d2005-07-26 10:27:10 -04001488 struct scsi_device *sdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489 unsigned long flags;
1490
Alan Sterna64358d2005-07-26 10:27:10 -04001491 restart:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492 spin_lock_irqsave(shost->host_lock, flags);
Alan Sterna64358d2005-07-26 10:27:10 -04001493 list_for_each_entry(sdev, &shost->__devices, siblings) {
1494 if (sdev->sdev_state == SDEV_DEL)
1495 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496 spin_unlock_irqrestore(shost->host_lock, flags);
Alan Sterna64358d2005-07-26 10:27:10 -04001497 __scsi_remove_device(sdev);
1498 goto restart;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499 }
1500 spin_unlock_irqrestore(shost->host_lock, flags);
1501}
1502
1503/*
1504 * Function: scsi_get_host_dev()
1505 *
Christoph Hellwigf64a1812005-10-31 18:32:08 +01001506 * Purpose: Create a scsi_device that points to the host adapter itself.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507 *
Christoph Hellwigf64a1812005-10-31 18:32:08 +01001508 * Arguments: SHpnt - Host that needs a scsi_device
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509 *
1510 * Lock status: None assumed.
1511 *
Christoph Hellwigf64a1812005-10-31 18:32:08 +01001512 * Returns: The scsi_device or NULL
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513 *
1514 * Notes:
Christoph Hellwigf64a1812005-10-31 18:32:08 +01001515 * Attach a single scsi_device to the Scsi_Host - this should
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516 * be made to look like a "pseudo-device" that points to the
1517 * HA itself.
1518 *
1519 * Note - this device is not accessible from any high-level
1520 * drivers (including generics), which is probably not
1521 * optimal. We can add hooks later to attach
1522 */
1523struct scsi_device *scsi_get_host_dev(struct Scsi_Host *shost)
1524{
Alan Sterne517d312005-07-26 10:18:45 -04001525 struct scsi_device *sdev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526 struct scsi_target *starget;
1527
Arjan van de Ven0b950672006-01-11 13:16:10 +01001528 mutex_lock(&shost->scan_mutex);
Alan Sterne517d312005-07-26 10:18:45 -04001529 if (!scsi_host_scan_allowed(shost))
1530 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531 starget = scsi_alloc_target(&shost->shost_gendev, 0, shost->this_id);
1532 if (!starget)
Alan Sterne517d312005-07-26 10:18:45 -04001533 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534
1535 sdev = scsi_alloc_sdev(starget, 0, NULL);
1536 if (sdev) {
1537 sdev->sdev_gendev.parent = get_device(&starget->dev);
1538 sdev->borken = 0;
1539 }
1540 put_device(&starget->dev);
Alan Sterne517d312005-07-26 10:18:45 -04001541 out:
Arjan van de Ven0b950672006-01-11 13:16:10 +01001542 mutex_unlock(&shost->scan_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543 return sdev;
1544}
1545EXPORT_SYMBOL(scsi_get_host_dev);
1546
1547/*
1548 * Function: scsi_free_host_dev()
1549 *
1550 * Purpose: Free a scsi_device that points to the host adapter itself.
1551 *
Christoph Hellwigf64a1812005-10-31 18:32:08 +01001552 * Arguments: SHpnt - Host that needs a scsi_device
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553 *
1554 * Lock status: None assumed.
1555 *
1556 * Returns: Nothing
1557 *
1558 * Notes:
1559 */
1560void scsi_free_host_dev(struct scsi_device *sdev)
1561{
1562 BUG_ON(sdev->id != sdev->host->this_id);
1563
James Bottomley6f3a2022005-09-22 20:33:28 -05001564 scsi_destroy_sdev(sdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565}
1566EXPORT_SYMBOL(scsi_free_host_dev);
1567