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/kmod.h>
13 #include <linux/init.h>
14 #include <linux/interrupt.h>
15 #include <linux/ctype.h>
16 #include <linux/major.h>
17 #include <linux/slab.h>
18 #include <linux/buffer_head.h>
19 #include <linux/hdreg.h>
21 #include <asm/ccwdev.h>
22 #include <asm/ebcdic.h>
23 #include <asm/idals.h>
24 #include <asm/todclk.h>
27 #define PRINTK_HEADER "dasd:"
31 * SECTION: Constant definitions to be used within this file
33 #define DASD_CHANQ_MAX_SIZE 4
36 * SECTION: exported variables of dasd.c
38 debug_info_t *dasd_debug_area;
39 struct dasd_discipline *dasd_diag_discipline_pointer;
40 void dasd_int_handler(struct ccw_device *, unsigned long, struct irb *);
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_LICENSE("GPL");
49 * SECTION: prototypes for static functions of dasd.c
51 static int dasd_alloc_queue(struct dasd_device * device);
52 static void dasd_setup_queue(struct dasd_device * device);
53 static void dasd_free_queue(struct dasd_device * device);
54 static void dasd_flush_request_queue(struct dasd_device *);
55 static int dasd_flush_ccw_queue(struct dasd_device *, int);
56 static void dasd_tasklet(struct dasd_device *);
57 static void do_kick_device(struct work_struct *);
60 * SECTION: Operations on the device structure.
62 static wait_queue_head_t dasd_init_waitq;
63 static wait_queue_head_t dasd_flush_wq;
66 * Allocate memory for a new device structure.
69 dasd_alloc_device(void)
71 struct dasd_device *device;
73 device = kzalloc(sizeof (struct dasd_device), GFP_ATOMIC);
75 return ERR_PTR(-ENOMEM);
76 /* open_count = 0 means device online but not in use */
77 atomic_set(&device->open_count, -1);
79 /* Get two pages for normal block device operations. */
80 device->ccw_mem = (void *) __get_free_pages(GFP_ATOMIC | GFP_DMA, 1);
81 if (device->ccw_mem == NULL) {
83 return ERR_PTR(-ENOMEM);
85 /* Get one page for error recovery. */
86 device->erp_mem = (void *) get_zeroed_page(GFP_ATOMIC | GFP_DMA);
87 if (device->erp_mem == NULL) {
88 free_pages((unsigned long) device->ccw_mem, 1);
90 return ERR_PTR(-ENOMEM);
93 dasd_init_chunklist(&device->ccw_chunks, device->ccw_mem, PAGE_SIZE*2);
94 dasd_init_chunklist(&device->erp_chunks, device->erp_mem, PAGE_SIZE);
95 spin_lock_init(&device->mem_lock);
96 spin_lock_init(&device->request_queue_lock);
97 atomic_set (&device->tasklet_scheduled, 0);
98 tasklet_init(&device->tasklet,
99 (void (*)(unsigned long)) dasd_tasklet,
100 (unsigned long) device);
101 INIT_LIST_HEAD(&device->ccw_queue);
102 init_timer(&device->timer);
103 INIT_WORK(&device->kick_work, do_kick_device);
104 device->state = DASD_STATE_NEW;
105 device->target = DASD_STATE_NEW;
111 * Free memory of a device structure.
114 dasd_free_device(struct dasd_device *device)
116 kfree(device->private);
117 free_page((unsigned long) device->erp_mem);
118 free_pages((unsigned long) device->ccw_mem, 1);
123 * Make a new device known to the system.
126 dasd_state_new_to_known(struct dasd_device *device)
131 * As long as the device is not in state DASD_STATE_NEW we want to
132 * keep the reference count > 0.
134 dasd_get_device(device);
136 rc = dasd_alloc_queue(device);
138 dasd_put_device(device);
142 device->state = DASD_STATE_KNOWN;
147 * Let the system forget about a device.
150 dasd_state_known_to_new(struct dasd_device * device)
152 /* Disable extended error reporting for this device. */
153 dasd_eer_disable(device);
154 /* Forget the discipline information. */
155 if (device->discipline)
156 module_put(device->discipline->owner);
157 device->discipline = NULL;
158 if (device->base_discipline)
159 module_put(device->base_discipline->owner);
160 device->base_discipline = NULL;
161 device->state = DASD_STATE_NEW;
163 dasd_free_queue(device);
165 /* Give up reference we took in dasd_state_new_to_known. */
166 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_WARNING);
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)
202 dasd_gendisk_free(device);
203 rc = dasd_flush_ccw_queue(device, 1);
206 dasd_clear_timer(device);
208 DBF_DEV_EVENT(DBF_EMERG, device, "%p debug area deleted", device);
209 if (device->debug_area != NULL) {
210 debug_unregister(device->debug_area);
211 device->debug_area = NULL;
213 device->state = DASD_STATE_KNOWN;
218 * Do the initial analysis. The do_analysis function may return
219 * -EAGAIN in which case the device keeps the state DASD_STATE_BASIC
220 * until the discipline decides to continue the startup sequence
221 * by calling the function dasd_change_state. The eckd disciplines
222 * uses this to start a ccw that detects the format. The completion
223 * interrupt for this detection ccw uses the kernel event daemon to
224 * trigger the call to dasd_change_state. All this is done in the
225 * discipline code, see dasd_eckd.c.
226 * After the analysis ccw is done (do_analysis returned 0) the block
228 * In case the analysis returns an error, the device setup is stopped
229 * (a fake disk was already added to allow formatting).
232 dasd_state_basic_to_ready(struct dasd_device * device)
237 if (device->discipline->do_analysis != NULL)
238 rc = device->discipline->do_analysis(device);
241 device->state = DASD_STATE_UNFMT;
244 /* make disk known with correct capacity */
245 dasd_setup_queue(device);
246 set_capacity(device->gdp, device->blocks << device->s2b_shift);
247 device->state = DASD_STATE_READY;
248 rc = dasd_scan_partitions(device);
250 device->state = DASD_STATE_BASIC;
255 * Remove device from block device layer. Destroy dirty buffers.
256 * Forget format information. Check if the target level is basic
257 * and if it is create fake disk for formatting.
260 dasd_state_ready_to_basic(struct dasd_device * device)
264 rc = dasd_flush_ccw_queue(device, 0);
267 dasd_destroy_partitions(device);
268 dasd_flush_request_queue(device);
270 device->bp_block = 0;
271 device->s2b_shift = 0;
272 device->state = DASD_STATE_BASIC;
280 dasd_state_unfmt_to_basic(struct dasd_device * device)
282 device->state = DASD_STATE_BASIC;
287 * Make the device online and schedule the bottom half to start
288 * the requeueing of requests from the linux request queue to the
292 dasd_state_ready_to_online(struct dasd_device * device)
294 device->state = DASD_STATE_ONLINE;
295 dasd_schedule_bh(device);
300 * Stop the requeueing of requests again.
303 dasd_state_online_to_ready(struct dasd_device * device)
305 device->state = DASD_STATE_READY;
310 * Device startup state changes.
313 dasd_increase_state(struct dasd_device *device)
318 if (device->state == DASD_STATE_NEW &&
319 device->target >= DASD_STATE_KNOWN)
320 rc = dasd_state_new_to_known(device);
323 device->state == DASD_STATE_KNOWN &&
324 device->target >= DASD_STATE_BASIC)
325 rc = dasd_state_known_to_basic(device);
328 device->state == DASD_STATE_BASIC &&
329 device->target >= DASD_STATE_READY)
330 rc = dasd_state_basic_to_ready(device);
333 device->state == DASD_STATE_UNFMT &&
334 device->target > DASD_STATE_UNFMT)
338 device->state == DASD_STATE_READY &&
339 device->target >= DASD_STATE_ONLINE)
340 rc = dasd_state_ready_to_online(device);
346 * Device shutdown state changes.
349 dasd_decrease_state(struct dasd_device *device)
354 if (device->state == DASD_STATE_ONLINE &&
355 device->target <= DASD_STATE_READY)
356 rc = dasd_state_online_to_ready(device);
359 device->state == DASD_STATE_READY &&
360 device->target <= DASD_STATE_BASIC)
361 rc = dasd_state_ready_to_basic(device);
364 device->state == DASD_STATE_UNFMT &&
365 device->target <= DASD_STATE_BASIC)
366 rc = dasd_state_unfmt_to_basic(device);
369 device->state == DASD_STATE_BASIC &&
370 device->target <= DASD_STATE_KNOWN)
371 rc = dasd_state_basic_to_known(device);
374 device->state == DASD_STATE_KNOWN &&
375 device->target <= DASD_STATE_NEW)
376 rc = dasd_state_known_to_new(device);
382 * This is the main startup/shutdown routine.
385 dasd_change_state(struct dasd_device *device)
389 if (device->state == device->target)
390 /* Already where we want to go today... */
392 if (device->state < device->target)
393 rc = dasd_increase_state(device);
395 rc = dasd_decrease_state(device);
396 if (rc && rc != -EAGAIN)
397 device->target = device->state;
399 if (device->state == device->target)
400 wake_up(&dasd_init_waitq);
404 * Kick starter for devices that did not complete the startup/shutdown
405 * procedure or were sleeping because of a pending state.
406 * dasd_kick_device will schedule a call do do_kick_device to the kernel
410 do_kick_device(struct work_struct *work)
412 struct dasd_device *device = container_of(work, struct dasd_device, kick_work);
413 dasd_change_state(device);
414 dasd_schedule_bh(device);
415 dasd_put_device(device);
419 dasd_kick_device(struct dasd_device *device)
421 dasd_get_device(device);
422 /* queue call to dasd_kick_device to the kernel event daemon. */
423 schedule_work(&device->kick_work);
427 * Set the target state for a device and starts the state change.
430 dasd_set_target_state(struct dasd_device *device, int target)
432 /* If we are in probeonly mode stop at DASD_STATE_READY. */
433 if (dasd_probeonly && target > DASD_STATE_READY)
434 target = DASD_STATE_READY;
435 if (device->target != target) {
436 if (device->state == target)
437 wake_up(&dasd_init_waitq);
438 device->target = target;
440 if (device->state != device->target)
441 dasd_change_state(device);
445 * Enable devices with device numbers in [from..to].
448 _wait_for_device(struct dasd_device *device)
450 return (device->state == device->target);
454 dasd_enable_device(struct dasd_device *device)
456 dasd_set_target_state(device, DASD_STATE_ONLINE);
457 if (device->state <= DASD_STATE_KNOWN)
458 /* No discipline for device found. */
459 dasd_set_target_state(device, DASD_STATE_NEW);
460 /* Now wait for the devices to come up. */
461 wait_event(dasd_init_waitq, _wait_for_device(device));
465 * SECTION: device operation (interrupt handler, start i/o, term i/o ...)
467 #ifdef CONFIG_DASD_PROFILE
469 struct dasd_profile_info_t dasd_global_profile;
470 unsigned int dasd_profile_level = DASD_PROFILE_OFF;
473 * Increments counter in global and local profiling structures.
475 #define dasd_profile_counter(value, counter, device) \
478 for (index = 0; index < 31 && value >> (2+index); index++); \
479 dasd_global_profile.counter[index]++; \
480 device->profile.counter[index]++; \
484 * Add profiling information for cqr before execution.
487 dasd_profile_start(struct dasd_device *device, struct dasd_ccw_req * cqr,
491 unsigned int counter;
493 if (dasd_profile_level != DASD_PROFILE_ON)
496 /* count the length of the chanq for statistics */
498 list_for_each(l, &device->ccw_queue)
501 dasd_global_profile.dasd_io_nr_req[counter]++;
502 device->profile.dasd_io_nr_req[counter]++;
506 * Add profiling information for cqr after execution.
509 dasd_profile_end(struct dasd_device *device, struct dasd_ccw_req * cqr,
512 long strtime, irqtime, endtime, tottime; /* in microseconds */
513 long tottimeps, sectors;
515 if (dasd_profile_level != DASD_PROFILE_ON)
518 sectors = req->nr_sectors;
519 if (!cqr->buildclk || !cqr->startclk ||
520 !cqr->stopclk || !cqr->endclk ||
524 strtime = ((cqr->startclk - cqr->buildclk) >> 12);
525 irqtime = ((cqr->stopclk - cqr->startclk) >> 12);
526 endtime = ((cqr->endclk - cqr->stopclk) >> 12);
527 tottime = ((cqr->endclk - cqr->buildclk) >> 12);
528 tottimeps = tottime / sectors;
530 if (!dasd_global_profile.dasd_io_reqs)
531 memset(&dasd_global_profile, 0,
532 sizeof (struct dasd_profile_info_t));
533 dasd_global_profile.dasd_io_reqs++;
534 dasd_global_profile.dasd_io_sects += sectors;
536 if (!device->profile.dasd_io_reqs)
537 memset(&device->profile, 0,
538 sizeof (struct dasd_profile_info_t));
539 device->profile.dasd_io_reqs++;
540 device->profile.dasd_io_sects += sectors;
542 dasd_profile_counter(sectors, dasd_io_secs, device);
543 dasd_profile_counter(tottime, dasd_io_times, device);
544 dasd_profile_counter(tottimeps, dasd_io_timps, device);
545 dasd_profile_counter(strtime, dasd_io_time1, device);
546 dasd_profile_counter(irqtime, dasd_io_time2, device);
547 dasd_profile_counter(irqtime / sectors, dasd_io_time2ps, device);
548 dasd_profile_counter(endtime, dasd_io_time3, device);
551 #define dasd_profile_start(device, cqr, req) do {} while (0)
552 #define dasd_profile_end(device, cqr, req) do {} while (0)
553 #endif /* CONFIG_DASD_PROFILE */
556 * Allocate memory for a channel program with 'cplength' channel
557 * command words and 'datasize' additional space. There are two
558 * variantes: 1) dasd_kmalloc_request uses kmalloc to get the needed
559 * memory and 2) dasd_smalloc_request uses the static ccw memory
560 * that gets allocated for each device.
562 struct dasd_ccw_req *
563 dasd_kmalloc_request(char *magic, int cplength, int datasize,
564 struct dasd_device * device)
566 struct dasd_ccw_req *cqr;
569 BUG_ON( magic == NULL || datasize > PAGE_SIZE ||
570 (cplength*sizeof(struct ccw1)) > PAGE_SIZE);
572 cqr = kzalloc(sizeof(struct dasd_ccw_req), GFP_ATOMIC);
574 return ERR_PTR(-ENOMEM);
577 cqr->cpaddr = kcalloc(cplength, sizeof(struct ccw1),
578 GFP_ATOMIC | GFP_DMA);
579 if (cqr->cpaddr == NULL) {
581 return ERR_PTR(-ENOMEM);
586 cqr->data = kzalloc(datasize, GFP_ATOMIC | GFP_DMA);
587 if (cqr->data == NULL) {
590 return ERR_PTR(-ENOMEM);
593 strncpy((char *) &cqr->magic, magic, 4);
594 ASCEBC((char *) &cqr->magic, 4);
595 set_bit(DASD_CQR_FLAGS_USE_ERP, &cqr->flags);
596 dasd_get_device(device);
600 struct dasd_ccw_req *
601 dasd_smalloc_request(char *magic, int cplength, int datasize,
602 struct dasd_device * device)
605 struct dasd_ccw_req *cqr;
610 BUG_ON( magic == NULL || datasize > PAGE_SIZE ||
611 (cplength*sizeof(struct ccw1)) > PAGE_SIZE);
613 size = (sizeof(struct dasd_ccw_req) + 7L) & -8L;
615 size += cplength * sizeof(struct ccw1);
618 spin_lock_irqsave(&device->mem_lock, flags);
619 cqr = (struct dasd_ccw_req *)
620 dasd_alloc_chunk(&device->ccw_chunks, size);
621 spin_unlock_irqrestore(&device->mem_lock, flags);
623 return ERR_PTR(-ENOMEM);
624 memset(cqr, 0, sizeof(struct dasd_ccw_req));
625 data = (char *) cqr + ((sizeof(struct dasd_ccw_req) + 7L) & -8L);
628 cqr->cpaddr = (struct ccw1 *) data;
629 data += cplength*sizeof(struct ccw1);
630 memset(cqr->cpaddr, 0, cplength*sizeof(struct ccw1));
635 memset(cqr->data, 0, datasize);
637 strncpy((char *) &cqr->magic, magic, 4);
638 ASCEBC((char *) &cqr->magic, 4);
639 set_bit(DASD_CQR_FLAGS_USE_ERP, &cqr->flags);
640 dasd_get_device(device);
645 * Free memory of a channel program. This function needs to free all the
646 * idal lists that might have been created by dasd_set_cda and the
647 * struct dasd_ccw_req itself.
650 dasd_kfree_request(struct dasd_ccw_req * cqr, struct dasd_device * device)
655 /* Clear any idals used for the request. */
658 clear_normalized_cda(ccw);
659 } while (ccw++->flags & (CCW_FLAG_CC | CCW_FLAG_DC));
664 dasd_put_device(device);
668 dasd_sfree_request(struct dasd_ccw_req * cqr, struct dasd_device * device)
672 spin_lock_irqsave(&device->mem_lock, flags);
673 dasd_free_chunk(&device->ccw_chunks, cqr);
674 spin_unlock_irqrestore(&device->mem_lock, flags);
675 dasd_put_device(device);
679 * Check discipline magic in cqr.
682 dasd_check_cqr(struct dasd_ccw_req *cqr)
684 struct dasd_device *device;
688 device = cqr->device;
689 if (strncmp((char *) &cqr->magic, device->discipline->ebcname, 4)) {
690 DEV_MESSAGE(KERN_WARNING, device,
691 " dasd_ccw_req 0x%08x magic doesn't match"
692 " discipline 0x%08x",
694 *(unsigned int *) device->discipline->name);
701 * Terminate the current i/o and set the request to clear_pending.
702 * Timer keeps device runnig.
703 * ccw_device_clear can fail if the i/o subsystem
707 dasd_term_IO(struct dasd_ccw_req * cqr)
709 struct dasd_device *device;
713 rc = dasd_check_cqr(cqr);
717 device = (struct dasd_device *) cqr->device;
718 while ((retries < 5) && (cqr->status == DASD_CQR_IN_IO)) {
719 rc = ccw_device_clear(device->cdev, (long) cqr);
721 case 0: /* termination successful */
723 cqr->status = DASD_CQR_CLEAR;
724 cqr->stopclk = get_clock();
726 DBF_DEV_EVENT(DBF_DEBUG, device,
727 "terminate cqr %p successful",
731 DBF_DEV_EVENT(DBF_ERR, device, "%s",
732 "device gone, retry");
735 DBF_DEV_EVENT(DBF_ERR, device, "%s",
740 DBF_DEV_EVENT(DBF_ERR, device, "%s",
741 "device busy, retry later");
744 DEV_MESSAGE(KERN_ERR, device,
745 "line %d unknown RC=%d, please "
746 "report to linux390@de.ibm.com",
753 dasd_schedule_bh(device);
758 * Start the i/o. This start_IO can fail if the channel is really busy.
759 * In that case set up a timer to start the request later.
762 dasd_start_IO(struct dasd_ccw_req * cqr)
764 struct dasd_device *device;
768 rc = dasd_check_cqr(cqr);
771 device = (struct dasd_device *) cqr->device;
772 if (cqr->retries < 0) {
773 DEV_MESSAGE(KERN_DEBUG, device,
774 "start_IO: request %p (%02x/%i) - no retry left.",
775 cqr, cqr->status, cqr->retries);
776 cqr->status = DASD_CQR_FAILED;
779 cqr->startclk = get_clock();
780 cqr->starttime = jiffies;
782 rc = ccw_device_start(device->cdev, cqr->cpaddr, (long) cqr,
786 cqr->status = DASD_CQR_IN_IO;
787 DBF_DEV_EVENT(DBF_DEBUG, device,
788 "start_IO: request %p started successful",
792 DBF_DEV_EVENT(DBF_ERR, device, "%s",
793 "start_IO: device busy, retry later");
796 DBF_DEV_EVENT(DBF_ERR, device, "%s",
797 "start_IO: request timeout, retry later");
800 /* -EACCES indicates that the request used only a
801 * subset of the available pathes and all these
803 * Do a retry with all available pathes.
805 cqr->lpm = LPM_ANYPATH;
806 DBF_DEV_EVENT(DBF_ERR, device, "%s",
807 "start_IO: selected pathes gone,"
808 " retry on all pathes");
812 DBF_DEV_EVENT(DBF_ERR, device, "%s",
813 "start_IO: device gone, retry");
816 DEV_MESSAGE(KERN_ERR, device,
817 "line %d unknown RC=%d, please report"
818 " to linux390@de.ibm.com", __LINE__, rc);
826 * Timeout function for dasd devices. This is used for different purposes
827 * 1) missing interrupt handler for normal operation
828 * 2) delayed start of request where start_IO failed with -EBUSY
829 * 3) timeout for missing state change interrupts
830 * The head of the ccw queue will have status DASD_CQR_IN_IO for 1),
831 * DASD_CQR_QUEUED for 2) and 3).
834 dasd_timeout_device(unsigned long ptr)
837 struct dasd_device *device;
839 device = (struct dasd_device *) ptr;
840 spin_lock_irqsave(get_ccwdev_lock(device->cdev), flags);
841 /* re-activate request queue */
842 device->stopped &= ~DASD_STOPPED_PENDING;
843 spin_unlock_irqrestore(get_ccwdev_lock(device->cdev), flags);
844 dasd_schedule_bh(device);
848 * Setup timeout for a device in jiffies.
851 dasd_set_timer(struct dasd_device *device, int expires)
854 if (timer_pending(&device->timer))
855 del_timer(&device->timer);
858 if (timer_pending(&device->timer)) {
859 if (mod_timer(&device->timer, jiffies + expires))
862 device->timer.function = dasd_timeout_device;
863 device->timer.data = (unsigned long) device;
864 device->timer.expires = jiffies + expires;
865 add_timer(&device->timer);
869 * Clear timeout for a device.
872 dasd_clear_timer(struct dasd_device *device)
874 if (timer_pending(&device->timer))
875 del_timer(&device->timer);
879 dasd_handle_killed_request(struct ccw_device *cdev, unsigned long intparm)
881 struct dasd_ccw_req *cqr;
882 struct dasd_device *device;
884 cqr = (struct dasd_ccw_req *) intparm;
885 if (cqr->status != DASD_CQR_IN_IO) {
887 "invalid status in handle_killed_request: "
888 "bus_id %s, status %02x",
889 cdev->dev.bus_id, cqr->status);
893 device = (struct dasd_device *) cqr->device;
894 if (device == NULL ||
895 device != dasd_device_from_cdev_locked(cdev) ||
896 strncmp(device->discipline->ebcname, (char *) &cqr->magic, 4)) {
897 MESSAGE(KERN_DEBUG, "invalid device in request: bus_id %s",
902 /* Schedule request to be retried. */
903 cqr->status = DASD_CQR_QUEUED;
905 dasd_clear_timer(device);
906 dasd_schedule_bh(device);
907 dasd_put_device(device);
911 dasd_handle_state_change_pending(struct dasd_device *device)
913 struct dasd_ccw_req *cqr;
914 struct list_head *l, *n;
916 /* First of all start sense subsystem status request. */
917 dasd_eer_snss(device);
919 device->stopped &= ~DASD_STOPPED_PENDING;
921 /* restart all 'running' IO on queue */
922 list_for_each_safe(l, n, &device->ccw_queue) {
923 cqr = list_entry(l, struct dasd_ccw_req, list);
924 if (cqr->status == DASD_CQR_IN_IO) {
925 cqr->status = DASD_CQR_QUEUED;
928 dasd_clear_timer(device);
929 dasd_schedule_bh(device);
933 * Interrupt handler for "normal" ssch-io based dasd devices.
936 dasd_int_handler(struct ccw_device *cdev, unsigned long intparm,
939 struct dasd_ccw_req *cqr, *next;
940 struct dasd_device *device;
941 unsigned long long now;
947 switch (PTR_ERR(irb)) {
949 dasd_handle_killed_request(cdev, intparm);
952 printk(KERN_WARNING"%s(%s): request timed out\n",
953 __FUNCTION__, cdev->dev.bus_id);
954 //FIXME - dasd uses own timeout interface...
957 printk(KERN_WARNING"%s(%s): unknown error %ld\n",
958 __FUNCTION__, cdev->dev.bus_id, PTR_ERR(irb));
965 DBF_EVENT(DBF_ERR, "Interrupt: bus_id %s CS/DS %04x ip %08x",
966 cdev->dev.bus_id, ((irb->scsw.cstat<<8)|irb->scsw.dstat),
967 (unsigned int) intparm);
969 /* first of all check for state change pending interrupt */
970 mask = DEV_STAT_ATTENTION | DEV_STAT_DEV_END | DEV_STAT_UNIT_EXCEP;
971 if ((irb->scsw.dstat & mask) == mask) {
972 device = dasd_device_from_cdev_locked(cdev);
973 if (!IS_ERR(device)) {
974 dasd_handle_state_change_pending(device);
975 dasd_put_device(device);
980 cqr = (struct dasd_ccw_req *) intparm;
982 /* check for unsolicited interrupts */
985 "unsolicited interrupt received: bus_id %s",
990 device = (struct dasd_device *) cqr->device;
991 if (device == NULL ||
992 strncmp(device->discipline->ebcname, (char *) &cqr->magic, 4)) {
993 MESSAGE(KERN_DEBUG, "invalid device in request: bus_id %s",
998 /* Check for clear pending */
999 if (cqr->status == DASD_CQR_CLEAR &&
1000 irb->scsw.fctl & SCSW_FCTL_CLEAR_FUNC) {
1001 cqr->status = DASD_CQR_QUEUED;
1002 dasd_clear_timer(device);
1003 wake_up(&dasd_flush_wq);
1004 dasd_schedule_bh(device);
1008 /* check status - the request might have been killed by dyn detach */
1009 if (cqr->status != DASD_CQR_IN_IO) {
1011 "invalid status: bus_id %s, status %02x",
1012 cdev->dev.bus_id, cqr->status);
1015 DBF_DEV_EVENT(DBF_DEBUG, device, "Int: CS/DS 0x%04x for cqr %p",
1016 ((irb->scsw.cstat << 8) | irb->scsw.dstat), cqr);
1018 /* Find out the appropriate era_action. */
1019 if (irb->scsw.fctl & SCSW_FCTL_HALT_FUNC)
1020 era = dasd_era_fatal;
1021 else if (irb->scsw.dstat == (DEV_STAT_CHN_END | DEV_STAT_DEV_END) &&
1022 irb->scsw.cstat == 0 &&
1023 !irb->esw.esw0.erw.cons)
1024 era = dasd_era_none;
1025 else if (irb->esw.esw0.erw.cons)
1026 era = device->discipline->examine_error(cqr, irb);
1028 era = dasd_era_recover;
1030 DBF_DEV_EVENT(DBF_DEBUG, device, "era_code %d", era);
1032 if (era == dasd_era_none) {
1033 cqr->status = DASD_CQR_DONE;
1035 /* Start first request on queue if possible -> fast_io. */
1036 if (cqr->list.next != &device->ccw_queue) {
1037 next = list_entry(cqr->list.next,
1038 struct dasd_ccw_req, list);
1039 if ((next->status == DASD_CQR_QUEUED) &&
1040 (!device->stopped)) {
1041 if (device->discipline->start_IO(next) == 0)
1042 expires = next->expires;
1044 DEV_MESSAGE(KERN_DEBUG, device, "%s",
1045 "Interrupt fastpath "
1049 } else { /* error */
1050 memcpy(&cqr->irb, irb, sizeof (struct irb));
1051 if (device->features & DASD_FEATURE_ERPLOG) {
1052 /* dump sense data */
1053 dasd_log_sense(cqr, irb);
1056 case dasd_era_fatal:
1057 cqr->status = DASD_CQR_FAILED;
1060 case dasd_era_recover:
1061 cqr->status = DASD_CQR_ERROR;
1068 dasd_set_timer(device, expires);
1070 dasd_clear_timer(device);
1071 dasd_schedule_bh(device);
1075 * posts the buffer_cache about a finalized request
1078 dasd_end_request(struct request *req, int uptodate)
1080 if (end_that_request_first(req, uptodate, req->hard_nr_sectors))
1082 add_disk_randomness(req->rq_disk);
1083 end_that_request_last(req, uptodate);
1087 * Process finished error recovery ccw.
1090 __dasd_process_erp(struct dasd_device *device, struct dasd_ccw_req *cqr)
1092 dasd_erp_fn_t erp_fn;
1094 if (cqr->status == DASD_CQR_DONE)
1095 DBF_DEV_EVENT(DBF_NOTICE, device, "%s", "ERP successful");
1097 DEV_MESSAGE(KERN_ERR, device, "%s", "ERP unsuccessful");
1098 erp_fn = device->discipline->erp_postaction(cqr);
1103 * Process ccw request queue.
1106 __dasd_process_ccw_queue(struct dasd_device * device,
1107 struct list_head *final_queue)
1109 struct list_head *l, *n;
1110 struct dasd_ccw_req *cqr;
1111 dasd_erp_fn_t erp_fn;
1114 /* Process request with final status. */
1115 list_for_each_safe(l, n, &device->ccw_queue) {
1116 cqr = list_entry(l, struct dasd_ccw_req, list);
1117 /* Stop list processing at the first non-final request. */
1118 if (cqr->status != DASD_CQR_DONE &&
1119 cqr->status != DASD_CQR_FAILED &&
1120 cqr->status != DASD_CQR_ERROR)
1122 /* Process requests with DASD_CQR_ERROR */
1123 if (cqr->status == DASD_CQR_ERROR) {
1124 if (cqr->irb.scsw.fctl & SCSW_FCTL_HALT_FUNC) {
1125 cqr->status = DASD_CQR_FAILED;
1126 cqr->stopclk = get_clock();
1128 if (cqr->irb.esw.esw0.erw.cons &&
1129 test_bit(DASD_CQR_FLAGS_USE_ERP,
1131 erp_fn = device->discipline->
1135 dasd_default_erp_action(cqr);
1140 /* First of all call extended error reporting. */
1141 if (dasd_eer_enabled(device) &&
1142 cqr->status == DASD_CQR_FAILED) {
1143 dasd_eer_write(device, cqr, DASD_EER_FATALERROR);
1145 /* restart request */
1146 cqr->status = DASD_CQR_QUEUED;
1148 device->stopped |= DASD_STOPPED_QUIESCE;
1152 /* Process finished ERP request. */
1154 __dasd_process_erp(device, cqr);
1158 /* Rechain finished requests to final queue */
1159 cqr->endclk = get_clock();
1160 list_move_tail(&cqr->list, final_queue);
1165 dasd_end_request_cb(struct dasd_ccw_req * cqr, void *data)
1167 struct request *req;
1168 struct dasd_device *device;
1171 req = (struct request *) data;
1172 device = cqr->device;
1173 dasd_profile_end(device, cqr, req);
1174 status = cqr->device->discipline->free_cp(cqr,req);
1175 spin_lock_irq(&device->request_queue_lock);
1176 dasd_end_request(req, status);
1177 spin_unlock_irq(&device->request_queue_lock);
1182 * Fetch requests from the block device queue.
1185 __dasd_process_blk_queue(struct dasd_device * device)
1187 request_queue_t *queue;
1188 struct request *req;
1189 struct dasd_ccw_req *cqr;
1192 queue = device->request_queue;
1193 /* No queue ? Then there is nothing to do. */
1198 * We requeue request from the block device queue to the ccw
1199 * queue only in two states. In state DASD_STATE_READY the
1200 * partition detection is done and we need to requeue requests
1201 * for that. State DASD_STATE_ONLINE is normal block device
1204 if (device->state != DASD_STATE_READY &&
1205 device->state != DASD_STATE_ONLINE)
1208 /* Now we try to fetch requests from the request queue */
1209 list_for_each_entry(cqr, &device->ccw_queue, list)
1210 if (cqr->status == DASD_CQR_QUEUED)
1212 while (!blk_queue_plugged(queue) &&
1213 elv_next_request(queue) &&
1214 nr_queued < DASD_CHANQ_MAX_SIZE) {
1215 req = elv_next_request(queue);
1217 if (device->features & DASD_FEATURE_READONLY &&
1218 rq_data_dir(req) == WRITE) {
1219 DBF_DEV_EVENT(DBF_ERR, device,
1220 "Rejecting write request %p",
1222 blkdev_dequeue_request(req);
1223 dasd_end_request(req, 0);
1226 if (device->stopped & DASD_STOPPED_DC_EIO) {
1227 blkdev_dequeue_request(req);
1228 dasd_end_request(req, 0);
1231 cqr = device->discipline->build_cp(device, req);
1233 if (PTR_ERR(cqr) == -ENOMEM)
1234 break; /* terminate request queue loop */
1235 if (PTR_ERR(cqr) == -EAGAIN) {
1237 * The current request cannot be build right
1238 * now, we have to try later. If this request
1239 * is the head-of-queue we stop the device
1242 if (!list_empty(&device->ccw_queue))
1244 device->stopped |= DASD_STOPPED_PENDING;
1245 dasd_set_timer(device, HZ/2);
1248 DBF_DEV_EVENT(DBF_ERR, device,
1249 "CCW creation failed (rc=%ld) "
1252 blkdev_dequeue_request(req);
1253 dasd_end_request(req, 0);
1256 cqr->callback = dasd_end_request_cb;
1257 cqr->callback_data = (void *) req;
1258 cqr->status = DASD_CQR_QUEUED;
1259 blkdev_dequeue_request(req);
1260 list_add_tail(&cqr->list, &device->ccw_queue);
1261 dasd_profile_start(device, cqr, req);
1267 * Take a look at the first request on the ccw queue and check
1268 * if it reached its expire time. If so, terminate the IO.
1271 __dasd_check_expire(struct dasd_device * device)
1273 struct dasd_ccw_req *cqr;
1275 if (list_empty(&device->ccw_queue))
1277 cqr = list_entry(device->ccw_queue.next, struct dasd_ccw_req, list);
1278 if ((cqr->status == DASD_CQR_IN_IO && cqr->expires != 0) &&
1279 (time_after_eq(jiffies, cqr->expires + cqr->starttime))) {
1280 if (device->discipline->term_IO(cqr) != 0) {
1281 /* Hmpf, try again in 5 sec */
1282 dasd_set_timer(device, 5*HZ);
1283 DEV_MESSAGE(KERN_ERR, device,
1284 "internal error - timeout (%is) expired "
1285 "for cqr %p, termination failed, "
1287 (cqr->expires/HZ), cqr);
1289 DEV_MESSAGE(KERN_ERR, device,
1290 "internal error - timeout (%is) expired "
1291 "for cqr %p (%i retries left)",
1292 (cqr->expires/HZ), cqr, cqr->retries);
1298 * Take a look at the first request on the ccw queue and check
1299 * if it needs to be started.
1302 __dasd_start_head(struct dasd_device * device)
1304 struct dasd_ccw_req *cqr;
1307 if (list_empty(&device->ccw_queue))
1309 cqr = list_entry(device->ccw_queue.next, struct dasd_ccw_req, list);
1310 if (cqr->status != DASD_CQR_QUEUED)
1312 /* Non-temporary stop condition will trigger fail fast */
1313 if (device->stopped & ~DASD_STOPPED_PENDING &&
1314 test_bit(DASD_CQR_FLAGS_FAILFAST, &cqr->flags) &&
1315 (!dasd_eer_enabled(device))) {
1316 cqr->status = DASD_CQR_FAILED;
1317 dasd_schedule_bh(device);
1320 /* Don't try to start requests if device is stopped */
1321 if (device->stopped)
1324 rc = device->discipline->start_IO(cqr);
1326 dasd_set_timer(device, cqr->expires);
1327 else if (rc == -EACCES) {
1328 dasd_schedule_bh(device);
1330 /* Hmpf, try again in 1/2 sec */
1331 dasd_set_timer(device, 50);
1335 _wait_for_clear(struct dasd_ccw_req *cqr)
1337 return (cqr->status == DASD_CQR_QUEUED);
1341 * Remove all requests from the ccw queue (all = '1') or only block device
1342 * requests in case all = '0'.
1343 * Take care of the erp-chain (chained via cqr->refers) and remove either
1344 * the whole erp-chain or none of the erp-requests.
1345 * If a request is currently running, term_IO is called and the request
1346 * is re-queued. Prior to removing the terminated request we need to wait
1347 * for the clear-interrupt.
1348 * In case termination is not possible we stop processing and just finishing
1349 * the already moved requests.
1352 dasd_flush_ccw_queue(struct dasd_device * device, int all)
1354 struct dasd_ccw_req *cqr, *orig, *n;
1357 struct list_head flush_queue;
1359 INIT_LIST_HEAD(&flush_queue);
1360 spin_lock_irq(get_ccwdev_lock(device->cdev));
1363 list_for_each_entry_safe(cqr, n, &device->ccw_queue, list) {
1364 /* get original request of erp request-chain */
1365 for (orig = cqr; orig->refers != NULL; orig = orig->refers);
1367 /* Flush all request or only block device requests? */
1368 if (all == 0 && cqr->callback != dasd_end_request_cb &&
1369 orig->callback != dasd_end_request_cb) {
1372 /* Check status and move request to flush_queue */
1373 switch (cqr->status) {
1374 case DASD_CQR_IN_IO:
1375 rc = device->discipline->term_IO(cqr);
1377 /* unable to terminate requeust */
1378 DEV_MESSAGE(KERN_ERR, device,
1379 "dasd flush ccw_queue is unable "
1380 " to terminate request %p",
1382 /* stop flush processing */
1386 case DASD_CQR_QUEUED:
1387 case DASD_CQR_ERROR:
1388 /* set request to FAILED */
1389 cqr->stopclk = get_clock();
1390 cqr->status = DASD_CQR_FAILED;
1392 default: /* do not touch the others */
1395 /* Rechain request (including erp chain) */
1396 for (i = 0; cqr != NULL; cqr = cqr->refers, i++) {
1397 cqr->endclk = get_clock();
1398 list_move_tail(&cqr->list, &flush_queue);
1401 /* moved more than one request - need to restart */
1406 spin_unlock_irq(get_ccwdev_lock(device->cdev));
1407 /* Now call the callback function of flushed requests */
1409 list_for_each_entry_safe(cqr, n, &flush_queue, list) {
1410 if (cqr->status == DASD_CQR_CLEAR) {
1411 /* wait for clear interrupt! */
1412 wait_event(dasd_flush_wq, _wait_for_clear(cqr));
1413 cqr->status = DASD_CQR_FAILED;
1415 /* Process finished ERP request. */
1417 __dasd_process_erp(device, cqr);
1418 /* restart list_for_xx loop since dasd_process_erp
1419 * might remove multiple elements */
1422 /* call the callback function */
1423 cqr->endclk = get_clock();
1424 if (cqr->callback != NULL)
1425 (cqr->callback)(cqr, cqr->callback_data);
1431 * Acquire the device lock and process queues for the device.
1434 dasd_tasklet(struct dasd_device * device)
1436 struct list_head final_queue;
1437 struct list_head *l, *n;
1438 struct dasd_ccw_req *cqr;
1440 atomic_set (&device->tasklet_scheduled, 0);
1441 INIT_LIST_HEAD(&final_queue);
1442 spin_lock_irq(get_ccwdev_lock(device->cdev));
1443 /* Check expire time of first request on the ccw queue. */
1444 __dasd_check_expire(device);
1445 /* Finish off requests on ccw queue */
1446 __dasd_process_ccw_queue(device, &final_queue);
1447 spin_unlock_irq(get_ccwdev_lock(device->cdev));
1448 /* Now call the callback function of requests with final status */
1449 list_for_each_safe(l, n, &final_queue) {
1450 cqr = list_entry(l, struct dasd_ccw_req, list);
1451 list_del_init(&cqr->list);
1452 if (cqr->callback != NULL)
1453 (cqr->callback)(cqr, cqr->callback_data);
1455 spin_lock_irq(&device->request_queue_lock);
1456 spin_lock(get_ccwdev_lock(device->cdev));
1457 /* Get new request from the block device request queue */
1458 __dasd_process_blk_queue(device);
1459 /* Now check if the head of the ccw queue needs to be started. */
1460 __dasd_start_head(device);
1461 spin_unlock(get_ccwdev_lock(device->cdev));
1462 spin_unlock_irq(&device->request_queue_lock);
1463 dasd_put_device(device);
1467 * Schedules a call to dasd_tasklet over the device tasklet.
1470 dasd_schedule_bh(struct dasd_device * device)
1472 /* Protect against rescheduling. */
1473 if (atomic_cmpxchg (&device->tasklet_scheduled, 0, 1) != 0)
1475 dasd_get_device(device);
1476 tasklet_hi_schedule(&device->tasklet);
1480 * Queue a request to the head of the ccw_queue. Start the I/O if
1484 dasd_add_request_head(struct dasd_ccw_req *req)
1486 struct dasd_device *device;
1487 unsigned long flags;
1489 device = req->device;
1490 spin_lock_irqsave(get_ccwdev_lock(device->cdev), flags);
1491 req->status = DASD_CQR_QUEUED;
1492 req->device = device;
1493 list_add(&req->list, &device->ccw_queue);
1494 /* let the bh start the request to keep them in order */
1495 dasd_schedule_bh(device);
1496 spin_unlock_irqrestore(get_ccwdev_lock(device->cdev), flags);
1500 * Queue a request to the tail of the ccw_queue. Start the I/O if
1504 dasd_add_request_tail(struct dasd_ccw_req *req)
1506 struct dasd_device *device;
1507 unsigned long flags;
1509 device = req->device;
1510 spin_lock_irqsave(get_ccwdev_lock(device->cdev), flags);
1511 req->status = DASD_CQR_QUEUED;
1512 req->device = device;
1513 list_add_tail(&req->list, &device->ccw_queue);
1514 /* let the bh start the request to keep them in order */
1515 dasd_schedule_bh(device);
1516 spin_unlock_irqrestore(get_ccwdev_lock(device->cdev), flags);
1523 dasd_wakeup_cb(struct dasd_ccw_req *cqr, void *data)
1525 wake_up((wait_queue_head_t *) data);
1529 _wait_for_wakeup(struct dasd_ccw_req *cqr)
1531 struct dasd_device *device;
1534 device = cqr->device;
1535 spin_lock_irq(get_ccwdev_lock(device->cdev));
1536 rc = ((cqr->status == DASD_CQR_DONE ||
1537 cqr->status == DASD_CQR_FAILED) &&
1538 list_empty(&cqr->list));
1539 spin_unlock_irq(get_ccwdev_lock(device->cdev));
1544 * Attempts to start a special ccw queue and waits for its completion.
1547 dasd_sleep_on(struct dasd_ccw_req * cqr)
1549 wait_queue_head_t wait_q;
1550 struct dasd_device *device;
1553 device = cqr->device;
1554 spin_lock_irq(get_ccwdev_lock(device->cdev));
1556 init_waitqueue_head (&wait_q);
1557 cqr->callback = dasd_wakeup_cb;
1558 cqr->callback_data = (void *) &wait_q;
1559 cqr->status = DASD_CQR_QUEUED;
1560 list_add_tail(&cqr->list, &device->ccw_queue);
1562 /* let the bh start the request to keep them in order */
1563 dasd_schedule_bh(device);
1565 spin_unlock_irq(get_ccwdev_lock(device->cdev));
1567 wait_event(wait_q, _wait_for_wakeup(cqr));
1569 /* Request status is either done or failed. */
1570 rc = (cqr->status == DASD_CQR_FAILED) ? -EIO : 0;
1575 * Attempts to start a special ccw queue and wait interruptible
1576 * for its completion.
1579 dasd_sleep_on_interruptible(struct dasd_ccw_req * cqr)
1581 wait_queue_head_t wait_q;
1582 struct dasd_device *device;
1585 device = cqr->device;
1586 spin_lock_irq(get_ccwdev_lock(device->cdev));
1588 init_waitqueue_head (&wait_q);
1589 cqr->callback = dasd_wakeup_cb;
1590 cqr->callback_data = (void *) &wait_q;
1591 cqr->status = DASD_CQR_QUEUED;
1592 list_add_tail(&cqr->list, &device->ccw_queue);
1594 /* let the bh start the request to keep them in order */
1595 dasd_schedule_bh(device);
1596 spin_unlock_irq(get_ccwdev_lock(device->cdev));
1600 rc = wait_event_interruptible(wait_q, _wait_for_wakeup(cqr));
1601 if (rc != -ERESTARTSYS) {
1602 /* Request is final (done or failed) */
1603 rc = (cqr->status == DASD_CQR_DONE) ? 0 : -EIO;
1606 spin_lock_irq(get_ccwdev_lock(device->cdev));
1607 switch (cqr->status) {
1608 case DASD_CQR_IN_IO:
1609 /* terminate runnig cqr */
1610 if (device->discipline->term_IO) {
1612 device->discipline->term_IO(cqr);
1613 /* wait (non-interruptible) for final status
1614 * because signal ist still pending */
1615 spin_unlock_irq(get_ccwdev_lock(device->cdev));
1616 wait_event(wait_q, _wait_for_wakeup(cqr));
1617 spin_lock_irq(get_ccwdev_lock(device->cdev));
1618 rc = (cqr->status == DASD_CQR_DONE) ? 0 : -EIO;
1622 case DASD_CQR_QUEUED:
1624 list_del_init(&cqr->list);
1629 /* cqr with 'non-interruptable' status - just wait */
1632 spin_unlock_irq(get_ccwdev_lock(device->cdev));
1638 * Whoa nelly now it gets really hairy. For some functions (e.g. steal lock
1639 * for eckd devices) the currently running request has to be terminated
1640 * and be put back to status queued, before the special request is added
1641 * to the head of the queue. Then the special request is waited on normally.
1644 _dasd_term_running_cqr(struct dasd_device *device)
1646 struct dasd_ccw_req *cqr;
1648 if (list_empty(&device->ccw_queue))
1650 cqr = list_entry(device->ccw_queue.next, struct dasd_ccw_req, list);
1651 return device->discipline->term_IO(cqr);
1655 dasd_sleep_on_immediatly(struct dasd_ccw_req * cqr)
1657 wait_queue_head_t wait_q;
1658 struct dasd_device *device;
1661 device = cqr->device;
1662 spin_lock_irq(get_ccwdev_lock(device->cdev));
1663 rc = _dasd_term_running_cqr(device);
1665 spin_unlock_irq(get_ccwdev_lock(device->cdev));
1669 init_waitqueue_head (&wait_q);
1670 cqr->callback = dasd_wakeup_cb;
1671 cqr->callback_data = (void *) &wait_q;
1672 cqr->status = DASD_CQR_QUEUED;
1673 list_add(&cqr->list, &device->ccw_queue);
1675 /* let the bh start the request to keep them in order */
1676 dasd_schedule_bh(device);
1678 spin_unlock_irq(get_ccwdev_lock(device->cdev));
1680 wait_event(wait_q, _wait_for_wakeup(cqr));
1682 /* Request status is either done or failed. */
1683 rc = (cqr->status == DASD_CQR_FAILED) ? -EIO : 0;
1688 * Cancels a request that was started with dasd_sleep_on_req.
1689 * This is useful to timeout requests. The request will be
1690 * terminated if it is currently in i/o.
1691 * Returns 1 if the request has been terminated.
1694 dasd_cancel_req(struct dasd_ccw_req *cqr)
1696 struct dasd_device *device = cqr->device;
1697 unsigned long flags;
1701 spin_lock_irqsave(get_ccwdev_lock(device->cdev), flags);
1702 switch (cqr->status) {
1703 case DASD_CQR_QUEUED:
1704 /* request was not started - just set to failed */
1705 cqr->status = DASD_CQR_FAILED;
1707 case DASD_CQR_IN_IO:
1708 /* request in IO - terminate IO and release again */
1709 if (device->discipline->term_IO(cqr) != 0)
1710 /* what to do if unable to terminate ??????
1712 cqr->status = DASD_CQR_FAILED;
1713 cqr->stopclk = get_clock();
1717 case DASD_CQR_FAILED:
1718 /* already finished - do nothing */
1721 DEV_MESSAGE(KERN_ALERT, device,
1722 "invalid status %02x in request",
1727 spin_unlock_irqrestore(get_ccwdev_lock(device->cdev), flags);
1728 dasd_schedule_bh(device);
1733 * SECTION: Block device operations (request queue, partitions, open, release).
1737 * Dasd request queue function. Called from ll_rw_blk.c
1740 do_dasd_request(request_queue_t * queue)
1742 struct dasd_device *device;
1744 device = (struct dasd_device *) queue->queuedata;
1745 spin_lock(get_ccwdev_lock(device->cdev));
1746 /* Get new request from the block device request queue */
1747 __dasd_process_blk_queue(device);
1748 /* Now check if the head of the ccw queue needs to be started. */
1749 __dasd_start_head(device);
1750 spin_unlock(get_ccwdev_lock(device->cdev));
1754 * Allocate and initialize request queue and default I/O scheduler.
1757 dasd_alloc_queue(struct dasd_device * device)
1761 device->request_queue = blk_init_queue(do_dasd_request,
1762 &device->request_queue_lock);
1763 if (device->request_queue == NULL)
1766 device->request_queue->queuedata = device;
1768 elevator_exit(device->request_queue->elevator);
1769 rc = elevator_init(device->request_queue, "deadline");
1771 blk_cleanup_queue(device->request_queue);
1778 * Allocate and initialize request queue.
1781 dasd_setup_queue(struct dasd_device * device)
1785 blk_queue_hardsect_size(device->request_queue, device->bp_block);
1786 max = device->discipline->max_blocks << device->s2b_shift;
1787 blk_queue_max_sectors(device->request_queue, max);
1788 blk_queue_max_phys_segments(device->request_queue, -1L);
1789 blk_queue_max_hw_segments(device->request_queue, -1L);
1790 blk_queue_max_segment_size(device->request_queue, -1L);
1791 blk_queue_segment_boundary(device->request_queue, -1L);
1792 blk_queue_ordered(device->request_queue, QUEUE_ORDERED_TAG, NULL);
1796 * Deactivate and free request queue.
1799 dasd_free_queue(struct dasd_device * device)
1801 if (device->request_queue) {
1802 blk_cleanup_queue(device->request_queue);
1803 device->request_queue = NULL;
1808 * Flush request on the request queue.
1811 dasd_flush_request_queue(struct dasd_device * device)
1813 struct request *req;
1815 if (!device->request_queue)
1818 spin_lock_irq(&device->request_queue_lock);
1819 while ((req = elv_next_request(device->request_queue))) {
1820 blkdev_dequeue_request(req);
1821 dasd_end_request(req, 0);
1823 spin_unlock_irq(&device->request_queue_lock);
1827 dasd_open(struct inode *inp, struct file *filp)
1829 struct gendisk *disk = inp->i_bdev->bd_disk;
1830 struct dasd_device *device = disk->private_data;
1833 atomic_inc(&device->open_count);
1834 if (test_bit(DASD_FLAG_OFFLINE, &device->flags)) {
1839 if (!try_module_get(device->discipline->owner)) {
1844 if (dasd_probeonly) {
1845 DEV_MESSAGE(KERN_INFO, device, "%s",
1846 "No access to device due to probeonly mode");
1851 if (device->state <= DASD_STATE_BASIC) {
1852 DBF_DEV_EVENT(DBF_ERR, device, " %s",
1853 " Cannot open unrecognized device");
1861 module_put(device->discipline->owner);
1863 atomic_dec(&device->open_count);
1868 dasd_release(struct inode *inp, struct file *filp)
1870 struct gendisk *disk = inp->i_bdev->bd_disk;
1871 struct dasd_device *device = disk->private_data;
1873 atomic_dec(&device->open_count);
1874 module_put(device->discipline->owner);
1879 * Return disk geometry.
1882 dasd_getgeo(struct block_device *bdev, struct hd_geometry *geo)
1884 struct dasd_device *device;
1886 device = bdev->bd_disk->private_data;
1890 if (!device->discipline ||
1891 !device->discipline->fill_geometry)
1894 device->discipline->fill_geometry(device, geo);
1895 geo->start = get_start_sect(bdev) >> device->s2b_shift;
1899 struct block_device_operations
1900 dasd_device_operations = {
1901 .owner = THIS_MODULE,
1903 .release = dasd_release,
1904 .ioctl = dasd_ioctl,
1905 .compat_ioctl = dasd_compat_ioctl,
1906 .getgeo = dasd_getgeo,
1913 #ifdef CONFIG_PROC_FS
1917 if (dasd_page_cache != NULL) {
1918 kmem_cache_destroy(dasd_page_cache);
1919 dasd_page_cache = NULL;
1921 dasd_gendisk_exit();
1923 if (dasd_debug_area != NULL) {
1924 debug_unregister(dasd_debug_area);
1925 dasd_debug_area = NULL;
1930 * SECTION: common functions for ccw_driver use
1934 * Initial attempt at a probe function. this can be simplified once
1935 * the other detection code is gone.
1938 dasd_generic_probe (struct ccw_device *cdev,
1939 struct dasd_discipline *discipline)
1943 ret = ccw_device_set_options(cdev, CCWDEV_DO_PATHGROUP);
1946 "dasd_generic_probe: could not set ccw-device options "
1947 "for %s\n", cdev->dev.bus_id);
1950 ret = dasd_add_sysfs_files(cdev);
1953 "dasd_generic_probe: could not add sysfs entries "
1954 "for %s\n", cdev->dev.bus_id);
1957 cdev->handler = &dasd_int_handler;
1960 * Automatically online either all dasd devices (dasd_autodetect)
1961 * or all devices specified with dasd= parameters during
1964 if ((dasd_get_feature(cdev, DASD_FEATURE_INITIAL_ONLINE) > 0 ) ||
1965 (dasd_autodetect && dasd_busid_known(cdev->dev.bus_id) != 0))
1966 ret = ccw_device_set_online(cdev);
1969 "dasd_generic_probe: could not initially online "
1970 "ccw-device %s\n", cdev->dev.bus_id);
1975 * This will one day be called from a global not_oper handler.
1976 * It is also used by driver_unregister during module unload.
1979 dasd_generic_remove (struct ccw_device *cdev)
1981 struct dasd_device *device;
1983 cdev->handler = NULL;
1985 dasd_remove_sysfs_files(cdev);
1986 device = dasd_device_from_cdev(cdev);
1989 if (test_and_set_bit(DASD_FLAG_OFFLINE, &device->flags)) {
1990 /* Already doing offline processing */
1991 dasd_put_device(device);
1995 * This device is removed unconditionally. Set offline
1996 * flag to prevent dasd_open from opening it while it is
1997 * no quite down yet.
1999 dasd_set_target_state(device, DASD_STATE_NEW);
2000 /* dasd_delete_device destroys the device reference. */
2001 dasd_delete_device(device);
2005 * Activate a device. This is called from dasd_{eckd,fba}_probe() when either
2006 * the device is detected for the first time and is supposed to be used
2007 * or the user has started activation through sysfs.
2010 dasd_generic_set_online (struct ccw_device *cdev,
2011 struct dasd_discipline *base_discipline)
2014 struct dasd_discipline *discipline;
2015 struct dasd_device *device;
2018 /* first online clears initial online feature flag */
2019 dasd_set_feature(cdev, DASD_FEATURE_INITIAL_ONLINE, 0);
2020 device = dasd_create_device(cdev);
2022 return PTR_ERR(device);
2024 discipline = base_discipline;
2025 if (device->features & DASD_FEATURE_USEDIAG) {
2026 if (!dasd_diag_discipline_pointer) {
2027 printk (KERN_WARNING
2028 "dasd_generic couldn't online device %s "
2029 "- discipline DIAG not available\n",
2031 dasd_delete_device(device);
2034 discipline = dasd_diag_discipline_pointer;
2036 if (!try_module_get(base_discipline->owner)) {
2037 dasd_delete_device(device);
2040 if (!try_module_get(discipline->owner)) {
2041 module_put(base_discipline->owner);
2042 dasd_delete_device(device);
2045 device->base_discipline = base_discipline;
2046 device->discipline = discipline;
2048 rc = discipline->check_device(device);
2050 printk (KERN_WARNING
2051 "dasd_generic couldn't online device %s "
2052 "with discipline %s rc=%i\n",
2053 cdev->dev.bus_id, discipline->name, rc);
2054 module_put(discipline->owner);
2055 module_put(base_discipline->owner);
2056 dasd_delete_device(device);
2060 dasd_set_target_state(device, DASD_STATE_ONLINE);
2061 if (device->state <= DASD_STATE_KNOWN) {
2062 printk (KERN_WARNING
2063 "dasd_generic discipline not found for %s\n",
2066 dasd_set_target_state(device, DASD_STATE_NEW);
2067 dasd_delete_device(device);
2069 pr_debug("dasd_generic device %s found\n",
2072 /* FIXME: we have to wait for the root device but we don't want
2073 * to wait for each single device but for all at once. */
2074 wait_event(dasd_init_waitq, _wait_for_device(device));
2076 dasd_put_device(device);
2082 dasd_generic_set_offline (struct ccw_device *cdev)
2084 struct dasd_device *device;
2085 int max_count, open_count;
2087 device = dasd_device_from_cdev(cdev);
2089 return PTR_ERR(device);
2090 if (test_and_set_bit(DASD_FLAG_OFFLINE, &device->flags)) {
2091 /* Already doing offline processing */
2092 dasd_put_device(device);
2096 * We must make sure that this device is currently not in use.
2097 * The open_count is increased for every opener, that includes
2098 * the blkdev_get in dasd_scan_partitions. We are only interested
2099 * in the other openers.
2101 max_count = device->bdev ? 0 : -1;
2102 open_count = (int) atomic_read(&device->open_count);
2103 if (open_count > max_count) {
2105 printk (KERN_WARNING "Can't offline dasd device with "
2106 "open count = %i.\n",
2109 printk (KERN_WARNING "%s",
2110 "Can't offline dasd device due to internal "
2112 clear_bit(DASD_FLAG_OFFLINE, &device->flags);
2113 dasd_put_device(device);
2116 dasd_set_target_state(device, DASD_STATE_NEW);
2117 /* dasd_delete_device destroys the device reference. */
2118 dasd_delete_device(device);
2124 dasd_generic_notify(struct ccw_device *cdev, int event)
2126 struct dasd_device *device;
2127 struct dasd_ccw_req *cqr;
2128 unsigned long flags;
2131 device = dasd_device_from_cdev(cdev);
2134 spin_lock_irqsave(get_ccwdev_lock(cdev), flags);
2139 /* First of all call extended error reporting. */
2140 dasd_eer_write(device, NULL, DASD_EER_NOPATH);
2142 if (device->state < DASD_STATE_BASIC)
2144 /* Device is active. We want to keep it. */
2145 if (test_bit(DASD_FLAG_DSC_ERROR, &device->flags)) {
2146 list_for_each_entry(cqr, &device->ccw_queue, list)
2147 if (cqr->status == DASD_CQR_IN_IO)
2148 cqr->status = DASD_CQR_FAILED;
2149 device->stopped |= DASD_STOPPED_DC_EIO;
2151 list_for_each_entry(cqr, &device->ccw_queue, list)
2152 if (cqr->status == DASD_CQR_IN_IO) {
2153 cqr->status = DASD_CQR_QUEUED;
2156 device->stopped |= DASD_STOPPED_DC_WAIT;
2157 dasd_set_timer(device, 0);
2159 dasd_schedule_bh(device);
2163 /* FIXME: add a sanity check. */
2164 device->stopped &= ~(DASD_STOPPED_DC_WAIT|DASD_STOPPED_DC_EIO);
2165 dasd_schedule_bh(device);
2169 spin_unlock_irqrestore(get_ccwdev_lock(cdev), flags);
2170 dasd_put_device(device);
2180 init_waitqueue_head(&dasd_init_waitq);
2181 init_waitqueue_head(&dasd_flush_wq);
2183 /* register 'common' DASD debug area, used for all DBF_XXX calls */
2184 dasd_debug_area = debug_register("dasd", 1, 2, 8 * sizeof (long));
2185 if (dasd_debug_area == NULL) {
2189 debug_register_view(dasd_debug_area, &debug_sprintf_view);
2190 debug_set_level(dasd_debug_area, DBF_WARNING);
2192 DBF_EVENT(DBF_EMERG, "%s", "debug area created");
2194 dasd_diag_discipline_pointer = NULL;
2196 rc = dasd_devmap_init();
2199 rc = dasd_gendisk_init();
2205 rc = dasd_eer_init();
2208 #ifdef CONFIG_PROC_FS
2209 rc = dasd_proc_init();
2216 MESSAGE(KERN_INFO, "%s", "initialization not performed due to errors");
2221 module_init(dasd_init);
2222 module_exit(dasd_exit);
2224 EXPORT_SYMBOL(dasd_debug_area);
2225 EXPORT_SYMBOL(dasd_diag_discipline_pointer);
2227 EXPORT_SYMBOL(dasd_add_request_head);
2228 EXPORT_SYMBOL(dasd_add_request_tail);
2229 EXPORT_SYMBOL(dasd_cancel_req);
2230 EXPORT_SYMBOL(dasd_clear_timer);
2231 EXPORT_SYMBOL(dasd_enable_device);
2232 EXPORT_SYMBOL(dasd_int_handler);
2233 EXPORT_SYMBOL(dasd_kfree_request);
2234 EXPORT_SYMBOL(dasd_kick_device);
2235 EXPORT_SYMBOL(dasd_kmalloc_request);
2236 EXPORT_SYMBOL(dasd_schedule_bh);
2237 EXPORT_SYMBOL(dasd_set_target_state);
2238 EXPORT_SYMBOL(dasd_set_timer);
2239 EXPORT_SYMBOL(dasd_sfree_request);
2240 EXPORT_SYMBOL(dasd_sleep_on);
2241 EXPORT_SYMBOL(dasd_sleep_on_immediatly);
2242 EXPORT_SYMBOL(dasd_sleep_on_interruptible);
2243 EXPORT_SYMBOL(dasd_smalloc_request);
2244 EXPORT_SYMBOL(dasd_start_IO);
2245 EXPORT_SYMBOL(dasd_term_IO);
2247 EXPORT_SYMBOL_GPL(dasd_generic_probe);
2248 EXPORT_SYMBOL_GPL(dasd_generic_remove);
2249 EXPORT_SYMBOL_GPL(dasd_generic_notify);
2250 EXPORT_SYMBOL_GPL(dasd_generic_set_online);
2251 EXPORT_SYMBOL_GPL(dasd_generic_set_offline);