blob: f16afe74464ff47d1b39b9b1702515e7e797d94c [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;
Stefan Weinhuber5a27e602011-01-05 12:48:04 +0100905 if (((cqr->block &&
906 test_bit(DASD_FLAG_LOCK_STOLEN, &cqr->block->base->flags)) ||
907 test_bit(DASD_FLAG_LOCK_STOLEN, &device->flags)) &&
908 !test_bit(DASD_CQR_ALLOW_SLOCK, &cqr->flags)) {
909 DBF_DEV_EVENT(DBF_DEBUG, device, "start_IO: return request %p "
910 "because of stolen lock", cqr);
911 cqr->status = DASD_CQR_ERROR;
912 cqr->intrc = -EPERM;
913 return -EPERM;
914 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 if (cqr->retries < 0) {
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100916 /* internal error 14 - start_IO run out of retries */
917 sprintf(errorstring, "14 %p", cqr);
918 dev_err(&device->cdev->dev, "An error occurred in the DASD "
919 "device driver, reason=%s\n", errorstring);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100920 cqr->status = DASD_CQR_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 return -EIO;
922 }
923 cqr->startclk = get_clock();
924 cqr->starttime = jiffies;
925 cqr->retries--;
Stefan Weinhubera4d26c62011-01-05 12:48:03 +0100926 if (!test_bit(DASD_CQR_VERIFY_PATH, &cqr->flags)) {
927 cqr->lpm &= device->path_data.opm;
928 if (!cqr->lpm)
929 cqr->lpm = device->path_data.opm;
930 }
Stefan Weinhuberf3eb5382009-03-26 15:23:48 +0100931 if (cqr->cpmode == 1) {
932 rc = ccw_device_tm_start(device->cdev, cqr->cpaddr,
933 (long) cqr, cqr->lpm);
934 } else {
935 rc = ccw_device_start(device->cdev, cqr->cpaddr,
936 (long) cqr, cqr->lpm, 0);
937 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 switch (rc) {
939 case 0:
940 cqr->status = DASD_CQR_IN_IO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 break;
942 case -EBUSY:
Stefan Weinhubera4d26c62011-01-05 12:48:03 +0100943 DBF_DEV_EVENT(DBF_WARNING, device, "%s",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 "start_IO: device busy, retry later");
945 break;
946 case -ETIMEDOUT:
Stefan Weinhubera4d26c62011-01-05 12:48:03 +0100947 DBF_DEV_EVENT(DBF_WARNING, device, "%s",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 "start_IO: request timeout, retry later");
949 break;
950 case -EACCES:
Stefan Weinhubera4d26c62011-01-05 12:48:03 +0100951 /* -EACCES indicates that the request used only a subset of the
952 * available paths and all these paths are gone. If the lpm of
953 * this request was only a subset of the opm (e.g. the ppm) then
954 * we just do a retry with all available paths.
955 * If we already use the full opm, something is amiss, and we
956 * need a full path verification.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 */
Stefan Weinhubera4d26c62011-01-05 12:48:03 +0100958 if (test_bit(DASD_CQR_VERIFY_PATH, &cqr->flags)) {
959 DBF_DEV_EVENT(DBF_WARNING, device,
960 "start_IO: selected paths gone (%x)",
961 cqr->lpm);
962 } else if (cqr->lpm != device->path_data.opm) {
963 cqr->lpm = device->path_data.opm;
964 DBF_DEV_EVENT(DBF_DEBUG, device, "%s",
965 "start_IO: selected paths gone,"
966 " retry on all paths");
967 } else {
968 DBF_DEV_EVENT(DBF_WARNING, device, "%s",
969 "start_IO: all paths in opm gone,"
970 " do path verification");
971 dasd_generic_last_path_gone(device);
972 device->path_data.opm = 0;
973 device->path_data.ppm = 0;
974 device->path_data.npm = 0;
975 device->path_data.tbvpm =
976 ccw_device_get_path_mask(device->cdev);
977 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 break;
979 case -ENODEV:
Stefan Weinhubera4d26c62011-01-05 12:48:03 +0100980 DBF_DEV_EVENT(DBF_WARNING, device, "%s",
Stefan Weinhuberf3eb5382009-03-26 15:23:48 +0100981 "start_IO: -ENODEV device gone, retry");
982 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 case -EIO:
Stefan Weinhubera4d26c62011-01-05 12:48:03 +0100984 DBF_DEV_EVENT(DBF_WARNING, device, "%s",
Stefan Weinhuberf3eb5382009-03-26 15:23:48 +0100985 "start_IO: -EIO device gone, retry");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 break;
Stefan Haberlandd41dd122009-06-16 10:30:25 +0200987 case -EINVAL:
988 /* most likely caused in power management context */
Stefan Weinhubera4d26c62011-01-05 12:48:03 +0100989 DBF_DEV_EVENT(DBF_WARNING, device, "%s",
Stefan Haberlandd41dd122009-06-16 10:30:25 +0200990 "start_IO: -EINVAL device currently "
991 "not accessible");
992 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 default:
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100994 /* internal error 11 - unknown rc */
995 snprintf(errorstring, ERRORLENGTH, "11 %d", rc);
996 dev_err(&device->cdev->dev,
997 "An error occurred in the DASD device driver, "
998 "reason=%s\n", errorstring);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 BUG();
1000 break;
1001 }
Stefan Weinhuber6cc7f162009-06-12 10:26:39 +02001002 cqr->intrc = rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 return rc;
1004}
1005
1006/*
1007 * Timeout function for dasd devices. This is used for different purposes
1008 * 1) missing interrupt handler for normal operation
1009 * 2) delayed start of request where start_IO failed with -EBUSY
1010 * 3) timeout for missing state change interrupts
1011 * The head of the ccw queue will have status DASD_CQR_IN_IO for 1),
1012 * DASD_CQR_QUEUED for 2) and 3).
1013 */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001014static void dasd_device_timeout(unsigned long ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015{
1016 unsigned long flags;
1017 struct dasd_device *device;
1018
1019 device = (struct dasd_device *) ptr;
1020 spin_lock_irqsave(get_ccwdev_lock(device->cdev), flags);
1021 /* re-activate request queue */
Stefan Weinhubereb6e1992009-12-07 12:51:51 +01001022 dasd_device_remove_stop_bits(device, DASD_STOPPED_PENDING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 spin_unlock_irqrestore(get_ccwdev_lock(device->cdev), flags);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001024 dasd_schedule_device_bh(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025}
1026
1027/*
1028 * Setup timeout for a device in jiffies.
1029 */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001030void dasd_device_set_timer(struct dasd_device *device, int expires)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031{
Stefan Weinhuber48cae882009-02-11 10:37:31 +01001032 if (expires == 0)
1033 del_timer(&device->timer);
1034 else
1035 mod_timer(&device->timer, jiffies + expires);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036}
1037
1038/*
1039 * Clear timeout for a device.
1040 */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001041void dasd_device_clear_timer(struct dasd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042{
Stefan Weinhuber48cae882009-02-11 10:37:31 +01001043 del_timer(&device->timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044}
1045
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001046static void dasd_handle_killed_request(struct ccw_device *cdev,
1047 unsigned long intparm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048{
1049 struct dasd_ccw_req *cqr;
1050 struct dasd_device *device;
1051
Stefan Weinhuberf16f5842008-05-15 16:52:36 +02001052 if (!intparm)
1053 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 cqr = (struct dasd_ccw_req *) intparm;
1055 if (cqr->status != DASD_CQR_IN_IO) {
Stefan Haberlandb8ed5dd2009-12-07 12:51:52 +01001056 DBF_EVENT_DEVID(DBF_DEBUG, cdev,
1057 "invalid status in handle_killed_request: "
1058 "%02x", cqr->status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 return;
1060 }
1061
Stefan Haberland589c74d2010-02-26 22:37:47 +01001062 device = dasd_device_from_cdev_locked(cdev);
1063 if (IS_ERR(device)) {
1064 DBF_EVENT_DEVID(DBF_DEBUG, cdev, "%s",
1065 "unable to get device from cdev");
1066 return;
1067 }
1068
1069 if (!cqr->startdev ||
1070 device != cqr->startdev ||
1071 strncmp(cqr->startdev->discipline->ebcname,
1072 (char *) &cqr->magic, 4)) {
Stefan Haberland294001a2010-01-27 10:12:35 +01001073 DBF_EVENT_DEVID(DBF_DEBUG, cdev, "%s",
1074 "invalid device in request");
Stefan Haberland589c74d2010-02-26 22:37:47 +01001075 dasd_put_device(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 return;
1077 }
1078
1079 /* Schedule request to be retried. */
1080 cqr->status = DASD_CQR_QUEUED;
1081
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001082 dasd_device_clear_timer(device);
1083 dasd_schedule_device_bh(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084 dasd_put_device(device);
1085}
1086
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001087void dasd_generic_handle_state_change(struct dasd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088{
Stefan Weinhuber20c64462006-03-24 03:15:25 -08001089 /* First of all start sense subsystem status request. */
1090 dasd_eer_snss(device);
1091
Stefan Weinhubereb6e1992009-12-07 12:51:51 +01001092 dasd_device_remove_stop_bits(device, DASD_STOPPED_PENDING);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001093 dasd_schedule_device_bh(device);
1094 if (device->block)
1095 dasd_schedule_block_bh(device->block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096}
1097
1098/*
1099 * Interrupt handler for "normal" ssch-io based dasd devices.
1100 */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001101void dasd_int_handler(struct ccw_device *cdev, unsigned long intparm,
1102 struct irb *irb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103{
1104 struct dasd_ccw_req *cqr, *next;
1105 struct dasd_device *device;
1106 unsigned long long now;
1107 int expires;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108
Heiko Carstens32839422011-01-05 12:47:30 +01001109 kstat_cpu(smp_processor_id()).irqs[IOINT_DAS]++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 if (IS_ERR(irb)) {
1111 switch (PTR_ERR(irb)) {
1112 case -EIO:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 break;
1114 case -ETIMEDOUT:
Stefan Haberlandb8ed5dd2009-12-07 12:51:52 +01001115 DBF_EVENT_DEVID(DBF_WARNING, cdev, "%s: "
1116 "request timed out\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117 break;
1118 default:
Stefan Haberlandb8ed5dd2009-12-07 12:51:52 +01001119 DBF_EVENT_DEVID(DBF_WARNING, cdev, "%s: "
1120 "unknown error %ld\n", __func__,
1121 PTR_ERR(irb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122 }
Stefan Weinhuberf16f5842008-05-15 16:52:36 +02001123 dasd_handle_killed_request(cdev, intparm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 return;
1125 }
1126
1127 now = get_clock();
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001128 cqr = (struct dasd_ccw_req *) intparm;
Stefan Weinhuber5a27e602011-01-05 12:48:04 +01001129 /* check for conditions that should be handled immediately */
1130 if (!cqr ||
1131 !(scsw_dstat(&irb->scsw) == (DEV_STAT_CHN_END | DEV_STAT_DEV_END) &&
1132 scsw_cstat(&irb->scsw) == 0)) {
Stefan Weinhubera5a00612010-10-25 16:10:47 +02001133 if (cqr)
1134 memcpy(&cqr->irb, irb, sizeof(*irb));
Martin Schwidefskya00bfd72006-09-20 15:59:05 +02001135 device = dasd_device_from_cdev_locked(cdev);
Stefan Haberland56b86b62010-10-25 16:10:49 +02001136 if (IS_ERR(device))
1137 return;
1138 /* ignore unsolicited interrupts for DIAG discipline */
1139 if (device->discipline == dasd_diag_discipline_pointer) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 dasd_put_device(device);
Stefan Haberland56b86b62010-10-25 16:10:49 +02001141 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 }
Stefan Weinhuber5a27e602011-01-05 12:48:04 +01001143 device->discipline->dump_sense_dbf(device, irb, "int");
1144 if (device->features & DASD_FEATURE_ERPLOG)
1145 device->discipline->dump_sense(device, cqr, irb);
1146 device->discipline->check_for_device_change(device, cqr, irb);
Stefan Haberland56b86b62010-10-25 16:10:49 +02001147 dasd_put_device(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 }
Stefan Weinhuber5a27e602011-01-05 12:48:04 +01001149 if (!cqr)
1150 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001152 device = (struct dasd_device *) cqr->startdev;
1153 if (!device ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 strncmp(device->discipline->ebcname, (char *) &cqr->magic, 4)) {
Stefan Haberland294001a2010-01-27 10:12:35 +01001155 DBF_EVENT_DEVID(DBF_DEBUG, cdev, "%s",
1156 "invalid device in request");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157 return;
1158 }
1159
1160 /* Check for clear pending */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001161 if (cqr->status == DASD_CQR_CLEAR_PENDING &&
Stefan Weinhuberf3eb5382009-03-26 15:23:48 +01001162 scsw_fctl(&irb->scsw) & SCSW_FCTL_CLEAR_FUNC) {
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001163 cqr->status = DASD_CQR_CLEARED;
1164 dasd_device_clear_timer(device);
Horst Hummel8f617012006-08-30 14:33:33 +02001165 wake_up(&dasd_flush_wq);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001166 dasd_schedule_device_bh(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 return;
1168 }
1169
Stefan Weinhuberf3eb5382009-03-26 15:23:48 +01001170 /* check status - the request might have been killed by dyn detach */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 if (cqr->status != DASD_CQR_IN_IO) {
Stefan Haberlandfc19f382009-03-26 15:23:49 +01001172 DBF_DEV_EVENT(DBF_DEBUG, device, "invalid status: bus_id %s, "
1173 "status %02x", dev_name(&cdev->dev), cqr->status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 return;
1175 }
Stefan Haberlandfc19f382009-03-26 15:23:49 +01001176
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001177 next = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 expires = 0;
Stefan Weinhuberf3eb5382009-03-26 15:23:48 +01001179 if (scsw_dstat(&irb->scsw) == (DEV_STAT_CHN_END | DEV_STAT_DEV_END) &&
1180 scsw_cstat(&irb->scsw) == 0) {
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001181 /* request was completed successfully */
1182 cqr->status = DASD_CQR_SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 cqr->stopclk = now;
1184 /* Start first request on queue if possible -> fast_io. */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001185 if (cqr->devlist.next != &device->ccw_queue) {
1186 next = list_entry(cqr->devlist.next,
1187 struct dasd_ccw_req, devlist);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188 }
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001189 } else { /* error */
Stefan Haberland6c5f57c2008-02-05 16:50:46 +01001190 /*
1191 * If we don't want complex ERP for this request, then just
1192 * reset this and retry it in the fastpath
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001193 */
Stefan Haberland6c5f57c2008-02-05 16:50:46 +01001194 if (!test_bit(DASD_CQR_FLAGS_USE_ERP, &cqr->flags) &&
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001195 cqr->retries > 0) {
Stefan Weinhubera4d26c62011-01-05 12:48:03 +01001196 if (cqr->lpm == device->path_data.opm)
Stefan Haberlandfc19f382009-03-26 15:23:49 +01001197 DBF_DEV_EVENT(DBF_DEBUG, device,
1198 "default ERP in fastpath "
1199 "(%i retries left)",
1200 cqr->retries);
Stefan Weinhubera4d26c62011-01-05 12:48:03 +01001201 if (!test_bit(DASD_CQR_VERIFY_PATH, &cqr->flags))
1202 cqr->lpm = device->path_data.opm;
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001203 cqr->status = DASD_CQR_QUEUED;
1204 next = cqr;
1205 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206 cqr->status = DASD_CQR_ERROR;
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001207 }
1208 if (next && (next->status == DASD_CQR_QUEUED) &&
1209 (!device->stopped)) {
1210 if (device->discipline->start_IO(next) == 0)
1211 expires = next->expires;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212 }
1213 if (expires != 0)
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001214 dasd_device_set_timer(device, expires);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215 else
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001216 dasd_device_clear_timer(device);
1217 dasd_schedule_device_bh(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218}
1219
Stefan Haberlanda23ed002010-05-26 23:27:09 +02001220enum uc_todo dasd_generic_uc_handler(struct ccw_device *cdev, struct irb *irb)
1221{
1222 struct dasd_device *device;
1223
1224 device = dasd_device_from_cdev_locked(cdev);
1225
1226 if (IS_ERR(device))
1227 goto out;
1228 if (test_bit(DASD_FLAG_OFFLINE, &device->flags) ||
1229 device->state != device->target ||
Stefan Weinhuber5a27e602011-01-05 12:48:04 +01001230 !device->discipline->check_for_device_change){
Stefan Haberlanda23ed002010-05-26 23:27:09 +02001231 dasd_put_device(device);
1232 goto out;
1233 }
Stefan Weinhuber5a27e602011-01-05 12:48:04 +01001234 if (device->discipline->dump_sense_dbf)
1235 device->discipline->dump_sense_dbf(device, irb, "uc");
1236 device->discipline->check_for_device_change(device, NULL, irb);
Stefan Haberlanda23ed002010-05-26 23:27:09 +02001237 dasd_put_device(device);
1238out:
1239 return UC_TODO_RETRY;
1240}
1241EXPORT_SYMBOL_GPL(dasd_generic_uc_handler);
1242
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243/*
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001244 * If we have an error on a dasd_block layer request then we cancel
1245 * and return all further requests from the same dasd_block as well.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246 */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001247static void __dasd_device_recovery(struct dasd_device *device,
1248 struct dasd_ccw_req *ref_cqr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249{
1250 struct list_head *l, *n;
1251 struct dasd_ccw_req *cqr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252
1253 /*
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001254 * only requeue request that came from the dasd_block layer
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001256 if (!ref_cqr->block)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257 return;
Horst Hummelf24acd42005-05-01 08:58:59 -07001258
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001259 list_for_each_safe(l, n, &device->ccw_queue) {
1260 cqr = list_entry(l, struct dasd_ccw_req, devlist);
1261 if (cqr->status == DASD_CQR_QUEUED &&
1262 ref_cqr->block == cqr->block) {
1263 cqr->status = DASD_CQR_CLEARED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264 }
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001265 }
1266};
1267
1268/*
1269 * Remove those ccw requests from the queue that need to be returned
1270 * to the upper layer.
1271 */
1272static void __dasd_device_process_ccw_queue(struct dasd_device *device,
1273 struct list_head *final_queue)
1274{
1275 struct list_head *l, *n;
1276 struct dasd_ccw_req *cqr;
1277
1278 /* Process request with final status. */
1279 list_for_each_safe(l, n, &device->ccw_queue) {
1280 cqr = list_entry(l, struct dasd_ccw_req, devlist);
1281
1282 /* Stop list processing at the first non-final request. */
1283 if (cqr->status == DASD_CQR_QUEUED ||
1284 cqr->status == DASD_CQR_IN_IO ||
1285 cqr->status == DASD_CQR_CLEAR_PENDING)
1286 break;
1287 if (cqr->status == DASD_CQR_ERROR) {
1288 __dasd_device_recovery(device, cqr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289 }
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001290 /* Rechain finished requests to final queue */
1291 list_move_tail(&cqr->devlist, final_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 }
1293}
1294
1295/*
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001296 * the cqrs from the final queue are returned to the upper layer
1297 * by setting a dasd_block state and calling the callback function
1298 */
1299static void __dasd_device_process_final_queue(struct dasd_device *device,
1300 struct list_head *final_queue)
1301{
1302 struct list_head *l, *n;
1303 struct dasd_ccw_req *cqr;
Stefan Weinhuber03513bc2008-02-19 15:29:27 +01001304 struct dasd_block *block;
Stefan Haberlandc80ee722008-05-30 10:03:31 +02001305 void (*callback)(struct dasd_ccw_req *, void *data);
1306 void *callback_data;
Stefan Haberlandfc19f382009-03-26 15:23:49 +01001307 char errorstring[ERRORLENGTH];
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001308
1309 list_for_each_safe(l, n, final_queue) {
1310 cqr = list_entry(l, struct dasd_ccw_req, devlist);
1311 list_del_init(&cqr->devlist);
Stefan Weinhuber03513bc2008-02-19 15:29:27 +01001312 block = cqr->block;
Stefan Haberlandc80ee722008-05-30 10:03:31 +02001313 callback = cqr->callback;
1314 callback_data = cqr->callback_data;
Stefan Weinhuber03513bc2008-02-19 15:29:27 +01001315 if (block)
1316 spin_lock_bh(&block->queue_lock);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001317 switch (cqr->status) {
1318 case DASD_CQR_SUCCESS:
1319 cqr->status = DASD_CQR_DONE;
1320 break;
1321 case DASD_CQR_ERROR:
1322 cqr->status = DASD_CQR_NEED_ERP;
1323 break;
1324 case DASD_CQR_CLEARED:
1325 cqr->status = DASD_CQR_TERMINATED;
1326 break;
1327 default:
Stefan Haberlandfc19f382009-03-26 15:23:49 +01001328 /* internal error 12 - wrong cqr status*/
1329 snprintf(errorstring, ERRORLENGTH, "12 %p %x02", cqr, cqr->status);
1330 dev_err(&device->cdev->dev,
1331 "An error occurred in the DASD device driver, "
1332 "reason=%s\n", errorstring);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001333 BUG();
1334 }
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001335 if (cqr->callback != NULL)
Stefan Haberlandc80ee722008-05-30 10:03:31 +02001336 (callback)(cqr, callback_data);
Stefan Weinhuber03513bc2008-02-19 15:29:27 +01001337 if (block)
1338 spin_unlock_bh(&block->queue_lock);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001339 }
1340}
1341
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001342/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343 * Take a look at the first request on the ccw queue and check
1344 * if it reached its expire time. If so, terminate the IO.
1345 */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001346static void __dasd_device_check_expire(struct dasd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347{
1348 struct dasd_ccw_req *cqr;
1349
1350 if (list_empty(&device->ccw_queue))
1351 return;
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001352 cqr = list_entry(device->ccw_queue.next, struct dasd_ccw_req, devlist);
Horst Hummel29145a62006-12-04 15:40:15 +01001353 if ((cqr->status == DASD_CQR_IN_IO && cqr->expires != 0) &&
1354 (time_after_eq(jiffies, cqr->expires + cqr->starttime))) {
1355 if (device->discipline->term_IO(cqr) != 0) {
1356 /* Hmpf, try again in 5 sec */
Stefan Haberlandfc19f382009-03-26 15:23:49 +01001357 dev_err(&device->cdev->dev,
Heiko Carstens625c94d2010-08-13 10:06:38 +02001358 "cqr %p timed out (%lus) but cannot be "
Stefan Haberlandfc19f382009-03-26 15:23:49 +01001359 "ended, retrying in 5 s\n",
1360 cqr, (cqr->expires/HZ));
Stefan Haberland7dc1da92008-01-26 14:11:26 +01001361 cqr->expires += 5*HZ;
1362 dasd_device_set_timer(device, 5*HZ);
Horst Hummel29145a62006-12-04 15:40:15 +01001363 } else {
Stefan Haberlandfc19f382009-03-26 15:23:49 +01001364 dev_err(&device->cdev->dev,
Heiko Carstens625c94d2010-08-13 10:06:38 +02001365 "cqr %p timed out (%lus), %i retries "
Stefan Haberlandfc19f382009-03-26 15:23:49 +01001366 "remaining\n", cqr, (cqr->expires/HZ),
1367 cqr->retries);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368 }
1369 }
1370}
1371
1372/*
1373 * Take a look at the first request on the ccw queue and check
1374 * if it needs to be started.
1375 */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001376static void __dasd_device_start_head(struct dasd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377{
1378 struct dasd_ccw_req *cqr;
1379 int rc;
1380
1381 if (list_empty(&device->ccw_queue))
1382 return;
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001383 cqr = list_entry(device->ccw_queue.next, struct dasd_ccw_req, devlist);
Peter Oberparleiter25ee4cf2006-04-10 22:53:47 -07001384 if (cqr->status != DASD_CQR_QUEUED)
1385 return;
Stefan Weinhubera4d26c62011-01-05 12:48:03 +01001386 /* when device is stopped, return request to previous layer
1387 * exception: only the disconnect or unresumed bits are set and the
1388 * cqr is a path verification request
1389 */
1390 if (device->stopped &&
1391 !(!(device->stopped & ~(DASD_STOPPED_DC_WAIT | DASD_UNRESUMED_PM))
1392 && test_bit(DASD_CQR_VERIFY_PATH, &cqr->flags))) {
1393 cqr->intrc = -EAGAIN;
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001394 cqr->status = DASD_CQR_CLEARED;
1395 dasd_schedule_device_bh(device);
Peter Oberparleiter25ee4cf2006-04-10 22:53:47 -07001396 return;
Horst Hummel1c01b8a2006-01-06 00:19:15 -08001397 }
Peter Oberparleiter25ee4cf2006-04-10 22:53:47 -07001398
1399 rc = device->discipline->start_IO(cqr);
1400 if (rc == 0)
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001401 dasd_device_set_timer(device, cqr->expires);
Peter Oberparleiter25ee4cf2006-04-10 22:53:47 -07001402 else if (rc == -EACCES) {
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001403 dasd_schedule_device_bh(device);
Peter Oberparleiter25ee4cf2006-04-10 22:53:47 -07001404 } else
1405 /* Hmpf, try again in 1/2 sec */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001406 dasd_device_set_timer(device, 50);
Horst Hummel8f617012006-08-30 14:33:33 +02001407}
1408
Stefan Weinhubera4d26c62011-01-05 12:48:03 +01001409static void __dasd_device_check_path_events(struct dasd_device *device)
1410{
1411 int rc;
1412
1413 if (device->path_data.tbvpm) {
1414 if (device->stopped & ~(DASD_STOPPED_DC_WAIT |
1415 DASD_UNRESUMED_PM))
1416 return;
1417 rc = device->discipline->verify_path(
1418 device, device->path_data.tbvpm);
1419 if (rc)
1420 dasd_device_set_timer(device, 50);
1421 else
1422 device->path_data.tbvpm = 0;
1423 }
1424};
1425
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426/*
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001427 * Go through all request on the dasd_device request queue,
1428 * terminate them on the cdev if necessary, and return them to the
1429 * submitting layer via callback.
1430 * Note:
1431 * Make sure that all 'submitting layers' still exist when
1432 * this function is called!. In other words, when 'device' is a base
1433 * device then all block layer requests must have been removed before
1434 * via dasd_flush_block_queue.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435 */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001436int dasd_flush_device_queue(struct dasd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437{
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001438 struct dasd_ccw_req *cqr, *n;
1439 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440 struct list_head flush_queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441
1442 INIT_LIST_HEAD(&flush_queue);
1443 spin_lock_irq(get_ccwdev_lock(device->cdev));
Horst Hummel8f617012006-08-30 14:33:33 +02001444 rc = 0;
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001445 list_for_each_entry_safe(cqr, n, &device->ccw_queue, devlist) {
Horst Hummel8f617012006-08-30 14:33:33 +02001446 /* Check status and move request to flush_queue */
1447 switch (cqr->status) {
1448 case DASD_CQR_IN_IO:
1449 rc = device->discipline->term_IO(cqr);
1450 if (rc) {
1451 /* unable to terminate requeust */
Stefan Haberlandfc19f382009-03-26 15:23:49 +01001452 dev_err(&device->cdev->dev,
1453 "Flushing the DASD request queue "
1454 "failed for request %p\n", cqr);
Horst Hummel8f617012006-08-30 14:33:33 +02001455 /* stop flush processing */
1456 goto finished;
1457 }
1458 break;
1459 case DASD_CQR_QUEUED:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460 cqr->stopclk = get_clock();
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001461 cqr->status = DASD_CQR_CLEARED;
Horst Hummel8f617012006-08-30 14:33:33 +02001462 break;
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001463 default: /* no need to modify the others */
Horst Hummel8f617012006-08-30 14:33:33 +02001464 break;
1465 }
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001466 list_move_tail(&cqr->devlist, &flush_queue);
Horst Hummel8f617012006-08-30 14:33:33 +02001467 }
Horst Hummel8f617012006-08-30 14:33:33 +02001468finished:
1469 spin_unlock_irq(get_ccwdev_lock(device->cdev));
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001470 /*
1471 * After this point all requests must be in state CLEAR_PENDING,
1472 * CLEARED, SUCCESS or ERROR. Now wait for CLEAR_PENDING to become
1473 * one of the others.
1474 */
1475 list_for_each_entry_safe(cqr, n, &flush_queue, devlist)
1476 wait_event(dasd_flush_wq,
1477 (cqr->status != DASD_CQR_CLEAR_PENDING));
1478 /*
1479 * Now set each request back to TERMINATED, DONE or NEED_ERP
1480 * and call the callback function of flushed requests
1481 */
1482 __dasd_device_process_final_queue(device, &flush_queue);
Horst Hummel8f617012006-08-30 14:33:33 +02001483 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484}
1485
1486/*
1487 * Acquire the device lock and process queues for the device.
1488 */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001489static void dasd_device_tasklet(struct dasd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490{
1491 struct list_head final_queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492
1493 atomic_set (&device->tasklet_scheduled, 0);
1494 INIT_LIST_HEAD(&final_queue);
1495 spin_lock_irq(get_ccwdev_lock(device->cdev));
1496 /* Check expire time of first request on the ccw queue. */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001497 __dasd_device_check_expire(device);
1498 /* find final requests on ccw queue */
1499 __dasd_device_process_ccw_queue(device, &final_queue);
Stefan Weinhubera4d26c62011-01-05 12:48:03 +01001500 __dasd_device_check_path_events(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501 spin_unlock_irq(get_ccwdev_lock(device->cdev));
1502 /* Now call the callback function of requests with final status */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001503 __dasd_device_process_final_queue(device, &final_queue);
1504 spin_lock_irq(get_ccwdev_lock(device->cdev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505 /* Now check if the head of the ccw queue needs to be started. */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001506 __dasd_device_start_head(device);
1507 spin_unlock_irq(get_ccwdev_lock(device->cdev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508 dasd_put_device(device);
1509}
1510
1511/*
1512 * Schedules a call to dasd_tasklet over the device tasklet.
1513 */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001514void dasd_schedule_device_bh(struct dasd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515{
1516 /* Protect against rescheduling. */
Martin Schwidefsky973bd992006-01-06 00:19:07 -08001517 if (atomic_cmpxchg (&device->tasklet_scheduled, 0, 1) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518 return;
1519 dasd_get_device(device);
1520 tasklet_hi_schedule(&device->tasklet);
1521}
1522
Stefan Weinhubereb6e1992009-12-07 12:51:51 +01001523void dasd_device_set_stop_bits(struct dasd_device *device, int bits)
1524{
1525 device->stopped |= bits;
1526}
1527EXPORT_SYMBOL_GPL(dasd_device_set_stop_bits);
1528
1529void dasd_device_remove_stop_bits(struct dasd_device *device, int bits)
1530{
1531 device->stopped &= ~bits;
1532 if (!device->stopped)
1533 wake_up(&generic_waitq);
1534}
1535EXPORT_SYMBOL_GPL(dasd_device_remove_stop_bits);
1536
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537/*
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001538 * Queue a request to the head of the device ccw_queue.
1539 * Start the I/O if possible.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540 */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001541void dasd_add_request_head(struct dasd_ccw_req *cqr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542{
1543 struct dasd_device *device;
1544 unsigned long flags;
1545
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001546 device = cqr->startdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547 spin_lock_irqsave(get_ccwdev_lock(device->cdev), flags);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001548 cqr->status = DASD_CQR_QUEUED;
1549 list_add(&cqr->devlist, &device->ccw_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550 /* let the bh start the request to keep them in order */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001551 dasd_schedule_device_bh(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552 spin_unlock_irqrestore(get_ccwdev_lock(device->cdev), flags);
1553}
1554
1555/*
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001556 * Queue a request to the tail of the device ccw_queue.
1557 * Start the I/O if possible.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558 */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001559void dasd_add_request_tail(struct dasd_ccw_req *cqr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560{
1561 struct dasd_device *device;
1562 unsigned long flags;
1563
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001564 device = cqr->startdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565 spin_lock_irqsave(get_ccwdev_lock(device->cdev), flags);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001566 cqr->status = DASD_CQR_QUEUED;
1567 list_add_tail(&cqr->devlist, &device->ccw_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568 /* let the bh start the request to keep them in order */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001569 dasd_schedule_device_bh(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570 spin_unlock_irqrestore(get_ccwdev_lock(device->cdev), flags);
1571}
1572
1573/*
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001574 * Wakeup helper for the 'sleep_on' functions.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575 */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001576static void dasd_wakeup_cb(struct dasd_ccw_req *cqr, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577{
Stefan Weinhuber1c1e0932010-05-12 09:32:11 +02001578 spin_lock_irq(get_ccwdev_lock(cqr->startdev->cdev));
1579 cqr->callback_data = DASD_SLEEPON_END_TAG;
1580 spin_unlock_irq(get_ccwdev_lock(cqr->startdev->cdev));
1581 wake_up(&generic_waitq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582}
1583
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001584static inline int _wait_for_wakeup(struct dasd_ccw_req *cqr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585{
1586 struct dasd_device *device;
1587 int rc;
1588
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001589 device = cqr->startdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590 spin_lock_irq(get_ccwdev_lock(device->cdev));
Stefan Weinhuber1c1e0932010-05-12 09:32:11 +02001591 rc = (cqr->callback_data == DASD_SLEEPON_END_TAG);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592 spin_unlock_irq(get_ccwdev_lock(device->cdev));
1593 return rc;
1594}
1595
1596/*
Stefan Weinhubereb6e1992009-12-07 12:51:51 +01001597 * checks if error recovery is necessary, returns 1 if yes, 0 otherwise.
1598 */
1599static int __dasd_sleep_on_erp(struct dasd_ccw_req *cqr)
1600{
1601 struct dasd_device *device;
1602 dasd_erp_fn_t erp_fn;
1603
1604 if (cqr->status == DASD_CQR_FILLED)
1605 return 0;
1606 device = cqr->startdev;
1607 if (test_bit(DASD_CQR_FLAGS_USE_ERP, &cqr->flags)) {
1608 if (cqr->status == DASD_CQR_TERMINATED) {
1609 device->discipline->handle_terminated_request(cqr);
1610 return 1;
1611 }
1612 if (cqr->status == DASD_CQR_NEED_ERP) {
1613 erp_fn = device->discipline->erp_action(cqr);
1614 erp_fn(cqr);
1615 return 1;
1616 }
1617 if (cqr->status == DASD_CQR_FAILED)
1618 dasd_log_sense(cqr, &cqr->irb);
1619 if (cqr->refers) {
1620 __dasd_process_erp(device, cqr);
1621 return 1;
1622 }
1623 }
1624 return 0;
1625}
1626
1627static int __dasd_sleep_on_loop_condition(struct dasd_ccw_req *cqr)
1628{
1629 if (test_bit(DASD_CQR_FLAGS_USE_ERP, &cqr->flags)) {
1630 if (cqr->refers) /* erp is not done yet */
1631 return 1;
1632 return ((cqr->status != DASD_CQR_DONE) &&
1633 (cqr->status != DASD_CQR_FAILED));
1634 } else
1635 return (cqr->status == DASD_CQR_FILLED);
1636}
1637
1638static int _dasd_sleep_on(struct dasd_ccw_req *maincqr, int interruptible)
1639{
1640 struct dasd_device *device;
1641 int rc;
1642 struct list_head ccw_queue;
1643 struct dasd_ccw_req *cqr;
1644
1645 INIT_LIST_HEAD(&ccw_queue);
1646 maincqr->status = DASD_CQR_FILLED;
1647 device = maincqr->startdev;
1648 list_add(&maincqr->blocklist, &ccw_queue);
1649 for (cqr = maincqr; __dasd_sleep_on_loop_condition(cqr);
1650 cqr = list_first_entry(&ccw_queue,
1651 struct dasd_ccw_req, blocklist)) {
1652
1653 if (__dasd_sleep_on_erp(cqr))
1654 continue;
1655 if (cqr->status != DASD_CQR_FILLED) /* could be failed */
1656 continue;
Stefan Weinhuber5a27e602011-01-05 12:48:04 +01001657 if (test_bit(DASD_FLAG_LOCK_STOLEN, &device->flags) &&
1658 !test_bit(DASD_CQR_ALLOW_SLOCK, &cqr->flags)) {
1659 cqr->status = DASD_CQR_FAILED;
1660 cqr->intrc = -EPERM;
1661 continue;
1662 }
Stefan Weinhubereb6e1992009-12-07 12:51:51 +01001663 /* 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 }
Stefan Weinhubereb6e1992009-12-07 12:51:51 +01001670 /* Don't try to start requests if device is stopped */
1671 if (interruptible) {
1672 rc = wait_event_interruptible(
1673 generic_waitq, !(device->stopped));
1674 if (rc == -ERESTARTSYS) {
1675 cqr->status = DASD_CQR_FAILED;
1676 maincqr->intrc = rc;
1677 continue;
1678 }
1679 } else
1680 wait_event(generic_waitq, !(device->stopped));
1681
1682 cqr->callback = dasd_wakeup_cb;
Stefan Weinhuber1c1e0932010-05-12 09:32:11 +02001683 cqr->callback_data = DASD_SLEEPON_START_TAG;
Stefan Weinhubereb6e1992009-12-07 12:51:51 +01001684 dasd_add_request_tail(cqr);
1685 if (interruptible) {
1686 rc = wait_event_interruptible(
1687 generic_waitq, _wait_for_wakeup(cqr));
1688 if (rc == -ERESTARTSYS) {
1689 dasd_cancel_req(cqr);
1690 /* wait (non-interruptible) for final status */
1691 wait_event(generic_waitq,
1692 _wait_for_wakeup(cqr));
1693 cqr->status = DASD_CQR_FAILED;
1694 maincqr->intrc = rc;
1695 continue;
1696 }
1697 } else
1698 wait_event(generic_waitq, _wait_for_wakeup(cqr));
1699 }
1700
1701 maincqr->endclk = get_clock();
1702 if ((maincqr->status != DASD_CQR_DONE) &&
1703 (maincqr->intrc != -ERESTARTSYS))
1704 dasd_log_sense(maincqr, &maincqr->irb);
1705 if (maincqr->status == DASD_CQR_DONE)
1706 rc = 0;
1707 else if (maincqr->intrc)
1708 rc = maincqr->intrc;
1709 else
1710 rc = -EIO;
1711 return rc;
1712}
1713
1714/*
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001715 * Queue a request to the tail of the device ccw_queue and wait for
1716 * it's completion.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717 */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001718int dasd_sleep_on(struct dasd_ccw_req *cqr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719{
Stefan Weinhubereb6e1992009-12-07 12:51:51 +01001720 return _dasd_sleep_on(cqr, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721}
1722
1723/*
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001724 * Queue a request to the tail of the device ccw_queue and wait
1725 * interruptible for it's completion.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726 */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001727int dasd_sleep_on_interruptible(struct dasd_ccw_req *cqr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728{
Stefan Weinhubereb6e1992009-12-07 12:51:51 +01001729 return _dasd_sleep_on(cqr, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730}
1731
1732/*
1733 * Whoa nelly now it gets really hairy. For some functions (e.g. steal lock
1734 * for eckd devices) the currently running request has to be terminated
1735 * and be put back to status queued, before the special request is added
1736 * to the head of the queue. Then the special request is waited on normally.
1737 */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001738static inline int _dasd_term_running_cqr(struct dasd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739{
1740 struct dasd_ccw_req *cqr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741
1742 if (list_empty(&device->ccw_queue))
1743 return 0;
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001744 cqr = list_entry(device->ccw_queue.next, struct dasd_ccw_req, devlist);
Horst Hummel8f617012006-08-30 14:33:33 +02001745 return device->discipline->term_IO(cqr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746}
1747
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001748int dasd_sleep_on_immediatly(struct dasd_ccw_req *cqr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750 struct dasd_device *device;
1751 int rc;
Horst Hummel138c0142006-06-29 14:58:12 +02001752
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001753 device = cqr->startdev;
Stefan Weinhuber5a27e602011-01-05 12:48:04 +01001754 if (test_bit(DASD_FLAG_LOCK_STOLEN, &device->flags) &&
1755 !test_bit(DASD_CQR_ALLOW_SLOCK, &cqr->flags)) {
1756 cqr->status = DASD_CQR_FAILED;
1757 cqr->intrc = -EPERM;
1758 return -EIO;
1759 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760 spin_lock_irq(get_ccwdev_lock(device->cdev));
1761 rc = _dasd_term_running_cqr(device);
1762 if (rc) {
1763 spin_unlock_irq(get_ccwdev_lock(device->cdev));
1764 return rc;
1765 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766 cqr->callback = dasd_wakeup_cb;
Stefan Weinhuber1c1e0932010-05-12 09:32:11 +02001767 cqr->callback_data = DASD_SLEEPON_START_TAG;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768 cqr->status = DASD_CQR_QUEUED;
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001769 list_add(&cqr->devlist, &device->ccw_queue);
Horst Hummel138c0142006-06-29 14:58:12 +02001770
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771 /* let the bh start the request to keep them in order */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001772 dasd_schedule_device_bh(device);
Horst Hummel138c0142006-06-29 14:58:12 +02001773
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774 spin_unlock_irq(get_ccwdev_lock(device->cdev));
1775
Stefan Haberlandc80ee722008-05-30 10:03:31 +02001776 wait_event(generic_waitq, _wait_for_wakeup(cqr));
Horst Hummel138c0142006-06-29 14:58:12 +02001777
Stefan Weinhuber6cc7f162009-06-12 10:26:39 +02001778 if (cqr->status == DASD_CQR_DONE)
1779 rc = 0;
1780 else if (cqr->intrc)
1781 rc = cqr->intrc;
1782 else
1783 rc = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784 return rc;
1785}
1786
1787/*
1788 * Cancels a request that was started with dasd_sleep_on_req.
1789 * This is useful to timeout requests. The request will be
1790 * terminated if it is currently in i/o.
1791 * Returns 1 if the request has been terminated.
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001792 * 0 if there was no need to terminate the request (not started yet)
1793 * negative error code if termination failed
1794 * Cancellation of a request is an asynchronous operation! The calling
1795 * function has to wait until the request is properly returned via callback.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796 */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001797int dasd_cancel_req(struct dasd_ccw_req *cqr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798{
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001799 struct dasd_device *device = cqr->startdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800 unsigned long flags;
1801 int rc;
1802
1803 rc = 0;
1804 spin_lock_irqsave(get_ccwdev_lock(device->cdev), flags);
1805 switch (cqr->status) {
1806 case DASD_CQR_QUEUED:
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001807 /* request was not started - just set to cleared */
1808 cqr->status = DASD_CQR_CLEARED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809 break;
1810 case DASD_CQR_IN_IO:
1811 /* request in IO - terminate IO and release again */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001812 rc = device->discipline->term_IO(cqr);
1813 if (rc) {
Stefan Haberlandfc19f382009-03-26 15:23:49 +01001814 dev_err(&device->cdev->dev,
1815 "Cancelling request %p failed with rc=%d\n",
1816 cqr, rc);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001817 } else {
1818 cqr->stopclk = get_clock();
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001819 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820 break;
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001821 default: /* already finished or clear pending - do nothing */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823 }
1824 spin_unlock_irqrestore(get_ccwdev_lock(device->cdev), flags);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001825 dasd_schedule_device_bh(device);
1826 return rc;
1827}
1828
1829
1830/*
1831 * SECTION: Operations of the dasd_block layer.
1832 */
1833
1834/*
1835 * Timeout function for dasd_block. This is used when the block layer
1836 * is waiting for something that may not come reliably, (e.g. a state
1837 * change interrupt)
1838 */
1839static void dasd_block_timeout(unsigned long ptr)
1840{
1841 unsigned long flags;
1842 struct dasd_block *block;
1843
1844 block = (struct dasd_block *) ptr;
1845 spin_lock_irqsave(get_ccwdev_lock(block->base->cdev), flags);
1846 /* re-activate request queue */
Stefan Weinhubereb6e1992009-12-07 12:51:51 +01001847 dasd_device_remove_stop_bits(block->base, DASD_STOPPED_PENDING);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001848 spin_unlock_irqrestore(get_ccwdev_lock(block->base->cdev), flags);
1849 dasd_schedule_block_bh(block);
1850}
1851
1852/*
1853 * Setup timeout for a dasd_block in jiffies.
1854 */
1855void dasd_block_set_timer(struct dasd_block *block, int expires)
1856{
Stefan Weinhuber48cae882009-02-11 10:37:31 +01001857 if (expires == 0)
1858 del_timer(&block->timer);
1859 else
1860 mod_timer(&block->timer, jiffies + expires);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001861}
1862
1863/*
1864 * Clear timeout for a dasd_block.
1865 */
1866void dasd_block_clear_timer(struct dasd_block *block)
1867{
Stefan Weinhuber48cae882009-02-11 10:37:31 +01001868 del_timer(&block->timer);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001869}
1870
1871/*
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001872 * Process finished error recovery ccw.
1873 */
Stefan Weinhubereb6e1992009-12-07 12:51:51 +01001874static void __dasd_process_erp(struct dasd_device *device,
1875 struct dasd_ccw_req *cqr)
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001876{
1877 dasd_erp_fn_t erp_fn;
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001878
1879 if (cqr->status == DASD_CQR_DONE)
1880 DBF_DEV_EVENT(DBF_NOTICE, device, "%s", "ERP successful");
1881 else
Stefan Haberlandfc19f382009-03-26 15:23:49 +01001882 dev_err(&device->cdev->dev, "ERP failed for the DASD\n");
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001883 erp_fn = device->discipline->erp_postaction(cqr);
1884 erp_fn(cqr);
1885}
1886
1887/*
1888 * Fetch requests from the block device queue.
1889 */
1890static void __dasd_process_request_queue(struct dasd_block *block)
1891{
1892 struct request_queue *queue;
1893 struct request *req;
1894 struct dasd_ccw_req *cqr;
1895 struct dasd_device *basedev;
1896 unsigned long flags;
1897 queue = block->request_queue;
1898 basedev = block->base;
1899 /* No queue ? Then there is nothing to do. */
1900 if (queue == NULL)
1901 return;
1902
1903 /*
1904 * We requeue request from the block device queue to the ccw
1905 * queue only in two states. In state DASD_STATE_READY the
1906 * partition detection is done and we need to requeue requests
1907 * for that. State DASD_STATE_ONLINE is normal block device
1908 * operation.
1909 */
Stefan Weinhuber97f604b2009-09-11 10:28:28 +02001910 if (basedev->state < DASD_STATE_READY) {
1911 while ((req = blk_fetch_request(block->request_queue)))
1912 __blk_end_request_all(req, -EIO);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001913 return;
Stefan Weinhuber97f604b2009-09-11 10:28:28 +02001914 }
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001915 /* Now we try to fetch requests from the request queue */
Tejun Heo9934c8c2009-05-08 11:54:16 +09001916 while (!blk_queue_plugged(queue) && (req = blk_peek_request(queue))) {
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001917 if (basedev->features & DASD_FEATURE_READONLY &&
1918 rq_data_dir(req) == WRITE) {
1919 DBF_DEV_EVENT(DBF_ERR, basedev,
1920 "Rejecting write request %p",
1921 req);
Tejun Heo9934c8c2009-05-08 11:54:16 +09001922 blk_start_request(req);
Tejun Heo40cbbb72009-04-23 11:05:19 +09001923 __blk_end_request_all(req, -EIO);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001924 continue;
1925 }
1926 cqr = basedev->discipline->build_cp(basedev, block, req);
1927 if (IS_ERR(cqr)) {
1928 if (PTR_ERR(cqr) == -EBUSY)
1929 break; /* normal end condition */
1930 if (PTR_ERR(cqr) == -ENOMEM)
1931 break; /* terminate request queue loop */
1932 if (PTR_ERR(cqr) == -EAGAIN) {
1933 /*
1934 * The current request cannot be build right
1935 * now, we have to try later. If this request
1936 * is the head-of-queue we stop the device
1937 * for 1/2 second.
1938 */
1939 if (!list_empty(&block->ccw_queue))
1940 break;
Stefan Weinhubereb6e1992009-12-07 12:51:51 +01001941 spin_lock_irqsave(
1942 get_ccwdev_lock(basedev->cdev), flags);
1943 dasd_device_set_stop_bits(basedev,
1944 DASD_STOPPED_PENDING);
1945 spin_unlock_irqrestore(
1946 get_ccwdev_lock(basedev->cdev), flags);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001947 dasd_block_set_timer(block, HZ/2);
1948 break;
1949 }
1950 DBF_DEV_EVENT(DBF_ERR, basedev,
1951 "CCW creation failed (rc=%ld) "
1952 "on request %p",
1953 PTR_ERR(cqr), req);
Tejun Heo9934c8c2009-05-08 11:54:16 +09001954 blk_start_request(req);
Tejun Heo40cbbb72009-04-23 11:05:19 +09001955 __blk_end_request_all(req, -EIO);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001956 continue;
1957 }
1958 /*
1959 * Note: callback is set to dasd_return_cqr_cb in
1960 * __dasd_block_start_head to cover erp requests as well
1961 */
1962 cqr->callback_data = (void *) req;
1963 cqr->status = DASD_CQR_FILLED;
Tejun Heo9934c8c2009-05-08 11:54:16 +09001964 blk_start_request(req);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001965 list_add_tail(&cqr->blocklist, &block->ccw_queue);
1966 dasd_profile_start(block, cqr, req);
1967 }
1968}
1969
1970static void __dasd_cleanup_cqr(struct dasd_ccw_req *cqr)
1971{
1972 struct request *req;
1973 int status;
Kiyoshi Ueda4c4e2142008-01-28 10:29:42 +01001974 int error = 0;
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001975
1976 req = (struct request *) cqr->callback_data;
1977 dasd_profile_end(cqr->block, cqr, req);
Stefan Weinhuberfe6b8e72008-02-05 16:50:47 +01001978 status = cqr->block->base->discipline->free_cp(cqr, req);
Kiyoshi Ueda4c4e2142008-01-28 10:29:42 +01001979 if (status <= 0)
1980 error = status ? status : -EIO;
Tejun Heo40cbbb72009-04-23 11:05:19 +09001981 __blk_end_request_all(req, error);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001982}
1983
1984/*
1985 * Process ccw request queue.
1986 */
1987static void __dasd_process_block_ccw_queue(struct dasd_block *block,
1988 struct list_head *final_queue)
1989{
1990 struct list_head *l, *n;
1991 struct dasd_ccw_req *cqr;
1992 dasd_erp_fn_t erp_fn;
1993 unsigned long flags;
1994 struct dasd_device *base = block->base;
1995
1996restart:
1997 /* Process request with final status. */
1998 list_for_each_safe(l, n, &block->ccw_queue) {
1999 cqr = list_entry(l, struct dasd_ccw_req, blocklist);
2000 if (cqr->status != DASD_CQR_DONE &&
2001 cqr->status != DASD_CQR_FAILED &&
2002 cqr->status != DASD_CQR_NEED_ERP &&
2003 cqr->status != DASD_CQR_TERMINATED)
2004 continue;
2005
2006 if (cqr->status == DASD_CQR_TERMINATED) {
2007 base->discipline->handle_terminated_request(cqr);
2008 goto restart;
2009 }
2010
2011 /* Process requests that may be recovered */
2012 if (cqr->status == DASD_CQR_NEED_ERP) {
Stefan Haberland6c5f57c2008-02-05 16:50:46 +01002013 erp_fn = base->discipline->erp_action(cqr);
Stefan Haberland6a5176c2010-04-22 17:17:02 +02002014 if (IS_ERR(erp_fn(cqr)))
2015 continue;
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002016 goto restart;
2017 }
2018
Stefan Haberlanda9cffb22008-11-14 18:18:08 +01002019 /* log sense for fatal error */
2020 if (cqr->status == DASD_CQR_FAILED) {
2021 dasd_log_sense(cqr, &cqr->irb);
2022 }
2023
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002024 /* First of all call extended error reporting. */
2025 if (dasd_eer_enabled(base) &&
2026 cqr->status == DASD_CQR_FAILED) {
2027 dasd_eer_write(base, cqr, DASD_EER_FATALERROR);
2028
2029 /* restart request */
2030 cqr->status = DASD_CQR_FILLED;
2031 cqr->retries = 255;
2032 spin_lock_irqsave(get_ccwdev_lock(base->cdev), flags);
Stefan Weinhubereb6e1992009-12-07 12:51:51 +01002033 dasd_device_set_stop_bits(base, DASD_STOPPED_QUIESCE);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002034 spin_unlock_irqrestore(get_ccwdev_lock(base->cdev),
2035 flags);
2036 goto restart;
2037 }
2038
2039 /* Process finished ERP request. */
2040 if (cqr->refers) {
Stefan Weinhubereb6e1992009-12-07 12:51:51 +01002041 __dasd_process_erp(base, cqr);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002042 goto restart;
2043 }
2044
2045 /* Rechain finished requests to final queue */
2046 cqr->endclk = get_clock();
2047 list_move_tail(&cqr->blocklist, final_queue);
2048 }
2049}
2050
2051static void dasd_return_cqr_cb(struct dasd_ccw_req *cqr, void *data)
2052{
2053 dasd_schedule_block_bh(cqr->block);
2054}
2055
2056static void __dasd_block_start_head(struct dasd_block *block)
2057{
2058 struct dasd_ccw_req *cqr;
2059
2060 if (list_empty(&block->ccw_queue))
2061 return;
2062 /* We allways begin with the first requests on the queue, as some
2063 * of previously started requests have to be enqueued on a
2064 * dasd_device again for error recovery.
2065 */
2066 list_for_each_entry(cqr, &block->ccw_queue, blocklist) {
2067 if (cqr->status != DASD_CQR_FILLED)
2068 continue;
Stefan Weinhuber5a27e602011-01-05 12:48:04 +01002069 if (test_bit(DASD_FLAG_LOCK_STOLEN, &block->base->flags) &&
2070 !test_bit(DASD_CQR_ALLOW_SLOCK, &cqr->flags)) {
2071 cqr->status = DASD_CQR_FAILED;
2072 cqr->intrc = -EPERM;
2073 dasd_schedule_block_bh(block);
2074 continue;
2075 }
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002076 /* Non-temporary stop condition will trigger fail fast */
2077 if (block->base->stopped & ~DASD_STOPPED_PENDING &&
2078 test_bit(DASD_CQR_FLAGS_FAILFAST, &cqr->flags) &&
2079 (!dasd_eer_enabled(block->base))) {
2080 cqr->status = DASD_CQR_FAILED;
2081 dasd_schedule_block_bh(block);
2082 continue;
2083 }
2084 /* Don't try to start requests if device is stopped */
2085 if (block->base->stopped)
2086 return;
2087
2088 /* just a fail safe check, should not happen */
2089 if (!cqr->startdev)
2090 cqr->startdev = block->base;
2091
2092 /* make sure that the requests we submit find their way back */
2093 cqr->callback = dasd_return_cqr_cb;
2094
2095 dasd_add_request_tail(cqr);
2096 }
2097}
2098
2099/*
2100 * Central dasd_block layer routine. Takes requests from the generic
2101 * block layer request queue, creates ccw requests, enqueues them on
2102 * a dasd_device and processes ccw requests that have been returned.
2103 */
2104static void dasd_block_tasklet(struct dasd_block *block)
2105{
2106 struct list_head final_queue;
2107 struct list_head *l, *n;
2108 struct dasd_ccw_req *cqr;
2109
2110 atomic_set(&block->tasklet_scheduled, 0);
2111 INIT_LIST_HEAD(&final_queue);
2112 spin_lock(&block->queue_lock);
2113 /* Finish off requests on ccw queue */
2114 __dasd_process_block_ccw_queue(block, &final_queue);
2115 spin_unlock(&block->queue_lock);
2116 /* Now call the callback function of requests with final status */
2117 spin_lock_irq(&block->request_queue_lock);
2118 list_for_each_safe(l, n, &final_queue) {
2119 cqr = list_entry(l, struct dasd_ccw_req, blocklist);
2120 list_del_init(&cqr->blocklist);
2121 __dasd_cleanup_cqr(cqr);
2122 }
2123 spin_lock(&block->queue_lock);
2124 /* Get new request from the block device request queue */
2125 __dasd_process_request_queue(block);
2126 /* Now check if the head of the ccw queue needs to be started. */
2127 __dasd_block_start_head(block);
2128 spin_unlock(&block->queue_lock);
2129 spin_unlock_irq(&block->request_queue_lock);
2130 dasd_put_device(block->base);
2131}
2132
2133static void _dasd_wake_block_flush_cb(struct dasd_ccw_req *cqr, void *data)
2134{
2135 wake_up(&dasd_flush_wq);
2136}
2137
2138/*
2139 * Go through all request on the dasd_block request queue, cancel them
2140 * on the respective dasd_device, and return them to the generic
2141 * block layer.
2142 */
2143static int dasd_flush_block_queue(struct dasd_block *block)
2144{
2145 struct dasd_ccw_req *cqr, *n;
2146 int rc, i;
2147 struct list_head flush_queue;
2148
2149 INIT_LIST_HEAD(&flush_queue);
2150 spin_lock_bh(&block->queue_lock);
2151 rc = 0;
2152restart:
2153 list_for_each_entry_safe(cqr, n, &block->ccw_queue, blocklist) {
2154 /* if this request currently owned by a dasd_device cancel it */
2155 if (cqr->status >= DASD_CQR_QUEUED)
2156 rc = dasd_cancel_req(cqr);
2157 if (rc < 0)
2158 break;
2159 /* Rechain request (including erp chain) so it won't be
2160 * touched by the dasd_block_tasklet anymore.
2161 * Replace the callback so we notice when the request
2162 * is returned from the dasd_device layer.
2163 */
2164 cqr->callback = _dasd_wake_block_flush_cb;
2165 for (i = 0; cqr != NULL; cqr = cqr->refers, i++)
2166 list_move_tail(&cqr->blocklist, &flush_queue);
2167 if (i > 1)
2168 /* moved more than one request - need to restart */
2169 goto restart;
2170 }
2171 spin_unlock_bh(&block->queue_lock);
2172 /* Now call the callback function of flushed requests */
2173restart_cb:
2174 list_for_each_entry_safe(cqr, n, &flush_queue, blocklist) {
2175 wait_event(dasd_flush_wq, (cqr->status < DASD_CQR_QUEUED));
2176 /* Process finished ERP request. */
2177 if (cqr->refers) {
Stefan Haberland0cd4bd42008-12-25 13:38:54 +01002178 spin_lock_bh(&block->queue_lock);
Stefan Weinhubereb6e1992009-12-07 12:51:51 +01002179 __dasd_process_erp(block->base, cqr);
Stefan Haberland0cd4bd42008-12-25 13:38:54 +01002180 spin_unlock_bh(&block->queue_lock);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002181 /* restart list_for_xx loop since dasd_process_erp
2182 * might remove multiple elements */
2183 goto restart_cb;
2184 }
2185 /* call the callback function */
Stefan Haberland0cd4bd42008-12-25 13:38:54 +01002186 spin_lock_irq(&block->request_queue_lock);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002187 cqr->endclk = get_clock();
2188 list_del_init(&cqr->blocklist);
2189 __dasd_cleanup_cqr(cqr);
Stefan Haberland0cd4bd42008-12-25 13:38:54 +01002190 spin_unlock_irq(&block->request_queue_lock);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002191 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192 return rc;
2193}
2194
2195/*
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002196 * Schedules a call to dasd_tasklet over the device tasklet.
2197 */
2198void dasd_schedule_block_bh(struct dasd_block *block)
2199{
2200 /* Protect against rescheduling. */
2201 if (atomic_cmpxchg(&block->tasklet_scheduled, 0, 1) != 0)
2202 return;
2203 /* life cycle of block is bound to it's base device */
2204 dasd_get_device(block->base);
2205 tasklet_hi_schedule(&block->tasklet);
2206}
2207
2208
2209/*
2210 * SECTION: external block device operations
2211 * (request queue handling, open, release, etc.)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212 */
2213
2214/*
2215 * Dasd request queue function. Called from ll_rw_blk.c
2216 */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002217static void do_dasd_request(struct request_queue *queue)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218{
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002219 struct dasd_block *block;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002221 block = queue->queuedata;
2222 spin_lock(&block->queue_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223 /* Get new request from the block device request queue */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002224 __dasd_process_request_queue(block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225 /* Now check if the head of the ccw queue needs to be started. */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002226 __dasd_block_start_head(block);
2227 spin_unlock(&block->queue_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002228}
2229
2230/*
2231 * Allocate and initialize request queue and default I/O scheduler.
2232 */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002233static int dasd_alloc_queue(struct dasd_block *block)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002234{
2235 int rc;
2236
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002237 block->request_queue = blk_init_queue(do_dasd_request,
2238 &block->request_queue_lock);
2239 if (block->request_queue == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240 return -ENOMEM;
2241
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002242 block->request_queue->queuedata = block;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002244 elevator_exit(block->request_queue->elevator);
Josef 'Jeff' Sipek08a8a0c2008-04-17 07:45:56 +02002245 block->request_queue->elevator = NULL;
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002246 rc = elevator_init(block->request_queue, "deadline");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247 if (rc) {
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002248 blk_cleanup_queue(block->request_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002249 return rc;
2250 }
2251 return 0;
2252}
2253
2254/*
2255 * Allocate and initialize request queue.
2256 */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002257static void dasd_setup_queue(struct dasd_block *block)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002258{
2259 int max;
2260
Martin K. Petersene1defc42009-05-22 17:17:49 -04002261 blk_queue_logical_block_size(block->request_queue, block->bp_block);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002262 max = block->base->discipline->max_blocks << block->s2b_shift;
Martin K. Petersen086fa5f2010-02-26 00:20:38 -05002263 blk_queue_max_hw_sectors(block->request_queue, max);
Martin K. Petersen8a783622010-02-26 00:20:39 -05002264 blk_queue_max_segments(block->request_queue, -1L);
Stefan Weinhuberf3eb5382009-03-26 15:23:48 +01002265 /* with page sized segments we can translate each segement into
2266 * one idaw/tidaw
2267 */
2268 blk_queue_max_segment_size(block->request_queue, PAGE_SIZE);
2269 blk_queue_segment_boundary(block->request_queue, PAGE_SIZE - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270}
2271
2272/*
2273 * Deactivate and free request queue.
2274 */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002275static void dasd_free_queue(struct dasd_block *block)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276{
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002277 if (block->request_queue) {
2278 blk_cleanup_queue(block->request_queue);
2279 block->request_queue = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002280 }
2281}
2282
2283/*
2284 * Flush request on the request queue.
2285 */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002286static void dasd_flush_request_queue(struct dasd_block *block)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002287{
2288 struct request *req;
2289
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002290 if (!block->request_queue)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002291 return;
Horst Hummel138c0142006-06-29 14:58:12 +02002292
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002293 spin_lock_irq(&block->request_queue_lock);
Tejun Heo9934c8c2009-05-08 11:54:16 +09002294 while ((req = blk_fetch_request(block->request_queue)))
Tejun Heo40cbbb72009-04-23 11:05:19 +09002295 __blk_end_request_all(req, -EIO);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002296 spin_unlock_irq(&block->request_queue_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002297}
2298
Al Viro57a7c0b2008-03-02 10:36:08 -05002299static int dasd_open(struct block_device *bdev, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002300{
Al Viro57a7c0b2008-03-02 10:36:08 -05002301 struct dasd_block *block = bdev->bd_disk->private_data;
Stefan Haberland9eb25122010-02-26 22:37:46 +01002302 struct dasd_device *base;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002303 int rc;
2304
Stefan Haberland9eb25122010-02-26 22:37:46 +01002305 if (!block)
2306 return -ENODEV;
2307
2308 base = block->base;
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002309 atomic_inc(&block->open_count);
2310 if (test_bit(DASD_FLAG_OFFLINE, &base->flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002311 rc = -ENODEV;
2312 goto unlock;
2313 }
2314
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002315 if (!try_module_get(base->discipline->owner)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002316 rc = -EINVAL;
2317 goto unlock;
2318 }
2319
2320 if (dasd_probeonly) {
Stefan Haberlandfc19f382009-03-26 15:23:49 +01002321 dev_info(&base->cdev->dev,
2322 "Accessing the DASD failed because it is in "
2323 "probeonly mode\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324 rc = -EPERM;
2325 goto out;
2326 }
2327
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002328 if (base->state <= DASD_STATE_BASIC) {
2329 DBF_DEV_EVENT(DBF_ERR, base, " %s",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002330 " Cannot open unrecognized device");
2331 rc = -ENODEV;
2332 goto out;
2333 }
2334
Stefan Weinhuber33b62a32010-03-08 12:26:24 +01002335 if ((mode & FMODE_WRITE) &&
2336 (test_bit(DASD_FLAG_DEVICE_RO, &base->flags) ||
2337 (base->features & DASD_FEATURE_READONLY))) {
2338 rc = -EROFS;
2339 goto out;
2340 }
2341
Linus Torvalds1da177e2005-04-16 15:20:36 -07002342 return 0;
2343
2344out:
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002345 module_put(base->discipline->owner);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002346unlock:
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002347 atomic_dec(&block->open_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002348 return rc;
2349}
2350
Al Viro57a7c0b2008-03-02 10:36:08 -05002351static int dasd_release(struct gendisk *disk, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002352{
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002353 struct dasd_block *block = disk->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002354
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002355 atomic_dec(&block->open_count);
2356 module_put(block->base->discipline->owner);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357 return 0;
2358}
2359
Christoph Hellwiga885c8c2006-01-08 01:02:50 -08002360/*
2361 * Return disk geometry.
2362 */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002363static int dasd_getgeo(struct block_device *bdev, struct hd_geometry *geo)
Christoph Hellwiga885c8c2006-01-08 01:02:50 -08002364{
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002365 struct dasd_block *block;
2366 struct dasd_device *base;
Christoph Hellwiga885c8c2006-01-08 01:02:50 -08002367
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002368 block = bdev->bd_disk->private_data;
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002369 if (!block)
Christoph Hellwiga885c8c2006-01-08 01:02:50 -08002370 return -ENODEV;
Julia Lawallcf05b822009-08-23 18:09:05 +02002371 base = block->base;
Christoph Hellwiga885c8c2006-01-08 01:02:50 -08002372
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002373 if (!base->discipline ||
2374 !base->discipline->fill_geometry)
Christoph Hellwiga885c8c2006-01-08 01:02:50 -08002375 return -EINVAL;
2376
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002377 base->discipline->fill_geometry(block, geo);
2378 geo->start = get_start_sect(bdev) >> block->s2b_shift;
Christoph Hellwiga885c8c2006-01-08 01:02:50 -08002379 return 0;
2380}
2381
Alexey Dobriyan83d5cde2009-09-21 17:01:13 -07002382const struct block_device_operations
Linus Torvalds1da177e2005-04-16 15:20:36 -07002383dasd_device_operations = {
2384 .owner = THIS_MODULE,
Al Viro57a7c0b2008-03-02 10:36:08 -05002385 .open = dasd_open,
2386 .release = dasd_release,
Heiko Carstens0000d032009-03-26 15:23:45 +01002387 .ioctl = dasd_ioctl,
2388 .compat_ioctl = dasd_ioctl,
Christoph Hellwiga885c8c2006-01-08 01:02:50 -08002389 .getgeo = dasd_getgeo,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002390};
2391
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002392/*******************************************************************************
2393 * end of block device operations
2394 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002395
2396static void
2397dasd_exit(void)
2398{
2399#ifdef CONFIG_PROC_FS
2400 dasd_proc_exit();
2401#endif
Stefan Weinhuber20c64462006-03-24 03:15:25 -08002402 dasd_eer_exit();
Horst Hummel6bb0e012005-07-27 11:45:03 -07002403 if (dasd_page_cache != NULL) {
2404 kmem_cache_destroy(dasd_page_cache);
2405 dasd_page_cache = NULL;
2406 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002407 dasd_gendisk_exit();
2408 dasd_devmap_exit();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002409 if (dasd_debug_area != NULL) {
2410 debug_unregister(dasd_debug_area);
2411 dasd_debug_area = NULL;
2412 }
2413}
2414
2415/*
2416 * SECTION: common functions for ccw_driver use
2417 */
2418
Stefan Weinhuber33b62a32010-03-08 12:26:24 +01002419/*
2420 * Is the device read-only?
2421 * Note that this function does not report the setting of the
2422 * readonly device attribute, but how it is configured in z/VM.
2423 */
2424int dasd_device_is_ro(struct dasd_device *device)
2425{
2426 struct ccw_dev_id dev_id;
2427 struct diag210 diag_data;
2428 int rc;
2429
2430 if (!MACHINE_IS_VM)
2431 return 0;
2432 ccw_device_get_id(device->cdev, &dev_id);
2433 memset(&diag_data, 0, sizeof(diag_data));
2434 diag_data.vrdcdvno = dev_id.devno;
2435 diag_data.vrdclen = sizeof(diag_data);
2436 rc = diag210(&diag_data);
2437 if (rc == 0 || rc == 2) {
2438 return diag_data.vrdcvfla & 0x80;
2439 } else {
2440 DBF_EVENT(DBF_WARNING, "diag210 failed for dev=%04x with rc=%d",
2441 dev_id.devno, rc);
2442 return 0;
2443 }
2444}
2445EXPORT_SYMBOL_GPL(dasd_device_is_ro);
2446
Cornelia Huckf3445a12009-04-14 15:36:23 +02002447static void dasd_generic_auto_online(void *data, async_cookie_t cookie)
2448{
2449 struct ccw_device *cdev = data;
2450 int ret;
2451
2452 ret = ccw_device_set_online(cdev);
2453 if (ret)
2454 pr_warning("%s: Setting the DASD online failed with rc=%d\n",
2455 dev_name(&cdev->dev), ret);
Cornelia Huckf3445a12009-04-14 15:36:23 +02002456}
2457
Horst Hummel1c01b8a2006-01-06 00:19:15 -08002458/*
2459 * Initial attempt at a probe function. this can be simplified once
2460 * the other detection code is gone.
2461 */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002462int dasd_generic_probe(struct ccw_device *cdev,
2463 struct dasd_discipline *discipline)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002464{
2465 int ret;
2466
2467 ret = dasd_add_sysfs_files(cdev);
2468 if (ret) {
Stefan Haberlandb8ed5dd2009-12-07 12:51:52 +01002469 DBF_EVENT_DEVID(DBF_WARNING, cdev, "%s",
2470 "dasd_generic_probe: could not add "
2471 "sysfs entries");
Horst Hummel40545572006-06-29 15:08:18 +02002472 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002473 }
Horst Hummel40545572006-06-29 15:08:18 +02002474 cdev->handler = &dasd_int_handler;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002475
Horst Hummel40545572006-06-29 15:08:18 +02002476 /*
2477 * Automatically online either all dasd devices (dasd_autodetect)
2478 * or all devices specified with dasd= parameters during
2479 * initial probe.
2480 */
2481 if ((dasd_get_feature(cdev, DASD_FEATURE_INITIAL_ONLINE) > 0 ) ||
Kay Sievers2a0217d2008-10-10 21:33:09 +02002482 (dasd_autodetect && dasd_busid_known(dev_name(&cdev->dev)) != 0))
Cornelia Huckf3445a12009-04-14 15:36:23 +02002483 async_schedule(dasd_generic_auto_online, cdev);
Stefan Haberlandde3e0da2008-01-26 14:11:08 +01002484 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002485}
2486
Horst Hummel1c01b8a2006-01-06 00:19:15 -08002487/*
2488 * This will one day be called from a global not_oper handler.
2489 * It is also used by driver_unregister during module unload.
2490 */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002491void dasd_generic_remove(struct ccw_device *cdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002492{
2493 struct dasd_device *device;
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002494 struct dasd_block *block;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002495
Horst Hummel59afda72005-05-16 21:53:39 -07002496 cdev->handler = NULL;
2497
Linus Torvalds1da177e2005-04-16 15:20:36 -07002498 dasd_remove_sysfs_files(cdev);
2499 device = dasd_device_from_cdev(cdev);
2500 if (IS_ERR(device))
2501 return;
2502 if (test_and_set_bit(DASD_FLAG_OFFLINE, &device->flags)) {
2503 /* Already doing offline processing */
2504 dasd_put_device(device);
2505 return;
2506 }
2507 /*
2508 * This device is removed unconditionally. Set offline
2509 * flag to prevent dasd_open from opening it while it is
2510 * no quite down yet.
2511 */
2512 dasd_set_target_state(device, DASD_STATE_NEW);
2513 /* dasd_delete_device destroys the device reference. */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002514 block = device->block;
2515 device->block = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002516 dasd_delete_device(device);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002517 /*
2518 * life cycle of block is bound to device, so delete it after
2519 * device was safely removed
2520 */
2521 if (block)
2522 dasd_free_block(block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002523}
2524
Horst Hummel1c01b8a2006-01-06 00:19:15 -08002525/*
2526 * Activate a device. This is called from dasd_{eckd,fba}_probe() when either
Linus Torvalds1da177e2005-04-16 15:20:36 -07002527 * the device is detected for the first time and is supposed to be used
Horst Hummel1c01b8a2006-01-06 00:19:15 -08002528 * or the user has started activation through sysfs.
2529 */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002530int dasd_generic_set_online(struct ccw_device *cdev,
2531 struct dasd_discipline *base_discipline)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002532{
Peter Oberparleiteraa888612006-02-20 18:28:13 -08002533 struct dasd_discipline *discipline;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002534 struct dasd_device *device;
Horst Hummelc6eb7b72005-09-03 15:57:58 -07002535 int rc;
Horst Hummelf24acd42005-05-01 08:58:59 -07002536
Horst Hummel40545572006-06-29 15:08:18 +02002537 /* first online clears initial online feature flag */
2538 dasd_set_feature(cdev, DASD_FEATURE_INITIAL_ONLINE, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002539 device = dasd_create_device(cdev);
2540 if (IS_ERR(device))
2541 return PTR_ERR(device);
2542
Peter Oberparleiteraa888612006-02-20 18:28:13 -08002543 discipline = base_discipline;
Horst Hummelc6eb7b72005-09-03 15:57:58 -07002544 if (device->features & DASD_FEATURE_USEDIAG) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002545 if (!dasd_diag_discipline_pointer) {
Stefan Haberlandfc19f382009-03-26 15:23:49 +01002546 pr_warning("%s Setting the DASD online failed because "
2547 "of missing DIAG discipline\n",
2548 dev_name(&cdev->dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002549 dasd_delete_device(device);
2550 return -ENODEV;
2551 }
2552 discipline = dasd_diag_discipline_pointer;
2553 }
Peter Oberparleiteraa888612006-02-20 18:28:13 -08002554 if (!try_module_get(base_discipline->owner)) {
2555 dasd_delete_device(device);
2556 return -EINVAL;
2557 }
2558 if (!try_module_get(discipline->owner)) {
2559 module_put(base_discipline->owner);
2560 dasd_delete_device(device);
2561 return -EINVAL;
2562 }
2563 device->base_discipline = base_discipline;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002564 device->discipline = discipline;
2565
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002566 /* check_device will allocate block device if necessary */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002567 rc = discipline->check_device(device);
2568 if (rc) {
Stefan Haberlandfc19f382009-03-26 15:23:49 +01002569 pr_warning("%s Setting the DASD online with discipline %s "
2570 "failed with rc=%i\n",
2571 dev_name(&cdev->dev), discipline->name, rc);
Peter Oberparleiteraa888612006-02-20 18:28:13 -08002572 module_put(discipline->owner);
2573 module_put(base_discipline->owner);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002574 dasd_delete_device(device);
2575 return rc;
2576 }
2577
2578 dasd_set_target_state(device, DASD_STATE_ONLINE);
2579 if (device->state <= DASD_STATE_KNOWN) {
Stefan Haberlandfc19f382009-03-26 15:23:49 +01002580 pr_warning("%s Setting the DASD online failed because of a "
2581 "missing discipline\n", dev_name(&cdev->dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002582 rc = -ENODEV;
2583 dasd_set_target_state(device, DASD_STATE_NEW);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002584 if (device->block)
2585 dasd_free_block(device->block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002586 dasd_delete_device(device);
2587 } else
2588 pr_debug("dasd_generic device %s found\n",
Kay Sievers2a0217d2008-10-10 21:33:09 +02002589 dev_name(&cdev->dev));
Stefan Haberland589c74d2010-02-26 22:37:47 +01002590
2591 wait_event(dasd_init_waitq, _wait_for_device(device));
2592
Linus Torvalds1da177e2005-04-16 15:20:36 -07002593 dasd_put_device(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002594 return rc;
2595}
2596
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002597int dasd_generic_set_offline(struct ccw_device *cdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002598{
2599 struct dasd_device *device;
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002600 struct dasd_block *block;
Horst Hummeldafd87a2006-04-10 22:53:47 -07002601 int max_count, open_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002602
2603 device = dasd_device_from_cdev(cdev);
2604 if (IS_ERR(device))
2605 return PTR_ERR(device);
2606 if (test_and_set_bit(DASD_FLAG_OFFLINE, &device->flags)) {
2607 /* Already doing offline processing */
2608 dasd_put_device(device);
2609 return 0;
2610 }
2611 /*
2612 * We must make sure that this device is currently not in use.
2613 * The open_count is increased for every opener, that includes
2614 * the blkdev_get in dasd_scan_partitions. We are only interested
2615 * in the other openers.
2616 */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002617 if (device->block) {
Heiko Carstensa8061702008-04-17 07:46:26 +02002618 max_count = device->block->bdev ? 0 : -1;
2619 open_count = atomic_read(&device->block->open_count);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002620 if (open_count > max_count) {
2621 if (open_count > 0)
Stefan Haberlandfc19f382009-03-26 15:23:49 +01002622 pr_warning("%s: The DASD cannot be set offline "
2623 "with open count %i\n",
2624 dev_name(&cdev->dev), open_count);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002625 else
Stefan Haberlandfc19f382009-03-26 15:23:49 +01002626 pr_warning("%s: The DASD cannot be set offline "
2627 "while it is in use\n",
2628 dev_name(&cdev->dev));
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002629 clear_bit(DASD_FLAG_OFFLINE, &device->flags);
2630 dasd_put_device(device);
2631 return -EBUSY;
2632 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002633 }
2634 dasd_set_target_state(device, DASD_STATE_NEW);
2635 /* dasd_delete_device destroys the device reference. */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002636 block = device->block;
2637 device->block = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002638 dasd_delete_device(device);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002639 /*
2640 * life cycle of block is bound to device, so delete it after
2641 * device was safely removed
2642 */
2643 if (block)
2644 dasd_free_block(block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002645 return 0;
2646}
2647
Stefan Weinhubera4d26c62011-01-05 12:48:03 +01002648int dasd_generic_last_path_gone(struct dasd_device *device)
2649{
2650 struct dasd_ccw_req *cqr;
2651
2652 dev_warn(&device->cdev->dev, "No operational channel path is left "
2653 "for the device\n");
2654 DBF_DEV_EVENT(DBF_WARNING, device, "%s", "last path gone");
2655 /* First of all call extended error reporting. */
2656 dasd_eer_write(device, NULL, DASD_EER_NOPATH);
2657
2658 if (device->state < DASD_STATE_BASIC)
2659 return 0;
2660 /* Device is active. We want to keep it. */
2661 list_for_each_entry(cqr, &device->ccw_queue, devlist)
2662 if ((cqr->status == DASD_CQR_IN_IO) ||
2663 (cqr->status == DASD_CQR_CLEAR_PENDING)) {
2664 cqr->status = DASD_CQR_QUEUED;
2665 cqr->retries++;
2666 }
2667 dasd_device_set_stop_bits(device, DASD_STOPPED_DC_WAIT);
2668 dasd_device_clear_timer(device);
2669 dasd_schedule_device_bh(device);
2670 return 1;
2671}
2672EXPORT_SYMBOL_GPL(dasd_generic_last_path_gone);
2673
2674int dasd_generic_path_operational(struct dasd_device *device)
2675{
2676 dev_info(&device->cdev->dev, "A channel path to the device has become "
2677 "operational\n");
2678 DBF_DEV_EVENT(DBF_WARNING, device, "%s", "path operational");
2679 dasd_device_remove_stop_bits(device, DASD_STOPPED_DC_WAIT);
2680 if (device->stopped & DASD_UNRESUMED_PM) {
2681 dasd_device_remove_stop_bits(device, DASD_UNRESUMED_PM);
2682 dasd_restore_device(device);
2683 return 1;
2684 }
2685 dasd_schedule_device_bh(device);
2686 if (device->block)
2687 dasd_schedule_block_bh(device->block);
2688 return 1;
2689}
2690EXPORT_SYMBOL_GPL(dasd_generic_path_operational);
2691
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002692int dasd_generic_notify(struct ccw_device *cdev, int event)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002693{
2694 struct dasd_device *device;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002695 int ret;
2696
Peter Oberparleiter91c36912008-08-21 19:46:39 +02002697 device = dasd_device_from_cdev_locked(cdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002698 if (IS_ERR(device))
2699 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002700 ret = 0;
2701 switch (event) {
2702 case CIO_GONE:
Sebastian Ott47593bf2009-03-31 19:16:05 +02002703 case CIO_BOXED:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002704 case CIO_NO_PATH:
Stefan Weinhubera4d26c62011-01-05 12:48:03 +01002705 device->path_data.opm = 0;
2706 device->path_data.ppm = 0;
2707 device->path_data.npm = 0;
2708 ret = dasd_generic_last_path_gone(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002709 break;
2710 case CIO_OPER:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002711 ret = 1;
Stefan Weinhubera4d26c62011-01-05 12:48:03 +01002712 if (device->path_data.opm)
2713 ret = dasd_generic_path_operational(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002714 break;
2715 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002716 dasd_put_device(device);
2717 return ret;
2718}
2719
Stefan Weinhubera4d26c62011-01-05 12:48:03 +01002720void dasd_generic_path_event(struct ccw_device *cdev, int *path_event)
2721{
2722 int chp;
2723 __u8 oldopm, eventlpm;
2724 struct dasd_device *device;
2725
2726 device = dasd_device_from_cdev_locked(cdev);
2727 if (IS_ERR(device))
2728 return;
2729 for (chp = 0; chp < 8; chp++) {
2730 eventlpm = 0x80 >> chp;
2731 if (path_event[chp] & PE_PATH_GONE) {
2732 oldopm = device->path_data.opm;
2733 device->path_data.opm &= ~eventlpm;
2734 device->path_data.ppm &= ~eventlpm;
2735 device->path_data.npm &= ~eventlpm;
2736 if (oldopm && !device->path_data.opm)
2737 dasd_generic_last_path_gone(device);
2738 }
2739 if (path_event[chp] & PE_PATH_AVAILABLE) {
2740 device->path_data.opm &= ~eventlpm;
2741 device->path_data.ppm &= ~eventlpm;
2742 device->path_data.npm &= ~eventlpm;
2743 device->path_data.tbvpm |= eventlpm;
2744 dasd_schedule_device_bh(device);
2745 }
2746 }
2747 dasd_put_device(device);
2748}
2749EXPORT_SYMBOL_GPL(dasd_generic_path_event);
2750
2751int dasd_generic_verify_path(struct dasd_device *device, __u8 lpm)
2752{
2753 if (!device->path_data.opm && lpm) {
2754 device->path_data.opm = lpm;
2755 dasd_generic_path_operational(device);
2756 } else
2757 device->path_data.opm |= lpm;
2758 return 0;
2759}
2760EXPORT_SYMBOL_GPL(dasd_generic_verify_path);
2761
2762
Stefan Haberlandd41dd122009-06-16 10:30:25 +02002763int dasd_generic_pm_freeze(struct ccw_device *cdev)
2764{
2765 struct dasd_ccw_req *cqr, *n;
2766 int rc;
2767 struct list_head freeze_queue;
2768 struct dasd_device *device = dasd_device_from_cdev(cdev);
2769
2770 if (IS_ERR(device))
2771 return PTR_ERR(device);
2772 /* disallow new I/O */
Stefan Weinhubereb6e1992009-12-07 12:51:51 +01002773 dasd_device_set_stop_bits(device, DASD_STOPPED_PM);
Stefan Haberlandd41dd122009-06-16 10:30:25 +02002774 /* clear active requests */
2775 INIT_LIST_HEAD(&freeze_queue);
2776 spin_lock_irq(get_ccwdev_lock(cdev));
2777 rc = 0;
2778 list_for_each_entry_safe(cqr, n, &device->ccw_queue, devlist) {
2779 /* Check status and move request to flush_queue */
2780 if (cqr->status == DASD_CQR_IN_IO) {
2781 rc = device->discipline->term_IO(cqr);
2782 if (rc) {
2783 /* unable to terminate requeust */
2784 dev_err(&device->cdev->dev,
2785 "Unable to terminate request %p "
2786 "on suspend\n", cqr);
2787 spin_unlock_irq(get_ccwdev_lock(cdev));
2788 dasd_put_device(device);
2789 return rc;
2790 }
2791 }
2792 list_move_tail(&cqr->devlist, &freeze_queue);
2793 }
2794
2795 spin_unlock_irq(get_ccwdev_lock(cdev));
2796
2797 list_for_each_entry_safe(cqr, n, &freeze_queue, devlist) {
2798 wait_event(dasd_flush_wq,
2799 (cqr->status != DASD_CQR_CLEAR_PENDING));
2800 if (cqr->status == DASD_CQR_CLEARED)
2801 cqr->status = DASD_CQR_QUEUED;
2802 }
2803 /* move freeze_queue to start of the ccw_queue */
2804 spin_lock_irq(get_ccwdev_lock(cdev));
2805 list_splice_tail(&freeze_queue, &device->ccw_queue);
2806 spin_unlock_irq(get_ccwdev_lock(cdev));
2807
2808 if (device->discipline->freeze)
2809 rc = device->discipline->freeze(device);
2810
2811 dasd_put_device(device);
2812 return rc;
2813}
2814EXPORT_SYMBOL_GPL(dasd_generic_pm_freeze);
2815
2816int dasd_generic_restore_device(struct ccw_device *cdev)
2817{
2818 struct dasd_device *device = dasd_device_from_cdev(cdev);
2819 int rc = 0;
2820
2821 if (IS_ERR(device))
2822 return PTR_ERR(device);
2823
Stefan Haberlande6125fb2009-06-22 12:08:17 +02002824 /* allow new IO again */
Stefan Weinhubereb6e1992009-12-07 12:51:51 +01002825 dasd_device_remove_stop_bits(device,
2826 (DASD_STOPPED_PM | DASD_UNRESUMED_PM));
Stefan Haberlande6125fb2009-06-22 12:08:17 +02002827
Stefan Haberlandd41dd122009-06-16 10:30:25 +02002828 dasd_schedule_device_bh(device);
Stefan Haberlandd41dd122009-06-16 10:30:25 +02002829
Stefan Weinhubereb6e1992009-12-07 12:51:51 +01002830 /*
2831 * call discipline restore function
2832 * if device is stopped do nothing e.g. for disconnected devices
2833 */
2834 if (device->discipline->restore && !(device->stopped))
Stefan Haberlandd41dd122009-06-16 10:30:25 +02002835 rc = device->discipline->restore(device);
Stefan Weinhubereb6e1992009-12-07 12:51:51 +01002836 if (rc || device->stopped)
Stefan Haberlande6125fb2009-06-22 12:08:17 +02002837 /*
2838 * if the resume failed for the DASD we put it in
2839 * an UNRESUMED stop state
2840 */
2841 device->stopped |= DASD_UNRESUMED_PM;
Stefan Haberlandd41dd122009-06-16 10:30:25 +02002842
Stefan Haberland6fca97a2009-10-06 10:34:15 +02002843 if (device->block)
2844 dasd_schedule_block_bh(device->block);
2845
Stefan Haberlandd41dd122009-06-16 10:30:25 +02002846 dasd_put_device(device);
Stefan Haberlande6125fb2009-06-22 12:08:17 +02002847 return 0;
Stefan Haberlandd41dd122009-06-16 10:30:25 +02002848}
2849EXPORT_SYMBOL_GPL(dasd_generic_restore_device);
2850
Heiko Carstens763968e2007-05-10 15:45:46 +02002851static struct dasd_ccw_req *dasd_generic_build_rdc(struct dasd_device *device,
2852 void *rdc_buffer,
2853 int rdc_buffer_size,
Stefan Haberland68b781f2009-09-11 10:28:29 +02002854 int magic)
Cornelia Huck17283b52007-05-04 18:47:51 +02002855{
2856 struct dasd_ccw_req *cqr;
2857 struct ccw1 *ccw;
Stefan Haberlandd9fa9442009-10-14 12:43:48 +02002858 unsigned long *idaw;
Cornelia Huck17283b52007-05-04 18:47:51 +02002859
2860 cqr = dasd_smalloc_request(magic, 1 /* RDC */, rdc_buffer_size, device);
2861
2862 if (IS_ERR(cqr)) {
Stefan Haberlandfc19f382009-03-26 15:23:49 +01002863 /* internal error 13 - Allocating the RDC request failed*/
2864 dev_err(&device->cdev->dev,
2865 "An error occurred in the DASD device driver, "
2866 "reason=%s\n", "13");
Cornelia Huck17283b52007-05-04 18:47:51 +02002867 return cqr;
2868 }
2869
2870 ccw = cqr->cpaddr;
2871 ccw->cmd_code = CCW_CMD_RDC;
Stefan Haberlandd9fa9442009-10-14 12:43:48 +02002872 if (idal_is_needed(rdc_buffer, rdc_buffer_size)) {
2873 idaw = (unsigned long *) (cqr->data);
2874 ccw->cda = (__u32)(addr_t) idaw;
2875 ccw->flags = CCW_FLAG_IDA;
2876 idaw = idal_create_words(idaw, rdc_buffer, rdc_buffer_size);
2877 } else {
2878 ccw->cda = (__u32)(addr_t) rdc_buffer;
2879 ccw->flags = 0;
2880 }
Cornelia Huck17283b52007-05-04 18:47:51 +02002881
Stefan Haberlandd9fa9442009-10-14 12:43:48 +02002882 ccw->count = rdc_buffer_size;
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002883 cqr->startdev = device;
2884 cqr->memdev = device;
Cornelia Huck17283b52007-05-04 18:47:51 +02002885 cqr->expires = 10*HZ;
Stefan Weinhubereb6e1992009-12-07 12:51:51 +01002886 cqr->retries = 256;
Cornelia Huck17283b52007-05-04 18:47:51 +02002887 cqr->buildclk = get_clock();
2888 cqr->status = DASD_CQR_FILLED;
2889 return cqr;
2890}
2891
2892
Stefan Haberland68b781f2009-09-11 10:28:29 +02002893int dasd_generic_read_dev_chars(struct dasd_device *device, int magic,
Sebastian Ott92636b12009-06-12 10:26:37 +02002894 void *rdc_buffer, int rdc_buffer_size)
Cornelia Huck17283b52007-05-04 18:47:51 +02002895{
2896 int ret;
2897 struct dasd_ccw_req *cqr;
2898
Sebastian Ott92636b12009-06-12 10:26:37 +02002899 cqr = dasd_generic_build_rdc(device, rdc_buffer, rdc_buffer_size,
Cornelia Huck17283b52007-05-04 18:47:51 +02002900 magic);
2901 if (IS_ERR(cqr))
2902 return PTR_ERR(cqr);
2903
2904 ret = dasd_sleep_on(cqr);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002905 dasd_sfree_request(cqr, cqr->memdev);
Cornelia Huck17283b52007-05-04 18:47:51 +02002906 return ret;
2907}
Cornelia Huckaaff0f62007-05-10 15:45:45 +02002908EXPORT_SYMBOL_GPL(dasd_generic_read_dev_chars);
Stefan Weinhuber20c64462006-03-24 03:15:25 -08002909
Stefan Weinhuberf3eb5382009-03-26 15:23:48 +01002910/*
2911 * In command mode and transport mode we need to look for sense
2912 * data in different places. The sense data itself is allways
2913 * an array of 32 bytes, so we can unify the sense data access
2914 * for both modes.
2915 */
2916char *dasd_get_sense(struct irb *irb)
2917{
2918 struct tsb *tsb = NULL;
2919 char *sense = NULL;
2920
2921 if (scsw_is_tm(&irb->scsw) && (irb->scsw.tm.fcxs == 0x01)) {
2922 if (irb->scsw.tm.tcw)
2923 tsb = tcw_get_tsb((struct tcw *)(unsigned long)
2924 irb->scsw.tm.tcw);
2925 if (tsb && tsb->length == 64 && tsb->flags)
2926 switch (tsb->flags & 0x07) {
2927 case 1: /* tsa_iostat */
2928 sense = tsb->tsa.iostat.sense;
2929 break;
2930 case 2: /* tsa_ddpc */
2931 sense = tsb->tsa.ddpc.sense;
2932 break;
2933 default:
2934 /* currently we don't use interrogate data */
2935 break;
2936 }
2937 } else if (irb->esw.esw0.erw.cons) {
2938 sense = irb->ecw;
2939 }
2940 return sense;
2941}
2942EXPORT_SYMBOL_GPL(dasd_get_sense);
2943
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002944static int __init dasd_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002945{
2946 int rc;
2947
2948 init_waitqueue_head(&dasd_init_waitq);
Horst Hummel8f617012006-08-30 14:33:33 +02002949 init_waitqueue_head(&dasd_flush_wq);
Stefan Haberlandc80ee722008-05-30 10:03:31 +02002950 init_waitqueue_head(&generic_waitq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002951
2952 /* register 'common' DASD debug area, used for all DBF_XXX calls */
Peter Tiedemann361f4942008-01-26 14:11:30 +01002953 dasd_debug_area = debug_register("dasd", 1, 1, 8 * sizeof(long));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002954 if (dasd_debug_area == NULL) {
2955 rc = -ENOMEM;
2956 goto failed;
2957 }
2958 debug_register_view(dasd_debug_area, &debug_sprintf_view);
Horst Hummelb0035f12006-09-20 15:59:07 +02002959 debug_set_level(dasd_debug_area, DBF_WARNING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002960
2961 DBF_EVENT(DBF_EMERG, "%s", "debug area created");
2962
2963 dasd_diag_discipline_pointer = NULL;
2964
Linus Torvalds1da177e2005-04-16 15:20:36 -07002965 rc = dasd_devmap_init();
2966 if (rc)
2967 goto failed;
2968 rc = dasd_gendisk_init();
2969 if (rc)
2970 goto failed;
2971 rc = dasd_parse();
2972 if (rc)
2973 goto failed;
Stefan Weinhuber20c64462006-03-24 03:15:25 -08002974 rc = dasd_eer_init();
2975 if (rc)
2976 goto failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002977#ifdef CONFIG_PROC_FS
2978 rc = dasd_proc_init();
2979 if (rc)
2980 goto failed;
2981#endif
2982
2983 return 0;
2984failed:
Stefan Haberlandfc19f382009-03-26 15:23:49 +01002985 pr_info("The DASD device driver could not be initialized\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002986 dasd_exit();
2987 return rc;
2988}
2989
2990module_init(dasd_init);
2991module_exit(dasd_exit);
2992
2993EXPORT_SYMBOL(dasd_debug_area);
2994EXPORT_SYMBOL(dasd_diag_discipline_pointer);
2995
2996EXPORT_SYMBOL(dasd_add_request_head);
2997EXPORT_SYMBOL(dasd_add_request_tail);
2998EXPORT_SYMBOL(dasd_cancel_req);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002999EXPORT_SYMBOL(dasd_device_clear_timer);
3000EXPORT_SYMBOL(dasd_block_clear_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003001EXPORT_SYMBOL(dasd_enable_device);
3002EXPORT_SYMBOL(dasd_int_handler);
3003EXPORT_SYMBOL(dasd_kfree_request);
3004EXPORT_SYMBOL(dasd_kick_device);
3005EXPORT_SYMBOL(dasd_kmalloc_request);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01003006EXPORT_SYMBOL(dasd_schedule_device_bh);
3007EXPORT_SYMBOL(dasd_schedule_block_bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003008EXPORT_SYMBOL(dasd_set_target_state);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01003009EXPORT_SYMBOL(dasd_device_set_timer);
3010EXPORT_SYMBOL(dasd_block_set_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003011EXPORT_SYMBOL(dasd_sfree_request);
3012EXPORT_SYMBOL(dasd_sleep_on);
3013EXPORT_SYMBOL(dasd_sleep_on_immediatly);
3014EXPORT_SYMBOL(dasd_sleep_on_interruptible);
3015EXPORT_SYMBOL(dasd_smalloc_request);
3016EXPORT_SYMBOL(dasd_start_IO);
3017EXPORT_SYMBOL(dasd_term_IO);
3018
3019EXPORT_SYMBOL_GPL(dasd_generic_probe);
3020EXPORT_SYMBOL_GPL(dasd_generic_remove);
3021EXPORT_SYMBOL_GPL(dasd_generic_notify);
3022EXPORT_SYMBOL_GPL(dasd_generic_set_online);
3023EXPORT_SYMBOL_GPL(dasd_generic_set_offline);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01003024EXPORT_SYMBOL_GPL(dasd_generic_handle_state_change);
3025EXPORT_SYMBOL_GPL(dasd_flush_device_queue);
3026EXPORT_SYMBOL_GPL(dasd_alloc_block);
3027EXPORT_SYMBOL_GPL(dasd_free_block);