blob: 8f2067bc88c0862ef7050da813b6139b88d1e3fd [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * File...........: linux/drivers/s390/block/dasd.c
3 * Author(s)......: Holger Smolinski <Holger.Smolinski@de.ibm.com>
4 * Horst Hummel <Horst.Hummel@de.ibm.com>
5 * Carsten Otte <Cotte@de.ibm.com>
6 * Martin Schwidefsky <schwidefsky@de.ibm.com>
7 * Bugreports.to..: <Linux390@de.ibm.com>
Stefan Haberlandd41dd122009-06-16 10:30:25 +02008 * Copyright IBM Corp. 1999, 2009
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 */
10
Stefan Haberlandfc19f382009-03-26 15:23:49 +010011#define KMSG_COMPONENT "dasd"
12#define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
13
Heiko Carstens32839422011-01-05 12:47:30 +010014#include <linux/kernel_stat.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/kmod.h>
16#include <linux/init.h>
17#include <linux/interrupt.h>
18#include <linux/ctype.h>
19#include <linux/major.h>
20#include <linux/slab.h>
21#include <linux/buffer_head.h>
Christoph Hellwiga885c8c2006-01-08 01:02:50 -080022#include <linux/hdreg.h>
Cornelia Huckf3445a12009-04-14 15:36:23 +020023#include <linux/async.h>
Stefan Haberland9eb25122010-02-26 22:37:46 +010024#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
26#include <asm/ccwdev.h>
27#include <asm/ebcdic.h>
28#include <asm/idals.h>
Stefan Weinhuberf3eb5382009-03-26 15:23:48 +010029#include <asm/itcw.h>
Stefan Weinhuber33b62a32010-03-08 12:26:24 +010030#include <asm/diag.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
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
Stefan Weinhuber1c1e0932010-05-12 09:32:11 +020041#define DASD_SLEEPON_START_TAG (void *) 1
42#define DASD_SLEEPON_END_TAG (void *) 2
43
Linus Torvalds1da177e2005-04-16 15:20:36 -070044/*
45 * SECTION: exported variables of dasd.c
46 */
47debug_info_t *dasd_debug_area;
48struct dasd_discipline *dasd_diag_discipline_pointer;
Heiko Carstens2b67fc42007-02-05 21:16:47 +010049void dasd_int_handler(struct ccw_device *, unsigned long, struct irb *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
51MODULE_AUTHOR("Holger Smolinski <Holger.Smolinski@de.ibm.com>");
52MODULE_DESCRIPTION("Linux on S/390 DASD device driver,"
53 " Copyright 2000 IBM Corporation");
54MODULE_SUPPORTED_DEVICE("dasd");
Linus Torvalds1da177e2005-04-16 15:20:36 -070055MODULE_LICENSE("GPL");
56
57/*
58 * SECTION: prototypes for static functions of dasd.c
59 */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +010060static int dasd_alloc_queue(struct dasd_block *);
61static void dasd_setup_queue(struct dasd_block *);
62static void dasd_free_queue(struct dasd_block *);
63static void dasd_flush_request_queue(struct dasd_block *);
64static int dasd_flush_block_queue(struct dasd_block *);
65static void dasd_device_tasklet(struct dasd_device *);
66static void dasd_block_tasklet(struct dasd_block *);
Al Viro4927b3f2006-12-06 19:18:20 +000067static void do_kick_device(struct work_struct *);
Stefan Haberlandd41dd122009-06-16 10:30:25 +020068static void do_restore_device(struct work_struct *);
Stefan Haberland501183f2010-05-17 10:00:10 +020069static void do_reload_device(struct work_struct *);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +010070static void dasd_return_cqr_cb(struct dasd_ccw_req *, void *);
Stefan Weinhuber48cae882009-02-11 10:37:31 +010071static void dasd_device_timeout(unsigned long);
72static void dasd_block_timeout(unsigned long);
Stefan Weinhubereb6e1992009-12-07 12:51:51 +010073static void __dasd_process_erp(struct dasd_device *, struct dasd_ccw_req *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
75/*
76 * SECTION: Operations on the device structure.
77 */
78static wait_queue_head_t dasd_init_waitq;
Horst Hummel8f617012006-08-30 14:33:33 +020079static wait_queue_head_t dasd_flush_wq;
Stefan Haberlandc80ee722008-05-30 10:03:31 +020080static wait_queue_head_t generic_waitq;
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
82/*
83 * Allocate memory for a new device structure.
84 */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +010085struct dasd_device *dasd_alloc_device(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070086{
87 struct dasd_device *device;
88
Stefan Weinhuber8e09f212008-01-26 14:11:23 +010089 device = kzalloc(sizeof(struct dasd_device), GFP_ATOMIC);
90 if (!device)
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 return ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
93 /* Get two pages for normal block device operations. */
94 device->ccw_mem = (void *) __get_free_pages(GFP_ATOMIC | GFP_DMA, 1);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +010095 if (!device->ccw_mem) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 kfree(device);
97 return ERR_PTR(-ENOMEM);
98 }
99 /* Get one page for error recovery. */
100 device->erp_mem = (void *) get_zeroed_page(GFP_ATOMIC | GFP_DMA);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100101 if (!device->erp_mem) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 free_pages((unsigned long) device->ccw_mem, 1);
103 kfree(device);
104 return ERR_PTR(-ENOMEM);
105 }
106
107 dasd_init_chunklist(&device->ccw_chunks, device->ccw_mem, PAGE_SIZE*2);
108 dasd_init_chunklist(&device->erp_chunks, device->erp_mem, PAGE_SIZE);
109 spin_lock_init(&device->mem_lock);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100110 atomic_set(&device->tasklet_scheduled, 0);
Horst Hummel138c0142006-06-29 14:58:12 +0200111 tasklet_init(&device->tasklet,
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100112 (void (*)(unsigned long)) dasd_device_tasklet,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 (unsigned long) device);
114 INIT_LIST_HEAD(&device->ccw_queue);
115 init_timer(&device->timer);
Stefan Weinhuber48cae882009-02-11 10:37:31 +0100116 device->timer.function = dasd_device_timeout;
117 device->timer.data = (unsigned long) device;
Al Viro4927b3f2006-12-06 19:18:20 +0000118 INIT_WORK(&device->kick_work, do_kick_device);
Stefan Haberlandd41dd122009-06-16 10:30:25 +0200119 INIT_WORK(&device->restore_device, do_restore_device);
Stefan Haberland501183f2010-05-17 10:00:10 +0200120 INIT_WORK(&device->reload_device, do_reload_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 device->state = DASD_STATE_NEW;
122 device->target = DASD_STATE_NEW;
Stefan Haberland9eb25122010-02-26 22:37:46 +0100123 mutex_init(&device->state_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
125 return device;
126}
127
128/*
129 * Free memory of a device structure.
130 */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100131void dasd_free_device(struct dasd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132{
Jesper Juhl17fd6822005-11-07 01:01:30 -0800133 kfree(device->private);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 free_page((unsigned long) device->erp_mem);
135 free_pages((unsigned long) device->ccw_mem, 1);
136 kfree(device);
137}
138
139/*
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100140 * Allocate memory for a new device structure.
141 */
142struct dasd_block *dasd_alloc_block(void)
143{
144 struct dasd_block *block;
145
146 block = kzalloc(sizeof(*block), GFP_ATOMIC);
147 if (!block)
148 return ERR_PTR(-ENOMEM);
149 /* open_count = 0 means device online but not in use */
150 atomic_set(&block->open_count, -1);
151
152 spin_lock_init(&block->request_queue_lock);
153 atomic_set(&block->tasklet_scheduled, 0);
154 tasklet_init(&block->tasklet,
155 (void (*)(unsigned long)) dasd_block_tasklet,
156 (unsigned long) block);
157 INIT_LIST_HEAD(&block->ccw_queue);
158 spin_lock_init(&block->queue_lock);
159 init_timer(&block->timer);
Stefan Weinhuber48cae882009-02-11 10:37:31 +0100160 block->timer.function = dasd_block_timeout;
161 block->timer.data = (unsigned long) block;
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100162
163 return block;
164}
165
166/*
167 * Free memory of a device structure.
168 */
169void dasd_free_block(struct dasd_block *block)
170{
171 kfree(block);
172}
173
174/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 * Make a new device known to the system.
176 */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100177static int dasd_state_new_to_known(struct dasd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178{
179 int rc;
180
181 /*
Horst Hummel138c0142006-06-29 14:58:12 +0200182 * As long as the device is not in state DASD_STATE_NEW we want to
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 * keep the reference count > 0.
184 */
185 dasd_get_device(device);
186
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100187 if (device->block) {
188 rc = dasd_alloc_queue(device->block);
189 if (rc) {
190 dasd_put_device(device);
191 return rc;
192 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 device->state = DASD_STATE_KNOWN;
195 return 0;
196}
197
198/*
199 * Let the system forget about a device.
200 */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100201static int dasd_state_known_to_new(struct dasd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202{
Stefan Weinhuber20c64462006-03-24 03:15:25 -0800203 /* Disable extended error reporting for this device. */
204 dasd_eer_disable(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 /* Forget the discipline information. */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100206 if (device->discipline) {
207 if (device->discipline->uncheck_device)
208 device->discipline->uncheck_device(device);
Peter Oberparleiteraa888612006-02-20 18:28:13 -0800209 module_put(device->discipline->owner);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100210 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 device->discipline = NULL;
Peter Oberparleiteraa888612006-02-20 18:28:13 -0800212 if (device->base_discipline)
213 module_put(device->base_discipline->owner);
214 device->base_discipline = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 device->state = DASD_STATE_NEW;
216
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100217 if (device->block)
218 dasd_free_queue(device->block);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219
220 /* Give up reference we took in dasd_state_new_to_known. */
221 dasd_put_device(device);
Horst Hummel8f617012006-08-30 14:33:33 +0200222 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223}
224
225/*
226 * Request the irq line for the device.
227 */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100228static int dasd_state_known_to_basic(struct dasd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229{
230 int rc;
231
232 /* Allocate and register gendisk structure. */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100233 if (device->block) {
234 rc = dasd_gendisk_alloc(device->block);
235 if (rc)
236 return rc;
237 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 /* register 'device' debug area, used for all DBF_DEV_XXX calls */
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100239 device->debug_area = debug_register(dev_name(&device->cdev->dev), 4, 1,
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100240 8 * sizeof(long));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 debug_register_view(device->debug_area, &debug_sprintf_view);
Horst Hummelb0035f12006-09-20 15:59:07 +0200242 debug_set_level(device->debug_area, DBF_WARNING);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 DBF_DEV_EVENT(DBF_EMERG, device, "%s", "debug area created");
244
245 device->state = DASD_STATE_BASIC;
246 return 0;
247}
248
249/*
250 * Release the irq line for the device. Terminate any running i/o.
251 */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100252static int dasd_state_basic_to_known(struct dasd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253{
Horst Hummel8f617012006-08-30 14:33:33 +0200254 int rc;
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100255 if (device->block) {
256 dasd_gendisk_free(device->block);
257 dasd_block_clear_timer(device->block);
258 }
259 rc = dasd_flush_device_queue(device);
Horst Hummel8f617012006-08-30 14:33:33 +0200260 if (rc)
261 return rc;
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100262 dasd_device_clear_timer(device);
Horst Hummel8f617012006-08-30 14:33:33 +0200263
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 DBF_DEV_EVENT(DBF_EMERG, device, "%p debug area deleted", device);
265 if (device->debug_area != NULL) {
266 debug_unregister(device->debug_area);
267 device->debug_area = NULL;
268 }
269 device->state = DASD_STATE_KNOWN;
Horst Hummel8f617012006-08-30 14:33:33 +0200270 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271}
272
273/*
274 * Do the initial analysis. The do_analysis function may return
275 * -EAGAIN in which case the device keeps the state DASD_STATE_BASIC
276 * until the discipline decides to continue the startup sequence
277 * by calling the function dasd_change_state. The eckd disciplines
278 * uses this to start a ccw that detects the format. The completion
279 * interrupt for this detection ccw uses the kernel event daemon to
280 * trigger the call to dasd_change_state. All this is done in the
281 * discipline code, see dasd_eckd.c.
Horst Hummel90f00942006-03-07 21:55:39 -0800282 * After the analysis ccw is done (do_analysis returned 0) the block
283 * device is setup.
284 * In case the analysis returns an error, the device setup is stopped
285 * (a fake disk was already added to allow formatting).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100287static int dasd_state_basic_to_ready(struct dasd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288{
289 int rc;
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100290 struct dasd_block *block;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291
292 rc = 0;
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100293 block = device->block;
Horst Hummel90f00942006-03-07 21:55:39 -0800294 /* make disk known with correct capacity */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100295 if (block) {
296 if (block->base->discipline->do_analysis != NULL)
297 rc = block->base->discipline->do_analysis(block);
298 if (rc) {
299 if (rc != -EAGAIN)
300 device->state = DASD_STATE_UNFMT;
301 return rc;
302 }
303 dasd_setup_queue(block);
304 set_capacity(block->gdp,
305 block->blocks << block->s2b_shift);
306 device->state = DASD_STATE_READY;
307 rc = dasd_scan_partitions(block);
308 if (rc)
309 device->state = DASD_STATE_BASIC;
310 } else {
311 device->state = DASD_STATE_READY;
312 }
Horst Hummel90f00942006-03-07 21:55:39 -0800313 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314}
315
316/*
317 * Remove device from block device layer. Destroy dirty buffers.
318 * Forget format information. Check if the target level is basic
319 * and if it is create fake disk for formatting.
320 */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100321static int dasd_state_ready_to_basic(struct dasd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322{
Horst Hummel8f617012006-08-30 14:33:33 +0200323 int rc;
324
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 device->state = DASD_STATE_BASIC;
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100326 if (device->block) {
327 struct dasd_block *block = device->block;
328 rc = dasd_flush_block_queue(block);
329 if (rc) {
330 device->state = DASD_STATE_READY;
331 return rc;
332 }
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100333 dasd_flush_request_queue(block);
Stefan Haberlandb695adf2010-02-26 22:37:48 +0100334 dasd_destroy_partitions(block);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100335 block->blocks = 0;
336 block->bp_block = 0;
337 block->s2b_shift = 0;
338 }
Horst Hummel8f617012006-08-30 14:33:33 +0200339 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340}
341
342/*
Horst Hummel90f00942006-03-07 21:55:39 -0800343 * Back to basic.
344 */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100345static int dasd_state_unfmt_to_basic(struct dasd_device *device)
Horst Hummel90f00942006-03-07 21:55:39 -0800346{
347 device->state = DASD_STATE_BASIC;
Horst Hummel8f617012006-08-30 14:33:33 +0200348 return 0;
Horst Hummel90f00942006-03-07 21:55:39 -0800349}
350
351/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 * Make the device online and schedule the bottom half to start
353 * the requeueing of requests from the linux request queue to the
354 * ccw queue.
355 */
Horst Hummel8f617012006-08-30 14:33:33 +0200356static int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357dasd_state_ready_to_online(struct dasd_device * device)
358{
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100359 int rc;
Stefan Weinhuber13018092009-01-09 12:14:50 +0100360 struct gendisk *disk;
361 struct disk_part_iter piter;
362 struct hd_struct *part;
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100363
364 if (device->discipline->ready_to_online) {
365 rc = device->discipline->ready_to_online(device);
366 if (rc)
367 return rc;
368 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 device->state = DASD_STATE_ONLINE;
Stefan Weinhuber13018092009-01-09 12:14:50 +0100370 if (device->block) {
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100371 dasd_schedule_block_bh(device->block);
Stefan Weinhuber13018092009-01-09 12:14:50 +0100372 disk = device->block->bdev->bd_disk;
373 disk_part_iter_init(&piter, disk, DISK_PITER_INCL_PART0);
374 while ((part = disk_part_iter_next(&piter)))
375 kobject_uevent(&part_to_dev(part)->kobj, KOBJ_CHANGE);
376 disk_part_iter_exit(&piter);
377 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 return 0;
379}
380
381/*
382 * Stop the requeueing of requests again.
383 */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100384static int dasd_state_online_to_ready(struct dasd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385{
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100386 int rc;
Stefan Weinhuber13018092009-01-09 12:14:50 +0100387 struct gendisk *disk;
388 struct disk_part_iter piter;
389 struct hd_struct *part;
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100390
391 if (device->discipline->online_to_ready) {
392 rc = device->discipline->online_to_ready(device);
393 if (rc)
394 return rc;
395 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 device->state = DASD_STATE_READY;
Stefan Weinhuber13018092009-01-09 12:14:50 +0100397 if (device->block) {
398 disk = device->block->bdev->bd_disk;
399 disk_part_iter_init(&piter, disk, DISK_PITER_INCL_PART0);
400 while ((part = disk_part_iter_next(&piter)))
401 kobject_uevent(&part_to_dev(part)->kobj, KOBJ_CHANGE);
402 disk_part_iter_exit(&piter);
403 }
Horst Hummel8f617012006-08-30 14:33:33 +0200404 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405}
406
407/*
408 * Device startup state changes.
409 */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100410static int dasd_increase_state(struct dasd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411{
412 int rc;
413
414 rc = 0;
415 if (device->state == DASD_STATE_NEW &&
416 device->target >= DASD_STATE_KNOWN)
417 rc = dasd_state_new_to_known(device);
418
419 if (!rc &&
420 device->state == DASD_STATE_KNOWN &&
421 device->target >= DASD_STATE_BASIC)
422 rc = dasd_state_known_to_basic(device);
423
424 if (!rc &&
425 device->state == DASD_STATE_BASIC &&
426 device->target >= DASD_STATE_READY)
427 rc = dasd_state_basic_to_ready(device);
428
429 if (!rc &&
Horst Hummel39ccf952006-04-27 18:40:10 -0700430 device->state == DASD_STATE_UNFMT &&
431 device->target > DASD_STATE_UNFMT)
432 rc = -EPERM;
433
434 if (!rc &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 device->state == DASD_STATE_READY &&
436 device->target >= DASD_STATE_ONLINE)
437 rc = dasd_state_ready_to_online(device);
438
439 return rc;
440}
441
442/*
443 * Device shutdown state changes.
444 */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100445static int dasd_decrease_state(struct dasd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446{
Horst Hummel8f617012006-08-30 14:33:33 +0200447 int rc;
448
449 rc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 if (device->state == DASD_STATE_ONLINE &&
451 device->target <= DASD_STATE_READY)
Horst Hummel8f617012006-08-30 14:33:33 +0200452 rc = dasd_state_online_to_ready(device);
Horst Hummel138c0142006-06-29 14:58:12 +0200453
Horst Hummel8f617012006-08-30 14:33:33 +0200454 if (!rc &&
455 device->state == DASD_STATE_READY &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 device->target <= DASD_STATE_BASIC)
Horst Hummel8f617012006-08-30 14:33:33 +0200457 rc = dasd_state_ready_to_basic(device);
Horst Hummel90f00942006-03-07 21:55:39 -0800458
Horst Hummel8f617012006-08-30 14:33:33 +0200459 if (!rc &&
460 device->state == DASD_STATE_UNFMT &&
Horst Hummel90f00942006-03-07 21:55:39 -0800461 device->target <= DASD_STATE_BASIC)
Horst Hummel8f617012006-08-30 14:33:33 +0200462 rc = dasd_state_unfmt_to_basic(device);
Horst Hummel90f00942006-03-07 21:55:39 -0800463
Horst Hummel8f617012006-08-30 14:33:33 +0200464 if (!rc &&
465 device->state == DASD_STATE_BASIC &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 device->target <= DASD_STATE_KNOWN)
Horst Hummel8f617012006-08-30 14:33:33 +0200467 rc = dasd_state_basic_to_known(device);
Horst Hummel138c0142006-06-29 14:58:12 +0200468
Horst Hummel8f617012006-08-30 14:33:33 +0200469 if (!rc &&
470 device->state == DASD_STATE_KNOWN &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 device->target <= DASD_STATE_NEW)
Horst Hummel8f617012006-08-30 14:33:33 +0200472 rc = dasd_state_known_to_new(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473
Horst Hummel8f617012006-08-30 14:33:33 +0200474 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475}
476
477/*
478 * This is the main startup/shutdown routine.
479 */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100480static void dasd_change_state(struct dasd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481{
Sebastian Ott181d9522009-06-22 12:08:21 +0200482 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483
484 if (device->state == device->target)
485 /* Already where we want to go today... */
486 return;
487 if (device->state < device->target)
488 rc = dasd_increase_state(device);
489 else
490 rc = dasd_decrease_state(device);
Sebastian Ott181d9522009-06-22 12:08:21 +0200491 if (rc == -EAGAIN)
492 return;
493 if (rc)
494 device->target = device->state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495
Stefan Haberland9eb25122010-02-26 22:37:46 +0100496 if (device->state == device->target)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 wake_up(&dasd_init_waitq);
Horst Hummel4dfd5c42007-04-27 16:01:47 +0200498
499 /* let user-space know that the device status changed */
500 kobject_uevent(&device->cdev->dev.kobj, KOBJ_CHANGE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501}
502
503/*
504 * Kick starter for devices that did not complete the startup/shutdown
505 * procedure or were sleeping because of a pending state.
506 * dasd_kick_device will schedule a call do do_kick_device to the kernel
507 * event daemon.
508 */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100509static void do_kick_device(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510{
Al Viro4927b3f2006-12-06 19:18:20 +0000511 struct dasd_device *device = container_of(work, struct dasd_device, kick_work);
Stefan Haberland9eb25122010-02-26 22:37:46 +0100512 mutex_lock(&device->state_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 dasd_change_state(device);
Stefan Haberland9eb25122010-02-26 22:37:46 +0100514 mutex_unlock(&device->state_mutex);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100515 dasd_schedule_device_bh(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 dasd_put_device(device);
517}
518
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100519void dasd_kick_device(struct dasd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520{
521 dasd_get_device(device);
522 /* queue call to dasd_kick_device to the kernel event daemon. */
523 schedule_work(&device->kick_work);
524}
525
526/*
Stefan Haberland501183f2010-05-17 10:00:10 +0200527 * dasd_reload_device will schedule a call do do_reload_device to the kernel
528 * event daemon.
529 */
530static void do_reload_device(struct work_struct *work)
531{
532 struct dasd_device *device = container_of(work, struct dasd_device,
533 reload_device);
534 device->discipline->reload(device);
535 dasd_put_device(device);
536}
537
538void dasd_reload_device(struct dasd_device *device)
539{
540 dasd_get_device(device);
541 /* queue call to dasd_reload_device to the kernel event daemon. */
542 schedule_work(&device->reload_device);
543}
544EXPORT_SYMBOL(dasd_reload_device);
545
546/*
Stefan Haberlandd41dd122009-06-16 10:30:25 +0200547 * dasd_restore_device will schedule a call do do_restore_device to the kernel
548 * event daemon.
549 */
550static void do_restore_device(struct work_struct *work)
551{
552 struct dasd_device *device = container_of(work, struct dasd_device,
553 restore_device);
554 device->cdev->drv->restore(device->cdev);
555 dasd_put_device(device);
556}
557
558void dasd_restore_device(struct dasd_device *device)
559{
560 dasd_get_device(device);
561 /* queue call to dasd_restore_device to the kernel event daemon. */
562 schedule_work(&device->restore_device);
563}
564
565/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 * Set the target state for a device and starts the state change.
567 */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100568void dasd_set_target_state(struct dasd_device *device, int target)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569{
Cornelia Huckf3445a12009-04-14 15:36:23 +0200570 dasd_get_device(device);
Stefan Haberland9eb25122010-02-26 22:37:46 +0100571 mutex_lock(&device->state_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 /* If we are in probeonly mode stop at DASD_STATE_READY. */
573 if (dasd_probeonly && target > DASD_STATE_READY)
574 target = DASD_STATE_READY;
575 if (device->target != target) {
Stefan Haberland9eb25122010-02-26 22:37:46 +0100576 if (device->state == target)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 wake_up(&dasd_init_waitq);
578 device->target = target;
579 }
580 if (device->state != device->target)
581 dasd_change_state(device);
Stefan Haberland9eb25122010-02-26 22:37:46 +0100582 mutex_unlock(&device->state_mutex);
583 dasd_put_device(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584}
585
586/*
587 * Enable devices with device numbers in [from..to].
588 */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100589static inline int _wait_for_device(struct dasd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590{
591 return (device->state == device->target);
592}
593
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100594void dasd_enable_device(struct dasd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595{
596 dasd_set_target_state(device, DASD_STATE_ONLINE);
597 if (device->state <= DASD_STATE_KNOWN)
598 /* No discipline for device found. */
599 dasd_set_target_state(device, DASD_STATE_NEW);
600 /* Now wait for the devices to come up. */
601 wait_event(dasd_init_waitq, _wait_for_device(device));
602}
603
604/*
605 * SECTION: device operation (interrupt handler, start i/o, term i/o ...)
606 */
607#ifdef CONFIG_DASD_PROFILE
608
609struct dasd_profile_info_t dasd_global_profile;
610unsigned int dasd_profile_level = DASD_PROFILE_OFF;
611
612/*
613 * Increments counter in global and local profiling structures.
614 */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100615#define dasd_profile_counter(value, counter, block) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616{ \
617 int index; \
618 for (index = 0; index < 31 && value >> (2+index); index++); \
619 dasd_global_profile.counter[index]++; \
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100620 block->profile.counter[index]++; \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621}
622
623/*
624 * Add profiling information for cqr before execution.
625 */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100626static void dasd_profile_start(struct dasd_block *block,
627 struct dasd_ccw_req *cqr,
628 struct request *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629{
630 struct list_head *l;
631 unsigned int counter;
632
633 if (dasd_profile_level != DASD_PROFILE_ON)
634 return;
635
636 /* count the length of the chanq for statistics */
637 counter = 0;
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100638 list_for_each(l, &block->ccw_queue)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 if (++counter >= 31)
640 break;
641 dasd_global_profile.dasd_io_nr_req[counter]++;
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100642 block->profile.dasd_io_nr_req[counter]++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643}
644
645/*
646 * Add profiling information for cqr after execution.
647 */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100648static void dasd_profile_end(struct dasd_block *block,
649 struct dasd_ccw_req *cqr,
650 struct request *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651{
652 long strtime, irqtime, endtime, tottime; /* in microseconds */
653 long tottimeps, sectors;
654
655 if (dasd_profile_level != DASD_PROFILE_ON)
656 return;
657
Tejun Heo83096eb2009-05-07 22:24:39 +0900658 sectors = blk_rq_sectors(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 if (!cqr->buildclk || !cqr->startclk ||
660 !cqr->stopclk || !cqr->endclk ||
661 !sectors)
662 return;
663
664 strtime = ((cqr->startclk - cqr->buildclk) >> 12);
665 irqtime = ((cqr->stopclk - cqr->startclk) >> 12);
666 endtime = ((cqr->endclk - cqr->stopclk) >> 12);
667 tottime = ((cqr->endclk - cqr->buildclk) >> 12);
668 tottimeps = tottime / sectors;
669
670 if (!dasd_global_profile.dasd_io_reqs)
671 memset(&dasd_global_profile, 0,
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100672 sizeof(struct dasd_profile_info_t));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 dasd_global_profile.dasd_io_reqs++;
674 dasd_global_profile.dasd_io_sects += sectors;
675
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100676 if (!block->profile.dasd_io_reqs)
677 memset(&block->profile, 0,
678 sizeof(struct dasd_profile_info_t));
679 block->profile.dasd_io_reqs++;
680 block->profile.dasd_io_sects += sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100682 dasd_profile_counter(sectors, dasd_io_secs, block);
683 dasd_profile_counter(tottime, dasd_io_times, block);
684 dasd_profile_counter(tottimeps, dasd_io_timps, block);
685 dasd_profile_counter(strtime, dasd_io_time1, block);
686 dasd_profile_counter(irqtime, dasd_io_time2, block);
687 dasd_profile_counter(irqtime / sectors, dasd_io_time2ps, block);
688 dasd_profile_counter(endtime, dasd_io_time3, block);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689}
690#else
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100691#define dasd_profile_start(block, cqr, req) do {} while (0)
692#define dasd_profile_end(block, cqr, req) do {} while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693#endif /* CONFIG_DASD_PROFILE */
694
695/*
696 * Allocate memory for a channel program with 'cplength' channel
697 * command words and 'datasize' additional space. There are two
698 * variantes: 1) dasd_kmalloc_request uses kmalloc to get the needed
699 * memory and 2) dasd_smalloc_request uses the static ccw memory
700 * that gets allocated for each device.
701 */
Stefan Haberland68b781f2009-09-11 10:28:29 +0200702struct dasd_ccw_req *dasd_kmalloc_request(int magic, int cplength,
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100703 int datasize,
704 struct dasd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705{
706 struct dasd_ccw_req *cqr;
707
708 /* Sanity checks */
Stefan Haberland68b781f2009-09-11 10:28:29 +0200709 BUG_ON(datasize > PAGE_SIZE ||
Eric Sesterhenn7ac1e872006-03-24 18:48:13 +0100710 (cplength*sizeof(struct ccw1)) > PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711
Eric Sesterhenn88abaab2006-03-24 03:15:31 -0800712 cqr = kzalloc(sizeof(struct dasd_ccw_req), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 if (cqr == NULL)
714 return ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 cqr->cpaddr = NULL;
716 if (cplength > 0) {
Eric Sesterhenn88abaab2006-03-24 03:15:31 -0800717 cqr->cpaddr = kcalloc(cplength, sizeof(struct ccw1),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 GFP_ATOMIC | GFP_DMA);
719 if (cqr->cpaddr == NULL) {
720 kfree(cqr);
721 return ERR_PTR(-ENOMEM);
722 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 }
724 cqr->data = NULL;
725 if (datasize > 0) {
Eric Sesterhenn88abaab2006-03-24 03:15:31 -0800726 cqr->data = kzalloc(datasize, GFP_ATOMIC | GFP_DMA);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 if (cqr->data == NULL) {
Jesper Juhl17fd6822005-11-07 01:01:30 -0800728 kfree(cqr->cpaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 kfree(cqr);
730 return ERR_PTR(-ENOMEM);
731 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 }
Stefan Haberland68b781f2009-09-11 10:28:29 +0200733 cqr->magic = magic;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 set_bit(DASD_CQR_FLAGS_USE_ERP, &cqr->flags);
735 dasd_get_device(device);
736 return cqr;
737}
738
Stefan Haberland68b781f2009-09-11 10:28:29 +0200739struct dasd_ccw_req *dasd_smalloc_request(int magic, int cplength,
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100740 int datasize,
741 struct dasd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742{
743 unsigned long flags;
744 struct dasd_ccw_req *cqr;
745 char *data;
746 int size;
747
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 size = (sizeof(struct dasd_ccw_req) + 7L) & -8L;
749 if (cplength > 0)
750 size += cplength * sizeof(struct ccw1);
751 if (datasize > 0)
752 size += datasize;
753 spin_lock_irqsave(&device->mem_lock, flags);
754 cqr = (struct dasd_ccw_req *)
755 dasd_alloc_chunk(&device->ccw_chunks, size);
756 spin_unlock_irqrestore(&device->mem_lock, flags);
757 if (cqr == NULL)
758 return ERR_PTR(-ENOMEM);
759 memset(cqr, 0, sizeof(struct dasd_ccw_req));
760 data = (char *) cqr + ((sizeof(struct dasd_ccw_req) + 7L) & -8L);
761 cqr->cpaddr = NULL;
762 if (cplength > 0) {
763 cqr->cpaddr = (struct ccw1 *) data;
764 data += cplength*sizeof(struct ccw1);
765 memset(cqr->cpaddr, 0, cplength*sizeof(struct ccw1));
766 }
767 cqr->data = NULL;
768 if (datasize > 0) {
769 cqr->data = data;
770 memset(cqr->data, 0, datasize);
771 }
Stefan Haberland68b781f2009-09-11 10:28:29 +0200772 cqr->magic = magic;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 set_bit(DASD_CQR_FLAGS_USE_ERP, &cqr->flags);
774 dasd_get_device(device);
775 return cqr;
776}
777
778/*
779 * Free memory of a channel program. This function needs to free all the
780 * idal lists that might have been created by dasd_set_cda and the
781 * struct dasd_ccw_req itself.
782 */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100783void dasd_kfree_request(struct dasd_ccw_req *cqr, struct dasd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784{
Martin Schwidefsky347a8dc2006-01-06 00:19:28 -0800785#ifdef CONFIG_64BIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 struct ccw1 *ccw;
787
788 /* Clear any idals used for the request. */
789 ccw = cqr->cpaddr;
790 do {
791 clear_normalized_cda(ccw);
792 } while (ccw++->flags & (CCW_FLAG_CC | CCW_FLAG_DC));
793#endif
Jesper Juhl17fd6822005-11-07 01:01:30 -0800794 kfree(cqr->cpaddr);
795 kfree(cqr->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 kfree(cqr);
797 dasd_put_device(device);
798}
799
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100800void dasd_sfree_request(struct dasd_ccw_req *cqr, struct dasd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801{
802 unsigned long flags;
803
804 spin_lock_irqsave(&device->mem_lock, flags);
805 dasd_free_chunk(&device->ccw_chunks, cqr);
806 spin_unlock_irqrestore(&device->mem_lock, flags);
807 dasd_put_device(device);
808}
809
810/*
811 * Check discipline magic in cqr.
812 */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100813static inline int dasd_check_cqr(struct dasd_ccw_req *cqr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814{
815 struct dasd_device *device;
816
817 if (cqr == NULL)
818 return -EINVAL;
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100819 device = cqr->startdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 if (strncmp((char *) &cqr->magic, device->discipline->ebcname, 4)) {
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100821 DBF_DEV_EVENT(DBF_WARNING, device,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 " dasd_ccw_req 0x%08x magic doesn't match"
823 " discipline 0x%08x",
824 cqr->magic,
825 *(unsigned int *) device->discipline->name);
826 return -EINVAL;
827 }
828 return 0;
829}
830
831/*
832 * Terminate the current i/o and set the request to clear_pending.
833 * Timer keeps device runnig.
834 * ccw_device_clear can fail if the i/o subsystem
835 * is in a bad mood.
836 */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100837int dasd_term_IO(struct dasd_ccw_req *cqr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838{
839 struct dasd_device *device;
840 int retries, rc;
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100841 char errorstring[ERRORLENGTH];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842
843 /* Check the cqr */
844 rc = dasd_check_cqr(cqr);
845 if (rc)
846 return rc;
847 retries = 0;
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100848 device = (struct dasd_device *) cqr->startdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 while ((retries < 5) && (cqr->status == DASD_CQR_IN_IO)) {
850 rc = ccw_device_clear(device->cdev, (long) cqr);
851 switch (rc) {
852 case 0: /* termination successful */
Horst Hummelc2ba4442006-02-01 03:06:37 -0800853 cqr->retries--;
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100854 cqr->status = DASD_CQR_CLEAR_PENDING;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 cqr->stopclk = get_clock();
Horst Hummel8f617012006-08-30 14:33:33 +0200856 cqr->starttime = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 DBF_DEV_EVENT(DBF_DEBUG, device,
858 "terminate cqr %p successful",
859 cqr);
860 break;
861 case -ENODEV:
862 DBF_DEV_EVENT(DBF_ERR, device, "%s",
863 "device gone, retry");
864 break;
865 case -EIO:
866 DBF_DEV_EVENT(DBF_ERR, device, "%s",
867 "I/O error, retry");
868 break;
869 case -EINVAL:
870 case -EBUSY:
871 DBF_DEV_EVENT(DBF_ERR, device, "%s",
872 "device busy, retry later");
873 break;
874 default:
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100875 /* internal error 10 - unknown rc*/
876 snprintf(errorstring, ERRORLENGTH, "10 %d", rc);
877 dev_err(&device->cdev->dev, "An error occurred in the "
878 "DASD device driver, reason=%s\n", errorstring);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 BUG();
880 break;
881 }
882 retries++;
883 }
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100884 dasd_schedule_device_bh(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 return rc;
886}
887
888/*
889 * Start the i/o. This start_IO can fail if the channel is really busy.
890 * In that case set up a timer to start the request later.
891 */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100892int dasd_start_IO(struct dasd_ccw_req *cqr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893{
894 struct dasd_device *device;
895 int rc;
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100896 char errorstring[ERRORLENGTH];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897
898 /* Check the cqr */
899 rc = dasd_check_cqr(cqr);
Stefan Weinhuber6cc7f162009-06-12 10:26:39 +0200900 if (rc) {
901 cqr->intrc = rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 return rc;
Stefan Weinhuber6cc7f162009-06-12 10:26:39 +0200903 }
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100904 device = (struct dasd_device *) cqr->startdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 if (cqr->retries < 0) {
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100906 /* internal error 14 - start_IO run out of retries */
907 sprintf(errorstring, "14 %p", cqr);
908 dev_err(&device->cdev->dev, "An error occurred in the DASD "
909 "device driver, reason=%s\n", errorstring);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100910 cqr->status = DASD_CQR_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 return -EIO;
912 }
913 cqr->startclk = get_clock();
914 cqr->starttime = jiffies;
915 cqr->retries--;
Stefan Weinhubera4d26c62011-01-05 12:48:03 +0100916 if (!test_bit(DASD_CQR_VERIFY_PATH, &cqr->flags)) {
917 cqr->lpm &= device->path_data.opm;
918 if (!cqr->lpm)
919 cqr->lpm = device->path_data.opm;
920 }
Stefan Weinhuberf3eb5382009-03-26 15:23:48 +0100921 if (cqr->cpmode == 1) {
922 rc = ccw_device_tm_start(device->cdev, cqr->cpaddr,
923 (long) cqr, cqr->lpm);
924 } else {
925 rc = ccw_device_start(device->cdev, cqr->cpaddr,
926 (long) cqr, cqr->lpm, 0);
927 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 switch (rc) {
929 case 0:
930 cqr->status = DASD_CQR_IN_IO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 break;
932 case -EBUSY:
Stefan Weinhubera4d26c62011-01-05 12:48:03 +0100933 DBF_DEV_EVENT(DBF_WARNING, device, "%s",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 "start_IO: device busy, retry later");
935 break;
936 case -ETIMEDOUT:
Stefan Weinhubera4d26c62011-01-05 12:48:03 +0100937 DBF_DEV_EVENT(DBF_WARNING, device, "%s",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 "start_IO: request timeout, retry later");
939 break;
940 case -EACCES:
Stefan Weinhubera4d26c62011-01-05 12:48:03 +0100941 /* -EACCES indicates that the request used only a subset of the
942 * available paths and all these paths are gone. If the lpm of
943 * this request was only a subset of the opm (e.g. the ppm) then
944 * we just do a retry with all available paths.
945 * If we already use the full opm, something is amiss, and we
946 * need a full path verification.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947 */
Stefan Weinhubera4d26c62011-01-05 12:48:03 +0100948 if (test_bit(DASD_CQR_VERIFY_PATH, &cqr->flags)) {
949 DBF_DEV_EVENT(DBF_WARNING, device,
950 "start_IO: selected paths gone (%x)",
951 cqr->lpm);
952 } else if (cqr->lpm != device->path_data.opm) {
953 cqr->lpm = device->path_data.opm;
954 DBF_DEV_EVENT(DBF_DEBUG, device, "%s",
955 "start_IO: selected paths gone,"
956 " retry on all paths");
957 } else {
958 DBF_DEV_EVENT(DBF_WARNING, device, "%s",
959 "start_IO: all paths in opm gone,"
960 " do path verification");
961 dasd_generic_last_path_gone(device);
962 device->path_data.opm = 0;
963 device->path_data.ppm = 0;
964 device->path_data.npm = 0;
965 device->path_data.tbvpm =
966 ccw_device_get_path_mask(device->cdev);
967 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 break;
969 case -ENODEV:
Stefan Weinhubera4d26c62011-01-05 12:48:03 +0100970 DBF_DEV_EVENT(DBF_WARNING, device, "%s",
Stefan Weinhuberf3eb5382009-03-26 15:23:48 +0100971 "start_IO: -ENODEV device gone, retry");
972 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 case -EIO:
Stefan Weinhubera4d26c62011-01-05 12:48:03 +0100974 DBF_DEV_EVENT(DBF_WARNING, device, "%s",
Stefan Weinhuberf3eb5382009-03-26 15:23:48 +0100975 "start_IO: -EIO device gone, retry");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 break;
Stefan Haberlandd41dd122009-06-16 10:30:25 +0200977 case -EINVAL:
978 /* most likely caused in power management context */
Stefan Weinhubera4d26c62011-01-05 12:48:03 +0100979 DBF_DEV_EVENT(DBF_WARNING, device, "%s",
Stefan Haberlandd41dd122009-06-16 10:30:25 +0200980 "start_IO: -EINVAL device currently "
981 "not accessible");
982 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 default:
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100984 /* internal error 11 - unknown rc */
985 snprintf(errorstring, ERRORLENGTH, "11 %d", rc);
986 dev_err(&device->cdev->dev,
987 "An error occurred in the DASD device driver, "
988 "reason=%s\n", errorstring);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 BUG();
990 break;
991 }
Stefan Weinhuber6cc7f162009-06-12 10:26:39 +0200992 cqr->intrc = rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 return rc;
994}
995
996/*
997 * Timeout function for dasd devices. This is used for different purposes
998 * 1) missing interrupt handler for normal operation
999 * 2) delayed start of request where start_IO failed with -EBUSY
1000 * 3) timeout for missing state change interrupts
1001 * The head of the ccw queue will have status DASD_CQR_IN_IO for 1),
1002 * DASD_CQR_QUEUED for 2) and 3).
1003 */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001004static void dasd_device_timeout(unsigned long ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005{
1006 unsigned long flags;
1007 struct dasd_device *device;
1008
1009 device = (struct dasd_device *) ptr;
1010 spin_lock_irqsave(get_ccwdev_lock(device->cdev), flags);
1011 /* re-activate request queue */
Stefan Weinhubereb6e1992009-12-07 12:51:51 +01001012 dasd_device_remove_stop_bits(device, DASD_STOPPED_PENDING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 spin_unlock_irqrestore(get_ccwdev_lock(device->cdev), flags);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001014 dasd_schedule_device_bh(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015}
1016
1017/*
1018 * Setup timeout for a device in jiffies.
1019 */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001020void dasd_device_set_timer(struct dasd_device *device, int expires)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021{
Stefan Weinhuber48cae882009-02-11 10:37:31 +01001022 if (expires == 0)
1023 del_timer(&device->timer);
1024 else
1025 mod_timer(&device->timer, jiffies + expires);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026}
1027
1028/*
1029 * Clear timeout for a device.
1030 */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001031void dasd_device_clear_timer(struct dasd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032{
Stefan Weinhuber48cae882009-02-11 10:37:31 +01001033 del_timer(&device->timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034}
1035
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001036static void dasd_handle_killed_request(struct ccw_device *cdev,
1037 unsigned long intparm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038{
1039 struct dasd_ccw_req *cqr;
1040 struct dasd_device *device;
1041
Stefan Weinhuberf16f5842008-05-15 16:52:36 +02001042 if (!intparm)
1043 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 cqr = (struct dasd_ccw_req *) intparm;
1045 if (cqr->status != DASD_CQR_IN_IO) {
Stefan Haberlandb8ed5dd2009-12-07 12:51:52 +01001046 DBF_EVENT_DEVID(DBF_DEBUG, cdev,
1047 "invalid status in handle_killed_request: "
1048 "%02x", cqr->status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 return;
1050 }
1051
Stefan Haberland589c74d2010-02-26 22:37:47 +01001052 device = dasd_device_from_cdev_locked(cdev);
1053 if (IS_ERR(device)) {
1054 DBF_EVENT_DEVID(DBF_DEBUG, cdev, "%s",
1055 "unable to get device from cdev");
1056 return;
1057 }
1058
1059 if (!cqr->startdev ||
1060 device != cqr->startdev ||
1061 strncmp(cqr->startdev->discipline->ebcname,
1062 (char *) &cqr->magic, 4)) {
Stefan Haberland294001a2010-01-27 10:12:35 +01001063 DBF_EVENT_DEVID(DBF_DEBUG, cdev, "%s",
1064 "invalid device in request");
Stefan Haberland589c74d2010-02-26 22:37:47 +01001065 dasd_put_device(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066 return;
1067 }
1068
1069 /* Schedule request to be retried. */
1070 cqr->status = DASD_CQR_QUEUED;
1071
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001072 dasd_device_clear_timer(device);
1073 dasd_schedule_device_bh(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 dasd_put_device(device);
1075}
1076
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001077void dasd_generic_handle_state_change(struct dasd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078{
Stefan Weinhuber20c64462006-03-24 03:15:25 -08001079 /* First of all start sense subsystem status request. */
1080 dasd_eer_snss(device);
1081
Stefan Weinhubereb6e1992009-12-07 12:51:51 +01001082 dasd_device_remove_stop_bits(device, DASD_STOPPED_PENDING);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001083 dasd_schedule_device_bh(device);
1084 if (device->block)
1085 dasd_schedule_block_bh(device->block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086}
1087
1088/*
1089 * Interrupt handler for "normal" ssch-io based dasd devices.
1090 */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001091void dasd_int_handler(struct ccw_device *cdev, unsigned long intparm,
1092 struct irb *irb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093{
1094 struct dasd_ccw_req *cqr, *next;
1095 struct dasd_device *device;
1096 unsigned long long now;
1097 int expires;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098
Heiko Carstens32839422011-01-05 12:47:30 +01001099 kstat_cpu(smp_processor_id()).irqs[IOINT_DAS]++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 if (IS_ERR(irb)) {
1101 switch (PTR_ERR(irb)) {
1102 case -EIO:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 break;
1104 case -ETIMEDOUT:
Stefan Haberlandb8ed5dd2009-12-07 12:51:52 +01001105 DBF_EVENT_DEVID(DBF_WARNING, cdev, "%s: "
1106 "request timed out\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 break;
1108 default:
Stefan Haberlandb8ed5dd2009-12-07 12:51:52 +01001109 DBF_EVENT_DEVID(DBF_WARNING, cdev, "%s: "
1110 "unknown error %ld\n", __func__,
1111 PTR_ERR(irb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 }
Stefan Weinhuberf16f5842008-05-15 16:52:36 +02001113 dasd_handle_killed_request(cdev, intparm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114 return;
1115 }
1116
1117 now = get_clock();
1118
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001119 /* check for unsolicited interrupts */
1120 cqr = (struct dasd_ccw_req *) intparm;
Stefan Weinhuberf3eb5382009-03-26 15:23:48 +01001121 if (!cqr || ((scsw_cc(&irb->scsw) == 1) &&
1122 (scsw_fctl(&irb->scsw) & SCSW_FCTL_START_FUNC) &&
Stefan Weinhubera5a00612010-10-25 16:10:47 +02001123 ((scsw_stctl(&irb->scsw) == SCSW_STCTL_STATUS_PEND) ||
1124 (scsw_stctl(&irb->scsw) == (SCSW_STCTL_STATUS_PEND |
1125 SCSW_STCTL_ALERT_STATUS))))) {
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001126 if (cqr && cqr->status == DASD_CQR_IN_IO)
1127 cqr->status = DASD_CQR_QUEUED;
Stefan Weinhubera5a00612010-10-25 16:10:47 +02001128 if (cqr)
1129 memcpy(&cqr->irb, irb, sizeof(*irb));
Martin Schwidefskya00bfd72006-09-20 15:59:05 +02001130 device = dasd_device_from_cdev_locked(cdev);
Stefan Haberland56b86b62010-10-25 16:10:49 +02001131 if (IS_ERR(device))
1132 return;
1133 /* ignore unsolicited interrupts for DIAG discipline */
1134 if (device->discipline == dasd_diag_discipline_pointer) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135 dasd_put_device(device);
Stefan Haberland56b86b62010-10-25 16:10:49 +02001136 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 }
Stefan Haberland56b86b62010-10-25 16:10:49 +02001138 device->discipline->dump_sense_dbf(device, irb,
1139 "unsolicited");
1140 if ((device->features & DASD_FEATURE_ERPLOG))
1141 device->discipline->dump_sense(device, cqr,
1142 irb);
1143 dasd_device_clear_timer(device);
1144 device->discipline->handle_unsolicited_interrupt(device,
1145 irb);
1146 dasd_put_device(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 return;
1148 }
1149
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001150 device = (struct dasd_device *) cqr->startdev;
1151 if (!device ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 strncmp(device->discipline->ebcname, (char *) &cqr->magic, 4)) {
Stefan Haberland294001a2010-01-27 10:12:35 +01001153 DBF_EVENT_DEVID(DBF_DEBUG, cdev, "%s",
1154 "invalid device in request");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 return;
1156 }
1157
1158 /* Check for clear pending */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001159 if (cqr->status == DASD_CQR_CLEAR_PENDING &&
Stefan Weinhuberf3eb5382009-03-26 15:23:48 +01001160 scsw_fctl(&irb->scsw) & SCSW_FCTL_CLEAR_FUNC) {
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001161 cqr->status = DASD_CQR_CLEARED;
1162 dasd_device_clear_timer(device);
Horst Hummel8f617012006-08-30 14:33:33 +02001163 wake_up(&dasd_flush_wq);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001164 dasd_schedule_device_bh(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165 return;
1166 }
1167
Stefan Weinhuberf3eb5382009-03-26 15:23:48 +01001168 /* check status - the request might have been killed by dyn detach */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169 if (cqr->status != DASD_CQR_IN_IO) {
Stefan Haberlandfc19f382009-03-26 15:23:49 +01001170 DBF_DEV_EVENT(DBF_DEBUG, device, "invalid status: bus_id %s, "
1171 "status %02x", dev_name(&cdev->dev), cqr->status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 return;
1173 }
Stefan Haberlandfc19f382009-03-26 15:23:49 +01001174
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001175 next = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176 expires = 0;
Stefan Weinhuberf3eb5382009-03-26 15:23:48 +01001177 if (scsw_dstat(&irb->scsw) == (DEV_STAT_CHN_END | DEV_STAT_DEV_END) &&
1178 scsw_cstat(&irb->scsw) == 0) {
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001179 /* request was completed successfully */
1180 cqr->status = DASD_CQR_SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 cqr->stopclk = now;
1182 /* Start first request on queue if possible -> fast_io. */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001183 if (cqr->devlist.next != &device->ccw_queue) {
1184 next = list_entry(cqr->devlist.next,
1185 struct dasd_ccw_req, devlist);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 }
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001187 } else { /* error */
1188 memcpy(&cqr->irb, irb, sizeof(struct irb));
Stefan Haberlandfc19f382009-03-26 15:23:49 +01001189 /* log sense for every failed I/O to s390 debugfeature */
1190 dasd_log_sense_dbf(cqr, irb);
Horst Hummel9575bf22006-12-08 15:54:15 +01001191 if (device->features & DASD_FEATURE_ERPLOG) {
Horst Hummel9575bf22006-12-08 15:54:15 +01001192 dasd_log_sense(cqr, irb);
1193 }
Stefan Haberlandfc19f382009-03-26 15:23:49 +01001194
Stefan Haberland6c5f57c2008-02-05 16:50:46 +01001195 /*
1196 * If we don't want complex ERP for this request, then just
1197 * reset this and retry it in the fastpath
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001198 */
Stefan Haberland6c5f57c2008-02-05 16:50:46 +01001199 if (!test_bit(DASD_CQR_FLAGS_USE_ERP, &cqr->flags) &&
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001200 cqr->retries > 0) {
Stefan Weinhubera4d26c62011-01-05 12:48:03 +01001201 if (cqr->lpm == device->path_data.opm)
Stefan Haberlandfc19f382009-03-26 15:23:49 +01001202 DBF_DEV_EVENT(DBF_DEBUG, device,
1203 "default ERP in fastpath "
1204 "(%i retries left)",
1205 cqr->retries);
Stefan Weinhubera4d26c62011-01-05 12:48:03 +01001206 if (!test_bit(DASD_CQR_VERIFY_PATH, &cqr->flags))
1207 cqr->lpm = device->path_data.opm;
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001208 cqr->status = DASD_CQR_QUEUED;
1209 next = cqr;
1210 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211 cqr->status = DASD_CQR_ERROR;
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001212 }
1213 if (next && (next->status == DASD_CQR_QUEUED) &&
1214 (!device->stopped)) {
1215 if (device->discipline->start_IO(next) == 0)
1216 expires = next->expires;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217 }
1218 if (expires != 0)
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001219 dasd_device_set_timer(device, expires);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220 else
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001221 dasd_device_clear_timer(device);
1222 dasd_schedule_device_bh(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223}
1224
Stefan Haberlanda23ed002010-05-26 23:27:09 +02001225enum uc_todo dasd_generic_uc_handler(struct ccw_device *cdev, struct irb *irb)
1226{
1227 struct dasd_device *device;
1228
1229 device = dasd_device_from_cdev_locked(cdev);
1230
1231 if (IS_ERR(device))
1232 goto out;
1233 if (test_bit(DASD_FLAG_OFFLINE, &device->flags) ||
1234 device->state != device->target ||
1235 !device->discipline->handle_unsolicited_interrupt){
1236 dasd_put_device(device);
1237 goto out;
1238 }
1239
1240 dasd_device_clear_timer(device);
1241 device->discipline->handle_unsolicited_interrupt(device, irb);
1242 dasd_put_device(device);
1243out:
1244 return UC_TODO_RETRY;
1245}
1246EXPORT_SYMBOL_GPL(dasd_generic_uc_handler);
1247
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248/*
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001249 * If we have an error on a dasd_block layer request then we cancel
1250 * and return all further requests from the same dasd_block as well.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251 */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001252static void __dasd_device_recovery(struct dasd_device *device,
1253 struct dasd_ccw_req *ref_cqr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254{
1255 struct list_head *l, *n;
1256 struct dasd_ccw_req *cqr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257
1258 /*
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001259 * only requeue request that came from the dasd_block layer
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001261 if (!ref_cqr->block)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262 return;
Horst Hummelf24acd42005-05-01 08:58:59 -07001263
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001264 list_for_each_safe(l, n, &device->ccw_queue) {
1265 cqr = list_entry(l, struct dasd_ccw_req, devlist);
1266 if (cqr->status == DASD_CQR_QUEUED &&
1267 ref_cqr->block == cqr->block) {
1268 cqr->status = DASD_CQR_CLEARED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269 }
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001270 }
1271};
1272
1273/*
1274 * Remove those ccw requests from the queue that need to be returned
1275 * to the upper layer.
1276 */
1277static void __dasd_device_process_ccw_queue(struct dasd_device *device,
1278 struct list_head *final_queue)
1279{
1280 struct list_head *l, *n;
1281 struct dasd_ccw_req *cqr;
1282
1283 /* Process request with final status. */
1284 list_for_each_safe(l, n, &device->ccw_queue) {
1285 cqr = list_entry(l, struct dasd_ccw_req, devlist);
1286
1287 /* Stop list processing at the first non-final request. */
1288 if (cqr->status == DASD_CQR_QUEUED ||
1289 cqr->status == DASD_CQR_IN_IO ||
1290 cqr->status == DASD_CQR_CLEAR_PENDING)
1291 break;
1292 if (cqr->status == DASD_CQR_ERROR) {
1293 __dasd_device_recovery(device, cqr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294 }
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001295 /* Rechain finished requests to final queue */
1296 list_move_tail(&cqr->devlist, final_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297 }
1298}
1299
1300/*
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001301 * the cqrs from the final queue are returned to the upper layer
1302 * by setting a dasd_block state and calling the callback function
1303 */
1304static void __dasd_device_process_final_queue(struct dasd_device *device,
1305 struct list_head *final_queue)
1306{
1307 struct list_head *l, *n;
1308 struct dasd_ccw_req *cqr;
Stefan Weinhuber03513bc2008-02-19 15:29:27 +01001309 struct dasd_block *block;
Stefan Haberlandc80ee722008-05-30 10:03:31 +02001310 void (*callback)(struct dasd_ccw_req *, void *data);
1311 void *callback_data;
Stefan Haberlandfc19f382009-03-26 15:23:49 +01001312 char errorstring[ERRORLENGTH];
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001313
1314 list_for_each_safe(l, n, final_queue) {
1315 cqr = list_entry(l, struct dasd_ccw_req, devlist);
1316 list_del_init(&cqr->devlist);
Stefan Weinhuber03513bc2008-02-19 15:29:27 +01001317 block = cqr->block;
Stefan Haberlandc80ee722008-05-30 10:03:31 +02001318 callback = cqr->callback;
1319 callback_data = cqr->callback_data;
Stefan Weinhuber03513bc2008-02-19 15:29:27 +01001320 if (block)
1321 spin_lock_bh(&block->queue_lock);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001322 switch (cqr->status) {
1323 case DASD_CQR_SUCCESS:
1324 cqr->status = DASD_CQR_DONE;
1325 break;
1326 case DASD_CQR_ERROR:
1327 cqr->status = DASD_CQR_NEED_ERP;
1328 break;
1329 case DASD_CQR_CLEARED:
1330 cqr->status = DASD_CQR_TERMINATED;
1331 break;
1332 default:
Stefan Haberlandfc19f382009-03-26 15:23:49 +01001333 /* internal error 12 - wrong cqr status*/
1334 snprintf(errorstring, ERRORLENGTH, "12 %p %x02", cqr, cqr->status);
1335 dev_err(&device->cdev->dev,
1336 "An error occurred in the DASD device driver, "
1337 "reason=%s\n", errorstring);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001338 BUG();
1339 }
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001340 if (cqr->callback != NULL)
Stefan Haberlandc80ee722008-05-30 10:03:31 +02001341 (callback)(cqr, callback_data);
Stefan Weinhuber03513bc2008-02-19 15:29:27 +01001342 if (block)
1343 spin_unlock_bh(&block->queue_lock);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001344 }
1345}
1346
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001347/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348 * Take a look at the first request on the ccw queue and check
1349 * if it reached its expire time. If so, terminate the IO.
1350 */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001351static void __dasd_device_check_expire(struct dasd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352{
1353 struct dasd_ccw_req *cqr;
1354
1355 if (list_empty(&device->ccw_queue))
1356 return;
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001357 cqr = list_entry(device->ccw_queue.next, struct dasd_ccw_req, devlist);
Horst Hummel29145a62006-12-04 15:40:15 +01001358 if ((cqr->status == DASD_CQR_IN_IO && cqr->expires != 0) &&
1359 (time_after_eq(jiffies, cqr->expires + cqr->starttime))) {
1360 if (device->discipline->term_IO(cqr) != 0) {
1361 /* Hmpf, try again in 5 sec */
Stefan Haberlandfc19f382009-03-26 15:23:49 +01001362 dev_err(&device->cdev->dev,
Heiko Carstens625c94d2010-08-13 10:06:38 +02001363 "cqr %p timed out (%lus) but cannot be "
Stefan Haberlandfc19f382009-03-26 15:23:49 +01001364 "ended, retrying in 5 s\n",
1365 cqr, (cqr->expires/HZ));
Stefan Haberland7dc1da92008-01-26 14:11:26 +01001366 cqr->expires += 5*HZ;
1367 dasd_device_set_timer(device, 5*HZ);
Horst Hummel29145a62006-12-04 15:40:15 +01001368 } else {
Stefan Haberlandfc19f382009-03-26 15:23:49 +01001369 dev_err(&device->cdev->dev,
Heiko Carstens625c94d2010-08-13 10:06:38 +02001370 "cqr %p timed out (%lus), %i retries "
Stefan Haberlandfc19f382009-03-26 15:23:49 +01001371 "remaining\n", cqr, (cqr->expires/HZ),
1372 cqr->retries);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373 }
1374 }
1375}
1376
1377/*
1378 * Take a look at the first request on the ccw queue and check
1379 * if it needs to be started.
1380 */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001381static void __dasd_device_start_head(struct dasd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382{
1383 struct dasd_ccw_req *cqr;
1384 int rc;
1385
1386 if (list_empty(&device->ccw_queue))
1387 return;
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001388 cqr = list_entry(device->ccw_queue.next, struct dasd_ccw_req, devlist);
Peter Oberparleiter25ee4cf2006-04-10 22:53:47 -07001389 if (cqr->status != DASD_CQR_QUEUED)
1390 return;
Stefan Weinhubera4d26c62011-01-05 12:48:03 +01001391 /* when device is stopped, return request to previous layer
1392 * exception: only the disconnect or unresumed bits are set and the
1393 * cqr is a path verification request
1394 */
1395 if (device->stopped &&
1396 !(!(device->stopped & ~(DASD_STOPPED_DC_WAIT | DASD_UNRESUMED_PM))
1397 && test_bit(DASD_CQR_VERIFY_PATH, &cqr->flags))) {
1398 cqr->intrc = -EAGAIN;
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001399 cqr->status = DASD_CQR_CLEARED;
1400 dasd_schedule_device_bh(device);
Peter Oberparleiter25ee4cf2006-04-10 22:53:47 -07001401 return;
Horst Hummel1c01b8a2006-01-06 00:19:15 -08001402 }
Peter Oberparleiter25ee4cf2006-04-10 22:53:47 -07001403
1404 rc = device->discipline->start_IO(cqr);
1405 if (rc == 0)
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001406 dasd_device_set_timer(device, cqr->expires);
Peter Oberparleiter25ee4cf2006-04-10 22:53:47 -07001407 else if (rc == -EACCES) {
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001408 dasd_schedule_device_bh(device);
Peter Oberparleiter25ee4cf2006-04-10 22:53:47 -07001409 } else
1410 /* Hmpf, try again in 1/2 sec */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001411 dasd_device_set_timer(device, 50);
Horst Hummel8f617012006-08-30 14:33:33 +02001412}
1413
Stefan Weinhubera4d26c62011-01-05 12:48:03 +01001414static void __dasd_device_check_path_events(struct dasd_device *device)
1415{
1416 int rc;
1417
1418 if (device->path_data.tbvpm) {
1419 if (device->stopped & ~(DASD_STOPPED_DC_WAIT |
1420 DASD_UNRESUMED_PM))
1421 return;
1422 rc = device->discipline->verify_path(
1423 device, device->path_data.tbvpm);
1424 if (rc)
1425 dasd_device_set_timer(device, 50);
1426 else
1427 device->path_data.tbvpm = 0;
1428 }
1429};
1430
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431/*
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001432 * Go through all request on the dasd_device request queue,
1433 * terminate them on the cdev if necessary, and return them to the
1434 * submitting layer via callback.
1435 * Note:
1436 * Make sure that all 'submitting layers' still exist when
1437 * this function is called!. In other words, when 'device' is a base
1438 * device then all block layer requests must have been removed before
1439 * via dasd_flush_block_queue.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440 */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001441int dasd_flush_device_queue(struct dasd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442{
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001443 struct dasd_ccw_req *cqr, *n;
1444 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445 struct list_head flush_queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446
1447 INIT_LIST_HEAD(&flush_queue);
1448 spin_lock_irq(get_ccwdev_lock(device->cdev));
Horst Hummel8f617012006-08-30 14:33:33 +02001449 rc = 0;
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001450 list_for_each_entry_safe(cqr, n, &device->ccw_queue, devlist) {
Horst Hummel8f617012006-08-30 14:33:33 +02001451 /* Check status and move request to flush_queue */
1452 switch (cqr->status) {
1453 case DASD_CQR_IN_IO:
1454 rc = device->discipline->term_IO(cqr);
1455 if (rc) {
1456 /* unable to terminate requeust */
Stefan Haberlandfc19f382009-03-26 15:23:49 +01001457 dev_err(&device->cdev->dev,
1458 "Flushing the DASD request queue "
1459 "failed for request %p\n", cqr);
Horst Hummel8f617012006-08-30 14:33:33 +02001460 /* stop flush processing */
1461 goto finished;
1462 }
1463 break;
1464 case DASD_CQR_QUEUED:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465 cqr->stopclk = get_clock();
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001466 cqr->status = DASD_CQR_CLEARED;
Horst Hummel8f617012006-08-30 14:33:33 +02001467 break;
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001468 default: /* no need to modify the others */
Horst Hummel8f617012006-08-30 14:33:33 +02001469 break;
1470 }
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001471 list_move_tail(&cqr->devlist, &flush_queue);
Horst Hummel8f617012006-08-30 14:33:33 +02001472 }
Horst Hummel8f617012006-08-30 14:33:33 +02001473finished:
1474 spin_unlock_irq(get_ccwdev_lock(device->cdev));
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001475 /*
1476 * After this point all requests must be in state CLEAR_PENDING,
1477 * CLEARED, SUCCESS or ERROR. Now wait for CLEAR_PENDING to become
1478 * one of the others.
1479 */
1480 list_for_each_entry_safe(cqr, n, &flush_queue, devlist)
1481 wait_event(dasd_flush_wq,
1482 (cqr->status != DASD_CQR_CLEAR_PENDING));
1483 /*
1484 * Now set each request back to TERMINATED, DONE or NEED_ERP
1485 * and call the callback function of flushed requests
1486 */
1487 __dasd_device_process_final_queue(device, &flush_queue);
Horst Hummel8f617012006-08-30 14:33:33 +02001488 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489}
1490
1491/*
1492 * Acquire the device lock and process queues for the device.
1493 */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001494static void dasd_device_tasklet(struct dasd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495{
1496 struct list_head final_queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497
1498 atomic_set (&device->tasklet_scheduled, 0);
1499 INIT_LIST_HEAD(&final_queue);
1500 spin_lock_irq(get_ccwdev_lock(device->cdev));
1501 /* Check expire time of first request on the ccw queue. */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001502 __dasd_device_check_expire(device);
1503 /* find final requests on ccw queue */
1504 __dasd_device_process_ccw_queue(device, &final_queue);
Stefan Weinhubera4d26c62011-01-05 12:48:03 +01001505 __dasd_device_check_path_events(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506 spin_unlock_irq(get_ccwdev_lock(device->cdev));
1507 /* Now call the callback function of requests with final status */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001508 __dasd_device_process_final_queue(device, &final_queue);
1509 spin_lock_irq(get_ccwdev_lock(device->cdev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510 /* Now check if the head of the ccw queue needs to be started. */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001511 __dasd_device_start_head(device);
1512 spin_unlock_irq(get_ccwdev_lock(device->cdev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513 dasd_put_device(device);
1514}
1515
1516/*
1517 * Schedules a call to dasd_tasklet over the device tasklet.
1518 */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001519void dasd_schedule_device_bh(struct dasd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520{
1521 /* Protect against rescheduling. */
Martin Schwidefsky973bd992006-01-06 00:19:07 -08001522 if (atomic_cmpxchg (&device->tasklet_scheduled, 0, 1) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523 return;
1524 dasd_get_device(device);
1525 tasklet_hi_schedule(&device->tasklet);
1526}
1527
Stefan Weinhubereb6e1992009-12-07 12:51:51 +01001528void dasd_device_set_stop_bits(struct dasd_device *device, int bits)
1529{
1530 device->stopped |= bits;
1531}
1532EXPORT_SYMBOL_GPL(dasd_device_set_stop_bits);
1533
1534void dasd_device_remove_stop_bits(struct dasd_device *device, int bits)
1535{
1536 device->stopped &= ~bits;
1537 if (!device->stopped)
1538 wake_up(&generic_waitq);
1539}
1540EXPORT_SYMBOL_GPL(dasd_device_remove_stop_bits);
1541
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542/*
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001543 * Queue a request to the head of the device ccw_queue.
1544 * Start the I/O if possible.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545 */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001546void dasd_add_request_head(struct dasd_ccw_req *cqr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547{
1548 struct dasd_device *device;
1549 unsigned long flags;
1550
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001551 device = cqr->startdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552 spin_lock_irqsave(get_ccwdev_lock(device->cdev), flags);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001553 cqr->status = DASD_CQR_QUEUED;
1554 list_add(&cqr->devlist, &device->ccw_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555 /* let the bh start the request to keep them in order */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001556 dasd_schedule_device_bh(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557 spin_unlock_irqrestore(get_ccwdev_lock(device->cdev), flags);
1558}
1559
1560/*
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001561 * Queue a request to the tail of the device ccw_queue.
1562 * Start the I/O if possible.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563 */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001564void dasd_add_request_tail(struct dasd_ccw_req *cqr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565{
1566 struct dasd_device *device;
1567 unsigned long flags;
1568
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001569 device = cqr->startdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570 spin_lock_irqsave(get_ccwdev_lock(device->cdev), flags);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001571 cqr->status = DASD_CQR_QUEUED;
1572 list_add_tail(&cqr->devlist, &device->ccw_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573 /* let the bh start the request to keep them in order */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001574 dasd_schedule_device_bh(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575 spin_unlock_irqrestore(get_ccwdev_lock(device->cdev), flags);
1576}
1577
1578/*
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001579 * Wakeup helper for the 'sleep_on' functions.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580 */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001581static void dasd_wakeup_cb(struct dasd_ccw_req *cqr, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582{
Stefan Weinhuber1c1e0932010-05-12 09:32:11 +02001583 spin_lock_irq(get_ccwdev_lock(cqr->startdev->cdev));
1584 cqr->callback_data = DASD_SLEEPON_END_TAG;
1585 spin_unlock_irq(get_ccwdev_lock(cqr->startdev->cdev));
1586 wake_up(&generic_waitq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587}
1588
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001589static inline int _wait_for_wakeup(struct dasd_ccw_req *cqr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590{
1591 struct dasd_device *device;
1592 int rc;
1593
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001594 device = cqr->startdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595 spin_lock_irq(get_ccwdev_lock(device->cdev));
Stefan Weinhuber1c1e0932010-05-12 09:32:11 +02001596 rc = (cqr->callback_data == DASD_SLEEPON_END_TAG);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597 spin_unlock_irq(get_ccwdev_lock(device->cdev));
1598 return rc;
1599}
1600
1601/*
Stefan Weinhubereb6e1992009-12-07 12:51:51 +01001602 * checks if error recovery is necessary, returns 1 if yes, 0 otherwise.
1603 */
1604static int __dasd_sleep_on_erp(struct dasd_ccw_req *cqr)
1605{
1606 struct dasd_device *device;
1607 dasd_erp_fn_t erp_fn;
1608
1609 if (cqr->status == DASD_CQR_FILLED)
1610 return 0;
1611 device = cqr->startdev;
1612 if (test_bit(DASD_CQR_FLAGS_USE_ERP, &cqr->flags)) {
1613 if (cqr->status == DASD_CQR_TERMINATED) {
1614 device->discipline->handle_terminated_request(cqr);
1615 return 1;
1616 }
1617 if (cqr->status == DASD_CQR_NEED_ERP) {
1618 erp_fn = device->discipline->erp_action(cqr);
1619 erp_fn(cqr);
1620 return 1;
1621 }
1622 if (cqr->status == DASD_CQR_FAILED)
1623 dasd_log_sense(cqr, &cqr->irb);
1624 if (cqr->refers) {
1625 __dasd_process_erp(device, cqr);
1626 return 1;
1627 }
1628 }
1629 return 0;
1630}
1631
1632static int __dasd_sleep_on_loop_condition(struct dasd_ccw_req *cqr)
1633{
1634 if (test_bit(DASD_CQR_FLAGS_USE_ERP, &cqr->flags)) {
1635 if (cqr->refers) /* erp is not done yet */
1636 return 1;
1637 return ((cqr->status != DASD_CQR_DONE) &&
1638 (cqr->status != DASD_CQR_FAILED));
1639 } else
1640 return (cqr->status == DASD_CQR_FILLED);
1641}
1642
1643static int _dasd_sleep_on(struct dasd_ccw_req *maincqr, int interruptible)
1644{
1645 struct dasd_device *device;
1646 int rc;
1647 struct list_head ccw_queue;
1648 struct dasd_ccw_req *cqr;
1649
1650 INIT_LIST_HEAD(&ccw_queue);
1651 maincqr->status = DASD_CQR_FILLED;
1652 device = maincqr->startdev;
1653 list_add(&maincqr->blocklist, &ccw_queue);
1654 for (cqr = maincqr; __dasd_sleep_on_loop_condition(cqr);
1655 cqr = list_first_entry(&ccw_queue,
1656 struct dasd_ccw_req, blocklist)) {
1657
1658 if (__dasd_sleep_on_erp(cqr))
1659 continue;
1660 if (cqr->status != DASD_CQR_FILLED) /* could be failed */
1661 continue;
1662
1663 /* Non-temporary stop condition will trigger fail fast */
1664 if (device->stopped & ~DASD_STOPPED_PENDING &&
1665 test_bit(DASD_CQR_FLAGS_FAILFAST, &cqr->flags) &&
1666 (!dasd_eer_enabled(device))) {
1667 cqr->status = DASD_CQR_FAILED;
1668 continue;
1669 }
1670
1671 /* Don't try to start requests if device is stopped */
1672 if (interruptible) {
1673 rc = wait_event_interruptible(
1674 generic_waitq, !(device->stopped));
1675 if (rc == -ERESTARTSYS) {
1676 cqr->status = DASD_CQR_FAILED;
1677 maincqr->intrc = rc;
1678 continue;
1679 }
1680 } else
1681 wait_event(generic_waitq, !(device->stopped));
1682
1683 cqr->callback = dasd_wakeup_cb;
Stefan Weinhuber1c1e0932010-05-12 09:32:11 +02001684 cqr->callback_data = DASD_SLEEPON_START_TAG;
Stefan Weinhubereb6e1992009-12-07 12:51:51 +01001685 dasd_add_request_tail(cqr);
1686 if (interruptible) {
1687 rc = wait_event_interruptible(
1688 generic_waitq, _wait_for_wakeup(cqr));
1689 if (rc == -ERESTARTSYS) {
1690 dasd_cancel_req(cqr);
1691 /* wait (non-interruptible) for final status */
1692 wait_event(generic_waitq,
1693 _wait_for_wakeup(cqr));
1694 cqr->status = DASD_CQR_FAILED;
1695 maincqr->intrc = rc;
1696 continue;
1697 }
1698 } else
1699 wait_event(generic_waitq, _wait_for_wakeup(cqr));
1700 }
1701
1702 maincqr->endclk = get_clock();
1703 if ((maincqr->status != DASD_CQR_DONE) &&
1704 (maincqr->intrc != -ERESTARTSYS))
1705 dasd_log_sense(maincqr, &maincqr->irb);
1706 if (maincqr->status == DASD_CQR_DONE)
1707 rc = 0;
1708 else if (maincqr->intrc)
1709 rc = maincqr->intrc;
1710 else
1711 rc = -EIO;
1712 return rc;
1713}
1714
1715/*
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001716 * Queue a request to the tail of the device ccw_queue and wait for
1717 * it's completion.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718 */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001719int dasd_sleep_on(struct dasd_ccw_req *cqr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720{
Stefan Weinhubereb6e1992009-12-07 12:51:51 +01001721 return _dasd_sleep_on(cqr, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722}
1723
1724/*
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001725 * Queue a request to the tail of the device ccw_queue and wait
1726 * interruptible for it's completion.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727 */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001728int dasd_sleep_on_interruptible(struct dasd_ccw_req *cqr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729{
Stefan Weinhubereb6e1992009-12-07 12:51:51 +01001730 return _dasd_sleep_on(cqr, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731}
1732
1733/*
1734 * Whoa nelly now it gets really hairy. For some functions (e.g. steal lock
1735 * for eckd devices) the currently running request has to be terminated
1736 * and be put back to status queued, before the special request is added
1737 * to the head of the queue. Then the special request is waited on normally.
1738 */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001739static inline int _dasd_term_running_cqr(struct dasd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740{
1741 struct dasd_ccw_req *cqr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742
1743 if (list_empty(&device->ccw_queue))
1744 return 0;
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001745 cqr = list_entry(device->ccw_queue.next, struct dasd_ccw_req, devlist);
Horst Hummel8f617012006-08-30 14:33:33 +02001746 return device->discipline->term_IO(cqr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747}
1748
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001749int dasd_sleep_on_immediatly(struct dasd_ccw_req *cqr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751 struct dasd_device *device;
1752 int rc;
Horst Hummel138c0142006-06-29 14:58:12 +02001753
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001754 device = cqr->startdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755 spin_lock_irq(get_ccwdev_lock(device->cdev));
1756 rc = _dasd_term_running_cqr(device);
1757 if (rc) {
1758 spin_unlock_irq(get_ccwdev_lock(device->cdev));
1759 return rc;
1760 }
Horst Hummel138c0142006-06-29 14:58:12 +02001761
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762 cqr->callback = dasd_wakeup_cb;
Stefan Weinhuber1c1e0932010-05-12 09:32:11 +02001763 cqr->callback_data = DASD_SLEEPON_START_TAG;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764 cqr->status = DASD_CQR_QUEUED;
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001765 list_add(&cqr->devlist, &device->ccw_queue);
Horst Hummel138c0142006-06-29 14:58:12 +02001766
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767 /* let the bh start the request to keep them in order */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001768 dasd_schedule_device_bh(device);
Horst Hummel138c0142006-06-29 14:58:12 +02001769
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770 spin_unlock_irq(get_ccwdev_lock(device->cdev));
1771
Stefan Haberlandc80ee722008-05-30 10:03:31 +02001772 wait_event(generic_waitq, _wait_for_wakeup(cqr));
Horst Hummel138c0142006-06-29 14:58:12 +02001773
Stefan Weinhuber6cc7f162009-06-12 10:26:39 +02001774 if (cqr->status == DASD_CQR_DONE)
1775 rc = 0;
1776 else if (cqr->intrc)
1777 rc = cqr->intrc;
1778 else
1779 rc = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780 return rc;
1781}
1782
1783/*
1784 * Cancels a request that was started with dasd_sleep_on_req.
1785 * This is useful to timeout requests. The request will be
1786 * terminated if it is currently in i/o.
1787 * Returns 1 if the request has been terminated.
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001788 * 0 if there was no need to terminate the request (not started yet)
1789 * negative error code if termination failed
1790 * Cancellation of a request is an asynchronous operation! The calling
1791 * function has to wait until the request is properly returned via callback.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792 */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001793int dasd_cancel_req(struct dasd_ccw_req *cqr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794{
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001795 struct dasd_device *device = cqr->startdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796 unsigned long flags;
1797 int rc;
1798
1799 rc = 0;
1800 spin_lock_irqsave(get_ccwdev_lock(device->cdev), flags);
1801 switch (cqr->status) {
1802 case DASD_CQR_QUEUED:
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001803 /* request was not started - just set to cleared */
1804 cqr->status = DASD_CQR_CLEARED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805 break;
1806 case DASD_CQR_IN_IO:
1807 /* request in IO - terminate IO and release again */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001808 rc = device->discipline->term_IO(cqr);
1809 if (rc) {
Stefan Haberlandfc19f382009-03-26 15:23:49 +01001810 dev_err(&device->cdev->dev,
1811 "Cancelling request %p failed with rc=%d\n",
1812 cqr, rc);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001813 } else {
1814 cqr->stopclk = get_clock();
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001815 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816 break;
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001817 default: /* already finished or clear pending - do nothing */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819 }
1820 spin_unlock_irqrestore(get_ccwdev_lock(device->cdev), flags);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001821 dasd_schedule_device_bh(device);
1822 return rc;
1823}
1824
1825
1826/*
1827 * SECTION: Operations of the dasd_block layer.
1828 */
1829
1830/*
1831 * Timeout function for dasd_block. This is used when the block layer
1832 * is waiting for something that may not come reliably, (e.g. a state
1833 * change interrupt)
1834 */
1835static void dasd_block_timeout(unsigned long ptr)
1836{
1837 unsigned long flags;
1838 struct dasd_block *block;
1839
1840 block = (struct dasd_block *) ptr;
1841 spin_lock_irqsave(get_ccwdev_lock(block->base->cdev), flags);
1842 /* re-activate request queue */
Stefan Weinhubereb6e1992009-12-07 12:51:51 +01001843 dasd_device_remove_stop_bits(block->base, DASD_STOPPED_PENDING);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001844 spin_unlock_irqrestore(get_ccwdev_lock(block->base->cdev), flags);
1845 dasd_schedule_block_bh(block);
1846}
1847
1848/*
1849 * Setup timeout for a dasd_block in jiffies.
1850 */
1851void dasd_block_set_timer(struct dasd_block *block, int expires)
1852{
Stefan Weinhuber48cae882009-02-11 10:37:31 +01001853 if (expires == 0)
1854 del_timer(&block->timer);
1855 else
1856 mod_timer(&block->timer, jiffies + expires);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001857}
1858
1859/*
1860 * Clear timeout for a dasd_block.
1861 */
1862void dasd_block_clear_timer(struct dasd_block *block)
1863{
Stefan Weinhuber48cae882009-02-11 10:37:31 +01001864 del_timer(&block->timer);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001865}
1866
1867/*
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001868 * Process finished error recovery ccw.
1869 */
Stefan Weinhubereb6e1992009-12-07 12:51:51 +01001870static void __dasd_process_erp(struct dasd_device *device,
1871 struct dasd_ccw_req *cqr)
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001872{
1873 dasd_erp_fn_t erp_fn;
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001874
1875 if (cqr->status == DASD_CQR_DONE)
1876 DBF_DEV_EVENT(DBF_NOTICE, device, "%s", "ERP successful");
1877 else
Stefan Haberlandfc19f382009-03-26 15:23:49 +01001878 dev_err(&device->cdev->dev, "ERP failed for the DASD\n");
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001879 erp_fn = device->discipline->erp_postaction(cqr);
1880 erp_fn(cqr);
1881}
1882
1883/*
1884 * Fetch requests from the block device queue.
1885 */
1886static void __dasd_process_request_queue(struct dasd_block *block)
1887{
1888 struct request_queue *queue;
1889 struct request *req;
1890 struct dasd_ccw_req *cqr;
1891 struct dasd_device *basedev;
1892 unsigned long flags;
1893 queue = block->request_queue;
1894 basedev = block->base;
1895 /* No queue ? Then there is nothing to do. */
1896 if (queue == NULL)
1897 return;
1898
1899 /*
1900 * We requeue request from the block device queue to the ccw
1901 * queue only in two states. In state DASD_STATE_READY the
1902 * partition detection is done and we need to requeue requests
1903 * for that. State DASD_STATE_ONLINE is normal block device
1904 * operation.
1905 */
Stefan Weinhuber97f604b2009-09-11 10:28:28 +02001906 if (basedev->state < DASD_STATE_READY) {
1907 while ((req = blk_fetch_request(block->request_queue)))
1908 __blk_end_request_all(req, -EIO);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001909 return;
Stefan Weinhuber97f604b2009-09-11 10:28:28 +02001910 }
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001911 /* Now we try to fetch requests from the request queue */
Tejun Heo9934c8c2009-05-08 11:54:16 +09001912 while (!blk_queue_plugged(queue) && (req = blk_peek_request(queue))) {
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001913 if (basedev->features & DASD_FEATURE_READONLY &&
1914 rq_data_dir(req) == WRITE) {
1915 DBF_DEV_EVENT(DBF_ERR, basedev,
1916 "Rejecting write request %p",
1917 req);
Tejun Heo9934c8c2009-05-08 11:54:16 +09001918 blk_start_request(req);
Tejun Heo40cbbb72009-04-23 11:05:19 +09001919 __blk_end_request_all(req, -EIO);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001920 continue;
1921 }
1922 cqr = basedev->discipline->build_cp(basedev, block, req);
1923 if (IS_ERR(cqr)) {
1924 if (PTR_ERR(cqr) == -EBUSY)
1925 break; /* normal end condition */
1926 if (PTR_ERR(cqr) == -ENOMEM)
1927 break; /* terminate request queue loop */
1928 if (PTR_ERR(cqr) == -EAGAIN) {
1929 /*
1930 * The current request cannot be build right
1931 * now, we have to try later. If this request
1932 * is the head-of-queue we stop the device
1933 * for 1/2 second.
1934 */
1935 if (!list_empty(&block->ccw_queue))
1936 break;
Stefan Weinhubereb6e1992009-12-07 12:51:51 +01001937 spin_lock_irqsave(
1938 get_ccwdev_lock(basedev->cdev), flags);
1939 dasd_device_set_stop_bits(basedev,
1940 DASD_STOPPED_PENDING);
1941 spin_unlock_irqrestore(
1942 get_ccwdev_lock(basedev->cdev), flags);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001943 dasd_block_set_timer(block, HZ/2);
1944 break;
1945 }
1946 DBF_DEV_EVENT(DBF_ERR, basedev,
1947 "CCW creation failed (rc=%ld) "
1948 "on request %p",
1949 PTR_ERR(cqr), req);
Tejun Heo9934c8c2009-05-08 11:54:16 +09001950 blk_start_request(req);
Tejun Heo40cbbb72009-04-23 11:05:19 +09001951 __blk_end_request_all(req, -EIO);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001952 continue;
1953 }
1954 /*
1955 * Note: callback is set to dasd_return_cqr_cb in
1956 * __dasd_block_start_head to cover erp requests as well
1957 */
1958 cqr->callback_data = (void *) req;
1959 cqr->status = DASD_CQR_FILLED;
Tejun Heo9934c8c2009-05-08 11:54:16 +09001960 blk_start_request(req);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001961 list_add_tail(&cqr->blocklist, &block->ccw_queue);
1962 dasd_profile_start(block, cqr, req);
1963 }
1964}
1965
1966static void __dasd_cleanup_cqr(struct dasd_ccw_req *cqr)
1967{
1968 struct request *req;
1969 int status;
Kiyoshi Ueda4c4e2142008-01-28 10:29:42 +01001970 int error = 0;
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001971
1972 req = (struct request *) cqr->callback_data;
1973 dasd_profile_end(cqr->block, cqr, req);
Stefan Weinhuberfe6b8e72008-02-05 16:50:47 +01001974 status = cqr->block->base->discipline->free_cp(cqr, req);
Kiyoshi Ueda4c4e2142008-01-28 10:29:42 +01001975 if (status <= 0)
1976 error = status ? status : -EIO;
Tejun Heo40cbbb72009-04-23 11:05:19 +09001977 __blk_end_request_all(req, error);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001978}
1979
1980/*
1981 * Process ccw request queue.
1982 */
1983static void __dasd_process_block_ccw_queue(struct dasd_block *block,
1984 struct list_head *final_queue)
1985{
1986 struct list_head *l, *n;
1987 struct dasd_ccw_req *cqr;
1988 dasd_erp_fn_t erp_fn;
1989 unsigned long flags;
1990 struct dasd_device *base = block->base;
1991
1992restart:
1993 /* Process request with final status. */
1994 list_for_each_safe(l, n, &block->ccw_queue) {
1995 cqr = list_entry(l, struct dasd_ccw_req, blocklist);
1996 if (cqr->status != DASD_CQR_DONE &&
1997 cqr->status != DASD_CQR_FAILED &&
1998 cqr->status != DASD_CQR_NEED_ERP &&
1999 cqr->status != DASD_CQR_TERMINATED)
2000 continue;
2001
2002 if (cqr->status == DASD_CQR_TERMINATED) {
2003 base->discipline->handle_terminated_request(cqr);
2004 goto restart;
2005 }
2006
2007 /* Process requests that may be recovered */
2008 if (cqr->status == DASD_CQR_NEED_ERP) {
Stefan Haberland6c5f57c2008-02-05 16:50:46 +01002009 erp_fn = base->discipline->erp_action(cqr);
Stefan Haberland6a5176c2010-04-22 17:17:02 +02002010 if (IS_ERR(erp_fn(cqr)))
2011 continue;
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002012 goto restart;
2013 }
2014
Stefan Haberlanda9cffb22008-11-14 18:18:08 +01002015 /* log sense for fatal error */
2016 if (cqr->status == DASD_CQR_FAILED) {
2017 dasd_log_sense(cqr, &cqr->irb);
2018 }
2019
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002020 /* First of all call extended error reporting. */
2021 if (dasd_eer_enabled(base) &&
2022 cqr->status == DASD_CQR_FAILED) {
2023 dasd_eer_write(base, cqr, DASD_EER_FATALERROR);
2024
2025 /* restart request */
2026 cqr->status = DASD_CQR_FILLED;
2027 cqr->retries = 255;
2028 spin_lock_irqsave(get_ccwdev_lock(base->cdev), flags);
Stefan Weinhubereb6e1992009-12-07 12:51:51 +01002029 dasd_device_set_stop_bits(base, DASD_STOPPED_QUIESCE);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002030 spin_unlock_irqrestore(get_ccwdev_lock(base->cdev),
2031 flags);
2032 goto restart;
2033 }
2034
2035 /* Process finished ERP request. */
2036 if (cqr->refers) {
Stefan Weinhubereb6e1992009-12-07 12:51:51 +01002037 __dasd_process_erp(base, cqr);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002038 goto restart;
2039 }
2040
2041 /* Rechain finished requests to final queue */
2042 cqr->endclk = get_clock();
2043 list_move_tail(&cqr->blocklist, final_queue);
2044 }
2045}
2046
2047static void dasd_return_cqr_cb(struct dasd_ccw_req *cqr, void *data)
2048{
2049 dasd_schedule_block_bh(cqr->block);
2050}
2051
2052static void __dasd_block_start_head(struct dasd_block *block)
2053{
2054 struct dasd_ccw_req *cqr;
2055
2056 if (list_empty(&block->ccw_queue))
2057 return;
2058 /* We allways begin with the first requests on the queue, as some
2059 * of previously started requests have to be enqueued on a
2060 * dasd_device again for error recovery.
2061 */
2062 list_for_each_entry(cqr, &block->ccw_queue, blocklist) {
2063 if (cqr->status != DASD_CQR_FILLED)
2064 continue;
2065 /* Non-temporary stop condition will trigger fail fast */
2066 if (block->base->stopped & ~DASD_STOPPED_PENDING &&
2067 test_bit(DASD_CQR_FLAGS_FAILFAST, &cqr->flags) &&
2068 (!dasd_eer_enabled(block->base))) {
2069 cqr->status = DASD_CQR_FAILED;
2070 dasd_schedule_block_bh(block);
2071 continue;
2072 }
2073 /* Don't try to start requests if device is stopped */
2074 if (block->base->stopped)
2075 return;
2076
2077 /* just a fail safe check, should not happen */
2078 if (!cqr->startdev)
2079 cqr->startdev = block->base;
2080
2081 /* make sure that the requests we submit find their way back */
2082 cqr->callback = dasd_return_cqr_cb;
2083
2084 dasd_add_request_tail(cqr);
2085 }
2086}
2087
2088/*
2089 * Central dasd_block layer routine. Takes requests from the generic
2090 * block layer request queue, creates ccw requests, enqueues them on
2091 * a dasd_device and processes ccw requests that have been returned.
2092 */
2093static void dasd_block_tasklet(struct dasd_block *block)
2094{
2095 struct list_head final_queue;
2096 struct list_head *l, *n;
2097 struct dasd_ccw_req *cqr;
2098
2099 atomic_set(&block->tasklet_scheduled, 0);
2100 INIT_LIST_HEAD(&final_queue);
2101 spin_lock(&block->queue_lock);
2102 /* Finish off requests on ccw queue */
2103 __dasd_process_block_ccw_queue(block, &final_queue);
2104 spin_unlock(&block->queue_lock);
2105 /* Now call the callback function of requests with final status */
2106 spin_lock_irq(&block->request_queue_lock);
2107 list_for_each_safe(l, n, &final_queue) {
2108 cqr = list_entry(l, struct dasd_ccw_req, blocklist);
2109 list_del_init(&cqr->blocklist);
2110 __dasd_cleanup_cqr(cqr);
2111 }
2112 spin_lock(&block->queue_lock);
2113 /* Get new request from the block device request queue */
2114 __dasd_process_request_queue(block);
2115 /* Now check if the head of the ccw queue needs to be started. */
2116 __dasd_block_start_head(block);
2117 spin_unlock(&block->queue_lock);
2118 spin_unlock_irq(&block->request_queue_lock);
2119 dasd_put_device(block->base);
2120}
2121
2122static void _dasd_wake_block_flush_cb(struct dasd_ccw_req *cqr, void *data)
2123{
2124 wake_up(&dasd_flush_wq);
2125}
2126
2127/*
2128 * Go through all request on the dasd_block request queue, cancel them
2129 * on the respective dasd_device, and return them to the generic
2130 * block layer.
2131 */
2132static int dasd_flush_block_queue(struct dasd_block *block)
2133{
2134 struct dasd_ccw_req *cqr, *n;
2135 int rc, i;
2136 struct list_head flush_queue;
2137
2138 INIT_LIST_HEAD(&flush_queue);
2139 spin_lock_bh(&block->queue_lock);
2140 rc = 0;
2141restart:
2142 list_for_each_entry_safe(cqr, n, &block->ccw_queue, blocklist) {
2143 /* if this request currently owned by a dasd_device cancel it */
2144 if (cqr->status >= DASD_CQR_QUEUED)
2145 rc = dasd_cancel_req(cqr);
2146 if (rc < 0)
2147 break;
2148 /* Rechain request (including erp chain) so it won't be
2149 * touched by the dasd_block_tasklet anymore.
2150 * Replace the callback so we notice when the request
2151 * is returned from the dasd_device layer.
2152 */
2153 cqr->callback = _dasd_wake_block_flush_cb;
2154 for (i = 0; cqr != NULL; cqr = cqr->refers, i++)
2155 list_move_tail(&cqr->blocklist, &flush_queue);
2156 if (i > 1)
2157 /* moved more than one request - need to restart */
2158 goto restart;
2159 }
2160 spin_unlock_bh(&block->queue_lock);
2161 /* Now call the callback function of flushed requests */
2162restart_cb:
2163 list_for_each_entry_safe(cqr, n, &flush_queue, blocklist) {
2164 wait_event(dasd_flush_wq, (cqr->status < DASD_CQR_QUEUED));
2165 /* Process finished ERP request. */
2166 if (cqr->refers) {
Stefan Haberland0cd4bd42008-12-25 13:38:54 +01002167 spin_lock_bh(&block->queue_lock);
Stefan Weinhubereb6e1992009-12-07 12:51:51 +01002168 __dasd_process_erp(block->base, cqr);
Stefan Haberland0cd4bd42008-12-25 13:38:54 +01002169 spin_unlock_bh(&block->queue_lock);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002170 /* restart list_for_xx loop since dasd_process_erp
2171 * might remove multiple elements */
2172 goto restart_cb;
2173 }
2174 /* call the callback function */
Stefan Haberland0cd4bd42008-12-25 13:38:54 +01002175 spin_lock_irq(&block->request_queue_lock);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002176 cqr->endclk = get_clock();
2177 list_del_init(&cqr->blocklist);
2178 __dasd_cleanup_cqr(cqr);
Stefan Haberland0cd4bd42008-12-25 13:38:54 +01002179 spin_unlock_irq(&block->request_queue_lock);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002180 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181 return rc;
2182}
2183
2184/*
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002185 * Schedules a call to dasd_tasklet over the device tasklet.
2186 */
2187void dasd_schedule_block_bh(struct dasd_block *block)
2188{
2189 /* Protect against rescheduling. */
2190 if (atomic_cmpxchg(&block->tasklet_scheduled, 0, 1) != 0)
2191 return;
2192 /* life cycle of block is bound to it's base device */
2193 dasd_get_device(block->base);
2194 tasklet_hi_schedule(&block->tasklet);
2195}
2196
2197
2198/*
2199 * SECTION: external block device operations
2200 * (request queue handling, open, release, etc.)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201 */
2202
2203/*
2204 * Dasd request queue function. Called from ll_rw_blk.c
2205 */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002206static void do_dasd_request(struct request_queue *queue)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207{
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002208 struct dasd_block *block;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002210 block = queue->queuedata;
2211 spin_lock(&block->queue_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212 /* Get new request from the block device request queue */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002213 __dasd_process_request_queue(block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214 /* Now check if the head of the ccw queue needs to be started. */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002215 __dasd_block_start_head(block);
2216 spin_unlock(&block->queue_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217}
2218
2219/*
2220 * Allocate and initialize request queue and default I/O scheduler.
2221 */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002222static int dasd_alloc_queue(struct dasd_block *block)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223{
2224 int rc;
2225
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002226 block->request_queue = blk_init_queue(do_dasd_request,
2227 &block->request_queue_lock);
2228 if (block->request_queue == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229 return -ENOMEM;
2230
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002231 block->request_queue->queuedata = block;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002233 elevator_exit(block->request_queue->elevator);
Josef 'Jeff' Sipek08a8a0c2008-04-17 07:45:56 +02002234 block->request_queue->elevator = NULL;
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002235 rc = elevator_init(block->request_queue, "deadline");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236 if (rc) {
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002237 blk_cleanup_queue(block->request_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002238 return rc;
2239 }
2240 return 0;
2241}
2242
2243/*
2244 * Allocate and initialize request queue.
2245 */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002246static void dasd_setup_queue(struct dasd_block *block)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247{
2248 int max;
2249
Martin K. Petersene1defc42009-05-22 17:17:49 -04002250 blk_queue_logical_block_size(block->request_queue, block->bp_block);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002251 max = block->base->discipline->max_blocks << block->s2b_shift;
Martin K. Petersen086fa5f2010-02-26 00:20:38 -05002252 blk_queue_max_hw_sectors(block->request_queue, max);
Martin K. Petersen8a783622010-02-26 00:20:39 -05002253 blk_queue_max_segments(block->request_queue, -1L);
Stefan Weinhuberf3eb5382009-03-26 15:23:48 +01002254 /* with page sized segments we can translate each segement into
2255 * one idaw/tidaw
2256 */
2257 blk_queue_max_segment_size(block->request_queue, PAGE_SIZE);
2258 blk_queue_segment_boundary(block->request_queue, PAGE_SIZE - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259}
2260
2261/*
2262 * Deactivate and free request queue.
2263 */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002264static void dasd_free_queue(struct dasd_block *block)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265{
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002266 if (block->request_queue) {
2267 blk_cleanup_queue(block->request_queue);
2268 block->request_queue = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269 }
2270}
2271
2272/*
2273 * Flush request on the request queue.
2274 */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002275static void dasd_flush_request_queue(struct dasd_block *block)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276{
2277 struct request *req;
2278
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002279 if (!block->request_queue)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002280 return;
Horst Hummel138c0142006-06-29 14:58:12 +02002281
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002282 spin_lock_irq(&block->request_queue_lock);
Tejun Heo9934c8c2009-05-08 11:54:16 +09002283 while ((req = blk_fetch_request(block->request_queue)))
Tejun Heo40cbbb72009-04-23 11:05:19 +09002284 __blk_end_request_all(req, -EIO);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002285 spin_unlock_irq(&block->request_queue_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286}
2287
Al Viro57a7c0b2008-03-02 10:36:08 -05002288static int dasd_open(struct block_device *bdev, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289{
Al Viro57a7c0b2008-03-02 10:36:08 -05002290 struct dasd_block *block = bdev->bd_disk->private_data;
Stefan Haberland9eb25122010-02-26 22:37:46 +01002291 struct dasd_device *base;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002292 int rc;
2293
Stefan Haberland9eb25122010-02-26 22:37:46 +01002294 if (!block)
2295 return -ENODEV;
2296
2297 base = block->base;
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002298 atomic_inc(&block->open_count);
2299 if (test_bit(DASD_FLAG_OFFLINE, &base->flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002300 rc = -ENODEV;
2301 goto unlock;
2302 }
2303
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002304 if (!try_module_get(base->discipline->owner)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002305 rc = -EINVAL;
2306 goto unlock;
2307 }
2308
2309 if (dasd_probeonly) {
Stefan Haberlandfc19f382009-03-26 15:23:49 +01002310 dev_info(&base->cdev->dev,
2311 "Accessing the DASD failed because it is in "
2312 "probeonly mode\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002313 rc = -EPERM;
2314 goto out;
2315 }
2316
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002317 if (base->state <= DASD_STATE_BASIC) {
2318 DBF_DEV_EVENT(DBF_ERR, base, " %s",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002319 " Cannot open unrecognized device");
2320 rc = -ENODEV;
2321 goto out;
2322 }
2323
Stefan Weinhuber33b62a32010-03-08 12:26:24 +01002324 if ((mode & FMODE_WRITE) &&
2325 (test_bit(DASD_FLAG_DEVICE_RO, &base->flags) ||
2326 (base->features & DASD_FEATURE_READONLY))) {
2327 rc = -EROFS;
2328 goto out;
2329 }
2330
Linus Torvalds1da177e2005-04-16 15:20:36 -07002331 return 0;
2332
2333out:
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002334 module_put(base->discipline->owner);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002335unlock:
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002336 atomic_dec(&block->open_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002337 return rc;
2338}
2339
Al Viro57a7c0b2008-03-02 10:36:08 -05002340static int dasd_release(struct gendisk *disk, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002341{
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002342 struct dasd_block *block = disk->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002344 atomic_dec(&block->open_count);
2345 module_put(block->base->discipline->owner);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002346 return 0;
2347}
2348
Christoph Hellwiga885c8c2006-01-08 01:02:50 -08002349/*
2350 * Return disk geometry.
2351 */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002352static int dasd_getgeo(struct block_device *bdev, struct hd_geometry *geo)
Christoph Hellwiga885c8c2006-01-08 01:02:50 -08002353{
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002354 struct dasd_block *block;
2355 struct dasd_device *base;
Christoph Hellwiga885c8c2006-01-08 01:02:50 -08002356
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002357 block = bdev->bd_disk->private_data;
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002358 if (!block)
Christoph Hellwiga885c8c2006-01-08 01:02:50 -08002359 return -ENODEV;
Julia Lawallcf05b822009-08-23 18:09:05 +02002360 base = block->base;
Christoph Hellwiga885c8c2006-01-08 01:02:50 -08002361
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002362 if (!base->discipline ||
2363 !base->discipline->fill_geometry)
Christoph Hellwiga885c8c2006-01-08 01:02:50 -08002364 return -EINVAL;
2365
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002366 base->discipline->fill_geometry(block, geo);
2367 geo->start = get_start_sect(bdev) >> block->s2b_shift;
Christoph Hellwiga885c8c2006-01-08 01:02:50 -08002368 return 0;
2369}
2370
Alexey Dobriyan83d5cde2009-09-21 17:01:13 -07002371const struct block_device_operations
Linus Torvalds1da177e2005-04-16 15:20:36 -07002372dasd_device_operations = {
2373 .owner = THIS_MODULE,
Al Viro57a7c0b2008-03-02 10:36:08 -05002374 .open = dasd_open,
2375 .release = dasd_release,
Heiko Carstens0000d032009-03-26 15:23:45 +01002376 .ioctl = dasd_ioctl,
2377 .compat_ioctl = dasd_ioctl,
Christoph Hellwiga885c8c2006-01-08 01:02:50 -08002378 .getgeo = dasd_getgeo,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379};
2380
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002381/*******************************************************************************
2382 * end of block device operations
2383 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002384
2385static void
2386dasd_exit(void)
2387{
2388#ifdef CONFIG_PROC_FS
2389 dasd_proc_exit();
2390#endif
Stefan Weinhuber20c64462006-03-24 03:15:25 -08002391 dasd_eer_exit();
Horst Hummel6bb0e012005-07-27 11:45:03 -07002392 if (dasd_page_cache != NULL) {
2393 kmem_cache_destroy(dasd_page_cache);
2394 dasd_page_cache = NULL;
2395 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002396 dasd_gendisk_exit();
2397 dasd_devmap_exit();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002398 if (dasd_debug_area != NULL) {
2399 debug_unregister(dasd_debug_area);
2400 dasd_debug_area = NULL;
2401 }
2402}
2403
2404/*
2405 * SECTION: common functions for ccw_driver use
2406 */
2407
Stefan Weinhuber33b62a32010-03-08 12:26:24 +01002408/*
2409 * Is the device read-only?
2410 * Note that this function does not report the setting of the
2411 * readonly device attribute, but how it is configured in z/VM.
2412 */
2413int dasd_device_is_ro(struct dasd_device *device)
2414{
2415 struct ccw_dev_id dev_id;
2416 struct diag210 diag_data;
2417 int rc;
2418
2419 if (!MACHINE_IS_VM)
2420 return 0;
2421 ccw_device_get_id(device->cdev, &dev_id);
2422 memset(&diag_data, 0, sizeof(diag_data));
2423 diag_data.vrdcdvno = dev_id.devno;
2424 diag_data.vrdclen = sizeof(diag_data);
2425 rc = diag210(&diag_data);
2426 if (rc == 0 || rc == 2) {
2427 return diag_data.vrdcvfla & 0x80;
2428 } else {
2429 DBF_EVENT(DBF_WARNING, "diag210 failed for dev=%04x with rc=%d",
2430 dev_id.devno, rc);
2431 return 0;
2432 }
2433}
2434EXPORT_SYMBOL_GPL(dasd_device_is_ro);
2435
Cornelia Huckf3445a12009-04-14 15:36:23 +02002436static void dasd_generic_auto_online(void *data, async_cookie_t cookie)
2437{
2438 struct ccw_device *cdev = data;
2439 int ret;
2440
2441 ret = ccw_device_set_online(cdev);
2442 if (ret)
2443 pr_warning("%s: Setting the DASD online failed with rc=%d\n",
2444 dev_name(&cdev->dev), ret);
Cornelia Huckf3445a12009-04-14 15:36:23 +02002445}
2446
Horst Hummel1c01b8a2006-01-06 00:19:15 -08002447/*
2448 * Initial attempt at a probe function. this can be simplified once
2449 * the other detection code is gone.
2450 */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002451int dasd_generic_probe(struct ccw_device *cdev,
2452 struct dasd_discipline *discipline)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002453{
2454 int ret;
2455
2456 ret = dasd_add_sysfs_files(cdev);
2457 if (ret) {
Stefan Haberlandb8ed5dd2009-12-07 12:51:52 +01002458 DBF_EVENT_DEVID(DBF_WARNING, cdev, "%s",
2459 "dasd_generic_probe: could not add "
2460 "sysfs entries");
Horst Hummel40545572006-06-29 15:08:18 +02002461 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002462 }
Horst Hummel40545572006-06-29 15:08:18 +02002463 cdev->handler = &dasd_int_handler;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002464
Horst Hummel40545572006-06-29 15:08:18 +02002465 /*
2466 * Automatically online either all dasd devices (dasd_autodetect)
2467 * or all devices specified with dasd= parameters during
2468 * initial probe.
2469 */
2470 if ((dasd_get_feature(cdev, DASD_FEATURE_INITIAL_ONLINE) > 0 ) ||
Kay Sievers2a0217d2008-10-10 21:33:09 +02002471 (dasd_autodetect && dasd_busid_known(dev_name(&cdev->dev)) != 0))
Cornelia Huckf3445a12009-04-14 15:36:23 +02002472 async_schedule(dasd_generic_auto_online, cdev);
Stefan Haberlandde3e0da2008-01-26 14:11:08 +01002473 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002474}
2475
Horst Hummel1c01b8a2006-01-06 00:19:15 -08002476/*
2477 * This will one day be called from a global not_oper handler.
2478 * It is also used by driver_unregister during module unload.
2479 */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002480void dasd_generic_remove(struct ccw_device *cdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002481{
2482 struct dasd_device *device;
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002483 struct dasd_block *block;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002484
Horst Hummel59afda72005-05-16 21:53:39 -07002485 cdev->handler = NULL;
2486
Linus Torvalds1da177e2005-04-16 15:20:36 -07002487 dasd_remove_sysfs_files(cdev);
2488 device = dasd_device_from_cdev(cdev);
2489 if (IS_ERR(device))
2490 return;
2491 if (test_and_set_bit(DASD_FLAG_OFFLINE, &device->flags)) {
2492 /* Already doing offline processing */
2493 dasd_put_device(device);
2494 return;
2495 }
2496 /*
2497 * This device is removed unconditionally. Set offline
2498 * flag to prevent dasd_open from opening it while it is
2499 * no quite down yet.
2500 */
2501 dasd_set_target_state(device, DASD_STATE_NEW);
2502 /* dasd_delete_device destroys the device reference. */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002503 block = device->block;
2504 device->block = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002505 dasd_delete_device(device);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002506 /*
2507 * life cycle of block is bound to device, so delete it after
2508 * device was safely removed
2509 */
2510 if (block)
2511 dasd_free_block(block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002512}
2513
Horst Hummel1c01b8a2006-01-06 00:19:15 -08002514/*
2515 * Activate a device. This is called from dasd_{eckd,fba}_probe() when either
Linus Torvalds1da177e2005-04-16 15:20:36 -07002516 * the device is detected for the first time and is supposed to be used
Horst Hummel1c01b8a2006-01-06 00:19:15 -08002517 * or the user has started activation through sysfs.
2518 */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002519int dasd_generic_set_online(struct ccw_device *cdev,
2520 struct dasd_discipline *base_discipline)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002521{
Peter Oberparleiteraa888612006-02-20 18:28:13 -08002522 struct dasd_discipline *discipline;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002523 struct dasd_device *device;
Horst Hummelc6eb7b72005-09-03 15:57:58 -07002524 int rc;
Horst Hummelf24acd42005-05-01 08:58:59 -07002525
Horst Hummel40545572006-06-29 15:08:18 +02002526 /* first online clears initial online feature flag */
2527 dasd_set_feature(cdev, DASD_FEATURE_INITIAL_ONLINE, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002528 device = dasd_create_device(cdev);
2529 if (IS_ERR(device))
2530 return PTR_ERR(device);
2531
Peter Oberparleiteraa888612006-02-20 18:28:13 -08002532 discipline = base_discipline;
Horst Hummelc6eb7b72005-09-03 15:57:58 -07002533 if (device->features & DASD_FEATURE_USEDIAG) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002534 if (!dasd_diag_discipline_pointer) {
Stefan Haberlandfc19f382009-03-26 15:23:49 +01002535 pr_warning("%s Setting the DASD online failed because "
2536 "of missing DIAG discipline\n",
2537 dev_name(&cdev->dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002538 dasd_delete_device(device);
2539 return -ENODEV;
2540 }
2541 discipline = dasd_diag_discipline_pointer;
2542 }
Peter Oberparleiteraa888612006-02-20 18:28:13 -08002543 if (!try_module_get(base_discipline->owner)) {
2544 dasd_delete_device(device);
2545 return -EINVAL;
2546 }
2547 if (!try_module_get(discipline->owner)) {
2548 module_put(base_discipline->owner);
2549 dasd_delete_device(device);
2550 return -EINVAL;
2551 }
2552 device->base_discipline = base_discipline;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002553 device->discipline = discipline;
2554
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002555 /* check_device will allocate block device if necessary */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002556 rc = discipline->check_device(device);
2557 if (rc) {
Stefan Haberlandfc19f382009-03-26 15:23:49 +01002558 pr_warning("%s Setting the DASD online with discipline %s "
2559 "failed with rc=%i\n",
2560 dev_name(&cdev->dev), discipline->name, rc);
Peter Oberparleiteraa888612006-02-20 18:28:13 -08002561 module_put(discipline->owner);
2562 module_put(base_discipline->owner);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002563 dasd_delete_device(device);
2564 return rc;
2565 }
2566
2567 dasd_set_target_state(device, DASD_STATE_ONLINE);
2568 if (device->state <= DASD_STATE_KNOWN) {
Stefan Haberlandfc19f382009-03-26 15:23:49 +01002569 pr_warning("%s Setting the DASD online failed because of a "
2570 "missing discipline\n", dev_name(&cdev->dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002571 rc = -ENODEV;
2572 dasd_set_target_state(device, DASD_STATE_NEW);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002573 if (device->block)
2574 dasd_free_block(device->block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002575 dasd_delete_device(device);
2576 } else
2577 pr_debug("dasd_generic device %s found\n",
Kay Sievers2a0217d2008-10-10 21:33:09 +02002578 dev_name(&cdev->dev));
Stefan Haberland589c74d2010-02-26 22:37:47 +01002579
2580 wait_event(dasd_init_waitq, _wait_for_device(device));
2581
Linus Torvalds1da177e2005-04-16 15:20:36 -07002582 dasd_put_device(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002583 return rc;
2584}
2585
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002586int dasd_generic_set_offline(struct ccw_device *cdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002587{
2588 struct dasd_device *device;
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002589 struct dasd_block *block;
Horst Hummeldafd87a2006-04-10 22:53:47 -07002590 int max_count, open_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002591
2592 device = dasd_device_from_cdev(cdev);
2593 if (IS_ERR(device))
2594 return PTR_ERR(device);
2595 if (test_and_set_bit(DASD_FLAG_OFFLINE, &device->flags)) {
2596 /* Already doing offline processing */
2597 dasd_put_device(device);
2598 return 0;
2599 }
2600 /*
2601 * We must make sure that this device is currently not in use.
2602 * The open_count is increased for every opener, that includes
2603 * the blkdev_get in dasd_scan_partitions. We are only interested
2604 * in the other openers.
2605 */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002606 if (device->block) {
Heiko Carstensa8061702008-04-17 07:46:26 +02002607 max_count = device->block->bdev ? 0 : -1;
2608 open_count = atomic_read(&device->block->open_count);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002609 if (open_count > max_count) {
2610 if (open_count > 0)
Stefan Haberlandfc19f382009-03-26 15:23:49 +01002611 pr_warning("%s: The DASD cannot be set offline "
2612 "with open count %i\n",
2613 dev_name(&cdev->dev), open_count);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002614 else
Stefan Haberlandfc19f382009-03-26 15:23:49 +01002615 pr_warning("%s: The DASD cannot be set offline "
2616 "while it is in use\n",
2617 dev_name(&cdev->dev));
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002618 clear_bit(DASD_FLAG_OFFLINE, &device->flags);
2619 dasd_put_device(device);
2620 return -EBUSY;
2621 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002622 }
2623 dasd_set_target_state(device, DASD_STATE_NEW);
2624 /* dasd_delete_device destroys the device reference. */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002625 block = device->block;
2626 device->block = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002627 dasd_delete_device(device);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002628 /*
2629 * life cycle of block is bound to device, so delete it after
2630 * device was safely removed
2631 */
2632 if (block)
2633 dasd_free_block(block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002634 return 0;
2635}
2636
Stefan Weinhubera4d26c62011-01-05 12:48:03 +01002637int dasd_generic_last_path_gone(struct dasd_device *device)
2638{
2639 struct dasd_ccw_req *cqr;
2640
2641 dev_warn(&device->cdev->dev, "No operational channel path is left "
2642 "for the device\n");
2643 DBF_DEV_EVENT(DBF_WARNING, device, "%s", "last path gone");
2644 /* First of all call extended error reporting. */
2645 dasd_eer_write(device, NULL, DASD_EER_NOPATH);
2646
2647 if (device->state < DASD_STATE_BASIC)
2648 return 0;
2649 /* Device is active. We want to keep it. */
2650 list_for_each_entry(cqr, &device->ccw_queue, devlist)
2651 if ((cqr->status == DASD_CQR_IN_IO) ||
2652 (cqr->status == DASD_CQR_CLEAR_PENDING)) {
2653 cqr->status = DASD_CQR_QUEUED;
2654 cqr->retries++;
2655 }
2656 dasd_device_set_stop_bits(device, DASD_STOPPED_DC_WAIT);
2657 dasd_device_clear_timer(device);
2658 dasd_schedule_device_bh(device);
2659 return 1;
2660}
2661EXPORT_SYMBOL_GPL(dasd_generic_last_path_gone);
2662
2663int dasd_generic_path_operational(struct dasd_device *device)
2664{
2665 dev_info(&device->cdev->dev, "A channel path to the device has become "
2666 "operational\n");
2667 DBF_DEV_EVENT(DBF_WARNING, device, "%s", "path operational");
2668 dasd_device_remove_stop_bits(device, DASD_STOPPED_DC_WAIT);
2669 if (device->stopped & DASD_UNRESUMED_PM) {
2670 dasd_device_remove_stop_bits(device, DASD_UNRESUMED_PM);
2671 dasd_restore_device(device);
2672 return 1;
2673 }
2674 dasd_schedule_device_bh(device);
2675 if (device->block)
2676 dasd_schedule_block_bh(device->block);
2677 return 1;
2678}
2679EXPORT_SYMBOL_GPL(dasd_generic_path_operational);
2680
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002681int dasd_generic_notify(struct ccw_device *cdev, int event)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002682{
2683 struct dasd_device *device;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002684 int ret;
2685
Peter Oberparleiter91c36912008-08-21 19:46:39 +02002686 device = dasd_device_from_cdev_locked(cdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002687 if (IS_ERR(device))
2688 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002689 ret = 0;
2690 switch (event) {
2691 case CIO_GONE:
Sebastian Ott47593bf2009-03-31 19:16:05 +02002692 case CIO_BOXED:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002693 case CIO_NO_PATH:
Stefan Weinhubera4d26c62011-01-05 12:48:03 +01002694 device->path_data.opm = 0;
2695 device->path_data.ppm = 0;
2696 device->path_data.npm = 0;
2697 ret = dasd_generic_last_path_gone(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002698 break;
2699 case CIO_OPER:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002700 ret = 1;
Stefan Weinhubera4d26c62011-01-05 12:48:03 +01002701 if (device->path_data.opm)
2702 ret = dasd_generic_path_operational(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002703 break;
2704 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002705 dasd_put_device(device);
2706 return ret;
2707}
2708
Stefan Weinhubera4d26c62011-01-05 12:48:03 +01002709void dasd_generic_path_event(struct ccw_device *cdev, int *path_event)
2710{
2711 int chp;
2712 __u8 oldopm, eventlpm;
2713 struct dasd_device *device;
2714
2715 device = dasd_device_from_cdev_locked(cdev);
2716 if (IS_ERR(device))
2717 return;
2718 for (chp = 0; chp < 8; chp++) {
2719 eventlpm = 0x80 >> chp;
2720 if (path_event[chp] & PE_PATH_GONE) {
2721 oldopm = device->path_data.opm;
2722 device->path_data.opm &= ~eventlpm;
2723 device->path_data.ppm &= ~eventlpm;
2724 device->path_data.npm &= ~eventlpm;
2725 if (oldopm && !device->path_data.opm)
2726 dasd_generic_last_path_gone(device);
2727 }
2728 if (path_event[chp] & PE_PATH_AVAILABLE) {
2729 device->path_data.opm &= ~eventlpm;
2730 device->path_data.ppm &= ~eventlpm;
2731 device->path_data.npm &= ~eventlpm;
2732 device->path_data.tbvpm |= eventlpm;
2733 dasd_schedule_device_bh(device);
2734 }
2735 }
2736 dasd_put_device(device);
2737}
2738EXPORT_SYMBOL_GPL(dasd_generic_path_event);
2739
2740int dasd_generic_verify_path(struct dasd_device *device, __u8 lpm)
2741{
2742 if (!device->path_data.opm && lpm) {
2743 device->path_data.opm = lpm;
2744 dasd_generic_path_operational(device);
2745 } else
2746 device->path_data.opm |= lpm;
2747 return 0;
2748}
2749EXPORT_SYMBOL_GPL(dasd_generic_verify_path);
2750
2751
Stefan Haberlandd41dd122009-06-16 10:30:25 +02002752int dasd_generic_pm_freeze(struct ccw_device *cdev)
2753{
2754 struct dasd_ccw_req *cqr, *n;
2755 int rc;
2756 struct list_head freeze_queue;
2757 struct dasd_device *device = dasd_device_from_cdev(cdev);
2758
2759 if (IS_ERR(device))
2760 return PTR_ERR(device);
2761 /* disallow new I/O */
Stefan Weinhubereb6e1992009-12-07 12:51:51 +01002762 dasd_device_set_stop_bits(device, DASD_STOPPED_PM);
Stefan Haberlandd41dd122009-06-16 10:30:25 +02002763 /* clear active requests */
2764 INIT_LIST_HEAD(&freeze_queue);
2765 spin_lock_irq(get_ccwdev_lock(cdev));
2766 rc = 0;
2767 list_for_each_entry_safe(cqr, n, &device->ccw_queue, devlist) {
2768 /* Check status and move request to flush_queue */
2769 if (cqr->status == DASD_CQR_IN_IO) {
2770 rc = device->discipline->term_IO(cqr);
2771 if (rc) {
2772 /* unable to terminate requeust */
2773 dev_err(&device->cdev->dev,
2774 "Unable to terminate request %p "
2775 "on suspend\n", cqr);
2776 spin_unlock_irq(get_ccwdev_lock(cdev));
2777 dasd_put_device(device);
2778 return rc;
2779 }
2780 }
2781 list_move_tail(&cqr->devlist, &freeze_queue);
2782 }
2783
2784 spin_unlock_irq(get_ccwdev_lock(cdev));
2785
2786 list_for_each_entry_safe(cqr, n, &freeze_queue, devlist) {
2787 wait_event(dasd_flush_wq,
2788 (cqr->status != DASD_CQR_CLEAR_PENDING));
2789 if (cqr->status == DASD_CQR_CLEARED)
2790 cqr->status = DASD_CQR_QUEUED;
2791 }
2792 /* move freeze_queue to start of the ccw_queue */
2793 spin_lock_irq(get_ccwdev_lock(cdev));
2794 list_splice_tail(&freeze_queue, &device->ccw_queue);
2795 spin_unlock_irq(get_ccwdev_lock(cdev));
2796
2797 if (device->discipline->freeze)
2798 rc = device->discipline->freeze(device);
2799
2800 dasd_put_device(device);
2801 return rc;
2802}
2803EXPORT_SYMBOL_GPL(dasd_generic_pm_freeze);
2804
2805int dasd_generic_restore_device(struct ccw_device *cdev)
2806{
2807 struct dasd_device *device = dasd_device_from_cdev(cdev);
2808 int rc = 0;
2809
2810 if (IS_ERR(device))
2811 return PTR_ERR(device);
2812
Stefan Haberlande6125fb2009-06-22 12:08:17 +02002813 /* allow new IO again */
Stefan Weinhubereb6e1992009-12-07 12:51:51 +01002814 dasd_device_remove_stop_bits(device,
2815 (DASD_STOPPED_PM | DASD_UNRESUMED_PM));
Stefan Haberlande6125fb2009-06-22 12:08:17 +02002816
Stefan Haberlandd41dd122009-06-16 10:30:25 +02002817 dasd_schedule_device_bh(device);
Stefan Haberlandd41dd122009-06-16 10:30:25 +02002818
Stefan Weinhubereb6e1992009-12-07 12:51:51 +01002819 /*
2820 * call discipline restore function
2821 * if device is stopped do nothing e.g. for disconnected devices
2822 */
2823 if (device->discipline->restore && !(device->stopped))
Stefan Haberlandd41dd122009-06-16 10:30:25 +02002824 rc = device->discipline->restore(device);
Stefan Weinhubereb6e1992009-12-07 12:51:51 +01002825 if (rc || device->stopped)
Stefan Haberlande6125fb2009-06-22 12:08:17 +02002826 /*
2827 * if the resume failed for the DASD we put it in
2828 * an UNRESUMED stop state
2829 */
2830 device->stopped |= DASD_UNRESUMED_PM;
Stefan Haberlandd41dd122009-06-16 10:30:25 +02002831
Stefan Haberland6fca97a2009-10-06 10:34:15 +02002832 if (device->block)
2833 dasd_schedule_block_bh(device->block);
2834
Stefan Haberlandd41dd122009-06-16 10:30:25 +02002835 dasd_put_device(device);
Stefan Haberlande6125fb2009-06-22 12:08:17 +02002836 return 0;
Stefan Haberlandd41dd122009-06-16 10:30:25 +02002837}
2838EXPORT_SYMBOL_GPL(dasd_generic_restore_device);
2839
Heiko Carstens763968e2007-05-10 15:45:46 +02002840static struct dasd_ccw_req *dasd_generic_build_rdc(struct dasd_device *device,
2841 void *rdc_buffer,
2842 int rdc_buffer_size,
Stefan Haberland68b781f2009-09-11 10:28:29 +02002843 int magic)
Cornelia Huck17283b52007-05-04 18:47:51 +02002844{
2845 struct dasd_ccw_req *cqr;
2846 struct ccw1 *ccw;
Stefan Haberlandd9fa9442009-10-14 12:43:48 +02002847 unsigned long *idaw;
Cornelia Huck17283b52007-05-04 18:47:51 +02002848
2849 cqr = dasd_smalloc_request(magic, 1 /* RDC */, rdc_buffer_size, device);
2850
2851 if (IS_ERR(cqr)) {
Stefan Haberlandfc19f382009-03-26 15:23:49 +01002852 /* internal error 13 - Allocating the RDC request failed*/
2853 dev_err(&device->cdev->dev,
2854 "An error occurred in the DASD device driver, "
2855 "reason=%s\n", "13");
Cornelia Huck17283b52007-05-04 18:47:51 +02002856 return cqr;
2857 }
2858
2859 ccw = cqr->cpaddr;
2860 ccw->cmd_code = CCW_CMD_RDC;
Stefan Haberlandd9fa9442009-10-14 12:43:48 +02002861 if (idal_is_needed(rdc_buffer, rdc_buffer_size)) {
2862 idaw = (unsigned long *) (cqr->data);
2863 ccw->cda = (__u32)(addr_t) idaw;
2864 ccw->flags = CCW_FLAG_IDA;
2865 idaw = idal_create_words(idaw, rdc_buffer, rdc_buffer_size);
2866 } else {
2867 ccw->cda = (__u32)(addr_t) rdc_buffer;
2868 ccw->flags = 0;
2869 }
Cornelia Huck17283b52007-05-04 18:47:51 +02002870
Stefan Haberlandd9fa9442009-10-14 12:43:48 +02002871 ccw->count = rdc_buffer_size;
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002872 cqr->startdev = device;
2873 cqr->memdev = device;
Cornelia Huck17283b52007-05-04 18:47:51 +02002874 cqr->expires = 10*HZ;
Stefan Weinhubereb6e1992009-12-07 12:51:51 +01002875 cqr->retries = 256;
Cornelia Huck17283b52007-05-04 18:47:51 +02002876 cqr->buildclk = get_clock();
2877 cqr->status = DASD_CQR_FILLED;
2878 return cqr;
2879}
2880
2881
Stefan Haberland68b781f2009-09-11 10:28:29 +02002882int dasd_generic_read_dev_chars(struct dasd_device *device, int magic,
Sebastian Ott92636b12009-06-12 10:26:37 +02002883 void *rdc_buffer, int rdc_buffer_size)
Cornelia Huck17283b52007-05-04 18:47:51 +02002884{
2885 int ret;
2886 struct dasd_ccw_req *cqr;
2887
Sebastian Ott92636b12009-06-12 10:26:37 +02002888 cqr = dasd_generic_build_rdc(device, rdc_buffer, rdc_buffer_size,
Cornelia Huck17283b52007-05-04 18:47:51 +02002889 magic);
2890 if (IS_ERR(cqr))
2891 return PTR_ERR(cqr);
2892
2893 ret = dasd_sleep_on(cqr);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002894 dasd_sfree_request(cqr, cqr->memdev);
Cornelia Huck17283b52007-05-04 18:47:51 +02002895 return ret;
2896}
Cornelia Huckaaff0f62007-05-10 15:45:45 +02002897EXPORT_SYMBOL_GPL(dasd_generic_read_dev_chars);
Stefan Weinhuber20c64462006-03-24 03:15:25 -08002898
Stefan Weinhuberf3eb5382009-03-26 15:23:48 +01002899/*
2900 * In command mode and transport mode we need to look for sense
2901 * data in different places. The sense data itself is allways
2902 * an array of 32 bytes, so we can unify the sense data access
2903 * for both modes.
2904 */
2905char *dasd_get_sense(struct irb *irb)
2906{
2907 struct tsb *tsb = NULL;
2908 char *sense = NULL;
2909
2910 if (scsw_is_tm(&irb->scsw) && (irb->scsw.tm.fcxs == 0x01)) {
2911 if (irb->scsw.tm.tcw)
2912 tsb = tcw_get_tsb((struct tcw *)(unsigned long)
2913 irb->scsw.tm.tcw);
2914 if (tsb && tsb->length == 64 && tsb->flags)
2915 switch (tsb->flags & 0x07) {
2916 case 1: /* tsa_iostat */
2917 sense = tsb->tsa.iostat.sense;
2918 break;
2919 case 2: /* tsa_ddpc */
2920 sense = tsb->tsa.ddpc.sense;
2921 break;
2922 default:
2923 /* currently we don't use interrogate data */
2924 break;
2925 }
2926 } else if (irb->esw.esw0.erw.cons) {
2927 sense = irb->ecw;
2928 }
2929 return sense;
2930}
2931EXPORT_SYMBOL_GPL(dasd_get_sense);
2932
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002933static int __init dasd_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002934{
2935 int rc;
2936
2937 init_waitqueue_head(&dasd_init_waitq);
Horst Hummel8f617012006-08-30 14:33:33 +02002938 init_waitqueue_head(&dasd_flush_wq);
Stefan Haberlandc80ee722008-05-30 10:03:31 +02002939 init_waitqueue_head(&generic_waitq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002940
2941 /* register 'common' DASD debug area, used for all DBF_XXX calls */
Peter Tiedemann361f4942008-01-26 14:11:30 +01002942 dasd_debug_area = debug_register("dasd", 1, 1, 8 * sizeof(long));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002943 if (dasd_debug_area == NULL) {
2944 rc = -ENOMEM;
2945 goto failed;
2946 }
2947 debug_register_view(dasd_debug_area, &debug_sprintf_view);
Horst Hummelb0035f12006-09-20 15:59:07 +02002948 debug_set_level(dasd_debug_area, DBF_WARNING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002949
2950 DBF_EVENT(DBF_EMERG, "%s", "debug area created");
2951
2952 dasd_diag_discipline_pointer = NULL;
2953
Linus Torvalds1da177e2005-04-16 15:20:36 -07002954 rc = dasd_devmap_init();
2955 if (rc)
2956 goto failed;
2957 rc = dasd_gendisk_init();
2958 if (rc)
2959 goto failed;
2960 rc = dasd_parse();
2961 if (rc)
2962 goto failed;
Stefan Weinhuber20c64462006-03-24 03:15:25 -08002963 rc = dasd_eer_init();
2964 if (rc)
2965 goto failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002966#ifdef CONFIG_PROC_FS
2967 rc = dasd_proc_init();
2968 if (rc)
2969 goto failed;
2970#endif
2971
2972 return 0;
2973failed:
Stefan Haberlandfc19f382009-03-26 15:23:49 +01002974 pr_info("The DASD device driver could not be initialized\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002975 dasd_exit();
2976 return rc;
2977}
2978
2979module_init(dasd_init);
2980module_exit(dasd_exit);
2981
2982EXPORT_SYMBOL(dasd_debug_area);
2983EXPORT_SYMBOL(dasd_diag_discipline_pointer);
2984
2985EXPORT_SYMBOL(dasd_add_request_head);
2986EXPORT_SYMBOL(dasd_add_request_tail);
2987EXPORT_SYMBOL(dasd_cancel_req);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002988EXPORT_SYMBOL(dasd_device_clear_timer);
2989EXPORT_SYMBOL(dasd_block_clear_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002990EXPORT_SYMBOL(dasd_enable_device);
2991EXPORT_SYMBOL(dasd_int_handler);
2992EXPORT_SYMBOL(dasd_kfree_request);
2993EXPORT_SYMBOL(dasd_kick_device);
2994EXPORT_SYMBOL(dasd_kmalloc_request);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002995EXPORT_SYMBOL(dasd_schedule_device_bh);
2996EXPORT_SYMBOL(dasd_schedule_block_bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002997EXPORT_SYMBOL(dasd_set_target_state);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002998EXPORT_SYMBOL(dasd_device_set_timer);
2999EXPORT_SYMBOL(dasd_block_set_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003000EXPORT_SYMBOL(dasd_sfree_request);
3001EXPORT_SYMBOL(dasd_sleep_on);
3002EXPORT_SYMBOL(dasd_sleep_on_immediatly);
3003EXPORT_SYMBOL(dasd_sleep_on_interruptible);
3004EXPORT_SYMBOL(dasd_smalloc_request);
3005EXPORT_SYMBOL(dasd_start_IO);
3006EXPORT_SYMBOL(dasd_term_IO);
3007
3008EXPORT_SYMBOL_GPL(dasd_generic_probe);
3009EXPORT_SYMBOL_GPL(dasd_generic_remove);
3010EXPORT_SYMBOL_GPL(dasd_generic_notify);
3011EXPORT_SYMBOL_GPL(dasd_generic_set_online);
3012EXPORT_SYMBOL_GPL(dasd_generic_set_offline);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01003013EXPORT_SYMBOL_GPL(dasd_generic_handle_state_change);
3014EXPORT_SYMBOL_GPL(dasd_flush_device_queue);
3015EXPORT_SYMBOL_GPL(dasd_alloc_block);
3016EXPORT_SYMBOL_GPL(dasd_free_block);