2 * hosts.c Copyright (C) 1992 Drew Eckhardt
3 * Copyright (C) 1993, 1994, 1995 Eric Youngdale
4 * Copyright (C) 2002-2003 Christoph Hellwig
6 * mid to lowlevel SCSI driver interface
7 * Initial versions: Drew Eckhardt
8 * Subsequent revisions: Eric Youngdale
12 * Jiffies wrap fixes (host->resetting), 3 Dec 1998 Andrea Arcangeli
13 * Added QLOGIC QLA1280 SCSI controller kernel host support.
14 * August 4, 1999 Fred Lewis, Intel DuPont
16 * Updated to reflect the new initialization scheme for the higher
17 * level of scsi drivers (sd/sr/st)
18 * September 17, 2000 Torben Mathiasen <tmm@image.dk>
20 * Restructured scsi_host lists and associated functions.
21 * September 04, 2002 Mike Anderson (andmike@us.ibm.com)
24 #include <linux/module.h>
25 #include <linux/blkdev.h>
26 #include <linux/kernel.h>
27 #include <linux/slab.h>
28 #include <linux/kthread.h>
29 #include <linux/string.h>
31 #include <linux/init.h>
32 #include <linux/completion.h>
33 #include <linux/transport_class.h>
34 #include <linux/platform_device.h>
36 #include <scsi/scsi_device.h>
37 #include <scsi/scsi_host.h>
38 #include <scsi/scsi_transport.h>
40 #include "scsi_priv.h"
41 #include "scsi_logging.h"
44 static atomic_t scsi_host_next_hn
; /* host_no for next new host */
47 static void scsi_host_cls_release(struct device
*dev
)
49 put_device(&class_to_shost(dev
)->shost_gendev
);
52 static struct class shost_class
= {
54 .dev_release
= scsi_host_cls_release
,
58 * scsi_host_set_state - Take the given host through the host state model.
59 * @shost: scsi host to change the state of.
60 * @state: state to change to.
62 * Returns zero if unsuccessful or an error if the requested
63 * transition is illegal.
65 int scsi_host_set_state(struct Scsi_Host
*shost
, enum scsi_host_state state
)
67 enum scsi_host_state oldstate
= shost
->shost_state
;
69 if (state
== oldstate
)
74 /* There are no legal states that come back to
75 * created. This is the manually initialised start
102 case SHOST_CANCEL_RECOVERY
:
112 case SHOST_DEL_RECOVERY
:
119 case SHOST_CANCEL_RECOVERY
:
129 case SHOST_DEL_RECOVERY
:
131 case SHOST_CANCEL_RECOVERY
:
138 shost
->shost_state
= state
;
142 SCSI_LOG_ERROR_RECOVERY(1,
143 shost_printk(KERN_ERR
, shost
,
144 "Illegal host state transition"
146 scsi_host_state_name(oldstate
),
147 scsi_host_state_name(state
)));
150 EXPORT_SYMBOL(scsi_host_set_state
);
153 * scsi_remove_host - remove a scsi host
154 * @shost: a pointer to a scsi host to remove
156 void scsi_remove_host(struct Scsi_Host
*shost
)
159 mutex_lock(&shost
->scan_mutex
);
160 spin_lock_irqsave(shost
->host_lock
, flags
);
161 if (scsi_host_set_state(shost
, SHOST_CANCEL
))
162 if (scsi_host_set_state(shost
, SHOST_CANCEL_RECOVERY
)) {
163 spin_unlock_irqrestore(shost
->host_lock
, flags
);
164 mutex_unlock(&shost
->scan_mutex
);
167 spin_unlock_irqrestore(shost
->host_lock
, flags
);
168 scsi_forget_host(shost
);
169 mutex_unlock(&shost
->scan_mutex
);
170 scsi_proc_host_rm(shost
);
172 spin_lock_irqsave(shost
->host_lock
, flags
);
173 if (scsi_host_set_state(shost
, SHOST_DEL
))
174 BUG_ON(scsi_host_set_state(shost
, SHOST_DEL_RECOVERY
));
175 spin_unlock_irqrestore(shost
->host_lock
, flags
);
177 transport_unregister_device(&shost
->shost_gendev
);
178 device_unregister(&shost
->shost_dev
);
179 device_del(&shost
->shost_gendev
);
181 EXPORT_SYMBOL(scsi_remove_host
);
184 * scsi_add_host_with_dma - add a scsi host with dma device
185 * @shost: scsi host pointer to add
186 * @dev: a struct device of type scsi class
187 * @dma_dev: dma device for the host
189 * Note: You rarely need to worry about this unless you're in a
190 * virtualised host environments, so use the simpler scsi_add_host()
194 * 0 on success / != 0 for error
196 int scsi_add_host_with_dma(struct Scsi_Host
*shost
, struct device
*dev
,
197 struct device
*dma_dev
)
199 struct scsi_host_template
*sht
= shost
->hostt
;
202 printk(KERN_INFO
"scsi%d : %s\n", shost
->host_no
,
203 sht
->info
? sht
->info(shost
) : sht
->name
);
205 if (!shost
->can_queue
) {
206 printk(KERN_ERR
"%s: can_queue = 0 no longer supported\n",
211 error
= scsi_setup_command_freelist(shost
);
215 if (!shost
->shost_gendev
.parent
)
216 shost
->shost_gendev
.parent
= dev
? dev
: &platform_bus
;
217 shost
->dma_dev
= dma_dev
;
219 device_enable_async_suspend(&shost
->shost_gendev
);
221 error
= device_add(&shost
->shost_gendev
);
225 scsi_host_set_state(shost
, SHOST_RUNNING
);
226 get_device(shost
->shost_gendev
.parent
);
228 device_enable_async_suspend(&shost
->shost_dev
);
230 error
= device_add(&shost
->shost_dev
);
234 get_device(&shost
->shost_gendev
);
236 if (shost
->transportt
->host_size
) {
237 shost
->shost_data
= kzalloc(shost
->transportt
->host_size
,
239 if (shost
->shost_data
== NULL
) {
245 if (shost
->transportt
->create_work_queue
) {
246 snprintf(shost
->work_q_name
, sizeof(shost
->work_q_name
),
247 "scsi_wq_%d", shost
->host_no
);
248 shost
->work_q
= create_singlethread_workqueue(
250 if (!shost
->work_q
) {
252 goto out_free_shost_data
;
256 error
= scsi_sysfs_add_host(shost
);
258 goto out_destroy_host
;
260 scsi_proc_host_add(shost
);
265 destroy_workqueue(shost
->work_q
);
267 kfree(shost
->shost_data
);
269 device_del(&shost
->shost_dev
);
271 device_del(&shost
->shost_gendev
);
273 scsi_destroy_command_freelist(shost
);
277 EXPORT_SYMBOL(scsi_add_host_with_dma
);
279 static void scsi_host_dev_release(struct device
*dev
)
281 struct Scsi_Host
*shost
= dev_to_shost(dev
);
282 struct device
*parent
= dev
->parent
;
284 scsi_proc_hostdir_rm(shost
->hostt
);
287 kthread_stop(shost
->ehandler
);
289 destroy_workqueue(shost
->work_q
);
290 if (shost
->uspace_req_q
) {
291 kfree(shost
->uspace_req_q
->queuedata
);
292 scsi_free_queue(shost
->uspace_req_q
);
295 scsi_destroy_command_freelist(shost
);
297 blk_free_tags(shost
->bqt
);
299 kfree(shost
->shost_data
);
306 static struct device_type scsi_host_type
= {
308 .release
= scsi_host_dev_release
,
312 * scsi_host_alloc - register a scsi host adapter instance.
313 * @sht: pointer to scsi host template
314 * @privsize: extra bytes to allocate for driver
317 * Allocate a new Scsi_Host and perform basic initialization.
318 * The host is not published to the scsi midlayer until scsi_add_host
322 * Pointer to a new Scsi_Host
324 struct Scsi_Host
*scsi_host_alloc(struct scsi_host_template
*sht
, int privsize
)
326 struct Scsi_Host
*shost
;
327 gfp_t gfp_mask
= GFP_KERNEL
;
330 if (sht
->unchecked_isa_dma
&& privsize
)
331 gfp_mask
|= __GFP_DMA
;
333 shost
= kzalloc(sizeof(struct Scsi_Host
) + privsize
, gfp_mask
);
337 shost
->host_lock
= &shost
->default_lock
;
338 spin_lock_init(shost
->host_lock
);
339 shost
->shost_state
= SHOST_CREATED
;
340 INIT_LIST_HEAD(&shost
->__devices
);
341 INIT_LIST_HEAD(&shost
->__targets
);
342 INIT_LIST_HEAD(&shost
->eh_cmd_q
);
343 INIT_LIST_HEAD(&shost
->starved_list
);
344 init_waitqueue_head(&shost
->host_wait
);
346 mutex_init(&shost
->scan_mutex
);
349 * subtract one because we increment first then return, but we need to
350 * know what the next host number was before increment
352 shost
->host_no
= atomic_inc_return(&scsi_host_next_hn
) - 1;
353 shost
->dma_channel
= 0xff;
355 /* These three are default values which can be overridden */
356 shost
->max_channel
= 0;
360 /* Give each shost a default transportt */
361 shost
->transportt
= &blank_transport_template
;
364 * All drivers right now should be able to handle 12 byte
365 * commands. Every so often there are requests for 16 byte
366 * commands, but individual low-level drivers need to certify that
367 * they actually do something sensible with such commands.
369 shost
->max_cmd_len
= 12;
371 shost
->this_id
= sht
->this_id
;
372 shost
->can_queue
= sht
->can_queue
;
373 shost
->sg_tablesize
= sht
->sg_tablesize
;
374 shost
->cmd_per_lun
= sht
->cmd_per_lun
;
375 shost
->unchecked_isa_dma
= sht
->unchecked_isa_dma
;
376 shost
->use_clustering
= sht
->use_clustering
;
377 shost
->ordered_tag
= sht
->ordered_tag
;
379 if (sht
->supported_mode
== MODE_UNKNOWN
)
380 /* means we didn't set it ... default to INITIATOR */
381 shost
->active_mode
= MODE_INITIATOR
;
383 shost
->active_mode
= sht
->supported_mode
;
385 if (sht
->max_host_blocked
)
386 shost
->max_host_blocked
= sht
->max_host_blocked
;
388 shost
->max_host_blocked
= SCSI_DEFAULT_HOST_BLOCKED
;
391 * If the driver imposes no hard sector transfer limit, start at
392 * machine infinity initially.
394 if (sht
->max_sectors
)
395 shost
->max_sectors
= sht
->max_sectors
;
397 shost
->max_sectors
= SCSI_DEFAULT_MAX_SECTORS
;
400 * assume a 4GB boundary, if not set
402 if (sht
->dma_boundary
)
403 shost
->dma_boundary
= sht
->dma_boundary
;
405 shost
->dma_boundary
= 0xffffffff;
407 device_initialize(&shost
->shost_gendev
);
408 dev_set_name(&shost
->shost_gendev
, "host%d", shost
->host_no
);
409 #ifndef CONFIG_SYSFS_DEPRECATED
410 shost
->shost_gendev
.bus
= &scsi_bus_type
;
412 shost
->shost_gendev
.type
= &scsi_host_type
;
414 device_initialize(&shost
->shost_dev
);
415 shost
->shost_dev
.parent
= &shost
->shost_gendev
;
416 shost
->shost_dev
.class = &shost_class
;
417 dev_set_name(&shost
->shost_dev
, "host%d", shost
->host_no
);
418 shost
->shost_dev
.groups
= scsi_sysfs_shost_attr_groups
;
420 shost
->ehandler
= kthread_run(scsi_error_handler
, shost
,
421 "scsi_eh_%d", shost
->host_no
);
422 if (IS_ERR(shost
->ehandler
)) {
423 rval
= PTR_ERR(shost
->ehandler
);
427 scsi_proc_hostdir_add(shost
->hostt
);
434 EXPORT_SYMBOL(scsi_host_alloc
);
436 struct Scsi_Host
*scsi_register(struct scsi_host_template
*sht
, int privsize
)
438 struct Scsi_Host
*shost
= scsi_host_alloc(sht
, privsize
);
441 printk(KERN_WARNING
"scsi_register() called on new-style "
442 "template for driver %s\n", sht
->name
);
447 list_add_tail(&shost
->sht_legacy_list
, &sht
->legacy_hosts
);
450 EXPORT_SYMBOL(scsi_register
);
452 void scsi_unregister(struct Scsi_Host
*shost
)
454 list_del(&shost
->sht_legacy_list
);
455 scsi_host_put(shost
);
457 EXPORT_SYMBOL(scsi_unregister
);
459 static int __scsi_host_match(struct device
*dev
, void *data
)
462 unsigned short *hostnum
= (unsigned short *)data
;
464 p
= class_to_shost(dev
);
465 return p
->host_no
== *hostnum
;
469 * scsi_host_lookup - get a reference to a Scsi_Host by host no
470 * @hostnum: host number to locate
473 * A pointer to located Scsi_Host or NULL.
475 * The caller must do a scsi_host_put() to drop the reference
476 * that scsi_host_get() took. The put_device() below dropped
477 * the reference from class_find_device().
479 struct Scsi_Host
*scsi_host_lookup(unsigned short hostnum
)
482 struct Scsi_Host
*shost
= NULL
;
484 cdev
= class_find_device(&shost_class
, NULL
, &hostnum
,
487 shost
= scsi_host_get(class_to_shost(cdev
));
492 EXPORT_SYMBOL(scsi_host_lookup
);
495 * scsi_host_get - inc a Scsi_Host ref count
496 * @shost: Pointer to Scsi_Host to inc.
498 struct Scsi_Host
*scsi_host_get(struct Scsi_Host
*shost
)
500 if ((shost
->shost_state
== SHOST_DEL
) ||
501 !get_device(&shost
->shost_gendev
))
505 EXPORT_SYMBOL(scsi_host_get
);
508 * scsi_host_put - dec a Scsi_Host ref count
509 * @shost: Pointer to Scsi_Host to dec.
511 void scsi_host_put(struct Scsi_Host
*shost
)
513 put_device(&shost
->shost_gendev
);
515 EXPORT_SYMBOL(scsi_host_put
);
517 int scsi_init_hosts(void)
519 return class_register(&shost_class
);
522 void scsi_exit_hosts(void)
524 class_unregister(&shost_class
);
527 int scsi_is_host_device(const struct device
*dev
)
529 return dev
->type
== &scsi_host_type
;
531 EXPORT_SYMBOL(scsi_is_host_device
);
534 * scsi_queue_work - Queue work to the Scsi_Host workqueue.
535 * @shost: Pointer to Scsi_Host.
536 * @work: Work to queue for execution.
539 * 1 - work queued for execution
540 * 0 - work is already queued
541 * -EINVAL - work queue doesn't exist
543 int scsi_queue_work(struct Scsi_Host
*shost
, struct work_struct
*work
)
545 if (unlikely(!shost
->work_q
)) {
547 "ERROR: Scsi host '%s' attempted to queue scsi-work, "
548 "when no workqueue created.\n", shost
->hostt
->name
);
554 return queue_work(shost
->work_q
, work
);
556 EXPORT_SYMBOL_GPL(scsi_queue_work
);
559 * scsi_flush_work - Flush a Scsi_Host's workqueue.
560 * @shost: Pointer to Scsi_Host.
562 void scsi_flush_work(struct Scsi_Host
*shost
)
564 if (!shost
->work_q
) {
566 "ERROR: Scsi host '%s' attempted to flush scsi-work, "
567 "when no workqueue created.\n", shost
->hostt
->name
);
572 flush_workqueue(shost
->work_q
);
574 EXPORT_SYMBOL_GPL(scsi_flush_work
);