2 * File...........: linux/drivers/s390/block/dasd.c
3 * Author(s)......: Holger Smolinski <Holger.Smolinski@de.ibm.com>
4 * Horst Hummel <Horst.Hummel@de.ibm.com>
5 * Carsten Otte <Cotte@de.ibm.com>
6 * Martin Schwidefsky <schwidefsky@de.ibm.com>
7 * Bugreports.to..: <Linux390@de.ibm.com>
8 * (C) IBM Corporation, IBM Deutschland Entwicklung GmbH, 1999-2001
12 #include <linux/config.h>
13 #include <linux/kmod.h>
14 #include <linux/init.h>
15 #include <linux/interrupt.h>
16 #include <linux/ctype.h>
17 #include <linux/major.h>
18 #include <linux/slab.h>
19 #include <linux/buffer_head.h>
20 #include <linux/hdreg.h>
22 #include <asm/ccwdev.h>
23 #include <asm/ebcdic.h>
24 #include <asm/idals.h>
25 #include <asm/todclk.h>
28 #define PRINTK_HEADER "dasd:"
32 * SECTION: Constant definitions to be used within this file
34 #define DASD_CHANQ_MAX_SIZE 4
37 * SECTION: exported variables of dasd.c
39 debug_info_t *dasd_debug_area;
40 struct dasd_discipline *dasd_diag_discipline_pointer;
42 MODULE_AUTHOR("Holger Smolinski <Holger.Smolinski@de.ibm.com>");
43 MODULE_DESCRIPTION("Linux on S/390 DASD device driver,"
44 " Copyright 2000 IBM Corporation");
45 MODULE_SUPPORTED_DEVICE("dasd");
46 MODULE_PARM(dasd, "1-" __MODULE_STRING(256) "s");
47 MODULE_LICENSE("GPL");
50 * SECTION: prototypes for static functions of dasd.c
52 static int dasd_alloc_queue(struct dasd_device * device);
53 static void dasd_setup_queue(struct dasd_device * device);
54 static void dasd_free_queue(struct dasd_device * device);
55 static void dasd_flush_request_queue(struct dasd_device *);
56 static void dasd_int_handler(struct ccw_device *, unsigned long, struct irb *);
57 static void dasd_flush_ccw_queue(struct dasd_device *, int);
58 static void dasd_tasklet(struct dasd_device *);
59 static void do_kick_device(void *data);
62 * SECTION: Operations on the device structure.
64 static wait_queue_head_t dasd_init_waitq;
67 * Allocate memory for a new device structure.
70 dasd_alloc_device(void)
72 struct dasd_device *device;
74 device = kzalloc(sizeof (struct dasd_device), GFP_ATOMIC);
76 return ERR_PTR(-ENOMEM);
77 /* open_count = 0 means device online but not in use */
78 atomic_set(&device->open_count, -1);
80 /* Get two pages for normal block device operations. */
81 device->ccw_mem = (void *) __get_free_pages(GFP_ATOMIC | GFP_DMA, 1);
82 if (device->ccw_mem == NULL) {
84 return ERR_PTR(-ENOMEM);
86 /* Get one page for error recovery. */
87 device->erp_mem = (void *) get_zeroed_page(GFP_ATOMIC | GFP_DMA);
88 if (device->erp_mem == NULL) {
89 free_pages((unsigned long) device->ccw_mem, 1);
91 return ERR_PTR(-ENOMEM);
94 dasd_init_chunklist(&device->ccw_chunks, device->ccw_mem, PAGE_SIZE*2);
95 dasd_init_chunklist(&device->erp_chunks, device->erp_mem, PAGE_SIZE);
96 spin_lock_init(&device->mem_lock);
97 spin_lock_init(&device->request_queue_lock);
98 atomic_set (&device->tasklet_scheduled, 0);
99 tasklet_init(&device->tasklet,
100 (void (*)(unsigned long)) dasd_tasklet,
101 (unsigned long) device);
102 INIT_LIST_HEAD(&device->ccw_queue);
103 init_timer(&device->timer);
104 INIT_WORK(&device->kick_work, do_kick_device, device);
105 device->state = DASD_STATE_NEW;
106 device->target = DASD_STATE_NEW;
112 * Free memory of a device structure.
115 dasd_free_device(struct dasd_device *device)
117 kfree(device->private);
118 free_page((unsigned long) device->erp_mem);
119 free_pages((unsigned long) device->ccw_mem, 1);
124 * Make a new device known to the system.
127 dasd_state_new_to_known(struct dasd_device *device)
132 * As long as the device is not in state DASD_STATE_NEW we want to
133 * keep the reference count > 0.
135 dasd_get_device(device);
137 rc = dasd_alloc_queue(device);
139 dasd_put_device(device);
143 device->state = DASD_STATE_KNOWN;
148 * Let the system forget about a device.
151 dasd_state_known_to_new(struct dasd_device * device)
153 /* Disable extended error reporting for this device. */
154 dasd_eer_disable(device);
155 /* Forget the discipline information. */
156 if (device->discipline)
157 module_put(device->discipline->owner);
158 device->discipline = NULL;
159 if (device->base_discipline)
160 module_put(device->base_discipline->owner);
161 device->base_discipline = NULL;
162 device->state = DASD_STATE_NEW;
164 dasd_free_queue(device);
166 /* Give up reference we took in dasd_state_new_to_known. */
167 dasd_put_device(device);
171 * Request the irq line for the device.
174 dasd_state_known_to_basic(struct dasd_device * device)
178 /* Allocate and register gendisk structure. */
179 rc = dasd_gendisk_alloc(device);
183 /* register 'device' debug area, used for all DBF_DEV_XXX calls */
184 device->debug_area = debug_register(device->cdev->dev.bus_id, 1, 2,
186 debug_register_view(device->debug_area, &debug_sprintf_view);
187 debug_set_level(device->debug_area, DBF_EMERG);
188 DBF_DEV_EVENT(DBF_EMERG, device, "%s", "debug area created");
190 device->state = DASD_STATE_BASIC;
195 * Release the irq line for the device. Terminate any running i/o.
198 dasd_state_basic_to_known(struct dasd_device * device)
200 dasd_gendisk_free(device);
201 dasd_flush_ccw_queue(device, 1);
202 DBF_DEV_EVENT(DBF_EMERG, device, "%p debug area deleted", device);
203 if (device->debug_area != NULL) {
204 debug_unregister(device->debug_area);
205 device->debug_area = NULL;
207 device->state = DASD_STATE_KNOWN;
211 * Do the initial analysis. The do_analysis function may return
212 * -EAGAIN in which case the device keeps the state DASD_STATE_BASIC
213 * until the discipline decides to continue the startup sequence
214 * by calling the function dasd_change_state. The eckd disciplines
215 * uses this to start a ccw that detects the format. The completion
216 * interrupt for this detection ccw uses the kernel event daemon to
217 * trigger the call to dasd_change_state. All this is done in the
218 * discipline code, see dasd_eckd.c.
219 * After the analysis ccw is done (do_analysis returned 0) the block
221 * In case the analysis returns an error, the device setup is stopped
222 * (a fake disk was already added to allow formatting).
225 dasd_state_basic_to_ready(struct dasd_device * device)
230 if (device->discipline->do_analysis != NULL)
231 rc = device->discipline->do_analysis(device);
234 device->state = DASD_STATE_UNFMT;
237 /* make disk known with correct capacity */
238 dasd_setup_queue(device);
239 set_capacity(device->gdp, device->blocks << device->s2b_shift);
240 device->state = DASD_STATE_READY;
241 rc = dasd_scan_partitions(device);
243 device->state = DASD_STATE_BASIC;
248 * Remove device from block device layer. Destroy dirty buffers.
249 * Forget format information. Check if the target level is basic
250 * and if it is create fake disk for formatting.
253 dasd_state_ready_to_basic(struct dasd_device * device)
255 dasd_flush_ccw_queue(device, 0);
256 dasd_destroy_partitions(device);
257 dasd_flush_request_queue(device);
259 device->bp_block = 0;
260 device->s2b_shift = 0;
261 device->state = DASD_STATE_BASIC;
268 dasd_state_unfmt_to_basic(struct dasd_device * device)
270 device->state = DASD_STATE_BASIC;
274 * Make the device online and schedule the bottom half to start
275 * the requeueing of requests from the linux request queue to the
279 dasd_state_ready_to_online(struct dasd_device * device)
281 device->state = DASD_STATE_ONLINE;
282 dasd_schedule_bh(device);
287 * Stop the requeueing of requests again.
290 dasd_state_online_to_ready(struct dasd_device * device)
292 device->state = DASD_STATE_READY;
296 * Device startup state changes.
299 dasd_increase_state(struct dasd_device *device)
304 if (device->state == DASD_STATE_NEW &&
305 device->target >= DASD_STATE_KNOWN)
306 rc = dasd_state_new_to_known(device);
309 device->state == DASD_STATE_KNOWN &&
310 device->target >= DASD_STATE_BASIC)
311 rc = dasd_state_known_to_basic(device);
314 device->state == DASD_STATE_BASIC &&
315 device->target >= DASD_STATE_READY)
316 rc = dasd_state_basic_to_ready(device);
319 device->state == DASD_STATE_READY &&
320 device->target >= DASD_STATE_ONLINE)
321 rc = dasd_state_ready_to_online(device);
327 * Device shutdown state changes.
330 dasd_decrease_state(struct dasd_device *device)
332 if (device->state == DASD_STATE_ONLINE &&
333 device->target <= DASD_STATE_READY)
334 dasd_state_online_to_ready(device);
336 if (device->state == DASD_STATE_READY &&
337 device->target <= DASD_STATE_BASIC)
338 dasd_state_ready_to_basic(device);
340 if (device->state == DASD_STATE_UNFMT &&
341 device->target <= DASD_STATE_BASIC)
342 dasd_state_unfmt_to_basic(device);
344 if (device->state == DASD_STATE_BASIC &&
345 device->target <= DASD_STATE_KNOWN)
346 dasd_state_basic_to_known(device);
348 if (device->state == DASD_STATE_KNOWN &&
349 device->target <= DASD_STATE_NEW)
350 dasd_state_known_to_new(device);
356 * This is the main startup/shutdown routine.
359 dasd_change_state(struct dasd_device *device)
363 if (device->state == device->target)
364 /* Already where we want to go today... */
366 if (device->state < device->target)
367 rc = dasd_increase_state(device);
369 rc = dasd_decrease_state(device);
370 if (rc && rc != -EAGAIN)
371 device->target = device->state;
373 if (device->state == device->target)
374 wake_up(&dasd_init_waitq);
378 * Kick starter for devices that did not complete the startup/shutdown
379 * procedure or were sleeping because of a pending state.
380 * dasd_kick_device will schedule a call do do_kick_device to the kernel
384 do_kick_device(void *data)
386 struct dasd_device *device;
388 device = (struct dasd_device *) data;
389 dasd_change_state(device);
390 dasd_schedule_bh(device);
391 dasd_put_device(device);
395 dasd_kick_device(struct dasd_device *device)
397 dasd_get_device(device);
398 /* queue call to dasd_kick_device to the kernel event daemon. */
399 schedule_work(&device->kick_work);
403 * Set the target state for a device and starts the state change.
406 dasd_set_target_state(struct dasd_device *device, int target)
408 /* If we are in probeonly mode stop at DASD_STATE_READY. */
409 if (dasd_probeonly && target > DASD_STATE_READY)
410 target = DASD_STATE_READY;
411 if (device->target != target) {
412 if (device->state == target)
413 wake_up(&dasd_init_waitq);
414 device->target = target;
416 if (device->state != device->target)
417 dasd_change_state(device);
421 * Enable devices with device numbers in [from..to].
424 _wait_for_device(struct dasd_device *device)
426 return (device->state == device->target);
430 dasd_enable_device(struct dasd_device *device)
432 dasd_set_target_state(device, DASD_STATE_ONLINE);
433 if (device->state <= DASD_STATE_KNOWN)
434 /* No discipline for device found. */
435 dasd_set_target_state(device, DASD_STATE_NEW);
436 /* Now wait for the devices to come up. */
437 wait_event(dasd_init_waitq, _wait_for_device(device));
441 * SECTION: device operation (interrupt handler, start i/o, term i/o ...)
443 #ifdef CONFIG_DASD_PROFILE
445 struct dasd_profile_info_t dasd_global_profile;
446 unsigned int dasd_profile_level = DASD_PROFILE_OFF;
449 * Increments counter in global and local profiling structures.
451 #define dasd_profile_counter(value, counter, device) \
454 for (index = 0; index < 31 && value >> (2+index); index++); \
455 dasd_global_profile.counter[index]++; \
456 device->profile.counter[index]++; \
460 * Add profiling information for cqr before execution.
463 dasd_profile_start(struct dasd_device *device, struct dasd_ccw_req * cqr,
467 unsigned int counter;
469 if (dasd_profile_level != DASD_PROFILE_ON)
472 /* count the length of the chanq for statistics */
474 list_for_each(l, &device->ccw_queue)
477 dasd_global_profile.dasd_io_nr_req[counter]++;
478 device->profile.dasd_io_nr_req[counter]++;
482 * Add profiling information for cqr after execution.
485 dasd_profile_end(struct dasd_device *device, struct dasd_ccw_req * cqr,
488 long strtime, irqtime, endtime, tottime; /* in microseconds */
489 long tottimeps, sectors;
491 if (dasd_profile_level != DASD_PROFILE_ON)
494 sectors = req->nr_sectors;
495 if (!cqr->buildclk || !cqr->startclk ||
496 !cqr->stopclk || !cqr->endclk ||
500 strtime = ((cqr->startclk - cqr->buildclk) >> 12);
501 irqtime = ((cqr->stopclk - cqr->startclk) >> 12);
502 endtime = ((cqr->endclk - cqr->stopclk) >> 12);
503 tottime = ((cqr->endclk - cqr->buildclk) >> 12);
504 tottimeps = tottime / sectors;
506 if (!dasd_global_profile.dasd_io_reqs)
507 memset(&dasd_global_profile, 0,
508 sizeof (struct dasd_profile_info_t));
509 dasd_global_profile.dasd_io_reqs++;
510 dasd_global_profile.dasd_io_sects += sectors;
512 if (!device->profile.dasd_io_reqs)
513 memset(&device->profile, 0,
514 sizeof (struct dasd_profile_info_t));
515 device->profile.dasd_io_reqs++;
516 device->profile.dasd_io_sects += sectors;
518 dasd_profile_counter(sectors, dasd_io_secs, device);
519 dasd_profile_counter(tottime, dasd_io_times, device);
520 dasd_profile_counter(tottimeps, dasd_io_timps, device);
521 dasd_profile_counter(strtime, dasd_io_time1, device);
522 dasd_profile_counter(irqtime, dasd_io_time2, device);
523 dasd_profile_counter(irqtime / sectors, dasd_io_time2ps, device);
524 dasd_profile_counter(endtime, dasd_io_time3, device);
527 #define dasd_profile_start(device, cqr, req) do {} while (0)
528 #define dasd_profile_end(device, cqr, req) do {} while (0)
529 #endif /* CONFIG_DASD_PROFILE */
532 * Allocate memory for a channel program with 'cplength' channel
533 * command words and 'datasize' additional space. There are two
534 * variantes: 1) dasd_kmalloc_request uses kmalloc to get the needed
535 * memory and 2) dasd_smalloc_request uses the static ccw memory
536 * that gets allocated for each device.
538 struct dasd_ccw_req *
539 dasd_kmalloc_request(char *magic, int cplength, int datasize,
540 struct dasd_device * device)
542 struct dasd_ccw_req *cqr;
545 if ( magic == NULL || datasize > PAGE_SIZE ||
546 (cplength*sizeof(struct ccw1)) > PAGE_SIZE)
549 cqr = kzalloc(sizeof(struct dasd_ccw_req), GFP_ATOMIC);
551 return ERR_PTR(-ENOMEM);
554 cqr->cpaddr = kcalloc(cplength, sizeof(struct ccw1),
555 GFP_ATOMIC | GFP_DMA);
556 if (cqr->cpaddr == NULL) {
558 return ERR_PTR(-ENOMEM);
563 cqr->data = kzalloc(datasize, GFP_ATOMIC | GFP_DMA);
564 if (cqr->data == NULL) {
567 return ERR_PTR(-ENOMEM);
570 strncpy((char *) &cqr->magic, magic, 4);
571 ASCEBC((char *) &cqr->magic, 4);
572 set_bit(DASD_CQR_FLAGS_USE_ERP, &cqr->flags);
573 dasd_get_device(device);
577 struct dasd_ccw_req *
578 dasd_smalloc_request(char *magic, int cplength, int datasize,
579 struct dasd_device * device)
582 struct dasd_ccw_req *cqr;
587 if ( magic == NULL || datasize > PAGE_SIZE ||
588 (cplength*sizeof(struct ccw1)) > PAGE_SIZE)
591 size = (sizeof(struct dasd_ccw_req) + 7L) & -8L;
593 size += cplength * sizeof(struct ccw1);
596 spin_lock_irqsave(&device->mem_lock, flags);
597 cqr = (struct dasd_ccw_req *)
598 dasd_alloc_chunk(&device->ccw_chunks, size);
599 spin_unlock_irqrestore(&device->mem_lock, flags);
601 return ERR_PTR(-ENOMEM);
602 memset(cqr, 0, sizeof(struct dasd_ccw_req));
603 data = (char *) cqr + ((sizeof(struct dasd_ccw_req) + 7L) & -8L);
606 cqr->cpaddr = (struct ccw1 *) data;
607 data += cplength*sizeof(struct ccw1);
608 memset(cqr->cpaddr, 0, cplength*sizeof(struct ccw1));
613 memset(cqr->data, 0, datasize);
615 strncpy((char *) &cqr->magic, magic, 4);
616 ASCEBC((char *) &cqr->magic, 4);
617 set_bit(DASD_CQR_FLAGS_USE_ERP, &cqr->flags);
618 dasd_get_device(device);
623 * Free memory of a channel program. This function needs to free all the
624 * idal lists that might have been created by dasd_set_cda and the
625 * struct dasd_ccw_req itself.
628 dasd_kfree_request(struct dasd_ccw_req * cqr, struct dasd_device * device)
633 /* Clear any idals used for the request. */
636 clear_normalized_cda(ccw);
637 } while (ccw++->flags & (CCW_FLAG_CC | CCW_FLAG_DC));
642 dasd_put_device(device);
646 dasd_sfree_request(struct dasd_ccw_req * cqr, struct dasd_device * device)
650 spin_lock_irqsave(&device->mem_lock, flags);
651 dasd_free_chunk(&device->ccw_chunks, cqr);
652 spin_unlock_irqrestore(&device->mem_lock, flags);
653 dasd_put_device(device);
657 * Check discipline magic in cqr.
660 dasd_check_cqr(struct dasd_ccw_req *cqr)
662 struct dasd_device *device;
666 device = cqr->device;
667 if (strncmp((char *) &cqr->magic, device->discipline->ebcname, 4)) {
668 DEV_MESSAGE(KERN_WARNING, device,
669 " dasd_ccw_req 0x%08x magic doesn't match"
670 " discipline 0x%08x",
672 *(unsigned int *) device->discipline->name);
679 * Terminate the current i/o and set the request to clear_pending.
680 * Timer keeps device runnig.
681 * ccw_device_clear can fail if the i/o subsystem
685 dasd_term_IO(struct dasd_ccw_req * cqr)
687 struct dasd_device *device;
691 rc = dasd_check_cqr(cqr);
695 device = (struct dasd_device *) cqr->device;
696 while ((retries < 5) && (cqr->status == DASD_CQR_IN_IO)) {
697 rc = ccw_device_clear(device->cdev, (long) cqr);
699 case 0: /* termination successful */
701 cqr->status = DASD_CQR_CLEAR;
702 cqr->stopclk = get_clock();
703 DBF_DEV_EVENT(DBF_DEBUG, device,
704 "terminate cqr %p successful",
708 DBF_DEV_EVENT(DBF_ERR, device, "%s",
709 "device gone, retry");
712 DBF_DEV_EVENT(DBF_ERR, device, "%s",
717 DBF_DEV_EVENT(DBF_ERR, device, "%s",
718 "device busy, retry later");
721 DEV_MESSAGE(KERN_ERR, device,
722 "line %d unknown RC=%d, please "
723 "report to linux390@de.ibm.com",
730 dasd_schedule_bh(device);
735 * Start the i/o. This start_IO can fail if the channel is really busy.
736 * In that case set up a timer to start the request later.
739 dasd_start_IO(struct dasd_ccw_req * cqr)
741 struct dasd_device *device;
745 rc = dasd_check_cqr(cqr);
748 device = (struct dasd_device *) cqr->device;
749 if (cqr->retries < 0) {
750 DEV_MESSAGE(KERN_DEBUG, device,
751 "start_IO: request %p (%02x/%i) - no retry left.",
752 cqr, cqr->status, cqr->retries);
753 cqr->status = DASD_CQR_FAILED;
756 cqr->startclk = get_clock();
757 cqr->starttime = jiffies;
759 rc = ccw_device_start(device->cdev, cqr->cpaddr, (long) cqr,
763 cqr->status = DASD_CQR_IN_IO;
764 DBF_DEV_EVENT(DBF_DEBUG, device,
765 "start_IO: request %p started successful",
769 DBF_DEV_EVENT(DBF_ERR, device, "%s",
770 "start_IO: device busy, retry later");
773 DBF_DEV_EVENT(DBF_ERR, device, "%s",
774 "start_IO: request timeout, retry later");
777 /* -EACCES indicates that the request used only a
778 * subset of the available pathes and all these
780 * Do a retry with all available pathes.
782 cqr->lpm = LPM_ANYPATH;
783 DBF_DEV_EVENT(DBF_ERR, device, "%s",
784 "start_IO: selected pathes gone,"
785 " retry on all pathes");
789 DBF_DEV_EVENT(DBF_ERR, device, "%s",
790 "start_IO: device gone, retry");
793 DEV_MESSAGE(KERN_ERR, device,
794 "line %d unknown RC=%d, please report"
795 " to linux390@de.ibm.com", __LINE__, rc);
803 * Timeout function for dasd devices. This is used for different purposes
804 * 1) missing interrupt handler for normal operation
805 * 2) delayed start of request where start_IO failed with -EBUSY
806 * 3) timeout for missing state change interrupts
807 * The head of the ccw queue will have status DASD_CQR_IN_IO for 1),
808 * DASD_CQR_QUEUED for 2) and 3).
811 dasd_timeout_device(unsigned long ptr)
814 struct dasd_device *device;
816 device = (struct dasd_device *) ptr;
817 spin_lock_irqsave(get_ccwdev_lock(device->cdev), flags);
818 /* re-activate request queue */
819 device->stopped &= ~DASD_STOPPED_PENDING;
820 spin_unlock_irqrestore(get_ccwdev_lock(device->cdev), flags);
821 dasd_schedule_bh(device);
825 * Setup timeout for a device in jiffies.
828 dasd_set_timer(struct dasd_device *device, int expires)
831 if (timer_pending(&device->timer))
832 del_timer(&device->timer);
835 if (timer_pending(&device->timer)) {
836 if (mod_timer(&device->timer, jiffies + expires))
839 device->timer.function = dasd_timeout_device;
840 device->timer.data = (unsigned long) device;
841 device->timer.expires = jiffies + expires;
842 add_timer(&device->timer);
846 * Clear timeout for a device.
849 dasd_clear_timer(struct dasd_device *device)
851 if (timer_pending(&device->timer))
852 del_timer(&device->timer);
856 dasd_handle_killed_request(struct ccw_device *cdev, unsigned long intparm)
858 struct dasd_ccw_req *cqr;
859 struct dasd_device *device;
861 cqr = (struct dasd_ccw_req *) intparm;
862 if (cqr->status != DASD_CQR_IN_IO) {
864 "invalid status in handle_killed_request: "
865 "bus_id %s, status %02x",
866 cdev->dev.bus_id, cqr->status);
870 device = (struct dasd_device *) cqr->device;
871 if (device == NULL ||
872 device != dasd_device_from_cdev(cdev) ||
873 strncmp(device->discipline->ebcname, (char *) &cqr->magic, 4)) {
874 MESSAGE(KERN_DEBUG, "invalid device in request: bus_id %s",
879 /* Schedule request to be retried. */
880 cqr->status = DASD_CQR_QUEUED;
882 dasd_clear_timer(device);
883 dasd_schedule_bh(device);
884 dasd_put_device(device);
888 dasd_handle_state_change_pending(struct dasd_device *device)
890 struct dasd_ccw_req *cqr;
891 struct list_head *l, *n;
893 /* First of all start sense subsystem status request. */
894 dasd_eer_snss(device);
896 device->stopped &= ~DASD_STOPPED_PENDING;
898 /* restart all 'running' IO on queue */
899 list_for_each_safe(l, n, &device->ccw_queue) {
900 cqr = list_entry(l, struct dasd_ccw_req, list);
901 if (cqr->status == DASD_CQR_IN_IO) {
902 cqr->status = DASD_CQR_QUEUED;
905 dasd_clear_timer(device);
906 dasd_schedule_bh(device);
910 * Interrupt handler for "normal" ssch-io based dasd devices.
913 dasd_int_handler(struct ccw_device *cdev, unsigned long intparm,
916 struct dasd_ccw_req *cqr, *next;
917 struct dasd_device *device;
918 unsigned long long now;
924 switch (PTR_ERR(irb)) {
926 dasd_handle_killed_request(cdev, intparm);
929 printk(KERN_WARNING"%s(%s): request timed out\n",
930 __FUNCTION__, cdev->dev.bus_id);
931 //FIXME - dasd uses own timeout interface...
934 printk(KERN_WARNING"%s(%s): unknown error %ld\n",
935 __FUNCTION__, cdev->dev.bus_id, PTR_ERR(irb));
942 DBF_EVENT(DBF_ERR, "Interrupt: bus_id %s CS/DS %04x ip %08x",
943 cdev->dev.bus_id, ((irb->scsw.cstat<<8)|irb->scsw.dstat),
944 (unsigned int) intparm);
946 /* first of all check for state change pending interrupt */
947 mask = DEV_STAT_ATTENTION | DEV_STAT_DEV_END | DEV_STAT_UNIT_EXCEP;
948 if ((irb->scsw.dstat & mask) == mask) {
949 device = dasd_device_from_cdev(cdev);
950 if (!IS_ERR(device)) {
951 dasd_handle_state_change_pending(device);
952 dasd_put_device(device);
957 cqr = (struct dasd_ccw_req *) intparm;
959 /* check for unsolicited interrupts */
962 "unsolicited interrupt received: bus_id %s",
967 device = (struct dasd_device *) cqr->device;
968 if (device == NULL ||
969 strncmp(device->discipline->ebcname, (char *) &cqr->magic, 4)) {
970 MESSAGE(KERN_DEBUG, "invalid device in request: bus_id %s",
975 /* Check for clear pending */
976 if (cqr->status == DASD_CQR_CLEAR &&
977 irb->scsw.fctl & SCSW_FCTL_CLEAR_FUNC) {
978 cqr->status = DASD_CQR_QUEUED;
979 dasd_clear_timer(device);
980 dasd_schedule_bh(device);
984 /* check status - the request might have been killed by dyn detach */
985 if (cqr->status != DASD_CQR_IN_IO) {
987 "invalid status: bus_id %s, status %02x",
988 cdev->dev.bus_id, cqr->status);
991 DBF_DEV_EVENT(DBF_DEBUG, device, "Int: CS/DS 0x%04x for cqr %p",
992 ((irb->scsw.cstat << 8) | irb->scsw.dstat), cqr);
994 /* Find out the appropriate era_action. */
995 if (irb->scsw.fctl & SCSW_FCTL_HALT_FUNC)
996 era = dasd_era_fatal;
997 else if (irb->scsw.dstat == (DEV_STAT_CHN_END | DEV_STAT_DEV_END) &&
998 irb->scsw.cstat == 0 &&
999 !irb->esw.esw0.erw.cons)
1000 era = dasd_era_none;
1001 else if (!test_bit(DASD_CQR_FLAGS_USE_ERP, &cqr->flags))
1002 era = dasd_era_fatal; /* don't recover this request */
1003 else if (irb->esw.esw0.erw.cons)
1004 era = device->discipline->examine_error(cqr, irb);
1006 era = dasd_era_recover;
1008 DBF_DEV_EVENT(DBF_DEBUG, device, "era_code %d", era);
1010 if (era == dasd_era_none) {
1011 cqr->status = DASD_CQR_DONE;
1013 /* Start first request on queue if possible -> fast_io. */
1014 if (cqr->list.next != &device->ccw_queue) {
1015 next = list_entry(cqr->list.next,
1016 struct dasd_ccw_req, list);
1017 if ((next->status == DASD_CQR_QUEUED) &&
1018 (!device->stopped)) {
1019 if (device->discipline->start_IO(next) == 0)
1020 expires = next->expires;
1022 DEV_MESSAGE(KERN_DEBUG, device, "%s",
1023 "Interrupt fastpath "
1027 } else { /* error */
1028 memcpy(&cqr->irb, irb, sizeof (struct irb));
1030 /* dump sense data */
1031 dasd_log_sense(cqr, irb);
1034 case dasd_era_fatal:
1035 cqr->status = DASD_CQR_FAILED;
1038 case dasd_era_recover:
1039 cqr->status = DASD_CQR_ERROR;
1046 dasd_set_timer(device, expires);
1048 dasd_clear_timer(device);
1049 dasd_schedule_bh(device);
1053 * posts the buffer_cache about a finalized request
1056 dasd_end_request(struct request *req, int uptodate)
1058 if (end_that_request_first(req, uptodate, req->hard_nr_sectors))
1060 add_disk_randomness(req->rq_disk);
1061 end_that_request_last(req, uptodate);
1065 * Process finished error recovery ccw.
1068 __dasd_process_erp(struct dasd_device *device, struct dasd_ccw_req *cqr)
1070 dasd_erp_fn_t erp_fn;
1072 if (cqr->status == DASD_CQR_DONE)
1073 DBF_DEV_EVENT(DBF_NOTICE, device, "%s", "ERP successful");
1075 DEV_MESSAGE(KERN_ERR, device, "%s", "ERP unsuccessful");
1076 erp_fn = device->discipline->erp_postaction(cqr);
1081 * Process ccw request queue.
1084 __dasd_process_ccw_queue(struct dasd_device * device,
1085 struct list_head *final_queue)
1087 struct list_head *l, *n;
1088 struct dasd_ccw_req *cqr;
1089 dasd_erp_fn_t erp_fn;
1092 /* Process request with final status. */
1093 list_for_each_safe(l, n, &device->ccw_queue) {
1094 cqr = list_entry(l, struct dasd_ccw_req, list);
1095 /* Stop list processing at the first non-final request. */
1096 if (cqr->status != DASD_CQR_DONE &&
1097 cqr->status != DASD_CQR_FAILED &&
1098 cqr->status != DASD_CQR_ERROR)
1100 /* Process requests with DASD_CQR_ERROR */
1101 if (cqr->status == DASD_CQR_ERROR) {
1102 if (cqr->irb.scsw.fctl & SCSW_FCTL_HALT_FUNC) {
1103 cqr->status = DASD_CQR_FAILED;
1104 cqr->stopclk = get_clock();
1106 if (cqr->irb.esw.esw0.erw.cons) {
1107 erp_fn = device->discipline->
1111 dasd_default_erp_action(cqr);
1116 /* First of all call extended error reporting. */
1117 if (dasd_eer_enabled(device) &&
1118 cqr->status == DASD_CQR_FAILED) {
1119 dasd_eer_write(device, cqr, DASD_EER_FATALERROR);
1121 /* restart request */
1122 cqr->status = DASD_CQR_QUEUED;
1124 device->stopped |= DASD_STOPPED_QUIESCE;
1128 /* Process finished ERP request. */
1130 __dasd_process_erp(device, cqr);
1134 /* Rechain finished requests to final queue */
1135 cqr->endclk = get_clock();
1136 list_move_tail(&cqr->list, final_queue);
1141 dasd_end_request_cb(struct dasd_ccw_req * cqr, void *data)
1143 struct request *req;
1144 struct dasd_device *device;
1147 req = (struct request *) data;
1148 device = cqr->device;
1149 dasd_profile_end(device, cqr, req);
1150 status = cqr->device->discipline->free_cp(cqr,req);
1151 spin_lock_irq(&device->request_queue_lock);
1152 dasd_end_request(req, status);
1153 spin_unlock_irq(&device->request_queue_lock);
1158 * Fetch requests from the block device queue.
1161 __dasd_process_blk_queue(struct dasd_device * device)
1163 request_queue_t *queue;
1164 struct request *req;
1165 struct dasd_ccw_req *cqr;
1168 queue = device->request_queue;
1169 /* No queue ? Then there is nothing to do. */
1174 * We requeue request from the block device queue to the ccw
1175 * queue only in two states. In state DASD_STATE_READY the
1176 * partition detection is done and we need to requeue requests
1177 * for that. State DASD_STATE_ONLINE is normal block device
1180 if (device->state != DASD_STATE_READY &&
1181 device->state != DASD_STATE_ONLINE)
1184 /* Now we try to fetch requests from the request queue */
1185 list_for_each_entry(cqr, &device->ccw_queue, list)
1186 if (cqr->status == DASD_CQR_QUEUED)
1188 while (!blk_queue_plugged(queue) &&
1189 elv_next_request(queue) &&
1190 nr_queued < DASD_CHANQ_MAX_SIZE) {
1191 req = elv_next_request(queue);
1193 if (device->features & DASD_FEATURE_READONLY &&
1194 rq_data_dir(req) == WRITE) {
1195 DBF_DEV_EVENT(DBF_ERR, device,
1196 "Rejecting write request %p",
1198 blkdev_dequeue_request(req);
1199 dasd_end_request(req, 0);
1202 if (device->stopped & DASD_STOPPED_DC_EIO) {
1203 blkdev_dequeue_request(req);
1204 dasd_end_request(req, 0);
1207 cqr = device->discipline->build_cp(device, req);
1209 if (PTR_ERR(cqr) == -ENOMEM)
1210 break; /* terminate request queue loop */
1211 DBF_DEV_EVENT(DBF_ERR, device,
1212 "CCW creation failed (rc=%ld) "
1215 blkdev_dequeue_request(req);
1216 dasd_end_request(req, 0);
1219 cqr->callback = dasd_end_request_cb;
1220 cqr->callback_data = (void *) req;
1221 cqr->status = DASD_CQR_QUEUED;
1222 blkdev_dequeue_request(req);
1223 list_add_tail(&cqr->list, &device->ccw_queue);
1224 dasd_profile_start(device, cqr, req);
1230 * Take a look at the first request on the ccw queue and check
1231 * if it reached its expire time. If so, terminate the IO.
1234 __dasd_check_expire(struct dasd_device * device)
1236 struct dasd_ccw_req *cqr;
1238 if (list_empty(&device->ccw_queue))
1240 cqr = list_entry(device->ccw_queue.next, struct dasd_ccw_req, list);
1241 if (cqr->status == DASD_CQR_IN_IO && cqr->expires != 0) {
1242 if (time_after_eq(jiffies, cqr->expires + cqr->starttime)) {
1243 if (device->discipline->term_IO(cqr) != 0)
1244 /* Hmpf, try again in 1/10 sec */
1245 dasd_set_timer(device, 10);
1251 * Take a look at the first request on the ccw queue and check
1252 * if it needs to be started.
1255 __dasd_start_head(struct dasd_device * device)
1257 struct dasd_ccw_req *cqr;
1260 if (list_empty(&device->ccw_queue))
1262 cqr = list_entry(device->ccw_queue.next, struct dasd_ccw_req, list);
1263 /* check FAILFAST */
1264 if (device->stopped & ~DASD_STOPPED_PENDING &&
1265 test_bit(DASD_CQR_FLAGS_FAILFAST, &cqr->flags) &&
1266 (!dasd_eer_enabled(device))) {
1267 cqr->status = DASD_CQR_FAILED;
1268 dasd_schedule_bh(device);
1270 if ((cqr->status == DASD_CQR_QUEUED) &&
1271 (!device->stopped)) {
1272 /* try to start the first I/O that can be started */
1273 rc = device->discipline->start_IO(cqr);
1275 dasd_set_timer(device, cqr->expires);
1276 else if (rc == -EACCES) {
1277 dasd_schedule_bh(device);
1279 /* Hmpf, try again in 1/2 sec */
1280 dasd_set_timer(device, 50);
1285 * Remove requests from the ccw queue.
1288 dasd_flush_ccw_queue(struct dasd_device * device, int all)
1290 struct list_head flush_queue;
1291 struct list_head *l, *n;
1292 struct dasd_ccw_req *cqr;
1294 INIT_LIST_HEAD(&flush_queue);
1295 spin_lock_irq(get_ccwdev_lock(device->cdev));
1296 list_for_each_safe(l, n, &device->ccw_queue) {
1297 cqr = list_entry(l, struct dasd_ccw_req, list);
1298 /* Flush all request or only block device requests? */
1299 if (all == 0 && cqr->callback == dasd_end_request_cb)
1301 if (cqr->status == DASD_CQR_IN_IO)
1302 device->discipline->term_IO(cqr);
1303 if (cqr->status != DASD_CQR_DONE ||
1304 cqr->status != DASD_CQR_FAILED) {
1305 cqr->status = DASD_CQR_FAILED;
1306 cqr->stopclk = get_clock();
1308 /* Process finished ERP request. */
1310 __dasd_process_erp(device, cqr);
1313 /* Rechain request on device request queue */
1314 cqr->endclk = get_clock();
1315 list_move_tail(&cqr->list, &flush_queue);
1317 spin_unlock_irq(get_ccwdev_lock(device->cdev));
1318 /* Now call the callback function of flushed requests */
1319 list_for_each_safe(l, n, &flush_queue) {
1320 cqr = list_entry(l, struct dasd_ccw_req, list);
1321 if (cqr->callback != NULL)
1322 (cqr->callback)(cqr, cqr->callback_data);
1327 * Acquire the device lock and process queues for the device.
1330 dasd_tasklet(struct dasd_device * device)
1332 struct list_head final_queue;
1333 struct list_head *l, *n;
1334 struct dasd_ccw_req *cqr;
1336 atomic_set (&device->tasklet_scheduled, 0);
1337 INIT_LIST_HEAD(&final_queue);
1338 spin_lock_irq(get_ccwdev_lock(device->cdev));
1339 /* Check expire time of first request on the ccw queue. */
1340 __dasd_check_expire(device);
1341 /* Finish off requests on ccw queue */
1342 __dasd_process_ccw_queue(device, &final_queue);
1343 spin_unlock_irq(get_ccwdev_lock(device->cdev));
1344 /* Now call the callback function of requests with final status */
1345 list_for_each_safe(l, n, &final_queue) {
1346 cqr = list_entry(l, struct dasd_ccw_req, list);
1347 list_del_init(&cqr->list);
1348 if (cqr->callback != NULL)
1349 (cqr->callback)(cqr, cqr->callback_data);
1351 spin_lock_irq(&device->request_queue_lock);
1352 spin_lock(get_ccwdev_lock(device->cdev));
1353 /* Get new request from the block device request queue */
1354 __dasd_process_blk_queue(device);
1355 /* Now check if the head of the ccw queue needs to be started. */
1356 __dasd_start_head(device);
1357 spin_unlock(get_ccwdev_lock(device->cdev));
1358 spin_unlock_irq(&device->request_queue_lock);
1359 dasd_put_device(device);
1363 * Schedules a call to dasd_tasklet over the device tasklet.
1366 dasd_schedule_bh(struct dasd_device * device)
1368 /* Protect against rescheduling. */
1369 if (atomic_cmpxchg (&device->tasklet_scheduled, 0, 1) != 0)
1371 dasd_get_device(device);
1372 tasklet_hi_schedule(&device->tasklet);
1376 * Queue a request to the head of the ccw_queue. Start the I/O if
1380 dasd_add_request_head(struct dasd_ccw_req *req)
1382 struct dasd_device *device;
1383 unsigned long flags;
1385 device = req->device;
1386 spin_lock_irqsave(get_ccwdev_lock(device->cdev), flags);
1387 req->status = DASD_CQR_QUEUED;
1388 req->device = device;
1389 list_add(&req->list, &device->ccw_queue);
1390 /* let the bh start the request to keep them in order */
1391 dasd_schedule_bh(device);
1392 spin_unlock_irqrestore(get_ccwdev_lock(device->cdev), flags);
1396 * Queue a request to the tail of the ccw_queue. Start the I/O if
1400 dasd_add_request_tail(struct dasd_ccw_req *req)
1402 struct dasd_device *device;
1403 unsigned long flags;
1405 device = req->device;
1406 spin_lock_irqsave(get_ccwdev_lock(device->cdev), flags);
1407 req->status = DASD_CQR_QUEUED;
1408 req->device = device;
1409 list_add_tail(&req->list, &device->ccw_queue);
1410 /* let the bh start the request to keep them in order */
1411 dasd_schedule_bh(device);
1412 spin_unlock_irqrestore(get_ccwdev_lock(device->cdev), flags);
1419 dasd_wakeup_cb(struct dasd_ccw_req *cqr, void *data)
1421 wake_up((wait_queue_head_t *) data);
1425 _wait_for_wakeup(struct dasd_ccw_req *cqr)
1427 struct dasd_device *device;
1430 device = cqr->device;
1431 spin_lock_irq(get_ccwdev_lock(device->cdev));
1432 rc = ((cqr->status == DASD_CQR_DONE ||
1433 cqr->status == DASD_CQR_FAILED) &&
1434 list_empty(&cqr->list));
1435 spin_unlock_irq(get_ccwdev_lock(device->cdev));
1440 * Attempts to start a special ccw queue and waits for its completion.
1443 dasd_sleep_on(struct dasd_ccw_req * cqr)
1445 wait_queue_head_t wait_q;
1446 struct dasd_device *device;
1449 device = cqr->device;
1450 spin_lock_irq(get_ccwdev_lock(device->cdev));
1452 init_waitqueue_head (&wait_q);
1453 cqr->callback = dasd_wakeup_cb;
1454 cqr->callback_data = (void *) &wait_q;
1455 cqr->status = DASD_CQR_QUEUED;
1456 list_add_tail(&cqr->list, &device->ccw_queue);
1458 /* let the bh start the request to keep them in order */
1459 dasd_schedule_bh(device);
1461 spin_unlock_irq(get_ccwdev_lock(device->cdev));
1463 wait_event(wait_q, _wait_for_wakeup(cqr));
1465 /* Request status is either done or failed. */
1466 rc = (cqr->status == DASD_CQR_FAILED) ? -EIO : 0;
1471 * Attempts to start a special ccw queue and wait interruptible
1472 * for its completion.
1475 dasd_sleep_on_interruptible(struct dasd_ccw_req * cqr)
1477 wait_queue_head_t wait_q;
1478 struct dasd_device *device;
1481 device = cqr->device;
1482 spin_lock_irq(get_ccwdev_lock(device->cdev));
1484 init_waitqueue_head (&wait_q);
1485 cqr->callback = dasd_wakeup_cb;
1486 cqr->callback_data = (void *) &wait_q;
1487 cqr->status = DASD_CQR_QUEUED;
1488 list_add_tail(&cqr->list, &device->ccw_queue);
1490 /* let the bh start the request to keep them in order */
1491 dasd_schedule_bh(device);
1492 spin_unlock_irq(get_ccwdev_lock(device->cdev));
1496 rc = wait_event_interruptible(wait_q, _wait_for_wakeup(cqr));
1497 if (rc != -ERESTARTSYS) {
1498 /* Request is final (done or failed) */
1499 rc = (cqr->status == DASD_CQR_DONE) ? 0 : -EIO;
1502 spin_lock_irq(get_ccwdev_lock(device->cdev));
1503 switch (cqr->status) {
1504 case DASD_CQR_IN_IO:
1505 /* terminate runnig cqr */
1506 if (device->discipline->term_IO) {
1508 device->discipline->term_IO(cqr);
1510 * wait (non-interruptible) for final status
1511 * because signal ist still pending
1513 spin_unlock_irq(get_ccwdev_lock(device->cdev));
1514 wait_event(wait_q, _wait_for_wakeup(cqr));
1515 spin_lock_irq(get_ccwdev_lock(device->cdev));
1516 rc = (cqr->status == DASD_CQR_DONE) ? 0 : -EIO;
1520 case DASD_CQR_QUEUED:
1522 list_del_init(&cqr->list);
1527 /* cqr with 'non-interruptable' status - just wait */
1530 spin_unlock_irq(get_ccwdev_lock(device->cdev));
1536 * Whoa nelly now it gets really hairy. For some functions (e.g. steal lock
1537 * for eckd devices) the currently running request has to be terminated
1538 * and be put back to status queued, before the special request is added
1539 * to the head of the queue. Then the special request is waited on normally.
1542 _dasd_term_running_cqr(struct dasd_device *device)
1544 struct dasd_ccw_req *cqr;
1547 if (list_empty(&device->ccw_queue))
1549 cqr = list_entry(device->ccw_queue.next, struct dasd_ccw_req, list);
1550 rc = device->discipline->term_IO(cqr);
1552 /* termination successful */
1553 cqr->status = DASD_CQR_QUEUED;
1554 cqr->startclk = cqr->stopclk = 0;
1561 dasd_sleep_on_immediatly(struct dasd_ccw_req * cqr)
1563 wait_queue_head_t wait_q;
1564 struct dasd_device *device;
1567 device = cqr->device;
1568 spin_lock_irq(get_ccwdev_lock(device->cdev));
1569 rc = _dasd_term_running_cqr(device);
1571 spin_unlock_irq(get_ccwdev_lock(device->cdev));
1575 init_waitqueue_head (&wait_q);
1576 cqr->callback = dasd_wakeup_cb;
1577 cqr->callback_data = (void *) &wait_q;
1578 cqr->status = DASD_CQR_QUEUED;
1579 list_add(&cqr->list, &device->ccw_queue);
1581 /* let the bh start the request to keep them in order */
1582 dasd_schedule_bh(device);
1584 spin_unlock_irq(get_ccwdev_lock(device->cdev));
1586 wait_event(wait_q, _wait_for_wakeup(cqr));
1588 /* Request status is either done or failed. */
1589 rc = (cqr->status == DASD_CQR_FAILED) ? -EIO : 0;
1594 * Cancels a request that was started with dasd_sleep_on_req.
1595 * This is useful to timeout requests. The request will be
1596 * terminated if it is currently in i/o.
1597 * Returns 1 if the request has been terminated.
1600 dasd_cancel_req(struct dasd_ccw_req *cqr)
1602 struct dasd_device *device = cqr->device;
1603 unsigned long flags;
1607 spin_lock_irqsave(get_ccwdev_lock(device->cdev), flags);
1608 switch (cqr->status) {
1609 case DASD_CQR_QUEUED:
1610 /* request was not started - just set to failed */
1611 cqr->status = DASD_CQR_FAILED;
1613 case DASD_CQR_IN_IO:
1614 /* request in IO - terminate IO and release again */
1615 if (device->discipline->term_IO(cqr) != 0)
1616 /* what to do if unable to terminate ??????
1618 cqr->status = DASD_CQR_FAILED;
1619 cqr->stopclk = get_clock();
1623 case DASD_CQR_FAILED:
1624 /* already finished - do nothing */
1627 DEV_MESSAGE(KERN_ALERT, device,
1628 "invalid status %02x in request",
1633 spin_unlock_irqrestore(get_ccwdev_lock(device->cdev), flags);
1634 dasd_schedule_bh(device);
1639 * SECTION: Block device operations (request queue, partitions, open, release).
1643 * Dasd request queue function. Called from ll_rw_blk.c
1646 do_dasd_request(request_queue_t * queue)
1648 struct dasd_device *device;
1650 device = (struct dasd_device *) queue->queuedata;
1651 spin_lock(get_ccwdev_lock(device->cdev));
1652 /* Get new request from the block device request queue */
1653 __dasd_process_blk_queue(device);
1654 /* Now check if the head of the ccw queue needs to be started. */
1655 __dasd_start_head(device);
1656 spin_unlock(get_ccwdev_lock(device->cdev));
1660 * Allocate and initialize request queue and default I/O scheduler.
1663 dasd_alloc_queue(struct dasd_device * device)
1667 device->request_queue = blk_init_queue(do_dasd_request,
1668 &device->request_queue_lock);
1669 if (device->request_queue == NULL)
1672 device->request_queue->queuedata = device;
1674 elevator_exit(device->request_queue->elevator);
1675 rc = elevator_init(device->request_queue, "deadline");
1677 blk_cleanup_queue(device->request_queue);
1684 * Allocate and initialize request queue.
1687 dasd_setup_queue(struct dasd_device * device)
1691 blk_queue_hardsect_size(device->request_queue, device->bp_block);
1692 max = device->discipline->max_blocks << device->s2b_shift;
1693 blk_queue_max_sectors(device->request_queue, max);
1694 blk_queue_max_phys_segments(device->request_queue, -1L);
1695 blk_queue_max_hw_segments(device->request_queue, -1L);
1696 blk_queue_max_segment_size(device->request_queue, -1L);
1697 blk_queue_segment_boundary(device->request_queue, -1L);
1698 blk_queue_ordered(device->request_queue, QUEUE_ORDERED_TAG, NULL);
1702 * Deactivate and free request queue.
1705 dasd_free_queue(struct dasd_device * device)
1707 if (device->request_queue) {
1708 blk_cleanup_queue(device->request_queue);
1709 device->request_queue = NULL;
1714 * Flush request on the request queue.
1717 dasd_flush_request_queue(struct dasd_device * device)
1719 struct request *req;
1721 if (!device->request_queue)
1724 spin_lock_irq(&device->request_queue_lock);
1725 while (!list_empty(&device->request_queue->queue_head)) {
1726 req = elv_next_request(device->request_queue);
1729 dasd_end_request(req, 0);
1730 blkdev_dequeue_request(req);
1732 spin_unlock_irq(&device->request_queue_lock);
1736 dasd_open(struct inode *inp, struct file *filp)
1738 struct gendisk *disk = inp->i_bdev->bd_disk;
1739 struct dasd_device *device = disk->private_data;
1742 atomic_inc(&device->open_count);
1743 if (test_bit(DASD_FLAG_OFFLINE, &device->flags)) {
1748 if (!try_module_get(device->discipline->owner)) {
1753 if (dasd_probeonly) {
1754 DEV_MESSAGE(KERN_INFO, device, "%s",
1755 "No access to device due to probeonly mode");
1760 if (device->state <= DASD_STATE_BASIC) {
1761 DBF_DEV_EVENT(DBF_ERR, device, " %s",
1762 " Cannot open unrecognized device");
1770 module_put(device->discipline->owner);
1772 atomic_dec(&device->open_count);
1777 dasd_release(struct inode *inp, struct file *filp)
1779 struct gendisk *disk = inp->i_bdev->bd_disk;
1780 struct dasd_device *device = disk->private_data;
1782 atomic_dec(&device->open_count);
1783 module_put(device->discipline->owner);
1788 * Return disk geometry.
1791 dasd_getgeo(struct block_device *bdev, struct hd_geometry *geo)
1793 struct dasd_device *device;
1795 device = bdev->bd_disk->private_data;
1799 if (!device->discipline ||
1800 !device->discipline->fill_geometry)
1803 device->discipline->fill_geometry(device, geo);
1804 geo->start = get_start_sect(bdev) >> device->s2b_shift;
1808 struct block_device_operations
1809 dasd_device_operations = {
1810 .owner = THIS_MODULE,
1812 .release = dasd_release,
1813 .ioctl = dasd_ioctl,
1814 .compat_ioctl = dasd_compat_ioctl,
1815 .getgeo = dasd_getgeo,
1822 #ifdef CONFIG_PROC_FS
1826 if (dasd_page_cache != NULL) {
1827 kmem_cache_destroy(dasd_page_cache);
1828 dasd_page_cache = NULL;
1830 dasd_gendisk_exit();
1832 devfs_remove("dasd");
1833 if (dasd_debug_area != NULL) {
1834 debug_unregister(dasd_debug_area);
1835 dasd_debug_area = NULL;
1840 * SECTION: common functions for ccw_driver use
1844 * Initial attempt at a probe function. this can be simplified once
1845 * the other detection code is gone.
1848 dasd_generic_probe (struct ccw_device *cdev,
1849 struct dasd_discipline *discipline)
1853 ret = dasd_add_sysfs_files(cdev);
1856 "dasd_generic_probe: could not add sysfs entries "
1857 "for %s\n", cdev->dev.bus_id);
1859 cdev->handler = &dasd_int_handler;
1866 * This will one day be called from a global not_oper handler.
1867 * It is also used by driver_unregister during module unload.
1870 dasd_generic_remove (struct ccw_device *cdev)
1872 struct dasd_device *device;
1874 cdev->handler = NULL;
1876 dasd_remove_sysfs_files(cdev);
1877 device = dasd_device_from_cdev(cdev);
1880 if (test_and_set_bit(DASD_FLAG_OFFLINE, &device->flags)) {
1881 /* Already doing offline processing */
1882 dasd_put_device(device);
1886 * This device is removed unconditionally. Set offline
1887 * flag to prevent dasd_open from opening it while it is
1888 * no quite down yet.
1890 dasd_set_target_state(device, DASD_STATE_NEW);
1891 /* dasd_delete_device destroys the device reference. */
1892 dasd_delete_device(device);
1896 * Activate a device. This is called from dasd_{eckd,fba}_probe() when either
1897 * the device is detected for the first time and is supposed to be used
1898 * or the user has started activation through sysfs.
1901 dasd_generic_set_online (struct ccw_device *cdev,
1902 struct dasd_discipline *base_discipline)
1905 struct dasd_discipline *discipline;
1906 struct dasd_device *device;
1909 device = dasd_create_device(cdev);
1911 return PTR_ERR(device);
1913 discipline = base_discipline;
1914 if (device->features & DASD_FEATURE_USEDIAG) {
1915 if (!dasd_diag_discipline_pointer) {
1916 printk (KERN_WARNING
1917 "dasd_generic couldn't online device %s "
1918 "- discipline DIAG not available\n",
1920 dasd_delete_device(device);
1923 discipline = dasd_diag_discipline_pointer;
1925 if (!try_module_get(base_discipline->owner)) {
1926 dasd_delete_device(device);
1929 if (!try_module_get(discipline->owner)) {
1930 module_put(base_discipline->owner);
1931 dasd_delete_device(device);
1934 device->base_discipline = base_discipline;
1935 device->discipline = discipline;
1937 rc = discipline->check_device(device);
1939 printk (KERN_WARNING
1940 "dasd_generic couldn't online device %s "
1941 "with discipline %s rc=%i\n",
1942 cdev->dev.bus_id, discipline->name, rc);
1943 module_put(discipline->owner);
1944 module_put(base_discipline->owner);
1945 dasd_delete_device(device);
1949 dasd_set_target_state(device, DASD_STATE_ONLINE);
1950 if (device->state <= DASD_STATE_KNOWN) {
1951 printk (KERN_WARNING
1952 "dasd_generic discipline not found for %s\n",
1955 dasd_set_target_state(device, DASD_STATE_NEW);
1956 dasd_delete_device(device);
1958 pr_debug("dasd_generic device %s found\n",
1961 /* FIXME: we have to wait for the root device but we don't want
1962 * to wait for each single device but for all at once. */
1963 wait_event(dasd_init_waitq, _wait_for_device(device));
1965 dasd_put_device(device);
1971 dasd_generic_set_offline (struct ccw_device *cdev)
1973 struct dasd_device *device;
1976 device = dasd_device_from_cdev(cdev);
1978 return PTR_ERR(device);
1979 if (test_and_set_bit(DASD_FLAG_OFFLINE, &device->flags)) {
1980 /* Already doing offline processing */
1981 dasd_put_device(device);
1985 * We must make sure that this device is currently not in use.
1986 * The open_count is increased for every opener, that includes
1987 * the blkdev_get in dasd_scan_partitions. We are only interested
1988 * in the other openers.
1990 max_count = device->bdev ? 0 : -1;
1991 if (atomic_read(&device->open_count) > max_count) {
1992 printk (KERN_WARNING "Can't offline dasd device with open"
1994 atomic_read(&device->open_count));
1995 clear_bit(DASD_FLAG_OFFLINE, &device->flags);
1996 dasd_put_device(device);
1999 dasd_set_target_state(device, DASD_STATE_NEW);
2000 /* dasd_delete_device destroys the device reference. */
2001 dasd_delete_device(device);
2007 dasd_generic_notify(struct ccw_device *cdev, int event)
2009 struct dasd_device *device;
2010 struct dasd_ccw_req *cqr;
2011 unsigned long flags;
2014 device = dasd_device_from_cdev(cdev);
2017 spin_lock_irqsave(get_ccwdev_lock(cdev), flags);
2022 /* First of all call extended error reporting. */
2023 dasd_eer_write(device, NULL, DASD_EER_NOPATH);
2025 if (device->state < DASD_STATE_BASIC)
2027 /* Device is active. We want to keep it. */
2028 if (test_bit(DASD_FLAG_DSC_ERROR, &device->flags)) {
2029 list_for_each_entry(cqr, &device->ccw_queue, list)
2030 if (cqr->status == DASD_CQR_IN_IO)
2031 cqr->status = DASD_CQR_FAILED;
2032 device->stopped |= DASD_STOPPED_DC_EIO;
2034 list_for_each_entry(cqr, &device->ccw_queue, list)
2035 if (cqr->status == DASD_CQR_IN_IO) {
2036 cqr->status = DASD_CQR_QUEUED;
2039 device->stopped |= DASD_STOPPED_DC_WAIT;
2040 dasd_set_timer(device, 0);
2042 dasd_schedule_bh(device);
2046 /* FIXME: add a sanity check. */
2047 device->stopped &= ~(DASD_STOPPED_DC_WAIT|DASD_STOPPED_DC_EIO);
2048 dasd_schedule_bh(device);
2052 spin_unlock_irqrestore(get_ccwdev_lock(cdev), flags);
2053 dasd_put_device(device);
2058 * Automatically online either all dasd devices (dasd_autodetect) or
2059 * all devices specified with dasd= parameters.
2062 __dasd_auto_online(struct device *dev, void *data)
2064 struct ccw_device *cdev;
2066 cdev = to_ccwdev(dev);
2067 if (dasd_autodetect || dasd_busid_known(cdev->dev.bus_id) == 0)
2068 ccw_device_set_online(cdev);
2073 dasd_generic_auto_online (struct ccw_driver *dasd_discipline_driver)
2075 struct device_driver *drv;
2077 drv = get_driver(&dasd_discipline_driver->driver);
2078 driver_for_each_device(drv, NULL, NULL, __dasd_auto_online);
2088 init_waitqueue_head(&dasd_init_waitq);
2090 /* register 'common' DASD debug area, used for all DBF_XXX calls */
2091 dasd_debug_area = debug_register("dasd", 1, 2, 8 * sizeof (long));
2092 if (dasd_debug_area == NULL) {
2096 debug_register_view(dasd_debug_area, &debug_sprintf_view);
2097 debug_set_level(dasd_debug_area, DBF_EMERG);
2099 DBF_EVENT(DBF_EMERG, "%s", "debug area created");
2101 dasd_diag_discipline_pointer = NULL;
2103 rc = devfs_mk_dir("dasd");
2106 rc = dasd_devmap_init();
2109 rc = dasd_gendisk_init();
2115 rc = dasd_eer_init();
2118 #ifdef CONFIG_PROC_FS
2119 rc = dasd_proc_init();
2126 MESSAGE(KERN_INFO, "%s", "initialization not performed due to errors");
2131 module_init(dasd_init);
2132 module_exit(dasd_exit);
2134 EXPORT_SYMBOL(dasd_debug_area);
2135 EXPORT_SYMBOL(dasd_diag_discipline_pointer);
2137 EXPORT_SYMBOL(dasd_add_request_head);
2138 EXPORT_SYMBOL(dasd_add_request_tail);
2139 EXPORT_SYMBOL(dasd_cancel_req);
2140 EXPORT_SYMBOL(dasd_clear_timer);
2141 EXPORT_SYMBOL(dasd_enable_device);
2142 EXPORT_SYMBOL(dasd_int_handler);
2143 EXPORT_SYMBOL(dasd_kfree_request);
2144 EXPORT_SYMBOL(dasd_kick_device);
2145 EXPORT_SYMBOL(dasd_kmalloc_request);
2146 EXPORT_SYMBOL(dasd_schedule_bh);
2147 EXPORT_SYMBOL(dasd_set_target_state);
2148 EXPORT_SYMBOL(dasd_set_timer);
2149 EXPORT_SYMBOL(dasd_sfree_request);
2150 EXPORT_SYMBOL(dasd_sleep_on);
2151 EXPORT_SYMBOL(dasd_sleep_on_immediatly);
2152 EXPORT_SYMBOL(dasd_sleep_on_interruptible);
2153 EXPORT_SYMBOL(dasd_smalloc_request);
2154 EXPORT_SYMBOL(dasd_start_IO);
2155 EXPORT_SYMBOL(dasd_term_IO);
2157 EXPORT_SYMBOL_GPL(dasd_generic_probe);
2158 EXPORT_SYMBOL_GPL(dasd_generic_remove);
2159 EXPORT_SYMBOL_GPL(dasd_generic_notify);
2160 EXPORT_SYMBOL_GPL(dasd_generic_set_online);
2161 EXPORT_SYMBOL_GPL(dasd_generic_set_offline);
2162 EXPORT_SYMBOL_GPL(dasd_generic_auto_online);
2165 * Overrides for Emacs so that we follow Linus's tabbing style.
2166 * Emacs will notice this stuff at the end of the file and automatically
2167 * adjust the settings for this buffer only. This must remain at the end
2169 * ---------------------------------------------------------------------------
2172 * c-brace-imaginary-offset: 0
2173 * c-brace-offset: -4
2174 * c-argdecl-indent: 4
2175 * c-label-offset: -4
2176 * c-continued-statement-offset: 4
2177 * c-continued-brace-offset: 0
2178 * indent-tabs-mode: 1