1 /*
2 * Author(s)......: Holger Smolinski <Holger.Smolinski@de.ibm.com>
3 * Horst Hummel <Horst.Hummel@de.ibm.com>
4 * Carsten Otte <Cotte@de.ibm.com>
5 * Martin Schwidefsky <schwidefsky@de.ibm.com>
6 * Bugreports.to..: <Linux390@de.ibm.com>
7 * Copyright IBM Corp. 1999, 2009
8 */
9
10 #define KMSG_COMPONENT "dasd"
11 #define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
12
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/hdreg.h>
20 #include <linux/async.h>
21 #include <linux/mutex.h>
22 #include <linux/debugfs.h>
23 #include <linux/seq_file.h>
24 #include <linux/vmalloc.h>
25
26 #include <asm/ccwdev.h>
27 #include <asm/ebcdic.h>
28 #include <asm/idals.h>
29 #include <asm/itcw.h>
30 #include <asm/diag.h>
31
32 /* This is ugly... */
33 #define PRINTK_HEADER "dasd:"
34
35 #include "dasd_int.h"
36 /*
37 * SECTION: Constant definitions to be used within this file
38 */
39 #define DASD_CHANQ_MAX_SIZE 4
40
41 #define DASD_DIAG_MOD "dasd_diag_mod"
42
43 /*
44 * SECTION: exported variables of dasd.c
45 */
46 debug_info_t *dasd_debug_area;
47 EXPORT_SYMBOL(dasd_debug_area);
48 static struct dentry *dasd_debugfs_root_entry;
49 struct dasd_discipline *dasd_diag_discipline_pointer;
50 EXPORT_SYMBOL(dasd_diag_discipline_pointer);
51 void dasd_int_handler(struct ccw_device *, unsigned long, struct irb *);
52
53 MODULE_AUTHOR("Holger Smolinski <Holger.Smolinski@de.ibm.com>");
54 MODULE_DESCRIPTION("Linux on S/390 DASD device driver,"
55 " Copyright IBM Corp. 2000");
56 MODULE_SUPPORTED_DEVICE("dasd");
57 MODULE_LICENSE("GPL");
58
59 /*
60 * SECTION: prototypes for static functions of dasd.c
61 */
62 static int dasd_alloc_queue(struct dasd_block *);
63 static void dasd_setup_queue(struct dasd_block *);
64 static void dasd_free_queue(struct dasd_block *);
65 static int dasd_flush_block_queue(struct dasd_block *);
66 static void dasd_device_tasklet(struct dasd_device *);
67 static void dasd_block_tasklet(struct dasd_block *);
68 static void do_kick_device(struct work_struct *);
69 static void do_restore_device(struct work_struct *);
70 static void do_reload_device(struct work_struct *);
71 static void do_requeue_requests(struct work_struct *);
72 static void dasd_return_cqr_cb(struct dasd_ccw_req *, void *);
73 static void dasd_device_timeout(unsigned long);
74 static void dasd_block_timeout(unsigned long);
75 static void __dasd_process_erp(struct dasd_device *, struct dasd_ccw_req *);
76 static void dasd_profile_init(struct dasd_profile *, struct dentry *);
77 static void dasd_profile_exit(struct dasd_profile *);
78 static void dasd_hosts_init(struct dentry *, struct dasd_device *);
79 static void dasd_hosts_exit(struct dasd_device *);
80
81 /*
82 * SECTION: Operations on the device structure.
83 */
84 static wait_queue_head_t dasd_init_waitq;
85 static wait_queue_head_t dasd_flush_wq;
86 static wait_queue_head_t generic_waitq;
87 static wait_queue_head_t shutdown_waitq;
88
89 /*
90 * Allocate memory for a new device structure.
91 */
dasd_alloc_device(void)92 struct dasd_device *dasd_alloc_device(void)
93 {
94 struct dasd_device *device;
95
96 device = kzalloc(sizeof(struct dasd_device), GFP_ATOMIC);
97 if (!device)
98 return ERR_PTR(-ENOMEM);
99
100 /* Get two pages for normal block device operations. */
101 device->ccw_mem = (void *) __get_free_pages(GFP_ATOMIC | GFP_DMA, 1);
102 if (!device->ccw_mem) {
103 kfree(device);
104 return ERR_PTR(-ENOMEM);
105 }
106 /* Get one page for error recovery. */
107 device->erp_mem = (void *) get_zeroed_page(GFP_ATOMIC | GFP_DMA);
108 if (!device->erp_mem) {
109 free_pages((unsigned long) device->ccw_mem, 1);
110 kfree(device);
111 return ERR_PTR(-ENOMEM);
112 }
113
114 dasd_init_chunklist(&device->ccw_chunks, device->ccw_mem, PAGE_SIZE*2);
115 dasd_init_chunklist(&device->erp_chunks, device->erp_mem, PAGE_SIZE);
116 spin_lock_init(&device->mem_lock);
117 atomic_set(&device->tasklet_scheduled, 0);
118 tasklet_init(&device->tasklet,
119 (void (*)(unsigned long)) dasd_device_tasklet,
120 (unsigned long) device);
121 INIT_LIST_HEAD(&device->ccw_queue);
122 init_timer(&device->timer);
123 device->timer.function = dasd_device_timeout;
124 device->timer.data = (unsigned long) device;
125 INIT_WORK(&device->kick_work, do_kick_device);
126 INIT_WORK(&device->restore_device, do_restore_device);
127 INIT_WORK(&device->reload_device, do_reload_device);
128 INIT_WORK(&device->requeue_requests, do_requeue_requests);
129 device->state = DASD_STATE_NEW;
130 device->target = DASD_STATE_NEW;
131 mutex_init(&device->state_mutex);
132 spin_lock_init(&device->profile.lock);
133 return device;
134 }
135
136 /*
137 * Free memory of a device structure.
138 */
dasd_free_device(struct dasd_device * device)139 void dasd_free_device(struct dasd_device *device)
140 {
141 kfree(device->private);
142 free_page((unsigned long) device->erp_mem);
143 free_pages((unsigned long) device->ccw_mem, 1);
144 kfree(device);
145 }
146
147 /*
148 * Allocate memory for a new device structure.
149 */
dasd_alloc_block(void)150 struct dasd_block *dasd_alloc_block(void)
151 {
152 struct dasd_block *block;
153
154 block = kzalloc(sizeof(*block), GFP_ATOMIC);
155 if (!block)
156 return ERR_PTR(-ENOMEM);
157 /* open_count = 0 means device online but not in use */
158 atomic_set(&block->open_count, -1);
159
160 atomic_set(&block->tasklet_scheduled, 0);
161 tasklet_init(&block->tasklet,
162 (void (*)(unsigned long)) dasd_block_tasklet,
163 (unsigned long) block);
164 INIT_LIST_HEAD(&block->ccw_queue);
165 spin_lock_init(&block->queue_lock);
166 init_timer(&block->timer);
167 block->timer.function = dasd_block_timeout;
168 block->timer.data = (unsigned long) block;
169 spin_lock_init(&block->profile.lock);
170
171 return block;
172 }
173 EXPORT_SYMBOL_GPL(dasd_alloc_block);
174
175 /*
176 * Free memory of a device structure.
177 */
dasd_free_block(struct dasd_block * block)178 void dasd_free_block(struct dasd_block *block)
179 {
180 kfree(block);
181 }
182 EXPORT_SYMBOL_GPL(dasd_free_block);
183
184 /*
185 * Make a new device known to the system.
186 */
dasd_state_new_to_known(struct dasd_device * device)187 static int dasd_state_new_to_known(struct dasd_device *device)
188 {
189 int rc;
190
191 /*
192 * As long as the device is not in state DASD_STATE_NEW we want to
193 * keep the reference count > 0.
194 */
195 dasd_get_device(device);
196
197 if (device->block) {
198 rc = dasd_alloc_queue(device->block);
199 if (rc) {
200 dasd_put_device(device);
201 return rc;
202 }
203 }
204 device->state = DASD_STATE_KNOWN;
205 return 0;
206 }
207
208 /*
209 * Let the system forget about a device.
210 */
dasd_state_known_to_new(struct dasd_device * device)211 static int dasd_state_known_to_new(struct dasd_device *device)
212 {
213 /* Disable extended error reporting for this device. */
214 dasd_eer_disable(device);
215 device->state = DASD_STATE_NEW;
216
217 if (device->block)
218 dasd_free_queue(device->block);
219
220 /* Give up reference we took in dasd_state_new_to_known. */
221 dasd_put_device(device);
222 return 0;
223 }
224
dasd_debugfs_setup(const char * name,struct dentry * base_dentry)225 static struct dentry *dasd_debugfs_setup(const char *name,
226 struct dentry *base_dentry)
227 {
228 struct dentry *pde;
229
230 if (!base_dentry)
231 return NULL;
232 pde = debugfs_create_dir(name, base_dentry);
233 if (!pde || IS_ERR(pde))
234 return NULL;
235 return pde;
236 }
237
238 /*
239 * Request the irq line for the device.
240 */
dasd_state_known_to_basic(struct dasd_device * device)241 static int dasd_state_known_to_basic(struct dasd_device *device)
242 {
243 struct dasd_block *block = device->block;
244 int rc = 0;
245
246 /* Allocate and register gendisk structure. */
247 if (block) {
248 rc = dasd_gendisk_alloc(block);
249 if (rc)
250 return rc;
251 block->debugfs_dentry =
252 dasd_debugfs_setup(block->gdp->disk_name,
253 dasd_debugfs_root_entry);
254 dasd_profile_init(&block->profile, block->debugfs_dentry);
255 if (dasd_global_profile_level == DASD_PROFILE_ON)
256 dasd_profile_on(&device->block->profile);
257 }
258 device->debugfs_dentry =
259 dasd_debugfs_setup(dev_name(&device->cdev->dev),
260 dasd_debugfs_root_entry);
261 dasd_profile_init(&device->profile, device->debugfs_dentry);
262 dasd_hosts_init(device->debugfs_dentry, device);
263
264 /* register 'device' debug area, used for all DBF_DEV_XXX calls */
265 device->debug_area = debug_register(dev_name(&device->cdev->dev), 4, 1,
266 8 * sizeof(long));
267 debug_register_view(device->debug_area, &debug_sprintf_view);
268 debug_set_level(device->debug_area, DBF_WARNING);
269 DBF_DEV_EVENT(DBF_EMERG, device, "%s", "debug area created");
270
271 device->state = DASD_STATE_BASIC;
272
273 return rc;
274 }
275
276 /*
277 * Release the irq line for the device. Terminate any running i/o.
278 */
dasd_state_basic_to_known(struct dasd_device * device)279 static int dasd_state_basic_to_known(struct dasd_device *device)
280 {
281 int rc;
282
283 if (device->discipline->basic_to_known) {
284 rc = device->discipline->basic_to_known(device);
285 if (rc)
286 return rc;
287 }
288
289 if (device->block) {
290 dasd_profile_exit(&device->block->profile);
291 debugfs_remove(device->block->debugfs_dentry);
292 dasd_gendisk_free(device->block);
293 dasd_block_clear_timer(device->block);
294 }
295 rc = dasd_flush_device_queue(device);
296 if (rc)
297 return rc;
298 dasd_device_clear_timer(device);
299 dasd_profile_exit(&device->profile);
300 dasd_hosts_exit(device);
301 debugfs_remove(device->debugfs_dentry);
302 DBF_DEV_EVENT(DBF_EMERG, device, "%p debug area deleted", device);
303 if (device->debug_area != NULL) {
304 debug_unregister(device->debug_area);
305 device->debug_area = NULL;
306 }
307 device->state = DASD_STATE_KNOWN;
308 return 0;
309 }
310
311 /*
312 * Do the initial analysis. The do_analysis function may return
313 * -EAGAIN in which case the device keeps the state DASD_STATE_BASIC
314 * until the discipline decides to continue the startup sequence
315 * by calling the function dasd_change_state. The eckd disciplines
316 * uses this to start a ccw that detects the format. The completion
317 * interrupt for this detection ccw uses the kernel event daemon to
318 * trigger the call to dasd_change_state. All this is done in the
319 * discipline code, see dasd_eckd.c.
320 * After the analysis ccw is done (do_analysis returned 0) the block
321 * device is setup.
322 * In case the analysis returns an error, the device setup is stopped
323 * (a fake disk was already added to allow formatting).
324 */
dasd_state_basic_to_ready(struct dasd_device * device)325 static int dasd_state_basic_to_ready(struct dasd_device *device)
326 {
327 int rc;
328 struct dasd_block *block;
329 struct gendisk *disk;
330
331 rc = 0;
332 block = device->block;
333 /* make disk known with correct capacity */
334 if (block) {
335 if (block->base->discipline->do_analysis != NULL)
336 rc = block->base->discipline->do_analysis(block);
337 if (rc) {
338 if (rc != -EAGAIN) {
339 device->state = DASD_STATE_UNFMT;
340 disk = device->block->gdp;
341 kobject_uevent(&disk_to_dev(disk)->kobj,
342 KOBJ_CHANGE);
343 goto out;
344 }
345 return rc;
346 }
347 dasd_setup_queue(block);
348 set_capacity(block->gdp,
349 block->blocks << block->s2b_shift);
350 device->state = DASD_STATE_READY;
351 rc = dasd_scan_partitions(block);
352 if (rc) {
353 device->state = DASD_STATE_BASIC;
354 return rc;
355 }
356 } else {
357 device->state = DASD_STATE_READY;
358 }
359 out:
360 if (device->discipline->basic_to_ready)
361 rc = device->discipline->basic_to_ready(device);
362 return rc;
363 }
364
365 static inline
_wait_for_empty_queues(struct dasd_device * device)366 int _wait_for_empty_queues(struct dasd_device *device)
367 {
368 if (device->block)
369 return list_empty(&device->ccw_queue) &&
370 list_empty(&device->block->ccw_queue);
371 else
372 return list_empty(&device->ccw_queue);
373 }
374
375 /*
376 * Remove device from block device layer. Destroy dirty buffers.
377 * Forget format information. Check if the target level is basic
378 * and if it is create fake disk for formatting.
379 */
dasd_state_ready_to_basic(struct dasd_device * device)380 static int dasd_state_ready_to_basic(struct dasd_device *device)
381 {
382 int rc;
383
384 device->state = DASD_STATE_BASIC;
385 if (device->block) {
386 struct dasd_block *block = device->block;
387 rc = dasd_flush_block_queue(block);
388 if (rc) {
389 device->state = DASD_STATE_READY;
390 return rc;
391 }
392 dasd_destroy_partitions(block);
393 block->blocks = 0;
394 block->bp_block = 0;
395 block->s2b_shift = 0;
396 }
397 return 0;
398 }
399
400 /*
401 * Back to basic.
402 */
dasd_state_unfmt_to_basic(struct dasd_device * device)403 static int dasd_state_unfmt_to_basic(struct dasd_device *device)
404 {
405 device->state = DASD_STATE_BASIC;
406 return 0;
407 }
408
409 /*
410 * Make the device online and schedule the bottom half to start
411 * the requeueing of requests from the linux request queue to the
412 * ccw queue.
413 */
414 static int
dasd_state_ready_to_online(struct dasd_device * device)415 dasd_state_ready_to_online(struct dasd_device * device)
416 {
417 struct gendisk *disk;
418 struct disk_part_iter piter;
419 struct hd_struct *part;
420
421 device->state = DASD_STATE_ONLINE;
422 if (device->block) {
423 dasd_schedule_block_bh(device->block);
424 if ((device->features & DASD_FEATURE_USERAW)) {
425 disk = device->block->gdp;
426 kobject_uevent(&disk_to_dev(disk)->kobj, KOBJ_CHANGE);
427 return 0;
428 }
429 disk = device->block->bdev->bd_disk;
430 disk_part_iter_init(&piter, disk, DISK_PITER_INCL_PART0);
431 while ((part = disk_part_iter_next(&piter)))
432 kobject_uevent(&part_to_dev(part)->kobj, KOBJ_CHANGE);
433 disk_part_iter_exit(&piter);
434 }
435 return 0;
436 }
437
438 /*
439 * Stop the requeueing of requests again.
440 */
dasd_state_online_to_ready(struct dasd_device * device)441 static int dasd_state_online_to_ready(struct dasd_device *device)
442 {
443 int rc;
444 struct gendisk *disk;
445 struct disk_part_iter piter;
446 struct hd_struct *part;
447
448 if (device->discipline->online_to_ready) {
449 rc = device->discipline->online_to_ready(device);
450 if (rc)
451 return rc;
452 }
453
454 device->state = DASD_STATE_READY;
455 if (device->block && !(device->features & DASD_FEATURE_USERAW)) {
456 disk = device->block->bdev->bd_disk;
457 disk_part_iter_init(&piter, disk, DISK_PITER_INCL_PART0);
458 while ((part = disk_part_iter_next(&piter)))
459 kobject_uevent(&part_to_dev(part)->kobj, KOBJ_CHANGE);
460 disk_part_iter_exit(&piter);
461 }
462 return 0;
463 }
464
465 /*
466 * Device startup state changes.
467 */
dasd_increase_state(struct dasd_device * device)468 static int dasd_increase_state(struct dasd_device *device)
469 {
470 int rc;
471
472 rc = 0;
473 if (device->state == DASD_STATE_NEW &&
474 device->target >= DASD_STATE_KNOWN)
475 rc = dasd_state_new_to_known(device);
476
477 if (!rc &&
478 device->state == DASD_STATE_KNOWN &&
479 device->target >= DASD_STATE_BASIC)
480 rc = dasd_state_known_to_basic(device);
481
482 if (!rc &&
483 device->state == DASD_STATE_BASIC &&
484 device->target >= DASD_STATE_READY)
485 rc = dasd_state_basic_to_ready(device);
486
487 if (!rc &&
488 device->state == DASD_STATE_UNFMT &&
489 device->target > DASD_STATE_UNFMT)
490 rc = -EPERM;
491
492 if (!rc &&
493 device->state == DASD_STATE_READY &&
494 device->target >= DASD_STATE_ONLINE)
495 rc = dasd_state_ready_to_online(device);
496
497 return rc;
498 }
499
500 /*
501 * Device shutdown state changes.
502 */
dasd_decrease_state(struct dasd_device * device)503 static int dasd_decrease_state(struct dasd_device *device)
504 {
505 int rc;
506
507 rc = 0;
508 if (device->state == DASD_STATE_ONLINE &&
509 device->target <= DASD_STATE_READY)
510 rc = dasd_state_online_to_ready(device);
511
512 if (!rc &&
513 device->state == DASD_STATE_READY &&
514 device->target <= DASD_STATE_BASIC)
515 rc = dasd_state_ready_to_basic(device);
516
517 if (!rc &&
518 device->state == DASD_STATE_UNFMT &&
519 device->target <= DASD_STATE_BASIC)
520 rc = dasd_state_unfmt_to_basic(device);
521
522 if (!rc &&
523 device->state == DASD_STATE_BASIC &&
524 device->target <= DASD_STATE_KNOWN)
525 rc = dasd_state_basic_to_known(device);
526
527 if (!rc &&
528 device->state == DASD_STATE_KNOWN &&
529 device->target <= DASD_STATE_NEW)
530 rc = dasd_state_known_to_new(device);
531
532 return rc;
533 }
534
535 /*
536 * This is the main startup/shutdown routine.
537 */
dasd_change_state(struct dasd_device * device)538 static void dasd_change_state(struct dasd_device *device)
539 {
540 int rc;
541
542 if (device->state == device->target)
543 /* Already where we want to go today... */
544 return;
545 if (device->state < device->target)
546 rc = dasd_increase_state(device);
547 else
548 rc = dasd_decrease_state(device);
549 if (rc == -EAGAIN)
550 return;
551 if (rc)
552 device->target = device->state;
553
554 /* let user-space know that the device status changed */
555 kobject_uevent(&device->cdev->dev.kobj, KOBJ_CHANGE);
556
557 if (device->state == device->target)
558 wake_up(&dasd_init_waitq);
559 }
560
561 /*
562 * Kick starter for devices that did not complete the startup/shutdown
563 * procedure or were sleeping because of a pending state.
564 * dasd_kick_device will schedule a call do do_kick_device to the kernel
565 * event daemon.
566 */
do_kick_device(struct work_struct * work)567 static void do_kick_device(struct work_struct *work)
568 {
569 struct dasd_device *device = container_of(work, struct dasd_device, kick_work);
570 mutex_lock(&device->state_mutex);
571 dasd_change_state(device);
572 mutex_unlock(&device->state_mutex);
573 dasd_schedule_device_bh(device);
574 dasd_put_device(device);
575 }
576
dasd_kick_device(struct dasd_device * device)577 void dasd_kick_device(struct dasd_device *device)
578 {
579 dasd_get_device(device);
580 /* queue call to dasd_kick_device to the kernel event daemon. */
581 if (!schedule_work(&device->kick_work))
582 dasd_put_device(device);
583 }
584 EXPORT_SYMBOL(dasd_kick_device);
585
586 /*
587 * dasd_reload_device will schedule a call do do_reload_device to the kernel
588 * event daemon.
589 */
do_reload_device(struct work_struct * work)590 static void do_reload_device(struct work_struct *work)
591 {
592 struct dasd_device *device = container_of(work, struct dasd_device,
593 reload_device);
594 device->discipline->reload(device);
595 dasd_put_device(device);
596 }
597
dasd_reload_device(struct dasd_device * device)598 void dasd_reload_device(struct dasd_device *device)
599 {
600 dasd_get_device(device);
601 /* queue call to dasd_reload_device to the kernel event daemon. */
602 if (!schedule_work(&device->reload_device))
603 dasd_put_device(device);
604 }
605 EXPORT_SYMBOL(dasd_reload_device);
606
607 /*
608 * dasd_restore_device will schedule a call do do_restore_device to the kernel
609 * event daemon.
610 */
do_restore_device(struct work_struct * work)611 static void do_restore_device(struct work_struct *work)
612 {
613 struct dasd_device *device = container_of(work, struct dasd_device,
614 restore_device);
615 device->cdev->drv->restore(device->cdev);
616 dasd_put_device(device);
617 }
618
dasd_restore_device(struct dasd_device * device)619 void dasd_restore_device(struct dasd_device *device)
620 {
621 dasd_get_device(device);
622 /* queue call to dasd_restore_device to the kernel event daemon. */
623 if (!schedule_work(&device->restore_device))
624 dasd_put_device(device);
625 }
626
627 /*
628 * Set the target state for a device and starts the state change.
629 */
dasd_set_target_state(struct dasd_device * device,int target)630 void dasd_set_target_state(struct dasd_device *device, int target)
631 {
632 dasd_get_device(device);
633 mutex_lock(&device->state_mutex);
634 /* If we are in probeonly mode stop at DASD_STATE_READY. */
635 if (dasd_probeonly && target > DASD_STATE_READY)
636 target = DASD_STATE_READY;
637 if (device->target != target) {
638 if (device->state == target)
639 wake_up(&dasd_init_waitq);
640 device->target = target;
641 }
642 if (device->state != device->target)
643 dasd_change_state(device);
644 mutex_unlock(&device->state_mutex);
645 dasd_put_device(device);
646 }
647 EXPORT_SYMBOL(dasd_set_target_state);
648
649 /*
650 * Enable devices with device numbers in [from..to].
651 */
_wait_for_device(struct dasd_device * device)652 static inline int _wait_for_device(struct dasd_device *device)
653 {
654 return (device->state == device->target);
655 }
656
dasd_enable_device(struct dasd_device * device)657 void dasd_enable_device(struct dasd_device *device)
658 {
659 dasd_set_target_state(device, DASD_STATE_ONLINE);
660 if (device->state <= DASD_STATE_KNOWN)
661 /* No discipline for device found. */
662 dasd_set_target_state(device, DASD_STATE_NEW);
663 /* Now wait for the devices to come up. */
664 wait_event(dasd_init_waitq, _wait_for_device(device));
665
666 dasd_reload_device(device);
667 if (device->discipline->kick_validate)
668 device->discipline->kick_validate(device);
669 }
670 EXPORT_SYMBOL(dasd_enable_device);
671
672 /*
673 * SECTION: device operation (interrupt handler, start i/o, term i/o ...)
674 */
675
676 unsigned int dasd_global_profile_level = DASD_PROFILE_OFF;
677
678 #ifdef CONFIG_DASD_PROFILE
679 struct dasd_profile dasd_global_profile = {
680 .lock = __SPIN_LOCK_UNLOCKED(dasd_global_profile.lock),
681 };
682 static struct dentry *dasd_debugfs_global_entry;
683
684 /*
685 * Add profiling information for cqr before execution.
686 */
dasd_profile_start(struct dasd_block * block,struct dasd_ccw_req * cqr,struct request * req)687 static void dasd_profile_start(struct dasd_block *block,
688 struct dasd_ccw_req *cqr,
689 struct request *req)
690 {
691 struct list_head *l;
692 unsigned int counter;
693 struct dasd_device *device;
694
695 /* count the length of the chanq for statistics */
696 counter = 0;
697 if (dasd_global_profile_level || block->profile.data)
698 list_for_each(l, &block->ccw_queue)
699 if (++counter >= 31)
700 break;
701
702 spin_lock(&dasd_global_profile.lock);
703 if (dasd_global_profile.data) {
704 dasd_global_profile.data->dasd_io_nr_req[counter]++;
705 if (rq_data_dir(req) == READ)
706 dasd_global_profile.data->dasd_read_nr_req[counter]++;
707 }
708 spin_unlock(&dasd_global_profile.lock);
709
710 spin_lock(&block->profile.lock);
711 if (block->profile.data) {
712 block->profile.data->dasd_io_nr_req[counter]++;
713 if (rq_data_dir(req) == READ)
714 block->profile.data->dasd_read_nr_req[counter]++;
715 }
716 spin_unlock(&block->profile.lock);
717
718 /*
719 * We count the request for the start device, even though it may run on
720 * some other device due to error recovery. This way we make sure that
721 * we count each request only once.
722 */
723 device = cqr->startdev;
724 if (device->profile.data) {
725 counter = 1; /* request is not yet queued on the start device */
726 list_for_each(l, &device->ccw_queue)
727 if (++counter >= 31)
728 break;
729 }
730 spin_lock(&device->profile.lock);
731 if (device->profile.data) {
732 device->profile.data->dasd_io_nr_req[counter]++;
733 if (rq_data_dir(req) == READ)
734 device->profile.data->dasd_read_nr_req[counter]++;
735 }
736 spin_unlock(&device->profile.lock);
737 }
738
739 /*
740 * Add profiling information for cqr after execution.
741 */
742
743 #define dasd_profile_counter(value, index) \
744 { \
745 for (index = 0; index < 31 && value >> (2+index); index++) \
746 ; \
747 }
748
dasd_profile_end_add_data(struct dasd_profile_info * data,int is_alias,int is_tpm,int is_read,long sectors,int sectors_ind,int tottime_ind,int tottimeps_ind,int strtime_ind,int irqtime_ind,int irqtimeps_ind,int endtime_ind)749 static void dasd_profile_end_add_data(struct dasd_profile_info *data,
750 int is_alias,
751 int is_tpm,
752 int is_read,
753 long sectors,
754 int sectors_ind,
755 int tottime_ind,
756 int tottimeps_ind,
757 int strtime_ind,
758 int irqtime_ind,
759 int irqtimeps_ind,
760 int endtime_ind)
761 {
762 /* in case of an overflow, reset the whole profile */
763 if (data->dasd_io_reqs == UINT_MAX) {
764 memset(data, 0, sizeof(*data));
765 getnstimeofday(&data->starttod);
766 }
767 data->dasd_io_reqs++;
768 data->dasd_io_sects += sectors;
769 if (is_alias)
770 data->dasd_io_alias++;
771 if (is_tpm)
772 data->dasd_io_tpm++;
773
774 data->dasd_io_secs[sectors_ind]++;
775 data->dasd_io_times[tottime_ind]++;
776 data->dasd_io_timps[tottimeps_ind]++;
777 data->dasd_io_time1[strtime_ind]++;
778 data->dasd_io_time2[irqtime_ind]++;
779 data->dasd_io_time2ps[irqtimeps_ind]++;
780 data->dasd_io_time3[endtime_ind]++;
781
782 if (is_read) {
783 data->dasd_read_reqs++;
784 data->dasd_read_sects += sectors;
785 if (is_alias)
786 data->dasd_read_alias++;
787 if (is_tpm)
788 data->dasd_read_tpm++;
789 data->dasd_read_secs[sectors_ind]++;
790 data->dasd_read_times[tottime_ind]++;
791 data->dasd_read_time1[strtime_ind]++;
792 data->dasd_read_time2[irqtime_ind]++;
793 data->dasd_read_time3[endtime_ind]++;
794 }
795 }
796
dasd_profile_end(struct dasd_block * block,struct dasd_ccw_req * cqr,struct request * req)797 static void dasd_profile_end(struct dasd_block *block,
798 struct dasd_ccw_req *cqr,
799 struct request *req)
800 {
801 unsigned long strtime, irqtime, endtime, tottime;
802 unsigned long tottimeps, sectors;
803 struct dasd_device *device;
804 int sectors_ind, tottime_ind, tottimeps_ind, strtime_ind;
805 int irqtime_ind, irqtimeps_ind, endtime_ind;
806 struct dasd_profile_info *data;
807
808 device = cqr->startdev;
809 if (!(dasd_global_profile_level ||
810 block->profile.data ||
811 device->profile.data))
812 return;
813
814 sectors = blk_rq_sectors(req);
815 if (!cqr->buildclk || !cqr->startclk ||
816 !cqr->stopclk || !cqr->endclk ||
817 !sectors)
818 return;
819
820 strtime = ((cqr->startclk - cqr->buildclk) >> 12);
821 irqtime = ((cqr->stopclk - cqr->startclk) >> 12);
822 endtime = ((cqr->endclk - cqr->stopclk) >> 12);
823 tottime = ((cqr->endclk - cqr->buildclk) >> 12);
824 tottimeps = tottime / sectors;
825
826 dasd_profile_counter(sectors, sectors_ind);
827 dasd_profile_counter(tottime, tottime_ind);
828 dasd_profile_counter(tottimeps, tottimeps_ind);
829 dasd_profile_counter(strtime, strtime_ind);
830 dasd_profile_counter(irqtime, irqtime_ind);
831 dasd_profile_counter(irqtime / sectors, irqtimeps_ind);
832 dasd_profile_counter(endtime, endtime_ind);
833
834 spin_lock(&dasd_global_profile.lock);
835 if (dasd_global_profile.data) {
836 data = dasd_global_profile.data;
837 data->dasd_sum_times += tottime;
838 data->dasd_sum_time_str += strtime;
839 data->dasd_sum_time_irq += irqtime;
840 data->dasd_sum_time_end += endtime;
841 dasd_profile_end_add_data(dasd_global_profile.data,
842 cqr->startdev != block->base,
843 cqr->cpmode == 1,
844 rq_data_dir(req) == READ,
845 sectors, sectors_ind, tottime_ind,
846 tottimeps_ind, strtime_ind,
847 irqtime_ind, irqtimeps_ind,
848 endtime_ind);
849 }
850 spin_unlock(&dasd_global_profile.lock);
851
852 spin_lock(&block->profile.lock);
853 if (block->profile.data) {
854 data = block->profile.data;
855 data->dasd_sum_times += tottime;
856 data->dasd_sum_time_str += strtime;
857 data->dasd_sum_time_irq += irqtime;
858 data->dasd_sum_time_end += endtime;
859 dasd_profile_end_add_data(block->profile.data,
860 cqr->startdev != block->base,
861 cqr->cpmode == 1,
862 rq_data_dir(req) == READ,
863 sectors, sectors_ind, tottime_ind,
864 tottimeps_ind, strtime_ind,
865 irqtime_ind, irqtimeps_ind,
866 endtime_ind);
867 }
868 spin_unlock(&block->profile.lock);
869
870 spin_lock(&device->profile.lock);
871 if (device->profile.data) {
872 data = device->profile.data;
873 data->dasd_sum_times += tottime;
874 data->dasd_sum_time_str += strtime;
875 data->dasd_sum_time_irq += irqtime;
876 data->dasd_sum_time_end += endtime;
877 dasd_profile_end_add_data(device->profile.data,
878 cqr->startdev != block->base,
879 cqr->cpmode == 1,
880 rq_data_dir(req) == READ,
881 sectors, sectors_ind, tottime_ind,
882 tottimeps_ind, strtime_ind,
883 irqtime_ind, irqtimeps_ind,
884 endtime_ind);
885 }
886 spin_unlock(&device->profile.lock);
887 }
888
dasd_profile_reset(struct dasd_profile * profile)889 void dasd_profile_reset(struct dasd_profile *profile)
890 {
891 struct dasd_profile_info *data;
892
893 spin_lock_bh(&profile->lock);
894 data = profile->data;
895 if (!data) {
896 spin_unlock_bh(&profile->lock);
897 return;
898 }
899 memset(data, 0, sizeof(*data));
900 getnstimeofday(&data->starttod);
901 spin_unlock_bh(&profile->lock);
902 }
903
dasd_profile_on(struct dasd_profile * profile)904 int dasd_profile_on(struct dasd_profile *profile)
905 {
906 struct dasd_profile_info *data;
907
908 data = kzalloc(sizeof(*data), GFP_KERNEL);
909 if (!data)
910 return -ENOMEM;
911 spin_lock_bh(&profile->lock);
912 if (profile->data) {
913 spin_unlock_bh(&profile->lock);
914 kfree(data);
915 return 0;
916 }
917 getnstimeofday(&data->starttod);
918 profile->data = data;
919 spin_unlock_bh(&profile->lock);
920 return 0;
921 }
922
dasd_profile_off(struct dasd_profile * profile)923 void dasd_profile_off(struct dasd_profile *profile)
924 {
925 spin_lock_bh(&profile->lock);
926 kfree(profile->data);
927 profile->data = NULL;
928 spin_unlock_bh(&profile->lock);
929 }
930
dasd_get_user_string(const char __user * user_buf,size_t user_len)931 char *dasd_get_user_string(const char __user *user_buf, size_t user_len)
932 {
933 char *buffer;
934
935 buffer = vmalloc(user_len + 1);
936 if (buffer == NULL)
937 return ERR_PTR(-ENOMEM);
938 if (copy_from_user(buffer, user_buf, user_len) != 0) {
939 vfree(buffer);
940 return ERR_PTR(-EFAULT);
941 }
942 /* got the string, now strip linefeed. */
943 if (buffer[user_len - 1] == '\n')
944 buffer[user_len - 1] = 0;
945 else
946 buffer[user_len] = 0;
947 return buffer;
948 }
949
dasd_stats_write(struct file * file,const char __user * user_buf,size_t user_len,loff_t * pos)950 static ssize_t dasd_stats_write(struct file *file,
951 const char __user *user_buf,
952 size_t user_len, loff_t *pos)
953 {
954 char *buffer, *str;
955 int rc;
956 struct seq_file *m = (struct seq_file *)file->private_data;
957 struct dasd_profile *prof = m->private;
958
959 if (user_len > 65536)
960 user_len = 65536;
961 buffer = dasd_get_user_string(user_buf, user_len);
962 if (IS_ERR(buffer))
963 return PTR_ERR(buffer);
964
965 str = skip_spaces(buffer);
966 rc = user_len;
967 if (strncmp(str, "reset", 5) == 0) {
968 dasd_profile_reset(prof);
969 } else if (strncmp(str, "on", 2) == 0) {
970 rc = dasd_profile_on(prof);
971 if (rc)
972 goto out;
973 rc = user_len;
974 if (prof == &dasd_global_profile) {
975 dasd_profile_reset(prof);
976 dasd_global_profile_level = DASD_PROFILE_GLOBAL_ONLY;
977 }
978 } else if (strncmp(str, "off", 3) == 0) {
979 if (prof == &dasd_global_profile)
980 dasd_global_profile_level = DASD_PROFILE_OFF;
981 dasd_profile_off(prof);
982 } else
983 rc = -EINVAL;
984 out:
985 vfree(buffer);
986 return rc;
987 }
988
dasd_stats_array(struct seq_file * m,unsigned int * array)989 static void dasd_stats_array(struct seq_file *m, unsigned int *array)
990 {
991 int i;
992
993 for (i = 0; i < 32; i++)
994 seq_printf(m, "%u ", array[i]);
995 seq_putc(m, '\n');
996 }
997
dasd_stats_seq_print(struct seq_file * m,struct dasd_profile_info * data)998 static void dasd_stats_seq_print(struct seq_file *m,
999 struct dasd_profile_info *data)
1000 {
1001 seq_printf(m, "start_time %ld.%09ld\n",
1002 data->starttod.tv_sec, data->starttod.tv_nsec);
1003 seq_printf(m, "total_requests %u\n", data->dasd_io_reqs);
1004 seq_printf(m, "total_sectors %u\n", data->dasd_io_sects);
1005 seq_printf(m, "total_pav %u\n", data->dasd_io_alias);
1006 seq_printf(m, "total_hpf %u\n", data->dasd_io_tpm);
1007 seq_printf(m, "avg_total %lu\n", data->dasd_io_reqs ?
1008 data->dasd_sum_times / data->dasd_io_reqs : 0UL);
1009 seq_printf(m, "avg_build_to_ssch %lu\n", data->dasd_io_reqs ?
1010 data->dasd_sum_time_str / data->dasd_io_reqs : 0UL);
1011 seq_printf(m, "avg_ssch_to_irq %lu\n", data->dasd_io_reqs ?
1012 data->dasd_sum_time_irq / data->dasd_io_reqs : 0UL);
1013 seq_printf(m, "avg_irq_to_end %lu\n", data->dasd_io_reqs ?
1014 data->dasd_sum_time_end / data->dasd_io_reqs : 0UL);
1015 seq_puts(m, "histogram_sectors ");
1016 dasd_stats_array(m, data->dasd_io_secs);
1017 seq_puts(m, "histogram_io_times ");
1018 dasd_stats_array(m, data->dasd_io_times);
1019 seq_puts(m, "histogram_io_times_weighted ");
1020 dasd_stats_array(m, data->dasd_io_timps);
1021 seq_puts(m, "histogram_time_build_to_ssch ");
1022 dasd_stats_array(m, data->dasd_io_time1);
1023 seq_puts(m, "histogram_time_ssch_to_irq ");
1024 dasd_stats_array(m, data->dasd_io_time2);
1025 seq_puts(m, "histogram_time_ssch_to_irq_weighted ");
1026 dasd_stats_array(m, data->dasd_io_time2ps);
1027 seq_puts(m, "histogram_time_irq_to_end ");
1028 dasd_stats_array(m, data->dasd_io_time3);
1029 seq_puts(m, "histogram_ccw_queue_length ");
1030 dasd_stats_array(m, data->dasd_io_nr_req);
1031 seq_printf(m, "total_read_requests %u\n", data->dasd_read_reqs);
1032 seq_printf(m, "total_read_sectors %u\n", data->dasd_read_sects);
1033 seq_printf(m, "total_read_pav %u\n", data->dasd_read_alias);
1034 seq_printf(m, "total_read_hpf %u\n", data->dasd_read_tpm);
1035 seq_puts(m, "histogram_read_sectors ");
1036 dasd_stats_array(m, data->dasd_read_secs);
1037 seq_puts(m, "histogram_read_times ");
1038 dasd_stats_array(m, data->dasd_read_times);
1039 seq_puts(m, "histogram_read_time_build_to_ssch ");
1040 dasd_stats_array(m, data->dasd_read_time1);
1041 seq_puts(m, "histogram_read_time_ssch_to_irq ");
1042 dasd_stats_array(m, data->dasd_read_time2);
1043 seq_puts(m, "histogram_read_time_irq_to_end ");
1044 dasd_stats_array(m, data->dasd_read_time3);
1045 seq_puts(m, "histogram_read_ccw_queue_length ");
1046 dasd_stats_array(m, data->dasd_read_nr_req);
1047 }
1048
dasd_stats_show(struct seq_file * m,void * v)1049 static int dasd_stats_show(struct seq_file *m, void *v)
1050 {
1051 struct dasd_profile *profile;
1052 struct dasd_profile_info *data;
1053
1054 profile = m->private;
1055 spin_lock_bh(&profile->lock);
1056 data = profile->data;
1057 if (!data) {
1058 spin_unlock_bh(&profile->lock);
1059 seq_puts(m, "disabled\n");
1060 return 0;
1061 }
1062 dasd_stats_seq_print(m, data);
1063 spin_unlock_bh(&profile->lock);
1064 return 0;
1065 }
1066
dasd_stats_open(struct inode * inode,struct file * file)1067 static int dasd_stats_open(struct inode *inode, struct file *file)
1068 {
1069 struct dasd_profile *profile = inode->i_private;
1070 return single_open(file, dasd_stats_show, profile);
1071 }
1072
1073 static const struct file_operations dasd_stats_raw_fops = {
1074 .owner = THIS_MODULE,
1075 .open = dasd_stats_open,
1076 .read = seq_read,
1077 .llseek = seq_lseek,
1078 .release = single_release,
1079 .write = dasd_stats_write,
1080 };
1081
dasd_profile_init(struct dasd_profile * profile,struct dentry * base_dentry)1082 static void dasd_profile_init(struct dasd_profile *profile,
1083 struct dentry *base_dentry)
1084 {
1085 umode_t mode;
1086 struct dentry *pde;
1087
1088 if (!base_dentry)
1089 return;
1090 profile->dentry = NULL;
1091 profile->data = NULL;
1092 mode = (S_IRUSR | S_IWUSR | S_IFREG);
1093 pde = debugfs_create_file("statistics", mode, base_dentry,
1094 profile, &dasd_stats_raw_fops);
1095 if (pde && !IS_ERR(pde))
1096 profile->dentry = pde;
1097 return;
1098 }
1099
dasd_profile_exit(struct dasd_profile * profile)1100 static void dasd_profile_exit(struct dasd_profile *profile)
1101 {
1102 dasd_profile_off(profile);
1103 debugfs_remove(profile->dentry);
1104 profile->dentry = NULL;
1105 }
1106
dasd_statistics_removeroot(void)1107 static void dasd_statistics_removeroot(void)
1108 {
1109 dasd_global_profile_level = DASD_PROFILE_OFF;
1110 dasd_profile_exit(&dasd_global_profile);
1111 debugfs_remove(dasd_debugfs_global_entry);
1112 debugfs_remove(dasd_debugfs_root_entry);
1113 }
1114
dasd_statistics_createroot(void)1115 static void dasd_statistics_createroot(void)
1116 {
1117 struct dentry *pde;
1118
1119 dasd_debugfs_root_entry = NULL;
1120 pde = debugfs_create_dir("dasd", NULL);
1121 if (!pde || IS_ERR(pde))
1122 goto error;
1123 dasd_debugfs_root_entry = pde;
1124 pde = debugfs_create_dir("global", dasd_debugfs_root_entry);
1125 if (!pde || IS_ERR(pde))
1126 goto error;
1127 dasd_debugfs_global_entry = pde;
1128 dasd_profile_init(&dasd_global_profile, dasd_debugfs_global_entry);
1129 return;
1130
1131 error:
1132 DBF_EVENT(DBF_ERR, "%s",
1133 "Creation of the dasd debugfs interface failed");
1134 dasd_statistics_removeroot();
1135 return;
1136 }
1137
1138 #else
1139 #define dasd_profile_start(block, cqr, req) do {} while (0)
1140 #define dasd_profile_end(block, cqr, req) do {} while (0)
1141
dasd_statistics_createroot(void)1142 static void dasd_statistics_createroot(void)
1143 {
1144 return;
1145 }
1146
dasd_statistics_removeroot(void)1147 static void dasd_statistics_removeroot(void)
1148 {
1149 return;
1150 }
1151
dasd_stats_generic_show(struct seq_file * m,void * v)1152 int dasd_stats_generic_show(struct seq_file *m, void *v)
1153 {
1154 seq_puts(m, "Statistics are not activated in this kernel\n");
1155 return 0;
1156 }
1157
dasd_profile_init(struct dasd_profile * profile,struct dentry * base_dentry)1158 static void dasd_profile_init(struct dasd_profile *profile,
1159 struct dentry *base_dentry)
1160 {
1161 return;
1162 }
1163
dasd_profile_exit(struct dasd_profile * profile)1164 static void dasd_profile_exit(struct dasd_profile *profile)
1165 {
1166 return;
1167 }
1168
dasd_profile_on(struct dasd_profile * profile)1169 int dasd_profile_on(struct dasd_profile *profile)
1170 {
1171 return 0;
1172 }
1173
1174 #endif /* CONFIG_DASD_PROFILE */
1175
dasd_hosts_show(struct seq_file * m,void * v)1176 static int dasd_hosts_show(struct seq_file *m, void *v)
1177 {
1178 struct dasd_device *device;
1179 int rc = -EOPNOTSUPP;
1180
1181 device = m->private;
1182 dasd_get_device(device);
1183
1184 if (device->discipline->hosts_print)
1185 rc = device->discipline->hosts_print(device, m);
1186
1187 dasd_put_device(device);
1188 return rc;
1189 }
1190
dasd_hosts_open(struct inode * inode,struct file * file)1191 static int dasd_hosts_open(struct inode *inode, struct file *file)
1192 {
1193 struct dasd_device *device = inode->i_private;
1194
1195 return single_open(file, dasd_hosts_show, device);
1196 }
1197
1198 static const struct file_operations dasd_hosts_fops = {
1199 .owner = THIS_MODULE,
1200 .open = dasd_hosts_open,
1201 .read = seq_read,
1202 .llseek = seq_lseek,
1203 .release = single_release,
1204 };
1205
dasd_hosts_exit(struct dasd_device * device)1206 static void dasd_hosts_exit(struct dasd_device *device)
1207 {
1208 debugfs_remove(device->hosts_dentry);
1209 device->hosts_dentry = NULL;
1210 }
1211
dasd_hosts_init(struct dentry * base_dentry,struct dasd_device * device)1212 static void dasd_hosts_init(struct dentry *base_dentry,
1213 struct dasd_device *device)
1214 {
1215 struct dentry *pde;
1216 umode_t mode;
1217
1218 if (!base_dentry)
1219 return;
1220
1221 mode = S_IRUSR | S_IFREG;
1222 pde = debugfs_create_file("host_access_list", mode, base_dentry,
1223 device, &dasd_hosts_fops);
1224 if (pde && !IS_ERR(pde))
1225 device->hosts_dentry = pde;
1226 }
1227
1228 /*
1229 * Allocate memory for a channel program with 'cplength' channel
1230 * command words and 'datasize' additional space. There are two
1231 * variantes: 1) dasd_kmalloc_request uses kmalloc to get the needed
1232 * memory and 2) dasd_smalloc_request uses the static ccw memory
1233 * that gets allocated for each device.
1234 */
dasd_kmalloc_request(int magic,int cplength,int datasize,struct dasd_device * device)1235 struct dasd_ccw_req *dasd_kmalloc_request(int magic, int cplength,
1236 int datasize,
1237 struct dasd_device *device)
1238 {
1239 struct dasd_ccw_req *cqr;
1240
1241 /* Sanity checks */
1242 BUG_ON(datasize > PAGE_SIZE ||
1243 (cplength*sizeof(struct ccw1)) > PAGE_SIZE);
1244
1245 cqr = kzalloc(sizeof(struct dasd_ccw_req), GFP_ATOMIC);
1246 if (cqr == NULL)
1247 return ERR_PTR(-ENOMEM);
1248 cqr->cpaddr = NULL;
1249 if (cplength > 0) {
1250 cqr->cpaddr = kcalloc(cplength, sizeof(struct ccw1),
1251 GFP_ATOMIC | GFP_DMA);
1252 if (cqr->cpaddr == NULL) {
1253 kfree(cqr);
1254 return ERR_PTR(-ENOMEM);
1255 }
1256 }
1257 cqr->data = NULL;
1258 if (datasize > 0) {
1259 cqr->data = kzalloc(datasize, GFP_ATOMIC | GFP_DMA);
1260 if (cqr->data == NULL) {
1261 kfree(cqr->cpaddr);
1262 kfree(cqr);
1263 return ERR_PTR(-ENOMEM);
1264 }
1265 }
1266 cqr->magic = magic;
1267 set_bit(DASD_CQR_FLAGS_USE_ERP, &cqr->flags);
1268 dasd_get_device(device);
1269 return cqr;
1270 }
1271 EXPORT_SYMBOL(dasd_kmalloc_request);
1272
dasd_smalloc_request(int magic,int cplength,int datasize,struct dasd_device * device)1273 struct dasd_ccw_req *dasd_smalloc_request(int magic, int cplength,
1274 int datasize,
1275 struct dasd_device *device)
1276 {
1277 unsigned long flags;
1278 struct dasd_ccw_req *cqr;
1279 char *data;
1280 int size;
1281
1282 size = (sizeof(struct dasd_ccw_req) + 7L) & -8L;
1283 if (cplength > 0)
1284 size += cplength * sizeof(struct ccw1);
1285 if (datasize > 0)
1286 size += datasize;
1287 spin_lock_irqsave(&device->mem_lock, flags);
1288 cqr = (struct dasd_ccw_req *)
1289 dasd_alloc_chunk(&device->ccw_chunks, size);
1290 spin_unlock_irqrestore(&device->mem_lock, flags);
1291 if (cqr == NULL)
1292 return ERR_PTR(-ENOMEM);
1293 memset(cqr, 0, sizeof(struct dasd_ccw_req));
1294 data = (char *) cqr + ((sizeof(struct dasd_ccw_req) + 7L) & -8L);
1295 cqr->cpaddr = NULL;
1296 if (cplength > 0) {
1297 cqr->cpaddr = (struct ccw1 *) data;
1298 data += cplength*sizeof(struct ccw1);
1299 memset(cqr->cpaddr, 0, cplength*sizeof(struct ccw1));
1300 }
1301 cqr->data = NULL;
1302 if (datasize > 0) {
1303 cqr->data = data;
1304 memset(cqr->data, 0, datasize);
1305 }
1306 cqr->magic = magic;
1307 set_bit(DASD_CQR_FLAGS_USE_ERP, &cqr->flags);
1308 dasd_get_device(device);
1309 return cqr;
1310 }
1311 EXPORT_SYMBOL(dasd_smalloc_request);
1312
1313 /*
1314 * Free memory of a channel program. This function needs to free all the
1315 * idal lists that might have been created by dasd_set_cda and the
1316 * struct dasd_ccw_req itself.
1317 */
dasd_kfree_request(struct dasd_ccw_req * cqr,struct dasd_device * device)1318 void dasd_kfree_request(struct dasd_ccw_req *cqr, struct dasd_device *device)
1319 {
1320 struct ccw1 *ccw;
1321
1322 /* Clear any idals used for the request. */
1323 ccw = cqr->cpaddr;
1324 do {
1325 clear_normalized_cda(ccw);
1326 } while (ccw++->flags & (CCW_FLAG_CC | CCW_FLAG_DC));
1327 kfree(cqr->cpaddr);
1328 kfree(cqr->data);
1329 kfree(cqr);
1330 dasd_put_device(device);
1331 }
1332 EXPORT_SYMBOL(dasd_kfree_request);
1333
dasd_sfree_request(struct dasd_ccw_req * cqr,struct dasd_device * device)1334 void dasd_sfree_request(struct dasd_ccw_req *cqr, struct dasd_device *device)
1335 {
1336 unsigned long flags;
1337
1338 spin_lock_irqsave(&device->mem_lock, flags);
1339 dasd_free_chunk(&device->ccw_chunks, cqr);
1340 spin_unlock_irqrestore(&device->mem_lock, flags);
1341 dasd_put_device(device);
1342 }
1343 EXPORT_SYMBOL(dasd_sfree_request);
1344
1345 /*
1346 * Check discipline magic in cqr.
1347 */
dasd_check_cqr(struct dasd_ccw_req * cqr)1348 static inline int dasd_check_cqr(struct dasd_ccw_req *cqr)
1349 {
1350 struct dasd_device *device;
1351
1352 if (cqr == NULL)
1353 return -EINVAL;
1354 device = cqr->startdev;
1355 if (strncmp((char *) &cqr->magic, device->discipline->ebcname, 4)) {
1356 DBF_DEV_EVENT(DBF_WARNING, device,
1357 " dasd_ccw_req 0x%08x magic doesn't match"
1358 " discipline 0x%08x",
1359 cqr->magic,
1360 *(unsigned int *) device->discipline->name);
1361 return -EINVAL;
1362 }
1363 return 0;
1364 }
1365
1366 /*
1367 * Terminate the current i/o and set the request to clear_pending.
1368 * Timer keeps device runnig.
1369 * ccw_device_clear can fail if the i/o subsystem
1370 * is in a bad mood.
1371 */
dasd_term_IO(struct dasd_ccw_req * cqr)1372 int dasd_term_IO(struct dasd_ccw_req *cqr)
1373 {
1374 struct dasd_device *device;
1375 int retries, rc;
1376 char errorstring[ERRORLENGTH];
1377
1378 /* Check the cqr */
1379 rc = dasd_check_cqr(cqr);
1380 if (rc)
1381 return rc;
1382 retries = 0;
1383 device = (struct dasd_device *) cqr->startdev;
1384 while ((retries < 5) && (cqr->status == DASD_CQR_IN_IO)) {
1385 rc = ccw_device_clear(device->cdev, (long) cqr);
1386 switch (rc) {
1387 case 0: /* termination successful */
1388 cqr->status = DASD_CQR_CLEAR_PENDING;
1389 cqr->stopclk = get_tod_clock();
1390 cqr->starttime = 0;
1391 DBF_DEV_EVENT(DBF_DEBUG, device,
1392 "terminate cqr %p successful",
1393 cqr);
1394 break;
1395 case -ENODEV:
1396 DBF_DEV_EVENT(DBF_ERR, device, "%s",
1397 "device gone, retry");
1398 break;
1399 case -EIO:
1400 DBF_DEV_EVENT(DBF_ERR, device, "%s",
1401 "I/O error, retry");
1402 break;
1403 case -EINVAL:
1404 /*
1405 * device not valid so no I/O could be running
1406 * handle CQR as termination successful
1407 */
1408 cqr->status = DASD_CQR_CLEARED;
1409 cqr->stopclk = get_tod_clock();
1410 cqr->starttime = 0;
1411 /* no retries for invalid devices */
1412 cqr->retries = -1;
1413 DBF_DEV_EVENT(DBF_ERR, device, "%s",
1414 "EINVAL, handle as terminated");
1415 /* fake rc to success */
1416 rc = 0;
1417 break;
1418 case -EBUSY:
1419 DBF_DEV_EVENT(DBF_ERR, device, "%s",
1420 "device busy, retry later");
1421 break;
1422 default:
1423 /* internal error 10 - unknown rc*/
1424 snprintf(errorstring, ERRORLENGTH, "10 %d", rc);
1425 dev_err(&device->cdev->dev, "An error occurred in the "
1426 "DASD device driver, reason=%s\n", errorstring);
1427 BUG();
1428 break;
1429 }
1430 retries++;
1431 }
1432 dasd_schedule_device_bh(device);
1433 return rc;
1434 }
1435 EXPORT_SYMBOL(dasd_term_IO);
1436
1437 /*
1438 * Start the i/o. This start_IO can fail if the channel is really busy.
1439 * In that case set up a timer to start the request later.
1440 */
dasd_start_IO(struct dasd_ccw_req * cqr)1441 int dasd_start_IO(struct dasd_ccw_req *cqr)
1442 {
1443 struct dasd_device *device;
1444 int rc;
1445 char errorstring[ERRORLENGTH];
1446
1447 /* Check the cqr */
1448 rc = dasd_check_cqr(cqr);
1449 if (rc) {
1450 cqr->intrc = rc;
1451 return rc;
1452 }
1453 device = (struct dasd_device *) cqr->startdev;
1454 if (((cqr->block &&
1455 test_bit(DASD_FLAG_LOCK_STOLEN, &cqr->block->base->flags)) ||
1456 test_bit(DASD_FLAG_LOCK_STOLEN, &device->flags)) &&
1457 !test_bit(DASD_CQR_ALLOW_SLOCK, &cqr->flags)) {
1458 DBF_DEV_EVENT(DBF_DEBUG, device, "start_IO: return request %p "
1459 "because of stolen lock", cqr);
1460 cqr->status = DASD_CQR_ERROR;
1461 cqr->intrc = -EPERM;
1462 return -EPERM;
1463 }
1464 if (cqr->retries < 0) {
1465 /* internal error 14 - start_IO run out of retries */
1466 sprintf(errorstring, "14 %p", cqr);
1467 dev_err(&device->cdev->dev, "An error occurred in the DASD "
1468 "device driver, reason=%s\n", errorstring);
1469 cqr->status = DASD_CQR_ERROR;
1470 return -EIO;
1471 }
1472 cqr->startclk = get_tod_clock();
1473 cqr->starttime = jiffies;
1474 cqr->retries--;
1475 if (!test_bit(DASD_CQR_VERIFY_PATH, &cqr->flags)) {
1476 cqr->lpm &= dasd_path_get_opm(device);
1477 if (!cqr->lpm)
1478 cqr->lpm = dasd_path_get_opm(device);
1479 }
1480 if (cqr->cpmode == 1) {
1481 rc = ccw_device_tm_start(device->cdev, cqr->cpaddr,
1482 (long) cqr, cqr->lpm);
1483 } else {
1484 rc = ccw_device_start(device->cdev, cqr->cpaddr,
1485 (long) cqr, cqr->lpm, 0);
1486 }
1487 switch (rc) {
1488 case 0:
1489 cqr->status = DASD_CQR_IN_IO;
1490 break;
1491 case -EBUSY:
1492 DBF_DEV_EVENT(DBF_WARNING, device, "%s",
1493 "start_IO: device busy, retry later");
1494 break;
1495 case -ETIMEDOUT:
1496 DBF_DEV_EVENT(DBF_WARNING, device, "%s",
1497 "start_IO: request timeout, retry later");
1498 break;
1499 case -EACCES:
1500 /* -EACCES indicates that the request used only a subset of the
1501 * available paths and all these paths are gone. If the lpm of
1502 * this request was only a subset of the opm (e.g. the ppm) then
1503 * we just do a retry with all available paths.
1504 * If we already use the full opm, something is amiss, and we
1505 * need a full path verification.
1506 */
1507 if (test_bit(DASD_CQR_VERIFY_PATH, &cqr->flags)) {
1508 DBF_DEV_EVENT(DBF_WARNING, device,
1509 "start_IO: selected paths gone (%x)",
1510 cqr->lpm);
1511 } else if (cqr->lpm != dasd_path_get_opm(device)) {
1512 cqr->lpm = dasd_path_get_opm(device);
1513 DBF_DEV_EVENT(DBF_DEBUG, device, "%s",
1514 "start_IO: selected paths gone,"
1515 " retry on all paths");
1516 } else {
1517 DBF_DEV_EVENT(DBF_WARNING, device, "%s",
1518 "start_IO: all paths in opm gone,"
1519 " do path verification");
1520 dasd_generic_last_path_gone(device);
1521 dasd_path_no_path(device);
1522 dasd_path_set_tbvpm(device,
1523 ccw_device_get_path_mask(
1524 device->cdev));
1525 }
1526 break;
1527 case -ENODEV:
1528 DBF_DEV_EVENT(DBF_WARNING, device, "%s",
1529 "start_IO: -ENODEV device gone, retry");
1530 break;
1531 case -EIO:
1532 DBF_DEV_EVENT(DBF_WARNING, device, "%s",
1533 "start_IO: -EIO device gone, retry");
1534 break;
1535 case -EINVAL:
1536 /* most likely caused in power management context */
1537 DBF_DEV_EVENT(DBF_WARNING, device, "%s",
1538 "start_IO: -EINVAL device currently "
1539 "not accessible");
1540 break;
1541 default:
1542 /* internal error 11 - unknown rc */
1543 snprintf(errorstring, ERRORLENGTH, "11 %d", rc);
1544 dev_err(&device->cdev->dev,
1545 "An error occurred in the DASD device driver, "
1546 "reason=%s\n", errorstring);
1547 BUG();
1548 break;
1549 }
1550 cqr->intrc = rc;
1551 return rc;
1552 }
1553 EXPORT_SYMBOL(dasd_start_IO);
1554
1555 /*
1556 * Timeout function for dasd devices. This is used for different purposes
1557 * 1) missing interrupt handler for normal operation
1558 * 2) delayed start of request where start_IO failed with -EBUSY
1559 * 3) timeout for missing state change interrupts
1560 * The head of the ccw queue will have status DASD_CQR_IN_IO for 1),
1561 * DASD_CQR_QUEUED for 2) and 3).
1562 */
dasd_device_timeout(unsigned long ptr)1563 static void dasd_device_timeout(unsigned long ptr)
1564 {
1565 unsigned long flags;
1566 struct dasd_device *device;
1567
1568 device = (struct dasd_device *) ptr;
1569 spin_lock_irqsave(get_ccwdev_lock(device->cdev), flags);
1570 /* re-activate request queue */
1571 dasd_device_remove_stop_bits(device, DASD_STOPPED_PENDING);
1572 spin_unlock_irqrestore(get_ccwdev_lock(device->cdev), flags);
1573 dasd_schedule_device_bh(device);
1574 }
1575
1576 /*
1577 * Setup timeout for a device in jiffies.
1578 */
dasd_device_set_timer(struct dasd_device * device,int expires)1579 void dasd_device_set_timer(struct dasd_device *device, int expires)
1580 {
1581 if (expires == 0)
1582 del_timer(&device->timer);
1583 else
1584 mod_timer(&device->timer, jiffies + expires);
1585 }
1586 EXPORT_SYMBOL(dasd_device_set_timer);
1587
1588 /*
1589 * Clear timeout for a device.
1590 */
dasd_device_clear_timer(struct dasd_device * device)1591 void dasd_device_clear_timer(struct dasd_device *device)
1592 {
1593 del_timer(&device->timer);
1594 }
1595 EXPORT_SYMBOL(dasd_device_clear_timer);
1596
dasd_handle_killed_request(struct ccw_device * cdev,unsigned long intparm)1597 static void dasd_handle_killed_request(struct ccw_device *cdev,
1598 unsigned long intparm)
1599 {
1600 struct dasd_ccw_req *cqr;
1601 struct dasd_device *device;
1602
1603 if (!intparm)
1604 return;
1605 cqr = (struct dasd_ccw_req *) intparm;
1606 if (cqr->status != DASD_CQR_IN_IO) {
1607 DBF_EVENT_DEVID(DBF_DEBUG, cdev,
1608 "invalid status in handle_killed_request: "
1609 "%02x", cqr->status);
1610 return;
1611 }
1612
1613 device = dasd_device_from_cdev_locked(cdev);
1614 if (IS_ERR(device)) {
1615 DBF_EVENT_DEVID(DBF_DEBUG, cdev, "%s",
1616 "unable to get device from cdev");
1617 return;
1618 }
1619
1620 if (!cqr->startdev ||
1621 device != cqr->startdev ||
1622 strncmp(cqr->startdev->discipline->ebcname,
1623 (char *) &cqr->magic, 4)) {
1624 DBF_EVENT_DEVID(DBF_DEBUG, cdev, "%s",
1625 "invalid device in request");
1626 dasd_put_device(device);
1627 return;
1628 }
1629
1630 /* Schedule request to be retried. */
1631 cqr->status = DASD_CQR_QUEUED;
1632
1633 dasd_device_clear_timer(device);
1634 dasd_schedule_device_bh(device);
1635 dasd_put_device(device);
1636 }
1637
dasd_generic_handle_state_change(struct dasd_device * device)1638 void dasd_generic_handle_state_change(struct dasd_device *device)
1639 {
1640 /* First of all start sense subsystem status request. */
1641 dasd_eer_snss(device);
1642
1643 dasd_device_remove_stop_bits(device, DASD_STOPPED_PENDING);
1644 dasd_schedule_device_bh(device);
1645 if (device->block) {
1646 dasd_schedule_block_bh(device->block);
1647 if (device->block->request_queue)
1648 blk_mq_run_hw_queues(device->block->request_queue,
1649 true);
1650 }
1651 }
1652 EXPORT_SYMBOL_GPL(dasd_generic_handle_state_change);
1653
dasd_check_hpf_error(struct irb * irb)1654 static int dasd_check_hpf_error(struct irb *irb)
1655 {
1656 return (scsw_tm_is_valid_schxs(&irb->scsw) &&
1657 (irb->scsw.tm.sesq == SCSW_SESQ_DEV_NOFCX ||
1658 irb->scsw.tm.sesq == SCSW_SESQ_PATH_NOFCX));
1659 }
1660
1661 /*
1662 * Interrupt handler for "normal" ssch-io based dasd devices.
1663 */
dasd_int_handler(struct ccw_device * cdev,unsigned long intparm,struct irb * irb)1664 void dasd_int_handler(struct ccw_device *cdev, unsigned long intparm,
1665 struct irb *irb)
1666 {
1667 struct dasd_ccw_req *cqr, *next;
1668 struct dasd_device *device;
1669 unsigned long now;
1670 int nrf_suppressed = 0;
1671 int fp_suppressed = 0;
1672 u8 *sense = NULL;
1673 int expires;
1674
1675 cqr = (struct dasd_ccw_req *) intparm;
1676 if (IS_ERR(irb)) {
1677 switch (PTR_ERR(irb)) {
1678 case -EIO:
1679 if (cqr && cqr->status == DASD_CQR_CLEAR_PENDING) {
1680 device = cqr->startdev;
1681 cqr->status = DASD_CQR_CLEARED;
1682 dasd_device_clear_timer(device);
1683 wake_up(&dasd_flush_wq);
1684 dasd_schedule_device_bh(device);
1685 return;
1686 }
1687 break;
1688 case -ETIMEDOUT:
1689 DBF_EVENT_DEVID(DBF_WARNING, cdev, "%s: "
1690 "request timed out\n", __func__);
1691 break;
1692 default:
1693 DBF_EVENT_DEVID(DBF_WARNING, cdev, "%s: "
1694 "unknown error %ld\n", __func__,
1695 PTR_ERR(irb));
1696 }
1697 dasd_handle_killed_request(cdev, intparm);
1698 return;
1699 }
1700
1701 now = get_tod_clock();
1702 /* check for conditions that should be handled immediately */
1703 if (!cqr ||
1704 !(scsw_dstat(&irb->scsw) == (DEV_STAT_CHN_END | DEV_STAT_DEV_END) &&
1705 scsw_cstat(&irb->scsw) == 0)) {
1706 if (cqr)
1707 memcpy(&cqr->irb, irb, sizeof(*irb));
1708 device = dasd_device_from_cdev_locked(cdev);
1709 if (IS_ERR(device))
1710 return;
1711 /* ignore unsolicited interrupts for DIAG discipline */
1712 if (device->discipline == dasd_diag_discipline_pointer) {
1713 dasd_put_device(device);
1714 return;
1715 }
1716
1717 /*
1718 * In some cases 'File Protected' or 'No Record Found' errors
1719 * might be expected and debug log messages for the
1720 * corresponding interrupts shouldn't be written then.
1721 * Check if either of the according suppress bits is set.
1722 */
1723 sense = dasd_get_sense(irb);
1724 if (sense) {
1725 fp_suppressed = (sense[1] & SNS1_FILE_PROTECTED) &&
1726 test_bit(DASD_CQR_SUPPRESS_FP, &cqr->flags);
1727 nrf_suppressed = (sense[1] & SNS1_NO_REC_FOUND) &&
1728 test_bit(DASD_CQR_SUPPRESS_NRF, &cqr->flags);
1729 }
1730 if (!(fp_suppressed || nrf_suppressed))
1731 device->discipline->dump_sense_dbf(device, irb, "int");
1732
1733 if (device->features & DASD_FEATURE_ERPLOG)
1734 device->discipline->dump_sense(device, cqr, irb);
1735 device->discipline->check_for_device_change(device, cqr, irb);
1736 dasd_put_device(device);
1737 }
1738
1739 /* check for for attention message */
1740 if (scsw_dstat(&irb->scsw) & DEV_STAT_ATTENTION) {
1741 device = dasd_device_from_cdev_locked(cdev);
1742 if (!IS_ERR(device)) {
1743 device->discipline->check_attention(device,
1744 irb->esw.esw1.lpum);
1745 dasd_put_device(device);
1746 }
1747 }
1748
1749 if (!cqr)
1750 return;
1751
1752 device = (struct dasd_device *) cqr->startdev;
1753 if (!device ||
1754 strncmp(device->discipline->ebcname, (char *) &cqr->magic, 4)) {
1755 DBF_EVENT_DEVID(DBF_DEBUG, cdev, "%s",
1756 "invalid device in request");
1757 return;
1758 }
1759
1760 /* Check for clear pending */
1761 if (cqr->status == DASD_CQR_CLEAR_PENDING &&
1762 scsw_fctl(&irb->scsw) & SCSW_FCTL_CLEAR_FUNC) {
1763 cqr->status = DASD_CQR_CLEARED;
1764 dasd_device_clear_timer(device);
1765 wake_up(&dasd_flush_wq);
1766 dasd_schedule_device_bh(device);
1767 return;
1768 }
1769
1770 /* check status - the request might have been killed by dyn detach */
1771 if (cqr->status != DASD_CQR_IN_IO) {
1772 DBF_DEV_EVENT(DBF_DEBUG, device, "invalid status: bus_id %s, "
1773 "status %02x", dev_name(&cdev->dev), cqr->status);
1774 return;
1775 }
1776
1777 next = NULL;
1778 expires = 0;
1779 if (scsw_dstat(&irb->scsw) == (DEV_STAT_CHN_END | DEV_STAT_DEV_END) &&
1780 scsw_cstat(&irb->scsw) == 0) {
1781 /* request was completed successfully */
1782 cqr->status = DASD_CQR_SUCCESS;
1783 cqr->stopclk = now;
1784 /* Start first request on queue if possible -> fast_io. */
1785 if (cqr->devlist.next != &device->ccw_queue) {
1786 next = list_entry(cqr->devlist.next,
1787 struct dasd_ccw_req, devlist);
1788 }
1789 } else { /* error */
1790 /* check for HPF error
1791 * call discipline function to requeue all requests
1792 * and disable HPF accordingly
1793 */
1794 if (cqr->cpmode && dasd_check_hpf_error(irb) &&
1795 device->discipline->handle_hpf_error)
1796 device->discipline->handle_hpf_error(device, irb);
1797 /*
1798 * If we don't want complex ERP for this request, then just
1799 * reset this and retry it in the fastpath
1800 */
1801 if (!test_bit(DASD_CQR_FLAGS_USE_ERP, &cqr->flags) &&
1802 cqr->retries > 0) {
1803 if (cqr->lpm == dasd_path_get_opm(device))
1804 DBF_DEV_EVENT(DBF_DEBUG, device,
1805 "default ERP in fastpath "
1806 "(%i retries left)",
1807 cqr->retries);
1808 if (!test_bit(DASD_CQR_VERIFY_PATH, &cqr->flags))
1809 cqr->lpm = dasd_path_get_opm(device);
1810 cqr->status = DASD_CQR_QUEUED;
1811 next = cqr;
1812 } else
1813 cqr->status = DASD_CQR_ERROR;
1814 }
1815 if (next && (next->status == DASD_CQR_QUEUED) &&
1816 (!device->stopped)) {
1817 if (device->discipline->start_IO(next) == 0)
1818 expires = next->expires;
1819 }
1820 if (expires != 0)
1821 dasd_device_set_timer(device, expires);
1822 else
1823 dasd_device_clear_timer(device);
1824 dasd_schedule_device_bh(device);
1825 }
1826 EXPORT_SYMBOL(dasd_int_handler);
1827
dasd_generic_uc_handler(struct ccw_device * cdev,struct irb * irb)1828 enum uc_todo dasd_generic_uc_handler(struct ccw_device *cdev, struct irb *irb)
1829 {
1830 struct dasd_device *device;
1831
1832 device = dasd_device_from_cdev_locked(cdev);
1833
1834 if (IS_ERR(device))
1835 goto out;
1836 if (test_bit(DASD_FLAG_OFFLINE, &device->flags) ||
1837 device->state != device->target ||
1838 !device->discipline->check_for_device_change){
1839 dasd_put_device(device);
1840 goto out;
1841 }
1842 if (device->discipline->dump_sense_dbf)
1843 device->discipline->dump_sense_dbf(device, irb, "uc");
1844 device->discipline->check_for_device_change(device, NULL, irb);
1845 dasd_put_device(device);
1846 out:
1847 return UC_TODO_RETRY;
1848 }
1849 EXPORT_SYMBOL_GPL(dasd_generic_uc_handler);
1850
1851 /*
1852 * If we have an error on a dasd_block layer request then we cancel
1853 * and return all further requests from the same dasd_block as well.
1854 */
__dasd_device_recovery(struct dasd_device * device,struct dasd_ccw_req * ref_cqr)1855 static void __dasd_device_recovery(struct dasd_device *device,
1856 struct dasd_ccw_req *ref_cqr)
1857 {
1858 struct list_head *l, *n;
1859 struct dasd_ccw_req *cqr;
1860
1861 /*
1862 * only requeue request that came from the dasd_block layer
1863 */
1864 if (!ref_cqr->block)
1865 return;
1866
1867 list_for_each_safe(l, n, &device->ccw_queue) {
1868 cqr = list_entry(l, struct dasd_ccw_req, devlist);
1869 if (cqr->status == DASD_CQR_QUEUED &&
1870 ref_cqr->block == cqr->block) {
1871 cqr->status = DASD_CQR_CLEARED;
1872 }
1873 }
1874 };
1875
1876 /*
1877 * Remove those ccw requests from the queue that need to be returned
1878 * to the upper layer.
1879 */
__dasd_device_process_ccw_queue(struct dasd_device * device,struct list_head * final_queue)1880 static void __dasd_device_process_ccw_queue(struct dasd_device *device,
1881 struct list_head *final_queue)
1882 {
1883 struct list_head *l, *n;
1884 struct dasd_ccw_req *cqr;
1885
1886 /* Process request with final status. */
1887 list_for_each_safe(l, n, &device->ccw_queue) {
1888 cqr = list_entry(l, struct dasd_ccw_req, devlist);
1889
1890 /* Skip any non-final request. */
1891 if (cqr->status == DASD_CQR_QUEUED ||
1892 cqr->status == DASD_CQR_IN_IO ||
1893 cqr->status == DASD_CQR_CLEAR_PENDING)
1894 continue;
1895 if (cqr->status == DASD_CQR_ERROR) {
1896 __dasd_device_recovery(device, cqr);
1897 }
1898 /* Rechain finished requests to final queue */
1899 list_move_tail(&cqr->devlist, final_queue);
1900 }
1901 }
1902
1903 /*
1904 * the cqrs from the final queue are returned to the upper layer
1905 * by setting a dasd_block state and calling the callback function
1906 */
__dasd_device_process_final_queue(struct dasd_device * device,struct list_head * final_queue)1907 static void __dasd_device_process_final_queue(struct dasd_device *device,
1908 struct list_head *final_queue)
1909 {
1910 struct list_head *l, *n;
1911 struct dasd_ccw_req *cqr;
1912 struct dasd_block *block;
1913 void (*callback)(struct dasd_ccw_req *, void *data);
1914 void *callback_data;
1915 char errorstring[ERRORLENGTH];
1916
1917 list_for_each_safe(l, n, final_queue) {
1918 cqr = list_entry(l, struct dasd_ccw_req, devlist);
1919 list_del_init(&cqr->devlist);
1920 block = cqr->block;
1921 callback = cqr->callback;
1922 callback_data = cqr->callback_data;
1923 if (block)
1924 spin_lock_bh(&block->queue_lock);
1925 switch (cqr->status) {
1926 case DASD_CQR_SUCCESS:
1927 cqr->status = DASD_CQR_DONE;
1928 break;
1929 case DASD_CQR_ERROR:
1930 cqr->status = DASD_CQR_NEED_ERP;
1931 break;
1932 case DASD_CQR_CLEARED:
1933 cqr->status = DASD_CQR_TERMINATED;
1934 break;
1935 default:
1936 /* internal error 12 - wrong cqr status*/
1937 snprintf(errorstring, ERRORLENGTH, "12 %p %x02", cqr, cqr->status);
1938 dev_err(&device->cdev->dev,
1939 "An error occurred in the DASD device driver, "
1940 "reason=%s\n", errorstring);
1941 BUG();
1942 }
1943 if (cqr->callback != NULL)
1944 (callback)(cqr, callback_data);
1945 if (block)
1946 spin_unlock_bh(&block->queue_lock);
1947 }
1948 }
1949
1950 /*
1951 * Take a look at the first request on the ccw queue and check
1952 * if it reached its expire time. If so, terminate the IO.
1953 */
__dasd_device_check_expire(struct dasd_device * device)1954 static void __dasd_device_check_expire(struct dasd_device *device)
1955 {
1956 struct dasd_ccw_req *cqr;
1957
1958 if (list_empty(&device->ccw_queue))
1959 return;
1960 cqr = list_entry(device->ccw_queue.next, struct dasd_ccw_req, devlist);
1961 if ((cqr->status == DASD_CQR_IN_IO && cqr->expires != 0) &&
1962 (time_after_eq(jiffies, cqr->expires + cqr->starttime))) {
1963 if (test_bit(DASD_FLAG_SAFE_OFFLINE_RUNNING, &device->flags)) {
1964 /*
1965 * IO in safe offline processing should not
1966 * run out of retries
1967 */
1968 cqr->retries++;
1969 }
1970 if (device->discipline->term_IO(cqr) != 0) {
1971 /* Hmpf, try again in 5 sec */
1972 dev_err(&device->cdev->dev,
1973 "cqr %p timed out (%lus) but cannot be "
1974 "ended, retrying in 5 s\n",
1975 cqr, (cqr->expires/HZ));
1976 cqr->expires += 5*HZ;
1977 dasd_device_set_timer(device, 5*HZ);
1978 } else {
1979 dev_err(&device->cdev->dev,
1980 "cqr %p timed out (%lus), %i retries "
1981 "remaining\n", cqr, (cqr->expires/HZ),
1982 cqr->retries);
1983 }
1984 }
1985 }
1986
1987 /*
1988 * return 1 when device is not eligible for IO
1989 */
__dasd_device_is_unusable(struct dasd_device * device,struct dasd_ccw_req * cqr)1990 static int __dasd_device_is_unusable(struct dasd_device *device,
1991 struct dasd_ccw_req *cqr)
1992 {
1993 int mask = ~(DASD_STOPPED_DC_WAIT | DASD_UNRESUMED_PM);
1994
1995 if (test_bit(DASD_FLAG_OFFLINE, &device->flags) &&
1996 !test_bit(DASD_FLAG_SAFE_OFFLINE_RUNNING, &device->flags)) {
1997 /*
1998 * dasd is being set offline
1999 * but it is no safe offline where we have to allow I/O
2000 */
2001 return 1;
2002 }
2003 if (device->stopped) {
2004 if (device->stopped & mask) {
2005 /* stopped and CQR will not change that. */
2006 return 1;
2007 }
2008 if (!test_bit(DASD_CQR_VERIFY_PATH, &cqr->flags)) {
2009 /* CQR is not able to change device to
2010 * operational. */
2011 return 1;
2012 }
2013 /* CQR required to get device operational. */
2014 }
2015 return 0;
2016 }
2017
2018 /*
2019 * Take a look at the first request on the ccw queue and check
2020 * if it needs to be started.
2021 */
__dasd_device_start_head(struct dasd_device * device)2022 static void __dasd_device_start_head(struct dasd_device *device)
2023 {
2024 struct dasd_ccw_req *cqr;
2025 int rc;
2026
2027 if (list_empty(&device->ccw_queue))
2028 return;
2029 cqr = list_entry(device->ccw_queue.next, struct dasd_ccw_req, devlist);
2030 if (cqr->status != DASD_CQR_QUEUED)
2031 return;
2032 /* if device is not usable return request to upper layer */
2033 if (__dasd_device_is_unusable(device, cqr)) {
2034 cqr->intrc = -EAGAIN;
2035 cqr->status = DASD_CQR_CLEARED;
2036 dasd_schedule_device_bh(device);
2037 return;
2038 }
2039
2040 rc = device->discipline->start_IO(cqr);
2041 if (rc == 0)
2042 dasd_device_set_timer(device, cqr->expires);
2043 else if (rc == -EACCES) {
2044 dasd_schedule_device_bh(device);
2045 } else
2046 /* Hmpf, try again in 1/2 sec */
2047 dasd_device_set_timer(device, 50);
2048 }
2049
__dasd_device_check_path_events(struct dasd_device * device)2050 static void __dasd_device_check_path_events(struct dasd_device *device)
2051 {
2052 int rc;
2053
2054 if (!dasd_path_get_tbvpm(device))
2055 return;
2056
2057 if (device->stopped &
2058 ~(DASD_STOPPED_DC_WAIT | DASD_UNRESUMED_PM))
2059 return;
2060 rc = device->discipline->verify_path(device,
2061 dasd_path_get_tbvpm(device));
2062 if (rc)
2063 dasd_device_set_timer(device, 50);
2064 else
2065 dasd_path_clear_all_verify(device);
2066 };
2067
2068 /*
2069 * Go through all request on the dasd_device request queue,
2070 * terminate them on the cdev if necessary, and return them to the
2071 * submitting layer via callback.
2072 * Note:
2073 * Make sure that all 'submitting layers' still exist when
2074 * this function is called!. In other words, when 'device' is a base
2075 * device then all block layer requests must have been removed before
2076 * via dasd_flush_block_queue.
2077 */
dasd_flush_device_queue(struct dasd_device * device)2078 int dasd_flush_device_queue(struct dasd_device *device)
2079 {
2080 struct dasd_ccw_req *cqr, *n;
2081 int rc;
2082 struct list_head flush_queue;
2083
2084 INIT_LIST_HEAD(&flush_queue);
2085 spin_lock_irq(get_ccwdev_lock(device->cdev));
2086 rc = 0;
2087 list_for_each_entry_safe(cqr, n, &device->ccw_queue, devlist) {
2088 /* Check status and move request to flush_queue */
2089 switch (cqr->status) {
2090 case DASD_CQR_IN_IO:
2091 rc = device->discipline->term_IO(cqr);
2092 if (rc) {
2093 /* unable to terminate requeust */
2094 dev_err(&device->cdev->dev,
2095 "Flushing the DASD request queue "
2096 "failed for request %p\n", cqr);
2097 /* stop flush processing */
2098 goto finished;
2099 }
2100 break;
2101 case DASD_CQR_QUEUED:
2102 cqr->stopclk = get_tod_clock();
2103 cqr->status = DASD_CQR_CLEARED;
2104 break;
2105 default: /* no need to modify the others */
2106 break;
2107 }
2108 list_move_tail(&cqr->devlist, &flush_queue);
2109 }
2110 finished:
2111 spin_unlock_irq(get_ccwdev_lock(device->cdev));
2112 /*
2113 * After this point all requests must be in state CLEAR_PENDING,
2114 * CLEARED, SUCCESS or ERROR. Now wait for CLEAR_PENDING to become
2115 * one of the others.
2116 */
2117 list_for_each_entry_safe(cqr, n, &flush_queue, devlist)
2118 wait_event(dasd_flush_wq,
2119 (cqr->status != DASD_CQR_CLEAR_PENDING));
2120 /*
2121 * Now set each request back to TERMINATED, DONE or NEED_ERP
2122 * and call the callback function of flushed requests
2123 */
2124 __dasd_device_process_final_queue(device, &flush_queue);
2125 return rc;
2126 }
2127 EXPORT_SYMBOL_GPL(dasd_flush_device_queue);
2128
2129 /*
2130 * Acquire the device lock and process queues for the device.
2131 */
dasd_device_tasklet(struct dasd_device * device)2132 static void dasd_device_tasklet(struct dasd_device *device)
2133 {
2134 struct list_head final_queue;
2135
2136 atomic_set (&device->tasklet_scheduled, 0);
2137 INIT_LIST_HEAD(&final_queue);
2138 spin_lock_irq(get_ccwdev_lock(device->cdev));
2139 /* Check expire time of first request on the ccw queue. */
2140 __dasd_device_check_expire(device);
2141 /* find final requests on ccw queue */
2142 __dasd_device_process_ccw_queue(device, &final_queue);
2143 __dasd_device_check_path_events(device);
2144 spin_unlock_irq(get_ccwdev_lock(device->cdev));
2145 /* Now call the callback function of requests with final status */
2146 __dasd_device_process_final_queue(device, &final_queue);
2147 spin_lock_irq(get_ccwdev_lock(device->cdev));
2148 /* Now check if the head of the ccw queue needs to be started. */
2149 __dasd_device_start_head(device);
2150 spin_unlock_irq(get_ccwdev_lock(device->cdev));
2151 if (waitqueue_active(&shutdown_waitq))
2152 wake_up(&shutdown_waitq);
2153 dasd_put_device(device);
2154 }
2155
2156 /*
2157 * Schedules a call to dasd_tasklet over the device tasklet.
2158 */
dasd_schedule_device_bh(struct dasd_device * device)2159 void dasd_schedule_device_bh(struct dasd_device *device)
2160 {
2161 /* Protect against rescheduling. */
2162 if (atomic_cmpxchg (&device->tasklet_scheduled, 0, 1) != 0)
2163 return;
2164 dasd_get_device(device);
2165 tasklet_hi_schedule(&device->tasklet);
2166 }
2167 EXPORT_SYMBOL(dasd_schedule_device_bh);
2168
dasd_device_set_stop_bits(struct dasd_device * device,int bits)2169 void dasd_device_set_stop_bits(struct dasd_device *device, int bits)
2170 {
2171 device->stopped |= bits;
2172 }
2173 EXPORT_SYMBOL_GPL(dasd_device_set_stop_bits);
2174
dasd_device_remove_stop_bits(struct dasd_device * device,int bits)2175 void dasd_device_remove_stop_bits(struct dasd_device *device, int bits)
2176 {
2177 device->stopped &= ~bits;
2178 if (!device->stopped)
2179 wake_up(&generic_waitq);
2180 }
2181 EXPORT_SYMBOL_GPL(dasd_device_remove_stop_bits);
2182
2183 /*
2184 * Queue a request to the head of the device ccw_queue.
2185 * Start the I/O if possible.
2186 */
dasd_add_request_head(struct dasd_ccw_req * cqr)2187 void dasd_add_request_head(struct dasd_ccw_req *cqr)
2188 {
2189 struct dasd_device *device;
2190 unsigned long flags;
2191
2192 device = cqr->startdev;
2193 spin_lock_irqsave(get_ccwdev_lock(device->cdev), flags);
2194 cqr->status = DASD_CQR_QUEUED;
2195 list_add(&cqr->devlist, &device->ccw_queue);
2196 /* let the bh start the request to keep them in order */
2197 dasd_schedule_device_bh(device);
2198 spin_unlock_irqrestore(get_ccwdev_lock(device->cdev), flags);
2199 }
2200 EXPORT_SYMBOL(dasd_add_request_head);
2201
2202 /*
2203 * Queue a request to the tail of the device ccw_queue.
2204 * Start the I/O if possible.
2205 */
dasd_add_request_tail(struct dasd_ccw_req * cqr)2206 void dasd_add_request_tail(struct dasd_ccw_req *cqr)
2207 {
2208 struct dasd_device *device;
2209 unsigned long flags;
2210
2211 device = cqr->startdev;
2212 spin_lock_irqsave(get_ccwdev_lock(device->cdev), flags);
2213 cqr->status = DASD_CQR_QUEUED;
2214 list_add_tail(&cqr->devlist, &device->ccw_queue);
2215 /* let the bh start the request to keep them in order */
2216 dasd_schedule_device_bh(device);
2217 spin_unlock_irqrestore(get_ccwdev_lock(device->cdev), flags);
2218 }
2219 EXPORT_SYMBOL(dasd_add_request_tail);
2220
2221 /*
2222 * Wakeup helper for the 'sleep_on' functions.
2223 */
dasd_wakeup_cb(struct dasd_ccw_req * cqr,void * data)2224 void dasd_wakeup_cb(struct dasd_ccw_req *cqr, void *data)
2225 {
2226 spin_lock_irq(get_ccwdev_lock(cqr->startdev->cdev));
2227 cqr->callback_data = DASD_SLEEPON_END_TAG;
2228 spin_unlock_irq(get_ccwdev_lock(cqr->startdev->cdev));
2229 wake_up(&generic_waitq);
2230 }
2231 EXPORT_SYMBOL_GPL(dasd_wakeup_cb);
2232
_wait_for_wakeup(struct dasd_ccw_req * cqr)2233 static inline int _wait_for_wakeup(struct dasd_ccw_req *cqr)
2234 {
2235 struct dasd_device *device;
2236 int rc;
2237
2238 device = cqr->startdev;
2239 spin_lock_irq(get_ccwdev_lock(device->cdev));
2240 rc = (cqr->callback_data == DASD_SLEEPON_END_TAG);
2241 spin_unlock_irq(get_ccwdev_lock(device->cdev));
2242 return rc;
2243 }
2244
2245 /*
2246 * checks if error recovery is necessary, returns 1 if yes, 0 otherwise.
2247 */
__dasd_sleep_on_erp(struct dasd_ccw_req * cqr)2248 static int __dasd_sleep_on_erp(struct dasd_ccw_req *cqr)
2249 {
2250 struct dasd_device *device;
2251 dasd_erp_fn_t erp_fn;
2252
2253 if (cqr->status == DASD_CQR_FILLED)
2254 return 0;
2255 device = cqr->startdev;
2256 if (test_bit(DASD_CQR_FLAGS_USE_ERP, &cqr->flags)) {
2257 if (cqr->status == DASD_CQR_TERMINATED) {
2258 device->discipline->handle_terminated_request(cqr);
2259 return 1;
2260 }
2261 if (cqr->status == DASD_CQR_NEED_ERP) {
2262 erp_fn = device->discipline->erp_action(cqr);
2263 erp_fn(cqr);
2264 return 1;
2265 }
2266 if (cqr->status == DASD_CQR_FAILED)
2267 dasd_log_sense(cqr, &cqr->irb);
2268 if (cqr->refers) {
2269 __dasd_process_erp(device, cqr);
2270 return 1;
2271 }
2272 }
2273 return 0;
2274 }
2275
__dasd_sleep_on_loop_condition(struct dasd_ccw_req * cqr)2276 static int __dasd_sleep_on_loop_condition(struct dasd_ccw_req *cqr)
2277 {
2278 if (test_bit(DASD_CQR_FLAGS_USE_ERP, &cqr->flags)) {
2279 if (cqr->refers) /* erp is not done yet */
2280 return 1;
2281 return ((cqr->status != DASD_CQR_DONE) &&
2282 (cqr->status != DASD_CQR_FAILED));
2283 } else
2284 return (cqr->status == DASD_CQR_FILLED);
2285 }
2286
_dasd_sleep_on(struct dasd_ccw_req * maincqr,int interruptible)2287 static int _dasd_sleep_on(struct dasd_ccw_req *maincqr, int interruptible)
2288 {
2289 struct dasd_device *device;
2290 int rc;
2291 struct list_head ccw_queue;
2292 struct dasd_ccw_req *cqr;
2293
2294 INIT_LIST_HEAD(&ccw_queue);
2295 maincqr->status = DASD_CQR_FILLED;
2296 device = maincqr->startdev;
2297 list_add(&maincqr->blocklist, &ccw_queue);
2298 for (cqr = maincqr; __dasd_sleep_on_loop_condition(cqr);
2299 cqr = list_first_entry(&ccw_queue,
2300 struct dasd_ccw_req, blocklist)) {
2301
2302 if (__dasd_sleep_on_erp(cqr))
2303 continue;
2304 if (cqr->status != DASD_CQR_FILLED) /* could be failed */
2305 continue;
2306 if (test_bit(DASD_FLAG_LOCK_STOLEN, &device->flags) &&
2307 !test_bit(DASD_CQR_ALLOW_SLOCK, &cqr->flags)) {
2308 cqr->status = DASD_CQR_FAILED;
2309 cqr->intrc = -EPERM;
2310 continue;
2311 }
2312 /* Non-temporary stop condition will trigger fail fast */
2313 if (device->stopped & ~DASD_STOPPED_PENDING &&
2314 test_bit(DASD_CQR_FLAGS_FAILFAST, &cqr->flags) &&
2315 (!dasd_eer_enabled(device))) {
2316 cqr->status = DASD_CQR_FAILED;
2317 cqr->intrc = -ENOLINK;
2318 continue;
2319 }
2320 /*
2321 * Don't try to start requests if device is in
2322 * offline processing, it might wait forever
2323 */
2324 if (test_bit(DASD_FLAG_OFFLINE, &device->flags)) {
2325 cqr->status = DASD_CQR_FAILED;
2326 cqr->intrc = -ENODEV;
2327 continue;
2328 }
2329 /*
2330 * Don't try to start requests if device is stopped
2331 * except path verification requests
2332 */
2333 if (!test_bit(DASD_CQR_VERIFY_PATH, &cqr->flags)) {
2334 if (interruptible) {
2335 rc = wait_event_interruptible(
2336 generic_waitq, !(device->stopped));
2337 if (rc == -ERESTARTSYS) {
2338 cqr->status = DASD_CQR_FAILED;
2339 maincqr->intrc = rc;
2340 continue;
2341 }
2342 } else
2343 wait_event(generic_waitq, !(device->stopped));
2344 }
2345 if (!cqr->callback)
2346 cqr->callback = dasd_wakeup_cb;
2347
2348 cqr->callback_data = DASD_SLEEPON_START_TAG;
2349 dasd_add_request_tail(cqr);
2350 if (interruptible) {
2351 rc = wait_event_interruptible(
2352 generic_waitq, _wait_for_wakeup(cqr));
2353 if (rc == -ERESTARTSYS) {
2354 dasd_cancel_req(cqr);
2355 /* wait (non-interruptible) for final status */
2356 wait_event(generic_waitq,
2357 _wait_for_wakeup(cqr));
2358 cqr->status = DASD_CQR_FAILED;
2359 maincqr->intrc = rc;
2360 continue;
2361 }
2362 } else
2363 wait_event(generic_waitq, _wait_for_wakeup(cqr));
2364 }
2365
2366 maincqr->endclk = get_tod_clock();
2367 if ((maincqr->status != DASD_CQR_DONE) &&
2368 (maincqr->intrc != -ERESTARTSYS))
2369 dasd_log_sense(maincqr, &maincqr->irb);
2370 if (maincqr->status == DASD_CQR_DONE)
2371 rc = 0;
2372 else if (maincqr->intrc)
2373 rc = maincqr->intrc;
2374 else
2375 rc = -EIO;
2376 return rc;
2377 }
2378
_wait_for_wakeup_queue(struct list_head * ccw_queue)2379 static inline int _wait_for_wakeup_queue(struct list_head *ccw_queue)
2380 {
2381 struct dasd_ccw_req *cqr;
2382
2383 list_for_each_entry(cqr, ccw_queue, blocklist) {
2384 if (cqr->callback_data != DASD_SLEEPON_END_TAG)
2385 return 0;
2386 }
2387
2388 return 1;
2389 }
2390
_dasd_sleep_on_queue(struct list_head * ccw_queue,int interruptible)2391 static int _dasd_sleep_on_queue(struct list_head *ccw_queue, int interruptible)
2392 {
2393 struct dasd_device *device;
2394 struct dasd_ccw_req *cqr, *n;
2395 u8 *sense = NULL;
2396 int rc;
2397
2398 retry:
2399 list_for_each_entry_safe(cqr, n, ccw_queue, blocklist) {
2400 device = cqr->startdev;
2401 if (cqr->status != DASD_CQR_FILLED) /*could be failed*/
2402 continue;
2403
2404 if (test_bit(DASD_FLAG_LOCK_STOLEN, &device->flags) &&
2405 !test_bit(DASD_CQR_ALLOW_SLOCK, &cqr->flags)) {
2406 cqr->status = DASD_CQR_FAILED;
2407 cqr->intrc = -EPERM;
2408 continue;
2409 }
2410 /*Non-temporary stop condition will trigger fail fast*/
2411 if (device->stopped & ~DASD_STOPPED_PENDING &&
2412 test_bit(DASD_CQR_FLAGS_FAILFAST, &cqr->flags) &&
2413 !dasd_eer_enabled(device)) {
2414 cqr->status = DASD_CQR_FAILED;
2415 cqr->intrc = -EAGAIN;
2416 continue;
2417 }
2418
2419 /*Don't try to start requests if device is stopped*/
2420 if (interruptible) {
2421 rc = wait_event_interruptible(
2422 generic_waitq, !device->stopped);
2423 if (rc == -ERESTARTSYS) {
2424 cqr->status = DASD_CQR_FAILED;
2425 cqr->intrc = rc;
2426 continue;
2427 }
2428 } else
2429 wait_event(generic_waitq, !(device->stopped));
2430
2431 if (!cqr->callback)
2432 cqr->callback = dasd_wakeup_cb;
2433 cqr->callback_data = DASD_SLEEPON_START_TAG;
2434 dasd_add_request_tail(cqr);
2435 }
2436
2437 wait_event(generic_waitq, _wait_for_wakeup_queue(ccw_queue));
2438
2439 rc = 0;
2440 list_for_each_entry_safe(cqr, n, ccw_queue, blocklist) {
2441 /*
2442 * In some cases the 'File Protected' or 'Incorrect Length'
2443 * error might be expected and error recovery would be
2444 * unnecessary in these cases. Check if the according suppress
2445 * bit is set.
2446 */
2447 sense = dasd_get_sense(&cqr->irb);
2448 if (sense && sense[1] & SNS1_FILE_PROTECTED &&
2449 test_bit(DASD_CQR_SUPPRESS_FP, &cqr->flags))
2450 continue;
2451 if (scsw_cstat(&cqr->irb.scsw) == 0x40 &&
2452 test_bit(DASD_CQR_SUPPRESS_IL, &cqr->flags))
2453 continue;
2454
2455 /*
2456 * for alias devices simplify error recovery and
2457 * return to upper layer
2458 * do not skip ERP requests
2459 */
2460 if (cqr->startdev != cqr->basedev && !cqr->refers &&
2461 (cqr->status == DASD_CQR_TERMINATED ||
2462 cqr->status == DASD_CQR_NEED_ERP))
2463 return -EAGAIN;
2464
2465 /* normal recovery for basedev IO */
2466 if (__dasd_sleep_on_erp(cqr))
2467 /* handle erp first */
2468 goto retry;
2469 }
2470
2471 return 0;
2472 }
2473
2474 /*
2475 * Queue a request to the tail of the device ccw_queue and wait for
2476 * it's completion.
2477 */
dasd_sleep_on(struct dasd_ccw_req * cqr)2478 int dasd_sleep_on(struct dasd_ccw_req *cqr)
2479 {
2480 return _dasd_sleep_on(cqr, 0);
2481 }
2482 EXPORT_SYMBOL(dasd_sleep_on);
2483
2484 /*
2485 * Start requests from a ccw_queue and wait for their completion.
2486 */
dasd_sleep_on_queue(struct list_head * ccw_queue)2487 int dasd_sleep_on_queue(struct list_head *ccw_queue)
2488 {
2489 return _dasd_sleep_on_queue(ccw_queue, 0);
2490 }
2491 EXPORT_SYMBOL(dasd_sleep_on_queue);
2492
2493 /*
2494 * Queue a request to the tail of the device ccw_queue and wait
2495 * interruptible for it's completion.
2496 */
dasd_sleep_on_interruptible(struct dasd_ccw_req * cqr)2497 int dasd_sleep_on_interruptible(struct dasd_ccw_req *cqr)
2498 {
2499 return _dasd_sleep_on(cqr, 1);
2500 }
2501 EXPORT_SYMBOL(dasd_sleep_on_interruptible);
2502
2503 /*
2504 * Whoa nelly now it gets really hairy. For some functions (e.g. steal lock
2505 * for eckd devices) the currently running request has to be terminated
2506 * and be put back to status queued, before the special request is added
2507 * to the head of the queue. Then the special request is waited on normally.
2508 */
_dasd_term_running_cqr(struct dasd_device * device)2509 static inline int _dasd_term_running_cqr(struct dasd_device *device)
2510 {
2511 struct dasd_ccw_req *cqr;
2512 int rc;
2513
2514 if (list_empty(&device->ccw_queue))
2515 return 0;
2516 cqr = list_entry(device->ccw_queue.next, struct dasd_ccw_req, devlist);
2517 rc = device->discipline->term_IO(cqr);
2518 if (!rc)
2519 /*
2520 * CQR terminated because a more important request is pending.
2521 * Undo decreasing of retry counter because this is
2522 * not an error case.
2523 */
2524 cqr->retries++;
2525 return rc;
2526 }
2527
dasd_sleep_on_immediatly(struct dasd_ccw_req * cqr)2528 int dasd_sleep_on_immediatly(struct dasd_ccw_req *cqr)
2529 {
2530 struct dasd_device *device;
2531 int rc;
2532
2533 device = cqr->startdev;
2534 if (test_bit(DASD_FLAG_LOCK_STOLEN, &device->flags) &&
2535 !test_bit(DASD_CQR_ALLOW_SLOCK, &cqr->flags)) {
2536 cqr->status = DASD_CQR_FAILED;
2537 cqr->intrc = -EPERM;
2538 return -EIO;
2539 }
2540 spin_lock_irq(get_ccwdev_lock(device->cdev));
2541 rc = _dasd_term_running_cqr(device);
2542 if (rc) {
2543 spin_unlock_irq(get_ccwdev_lock(device->cdev));
2544 return rc;
2545 }
2546 cqr->callback = dasd_wakeup_cb;
2547 cqr->callback_data = DASD_SLEEPON_START_TAG;
2548 cqr->status = DASD_CQR_QUEUED;
2549 /*
2550 * add new request as second
2551 * first the terminated cqr needs to be finished
2552 */
2553 list_add(&cqr->devlist, device->ccw_queue.next);
2554
2555 /* let the bh start the request to keep them in order */
2556 dasd_schedule_device_bh(device);
2557
2558 spin_unlock_irq(get_ccwdev_lock(device->cdev));
2559
2560 wait_event(generic_waitq, _wait_for_wakeup(cqr));
2561
2562 if (cqr->status == DASD_CQR_DONE)
2563 rc = 0;
2564 else if (cqr->intrc)
2565 rc = cqr->intrc;
2566 else
2567 rc = -EIO;
2568
2569 /* kick tasklets */
2570 dasd_schedule_device_bh(device);
2571 if (device->block)
2572 dasd_schedule_block_bh(device->block);
2573
2574 return rc;
2575 }
2576 EXPORT_SYMBOL(dasd_sleep_on_immediatly);
2577
2578 /*
2579 * Cancels a request that was started with dasd_sleep_on_req.
2580 * This is useful to timeout requests. The request will be
2581 * terminated if it is currently in i/o.
2582 * Returns 0 if request termination was successful
2583 * negative error code if termination failed
2584 * Cancellation of a request is an asynchronous operation! The calling
2585 * function has to wait until the request is properly returned via callback.
2586 */
dasd_cancel_req(struct dasd_ccw_req * cqr)2587 int dasd_cancel_req(struct dasd_ccw_req *cqr)
2588 {
2589 struct dasd_device *device = cqr->startdev;
2590 unsigned long flags;
2591 int rc;
2592
2593 rc = 0;
2594 spin_lock_irqsave(get_ccwdev_lock(device->cdev), flags);
2595 switch (cqr->status) {
2596 case DASD_CQR_QUEUED:
2597 /* request was not started - just set to cleared */
2598 cqr->status = DASD_CQR_CLEARED;
2599 break;
2600 case DASD_CQR_IN_IO:
2601 /* request in IO - terminate IO and release again */
2602 rc = device->discipline->term_IO(cqr);
2603 if (rc) {
2604 dev_err(&device->cdev->dev,
2605 "Cancelling request %p failed with rc=%d\n",
2606 cqr, rc);
2607 } else {
2608 cqr->stopclk = get_tod_clock();
2609 }
2610 break;
2611 default: /* already finished or clear pending - do nothing */
2612 break;
2613 }
2614 spin_unlock_irqrestore(get_ccwdev_lock(device->cdev), flags);
2615 dasd_schedule_device_bh(device);
2616 return rc;
2617 }
2618 EXPORT_SYMBOL(dasd_cancel_req);
2619
2620 /*
2621 * SECTION: Operations of the dasd_block layer.
2622 */
2623
2624 /*
2625 * Timeout function for dasd_block. This is used when the block layer
2626 * is waiting for something that may not come reliably, (e.g. a state
2627 * change interrupt)
2628 */
dasd_block_timeout(unsigned long ptr)2629 static void dasd_block_timeout(unsigned long ptr)
2630 {
2631 unsigned long flags;
2632 struct dasd_block *block;
2633
2634 block = (struct dasd_block *) ptr;
2635 spin_lock_irqsave(get_ccwdev_lock(block->base->cdev), flags);
2636 /* re-activate request queue */
2637 dasd_device_remove_stop_bits(block->base, DASD_STOPPED_PENDING);
2638 spin_unlock_irqrestore(get_ccwdev_lock(block->base->cdev), flags);
2639 dasd_schedule_block_bh(block);
2640 blk_mq_run_hw_queues(block->request_queue, true);
2641 }
2642
2643 /*
2644 * Setup timeout for a dasd_block in jiffies.
2645 */
dasd_block_set_timer(struct dasd_block * block,int expires)2646 void dasd_block_set_timer(struct dasd_block *block, int expires)
2647 {
2648 if (expires == 0)
2649 del_timer(&block->timer);
2650 else
2651 mod_timer(&block->timer, jiffies + expires);
2652 }
2653 EXPORT_SYMBOL(dasd_block_set_timer);
2654
2655 /*
2656 * Clear timeout for a dasd_block.
2657 */
dasd_block_clear_timer(struct dasd_block * block)2658 void dasd_block_clear_timer(struct dasd_block *block)
2659 {
2660 del_timer(&block->timer);
2661 }
2662 EXPORT_SYMBOL(dasd_block_clear_timer);
2663
2664 /*
2665 * Process finished error recovery ccw.
2666 */
__dasd_process_erp(struct dasd_device * device,struct dasd_ccw_req * cqr)2667 static void __dasd_process_erp(struct dasd_device *device,
2668 struct dasd_ccw_req *cqr)
2669 {
2670 dasd_erp_fn_t erp_fn;
2671
2672 if (cqr->status == DASD_CQR_DONE)
2673 DBF_DEV_EVENT(DBF_NOTICE, device, "%s", "ERP successful");
2674 else
2675 dev_err(&device->cdev->dev, "ERP failed for the DASD\n");
2676 erp_fn = device->discipline->erp_postaction(cqr);
2677 erp_fn(cqr);
2678 }
2679
__dasd_cleanup_cqr(struct dasd_ccw_req * cqr)2680 static void __dasd_cleanup_cqr(struct dasd_ccw_req *cqr)
2681 {
2682 struct request *req;
2683 blk_status_t error = BLK_STS_OK;
2684 int status;
2685
2686 req = (struct request *) cqr->callback_data;
2687 dasd_profile_end(cqr->block, cqr, req);
2688
2689 status = cqr->block->base->discipline->free_cp(cqr, req);
2690 if (status < 0)
2691 error = errno_to_blk_status(status);
2692 else if (status == 0) {
2693 switch (cqr->intrc) {
2694 case -EPERM:
2695 error = BLK_STS_NEXUS;
2696 break;
2697 case -ENOLINK:
2698 error = BLK_STS_TRANSPORT;
2699 break;
2700 case -ETIMEDOUT:
2701 error = BLK_STS_TIMEOUT;
2702 break;
2703 default:
2704 error = BLK_STS_IOERR;
2705 break;
2706 }
2707 }
2708
2709 /*
2710 * We need to take care for ETIMEDOUT errors here since the
2711 * complete callback does not get called in this case.
2712 * Take care of all errors here and avoid additional code to
2713 * transfer the error value to the complete callback.
2714 */
2715 if (error) {
2716 blk_mq_end_request(req, error);
2717 blk_mq_run_hw_queues(req->q, true);
2718 } else {
2719 blk_mq_complete_request(req);
2720 }
2721 }
2722
2723 /*
2724 * Process ccw request queue.
2725 */
__dasd_process_block_ccw_queue(struct dasd_block * block,struct list_head * final_queue)2726 static void __dasd_process_block_ccw_queue(struct dasd_block *block,
2727 struct list_head *final_queue)
2728 {
2729 struct list_head *l, *n;
2730 struct dasd_ccw_req *cqr;
2731 dasd_erp_fn_t erp_fn;
2732 unsigned long flags;
2733 struct dasd_device *base = block->base;
2734
2735 restart:
2736 /* Process request with final status. */
2737 list_for_each_safe(l, n, &block->ccw_queue) {
2738 cqr = list_entry(l, struct dasd_ccw_req, blocklist);
2739 if (cqr->status != DASD_CQR_DONE &&
2740 cqr->status != DASD_CQR_FAILED &&
2741 cqr->status != DASD_CQR_NEED_ERP &&
2742 cqr->status != DASD_CQR_TERMINATED)
2743 continue;
2744
2745 if (cqr->status == DASD_CQR_TERMINATED) {
2746 base->discipline->handle_terminated_request(cqr);
2747 goto restart;
2748 }
2749
2750 /* Process requests that may be recovered */
2751 if (cqr->status == DASD_CQR_NEED_ERP) {
2752 erp_fn = base->discipline->erp_action(cqr);
2753 if (IS_ERR(erp_fn(cqr)))
2754 continue;
2755 goto restart;
2756 }
2757
2758 /* log sense for fatal error */
2759 if (cqr->status == DASD_CQR_FAILED) {
2760 dasd_log_sense(cqr, &cqr->irb);
2761 }
2762
2763 /* First of all call extended error reporting. */
2764 if (dasd_eer_enabled(base) &&
2765 cqr->status == DASD_CQR_FAILED) {
2766 dasd_eer_write(base, cqr, DASD_EER_FATALERROR);
2767
2768 /* restart request */
2769 cqr->status = DASD_CQR_FILLED;
2770 cqr->retries = 255;
2771 spin_lock_irqsave(get_ccwdev_lock(base->cdev), flags);
2772 dasd_device_set_stop_bits(base, DASD_STOPPED_QUIESCE);
2773 spin_unlock_irqrestore(get_ccwdev_lock(base->cdev),
2774 flags);
2775 goto restart;
2776 }
2777
2778 /* Process finished ERP request. */
2779 if (cqr->refers) {
2780 __dasd_process_erp(base, cqr);
2781 goto restart;
2782 }
2783
2784 /* Rechain finished requests to final queue */
2785 cqr->endclk = get_tod_clock();
2786 list_move_tail(&cqr->blocklist, final_queue);
2787 }
2788 }
2789
dasd_return_cqr_cb(struct dasd_ccw_req * cqr,void * data)2790 static void dasd_return_cqr_cb(struct dasd_ccw_req *cqr, void *data)
2791 {
2792 dasd_schedule_block_bh(cqr->block);
2793 }
2794
__dasd_block_start_head(struct dasd_block * block)2795 static void __dasd_block_start_head(struct dasd_block *block)
2796 {
2797 struct dasd_ccw_req *cqr;
2798
2799 if (list_empty(&block->ccw_queue))
2800 return;
2801 /* We allways begin with the first requests on the queue, as some
2802 * of previously started requests have to be enqueued on a
2803 * dasd_device again for error recovery.
2804 */
2805 list_for_each_entry(cqr, &block->ccw_queue, blocklist) {
2806 if (cqr->status != DASD_CQR_FILLED)
2807 continue;
2808 if (test_bit(DASD_FLAG_LOCK_STOLEN, &block->base->flags) &&
2809 !test_bit(DASD_CQR_ALLOW_SLOCK, &cqr->flags)) {
2810 cqr->status = DASD_CQR_FAILED;
2811 cqr->intrc = -EPERM;
2812 dasd_schedule_block_bh(block);
2813 continue;
2814 }
2815 /* Non-temporary stop condition will trigger fail fast */
2816 if (block->base->stopped & ~DASD_STOPPED_PENDING &&
2817 test_bit(DASD_CQR_FLAGS_FAILFAST, &cqr->flags) &&
2818 (!dasd_eer_enabled(block->base))) {
2819 cqr->status = DASD_CQR_FAILED;
2820 cqr->intrc = -ENOLINK;
2821 dasd_schedule_block_bh(block);
2822 continue;
2823 }
2824 /* Don't try to start requests if device is stopped */
2825 if (block->base->stopped)
2826 return;
2827
2828 /* just a fail safe check, should not happen */
2829 if (!cqr->startdev)
2830 cqr->startdev = block->base;
2831
2832 /* make sure that the requests we submit find their way back */
2833 cqr->callback = dasd_return_cqr_cb;
2834
2835 dasd_add_request_tail(cqr);
2836 }
2837 }
2838
2839 /*
2840 * Central dasd_block layer routine. Takes requests from the generic
2841 * block layer request queue, creates ccw requests, enqueues them on
2842 * a dasd_device and processes ccw requests that have been returned.
2843 */
dasd_block_tasklet(struct dasd_block * block)2844 static void dasd_block_tasklet(struct dasd_block *block)
2845 {
2846 struct list_head final_queue;
2847 struct list_head *l, *n;
2848 struct dasd_ccw_req *cqr;
2849 struct dasd_queue *dq;
2850
2851 atomic_set(&block->tasklet_scheduled, 0);
2852 INIT_LIST_HEAD(&final_queue);
2853 spin_lock_irq(&block->queue_lock);
2854 /* Finish off requests on ccw queue */
2855 __dasd_process_block_ccw_queue(block, &final_queue);
2856 spin_unlock_irq(&block->queue_lock);
2857
2858 /* Now call the callback function of requests with final status */
2859 list_for_each_safe(l, n, &final_queue) {
2860 cqr = list_entry(l, struct dasd_ccw_req, blocklist);
2861 dq = cqr->dq;
2862 spin_lock_irq(&dq->lock);
2863 list_del_init(&cqr->blocklist);
2864 __dasd_cleanup_cqr(cqr);
2865 spin_unlock_irq(&dq->lock);
2866 }
2867
2868 spin_lock_irq(&block->queue_lock);
2869 /* Now check if the head of the ccw queue needs to be started. */
2870 __dasd_block_start_head(block);
2871 spin_unlock_irq(&block->queue_lock);
2872
2873 if (waitqueue_active(&shutdown_waitq))
2874 wake_up(&shutdown_waitq);
2875 dasd_put_device(block->base);
2876 }
2877
_dasd_wake_block_flush_cb(struct dasd_ccw_req * cqr,void * data)2878 static void _dasd_wake_block_flush_cb(struct dasd_ccw_req *cqr, void *data)
2879 {
2880 wake_up(&dasd_flush_wq);
2881 }
2882
2883 /*
2884 * Requeue a request back to the block request queue
2885 * only works for block requests
2886 */
_dasd_requeue_request(struct dasd_ccw_req * cqr)2887 static int _dasd_requeue_request(struct dasd_ccw_req *cqr)
2888 {
2889 struct dasd_block *block = cqr->block;
2890 struct request *req;
2891
2892 if (!block)
2893 return -EINVAL;
2894 spin_lock_irq(&cqr->dq->lock);
2895 req = (struct request *) cqr->callback_data;
2896 blk_mq_requeue_request(req, false);
2897 spin_unlock_irq(&cqr->dq->lock);
2898
2899 return 0;
2900 }
2901
2902 /*
2903 * Go through all request on the dasd_block request queue, cancel them
2904 * on the respective dasd_device, and return them to the generic
2905 * block layer.
2906 */
dasd_flush_block_queue(struct dasd_block * block)2907 static int dasd_flush_block_queue(struct dasd_block *block)
2908 {
2909 struct dasd_ccw_req *cqr, *n;
2910 int rc, i;
2911 struct list_head flush_queue;
2912 unsigned long flags;
2913
2914 INIT_LIST_HEAD(&flush_queue);
2915 spin_lock_bh(&block->queue_lock);
2916 rc = 0;
2917 restart:
2918 list_for_each_entry_safe(cqr, n, &block->ccw_queue, blocklist) {
2919 /* if this request currently owned by a dasd_device cancel it */
2920 if (cqr->status >= DASD_CQR_QUEUED)
2921 rc = dasd_cancel_req(cqr);
2922 if (rc < 0)
2923 break;
2924 /* Rechain request (including erp chain) so it won't be
2925 * touched by the dasd_block_tasklet anymore.
2926 * Replace the callback so we notice when the request
2927 * is returned from the dasd_device layer.
2928 */
2929 cqr->callback = _dasd_wake_block_flush_cb;
2930 for (i = 0; cqr != NULL; cqr = cqr->refers, i++)
2931 list_move_tail(&cqr->blocklist, &flush_queue);
2932 if (i > 1)
2933 /* moved more than one request - need to restart */
2934 goto restart;
2935 }
2936 spin_unlock_bh(&block->queue_lock);
2937 /* Now call the callback function of flushed requests */
2938 restart_cb:
2939 list_for_each_entry_safe(cqr, n, &flush_queue, blocklist) {
2940 wait_event(dasd_flush_wq, (cqr->status < DASD_CQR_QUEUED));
2941 /* Process finished ERP request. */
2942 if (cqr->refers) {
2943 spin_lock_bh(&block->queue_lock);
2944 __dasd_process_erp(block->base, cqr);
2945 spin_unlock_bh(&block->queue_lock);
2946 /* restart list_for_xx loop since dasd_process_erp
2947 * might remove multiple elements */
2948 goto restart_cb;
2949 }
2950 /* call the callback function */
2951 spin_lock_irqsave(&cqr->dq->lock, flags);
2952 cqr->endclk = get_tod_clock();
2953 list_del_init(&cqr->blocklist);
2954 __dasd_cleanup_cqr(cqr);
2955 spin_unlock_irqrestore(&cqr->dq->lock, flags);
2956 }
2957 return rc;
2958 }
2959
2960 /*
2961 * Schedules a call to dasd_tasklet over the device tasklet.
2962 */
dasd_schedule_block_bh(struct dasd_block * block)2963 void dasd_schedule_block_bh(struct dasd_block *block)
2964 {
2965 /* Protect against rescheduling. */
2966 if (atomic_cmpxchg(&block->tasklet_scheduled, 0, 1) != 0)
2967 return;
2968 /* life cycle of block is bound to it's base device */
2969 dasd_get_device(block->base);
2970 tasklet_hi_schedule(&block->tasklet);
2971 }
2972 EXPORT_SYMBOL(dasd_schedule_block_bh);
2973
2974
2975 /*
2976 * SECTION: external block device operations
2977 * (request queue handling, open, release, etc.)
2978 */
2979
2980 /*
2981 * Dasd request queue function. Called from ll_rw_blk.c
2982 */
do_dasd_request(struct blk_mq_hw_ctx * hctx,const struct blk_mq_queue_data * qd)2983 static blk_status_t do_dasd_request(struct blk_mq_hw_ctx *hctx,
2984 const struct blk_mq_queue_data *qd)
2985 {
2986 struct dasd_block *block = hctx->queue->queuedata;
2987 struct dasd_queue *dq = hctx->driver_data;
2988 struct request *req = qd->rq;
2989 struct dasd_device *basedev;
2990 struct dasd_ccw_req *cqr;
2991 blk_status_t rc = BLK_STS_OK;
2992
2993 basedev = block->base;
2994 spin_lock_irq(&dq->lock);
2995 if (basedev->state < DASD_STATE_READY) {
2996 DBF_DEV_EVENT(DBF_ERR, basedev,
2997 "device not ready for request %p", req);
2998 rc = BLK_STS_IOERR;
2999 goto out;
3000 }
3001
3002 /*
3003 * if device is stopped do not fetch new requests
3004 * except failfast is active which will let requests fail
3005 * immediately in __dasd_block_start_head()
3006 */
3007 if (basedev->stopped && !(basedev->features & DASD_FEATURE_FAILFAST)) {
3008 DBF_DEV_EVENT(DBF_ERR, basedev,
3009 "device stopped request %p", req);
3010 rc = BLK_STS_RESOURCE;
3011 goto out;
3012 }
3013
3014 if (basedev->features & DASD_FEATURE_READONLY &&
3015 rq_data_dir(req) == WRITE) {
3016 DBF_DEV_EVENT(DBF_ERR, basedev,
3017 "Rejecting write request %p", req);
3018 rc = BLK_STS_IOERR;
3019 goto out;
3020 }
3021
3022 if (test_bit(DASD_FLAG_ABORTALL, &basedev->flags) &&
3023 (basedev->features & DASD_FEATURE_FAILFAST ||
3024 blk_noretry_request(req))) {
3025 DBF_DEV_EVENT(DBF_ERR, basedev,
3026 "Rejecting failfast request %p", req);
3027 rc = BLK_STS_IOERR;
3028 goto out;
3029 }
3030
3031 cqr = basedev->discipline->build_cp(basedev, block, req);
3032 if (IS_ERR(cqr)) {
3033 if (PTR_ERR(cqr) == -EBUSY ||
3034 PTR_ERR(cqr) == -ENOMEM ||
3035 PTR_ERR(cqr) == -EAGAIN) {
3036 rc = BLK_STS_RESOURCE;
3037 goto out;
3038 }
3039 DBF_DEV_EVENT(DBF_ERR, basedev,
3040 "CCW creation failed (rc=%ld) on request %p",
3041 PTR_ERR(cqr), req);
3042 rc = BLK_STS_IOERR;
3043 goto out;
3044 }
3045 /*
3046 * Note: callback is set to dasd_return_cqr_cb in
3047 * __dasd_block_start_head to cover erp requests as well
3048 */
3049 cqr->callback_data = req;
3050 cqr->status = DASD_CQR_FILLED;
3051 cqr->dq = dq;
3052 *((struct dasd_ccw_req **) blk_mq_rq_to_pdu(req)) = cqr;
3053
3054 blk_mq_start_request(req);
3055 spin_lock(&block->queue_lock);
3056 list_add_tail(&cqr->blocklist, &block->ccw_queue);
3057 INIT_LIST_HEAD(&cqr->devlist);
3058 dasd_profile_start(block, cqr, req);
3059 dasd_schedule_block_bh(block);
3060 spin_unlock(&block->queue_lock);
3061
3062 out:
3063 spin_unlock_irq(&dq->lock);
3064 return rc;
3065 }
3066
3067 /*
3068 * Block timeout callback, called from the block layer
3069 *
3070 * Return values:
3071 * BLK_EH_RESET_TIMER if the request should be left running
3072 * BLK_EH_NOT_HANDLED if the request is handled or terminated
3073 * by the driver.
3074 */
dasd_times_out(struct request * req,bool reserved)3075 enum blk_eh_timer_return dasd_times_out(struct request *req, bool reserved)
3076 {
3077 struct dasd_block *block = req->q->queuedata;
3078 struct dasd_device *device;
3079 struct dasd_ccw_req *cqr;
3080 unsigned long flags;
3081 int rc = 0;
3082
3083 cqr = *((struct dasd_ccw_req **) blk_mq_rq_to_pdu(req));
3084 if (!cqr)
3085 return BLK_EH_NOT_HANDLED;
3086
3087 spin_lock_irqsave(&cqr->dq->lock, flags);
3088 device = cqr->startdev ? cqr->startdev : block->base;
3089 if (!device->blk_timeout) {
3090 spin_unlock_irqrestore(&cqr->dq->lock, flags);
3091 return BLK_EH_RESET_TIMER;
3092 }
3093 DBF_DEV_EVENT(DBF_WARNING, device,
3094 " dasd_times_out cqr %p status %x",
3095 cqr, cqr->status);
3096
3097 spin_lock(&block->queue_lock);
3098 spin_lock(get_ccwdev_lock(device->cdev));
3099 cqr->retries = -1;
3100 cqr->intrc = -ETIMEDOUT;
3101 if (cqr->status >= DASD_CQR_QUEUED) {
3102 spin_unlock(get_ccwdev_lock(device->cdev));
3103 rc = dasd_cancel_req(cqr);
3104 } else if (cqr->status == DASD_CQR_FILLED ||
3105 cqr->status == DASD_CQR_NEED_ERP) {
3106 cqr->status = DASD_CQR_TERMINATED;
3107 spin_unlock(get_ccwdev_lock(device->cdev));
3108 } else if (cqr->status == DASD_CQR_IN_ERP) {
3109 struct dasd_ccw_req *searchcqr, *nextcqr, *tmpcqr;
3110
3111 list_for_each_entry_safe(searchcqr, nextcqr,
3112 &block->ccw_queue, blocklist) {
3113 tmpcqr = searchcqr;
3114 while (tmpcqr->refers)
3115 tmpcqr = tmpcqr->refers;
3116 if (tmpcqr != cqr)
3117 continue;
3118 /* searchcqr is an ERP request for cqr */
3119 searchcqr->retries = -1;
3120 searchcqr->intrc = -ETIMEDOUT;
3121 if (searchcqr->status >= DASD_CQR_QUEUED) {
3122 spin_unlock(get_ccwdev_lock(device->cdev));
3123 rc = dasd_cancel_req(searchcqr);
3124 spin_lock(get_ccwdev_lock(device->cdev));
3125 } else if ((searchcqr->status == DASD_CQR_FILLED) ||
3126 (searchcqr->status == DASD_CQR_NEED_ERP)) {
3127 searchcqr->status = DASD_CQR_TERMINATED;
3128 rc = 0;
3129 } else if (searchcqr->status == DASD_CQR_IN_ERP) {
3130 /*
3131 * Shouldn't happen; most recent ERP
3132 * request is at the front of queue
3133 */
3134 continue;
3135 }
3136 break;
3137 }
3138 spin_unlock(get_ccwdev_lock(device->cdev));
3139 }
3140 dasd_schedule_block_bh(block);
3141 spin_unlock(&block->queue_lock);
3142 spin_unlock_irqrestore(&cqr->dq->lock, flags);
3143
3144 return rc ? BLK_EH_RESET_TIMER : BLK_EH_NOT_HANDLED;
3145 }
3146
dasd_init_hctx(struct blk_mq_hw_ctx * hctx,void * data,unsigned int idx)3147 static int dasd_init_hctx(struct blk_mq_hw_ctx *hctx, void *data,
3148 unsigned int idx)
3149 {
3150 struct dasd_queue *dq = kzalloc(sizeof(*dq), GFP_KERNEL);
3151
3152 if (!dq)
3153 return -ENOMEM;
3154
3155 spin_lock_init(&dq->lock);
3156 hctx->driver_data = dq;
3157
3158 return 0;
3159 }
3160
dasd_exit_hctx(struct blk_mq_hw_ctx * hctx,unsigned int idx)3161 static void dasd_exit_hctx(struct blk_mq_hw_ctx *hctx, unsigned int idx)
3162 {
3163 kfree(hctx->driver_data);
3164 hctx->driver_data = NULL;
3165 }
3166
dasd_request_done(struct request * req)3167 static void dasd_request_done(struct request *req)
3168 {
3169 blk_mq_end_request(req, 0);
3170 blk_mq_run_hw_queues(req->q, true);
3171 }
3172
3173 static struct blk_mq_ops dasd_mq_ops = {
3174 .queue_rq = do_dasd_request,
3175 .complete = dasd_request_done,
3176 .timeout = dasd_times_out,
3177 .init_hctx = dasd_init_hctx,
3178 .exit_hctx = dasd_exit_hctx,
3179 };
3180
3181 /*
3182 * Allocate and initialize request queue and default I/O scheduler.
3183 */
dasd_alloc_queue(struct dasd_block * block)3184 static int dasd_alloc_queue(struct dasd_block *block)
3185 {
3186 int rc;
3187
3188 block->tag_set.ops = &dasd_mq_ops;
3189 block->tag_set.cmd_size = sizeof(struct dasd_ccw_req *);
3190 block->tag_set.nr_hw_queues = DASD_NR_HW_QUEUES;
3191 block->tag_set.queue_depth = DASD_MAX_LCU_DEV * DASD_REQ_PER_DEV;
3192 block->tag_set.flags = BLK_MQ_F_SHOULD_MERGE;
3193 block->tag_set.numa_node = NUMA_NO_NODE;
3194
3195 rc = blk_mq_alloc_tag_set(&block->tag_set);
3196 if (rc)
3197 return rc;
3198
3199 block->request_queue = blk_mq_init_queue(&block->tag_set);
3200 if (IS_ERR(block->request_queue))
3201 return PTR_ERR(block->request_queue);
3202
3203 block->request_queue->queuedata = block;
3204
3205 return 0;
3206 }
3207
3208 /*
3209 * Allocate and initialize request queue.
3210 */
dasd_setup_queue(struct dasd_block * block)3211 static void dasd_setup_queue(struct dasd_block *block)
3212 {
3213 unsigned int logical_block_size = block->bp_block;
3214 struct request_queue *q = block->request_queue;
3215 unsigned int max_bytes, max_discard_sectors;
3216 int max;
3217
3218 if (block->base->features & DASD_FEATURE_USERAW) {
3219 /*
3220 * the max_blocks value for raw_track access is 256
3221 * it is higher than the native ECKD value because we
3222 * only need one ccw per track
3223 * so the max_hw_sectors are
3224 * 2048 x 512B = 1024kB = 16 tracks
3225 */
3226 max = 2048;
3227 } else {
3228 max = block->base->discipline->max_blocks << block->s2b_shift;
3229 }
3230 queue_flag_set_unlocked(QUEUE_FLAG_NONROT, q);
3231 q->limits.max_dev_sectors = max;
3232 blk_queue_logical_block_size(q, logical_block_size);
3233 blk_queue_max_hw_sectors(q, max);
3234 blk_queue_max_segments(q, USHRT_MAX);
3235 /* with page sized segments we can translate each segement into
3236 * one idaw/tidaw
3237 */
3238 blk_queue_max_segment_size(q, PAGE_SIZE);
3239 blk_queue_segment_boundary(q, PAGE_SIZE - 1);
3240
3241 /* Only activate blocklayer discard support for devices that support it */
3242 if (block->base->features & DASD_FEATURE_DISCARD) {
3243 q->limits.discard_granularity = logical_block_size;
3244 q->limits.discard_alignment = PAGE_SIZE;
3245
3246 /* Calculate max_discard_sectors and make it PAGE aligned */
3247 max_bytes = USHRT_MAX * logical_block_size;
3248 max_bytes = ALIGN(max_bytes, PAGE_SIZE) - PAGE_SIZE;
3249 max_discard_sectors = max_bytes / logical_block_size;
3250
3251 blk_queue_max_discard_sectors(q, max_discard_sectors);
3252 blk_queue_max_write_zeroes_sectors(q, max_discard_sectors);
3253 queue_flag_set_unlocked(QUEUE_FLAG_DISCARD, q);
3254 }
3255 }
3256
3257 /*
3258 * Deactivate and free request queue.
3259 */
dasd_free_queue(struct dasd_block * block)3260 static void dasd_free_queue(struct dasd_block *block)
3261 {
3262 if (block->request_queue) {
3263 blk_cleanup_queue(block->request_queue);
3264 blk_mq_free_tag_set(&block->tag_set);
3265 block->request_queue = NULL;
3266 }
3267 }
3268
dasd_open(struct block_device * bdev,fmode_t mode)3269 static int dasd_open(struct block_device *bdev, fmode_t mode)
3270 {
3271 struct dasd_device *base;
3272 int rc;
3273
3274 base = dasd_device_from_gendisk(bdev->bd_disk);
3275 if (!base)
3276 return -ENODEV;
3277
3278 atomic_inc(&base->block->open_count);
3279 if (test_bit(DASD_FLAG_OFFLINE, &base->flags)) {
3280 rc = -ENODEV;
3281 goto unlock;
3282 }
3283
3284 if (!try_module_get(base->discipline->owner)) {
3285 rc = -EINVAL;
3286 goto unlock;
3287 }
3288
3289 if (dasd_probeonly) {
3290 dev_info(&base->cdev->dev,
3291 "Accessing the DASD failed because it is in "
3292 "probeonly mode\n");
3293 rc = -EPERM;
3294 goto out;
3295 }
3296
3297 if (base->state <= DASD_STATE_BASIC) {
3298 DBF_DEV_EVENT(DBF_ERR, base, " %s",
3299 " Cannot open unrecognized device");
3300 rc = -ENODEV;
3301 goto out;
3302 }
3303
3304 if ((mode & FMODE_WRITE) &&
3305 (test_bit(DASD_FLAG_DEVICE_RO, &base->flags) ||
3306 (base->features & DASD_FEATURE_READONLY))) {
3307 rc = -EROFS;
3308 goto out;
3309 }
3310
3311 dasd_put_device(base);
3312 return 0;
3313
3314 out:
3315 module_put(base->discipline->owner);
3316 unlock:
3317 atomic_dec(&base->block->open_count);
3318 dasd_put_device(base);
3319 return rc;
3320 }
3321
dasd_release(struct gendisk * disk,fmode_t mode)3322 static void dasd_release(struct gendisk *disk, fmode_t mode)
3323 {
3324 struct dasd_device *base = dasd_device_from_gendisk(disk);
3325 if (base) {
3326 atomic_dec(&base->block->open_count);
3327 module_put(base->discipline->owner);
3328 dasd_put_device(base);
3329 }
3330 }
3331
3332 /*
3333 * Return disk geometry.
3334 */
dasd_getgeo(struct block_device * bdev,struct hd_geometry * geo)3335 static int dasd_getgeo(struct block_device *bdev, struct hd_geometry *geo)
3336 {
3337 struct dasd_device *base;
3338
3339 base = dasd_device_from_gendisk(bdev->bd_disk);
3340 if (!base)
3341 return -ENODEV;
3342
3343 if (!base->discipline ||
3344 !base->discipline->fill_geometry) {
3345 dasd_put_device(base);
3346 return -EINVAL;
3347 }
3348 base->discipline->fill_geometry(base->block, geo);
3349 geo->start = get_start_sect(bdev) >> base->block->s2b_shift;
3350 dasd_put_device(base);
3351 return 0;
3352 }
3353
3354 const struct block_device_operations
3355 dasd_device_operations = {
3356 .owner = THIS_MODULE,
3357 .open = dasd_open,
3358 .release = dasd_release,
3359 .ioctl = dasd_ioctl,
3360 .compat_ioctl = dasd_ioctl,
3361 .getgeo = dasd_getgeo,
3362 };
3363
3364 /*******************************************************************************
3365 * end of block device operations
3366 */
3367
3368 static void
dasd_exit(void)3369 dasd_exit(void)
3370 {
3371 #ifdef CONFIG_PROC_FS
3372 dasd_proc_exit();
3373 #endif
3374 dasd_eer_exit();
3375 if (dasd_page_cache != NULL) {
3376 kmem_cache_destroy(dasd_page_cache);
3377 dasd_page_cache = NULL;
3378 }
3379 dasd_gendisk_exit();
3380 dasd_devmap_exit();
3381 if (dasd_debug_area != NULL) {
3382 debug_unregister(dasd_debug_area);
3383 dasd_debug_area = NULL;
3384 }
3385 dasd_statistics_removeroot();
3386 }
3387
3388 /*
3389 * SECTION: common functions for ccw_driver use
3390 */
3391
3392 /*
3393 * Is the device read-only?
3394 * Note that this function does not report the setting of the
3395 * readonly device attribute, but how it is configured in z/VM.
3396 */
dasd_device_is_ro(struct dasd_device * device)3397 int dasd_device_is_ro(struct dasd_device *device)
3398 {
3399 struct ccw_dev_id dev_id;
3400 struct diag210 diag_data;
3401 int rc;
3402
3403 if (!MACHINE_IS_VM)
3404 return 0;
3405 ccw_device_get_id(device->cdev, &dev_id);
3406 memset(&diag_data, 0, sizeof(diag_data));
3407 diag_data.vrdcdvno = dev_id.devno;
3408 diag_data.vrdclen = sizeof(diag_data);
3409 rc = diag210(&diag_data);
3410 if (rc == 0 || rc == 2) {
3411 return diag_data.vrdcvfla & 0x80;
3412 } else {
3413 DBF_EVENT(DBF_WARNING, "diag210 failed for dev=%04x with rc=%d",
3414 dev_id.devno, rc);
3415 return 0;
3416 }
3417 }
3418 EXPORT_SYMBOL_GPL(dasd_device_is_ro);
3419
dasd_generic_auto_online(void * data,async_cookie_t cookie)3420 static void dasd_generic_auto_online(void *data, async_cookie_t cookie)
3421 {
3422 struct ccw_device *cdev = data;
3423 int ret;
3424
3425 ret = ccw_device_set_online(cdev);
3426 if (ret)
3427 pr_warn("%s: Setting the DASD online failed with rc=%d\n",
3428 dev_name(&cdev->dev), ret);
3429 }
3430
3431 /*
3432 * Initial attempt at a probe function. this can be simplified once
3433 * the other detection code is gone.
3434 */
dasd_generic_probe(struct ccw_device * cdev,struct dasd_discipline * discipline)3435 int dasd_generic_probe(struct ccw_device *cdev,
3436 struct dasd_discipline *discipline)
3437 {
3438 int ret;
3439
3440 ret = dasd_add_sysfs_files(cdev);
3441 if (ret) {
3442 DBF_EVENT_DEVID(DBF_WARNING, cdev, "%s",
3443 "dasd_generic_probe: could not add "
3444 "sysfs entries");
3445 return ret;
3446 }
3447 cdev->handler = &dasd_int_handler;
3448
3449 /*
3450 * Automatically online either all dasd devices (dasd_autodetect)
3451 * or all devices specified with dasd= parameters during
3452 * initial probe.
3453 */
3454 if ((dasd_get_feature(cdev, DASD_FEATURE_INITIAL_ONLINE) > 0 ) ||
3455 (dasd_autodetect && dasd_busid_known(dev_name(&cdev->dev)) != 0))
3456 async_schedule(dasd_generic_auto_online, cdev);
3457 return 0;
3458 }
3459 EXPORT_SYMBOL_GPL(dasd_generic_probe);
3460
dasd_generic_free_discipline(struct dasd_device * device)3461 void dasd_generic_free_discipline(struct dasd_device *device)
3462 {
3463 /* Forget the discipline information. */
3464 if (device->discipline) {
3465 if (device->discipline->uncheck_device)
3466 device->discipline->uncheck_device(device);
3467 module_put(device->discipline->owner);
3468 device->discipline = NULL;
3469 }
3470 if (device->base_discipline) {
3471 module_put(device->base_discipline->owner);
3472 device->base_discipline = NULL;
3473 }
3474 }
3475 EXPORT_SYMBOL_GPL(dasd_generic_free_discipline);
3476
3477 /*
3478 * This will one day be called from a global not_oper handler.
3479 * It is also used by driver_unregister during module unload.
3480 */
dasd_generic_remove(struct ccw_device * cdev)3481 void dasd_generic_remove(struct ccw_device *cdev)
3482 {
3483 struct dasd_device *device;
3484 struct dasd_block *block;
3485
3486 cdev->handler = NULL;
3487
3488 device = dasd_device_from_cdev(cdev);
3489 if (IS_ERR(device)) {
3490 dasd_remove_sysfs_files(cdev);
3491 return;
3492 }
3493 if (test_and_set_bit(DASD_FLAG_OFFLINE, &device->flags) &&
3494 !test_bit(DASD_FLAG_SAFE_OFFLINE_RUNNING, &device->flags)) {
3495 /* Already doing offline processing */
3496 dasd_put_device(device);
3497 dasd_remove_sysfs_files(cdev);
3498 return;
3499 }
3500 /*
3501 * This device is removed unconditionally. Set offline
3502 * flag to prevent dasd_open from opening it while it is
3503 * no quite down yet.
3504 */
3505 dasd_set_target_state(device, DASD_STATE_NEW);
3506 /* dasd_delete_device destroys the device reference. */
3507 block = device->block;
3508 dasd_delete_device(device);
3509 /*
3510 * life cycle of block is bound to device, so delete it after
3511 * device was safely removed
3512 */
3513 if (block)
3514 dasd_free_block(block);
3515
3516 dasd_remove_sysfs_files(cdev);
3517 }
3518 EXPORT_SYMBOL_GPL(dasd_generic_remove);
3519
3520 /*
3521 * Activate a device. This is called from dasd_{eckd,fba}_probe() when either
3522 * the device is detected for the first time and is supposed to be used
3523 * or the user has started activation through sysfs.
3524 */
dasd_generic_set_online(struct ccw_device * cdev,struct dasd_discipline * base_discipline)3525 int dasd_generic_set_online(struct ccw_device *cdev,
3526 struct dasd_discipline *base_discipline)
3527 {
3528 struct dasd_discipline *discipline;
3529 struct dasd_device *device;
3530 int rc;
3531
3532 /* first online clears initial online feature flag */
3533 dasd_set_feature(cdev, DASD_FEATURE_INITIAL_ONLINE, 0);
3534 device = dasd_create_device(cdev);
3535 if (IS_ERR(device))
3536 return PTR_ERR(device);
3537
3538 discipline = base_discipline;
3539 if (device->features & DASD_FEATURE_USEDIAG) {
3540 if (!dasd_diag_discipline_pointer) {
3541 /* Try to load the required module. */
3542 rc = request_module(DASD_DIAG_MOD);
3543 if (rc) {
3544 pr_warn("%s Setting the DASD online failed "
3545 "because the required module %s "
3546 "could not be loaded (rc=%d)\n",
3547 dev_name(&cdev->dev), DASD_DIAG_MOD,
3548 rc);
3549 dasd_delete_device(device);
3550 return -ENODEV;
3551 }
3552 }
3553 /* Module init could have failed, so check again here after
3554 * request_module(). */
3555 if (!dasd_diag_discipline_pointer) {
3556 pr_warn("%s Setting the DASD online failed because of missing DIAG discipline\n",
3557 dev_name(&cdev->dev));
3558 dasd_delete_device(device);
3559 return -ENODEV;
3560 }
3561 discipline = dasd_diag_discipline_pointer;
3562 }
3563 if (!try_module_get(base_discipline->owner)) {
3564 dasd_delete_device(device);
3565 return -EINVAL;
3566 }
3567 if (!try_module_get(discipline->owner)) {
3568 module_put(base_discipline->owner);
3569 dasd_delete_device(device);
3570 return -EINVAL;
3571 }
3572 device->base_discipline = base_discipline;
3573 device->discipline = discipline;
3574
3575 /* check_device will allocate block device if necessary */
3576 rc = discipline->check_device(device);
3577 if (rc) {
3578 pr_warn("%s Setting the DASD online with discipline %s failed with rc=%i\n",
3579 dev_name(&cdev->dev), discipline->name, rc);
3580 module_put(discipline->owner);
3581 module_put(base_discipline->owner);
3582 dasd_delete_device(device);
3583 return rc;
3584 }
3585
3586 dasd_set_target_state(device, DASD_STATE_ONLINE);
3587 if (device->state <= DASD_STATE_KNOWN) {
3588 pr_warn("%s Setting the DASD online failed because of a missing discipline\n",
3589 dev_name(&cdev->dev));
3590 rc = -ENODEV;
3591 dasd_set_target_state(device, DASD_STATE_NEW);
3592 if (device->block)
3593 dasd_free_block(device->block);
3594 dasd_delete_device(device);
3595 } else
3596 pr_debug("dasd_generic device %s found\n",
3597 dev_name(&cdev->dev));
3598
3599 wait_event(dasd_init_waitq, _wait_for_device(device));
3600
3601 dasd_put_device(device);
3602 return rc;
3603 }
3604 EXPORT_SYMBOL_GPL(dasd_generic_set_online);
3605
dasd_generic_set_offline(struct ccw_device * cdev)3606 int dasd_generic_set_offline(struct ccw_device *cdev)
3607 {
3608 struct dasd_device *device;
3609 struct dasd_block *block;
3610 int max_count, open_count, rc;
3611 unsigned long flags;
3612
3613 rc = 0;
3614 spin_lock_irqsave(get_ccwdev_lock(cdev), flags);
3615 device = dasd_device_from_cdev_locked(cdev);
3616 if (IS_ERR(device)) {
3617 spin_unlock_irqrestore(get_ccwdev_lock(cdev), flags);
3618 return PTR_ERR(device);
3619 }
3620
3621 /*
3622 * We must make sure that this device is currently not in use.
3623 * The open_count is increased for every opener, that includes
3624 * the blkdev_get in dasd_scan_partitions. We are only interested
3625 * in the other openers.
3626 */
3627 if (device->block) {
3628 max_count = device->block->bdev ? 0 : -1;
3629 open_count = atomic_read(&device->block->open_count);
3630 if (open_count > max_count) {
3631 if (open_count > 0)
3632 pr_warn("%s: The DASD cannot be set offline with open count %i\n",
3633 dev_name(&cdev->dev), open_count);
3634 else
3635 pr_warn("%s: The DASD cannot be set offline while it is in use\n",
3636 dev_name(&cdev->dev));
3637 rc = -EBUSY;
3638 goto out_err;
3639 }
3640 }
3641
3642 /*
3643 * Test if the offline processing is already running and exit if so.
3644 * If a safe offline is being processed this could only be a normal
3645 * offline that should be able to overtake the safe offline and
3646 * cancel any I/O we do not want to wait for any longer
3647 */
3648 if (test_bit(DASD_FLAG_OFFLINE, &device->flags)) {
3649 if (test_bit(DASD_FLAG_SAFE_OFFLINE_RUNNING, &device->flags)) {
3650 clear_bit(DASD_FLAG_SAFE_OFFLINE_RUNNING,
3651 &device->flags);
3652 } else {
3653 rc = -EBUSY;
3654 goto out_err;
3655 }
3656 }
3657 set_bit(DASD_FLAG_OFFLINE, &device->flags);
3658
3659 /*
3660 * if safe_offline is called set safe_offline_running flag and
3661 * clear safe_offline so that a call to normal offline
3662 * can overrun safe_offline processing
3663 */
3664 if (test_and_clear_bit(DASD_FLAG_SAFE_OFFLINE, &device->flags) &&
3665 !test_and_set_bit(DASD_FLAG_SAFE_OFFLINE_RUNNING, &device->flags)) {
3666 /* need to unlock here to wait for outstanding I/O */
3667 spin_unlock_irqrestore(get_ccwdev_lock(cdev), flags);
3668 /*
3669 * If we want to set the device safe offline all IO operations
3670 * should be finished before continuing the offline process
3671 * so sync bdev first and then wait for our queues to become
3672 * empty
3673 */
3674 if (device->block) {
3675 rc = fsync_bdev(device->block->bdev);
3676 if (rc != 0)
3677 goto interrupted;
3678 }
3679 dasd_schedule_device_bh(device);
3680 rc = wait_event_interruptible(shutdown_waitq,
3681 _wait_for_empty_queues(device));
3682 if (rc != 0)
3683 goto interrupted;
3684
3685 /*
3686 * check if a normal offline process overtook the offline
3687 * processing in this case simply do nothing beside returning
3688 * that we got interrupted
3689 * otherwise mark safe offline as not running any longer and
3690 * continue with normal offline
3691 */
3692 spin_lock_irqsave(get_ccwdev_lock(cdev), flags);
3693 if (!test_bit(DASD_FLAG_SAFE_OFFLINE_RUNNING, &device->flags)) {
3694 rc = -ERESTARTSYS;
3695 goto out_err;
3696 }
3697 clear_bit(DASD_FLAG_SAFE_OFFLINE_RUNNING, &device->flags);
3698 }
3699 spin_unlock_irqrestore(get_ccwdev_lock(cdev), flags);
3700
3701 dasd_set_target_state(device, DASD_STATE_NEW);
3702 /* dasd_delete_device destroys the device reference. */
3703 block = device->block;
3704 dasd_delete_device(device);
3705 /*
3706 * life cycle of block is bound to device, so delete it after
3707 * device was safely removed
3708 */
3709 if (block)
3710 dasd_free_block(block);
3711
3712 return 0;
3713
3714 interrupted:
3715 /* interrupted by signal */
3716 spin_lock_irqsave(get_ccwdev_lock(cdev), flags);
3717 clear_bit(DASD_FLAG_SAFE_OFFLINE_RUNNING, &device->flags);
3718 clear_bit(DASD_FLAG_OFFLINE, &device->flags);
3719 out_err:
3720 dasd_put_device(device);
3721 spin_unlock_irqrestore(get_ccwdev_lock(cdev), flags);
3722 return rc;
3723 }
3724 EXPORT_SYMBOL_GPL(dasd_generic_set_offline);
3725
dasd_generic_last_path_gone(struct dasd_device * device)3726 int dasd_generic_last_path_gone(struct dasd_device *device)
3727 {
3728 struct dasd_ccw_req *cqr;
3729
3730 dev_warn(&device->cdev->dev, "No operational channel path is left "
3731 "for the device\n");
3732 DBF_DEV_EVENT(DBF_WARNING, device, "%s", "last path gone");
3733 /* First of all call extended error reporting. */
3734 dasd_eer_write(device, NULL, DASD_EER_NOPATH);
3735
3736 if (device->state < DASD_STATE_BASIC)
3737 return 0;
3738 /* Device is active. We want to keep it. */
3739 list_for_each_entry(cqr, &device->ccw_queue, devlist)
3740 if ((cqr->status == DASD_CQR_IN_IO) ||
3741 (cqr->status == DASD_CQR_CLEAR_PENDING)) {
3742 cqr->status = DASD_CQR_QUEUED;
3743 cqr->retries++;
3744 }
3745 dasd_device_set_stop_bits(device, DASD_STOPPED_DC_WAIT);
3746 dasd_device_clear_timer(device);
3747 dasd_schedule_device_bh(device);
3748 return 1;
3749 }
3750 EXPORT_SYMBOL_GPL(dasd_generic_last_path_gone);
3751
dasd_generic_path_operational(struct dasd_device * device)3752 int dasd_generic_path_operational(struct dasd_device *device)
3753 {
3754 dev_info(&device->cdev->dev, "A channel path to the device has become "
3755 "operational\n");
3756 DBF_DEV_EVENT(DBF_WARNING, device, "%s", "path operational");
3757 dasd_device_remove_stop_bits(device, DASD_STOPPED_DC_WAIT);
3758 if (device->stopped & DASD_UNRESUMED_PM) {
3759 dasd_device_remove_stop_bits(device, DASD_UNRESUMED_PM);
3760 dasd_restore_device(device);
3761 return 1;
3762 }
3763 dasd_schedule_device_bh(device);
3764 if (device->block) {
3765 dasd_schedule_block_bh(device->block);
3766 if (device->block->request_queue)
3767 blk_mq_run_hw_queues(device->block->request_queue,
3768 true);
3769 }
3770
3771 if (!device->stopped)
3772 wake_up(&generic_waitq);
3773
3774 return 1;
3775 }
3776 EXPORT_SYMBOL_GPL(dasd_generic_path_operational);
3777
dasd_generic_notify(struct ccw_device * cdev,int event)3778 int dasd_generic_notify(struct ccw_device *cdev, int event)
3779 {
3780 struct dasd_device *device;
3781 int ret;
3782
3783 device = dasd_device_from_cdev_locked(cdev);
3784 if (IS_ERR(device))
3785 return 0;
3786 ret = 0;
3787 switch (event) {
3788 case CIO_GONE:
3789 case CIO_BOXED:
3790 case CIO_NO_PATH:
3791 dasd_path_no_path(device);
3792 ret = dasd_generic_last_path_gone(device);
3793 break;
3794 case CIO_OPER:
3795 ret = 1;
3796 if (dasd_path_get_opm(device))
3797 ret = dasd_generic_path_operational(device);
3798 break;
3799 }
3800 dasd_put_device(device);
3801 return ret;
3802 }
3803 EXPORT_SYMBOL_GPL(dasd_generic_notify);
3804
dasd_generic_path_event(struct ccw_device * cdev,int * path_event)3805 void dasd_generic_path_event(struct ccw_device *cdev, int *path_event)
3806 {
3807 struct dasd_device *device;
3808 int chp, oldopm, hpfpm, ifccpm;
3809
3810 device = dasd_device_from_cdev_locked(cdev);
3811 if (IS_ERR(device))
3812 return;
3813
3814 oldopm = dasd_path_get_opm(device);
3815 for (chp = 0; chp < 8; chp++) {
3816 if (path_event[chp] & PE_PATH_GONE) {
3817 dasd_path_notoper(device, chp);
3818 }
3819 if (path_event[chp] & PE_PATH_AVAILABLE) {
3820 dasd_path_available(device, chp);
3821 dasd_schedule_device_bh(device);
3822 }
3823 if (path_event[chp] & PE_PATHGROUP_ESTABLISHED) {
3824 if (!dasd_path_is_operational(device, chp) &&
3825 !dasd_path_need_verify(device, chp)) {
3826 /*
3827 * we can not establish a pathgroup on an
3828 * unavailable path, so trigger a path
3829 * verification first
3830 */
3831 dasd_path_available(device, chp);
3832 dasd_schedule_device_bh(device);
3833 }
3834 DBF_DEV_EVENT(DBF_WARNING, device, "%s",
3835 "Pathgroup re-established\n");
3836 if (device->discipline->kick_validate)
3837 device->discipline->kick_validate(device);
3838 }
3839 }
3840 hpfpm = dasd_path_get_hpfpm(device);
3841 ifccpm = dasd_path_get_ifccpm(device);
3842 if (!dasd_path_get_opm(device) && hpfpm) {
3843 /*
3844 * device has no operational paths but at least one path is
3845 * disabled due to HPF errors
3846 * disable HPF at all and use the path(s) again
3847 */
3848 if (device->discipline->disable_hpf)
3849 device->discipline->disable_hpf(device);
3850 dasd_device_set_stop_bits(device, DASD_STOPPED_NOT_ACC);
3851 dasd_path_set_tbvpm(device, hpfpm);
3852 dasd_schedule_device_bh(device);
3853 dasd_schedule_requeue(device);
3854 } else if (!dasd_path_get_opm(device) && ifccpm) {
3855 /*
3856 * device has no operational paths but at least one path is
3857 * disabled due to IFCC errors
3858 * trigger path verification on paths with IFCC errors
3859 */
3860 dasd_path_set_tbvpm(device, ifccpm);
3861 dasd_schedule_device_bh(device);
3862 }
3863 if (oldopm && !dasd_path_get_opm(device) && !hpfpm && !ifccpm) {
3864 dev_warn(&device->cdev->dev,
3865 "No verified channel paths remain for the device\n");
3866 DBF_DEV_EVENT(DBF_WARNING, device,
3867 "%s", "last verified path gone");
3868 dasd_eer_write(device, NULL, DASD_EER_NOPATH);
3869 dasd_device_set_stop_bits(device,
3870 DASD_STOPPED_DC_WAIT);
3871 }
3872 dasd_put_device(device);
3873 }
3874 EXPORT_SYMBOL_GPL(dasd_generic_path_event);
3875
dasd_generic_verify_path(struct dasd_device * device,__u8 lpm)3876 int dasd_generic_verify_path(struct dasd_device *device, __u8 lpm)
3877 {
3878 if (!dasd_path_get_opm(device) && lpm) {
3879 dasd_path_set_opm(device, lpm);
3880 dasd_generic_path_operational(device);
3881 } else
3882 dasd_path_add_opm(device, lpm);
3883 return 0;
3884 }
3885 EXPORT_SYMBOL_GPL(dasd_generic_verify_path);
3886
3887 /*
3888 * clear active requests and requeue them to block layer if possible
3889 */
dasd_generic_requeue_all_requests(struct dasd_device * device)3890 static int dasd_generic_requeue_all_requests(struct dasd_device *device)
3891 {
3892 struct list_head requeue_queue;
3893 struct dasd_ccw_req *cqr, *n;
3894 struct dasd_ccw_req *refers;
3895 int rc;
3896
3897 INIT_LIST_HEAD(&requeue_queue);
3898 spin_lock_irq(get_ccwdev_lock(device->cdev));
3899 rc = 0;
3900 list_for_each_entry_safe(cqr, n, &device->ccw_queue, devlist) {
3901 /* Check status and move request to flush_queue */
3902 if (cqr->status == DASD_CQR_IN_IO) {
3903 rc = device->discipline->term_IO(cqr);
3904 if (rc) {
3905 /* unable to terminate requeust */
3906 dev_err(&device->cdev->dev,
3907 "Unable to terminate request %p "
3908 "on suspend\n", cqr);
3909 spin_unlock_irq(get_ccwdev_lock(device->cdev));
3910 dasd_put_device(device);
3911 return rc;
3912 }
3913 }
3914 list_move_tail(&cqr->devlist, &requeue_queue);
3915 }
3916 spin_unlock_irq(get_ccwdev_lock(device->cdev));
3917
3918 list_for_each_entry_safe(cqr, n, &requeue_queue, devlist) {
3919 wait_event(dasd_flush_wq,
3920 (cqr->status != DASD_CQR_CLEAR_PENDING));
3921
3922 /*
3923 * requeue requests to blocklayer will only work
3924 * for block device requests
3925 */
3926 if (_dasd_requeue_request(cqr))
3927 continue;
3928
3929 /* remove requests from device and block queue */
3930 list_del_init(&cqr->devlist);
3931 while (cqr->refers != NULL) {
3932 refers = cqr->refers;
3933 /* remove the request from the block queue */
3934 list_del(&cqr->blocklist);
3935 /* free the finished erp request */
3936 dasd_free_erp_request(cqr, cqr->memdev);
3937 cqr = refers;
3938 }
3939
3940 if (cqr->block)
3941 list_del_init(&cqr->blocklist);
3942 cqr->block->base->discipline->free_cp(
3943 cqr, (struct request *) cqr->callback_data);
3944 }
3945
3946 /*
3947 * if requests remain then they are internal request
3948 * and go back to the device queue
3949 */
3950 if (!list_empty(&requeue_queue)) {
3951 /* move freeze_queue to start of the ccw_queue */
3952 spin_lock_irq(get_ccwdev_lock(device->cdev));
3953 list_splice_tail(&requeue_queue, &device->ccw_queue);
3954 spin_unlock_irq(get_ccwdev_lock(device->cdev));
3955 }
3956 dasd_schedule_device_bh(device);
3957 return rc;
3958 }
3959
do_requeue_requests(struct work_struct * work)3960 static void do_requeue_requests(struct work_struct *work)
3961 {
3962 struct dasd_device *device = container_of(work, struct dasd_device,
3963 requeue_requests);
3964 dasd_generic_requeue_all_requests(device);
3965 dasd_device_remove_stop_bits(device, DASD_STOPPED_NOT_ACC);
3966 if (device->block)
3967 dasd_schedule_block_bh(device->block);
3968 dasd_put_device(device);
3969 }
3970
dasd_schedule_requeue(struct dasd_device * device)3971 void dasd_schedule_requeue(struct dasd_device *device)
3972 {
3973 dasd_get_device(device);
3974 /* queue call to dasd_reload_device to the kernel event daemon. */
3975 if (!schedule_work(&device->requeue_requests))
3976 dasd_put_device(device);
3977 }
3978 EXPORT_SYMBOL(dasd_schedule_requeue);
3979
dasd_generic_pm_freeze(struct ccw_device * cdev)3980 int dasd_generic_pm_freeze(struct ccw_device *cdev)
3981 {
3982 struct dasd_device *device = dasd_device_from_cdev(cdev);
3983
3984 if (IS_ERR(device))
3985 return PTR_ERR(device);
3986
3987 /* mark device as suspended */
3988 set_bit(DASD_FLAG_SUSPENDED, &device->flags);
3989
3990 if (device->discipline->freeze)
3991 device->discipline->freeze(device);
3992
3993 /* disallow new I/O */
3994 dasd_device_set_stop_bits(device, DASD_STOPPED_PM);
3995
3996 return dasd_generic_requeue_all_requests(device);
3997 }
3998 EXPORT_SYMBOL_GPL(dasd_generic_pm_freeze);
3999
dasd_generic_restore_device(struct ccw_device * cdev)4000 int dasd_generic_restore_device(struct ccw_device *cdev)
4001 {
4002 struct dasd_device *device = dasd_device_from_cdev(cdev);
4003 int rc = 0;
4004
4005 if (IS_ERR(device))
4006 return PTR_ERR(device);
4007
4008 /* allow new IO again */
4009 dasd_device_remove_stop_bits(device,
4010 (DASD_STOPPED_PM | DASD_UNRESUMED_PM));
4011
4012 dasd_schedule_device_bh(device);
4013
4014 /*
4015 * call discipline restore function
4016 * if device is stopped do nothing e.g. for disconnected devices
4017 */
4018 if (device->discipline->restore && !(device->stopped))
4019 rc = device->discipline->restore(device);
4020 if (rc || device->stopped)
4021 /*
4022 * if the resume failed for the DASD we put it in
4023 * an UNRESUMED stop state
4024 */
4025 device->stopped |= DASD_UNRESUMED_PM;
4026
4027 if (device->block) {
4028 dasd_schedule_block_bh(device->block);
4029 if (device->block->request_queue)
4030 blk_mq_run_hw_queues(device->block->request_queue,
4031 true);
4032 }
4033
4034 clear_bit(DASD_FLAG_SUSPENDED, &device->flags);
4035 dasd_put_device(device);
4036 return 0;
4037 }
4038 EXPORT_SYMBOL_GPL(dasd_generic_restore_device);
4039
dasd_generic_build_rdc(struct dasd_device * device,void * rdc_buffer,int rdc_buffer_size,int magic)4040 static struct dasd_ccw_req *dasd_generic_build_rdc(struct dasd_device *device,
4041 void *rdc_buffer,
4042 int rdc_buffer_size,
4043 int magic)
4044 {
4045 struct dasd_ccw_req *cqr;
4046 struct ccw1 *ccw;
4047 unsigned long *idaw;
4048
4049 cqr = dasd_smalloc_request(magic, 1 /* RDC */, rdc_buffer_size, device);
4050
4051 if (IS_ERR(cqr)) {
4052 /* internal error 13 - Allocating the RDC request failed*/
4053 dev_err(&device->cdev->dev,
4054 "An error occurred in the DASD device driver, "
4055 "reason=%s\n", "13");
4056 return cqr;
4057 }
4058
4059 ccw = cqr->cpaddr;
4060 ccw->cmd_code = CCW_CMD_RDC;
4061 if (idal_is_needed(rdc_buffer, rdc_buffer_size)) {
4062 idaw = (unsigned long *) (cqr->data);
4063 ccw->cda = (__u32)(addr_t) idaw;
4064 ccw->flags = CCW_FLAG_IDA;
4065 idaw = idal_create_words(idaw, rdc_buffer, rdc_buffer_size);
4066 } else {
4067 ccw->cda = (__u32)(addr_t) rdc_buffer;
4068 ccw->flags = 0;
4069 }
4070
4071 ccw->count = rdc_buffer_size;
4072 cqr->startdev = device;
4073 cqr->memdev = device;
4074 cqr->expires = 10*HZ;
4075 cqr->retries = 256;
4076 cqr->buildclk = get_tod_clock();
4077 cqr->status = DASD_CQR_FILLED;
4078 return cqr;
4079 }
4080
4081
dasd_generic_read_dev_chars(struct dasd_device * device,int magic,void * rdc_buffer,int rdc_buffer_size)4082 int dasd_generic_read_dev_chars(struct dasd_device *device, int magic,
4083 void *rdc_buffer, int rdc_buffer_size)
4084 {
4085 int ret;
4086 struct dasd_ccw_req *cqr;
4087
4088 cqr = dasd_generic_build_rdc(device, rdc_buffer, rdc_buffer_size,
4089 magic);
4090 if (IS_ERR(cqr))
4091 return PTR_ERR(cqr);
4092
4093 ret = dasd_sleep_on(cqr);
4094 dasd_sfree_request(cqr, cqr->memdev);
4095 return ret;
4096 }
4097 EXPORT_SYMBOL_GPL(dasd_generic_read_dev_chars);
4098
4099 /*
4100 * In command mode and transport mode we need to look for sense
4101 * data in different places. The sense data itself is allways
4102 * an array of 32 bytes, so we can unify the sense data access
4103 * for both modes.
4104 */
dasd_get_sense(struct irb * irb)4105 char *dasd_get_sense(struct irb *irb)
4106 {
4107 struct tsb *tsb = NULL;
4108 char *sense = NULL;
4109
4110 if (scsw_is_tm(&irb->scsw) && (irb->scsw.tm.fcxs == 0x01)) {
4111 if (irb->scsw.tm.tcw)
4112 tsb = tcw_get_tsb((struct tcw *)(unsigned long)
4113 irb->scsw.tm.tcw);
4114 if (tsb && tsb->length == 64 && tsb->flags)
4115 switch (tsb->flags & 0x07) {
4116 case 1: /* tsa_iostat */
4117 sense = tsb->tsa.iostat.sense;
4118 break;
4119 case 2: /* tsa_ddpc */
4120 sense = tsb->tsa.ddpc.sense;
4121 break;
4122 default:
4123 /* currently we don't use interrogate data */
4124 break;
4125 }
4126 } else if (irb->esw.esw0.erw.cons) {
4127 sense = irb->ecw;
4128 }
4129 return sense;
4130 }
4131 EXPORT_SYMBOL_GPL(dasd_get_sense);
4132
dasd_generic_shutdown(struct ccw_device * cdev)4133 void dasd_generic_shutdown(struct ccw_device *cdev)
4134 {
4135 struct dasd_device *device;
4136
4137 device = dasd_device_from_cdev(cdev);
4138 if (IS_ERR(device))
4139 return;
4140
4141 if (device->block)
4142 dasd_schedule_block_bh(device->block);
4143
4144 dasd_schedule_device_bh(device);
4145
4146 wait_event(shutdown_waitq, _wait_for_empty_queues(device));
4147 }
4148 EXPORT_SYMBOL_GPL(dasd_generic_shutdown);
4149
dasd_init(void)4150 static int __init dasd_init(void)
4151 {
4152 int rc;
4153
4154 init_waitqueue_head(&dasd_init_waitq);
4155 init_waitqueue_head(&dasd_flush_wq);
4156 init_waitqueue_head(&generic_waitq);
4157 init_waitqueue_head(&shutdown_waitq);
4158
4159 /* register 'common' DASD debug area, used for all DBF_XXX calls */
4160 dasd_debug_area = debug_register("dasd", 1, 1, 8 * sizeof(long));
4161 if (dasd_debug_area == NULL) {
4162 rc = -ENOMEM;
4163 goto failed;
4164 }
4165 debug_register_view(dasd_debug_area, &debug_sprintf_view);
4166 debug_set_level(dasd_debug_area, DBF_WARNING);
4167
4168 DBF_EVENT(DBF_EMERG, "%s", "debug area created");
4169
4170 dasd_diag_discipline_pointer = NULL;
4171
4172 dasd_statistics_createroot();
4173
4174 rc = dasd_devmap_init();
4175 if (rc)
4176 goto failed;
4177 rc = dasd_gendisk_init();
4178 if (rc)
4179 goto failed;
4180 rc = dasd_parse();
4181 if (rc)
4182 goto failed;
4183 rc = dasd_eer_init();
4184 if (rc)
4185 goto failed;
4186 #ifdef CONFIG_PROC_FS
4187 rc = dasd_proc_init();
4188 if (rc)
4189 goto failed;
4190 #endif
4191
4192 return 0;
4193 failed:
4194 pr_info("The DASD device driver could not be initialized\n");
4195 dasd_exit();
4196 return rc;
4197 }
4198
4199 module_init(dasd_init);
4200 module_exit(dasd_exit);
4201