ALSA: hda - Add quirk for Dell Vostro 1220
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / scsi / hosts.c
blob6660fa92ffa149a3419ca3c87f7744453e3706fb
1 /*
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
10 * <drew@colorado.edu>
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>
30 #include <linux/mm.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 = {
53 .name = "scsi_host",
54 .dev_release = scsi_host_cls_release,
57 /**
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.
64 **/
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)
70 return 0;
72 switch (state) {
73 case SHOST_CREATED:
74 /* There are no legal states that come back to
75 * created. This is the manually initialised start
76 * state */
77 goto illegal;
79 case SHOST_RUNNING:
80 switch (oldstate) {
81 case SHOST_CREATED:
82 case SHOST_RECOVERY:
83 break;
84 default:
85 goto illegal;
87 break;
89 case SHOST_RECOVERY:
90 switch (oldstate) {
91 case SHOST_RUNNING:
92 break;
93 default:
94 goto illegal;
96 break;
98 case SHOST_CANCEL:
99 switch (oldstate) {
100 case SHOST_CREATED:
101 case SHOST_RUNNING:
102 case SHOST_CANCEL_RECOVERY:
103 break;
104 default:
105 goto illegal;
107 break;
109 case SHOST_DEL:
110 switch (oldstate) {
111 case SHOST_CANCEL:
112 case SHOST_DEL_RECOVERY:
113 break;
114 default:
115 goto illegal;
117 break;
119 case SHOST_CANCEL_RECOVERY:
120 switch (oldstate) {
121 case SHOST_CANCEL:
122 case SHOST_RECOVERY:
123 break;
124 default:
125 goto illegal;
127 break;
129 case SHOST_DEL_RECOVERY:
130 switch (oldstate) {
131 case SHOST_CANCEL_RECOVERY:
132 break;
133 default:
134 goto illegal;
136 break;
138 shost->shost_state = state;
139 return 0;
141 illegal:
142 SCSI_LOG_ERROR_RECOVERY(1,
143 shost_printk(KERN_ERR, shost,
144 "Illegal host state transition"
145 "%s->%s\n",
146 scsi_host_state_name(oldstate),
147 scsi_host_state_name(state)));
148 return -EINVAL;
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)
158 unsigned long flags;
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);
165 return;
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()
191 * function instead.
193 * Return value:
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;
200 int error = -EINVAL;
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",
207 sht->name);
208 goto fail;
211 error = scsi_setup_command_freelist(shost);
212 if (error)
213 goto fail;
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);
222 if (error)
223 goto out;
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);
231 if (error)
232 goto out_del_gendev;
234 get_device(&shost->shost_gendev);
236 if (shost->transportt->host_size) {
237 shost->shost_data = kzalloc(shost->transportt->host_size,
238 GFP_KERNEL);
239 if (shost->shost_data == NULL) {
240 error = -ENOMEM;
241 goto out_del_dev;
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(
249 shost->work_q_name);
250 if (!shost->work_q) {
251 error = -EINVAL;
252 goto out_free_shost_data;
256 error = scsi_sysfs_add_host(shost);
257 if (error)
258 goto out_destroy_host;
260 scsi_proc_host_add(shost);
261 return error;
263 out_destroy_host:
264 if (shost->work_q)
265 destroy_workqueue(shost->work_q);
266 out_free_shost_data:
267 kfree(shost->shost_data);
268 out_del_dev:
269 device_del(&shost->shost_dev);
270 out_del_gendev:
271 device_del(&shost->shost_gendev);
272 out:
273 scsi_destroy_command_freelist(shost);
274 fail:
275 return error;
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);
286 if (shost->ehandler)
287 kthread_stop(shost->ehandler);
288 if (shost->work_q)
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);
296 if (shost->bqt)
297 blk_free_tags(shost->bqt);
299 kfree(shost->shost_data);
301 if (parent)
302 put_device(parent);
303 kfree(shost);
306 static struct device_type scsi_host_type = {
307 .name = "scsi_host",
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
316 * Note:
317 * Allocate a new Scsi_Host and perform basic initialization.
318 * The host is not published to the scsi midlayer until scsi_add_host
319 * is called.
321 * Return value:
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;
328 int rval;
330 if (sht->unchecked_isa_dma && privsize)
331 gfp_mask |= __GFP_DMA;
333 shost = kzalloc(sizeof(struct Scsi_Host) + privsize, gfp_mask);
334 if (!shost)
335 return NULL;
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;
357 shost->max_id = 8;
358 shost->max_lun = 8;
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;
370 shost->hostt = sht;
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;
382 else
383 shost->active_mode = sht->supported_mode;
385 if (sht->max_host_blocked)
386 shost->max_host_blocked = sht->max_host_blocked;
387 else
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;
396 else
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;
404 else
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;
411 #endif
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);
424 goto fail_kfree;
427 scsi_proc_hostdir_add(shost->hostt);
428 return shost;
430 fail_kfree:
431 kfree(shost);
432 return NULL;
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);
440 if (!sht->detect) {
441 printk(KERN_WARNING "scsi_register() called on new-style "
442 "template for driver %s\n", sht->name);
443 dump_stack();
446 if (shost)
447 list_add_tail(&shost->sht_legacy_list, &sht->legacy_hosts);
448 return shost;
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)
461 struct Scsi_Host *p;
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
472 * Return value:
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)
481 struct device *cdev;
482 struct Scsi_Host *shost = NULL;
484 cdev = class_find_device(&shost_class, NULL, &hostnum,
485 __scsi_host_match);
486 if (cdev) {
487 shost = scsi_host_get(class_to_shost(cdev));
488 put_device(cdev);
490 return shost;
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))
502 return NULL;
503 return shost;
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.
538 * Return value:
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)) {
546 printk(KERN_ERR
547 "ERROR: Scsi host '%s' attempted to queue scsi-work, "
548 "when no workqueue created.\n", shost->hostt->name);
549 dump_stack();
551 return -EINVAL;
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) {
565 printk(KERN_ERR
566 "ERROR: Scsi host '%s' attempted to flush scsi-work, "
567 "when no workqueue created.\n", shost->hostt->name);
568 dump_stack();
569 return;
572 flush_workqueue(shost->work_q);
574 EXPORT_SYMBOL_GPL(scsi_flush_work);