blob: 8cb120e9c8681a9ca4d91b67fc021b24984339d4 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * Author(s)......: Holger Smolinski <Holger.Smolinski@de.ibm.com>
3 * Horst Hummel <Horst.Hummel@de.ibm.com>
4 * Carsten Otte <Cotte@de.ibm.com>
5 * Martin Schwidefsky <schwidefsky@de.ibm.com>
6 * Bugreports.to..: <Linux390@de.ibm.com>
Stefan Haberlandd41dd122009-06-16 10:30:25 +02007 * Copyright IBM Corp. 1999, 2009
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 */
9
Stefan Haberlandfc19f382009-03-26 15:23:49 +010010#define KMSG_COMPONENT "dasd"
11#define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
12
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/kmod.h>
14#include <linux/init.h>
15#include <linux/interrupt.h>
16#include <linux/ctype.h>
17#include <linux/major.h>
18#include <linux/slab.h>
Christoph Hellwiga885c8c2006-01-08 01:02:50 -080019#include <linux/hdreg.h>
Cornelia Huckf3445a12009-04-14 15:36:23 +020020#include <linux/async.h>
Stefan Haberland9eb25122010-02-26 22:37:46 +010021#include <linux/mutex.h>
Stefan Weinhuber4fa52aa2011-07-24 10:48:32 +020022#include <linux/debugfs.h>
23#include <linux/seq_file.h>
Stefan Weinhubere4258d52011-08-03 16:44:20 +020024#include <linux/vmalloc.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
41/*
42 * SECTION: exported variables of dasd.c
43 */
44debug_info_t *dasd_debug_area;
Fabian Frederick7048a2b2014-06-26 19:41:47 +020045EXPORT_SYMBOL(dasd_debug_area);
Stefan Weinhuber4fa52aa2011-07-24 10:48:32 +020046static struct dentry *dasd_debugfs_root_entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -070047struct dasd_discipline *dasd_diag_discipline_pointer;
Fabian Frederick7048a2b2014-06-26 19:41:47 +020048EXPORT_SYMBOL(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,"
Heiko Carstensa53c8fa2012-07-20 11:15:04 +020053 " Copyright IBM Corp. 2000");
Linus Torvalds1da177e2005-04-16 15:20:36 -070054MODULE_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 *);
Stefan Weinhuber4fa52aa2011-07-24 10:48:32 +020074static void dasd_profile_init(struct dasd_profile *, struct dentry *);
75static void dasd_profile_exit(struct dasd_profile *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
77/*
78 * SECTION: Operations on the device structure.
79 */
80static wait_queue_head_t dasd_init_waitq;
Horst Hummel8f617012006-08-30 14:33:33 +020081static wait_queue_head_t dasd_flush_wq;
Stefan Haberlandc80ee722008-05-30 10:03:31 +020082static wait_queue_head_t generic_waitq;
Stefan Haberland4679e892012-06-19 17:30:12 +020083static wait_queue_head_t shutdown_waitq;
Linus Torvalds1da177e2005-04-16 15:20:36 -070084
85/*
86 * Allocate memory for a new device structure.
87 */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +010088struct dasd_device *dasd_alloc_device(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070089{
90 struct dasd_device *device;
91
Stefan Weinhuber8e09f212008-01-26 14:11:23 +010092 device = kzalloc(sizeof(struct dasd_device), GFP_ATOMIC);
93 if (!device)
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 return ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
96 /* Get two pages for normal block device operations. */
97 device->ccw_mem = (void *) __get_free_pages(GFP_ATOMIC | GFP_DMA, 1);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +010098 if (!device->ccw_mem) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 kfree(device);
100 return ERR_PTR(-ENOMEM);
101 }
102 /* Get one page for error recovery. */
103 device->erp_mem = (void *) get_zeroed_page(GFP_ATOMIC | GFP_DMA);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100104 if (!device->erp_mem) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 free_pages((unsigned long) device->ccw_mem, 1);
106 kfree(device);
107 return ERR_PTR(-ENOMEM);
108 }
109
110 dasd_init_chunklist(&device->ccw_chunks, device->ccw_mem, PAGE_SIZE*2);
111 dasd_init_chunklist(&device->erp_chunks, device->erp_mem, PAGE_SIZE);
112 spin_lock_init(&device->mem_lock);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100113 atomic_set(&device->tasklet_scheduled, 0);
Horst Hummel138c0142006-06-29 14:58:12 +0200114 tasklet_init(&device->tasklet,
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100115 (void (*)(unsigned long)) dasd_device_tasklet,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 (unsigned long) device);
117 INIT_LIST_HEAD(&device->ccw_queue);
118 init_timer(&device->timer);
Stefan Weinhuber48cae882009-02-11 10:37:31 +0100119 device->timer.function = dasd_device_timeout;
120 device->timer.data = (unsigned long) device;
Al Viro4927b3f2006-12-06 19:18:20 +0000121 INIT_WORK(&device->kick_work, do_kick_device);
Stefan Haberlandd41dd122009-06-16 10:30:25 +0200122 INIT_WORK(&device->restore_device, do_restore_device);
Stefan Haberland501183f2010-05-17 10:00:10 +0200123 INIT_WORK(&device->reload_device, do_reload_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 device->state = DASD_STATE_NEW;
125 device->target = DASD_STATE_NEW;
Stefan Haberland9eb25122010-02-26 22:37:46 +0100126 mutex_init(&device->state_mutex);
Stefan Weinhuber4fa52aa2011-07-24 10:48:32 +0200127 spin_lock_init(&device->profile.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 return device;
129}
130
131/*
132 * Free memory of a device structure.
133 */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100134void dasd_free_device(struct dasd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135{
Jesper Juhl17fd6822005-11-07 01:01:30 -0800136 kfree(device->private);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 free_page((unsigned long) device->erp_mem);
138 free_pages((unsigned long) device->ccw_mem, 1);
139 kfree(device);
140}
141
142/*
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100143 * Allocate memory for a new device structure.
144 */
145struct dasd_block *dasd_alloc_block(void)
146{
147 struct dasd_block *block;
148
149 block = kzalloc(sizeof(*block), GFP_ATOMIC);
150 if (!block)
151 return ERR_PTR(-ENOMEM);
152 /* open_count = 0 means device online but not in use */
153 atomic_set(&block->open_count, -1);
154
155 spin_lock_init(&block->request_queue_lock);
156 atomic_set(&block->tasklet_scheduled, 0);
157 tasklet_init(&block->tasklet,
158 (void (*)(unsigned long)) dasd_block_tasklet,
159 (unsigned long) block);
160 INIT_LIST_HEAD(&block->ccw_queue);
161 spin_lock_init(&block->queue_lock);
162 init_timer(&block->timer);
Stefan Weinhuber48cae882009-02-11 10:37:31 +0100163 block->timer.function = dasd_block_timeout;
164 block->timer.data = (unsigned long) block;
Stefan Weinhuber4fa52aa2011-07-24 10:48:32 +0200165 spin_lock_init(&block->profile.lock);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100166
167 return block;
168}
Fabian Frederick7048a2b2014-06-26 19:41:47 +0200169EXPORT_SYMBOL_GPL(dasd_alloc_block);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100170
171/*
172 * Free memory of a device structure.
173 */
174void dasd_free_block(struct dasd_block *block)
175{
176 kfree(block);
177}
Fabian Frederick7048a2b2014-06-26 19:41:47 +0200178EXPORT_SYMBOL_GPL(dasd_free_block);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100179
180/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 * Make a new device known to the system.
182 */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100183static int dasd_state_new_to_known(struct dasd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184{
185 int rc;
186
187 /*
Horst Hummel138c0142006-06-29 14:58:12 +0200188 * As long as the device is not in state DASD_STATE_NEW we want to
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 * keep the reference count > 0.
190 */
191 dasd_get_device(device);
192
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100193 if (device->block) {
194 rc = dasd_alloc_queue(device->block);
195 if (rc) {
196 dasd_put_device(device);
197 return rc;
198 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 device->state = DASD_STATE_KNOWN;
201 return 0;
202}
203
204/*
205 * Let the system forget about a device.
206 */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100207static int dasd_state_known_to_new(struct dasd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208{
Stefan Weinhuber20c64462006-03-24 03:15:25 -0800209 /* Disable extended error reporting for this device. */
210 dasd_eer_disable(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 /* Forget the discipline information. */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100212 if (device->discipline) {
213 if (device->discipline->uncheck_device)
214 device->discipline->uncheck_device(device);
Peter Oberparleiteraa888612006-02-20 18:28:13 -0800215 module_put(device->discipline->owner);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100216 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 device->discipline = NULL;
Peter Oberparleiteraa888612006-02-20 18:28:13 -0800218 if (device->base_discipline)
219 module_put(device->base_discipline->owner);
220 device->base_discipline = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 device->state = DASD_STATE_NEW;
222
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100223 if (device->block)
224 dasd_free_queue(device->block);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225
226 /* Give up reference we took in dasd_state_new_to_known. */
227 dasd_put_device(device);
Horst Hummel8f617012006-08-30 14:33:33 +0200228 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229}
230
Stefan Weinhuber4fa52aa2011-07-24 10:48:32 +0200231static struct dentry *dasd_debugfs_setup(const char *name,
232 struct dentry *base_dentry)
233{
234 struct dentry *pde;
235
236 if (!base_dentry)
237 return NULL;
238 pde = debugfs_create_dir(name, base_dentry);
239 if (!pde || IS_ERR(pde))
240 return NULL;
241 return pde;
242}
243
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244/*
245 * Request the irq line for the device.
246 */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100247static int dasd_state_known_to_basic(struct dasd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248{
Stefan Weinhuber4fa52aa2011-07-24 10:48:32 +0200249 struct dasd_block *block = device->block;
Stefan Haberlandd42e1712013-04-15 16:22:23 +0200250 int rc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251
252 /* Allocate and register gendisk structure. */
Stefan Weinhuber4fa52aa2011-07-24 10:48:32 +0200253 if (block) {
254 rc = dasd_gendisk_alloc(block);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100255 if (rc)
256 return rc;
Stefan Weinhuber4fa52aa2011-07-24 10:48:32 +0200257 block->debugfs_dentry =
258 dasd_debugfs_setup(block->gdp->disk_name,
259 dasd_debugfs_root_entry);
260 dasd_profile_init(&block->profile, block->debugfs_dentry);
261 if (dasd_global_profile_level == DASD_PROFILE_ON)
262 dasd_profile_on(&device->block->profile);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100263 }
Stefan Weinhuber4fa52aa2011-07-24 10:48:32 +0200264 device->debugfs_dentry =
265 dasd_debugfs_setup(dev_name(&device->cdev->dev),
266 dasd_debugfs_root_entry);
267 dasd_profile_init(&device->profile, device->debugfs_dentry);
268
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 /* register 'device' debug area, used for all DBF_DEV_XXX calls */
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100270 device->debug_area = debug_register(dev_name(&device->cdev->dev), 4, 1,
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100271 8 * sizeof(long));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 debug_register_view(device->debug_area, &debug_sprintf_view);
Horst Hummelb0035f12006-09-20 15:59:07 +0200273 debug_set_level(device->debug_area, DBF_WARNING);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 DBF_DEV_EVENT(DBF_EMERG, device, "%s", "debug area created");
275
276 device->state = DASD_STATE_BASIC;
Stefan Haberlandd42e1712013-04-15 16:22:23 +0200277
278 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279}
280
281/*
282 * Release the irq line for the device. Terminate any running i/o.
283 */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100284static int dasd_state_basic_to_known(struct dasd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285{
Horst Hummel8f617012006-08-30 14:33:33 +0200286 int rc;
Stefan Haberlandd42e1712013-04-15 16:22:23 +0200287
Stefan Haberlanddaa991b2014-07-18 14:19:25 +0200288 if (device->discipline->basic_to_known) {
289 rc = device->discipline->basic_to_known(device);
290 if (rc)
291 return rc;
292 }
293
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100294 if (device->block) {
Stefan Weinhuber4fa52aa2011-07-24 10:48:32 +0200295 dasd_profile_exit(&device->block->profile);
Fabian Frederickd7309aa2014-06-26 19:41:46 +0200296 debugfs_remove(device->block->debugfs_dentry);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100297 dasd_gendisk_free(device->block);
298 dasd_block_clear_timer(device->block);
299 }
300 rc = dasd_flush_device_queue(device);
Horst Hummel8f617012006-08-30 14:33:33 +0200301 if (rc)
302 return rc;
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100303 dasd_device_clear_timer(device);
Stefan Weinhuber4fa52aa2011-07-24 10:48:32 +0200304 dasd_profile_exit(&device->profile);
Fabian Frederickd7309aa2014-06-26 19:41:46 +0200305 debugfs_remove(device->debugfs_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 DBF_DEV_EVENT(DBF_EMERG, device, "%p debug area deleted", device);
307 if (device->debug_area != NULL) {
308 debug_unregister(device->debug_area);
309 device->debug_area = NULL;
310 }
311 device->state = DASD_STATE_KNOWN;
Horst Hummel8f617012006-08-30 14:33:33 +0200312 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313}
314
315/*
316 * Do the initial analysis. The do_analysis function may return
317 * -EAGAIN in which case the device keeps the state DASD_STATE_BASIC
318 * until the discipline decides to continue the startup sequence
319 * by calling the function dasd_change_state. The eckd disciplines
320 * uses this to start a ccw that detects the format. The completion
321 * interrupt for this detection ccw uses the kernel event daemon to
322 * trigger the call to dasd_change_state. All this is done in the
323 * discipline code, see dasd_eckd.c.
Horst Hummel90f00942006-03-07 21:55:39 -0800324 * After the analysis ccw is done (do_analysis returned 0) the block
325 * device is setup.
326 * In case the analysis returns an error, the device setup is stopped
327 * (a fake disk was already added to allow formatting).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100329static int dasd_state_basic_to_ready(struct dasd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330{
331 int rc;
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100332 struct dasd_block *block;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333
334 rc = 0;
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100335 block = device->block;
Horst Hummel90f00942006-03-07 21:55:39 -0800336 /* make disk known with correct capacity */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100337 if (block) {
338 if (block->base->discipline->do_analysis != NULL)
339 rc = block->base->discipline->do_analysis(block);
340 if (rc) {
Stefan Haberlandd42e1712013-04-15 16:22:23 +0200341 if (rc != -EAGAIN) {
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100342 device->state = DASD_STATE_UNFMT;
Stefan Haberlandd42e1712013-04-15 16:22:23 +0200343 goto out;
344 }
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100345 return rc;
346 }
347 dasd_setup_queue(block);
348 set_capacity(block->gdp,
349 block->blocks << block->s2b_shift);
350 device->state = DASD_STATE_READY;
351 rc = dasd_scan_partitions(block);
Stefan Haberlandd42e1712013-04-15 16:22:23 +0200352 if (rc) {
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100353 device->state = DASD_STATE_BASIC;
Stefan Haberlandd42e1712013-04-15 16:22:23 +0200354 return rc;
355 }
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100356 } else {
357 device->state = DASD_STATE_READY;
358 }
Stefan Haberlandd42e1712013-04-15 16:22:23 +0200359out:
360 if (device->discipline->basic_to_ready)
361 rc = device->discipline->basic_to_ready(device);
Horst Hummel90f00942006-03-07 21:55:39 -0800362 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363}
364
Stefan Haberlandd07dc5d2012-11-28 13:43:38 +0100365static inline
366int _wait_for_empty_queues(struct dasd_device *device)
367{
368 if (device->block)
369 return list_empty(&device->ccw_queue) &&
370 list_empty(&device->block->ccw_queue);
371 else
372 return list_empty(&device->ccw_queue);
373}
374
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375/*
376 * Remove device from block device layer. Destroy dirty buffers.
377 * Forget format information. Check if the target level is basic
378 * and if it is create fake disk for formatting.
379 */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100380static int dasd_state_ready_to_basic(struct dasd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381{
Horst Hummel8f617012006-08-30 14:33:33 +0200382 int rc;
383
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 device->state = DASD_STATE_BASIC;
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100385 if (device->block) {
386 struct dasd_block *block = device->block;
387 rc = dasd_flush_block_queue(block);
388 if (rc) {
389 device->state = DASD_STATE_READY;
390 return rc;
391 }
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100392 dasd_flush_request_queue(block);
Stefan Haberlandb695adf2010-02-26 22:37:48 +0100393 dasd_destroy_partitions(block);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100394 block->blocks = 0;
395 block->bp_block = 0;
396 block->s2b_shift = 0;
397 }
Horst Hummel8f617012006-08-30 14:33:33 +0200398 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399}
400
401/*
Horst Hummel90f00942006-03-07 21:55:39 -0800402 * Back to basic.
403 */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100404static int dasd_state_unfmt_to_basic(struct dasd_device *device)
Horst Hummel90f00942006-03-07 21:55:39 -0800405{
406 device->state = DASD_STATE_BASIC;
Horst Hummel8f617012006-08-30 14:33:33 +0200407 return 0;
Horst Hummel90f00942006-03-07 21:55:39 -0800408}
409
410/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 * Make the device online and schedule the bottom half to start
412 * the requeueing of requests from the linux request queue to the
413 * ccw queue.
414 */
Horst Hummel8f617012006-08-30 14:33:33 +0200415static int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416dasd_state_ready_to_online(struct dasd_device * device)
417{
Stefan Weinhuber13018092009-01-09 12:14:50 +0100418 struct gendisk *disk;
419 struct disk_part_iter piter;
420 struct hd_struct *part;
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100421
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 device->state = DASD_STATE_ONLINE;
Stefan Weinhuber13018092009-01-09 12:14:50 +0100423 if (device->block) {
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100424 dasd_schedule_block_bh(device->block);
Stefan Haberlande4dbb0f2011-01-05 12:48:06 +0100425 if ((device->features & DASD_FEATURE_USERAW)) {
426 disk = device->block->gdp;
427 kobject_uevent(&disk_to_dev(disk)->kobj, KOBJ_CHANGE);
428 return 0;
429 }
Stefan Weinhuber13018092009-01-09 12:14:50 +0100430 disk = device->block->bdev->bd_disk;
431 disk_part_iter_init(&piter, disk, DISK_PITER_INCL_PART0);
432 while ((part = disk_part_iter_next(&piter)))
433 kobject_uevent(&part_to_dev(part)->kobj, KOBJ_CHANGE);
434 disk_part_iter_exit(&piter);
435 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 return 0;
437}
438
439/*
440 * Stop the requeueing of requests again.
441 */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100442static int dasd_state_online_to_ready(struct dasd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443{
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100444 int rc;
Stefan Weinhuber13018092009-01-09 12:14:50 +0100445 struct gendisk *disk;
446 struct disk_part_iter piter;
447 struct hd_struct *part;
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100448
449 if (device->discipline->online_to_ready) {
450 rc = device->discipline->online_to_ready(device);
451 if (rc)
452 return rc;
453 }
Stefan Haberlandd42e1712013-04-15 16:22:23 +0200454
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 device->state = DASD_STATE_READY;
Stefan Haberlande4dbb0f2011-01-05 12:48:06 +0100456 if (device->block && !(device->features & DASD_FEATURE_USERAW)) {
Stefan Weinhuber13018092009-01-09 12:14:50 +0100457 disk = device->block->bdev->bd_disk;
458 disk_part_iter_init(&piter, disk, DISK_PITER_INCL_PART0);
459 while ((part = disk_part_iter_next(&piter)))
460 kobject_uevent(&part_to_dev(part)->kobj, KOBJ_CHANGE);
461 disk_part_iter_exit(&piter);
462 }
Horst Hummel8f617012006-08-30 14:33:33 +0200463 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464}
465
466/*
467 * Device startup state changes.
468 */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100469static int dasd_increase_state(struct dasd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470{
471 int rc;
472
473 rc = 0;
474 if (device->state == DASD_STATE_NEW &&
475 device->target >= DASD_STATE_KNOWN)
476 rc = dasd_state_new_to_known(device);
477
478 if (!rc &&
479 device->state == DASD_STATE_KNOWN &&
480 device->target >= DASD_STATE_BASIC)
481 rc = dasd_state_known_to_basic(device);
482
483 if (!rc &&
484 device->state == DASD_STATE_BASIC &&
485 device->target >= DASD_STATE_READY)
486 rc = dasd_state_basic_to_ready(device);
487
488 if (!rc &&
Horst Hummel39ccf952006-04-27 18:40:10 -0700489 device->state == DASD_STATE_UNFMT &&
490 device->target > DASD_STATE_UNFMT)
491 rc = -EPERM;
492
493 if (!rc &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 device->state == DASD_STATE_READY &&
495 device->target >= DASD_STATE_ONLINE)
496 rc = dasd_state_ready_to_online(device);
497
498 return rc;
499}
500
501/*
502 * Device shutdown state changes.
503 */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100504static int dasd_decrease_state(struct dasd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505{
Horst Hummel8f617012006-08-30 14:33:33 +0200506 int rc;
507
508 rc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 if (device->state == DASD_STATE_ONLINE &&
510 device->target <= DASD_STATE_READY)
Horst Hummel8f617012006-08-30 14:33:33 +0200511 rc = dasd_state_online_to_ready(device);
Horst Hummel138c0142006-06-29 14:58:12 +0200512
Horst Hummel8f617012006-08-30 14:33:33 +0200513 if (!rc &&
514 device->state == DASD_STATE_READY &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 device->target <= DASD_STATE_BASIC)
Horst Hummel8f617012006-08-30 14:33:33 +0200516 rc = dasd_state_ready_to_basic(device);
Horst Hummel90f00942006-03-07 21:55:39 -0800517
Horst Hummel8f617012006-08-30 14:33:33 +0200518 if (!rc &&
519 device->state == DASD_STATE_UNFMT &&
Horst Hummel90f00942006-03-07 21:55:39 -0800520 device->target <= DASD_STATE_BASIC)
Horst Hummel8f617012006-08-30 14:33:33 +0200521 rc = dasd_state_unfmt_to_basic(device);
Horst Hummel90f00942006-03-07 21:55:39 -0800522
Horst Hummel8f617012006-08-30 14:33:33 +0200523 if (!rc &&
524 device->state == DASD_STATE_BASIC &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 device->target <= DASD_STATE_KNOWN)
Horst Hummel8f617012006-08-30 14:33:33 +0200526 rc = dasd_state_basic_to_known(device);
Horst Hummel138c0142006-06-29 14:58:12 +0200527
Horst Hummel8f617012006-08-30 14:33:33 +0200528 if (!rc &&
529 device->state == DASD_STATE_KNOWN &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 device->target <= DASD_STATE_NEW)
Horst Hummel8f617012006-08-30 14:33:33 +0200531 rc = dasd_state_known_to_new(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532
Horst Hummel8f617012006-08-30 14:33:33 +0200533 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534}
535
536/*
537 * This is the main startup/shutdown routine.
538 */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100539static void dasd_change_state(struct dasd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540{
Sebastian Ott181d9522009-06-22 12:08:21 +0200541 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542
543 if (device->state == device->target)
544 /* Already where we want to go today... */
545 return;
546 if (device->state < device->target)
547 rc = dasd_increase_state(device);
548 else
549 rc = dasd_decrease_state(device);
Sebastian Ott181d9522009-06-22 12:08:21 +0200550 if (rc == -EAGAIN)
551 return;
552 if (rc)
553 device->target = device->state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554
Horst Hummel4dfd5c42007-04-27 16:01:47 +0200555 /* let user-space know that the device status changed */
556 kobject_uevent(&device->cdev->dev.kobj, KOBJ_CHANGE);
Sebastian Ott1f08be82012-09-05 14:18:22 +0200557
558 if (device->state == device->target)
559 wake_up(&dasd_init_waitq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560}
561
562/*
563 * Kick starter for devices that did not complete the startup/shutdown
564 * procedure or were sleeping because of a pending state.
565 * dasd_kick_device will schedule a call do do_kick_device to the kernel
566 * event daemon.
567 */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100568static void do_kick_device(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569{
Al Viro4927b3f2006-12-06 19:18:20 +0000570 struct dasd_device *device = container_of(work, struct dasd_device, kick_work);
Stefan Haberland9eb25122010-02-26 22:37:46 +0100571 mutex_lock(&device->state_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 dasd_change_state(device);
Stefan Haberland9eb25122010-02-26 22:37:46 +0100573 mutex_unlock(&device->state_mutex);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100574 dasd_schedule_device_bh(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 dasd_put_device(device);
576}
577
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100578void dasd_kick_device(struct dasd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579{
580 dasd_get_device(device);
581 /* queue call to dasd_kick_device to the kernel event daemon. */
582 schedule_work(&device->kick_work);
583}
Fabian Frederick7048a2b2014-06-26 19:41:47 +0200584EXPORT_SYMBOL(dasd_kick_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585
586/*
Stefan Haberland501183f2010-05-17 10:00:10 +0200587 * dasd_reload_device will schedule a call do do_reload_device to the kernel
588 * event daemon.
589 */
590static void do_reload_device(struct work_struct *work)
591{
592 struct dasd_device *device = container_of(work, struct dasd_device,
593 reload_device);
594 device->discipline->reload(device);
595 dasd_put_device(device);
596}
597
598void dasd_reload_device(struct dasd_device *device)
599{
600 dasd_get_device(device);
601 /* queue call to dasd_reload_device to the kernel event daemon. */
602 schedule_work(&device->reload_device);
603}
604EXPORT_SYMBOL(dasd_reload_device);
605
606/*
Stefan Haberlandd41dd122009-06-16 10:30:25 +0200607 * dasd_restore_device will schedule a call do do_restore_device to the kernel
608 * event daemon.
609 */
610static void do_restore_device(struct work_struct *work)
611{
612 struct dasd_device *device = container_of(work, struct dasd_device,
613 restore_device);
614 device->cdev->drv->restore(device->cdev);
615 dasd_put_device(device);
616}
617
618void dasd_restore_device(struct dasd_device *device)
619{
620 dasd_get_device(device);
621 /* queue call to dasd_restore_device to the kernel event daemon. */
622 schedule_work(&device->restore_device);
623}
624
625/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 * Set the target state for a device and starts the state change.
627 */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100628void dasd_set_target_state(struct dasd_device *device, int target)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629{
Cornelia Huckf3445a12009-04-14 15:36:23 +0200630 dasd_get_device(device);
Stefan Haberland9eb25122010-02-26 22:37:46 +0100631 mutex_lock(&device->state_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 /* If we are in probeonly mode stop at DASD_STATE_READY. */
633 if (dasd_probeonly && target > DASD_STATE_READY)
634 target = DASD_STATE_READY;
635 if (device->target != target) {
Stefan Haberland9eb25122010-02-26 22:37:46 +0100636 if (device->state == target)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 wake_up(&dasd_init_waitq);
638 device->target = target;
639 }
640 if (device->state != device->target)
641 dasd_change_state(device);
Stefan Haberland9eb25122010-02-26 22:37:46 +0100642 mutex_unlock(&device->state_mutex);
643 dasd_put_device(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644}
Fabian Frederick7048a2b2014-06-26 19:41:47 +0200645EXPORT_SYMBOL(dasd_set_target_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646
647/*
648 * Enable devices with device numbers in [from..to].
649 */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100650static inline int _wait_for_device(struct dasd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651{
652 return (device->state == device->target);
653}
654
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100655void dasd_enable_device(struct dasd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656{
657 dasd_set_target_state(device, DASD_STATE_ONLINE);
658 if (device->state <= DASD_STATE_KNOWN)
659 /* No discipline for device found. */
660 dasd_set_target_state(device, DASD_STATE_NEW);
661 /* Now wait for the devices to come up. */
662 wait_event(dasd_init_waitq, _wait_for_device(device));
Stefan Haberland25e2cf12012-03-11 11:59:37 -0400663
664 dasd_reload_device(device);
665 if (device->discipline->kick_validate)
666 device->discipline->kick_validate(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667}
Fabian Frederick7048a2b2014-06-26 19:41:47 +0200668EXPORT_SYMBOL(dasd_enable_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669
670/*
671 * SECTION: device operation (interrupt handler, start i/o, term i/o ...)
672 */
Stefan Weinhuber4fa52aa2011-07-24 10:48:32 +0200673
674unsigned int dasd_global_profile_level = DASD_PROFILE_OFF;
675
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676#ifdef CONFIG_DASD_PROFILE
Stefan Weinhuber4fa52aa2011-07-24 10:48:32 +0200677struct dasd_profile_info dasd_global_profile_data;
678static struct dentry *dasd_global_profile_dentry;
679static struct dentry *dasd_debugfs_global_entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680
681/*
682 * Add profiling information for cqr before execution.
683 */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100684static void dasd_profile_start(struct dasd_block *block,
685 struct dasd_ccw_req *cqr,
686 struct request *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687{
688 struct list_head *l;
689 unsigned int counter;
Stefan Weinhuber4fa52aa2011-07-24 10:48:32 +0200690 struct dasd_device *device;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691
692 /* count the length of the chanq for statistics */
693 counter = 0;
Stefan Weinhuber4fa52aa2011-07-24 10:48:32 +0200694 if (dasd_global_profile_level || block->profile.data)
695 list_for_each(l, &block->ccw_queue)
696 if (++counter >= 31)
697 break;
698
699 if (dasd_global_profile_level) {
700 dasd_global_profile_data.dasd_io_nr_req[counter]++;
701 if (rq_data_dir(req) == READ)
702 dasd_global_profile_data.dasd_read_nr_req[counter]++;
703 }
704
705 spin_lock(&block->profile.lock);
Stefan Weinhuberc81a90c2013-10-25 11:08:06 +0200706 if (block->profile.data) {
Stefan Weinhuber4fa52aa2011-07-24 10:48:32 +0200707 block->profile.data->dasd_io_nr_req[counter]++;
708 if (rq_data_dir(req) == READ)
709 block->profile.data->dasd_read_nr_req[counter]++;
Stefan Weinhuberc81a90c2013-10-25 11:08:06 +0200710 }
Stefan Weinhuber4fa52aa2011-07-24 10:48:32 +0200711 spin_unlock(&block->profile.lock);
712
713 /*
714 * We count the request for the start device, even though it may run on
715 * some other device due to error recovery. This way we make sure that
716 * we count each request only once.
717 */
718 device = cqr->startdev;
719 if (device->profile.data) {
720 counter = 1; /* request is not yet queued on the start device */
721 list_for_each(l, &device->ccw_queue)
722 if (++counter >= 31)
723 break;
724 }
725 spin_lock(&device->profile.lock);
726 if (device->profile.data) {
727 device->profile.data->dasd_io_nr_req[counter]++;
728 if (rq_data_dir(req) == READ)
729 device->profile.data->dasd_read_nr_req[counter]++;
730 }
731 spin_unlock(&device->profile.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732}
733
734/*
735 * Add profiling information for cqr after execution.
736 */
Stefan Weinhuber4fa52aa2011-07-24 10:48:32 +0200737
738#define dasd_profile_counter(value, index) \
739{ \
740 for (index = 0; index < 31 && value >> (2+index); index++) \
741 ; \
742}
743
744static void dasd_profile_end_add_data(struct dasd_profile_info *data,
745 int is_alias,
746 int is_tpm,
747 int is_read,
748 long sectors,
749 int sectors_ind,
750 int tottime_ind,
751 int tottimeps_ind,
752 int strtime_ind,
753 int irqtime_ind,
754 int irqtimeps_ind,
755 int endtime_ind)
756{
757 /* in case of an overflow, reset the whole profile */
758 if (data->dasd_io_reqs == UINT_MAX) {
759 memset(data, 0, sizeof(*data));
760 getnstimeofday(&data->starttod);
761 }
762 data->dasd_io_reqs++;
763 data->dasd_io_sects += sectors;
764 if (is_alias)
765 data->dasd_io_alias++;
766 if (is_tpm)
767 data->dasd_io_tpm++;
768
769 data->dasd_io_secs[sectors_ind]++;
770 data->dasd_io_times[tottime_ind]++;
771 data->dasd_io_timps[tottimeps_ind]++;
772 data->dasd_io_time1[strtime_ind]++;
773 data->dasd_io_time2[irqtime_ind]++;
774 data->dasd_io_time2ps[irqtimeps_ind]++;
775 data->dasd_io_time3[endtime_ind]++;
776
777 if (is_read) {
778 data->dasd_read_reqs++;
779 data->dasd_read_sects += sectors;
780 if (is_alias)
781 data->dasd_read_alias++;
782 if (is_tpm)
783 data->dasd_read_tpm++;
784 data->dasd_read_secs[sectors_ind]++;
785 data->dasd_read_times[tottime_ind]++;
786 data->dasd_read_time1[strtime_ind]++;
787 data->dasd_read_time2[irqtime_ind]++;
788 data->dasd_read_time3[endtime_ind]++;
789 }
790}
791
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100792static void dasd_profile_end(struct dasd_block *block,
793 struct dasd_ccw_req *cqr,
794 struct request *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795{
796 long strtime, irqtime, endtime, tottime; /* in microseconds */
797 long tottimeps, sectors;
Stefan Weinhuber4fa52aa2011-07-24 10:48:32 +0200798 struct dasd_device *device;
799 int sectors_ind, tottime_ind, tottimeps_ind, strtime_ind;
800 int irqtime_ind, irqtimeps_ind, endtime_ind;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801
Stefan Weinhuber4fa52aa2011-07-24 10:48:32 +0200802 device = cqr->startdev;
803 if (!(dasd_global_profile_level ||
804 block->profile.data ||
805 device->profile.data))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 return;
807
Tejun Heo83096eb2009-05-07 22:24:39 +0900808 sectors = blk_rq_sectors(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 if (!cqr->buildclk || !cqr->startclk ||
810 !cqr->stopclk || !cqr->endclk ||
811 !sectors)
812 return;
813
814 strtime = ((cqr->startclk - cqr->buildclk) >> 12);
815 irqtime = ((cqr->stopclk - cqr->startclk) >> 12);
816 endtime = ((cqr->endclk - cqr->stopclk) >> 12);
817 tottime = ((cqr->endclk - cqr->buildclk) >> 12);
818 tottimeps = tottime / sectors;
819
Stefan Weinhuber4fa52aa2011-07-24 10:48:32 +0200820 dasd_profile_counter(sectors, sectors_ind);
821 dasd_profile_counter(tottime, tottime_ind);
822 dasd_profile_counter(tottimeps, tottimeps_ind);
823 dasd_profile_counter(strtime, strtime_ind);
824 dasd_profile_counter(irqtime, irqtime_ind);
825 dasd_profile_counter(irqtime / sectors, irqtimeps_ind);
826 dasd_profile_counter(endtime, endtime_ind);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827
Stefan Weinhuber4fa52aa2011-07-24 10:48:32 +0200828 if (dasd_global_profile_level) {
829 dasd_profile_end_add_data(&dasd_global_profile_data,
830 cqr->startdev != block->base,
831 cqr->cpmode == 1,
832 rq_data_dir(req) == READ,
833 sectors, sectors_ind, tottime_ind,
834 tottimeps_ind, strtime_ind,
835 irqtime_ind, irqtimeps_ind,
836 endtime_ind);
837 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838
Stefan Weinhuber4fa52aa2011-07-24 10:48:32 +0200839 spin_lock(&block->profile.lock);
840 if (block->profile.data)
841 dasd_profile_end_add_data(block->profile.data,
842 cqr->startdev != block->base,
843 cqr->cpmode == 1,
844 rq_data_dir(req) == READ,
845 sectors, sectors_ind, tottime_ind,
846 tottimeps_ind, strtime_ind,
847 irqtime_ind, irqtimeps_ind,
848 endtime_ind);
849 spin_unlock(&block->profile.lock);
850
851 spin_lock(&device->profile.lock);
852 if (device->profile.data)
853 dasd_profile_end_add_data(device->profile.data,
854 cqr->startdev != block->base,
855 cqr->cpmode == 1,
856 rq_data_dir(req) == READ,
857 sectors, sectors_ind, tottime_ind,
858 tottimeps_ind, strtime_ind,
859 irqtime_ind, irqtimeps_ind,
860 endtime_ind);
861 spin_unlock(&device->profile.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862}
Stefan Weinhuber4fa52aa2011-07-24 10:48:32 +0200863
864void dasd_profile_reset(struct dasd_profile *profile)
865{
866 struct dasd_profile_info *data;
867
868 spin_lock_bh(&profile->lock);
869 data = profile->data;
870 if (!data) {
871 spin_unlock_bh(&profile->lock);
872 return;
873 }
874 memset(data, 0, sizeof(*data));
875 getnstimeofday(&data->starttod);
876 spin_unlock_bh(&profile->lock);
877}
878
879void dasd_global_profile_reset(void)
880{
881 memset(&dasd_global_profile_data, 0, sizeof(dasd_global_profile_data));
882 getnstimeofday(&dasd_global_profile_data.starttod);
883}
884
885int dasd_profile_on(struct dasd_profile *profile)
886{
887 struct dasd_profile_info *data;
888
889 data = kzalloc(sizeof(*data), GFP_KERNEL);
890 if (!data)
891 return -ENOMEM;
892 spin_lock_bh(&profile->lock);
893 if (profile->data) {
894 spin_unlock_bh(&profile->lock);
895 kfree(data);
896 return 0;
897 }
898 getnstimeofday(&data->starttod);
899 profile->data = data;
900 spin_unlock_bh(&profile->lock);
901 return 0;
902}
903
904void dasd_profile_off(struct dasd_profile *profile)
905{
906 spin_lock_bh(&profile->lock);
907 kfree(profile->data);
908 profile->data = NULL;
909 spin_unlock_bh(&profile->lock);
910}
911
912char *dasd_get_user_string(const char __user *user_buf, size_t user_len)
913{
914 char *buffer;
915
Stefan Weinhubere4258d52011-08-03 16:44:20 +0200916 buffer = vmalloc(user_len + 1);
Stefan Weinhuber4fa52aa2011-07-24 10:48:32 +0200917 if (buffer == NULL)
918 return ERR_PTR(-ENOMEM);
919 if (copy_from_user(buffer, user_buf, user_len) != 0) {
Stefan Weinhubere4258d52011-08-03 16:44:20 +0200920 vfree(buffer);
Stefan Weinhuber4fa52aa2011-07-24 10:48:32 +0200921 return ERR_PTR(-EFAULT);
922 }
923 /* got the string, now strip linefeed. */
924 if (buffer[user_len - 1] == '\n')
925 buffer[user_len - 1] = 0;
926 else
927 buffer[user_len] = 0;
928 return buffer;
929}
930
931static ssize_t dasd_stats_write(struct file *file,
932 const char __user *user_buf,
933 size_t user_len, loff_t *pos)
934{
935 char *buffer, *str;
936 int rc;
937 struct seq_file *m = (struct seq_file *)file->private_data;
938 struct dasd_profile *prof = m->private;
939
940 if (user_len > 65536)
941 user_len = 65536;
942 buffer = dasd_get_user_string(user_buf, user_len);
943 if (IS_ERR(buffer))
944 return PTR_ERR(buffer);
945
946 str = skip_spaces(buffer);
947 rc = user_len;
948 if (strncmp(str, "reset", 5) == 0) {
949 dasd_profile_reset(prof);
950 } else if (strncmp(str, "on", 2) == 0) {
951 rc = dasd_profile_on(prof);
952 if (!rc)
953 rc = user_len;
954 } else if (strncmp(str, "off", 3) == 0) {
955 dasd_profile_off(prof);
956 } else
957 rc = -EINVAL;
Stefan Weinhubere4258d52011-08-03 16:44:20 +0200958 vfree(buffer);
Stefan Weinhuber4fa52aa2011-07-24 10:48:32 +0200959 return rc;
960}
961
962static void dasd_stats_array(struct seq_file *m, unsigned int *array)
963{
964 int i;
965
966 for (i = 0; i < 32; i++)
967 seq_printf(m, "%u ", array[i]);
968 seq_putc(m, '\n');
969}
970
971static void dasd_stats_seq_print(struct seq_file *m,
972 struct dasd_profile_info *data)
973{
974 seq_printf(m, "start_time %ld.%09ld\n",
975 data->starttod.tv_sec, data->starttod.tv_nsec);
976 seq_printf(m, "total_requests %u\n", data->dasd_io_reqs);
977 seq_printf(m, "total_sectors %u\n", data->dasd_io_sects);
978 seq_printf(m, "total_pav %u\n", data->dasd_io_alias);
979 seq_printf(m, "total_hpf %u\n", data->dasd_io_tpm);
Fabian Frederickc794caf2014-06-26 19:41:49 +0200980 seq_puts(m, "histogram_sectors ");
Stefan Weinhuber4fa52aa2011-07-24 10:48:32 +0200981 dasd_stats_array(m, data->dasd_io_secs);
Fabian Frederickc794caf2014-06-26 19:41:49 +0200982 seq_puts(m, "histogram_io_times ");
Stefan Weinhuber4fa52aa2011-07-24 10:48:32 +0200983 dasd_stats_array(m, data->dasd_io_times);
Fabian Frederickc794caf2014-06-26 19:41:49 +0200984 seq_puts(m, "histogram_io_times_weighted ");
Stefan Weinhuber4fa52aa2011-07-24 10:48:32 +0200985 dasd_stats_array(m, data->dasd_io_timps);
Fabian Frederickc794caf2014-06-26 19:41:49 +0200986 seq_puts(m, "histogram_time_build_to_ssch ");
Stefan Weinhuber4fa52aa2011-07-24 10:48:32 +0200987 dasd_stats_array(m, data->dasd_io_time1);
Fabian Frederickc794caf2014-06-26 19:41:49 +0200988 seq_puts(m, "histogram_time_ssch_to_irq ");
Stefan Weinhuber4fa52aa2011-07-24 10:48:32 +0200989 dasd_stats_array(m, data->dasd_io_time2);
Fabian Frederickc794caf2014-06-26 19:41:49 +0200990 seq_puts(m, "histogram_time_ssch_to_irq_weighted ");
Stefan Weinhuber4fa52aa2011-07-24 10:48:32 +0200991 dasd_stats_array(m, data->dasd_io_time2ps);
Fabian Frederickc794caf2014-06-26 19:41:49 +0200992 seq_puts(m, "histogram_time_irq_to_end ");
Stefan Weinhuber4fa52aa2011-07-24 10:48:32 +0200993 dasd_stats_array(m, data->dasd_io_time3);
Fabian Frederickc794caf2014-06-26 19:41:49 +0200994 seq_puts(m, "histogram_ccw_queue_length ");
Stefan Weinhuber4fa52aa2011-07-24 10:48:32 +0200995 dasd_stats_array(m, data->dasd_io_nr_req);
996 seq_printf(m, "total_read_requests %u\n", data->dasd_read_reqs);
997 seq_printf(m, "total_read_sectors %u\n", data->dasd_read_sects);
998 seq_printf(m, "total_read_pav %u\n", data->dasd_read_alias);
999 seq_printf(m, "total_read_hpf %u\n", data->dasd_read_tpm);
Fabian Frederickc794caf2014-06-26 19:41:49 +02001000 seq_puts(m, "histogram_read_sectors ");
Stefan Weinhuber4fa52aa2011-07-24 10:48:32 +02001001 dasd_stats_array(m, data->dasd_read_secs);
Fabian Frederickc794caf2014-06-26 19:41:49 +02001002 seq_puts(m, "histogram_read_times ");
Stefan Weinhuber4fa52aa2011-07-24 10:48:32 +02001003 dasd_stats_array(m, data->dasd_read_times);
Fabian Frederickc794caf2014-06-26 19:41:49 +02001004 seq_puts(m, "histogram_read_time_build_to_ssch ");
Stefan Weinhuber4fa52aa2011-07-24 10:48:32 +02001005 dasd_stats_array(m, data->dasd_read_time1);
Fabian Frederickc794caf2014-06-26 19:41:49 +02001006 seq_puts(m, "histogram_read_time_ssch_to_irq ");
Stefan Weinhuber4fa52aa2011-07-24 10:48:32 +02001007 dasd_stats_array(m, data->dasd_read_time2);
Fabian Frederickc794caf2014-06-26 19:41:49 +02001008 seq_puts(m, "histogram_read_time_irq_to_end ");
Stefan Weinhuber4fa52aa2011-07-24 10:48:32 +02001009 dasd_stats_array(m, data->dasd_read_time3);
Fabian Frederickc794caf2014-06-26 19:41:49 +02001010 seq_puts(m, "histogram_read_ccw_queue_length ");
Stefan Weinhuber4fa52aa2011-07-24 10:48:32 +02001011 dasd_stats_array(m, data->dasd_read_nr_req);
1012}
1013
1014static int dasd_stats_show(struct seq_file *m, void *v)
1015{
1016 struct dasd_profile *profile;
1017 struct dasd_profile_info *data;
1018
1019 profile = m->private;
1020 spin_lock_bh(&profile->lock);
1021 data = profile->data;
1022 if (!data) {
1023 spin_unlock_bh(&profile->lock);
Fabian Frederickc794caf2014-06-26 19:41:49 +02001024 seq_puts(m, "disabled\n");
Stefan Weinhuber4fa52aa2011-07-24 10:48:32 +02001025 return 0;
1026 }
1027 dasd_stats_seq_print(m, data);
1028 spin_unlock_bh(&profile->lock);
1029 return 0;
1030}
1031
1032static int dasd_stats_open(struct inode *inode, struct file *file)
1033{
1034 struct dasd_profile *profile = inode->i_private;
1035 return single_open(file, dasd_stats_show, profile);
1036}
1037
1038static const struct file_operations dasd_stats_raw_fops = {
1039 .owner = THIS_MODULE,
1040 .open = dasd_stats_open,
1041 .read = seq_read,
1042 .llseek = seq_lseek,
1043 .release = single_release,
1044 .write = dasd_stats_write,
1045};
1046
1047static ssize_t dasd_stats_global_write(struct file *file,
1048 const char __user *user_buf,
1049 size_t user_len, loff_t *pos)
1050{
1051 char *buffer, *str;
1052 ssize_t rc;
1053
1054 if (user_len > 65536)
1055 user_len = 65536;
1056 buffer = dasd_get_user_string(user_buf, user_len);
1057 if (IS_ERR(buffer))
1058 return PTR_ERR(buffer);
1059 str = skip_spaces(buffer);
1060 rc = user_len;
1061 if (strncmp(str, "reset", 5) == 0) {
1062 dasd_global_profile_reset();
1063 } else if (strncmp(str, "on", 2) == 0) {
1064 dasd_global_profile_reset();
1065 dasd_global_profile_level = DASD_PROFILE_GLOBAL_ONLY;
1066 } else if (strncmp(str, "off", 3) == 0) {
1067 dasd_global_profile_level = DASD_PROFILE_OFF;
1068 } else
1069 rc = -EINVAL;
Stefan Weinhubere4258d52011-08-03 16:44:20 +02001070 vfree(buffer);
Stefan Weinhuber4fa52aa2011-07-24 10:48:32 +02001071 return rc;
1072}
1073
1074static int dasd_stats_global_show(struct seq_file *m, void *v)
1075{
1076 if (!dasd_global_profile_level) {
Fabian Frederickc794caf2014-06-26 19:41:49 +02001077 seq_puts(m, "disabled\n");
Stefan Weinhuber4fa52aa2011-07-24 10:48:32 +02001078 return 0;
1079 }
1080 dasd_stats_seq_print(m, &dasd_global_profile_data);
1081 return 0;
1082}
1083
1084static int dasd_stats_global_open(struct inode *inode, struct file *file)
1085{
1086 return single_open(file, dasd_stats_global_show, NULL);
1087}
1088
1089static const struct file_operations dasd_stats_global_fops = {
1090 .owner = THIS_MODULE,
1091 .open = dasd_stats_global_open,
1092 .read = seq_read,
1093 .llseek = seq_lseek,
1094 .release = single_release,
1095 .write = dasd_stats_global_write,
1096};
1097
1098static void dasd_profile_init(struct dasd_profile *profile,
1099 struct dentry *base_dentry)
1100{
Al Virof4ae40a2011-07-24 04:33:43 -04001101 umode_t mode;
Stefan Weinhuber4fa52aa2011-07-24 10:48:32 +02001102 struct dentry *pde;
1103
1104 if (!base_dentry)
1105 return;
1106 profile->dentry = NULL;
1107 profile->data = NULL;
1108 mode = (S_IRUSR | S_IWUSR | S_IFREG);
1109 pde = debugfs_create_file("statistics", mode, base_dentry,
1110 profile, &dasd_stats_raw_fops);
1111 if (pde && !IS_ERR(pde))
1112 profile->dentry = pde;
1113 return;
1114}
1115
1116static void dasd_profile_exit(struct dasd_profile *profile)
1117{
1118 dasd_profile_off(profile);
Fabian Frederickd7309aa2014-06-26 19:41:46 +02001119 debugfs_remove(profile->dentry);
1120 profile->dentry = NULL;
Stefan Weinhuber4fa52aa2011-07-24 10:48:32 +02001121}
1122
1123static void dasd_statistics_removeroot(void)
1124{
1125 dasd_global_profile_level = DASD_PROFILE_OFF;
Fabian Frederickd7309aa2014-06-26 19:41:46 +02001126 debugfs_remove(dasd_global_profile_dentry);
1127 dasd_global_profile_dentry = NULL;
1128 debugfs_remove(dasd_debugfs_global_entry);
1129 debugfs_remove(dasd_debugfs_root_entry);
Stefan Weinhuber4fa52aa2011-07-24 10:48:32 +02001130}
1131
1132static void dasd_statistics_createroot(void)
1133{
Al Virof4ae40a2011-07-24 04:33:43 -04001134 umode_t mode;
Stefan Weinhuber4fa52aa2011-07-24 10:48:32 +02001135 struct dentry *pde;
1136
1137 dasd_debugfs_root_entry = NULL;
1138 dasd_debugfs_global_entry = NULL;
1139 dasd_global_profile_dentry = NULL;
1140 pde = debugfs_create_dir("dasd", NULL);
1141 if (!pde || IS_ERR(pde))
1142 goto error;
1143 dasd_debugfs_root_entry = pde;
1144 pde = debugfs_create_dir("global", dasd_debugfs_root_entry);
1145 if (!pde || IS_ERR(pde))
1146 goto error;
1147 dasd_debugfs_global_entry = pde;
1148
1149 mode = (S_IRUSR | S_IWUSR | S_IFREG);
1150 pde = debugfs_create_file("statistics", mode, dasd_debugfs_global_entry,
1151 NULL, &dasd_stats_global_fops);
1152 if (!pde || IS_ERR(pde))
1153 goto error;
1154 dasd_global_profile_dentry = pde;
1155 return;
1156
1157error:
1158 DBF_EVENT(DBF_ERR, "%s",
1159 "Creation of the dasd debugfs interface failed");
1160 dasd_statistics_removeroot();
1161 return;
1162}
1163
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164#else
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001165#define dasd_profile_start(block, cqr, req) do {} while (0)
1166#define dasd_profile_end(block, cqr, req) do {} while (0)
Stefan Weinhuber4fa52aa2011-07-24 10:48:32 +02001167
1168static void dasd_statistics_createroot(void)
1169{
1170 return;
1171}
1172
1173static void dasd_statistics_removeroot(void)
1174{
1175 return;
1176}
1177
1178int dasd_stats_generic_show(struct seq_file *m, void *v)
1179{
Fabian Frederickc794caf2014-06-26 19:41:49 +02001180 seq_puts(m, "Statistics are not activated in this kernel\n");
Stefan Weinhuber4fa52aa2011-07-24 10:48:32 +02001181 return 0;
1182}
1183
1184static void dasd_profile_init(struct dasd_profile *profile,
1185 struct dentry *base_dentry)
1186{
1187 return;
1188}
1189
1190static void dasd_profile_exit(struct dasd_profile *profile)
1191{
1192 return;
1193}
1194
1195int dasd_profile_on(struct dasd_profile *profile)
1196{
1197 return 0;
1198}
1199
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200#endif /* CONFIG_DASD_PROFILE */
1201
1202/*
1203 * Allocate memory for a channel program with 'cplength' channel
1204 * command words and 'datasize' additional space. There are two
1205 * variantes: 1) dasd_kmalloc_request uses kmalloc to get the needed
1206 * memory and 2) dasd_smalloc_request uses the static ccw memory
1207 * that gets allocated for each device.
1208 */
Stefan Haberland68b781f2009-09-11 10:28:29 +02001209struct dasd_ccw_req *dasd_kmalloc_request(int magic, int cplength,
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001210 int datasize,
1211 struct dasd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212{
1213 struct dasd_ccw_req *cqr;
1214
1215 /* Sanity checks */
Stefan Haberland68b781f2009-09-11 10:28:29 +02001216 BUG_ON(datasize > PAGE_SIZE ||
Eric Sesterhenn7ac1e872006-03-24 18:48:13 +01001217 (cplength*sizeof(struct ccw1)) > PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218
Eric Sesterhenn88abaab2006-03-24 03:15:31 -08001219 cqr = kzalloc(sizeof(struct dasd_ccw_req), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220 if (cqr == NULL)
1221 return ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 cqr->cpaddr = NULL;
1223 if (cplength > 0) {
Eric Sesterhenn88abaab2006-03-24 03:15:31 -08001224 cqr->cpaddr = kcalloc(cplength, sizeof(struct ccw1),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225 GFP_ATOMIC | GFP_DMA);
1226 if (cqr->cpaddr == NULL) {
1227 kfree(cqr);
1228 return ERR_PTR(-ENOMEM);
1229 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 }
1231 cqr->data = NULL;
1232 if (datasize > 0) {
Eric Sesterhenn88abaab2006-03-24 03:15:31 -08001233 cqr->data = kzalloc(datasize, GFP_ATOMIC | GFP_DMA);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234 if (cqr->data == NULL) {
Jesper Juhl17fd6822005-11-07 01:01:30 -08001235 kfree(cqr->cpaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 kfree(cqr);
1237 return ERR_PTR(-ENOMEM);
1238 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239 }
Stefan Haberland68b781f2009-09-11 10:28:29 +02001240 cqr->magic = magic;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241 set_bit(DASD_CQR_FLAGS_USE_ERP, &cqr->flags);
1242 dasd_get_device(device);
1243 return cqr;
1244}
Fabian Frederick7048a2b2014-06-26 19:41:47 +02001245EXPORT_SYMBOL(dasd_kmalloc_request);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246
Stefan Haberland68b781f2009-09-11 10:28:29 +02001247struct dasd_ccw_req *dasd_smalloc_request(int magic, int cplength,
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001248 int datasize,
1249 struct dasd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250{
1251 unsigned long flags;
1252 struct dasd_ccw_req *cqr;
1253 char *data;
1254 int size;
1255
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256 size = (sizeof(struct dasd_ccw_req) + 7L) & -8L;
1257 if (cplength > 0)
1258 size += cplength * sizeof(struct ccw1);
1259 if (datasize > 0)
1260 size += datasize;
1261 spin_lock_irqsave(&device->mem_lock, flags);
1262 cqr = (struct dasd_ccw_req *)
1263 dasd_alloc_chunk(&device->ccw_chunks, size);
1264 spin_unlock_irqrestore(&device->mem_lock, flags);
1265 if (cqr == NULL)
1266 return ERR_PTR(-ENOMEM);
1267 memset(cqr, 0, sizeof(struct dasd_ccw_req));
1268 data = (char *) cqr + ((sizeof(struct dasd_ccw_req) + 7L) & -8L);
1269 cqr->cpaddr = NULL;
1270 if (cplength > 0) {
1271 cqr->cpaddr = (struct ccw1 *) data;
1272 data += cplength*sizeof(struct ccw1);
1273 memset(cqr->cpaddr, 0, cplength*sizeof(struct ccw1));
1274 }
1275 cqr->data = NULL;
1276 if (datasize > 0) {
1277 cqr->data = data;
1278 memset(cqr->data, 0, datasize);
1279 }
Stefan Haberland68b781f2009-09-11 10:28:29 +02001280 cqr->magic = magic;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281 set_bit(DASD_CQR_FLAGS_USE_ERP, &cqr->flags);
1282 dasd_get_device(device);
1283 return cqr;
1284}
Fabian Frederick7048a2b2014-06-26 19:41:47 +02001285EXPORT_SYMBOL(dasd_smalloc_request);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286
1287/*
1288 * Free memory of a channel program. This function needs to free all the
1289 * idal lists that might have been created by dasd_set_cda and the
1290 * struct dasd_ccw_req itself.
1291 */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001292void dasd_kfree_request(struct dasd_ccw_req *cqr, struct dasd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293{
Martin Schwidefsky347a8dc2006-01-06 00:19:28 -08001294#ifdef CONFIG_64BIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295 struct ccw1 *ccw;
1296
1297 /* Clear any idals used for the request. */
1298 ccw = cqr->cpaddr;
1299 do {
1300 clear_normalized_cda(ccw);
1301 } while (ccw++->flags & (CCW_FLAG_CC | CCW_FLAG_DC));
1302#endif
Jesper Juhl17fd6822005-11-07 01:01:30 -08001303 kfree(cqr->cpaddr);
1304 kfree(cqr->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305 kfree(cqr);
1306 dasd_put_device(device);
1307}
Fabian Frederick7048a2b2014-06-26 19:41:47 +02001308EXPORT_SYMBOL(dasd_kfree_request);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001310void dasd_sfree_request(struct dasd_ccw_req *cqr, struct dasd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311{
1312 unsigned long flags;
1313
1314 spin_lock_irqsave(&device->mem_lock, flags);
1315 dasd_free_chunk(&device->ccw_chunks, cqr);
1316 spin_unlock_irqrestore(&device->mem_lock, flags);
1317 dasd_put_device(device);
1318}
Fabian Frederick7048a2b2014-06-26 19:41:47 +02001319EXPORT_SYMBOL(dasd_sfree_request);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320
1321/*
1322 * Check discipline magic in cqr.
1323 */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001324static inline int dasd_check_cqr(struct dasd_ccw_req *cqr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325{
1326 struct dasd_device *device;
1327
1328 if (cqr == NULL)
1329 return -EINVAL;
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001330 device = cqr->startdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331 if (strncmp((char *) &cqr->magic, device->discipline->ebcname, 4)) {
Stefan Haberlandfc19f382009-03-26 15:23:49 +01001332 DBF_DEV_EVENT(DBF_WARNING, device,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333 " dasd_ccw_req 0x%08x magic doesn't match"
1334 " discipline 0x%08x",
1335 cqr->magic,
1336 *(unsigned int *) device->discipline->name);
1337 return -EINVAL;
1338 }
1339 return 0;
1340}
1341
1342/*
1343 * Terminate the current i/o and set the request to clear_pending.
1344 * Timer keeps device runnig.
1345 * ccw_device_clear can fail if the i/o subsystem
1346 * is in a bad mood.
1347 */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001348int dasd_term_IO(struct dasd_ccw_req *cqr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349{
1350 struct dasd_device *device;
1351 int retries, rc;
Stefan Haberlandfc19f382009-03-26 15:23:49 +01001352 char errorstring[ERRORLENGTH];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353
1354 /* Check the cqr */
1355 rc = dasd_check_cqr(cqr);
1356 if (rc)
1357 return rc;
1358 retries = 0;
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001359 device = (struct dasd_device *) cqr->startdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360 while ((retries < 5) && (cqr->status == DASD_CQR_IN_IO)) {
1361 rc = ccw_device_clear(device->cdev, (long) cqr);
1362 switch (rc) {
1363 case 0: /* termination successful */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001364 cqr->status = DASD_CQR_CLEAR_PENDING;
Heiko Carstens1aae0562013-01-30 09:49:40 +01001365 cqr->stopclk = get_tod_clock();
Horst Hummel8f617012006-08-30 14:33:33 +02001366 cqr->starttime = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367 DBF_DEV_EVENT(DBF_DEBUG, device,
1368 "terminate cqr %p successful",
1369 cqr);
1370 break;
1371 case -ENODEV:
1372 DBF_DEV_EVENT(DBF_ERR, device, "%s",
1373 "device gone, retry");
1374 break;
1375 case -EIO:
1376 DBF_DEV_EVENT(DBF_ERR, device, "%s",
1377 "I/O error, retry");
1378 break;
1379 case -EINVAL:
Stefan Haberland2c171242014-11-24 10:53:19 +01001380 /*
1381 * device not valid so no I/O could be running
1382 * handle CQR as termination successful
1383 */
1384 cqr->status = DASD_CQR_CLEARED;
1385 cqr->stopclk = get_tod_clock();
1386 cqr->starttime = 0;
1387 /* no retries for invalid devices */
1388 cqr->retries = -1;
1389 DBF_DEV_EVENT(DBF_ERR, device, "%s",
1390 "EINVAL, handle as terminated");
1391 /* fake rc to success */
1392 rc = 0;
1393 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394 case -EBUSY:
1395 DBF_DEV_EVENT(DBF_ERR, device, "%s",
1396 "device busy, retry later");
1397 break;
1398 default:
Stefan Haberlandfc19f382009-03-26 15:23:49 +01001399 /* internal error 10 - unknown rc*/
1400 snprintf(errorstring, ERRORLENGTH, "10 %d", rc);
1401 dev_err(&device->cdev->dev, "An error occurred in the "
1402 "DASD device driver, reason=%s\n", errorstring);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403 BUG();
1404 break;
1405 }
1406 retries++;
1407 }
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001408 dasd_schedule_device_bh(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409 return rc;
1410}
Fabian Frederick7048a2b2014-06-26 19:41:47 +02001411EXPORT_SYMBOL(dasd_term_IO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412
1413/*
1414 * Start the i/o. This start_IO can fail if the channel is really busy.
1415 * In that case set up a timer to start the request later.
1416 */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001417int dasd_start_IO(struct dasd_ccw_req *cqr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418{
1419 struct dasd_device *device;
1420 int rc;
Stefan Haberlandfc19f382009-03-26 15:23:49 +01001421 char errorstring[ERRORLENGTH];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422
1423 /* Check the cqr */
1424 rc = dasd_check_cqr(cqr);
Stefan Weinhuber6cc7f162009-06-12 10:26:39 +02001425 if (rc) {
1426 cqr->intrc = rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427 return rc;
Stefan Weinhuber6cc7f162009-06-12 10:26:39 +02001428 }
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001429 device = (struct dasd_device *) cqr->startdev;
Stefan Weinhuber5a27e602011-01-05 12:48:04 +01001430 if (((cqr->block &&
1431 test_bit(DASD_FLAG_LOCK_STOLEN, &cqr->block->base->flags)) ||
1432 test_bit(DASD_FLAG_LOCK_STOLEN, &device->flags)) &&
1433 !test_bit(DASD_CQR_ALLOW_SLOCK, &cqr->flags)) {
1434 DBF_DEV_EVENT(DBF_DEBUG, device, "start_IO: return request %p "
1435 "because of stolen lock", cqr);
1436 cqr->status = DASD_CQR_ERROR;
1437 cqr->intrc = -EPERM;
1438 return -EPERM;
1439 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440 if (cqr->retries < 0) {
Stefan Haberlandfc19f382009-03-26 15:23:49 +01001441 /* internal error 14 - start_IO run out of retries */
1442 sprintf(errorstring, "14 %p", cqr);
1443 dev_err(&device->cdev->dev, "An error occurred in the DASD "
1444 "device driver, reason=%s\n", errorstring);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001445 cqr->status = DASD_CQR_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446 return -EIO;
1447 }
Heiko Carstens1aae0562013-01-30 09:49:40 +01001448 cqr->startclk = get_tod_clock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449 cqr->starttime = jiffies;
1450 cqr->retries--;
Stefan Weinhubera4d26c62011-01-05 12:48:03 +01001451 if (!test_bit(DASD_CQR_VERIFY_PATH, &cqr->flags)) {
1452 cqr->lpm &= device->path_data.opm;
1453 if (!cqr->lpm)
1454 cqr->lpm = device->path_data.opm;
1455 }
Stefan Weinhuberf3eb5382009-03-26 15:23:48 +01001456 if (cqr->cpmode == 1) {
1457 rc = ccw_device_tm_start(device->cdev, cqr->cpaddr,
1458 (long) cqr, cqr->lpm);
1459 } else {
1460 rc = ccw_device_start(device->cdev, cqr->cpaddr,
1461 (long) cqr, cqr->lpm, 0);
1462 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463 switch (rc) {
1464 case 0:
1465 cqr->status = DASD_CQR_IN_IO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 break;
1467 case -EBUSY:
Stefan Weinhubera4d26c62011-01-05 12:48:03 +01001468 DBF_DEV_EVENT(DBF_WARNING, device, "%s",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469 "start_IO: device busy, retry later");
1470 break;
1471 case -ETIMEDOUT:
Stefan Weinhubera4d26c62011-01-05 12:48:03 +01001472 DBF_DEV_EVENT(DBF_WARNING, device, "%s",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473 "start_IO: request timeout, retry later");
1474 break;
1475 case -EACCES:
Stefan Weinhubera4d26c62011-01-05 12:48:03 +01001476 /* -EACCES indicates that the request used only a subset of the
1477 * available paths and all these paths are gone. If the lpm of
1478 * this request was only a subset of the opm (e.g. the ppm) then
1479 * we just do a retry with all available paths.
1480 * If we already use the full opm, something is amiss, and we
1481 * need a full path verification.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482 */
Stefan Weinhubera4d26c62011-01-05 12:48:03 +01001483 if (test_bit(DASD_CQR_VERIFY_PATH, &cqr->flags)) {
1484 DBF_DEV_EVENT(DBF_WARNING, device,
1485 "start_IO: selected paths gone (%x)",
1486 cqr->lpm);
1487 } else if (cqr->lpm != device->path_data.opm) {
1488 cqr->lpm = device->path_data.opm;
1489 DBF_DEV_EVENT(DBF_DEBUG, device, "%s",
1490 "start_IO: selected paths gone,"
1491 " retry on all paths");
1492 } else {
1493 DBF_DEV_EVENT(DBF_WARNING, device, "%s",
1494 "start_IO: all paths in opm gone,"
1495 " do path verification");
1496 dasd_generic_last_path_gone(device);
1497 device->path_data.opm = 0;
1498 device->path_data.ppm = 0;
1499 device->path_data.npm = 0;
1500 device->path_data.tbvpm =
1501 ccw_device_get_path_mask(device->cdev);
1502 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503 break;
1504 case -ENODEV:
Stefan Weinhubera4d26c62011-01-05 12:48:03 +01001505 DBF_DEV_EVENT(DBF_WARNING, device, "%s",
Stefan Weinhuberf3eb5382009-03-26 15:23:48 +01001506 "start_IO: -ENODEV device gone, retry");
1507 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508 case -EIO:
Stefan Weinhubera4d26c62011-01-05 12:48:03 +01001509 DBF_DEV_EVENT(DBF_WARNING, device, "%s",
Stefan Weinhuberf3eb5382009-03-26 15:23:48 +01001510 "start_IO: -EIO device gone, retry");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511 break;
Stefan Haberlandd41dd122009-06-16 10:30:25 +02001512 case -EINVAL:
1513 /* most likely caused in power management context */
Stefan Weinhubera4d26c62011-01-05 12:48:03 +01001514 DBF_DEV_EVENT(DBF_WARNING, device, "%s",
Stefan Haberlandd41dd122009-06-16 10:30:25 +02001515 "start_IO: -EINVAL device currently "
1516 "not accessible");
1517 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518 default:
Stefan Haberlandfc19f382009-03-26 15:23:49 +01001519 /* internal error 11 - unknown rc */
1520 snprintf(errorstring, ERRORLENGTH, "11 %d", rc);
1521 dev_err(&device->cdev->dev,
1522 "An error occurred in the DASD device driver, "
1523 "reason=%s\n", errorstring);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524 BUG();
1525 break;
1526 }
Stefan Weinhuber6cc7f162009-06-12 10:26:39 +02001527 cqr->intrc = rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528 return rc;
1529}
Fabian Frederick7048a2b2014-06-26 19:41:47 +02001530EXPORT_SYMBOL(dasd_start_IO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531
1532/*
1533 * Timeout function for dasd devices. This is used for different purposes
1534 * 1) missing interrupt handler for normal operation
1535 * 2) delayed start of request where start_IO failed with -EBUSY
1536 * 3) timeout for missing state change interrupts
1537 * The head of the ccw queue will have status DASD_CQR_IN_IO for 1),
1538 * DASD_CQR_QUEUED for 2) and 3).
1539 */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001540static void dasd_device_timeout(unsigned long ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541{
1542 unsigned long flags;
1543 struct dasd_device *device;
1544
1545 device = (struct dasd_device *) ptr;
1546 spin_lock_irqsave(get_ccwdev_lock(device->cdev), flags);
1547 /* re-activate request queue */
Stefan Weinhubereb6e1992009-12-07 12:51:51 +01001548 dasd_device_remove_stop_bits(device, DASD_STOPPED_PENDING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549 spin_unlock_irqrestore(get_ccwdev_lock(device->cdev), flags);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001550 dasd_schedule_device_bh(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551}
1552
1553/*
1554 * Setup timeout for a device in jiffies.
1555 */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001556void dasd_device_set_timer(struct dasd_device *device, int expires)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557{
Stefan Weinhuber48cae882009-02-11 10:37:31 +01001558 if (expires == 0)
1559 del_timer(&device->timer);
1560 else
1561 mod_timer(&device->timer, jiffies + expires);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562}
Fabian Frederick7048a2b2014-06-26 19:41:47 +02001563EXPORT_SYMBOL(dasd_device_set_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564
1565/*
1566 * Clear timeout for a device.
1567 */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001568void dasd_device_clear_timer(struct dasd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569{
Stefan Weinhuber48cae882009-02-11 10:37:31 +01001570 del_timer(&device->timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571}
Fabian Frederick7048a2b2014-06-26 19:41:47 +02001572EXPORT_SYMBOL(dasd_device_clear_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001574static void dasd_handle_killed_request(struct ccw_device *cdev,
1575 unsigned long intparm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576{
1577 struct dasd_ccw_req *cqr;
1578 struct dasd_device *device;
1579
Stefan Weinhuberf16f5842008-05-15 16:52:36 +02001580 if (!intparm)
1581 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582 cqr = (struct dasd_ccw_req *) intparm;
1583 if (cqr->status != DASD_CQR_IN_IO) {
Stefan Haberlandb8ed5dd2009-12-07 12:51:52 +01001584 DBF_EVENT_DEVID(DBF_DEBUG, cdev,
1585 "invalid status in handle_killed_request: "
1586 "%02x", cqr->status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587 return;
1588 }
1589
Stefan Haberland589c74d2010-02-26 22:37:47 +01001590 device = dasd_device_from_cdev_locked(cdev);
1591 if (IS_ERR(device)) {
1592 DBF_EVENT_DEVID(DBF_DEBUG, cdev, "%s",
1593 "unable to get device from cdev");
1594 return;
1595 }
1596
1597 if (!cqr->startdev ||
1598 device != cqr->startdev ||
1599 strncmp(cqr->startdev->discipline->ebcname,
1600 (char *) &cqr->magic, 4)) {
Stefan Haberland294001a2010-01-27 10:12:35 +01001601 DBF_EVENT_DEVID(DBF_DEBUG, cdev, "%s",
1602 "invalid device in request");
Stefan Haberland589c74d2010-02-26 22:37:47 +01001603 dasd_put_device(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604 return;
1605 }
1606
1607 /* Schedule request to be retried. */
1608 cqr->status = DASD_CQR_QUEUED;
1609
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001610 dasd_device_clear_timer(device);
1611 dasd_schedule_device_bh(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612 dasd_put_device(device);
1613}
1614
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001615void dasd_generic_handle_state_change(struct dasd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616{
Stefan Weinhuber20c64462006-03-24 03:15:25 -08001617 /* First of all start sense subsystem status request. */
1618 dasd_eer_snss(device);
1619
Stefan Weinhubereb6e1992009-12-07 12:51:51 +01001620 dasd_device_remove_stop_bits(device, DASD_STOPPED_PENDING);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001621 dasd_schedule_device_bh(device);
1622 if (device->block)
1623 dasd_schedule_block_bh(device->block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624}
Fabian Frederick7048a2b2014-06-26 19:41:47 +02001625EXPORT_SYMBOL_GPL(dasd_generic_handle_state_change);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626
1627/*
1628 * Interrupt handler for "normal" ssch-io based dasd devices.
1629 */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001630void dasd_int_handler(struct ccw_device *cdev, unsigned long intparm,
1631 struct irb *irb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632{
1633 struct dasd_ccw_req *cqr, *next;
1634 struct dasd_device *device;
1635 unsigned long long now;
1636 int expires;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637
1638 if (IS_ERR(irb)) {
1639 switch (PTR_ERR(irb)) {
1640 case -EIO:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641 break;
1642 case -ETIMEDOUT:
Stefan Haberlandb8ed5dd2009-12-07 12:51:52 +01001643 DBF_EVENT_DEVID(DBF_WARNING, cdev, "%s: "
1644 "request timed out\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645 break;
1646 default:
Stefan Haberlandb8ed5dd2009-12-07 12:51:52 +01001647 DBF_EVENT_DEVID(DBF_WARNING, cdev, "%s: "
1648 "unknown error %ld\n", __func__,
1649 PTR_ERR(irb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650 }
Stefan Weinhuberf16f5842008-05-15 16:52:36 +02001651 dasd_handle_killed_request(cdev, intparm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652 return;
1653 }
1654
Heiko Carstens1aae0562013-01-30 09:49:40 +01001655 now = get_tod_clock();
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001656 cqr = (struct dasd_ccw_req *) intparm;
Stefan Weinhuber5a27e602011-01-05 12:48:04 +01001657 /* check for conditions that should be handled immediately */
1658 if (!cqr ||
1659 !(scsw_dstat(&irb->scsw) == (DEV_STAT_CHN_END | DEV_STAT_DEV_END) &&
1660 scsw_cstat(&irb->scsw) == 0)) {
Stefan Weinhubera5a00612010-10-25 16:10:47 +02001661 if (cqr)
1662 memcpy(&cqr->irb, irb, sizeof(*irb));
Martin Schwidefskya00bfd72006-09-20 15:59:05 +02001663 device = dasd_device_from_cdev_locked(cdev);
Stefan Haberland56b86b62010-10-25 16:10:49 +02001664 if (IS_ERR(device))
1665 return;
1666 /* ignore unsolicited interrupts for DIAG discipline */
1667 if (device->discipline == dasd_diag_discipline_pointer) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668 dasd_put_device(device);
Stefan Haberland56b86b62010-10-25 16:10:49 +02001669 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670 }
Stefan Weinhuber5a27e602011-01-05 12:48:04 +01001671 device->discipline->dump_sense_dbf(device, irb, "int");
1672 if (device->features & DASD_FEATURE_ERPLOG)
1673 device->discipline->dump_sense(device, cqr, irb);
1674 device->discipline->check_for_device_change(device, cqr, irb);
Stefan Haberland56b86b62010-10-25 16:10:49 +02001675 dasd_put_device(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676 }
Stefan Haberland5db84402014-10-01 14:39:47 +02001677
1678 /* check for for attention message */
1679 if (scsw_dstat(&irb->scsw) & DEV_STAT_ATTENTION) {
1680 device = dasd_device_from_cdev_locked(cdev);
1681 device->discipline->check_attention(device, irb->esw.esw1.lpum);
1682 dasd_put_device(device);
1683 }
1684
Stefan Weinhuber5a27e602011-01-05 12:48:04 +01001685 if (!cqr)
1686 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001688 device = (struct dasd_device *) cqr->startdev;
1689 if (!device ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690 strncmp(device->discipline->ebcname, (char *) &cqr->magic, 4)) {
Stefan Haberland294001a2010-01-27 10:12:35 +01001691 DBF_EVENT_DEVID(DBF_DEBUG, cdev, "%s",
1692 "invalid device in request");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693 return;
1694 }
1695
1696 /* Check for clear pending */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001697 if (cqr->status == DASD_CQR_CLEAR_PENDING &&
Stefan Weinhuberf3eb5382009-03-26 15:23:48 +01001698 scsw_fctl(&irb->scsw) & SCSW_FCTL_CLEAR_FUNC) {
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001699 cqr->status = DASD_CQR_CLEARED;
Stefan Haberland931a3dc2014-07-18 14:22:41 +02001700 if (cqr->callback_data == DASD_SLEEPON_START_TAG)
1701 cqr->callback_data = DASD_SLEEPON_END_TAG;
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001702 dasd_device_clear_timer(device);
Horst Hummel8f617012006-08-30 14:33:33 +02001703 wake_up(&dasd_flush_wq);
Stefan Haberland931a3dc2014-07-18 14:22:41 +02001704 wake_up(&generic_waitq);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001705 dasd_schedule_device_bh(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706 return;
1707 }
1708
Stefan Weinhuberf3eb5382009-03-26 15:23:48 +01001709 /* check status - the request might have been killed by dyn detach */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710 if (cqr->status != DASD_CQR_IN_IO) {
Stefan Haberlandfc19f382009-03-26 15:23:49 +01001711 DBF_DEV_EVENT(DBF_DEBUG, device, "invalid status: bus_id %s, "
1712 "status %02x", dev_name(&cdev->dev), cqr->status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713 return;
1714 }
Stefan Haberlandfc19f382009-03-26 15:23:49 +01001715
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001716 next = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717 expires = 0;
Stefan Weinhuberf3eb5382009-03-26 15:23:48 +01001718 if (scsw_dstat(&irb->scsw) == (DEV_STAT_CHN_END | DEV_STAT_DEV_END) &&
1719 scsw_cstat(&irb->scsw) == 0) {
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001720 /* request was completed successfully */
1721 cqr->status = DASD_CQR_SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722 cqr->stopclk = now;
1723 /* Start first request on queue if possible -> fast_io. */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001724 if (cqr->devlist.next != &device->ccw_queue) {
1725 next = list_entry(cqr->devlist.next,
1726 struct dasd_ccw_req, devlist);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727 }
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001728 } else { /* error */
Stefan Haberland6c5f57c2008-02-05 16:50:46 +01001729 /*
1730 * If we don't want complex ERP for this request, then just
1731 * reset this and retry it in the fastpath
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001732 */
Stefan Haberland6c5f57c2008-02-05 16:50:46 +01001733 if (!test_bit(DASD_CQR_FLAGS_USE_ERP, &cqr->flags) &&
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001734 cqr->retries > 0) {
Stefan Weinhubera4d26c62011-01-05 12:48:03 +01001735 if (cqr->lpm == device->path_data.opm)
Stefan Haberlandfc19f382009-03-26 15:23:49 +01001736 DBF_DEV_EVENT(DBF_DEBUG, device,
1737 "default ERP in fastpath "
1738 "(%i retries left)",
1739 cqr->retries);
Stefan Weinhubera4d26c62011-01-05 12:48:03 +01001740 if (!test_bit(DASD_CQR_VERIFY_PATH, &cqr->flags))
1741 cqr->lpm = device->path_data.opm;
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001742 cqr->status = DASD_CQR_QUEUED;
1743 next = cqr;
1744 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745 cqr->status = DASD_CQR_ERROR;
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001746 }
1747 if (next && (next->status == DASD_CQR_QUEUED) &&
1748 (!device->stopped)) {
1749 if (device->discipline->start_IO(next) == 0)
1750 expires = next->expires;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751 }
1752 if (expires != 0)
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001753 dasd_device_set_timer(device, expires);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754 else
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001755 dasd_device_clear_timer(device);
1756 dasd_schedule_device_bh(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757}
Fabian Frederick7048a2b2014-06-26 19:41:47 +02001758EXPORT_SYMBOL(dasd_int_handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759
Stefan Haberlanda23ed002010-05-26 23:27:09 +02001760enum uc_todo dasd_generic_uc_handler(struct ccw_device *cdev, struct irb *irb)
1761{
1762 struct dasd_device *device;
1763
1764 device = dasd_device_from_cdev_locked(cdev);
1765
1766 if (IS_ERR(device))
1767 goto out;
1768 if (test_bit(DASD_FLAG_OFFLINE, &device->flags) ||
1769 device->state != device->target ||
Stefan Weinhuber5a27e602011-01-05 12:48:04 +01001770 !device->discipline->check_for_device_change){
Stefan Haberlanda23ed002010-05-26 23:27:09 +02001771 dasd_put_device(device);
1772 goto out;
1773 }
Stefan Weinhuber5a27e602011-01-05 12:48:04 +01001774 if (device->discipline->dump_sense_dbf)
1775 device->discipline->dump_sense_dbf(device, irb, "uc");
1776 device->discipline->check_for_device_change(device, NULL, irb);
Stefan Haberlanda23ed002010-05-26 23:27:09 +02001777 dasd_put_device(device);
1778out:
1779 return UC_TODO_RETRY;
1780}
1781EXPORT_SYMBOL_GPL(dasd_generic_uc_handler);
1782
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783/*
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001784 * If we have an error on a dasd_block layer request then we cancel
1785 * and return all further requests from the same dasd_block as well.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786 */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001787static void __dasd_device_recovery(struct dasd_device *device,
1788 struct dasd_ccw_req *ref_cqr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789{
1790 struct list_head *l, *n;
1791 struct dasd_ccw_req *cqr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792
1793 /*
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001794 * only requeue request that came from the dasd_block layer
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795 */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001796 if (!ref_cqr->block)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797 return;
Horst Hummelf24acd42005-05-01 08:58:59 -07001798
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001799 list_for_each_safe(l, n, &device->ccw_queue) {
1800 cqr = list_entry(l, struct dasd_ccw_req, devlist);
1801 if (cqr->status == DASD_CQR_QUEUED &&
1802 ref_cqr->block == cqr->block) {
1803 cqr->status = DASD_CQR_CLEARED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804 }
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001805 }
1806};
1807
1808/*
1809 * Remove those ccw requests from the queue that need to be returned
1810 * to the upper layer.
1811 */
1812static void __dasd_device_process_ccw_queue(struct dasd_device *device,
1813 struct list_head *final_queue)
1814{
1815 struct list_head *l, *n;
1816 struct dasd_ccw_req *cqr;
1817
1818 /* Process request with final status. */
1819 list_for_each_safe(l, n, &device->ccw_queue) {
1820 cqr = list_entry(l, struct dasd_ccw_req, devlist);
1821
Hannes Reinecke1fbdb8b2013-01-30 09:26:13 +00001822 /* Skip any non-final request. */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001823 if (cqr->status == DASD_CQR_QUEUED ||
1824 cqr->status == DASD_CQR_IN_IO ||
1825 cqr->status == DASD_CQR_CLEAR_PENDING)
Hannes Reinecke1fbdb8b2013-01-30 09:26:13 +00001826 continue;
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001827 if (cqr->status == DASD_CQR_ERROR) {
1828 __dasd_device_recovery(device, cqr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829 }
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001830 /* Rechain finished requests to final queue */
1831 list_move_tail(&cqr->devlist, final_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832 }
1833}
1834
1835/*
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001836 * the cqrs from the final queue are returned to the upper layer
1837 * by setting a dasd_block state and calling the callback function
1838 */
1839static void __dasd_device_process_final_queue(struct dasd_device *device,
1840 struct list_head *final_queue)
1841{
1842 struct list_head *l, *n;
1843 struct dasd_ccw_req *cqr;
Stefan Weinhuber03513bc2008-02-19 15:29:27 +01001844 struct dasd_block *block;
Stefan Haberlandc80ee722008-05-30 10:03:31 +02001845 void (*callback)(struct dasd_ccw_req *, void *data);
1846 void *callback_data;
Stefan Haberlandfc19f382009-03-26 15:23:49 +01001847 char errorstring[ERRORLENGTH];
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001848
1849 list_for_each_safe(l, n, final_queue) {
1850 cqr = list_entry(l, struct dasd_ccw_req, devlist);
1851 list_del_init(&cqr->devlist);
Stefan Weinhuber03513bc2008-02-19 15:29:27 +01001852 block = cqr->block;
Stefan Haberlandc80ee722008-05-30 10:03:31 +02001853 callback = cqr->callback;
1854 callback_data = cqr->callback_data;
Stefan Weinhuber03513bc2008-02-19 15:29:27 +01001855 if (block)
1856 spin_lock_bh(&block->queue_lock);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001857 switch (cqr->status) {
1858 case DASD_CQR_SUCCESS:
1859 cqr->status = DASD_CQR_DONE;
1860 break;
1861 case DASD_CQR_ERROR:
1862 cqr->status = DASD_CQR_NEED_ERP;
1863 break;
1864 case DASD_CQR_CLEARED:
1865 cqr->status = DASD_CQR_TERMINATED;
1866 break;
1867 default:
Stefan Haberlandfc19f382009-03-26 15:23:49 +01001868 /* internal error 12 - wrong cqr status*/
1869 snprintf(errorstring, ERRORLENGTH, "12 %p %x02", cqr, cqr->status);
1870 dev_err(&device->cdev->dev,
1871 "An error occurred in the DASD device driver, "
1872 "reason=%s\n", errorstring);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001873 BUG();
1874 }
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001875 if (cqr->callback != NULL)
Stefan Haberlandc80ee722008-05-30 10:03:31 +02001876 (callback)(cqr, callback_data);
Stefan Weinhuber03513bc2008-02-19 15:29:27 +01001877 if (block)
1878 spin_unlock_bh(&block->queue_lock);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001879 }
1880}
1881
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001882/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883 * Take a look at the first request on the ccw queue and check
1884 * if it reached its expire time. If so, terminate the IO.
1885 */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001886static void __dasd_device_check_expire(struct dasd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887{
1888 struct dasd_ccw_req *cqr;
1889
1890 if (list_empty(&device->ccw_queue))
1891 return;
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001892 cqr = list_entry(device->ccw_queue.next, struct dasd_ccw_req, devlist);
Horst Hummel29145a62006-12-04 15:40:15 +01001893 if ((cqr->status == DASD_CQR_IN_IO && cqr->expires != 0) &&
1894 (time_after_eq(jiffies, cqr->expires + cqr->starttime))) {
Stefan Haberlandd07dc5d2012-11-28 13:43:38 +01001895 if (test_bit(DASD_FLAG_SAFE_OFFLINE_RUNNING, &device->flags)) {
1896 /*
1897 * IO in safe offline processing should not
1898 * run out of retries
1899 */
1900 cqr->retries++;
1901 }
Horst Hummel29145a62006-12-04 15:40:15 +01001902 if (device->discipline->term_IO(cqr) != 0) {
1903 /* Hmpf, try again in 5 sec */
Stefan Haberlandfc19f382009-03-26 15:23:49 +01001904 dev_err(&device->cdev->dev,
Heiko Carstens625c94d2010-08-13 10:06:38 +02001905 "cqr %p timed out (%lus) but cannot be "
Stefan Haberlandfc19f382009-03-26 15:23:49 +01001906 "ended, retrying in 5 s\n",
1907 cqr, (cqr->expires/HZ));
Stefan Haberland7dc1da92008-01-26 14:11:26 +01001908 cqr->expires += 5*HZ;
1909 dasd_device_set_timer(device, 5*HZ);
Horst Hummel29145a62006-12-04 15:40:15 +01001910 } else {
Stefan Haberlandfc19f382009-03-26 15:23:49 +01001911 dev_err(&device->cdev->dev,
Heiko Carstens625c94d2010-08-13 10:06:38 +02001912 "cqr %p timed out (%lus), %i retries "
Stefan Haberlandfc19f382009-03-26 15:23:49 +01001913 "remaining\n", cqr, (cqr->expires/HZ),
1914 cqr->retries);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915 }
1916 }
1917}
1918
1919/*
1920 * Take a look at the first request on the ccw queue and check
1921 * if it needs to be started.
1922 */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001923static void __dasd_device_start_head(struct dasd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924{
1925 struct dasd_ccw_req *cqr;
1926 int rc;
1927
1928 if (list_empty(&device->ccw_queue))
1929 return;
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001930 cqr = list_entry(device->ccw_queue.next, struct dasd_ccw_req, devlist);
Peter Oberparleiter25ee4cf2006-04-10 22:53:47 -07001931 if (cqr->status != DASD_CQR_QUEUED)
1932 return;
Stefan Weinhubera4d26c62011-01-05 12:48:03 +01001933 /* when device is stopped, return request to previous layer
1934 * exception: only the disconnect or unresumed bits are set and the
1935 * cqr is a path verification request
1936 */
1937 if (device->stopped &&
1938 !(!(device->stopped & ~(DASD_STOPPED_DC_WAIT | DASD_UNRESUMED_PM))
1939 && test_bit(DASD_CQR_VERIFY_PATH, &cqr->flags))) {
1940 cqr->intrc = -EAGAIN;
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001941 cqr->status = DASD_CQR_CLEARED;
1942 dasd_schedule_device_bh(device);
Peter Oberparleiter25ee4cf2006-04-10 22:53:47 -07001943 return;
Horst Hummel1c01b8a2006-01-06 00:19:15 -08001944 }
Peter Oberparleiter25ee4cf2006-04-10 22:53:47 -07001945
1946 rc = device->discipline->start_IO(cqr);
1947 if (rc == 0)
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001948 dasd_device_set_timer(device, cqr->expires);
Peter Oberparleiter25ee4cf2006-04-10 22:53:47 -07001949 else if (rc == -EACCES) {
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001950 dasd_schedule_device_bh(device);
Peter Oberparleiter25ee4cf2006-04-10 22:53:47 -07001951 } else
1952 /* Hmpf, try again in 1/2 sec */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001953 dasd_device_set_timer(device, 50);
Horst Hummel8f617012006-08-30 14:33:33 +02001954}
1955
Stefan Weinhubera4d26c62011-01-05 12:48:03 +01001956static void __dasd_device_check_path_events(struct dasd_device *device)
1957{
1958 int rc;
1959
1960 if (device->path_data.tbvpm) {
1961 if (device->stopped & ~(DASD_STOPPED_DC_WAIT |
1962 DASD_UNRESUMED_PM))
1963 return;
1964 rc = device->discipline->verify_path(
1965 device, device->path_data.tbvpm);
1966 if (rc)
1967 dasd_device_set_timer(device, 50);
1968 else
1969 device->path_data.tbvpm = 0;
1970 }
1971};
1972
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973/*
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001974 * Go through all request on the dasd_device request queue,
1975 * terminate them on the cdev if necessary, and return them to the
1976 * submitting layer via callback.
1977 * Note:
1978 * Make sure that all 'submitting layers' still exist when
1979 * this function is called!. In other words, when 'device' is a base
1980 * device then all block layer requests must have been removed before
1981 * via dasd_flush_block_queue.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982 */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001983int dasd_flush_device_queue(struct dasd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984{
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001985 struct dasd_ccw_req *cqr, *n;
1986 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987 struct list_head flush_queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988
1989 INIT_LIST_HEAD(&flush_queue);
1990 spin_lock_irq(get_ccwdev_lock(device->cdev));
Horst Hummel8f617012006-08-30 14:33:33 +02001991 rc = 0;
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001992 list_for_each_entry_safe(cqr, n, &device->ccw_queue, devlist) {
Horst Hummel8f617012006-08-30 14:33:33 +02001993 /* Check status and move request to flush_queue */
1994 switch (cqr->status) {
1995 case DASD_CQR_IN_IO:
1996 rc = device->discipline->term_IO(cqr);
1997 if (rc) {
1998 /* unable to terminate requeust */
Stefan Haberlandfc19f382009-03-26 15:23:49 +01001999 dev_err(&device->cdev->dev,
2000 "Flushing the DASD request queue "
2001 "failed for request %p\n", cqr);
Horst Hummel8f617012006-08-30 14:33:33 +02002002 /* stop flush processing */
2003 goto finished;
2004 }
2005 break;
2006 case DASD_CQR_QUEUED:
Heiko Carstens1aae0562013-01-30 09:49:40 +01002007 cqr->stopclk = get_tod_clock();
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002008 cqr->status = DASD_CQR_CLEARED;
Horst Hummel8f617012006-08-30 14:33:33 +02002009 break;
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002010 default: /* no need to modify the others */
Horst Hummel8f617012006-08-30 14:33:33 +02002011 break;
2012 }
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002013 list_move_tail(&cqr->devlist, &flush_queue);
Horst Hummel8f617012006-08-30 14:33:33 +02002014 }
Horst Hummel8f617012006-08-30 14:33:33 +02002015finished:
2016 spin_unlock_irq(get_ccwdev_lock(device->cdev));
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002017 /*
2018 * After this point all requests must be in state CLEAR_PENDING,
2019 * CLEARED, SUCCESS or ERROR. Now wait for CLEAR_PENDING to become
2020 * one of the others.
2021 */
2022 list_for_each_entry_safe(cqr, n, &flush_queue, devlist)
2023 wait_event(dasd_flush_wq,
2024 (cqr->status != DASD_CQR_CLEAR_PENDING));
2025 /*
2026 * Now set each request back to TERMINATED, DONE or NEED_ERP
2027 * and call the callback function of flushed requests
2028 */
2029 __dasd_device_process_final_queue(device, &flush_queue);
Horst Hummel8f617012006-08-30 14:33:33 +02002030 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031}
Fabian Frederick7048a2b2014-06-26 19:41:47 +02002032EXPORT_SYMBOL_GPL(dasd_flush_device_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033
2034/*
2035 * Acquire the device lock and process queues for the device.
2036 */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002037static void dasd_device_tasklet(struct dasd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038{
2039 struct list_head final_queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040
2041 atomic_set (&device->tasklet_scheduled, 0);
2042 INIT_LIST_HEAD(&final_queue);
2043 spin_lock_irq(get_ccwdev_lock(device->cdev));
2044 /* Check expire time of first request on the ccw queue. */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002045 __dasd_device_check_expire(device);
2046 /* find final requests on ccw queue */
2047 __dasd_device_process_ccw_queue(device, &final_queue);
Stefan Weinhubera4d26c62011-01-05 12:48:03 +01002048 __dasd_device_check_path_events(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049 spin_unlock_irq(get_ccwdev_lock(device->cdev));
2050 /* Now call the callback function of requests with final status */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002051 __dasd_device_process_final_queue(device, &final_queue);
2052 spin_lock_irq(get_ccwdev_lock(device->cdev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053 /* Now check if the head of the ccw queue needs to be started. */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002054 __dasd_device_start_head(device);
2055 spin_unlock_irq(get_ccwdev_lock(device->cdev));
Stefan Haberland4679e892012-06-19 17:30:12 +02002056 if (waitqueue_active(&shutdown_waitq))
2057 wake_up(&shutdown_waitq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058 dasd_put_device(device);
2059}
2060
2061/*
2062 * Schedules a call to dasd_tasklet over the device tasklet.
2063 */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002064void dasd_schedule_device_bh(struct dasd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065{
2066 /* Protect against rescheduling. */
Martin Schwidefsky973bd992006-01-06 00:19:07 -08002067 if (atomic_cmpxchg (&device->tasklet_scheduled, 0, 1) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068 return;
2069 dasd_get_device(device);
2070 tasklet_hi_schedule(&device->tasklet);
2071}
Fabian Frederick7048a2b2014-06-26 19:41:47 +02002072EXPORT_SYMBOL(dasd_schedule_device_bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073
Stefan Weinhubereb6e1992009-12-07 12:51:51 +01002074void dasd_device_set_stop_bits(struct dasd_device *device, int bits)
2075{
2076 device->stopped |= bits;
2077}
2078EXPORT_SYMBOL_GPL(dasd_device_set_stop_bits);
2079
2080void dasd_device_remove_stop_bits(struct dasd_device *device, int bits)
2081{
2082 device->stopped &= ~bits;
2083 if (!device->stopped)
2084 wake_up(&generic_waitq);
2085}
2086EXPORT_SYMBOL_GPL(dasd_device_remove_stop_bits);
2087
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088/*
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002089 * Queue a request to the head of the device ccw_queue.
2090 * Start the I/O if possible.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091 */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002092void dasd_add_request_head(struct dasd_ccw_req *cqr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093{
2094 struct dasd_device *device;
2095 unsigned long flags;
2096
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002097 device = cqr->startdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098 spin_lock_irqsave(get_ccwdev_lock(device->cdev), flags);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002099 cqr->status = DASD_CQR_QUEUED;
2100 list_add(&cqr->devlist, &device->ccw_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101 /* let the bh start the request to keep them in order */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002102 dasd_schedule_device_bh(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103 spin_unlock_irqrestore(get_ccwdev_lock(device->cdev), flags);
2104}
Fabian Frederick7048a2b2014-06-26 19:41:47 +02002105EXPORT_SYMBOL(dasd_add_request_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106
2107/*
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002108 * Queue a request to the tail of the device ccw_queue.
2109 * Start the I/O if possible.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110 */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002111void dasd_add_request_tail(struct dasd_ccw_req *cqr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112{
2113 struct dasd_device *device;
2114 unsigned long flags;
2115
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002116 device = cqr->startdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117 spin_lock_irqsave(get_ccwdev_lock(device->cdev), flags);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002118 cqr->status = DASD_CQR_QUEUED;
2119 list_add_tail(&cqr->devlist, &device->ccw_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120 /* let the bh start the request to keep them in order */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002121 dasd_schedule_device_bh(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122 spin_unlock_irqrestore(get_ccwdev_lock(device->cdev), flags);
2123}
Fabian Frederick7048a2b2014-06-26 19:41:47 +02002124EXPORT_SYMBOL(dasd_add_request_tail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125
2126/*
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002127 * Wakeup helper for the 'sleep_on' functions.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128 */
Stefan Haberland5915a872011-10-30 15:16:57 +01002129void dasd_wakeup_cb(struct dasd_ccw_req *cqr, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130{
Stefan Weinhuber1c1e0932010-05-12 09:32:11 +02002131 spin_lock_irq(get_ccwdev_lock(cqr->startdev->cdev));
2132 cqr->callback_data = DASD_SLEEPON_END_TAG;
2133 spin_unlock_irq(get_ccwdev_lock(cqr->startdev->cdev));
2134 wake_up(&generic_waitq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135}
Stefan Haberland5915a872011-10-30 15:16:57 +01002136EXPORT_SYMBOL_GPL(dasd_wakeup_cb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002138static inline int _wait_for_wakeup(struct dasd_ccw_req *cqr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139{
2140 struct dasd_device *device;
2141 int rc;
2142
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002143 device = cqr->startdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144 spin_lock_irq(get_ccwdev_lock(device->cdev));
Stefan Weinhuber1c1e0932010-05-12 09:32:11 +02002145 rc = (cqr->callback_data == DASD_SLEEPON_END_TAG);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146 spin_unlock_irq(get_ccwdev_lock(device->cdev));
2147 return rc;
2148}
2149
2150/*
Stefan Weinhubereb6e1992009-12-07 12:51:51 +01002151 * checks if error recovery is necessary, returns 1 if yes, 0 otherwise.
2152 */
2153static int __dasd_sleep_on_erp(struct dasd_ccw_req *cqr)
2154{
2155 struct dasd_device *device;
2156 dasd_erp_fn_t erp_fn;
2157
2158 if (cqr->status == DASD_CQR_FILLED)
2159 return 0;
2160 device = cqr->startdev;
2161 if (test_bit(DASD_CQR_FLAGS_USE_ERP, &cqr->flags)) {
2162 if (cqr->status == DASD_CQR_TERMINATED) {
2163 device->discipline->handle_terminated_request(cqr);
2164 return 1;
2165 }
2166 if (cqr->status == DASD_CQR_NEED_ERP) {
2167 erp_fn = device->discipline->erp_action(cqr);
2168 erp_fn(cqr);
2169 return 1;
2170 }
2171 if (cqr->status == DASD_CQR_FAILED)
2172 dasd_log_sense(cqr, &cqr->irb);
2173 if (cqr->refers) {
2174 __dasd_process_erp(device, cqr);
2175 return 1;
2176 }
2177 }
2178 return 0;
2179}
2180
2181static int __dasd_sleep_on_loop_condition(struct dasd_ccw_req *cqr)
2182{
2183 if (test_bit(DASD_CQR_FLAGS_USE_ERP, &cqr->flags)) {
2184 if (cqr->refers) /* erp is not done yet */
2185 return 1;
2186 return ((cqr->status != DASD_CQR_DONE) &&
2187 (cqr->status != DASD_CQR_FAILED));
2188 } else
2189 return (cqr->status == DASD_CQR_FILLED);
2190}
2191
2192static int _dasd_sleep_on(struct dasd_ccw_req *maincqr, int interruptible)
2193{
2194 struct dasd_device *device;
2195 int rc;
2196 struct list_head ccw_queue;
2197 struct dasd_ccw_req *cqr;
2198
2199 INIT_LIST_HEAD(&ccw_queue);
2200 maincqr->status = DASD_CQR_FILLED;
2201 device = maincqr->startdev;
2202 list_add(&maincqr->blocklist, &ccw_queue);
2203 for (cqr = maincqr; __dasd_sleep_on_loop_condition(cqr);
2204 cqr = list_first_entry(&ccw_queue,
2205 struct dasd_ccw_req, blocklist)) {
2206
2207 if (__dasd_sleep_on_erp(cqr))
2208 continue;
2209 if (cqr->status != DASD_CQR_FILLED) /* could be failed */
2210 continue;
Stefan Weinhuber5a27e602011-01-05 12:48:04 +01002211 if (test_bit(DASD_FLAG_LOCK_STOLEN, &device->flags) &&
2212 !test_bit(DASD_CQR_ALLOW_SLOCK, &cqr->flags)) {
2213 cqr->status = DASD_CQR_FAILED;
2214 cqr->intrc = -EPERM;
2215 continue;
2216 }
Stefan Weinhubereb6e1992009-12-07 12:51:51 +01002217 /* Non-temporary stop condition will trigger fail fast */
2218 if (device->stopped & ~DASD_STOPPED_PENDING &&
2219 test_bit(DASD_CQR_FLAGS_FAILFAST, &cqr->flags) &&
2220 (!dasd_eer_enabled(device))) {
2221 cqr->status = DASD_CQR_FAILED;
Hannes Reinecked1ffc1f2013-01-30 09:26:16 +00002222 cqr->intrc = -ENOLINK;
Stefan Weinhubereb6e1992009-12-07 12:51:51 +01002223 continue;
2224 }
Stefan Weinhubereb6e1992009-12-07 12:51:51 +01002225 /* Don't try to start requests if device is stopped */
2226 if (interruptible) {
2227 rc = wait_event_interruptible(
2228 generic_waitq, !(device->stopped));
2229 if (rc == -ERESTARTSYS) {
2230 cqr->status = DASD_CQR_FAILED;
2231 maincqr->intrc = rc;
2232 continue;
2233 }
2234 } else
2235 wait_event(generic_waitq, !(device->stopped));
2236
Stefan Haberland5915a872011-10-30 15:16:57 +01002237 if (!cqr->callback)
2238 cqr->callback = dasd_wakeup_cb;
2239
Stefan Weinhuber1c1e0932010-05-12 09:32:11 +02002240 cqr->callback_data = DASD_SLEEPON_START_TAG;
Stefan Weinhubereb6e1992009-12-07 12:51:51 +01002241 dasd_add_request_tail(cqr);
2242 if (interruptible) {
2243 rc = wait_event_interruptible(
2244 generic_waitq, _wait_for_wakeup(cqr));
2245 if (rc == -ERESTARTSYS) {
2246 dasd_cancel_req(cqr);
2247 /* wait (non-interruptible) for final status */
2248 wait_event(generic_waitq,
2249 _wait_for_wakeup(cqr));
2250 cqr->status = DASD_CQR_FAILED;
2251 maincqr->intrc = rc;
2252 continue;
2253 }
2254 } else
2255 wait_event(generic_waitq, _wait_for_wakeup(cqr));
2256 }
2257
Heiko Carstens1aae0562013-01-30 09:49:40 +01002258 maincqr->endclk = get_tod_clock();
Stefan Weinhubereb6e1992009-12-07 12:51:51 +01002259 if ((maincqr->status != DASD_CQR_DONE) &&
2260 (maincqr->intrc != -ERESTARTSYS))
2261 dasd_log_sense(maincqr, &maincqr->irb);
2262 if (maincqr->status == DASD_CQR_DONE)
2263 rc = 0;
2264 else if (maincqr->intrc)
2265 rc = maincqr->intrc;
2266 else
2267 rc = -EIO;
2268 return rc;
2269}
2270
Stefan Haberlandd42e1712013-04-15 16:22:23 +02002271static inline int _wait_for_wakeup_queue(struct list_head *ccw_queue)
2272{
2273 struct dasd_ccw_req *cqr;
2274
2275 list_for_each_entry(cqr, ccw_queue, blocklist) {
2276 if (cqr->callback_data != DASD_SLEEPON_END_TAG)
2277 return 0;
2278 }
2279
2280 return 1;
2281}
2282
2283static int _dasd_sleep_on_queue(struct list_head *ccw_queue, int interruptible)
2284{
2285 struct dasd_device *device;
Stefan Haberlandd42e1712013-04-15 16:22:23 +02002286 struct dasd_ccw_req *cqr, *n;
Stefan Haberland362ce842014-10-01 13:04:54 +02002287 int rc;
Stefan Haberlandd42e1712013-04-15 16:22:23 +02002288
2289retry:
2290 list_for_each_entry_safe(cqr, n, ccw_queue, blocklist) {
2291 device = cqr->startdev;
2292 if (cqr->status != DASD_CQR_FILLED) /*could be failed*/
2293 continue;
2294
2295 if (test_bit(DASD_FLAG_LOCK_STOLEN, &device->flags) &&
2296 !test_bit(DASD_CQR_ALLOW_SLOCK, &cqr->flags)) {
2297 cqr->status = DASD_CQR_FAILED;
2298 cqr->intrc = -EPERM;
2299 continue;
2300 }
2301 /*Non-temporary stop condition will trigger fail fast*/
2302 if (device->stopped & ~DASD_STOPPED_PENDING &&
2303 test_bit(DASD_CQR_FLAGS_FAILFAST, &cqr->flags) &&
2304 !dasd_eer_enabled(device)) {
2305 cqr->status = DASD_CQR_FAILED;
2306 cqr->intrc = -EAGAIN;
2307 continue;
2308 }
2309
2310 /*Don't try to start requests if device is stopped*/
2311 if (interruptible) {
2312 rc = wait_event_interruptible(
2313 generic_waitq, !device->stopped);
2314 if (rc == -ERESTARTSYS) {
2315 cqr->status = DASD_CQR_FAILED;
2316 cqr->intrc = rc;
2317 continue;
2318 }
2319 } else
2320 wait_event(generic_waitq, !(device->stopped));
2321
2322 if (!cqr->callback)
2323 cqr->callback = dasd_wakeup_cb;
2324 cqr->callback_data = DASD_SLEEPON_START_TAG;
2325 dasd_add_request_tail(cqr);
2326 }
2327
2328 wait_event(generic_waitq, _wait_for_wakeup_queue(ccw_queue));
2329
2330 rc = 0;
2331 list_for_each_entry_safe(cqr, n, ccw_queue, blocklist) {
Stefan Haberland29b8dd92014-07-18 14:26:01 +02002332 /*
2333 * for alias devices simplify error recovery and
2334 * return to upper layer
Stefan Haberland362ce842014-10-01 13:04:54 +02002335 * do not skip ERP requests
Stefan Haberland29b8dd92014-07-18 14:26:01 +02002336 */
Stefan Haberland362ce842014-10-01 13:04:54 +02002337 if (cqr->startdev != cqr->basedev && !cqr->refers &&
Stefan Haberland29b8dd92014-07-18 14:26:01 +02002338 (cqr->status == DASD_CQR_TERMINATED ||
2339 cqr->status == DASD_CQR_NEED_ERP))
2340 return -EAGAIN;
Stefan Haberland362ce842014-10-01 13:04:54 +02002341
2342 /* normal recovery for basedev IO */
Stefan Haberland590aeed2014-11-24 10:45:47 +01002343 if (__dasd_sleep_on_erp(cqr))
2344 /* handle erp first */
Stefan Haberland362ce842014-10-01 13:04:54 +02002345 goto retry;
Stefan Haberlandd42e1712013-04-15 16:22:23 +02002346 }
Stefan Haberland362ce842014-10-01 13:04:54 +02002347
Stefan Haberlandd42e1712013-04-15 16:22:23 +02002348 return 0;
2349}
2350
Stefan Weinhubereb6e1992009-12-07 12:51:51 +01002351/*
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002352 * Queue a request to the tail of the device ccw_queue and wait for
2353 * it's completion.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002354 */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002355int dasd_sleep_on(struct dasd_ccw_req *cqr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002356{
Stefan Weinhubereb6e1992009-12-07 12:51:51 +01002357 return _dasd_sleep_on(cqr, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002358}
Fabian Frederick7048a2b2014-06-26 19:41:47 +02002359EXPORT_SYMBOL(dasd_sleep_on);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002360
2361/*
Stefan Haberlandd42e1712013-04-15 16:22:23 +02002362 * Start requests from a ccw_queue and wait for their completion.
2363 */
2364int dasd_sleep_on_queue(struct list_head *ccw_queue)
2365{
2366 return _dasd_sleep_on_queue(ccw_queue, 0);
2367}
2368EXPORT_SYMBOL(dasd_sleep_on_queue);
2369
2370/*
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002371 * Queue a request to the tail of the device ccw_queue and wait
2372 * interruptible for it's completion.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002373 */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002374int dasd_sleep_on_interruptible(struct dasd_ccw_req *cqr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002375{
Stefan Weinhubereb6e1992009-12-07 12:51:51 +01002376 return _dasd_sleep_on(cqr, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002377}
Fabian Frederick7048a2b2014-06-26 19:41:47 +02002378EXPORT_SYMBOL(dasd_sleep_on_interruptible);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379
2380/*
2381 * Whoa nelly now it gets really hairy. For some functions (e.g. steal lock
2382 * for eckd devices) the currently running request has to be terminated
2383 * and be put back to status queued, before the special request is added
2384 * to the head of the queue. Then the special request is waited on normally.
2385 */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002386static inline int _dasd_term_running_cqr(struct dasd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002387{
2388 struct dasd_ccw_req *cqr;
Stefan Haberlandaade6c02011-05-10 17:13:38 +02002389 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002390
2391 if (list_empty(&device->ccw_queue))
2392 return 0;
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002393 cqr = list_entry(device->ccw_queue.next, struct dasd_ccw_req, devlist);
Stefan Haberlandaade6c02011-05-10 17:13:38 +02002394 rc = device->discipline->term_IO(cqr);
2395 if (!rc)
2396 /*
2397 * CQR terminated because a more important request is pending.
2398 * Undo decreasing of retry counter because this is
2399 * not an error case.
2400 */
2401 cqr->retries++;
2402 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002403}
2404
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002405int dasd_sleep_on_immediatly(struct dasd_ccw_req *cqr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002406{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002407 struct dasd_device *device;
2408 int rc;
Horst Hummel138c0142006-06-29 14:58:12 +02002409
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002410 device = cqr->startdev;
Stefan Weinhuber5a27e602011-01-05 12:48:04 +01002411 if (test_bit(DASD_FLAG_LOCK_STOLEN, &device->flags) &&
2412 !test_bit(DASD_CQR_ALLOW_SLOCK, &cqr->flags)) {
2413 cqr->status = DASD_CQR_FAILED;
2414 cqr->intrc = -EPERM;
2415 return -EIO;
2416 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002417 spin_lock_irq(get_ccwdev_lock(device->cdev));
2418 rc = _dasd_term_running_cqr(device);
2419 if (rc) {
2420 spin_unlock_irq(get_ccwdev_lock(device->cdev));
2421 return rc;
2422 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002423 cqr->callback = dasd_wakeup_cb;
Stefan Weinhuber1c1e0932010-05-12 09:32:11 +02002424 cqr->callback_data = DASD_SLEEPON_START_TAG;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002425 cqr->status = DASD_CQR_QUEUED;
Stefan Haberland214b8ff2011-10-30 15:16:56 +01002426 /*
2427 * add new request as second
2428 * first the terminated cqr needs to be finished
2429 */
2430 list_add(&cqr->devlist, device->ccw_queue.next);
Horst Hummel138c0142006-06-29 14:58:12 +02002431
Linus Torvalds1da177e2005-04-16 15:20:36 -07002432 /* let the bh start the request to keep them in order */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002433 dasd_schedule_device_bh(device);
Horst Hummel138c0142006-06-29 14:58:12 +02002434
Linus Torvalds1da177e2005-04-16 15:20:36 -07002435 spin_unlock_irq(get_ccwdev_lock(device->cdev));
2436
Stefan Haberlandc80ee722008-05-30 10:03:31 +02002437 wait_event(generic_waitq, _wait_for_wakeup(cqr));
Horst Hummel138c0142006-06-29 14:58:12 +02002438
Stefan Weinhuber6cc7f162009-06-12 10:26:39 +02002439 if (cqr->status == DASD_CQR_DONE)
2440 rc = 0;
2441 else if (cqr->intrc)
2442 rc = cqr->intrc;
2443 else
2444 rc = -EIO;
Stefan Haberland0e003b72013-07-30 10:49:43 +02002445
2446 /* kick tasklets */
2447 dasd_schedule_device_bh(device);
2448 if (device->block)
2449 dasd_schedule_block_bh(device->block);
2450
Linus Torvalds1da177e2005-04-16 15:20:36 -07002451 return rc;
2452}
Fabian Frederick7048a2b2014-06-26 19:41:47 +02002453EXPORT_SYMBOL(dasd_sleep_on_immediatly);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002454
2455/*
2456 * Cancels a request that was started with dasd_sleep_on_req.
2457 * This is useful to timeout requests. The request will be
2458 * terminated if it is currently in i/o.
Hannes Reineckeb99a9462013-01-30 09:26:11 +00002459 * Returns 0 if request termination was successful
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002460 * negative error code if termination failed
2461 * Cancellation of a request is an asynchronous operation! The calling
2462 * function has to wait until the request is properly returned via callback.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002463 */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002464int dasd_cancel_req(struct dasd_ccw_req *cqr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002465{
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002466 struct dasd_device *device = cqr->startdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002467 unsigned long flags;
2468 int rc;
2469
2470 rc = 0;
2471 spin_lock_irqsave(get_ccwdev_lock(device->cdev), flags);
2472 switch (cqr->status) {
2473 case DASD_CQR_QUEUED:
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002474 /* request was not started - just set to cleared */
2475 cqr->status = DASD_CQR_CLEARED;
Stefan Haberland931a3dc2014-07-18 14:22:41 +02002476 if (cqr->callback_data == DASD_SLEEPON_START_TAG)
2477 cqr->callback_data = DASD_SLEEPON_END_TAG;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002478 break;
2479 case DASD_CQR_IN_IO:
2480 /* request in IO - terminate IO and release again */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002481 rc = device->discipline->term_IO(cqr);
2482 if (rc) {
Stefan Haberlandfc19f382009-03-26 15:23:49 +01002483 dev_err(&device->cdev->dev,
2484 "Cancelling request %p failed with rc=%d\n",
2485 cqr, rc);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002486 } else {
Heiko Carstens1aae0562013-01-30 09:49:40 +01002487 cqr->stopclk = get_tod_clock();
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002488 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002489 break;
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002490 default: /* already finished or clear pending - do nothing */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002491 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002492 }
2493 spin_unlock_irqrestore(get_ccwdev_lock(device->cdev), flags);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002494 dasd_schedule_device_bh(device);
2495 return rc;
2496}
Fabian Frederick7048a2b2014-06-26 19:41:47 +02002497EXPORT_SYMBOL(dasd_cancel_req);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002498
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002499/*
2500 * SECTION: Operations of the dasd_block layer.
2501 */
2502
2503/*
2504 * Timeout function for dasd_block. This is used when the block layer
2505 * is waiting for something that may not come reliably, (e.g. a state
2506 * change interrupt)
2507 */
2508static void dasd_block_timeout(unsigned long ptr)
2509{
2510 unsigned long flags;
2511 struct dasd_block *block;
2512
2513 block = (struct dasd_block *) ptr;
2514 spin_lock_irqsave(get_ccwdev_lock(block->base->cdev), flags);
2515 /* re-activate request queue */
Stefan Weinhubereb6e1992009-12-07 12:51:51 +01002516 dasd_device_remove_stop_bits(block->base, DASD_STOPPED_PENDING);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002517 spin_unlock_irqrestore(get_ccwdev_lock(block->base->cdev), flags);
2518 dasd_schedule_block_bh(block);
2519}
2520
2521/*
2522 * Setup timeout for a dasd_block in jiffies.
2523 */
2524void dasd_block_set_timer(struct dasd_block *block, int expires)
2525{
Stefan Weinhuber48cae882009-02-11 10:37:31 +01002526 if (expires == 0)
2527 del_timer(&block->timer);
2528 else
2529 mod_timer(&block->timer, jiffies + expires);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002530}
Fabian Frederick7048a2b2014-06-26 19:41:47 +02002531EXPORT_SYMBOL(dasd_block_set_timer);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002532
2533/*
2534 * Clear timeout for a dasd_block.
2535 */
2536void dasd_block_clear_timer(struct dasd_block *block)
2537{
Stefan Weinhuber48cae882009-02-11 10:37:31 +01002538 del_timer(&block->timer);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002539}
Fabian Frederick7048a2b2014-06-26 19:41:47 +02002540EXPORT_SYMBOL(dasd_block_clear_timer);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002541
2542/*
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002543 * Process finished error recovery ccw.
2544 */
Stefan Weinhubereb6e1992009-12-07 12:51:51 +01002545static void __dasd_process_erp(struct dasd_device *device,
2546 struct dasd_ccw_req *cqr)
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002547{
2548 dasd_erp_fn_t erp_fn;
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002549
2550 if (cqr->status == DASD_CQR_DONE)
2551 DBF_DEV_EVENT(DBF_NOTICE, device, "%s", "ERP successful");
2552 else
Stefan Haberlandfc19f382009-03-26 15:23:49 +01002553 dev_err(&device->cdev->dev, "ERP failed for the DASD\n");
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002554 erp_fn = device->discipline->erp_postaction(cqr);
2555 erp_fn(cqr);
2556}
2557
2558/*
2559 * Fetch requests from the block device queue.
2560 */
2561static void __dasd_process_request_queue(struct dasd_block *block)
2562{
2563 struct request_queue *queue;
2564 struct request *req;
2565 struct dasd_ccw_req *cqr;
2566 struct dasd_device *basedev;
2567 unsigned long flags;
2568 queue = block->request_queue;
2569 basedev = block->base;
2570 /* No queue ? Then there is nothing to do. */
2571 if (queue == NULL)
2572 return;
2573
2574 /*
2575 * We requeue request from the block device queue to the ccw
2576 * queue only in two states. In state DASD_STATE_READY the
2577 * partition detection is done and we need to requeue requests
2578 * for that. State DASD_STATE_ONLINE is normal block device
2579 * operation.
2580 */
Stefan Weinhuber97f604b2009-09-11 10:28:28 +02002581 if (basedev->state < DASD_STATE_READY) {
2582 while ((req = blk_fetch_request(block->request_queue)))
2583 __blk_end_request_all(req, -EIO);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002584 return;
Stefan Weinhuber97f604b2009-09-11 10:28:28 +02002585 }
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002586 /* Now we try to fetch requests from the request queue */
Jens Axboe7eaceac2011-03-10 08:52:07 +01002587 while ((req = blk_peek_request(queue))) {
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002588 if (basedev->features & DASD_FEATURE_READONLY &&
2589 rq_data_dir(req) == WRITE) {
2590 DBF_DEV_EVENT(DBF_ERR, basedev,
2591 "Rejecting write request %p",
2592 req);
Tejun Heo9934c8c2009-05-08 11:54:16 +09002593 blk_start_request(req);
Tejun Heo40cbbb72009-04-23 11:05:19 +09002594 __blk_end_request_all(req, -EIO);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002595 continue;
2596 }
Hannes Reinecke5ea34a02013-01-30 09:26:19 +00002597 if (test_bit(DASD_FLAG_ABORTALL, &basedev->flags) &&
2598 (basedev->features & DASD_FEATURE_FAILFAST ||
2599 blk_noretry_request(req))) {
2600 DBF_DEV_EVENT(DBF_ERR, basedev,
2601 "Rejecting failfast request %p",
2602 req);
2603 blk_start_request(req);
2604 __blk_end_request_all(req, -ETIMEDOUT);
2605 continue;
2606 }
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002607 cqr = basedev->discipline->build_cp(basedev, block, req);
2608 if (IS_ERR(cqr)) {
2609 if (PTR_ERR(cqr) == -EBUSY)
2610 break; /* normal end condition */
2611 if (PTR_ERR(cqr) == -ENOMEM)
2612 break; /* terminate request queue loop */
2613 if (PTR_ERR(cqr) == -EAGAIN) {
2614 /*
2615 * The current request cannot be build right
2616 * now, we have to try later. If this request
2617 * is the head-of-queue we stop the device
2618 * for 1/2 second.
2619 */
2620 if (!list_empty(&block->ccw_queue))
2621 break;
Stefan Weinhubereb6e1992009-12-07 12:51:51 +01002622 spin_lock_irqsave(
2623 get_ccwdev_lock(basedev->cdev), flags);
2624 dasd_device_set_stop_bits(basedev,
2625 DASD_STOPPED_PENDING);
2626 spin_unlock_irqrestore(
2627 get_ccwdev_lock(basedev->cdev), flags);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002628 dasd_block_set_timer(block, HZ/2);
2629 break;
2630 }
2631 DBF_DEV_EVENT(DBF_ERR, basedev,
2632 "CCW creation failed (rc=%ld) "
2633 "on request %p",
2634 PTR_ERR(cqr), req);
Tejun Heo9934c8c2009-05-08 11:54:16 +09002635 blk_start_request(req);
Tejun Heo40cbbb72009-04-23 11:05:19 +09002636 __blk_end_request_all(req, -EIO);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002637 continue;
2638 }
2639 /*
2640 * Note: callback is set to dasd_return_cqr_cb in
2641 * __dasd_block_start_head to cover erp requests as well
2642 */
2643 cqr->callback_data = (void *) req;
2644 cqr->status = DASD_CQR_FILLED;
Hannes Reineckea2ace462013-01-30 09:26:14 +00002645 req->completion_data = cqr;
Tejun Heo9934c8c2009-05-08 11:54:16 +09002646 blk_start_request(req);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002647 list_add_tail(&cqr->blocklist, &block->ccw_queue);
Hannes Reineckea2ace462013-01-30 09:26:14 +00002648 INIT_LIST_HEAD(&cqr->devlist);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002649 dasd_profile_start(block, cqr, req);
2650 }
2651}
2652
2653static void __dasd_cleanup_cqr(struct dasd_ccw_req *cqr)
2654{
2655 struct request *req;
2656 int status;
Kiyoshi Ueda4c4e2142008-01-28 10:29:42 +01002657 int error = 0;
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002658
2659 req = (struct request *) cqr->callback_data;
2660 dasd_profile_end(cqr->block, cqr, req);
Stefan Weinhuberfe6b8e72008-02-05 16:50:47 +01002661 status = cqr->block->base->discipline->free_cp(cqr, req);
Hannes Reinecked1ffc1f2013-01-30 09:26:16 +00002662 if (status < 0)
2663 error = status;
2664 else if (status == 0) {
2665 if (cqr->intrc == -EPERM)
2666 error = -EBADE;
2667 else if (cqr->intrc == -ENOLINK ||
2668 cqr->intrc == -ETIMEDOUT)
2669 error = cqr->intrc;
2670 else
2671 error = -EIO;
2672 }
Tejun Heo40cbbb72009-04-23 11:05:19 +09002673 __blk_end_request_all(req, error);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002674}
2675
2676/*
2677 * Process ccw request queue.
2678 */
2679static void __dasd_process_block_ccw_queue(struct dasd_block *block,
2680 struct list_head *final_queue)
2681{
2682 struct list_head *l, *n;
2683 struct dasd_ccw_req *cqr;
2684 dasd_erp_fn_t erp_fn;
2685 unsigned long flags;
2686 struct dasd_device *base = block->base;
2687
2688restart:
2689 /* Process request with final status. */
2690 list_for_each_safe(l, n, &block->ccw_queue) {
2691 cqr = list_entry(l, struct dasd_ccw_req, blocklist);
2692 if (cqr->status != DASD_CQR_DONE &&
2693 cqr->status != DASD_CQR_FAILED &&
2694 cqr->status != DASD_CQR_NEED_ERP &&
2695 cqr->status != DASD_CQR_TERMINATED)
2696 continue;
2697
2698 if (cqr->status == DASD_CQR_TERMINATED) {
2699 base->discipline->handle_terminated_request(cqr);
2700 goto restart;
2701 }
2702
2703 /* Process requests that may be recovered */
2704 if (cqr->status == DASD_CQR_NEED_ERP) {
Stefan Haberland6c5f57c2008-02-05 16:50:46 +01002705 erp_fn = base->discipline->erp_action(cqr);
Stefan Haberland6a5176c2010-04-22 17:17:02 +02002706 if (IS_ERR(erp_fn(cqr)))
2707 continue;
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002708 goto restart;
2709 }
2710
Stefan Haberlanda9cffb22008-11-14 18:18:08 +01002711 /* log sense for fatal error */
2712 if (cqr->status == DASD_CQR_FAILED) {
2713 dasd_log_sense(cqr, &cqr->irb);
2714 }
2715
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002716 /* First of all call extended error reporting. */
2717 if (dasd_eer_enabled(base) &&
2718 cqr->status == DASD_CQR_FAILED) {
2719 dasd_eer_write(base, cqr, DASD_EER_FATALERROR);
2720
2721 /* restart request */
2722 cqr->status = DASD_CQR_FILLED;
2723 cqr->retries = 255;
2724 spin_lock_irqsave(get_ccwdev_lock(base->cdev), flags);
Stefan Weinhubereb6e1992009-12-07 12:51:51 +01002725 dasd_device_set_stop_bits(base, DASD_STOPPED_QUIESCE);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002726 spin_unlock_irqrestore(get_ccwdev_lock(base->cdev),
2727 flags);
2728 goto restart;
2729 }
2730
2731 /* Process finished ERP request. */
2732 if (cqr->refers) {
Stefan Weinhubereb6e1992009-12-07 12:51:51 +01002733 __dasd_process_erp(base, cqr);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002734 goto restart;
2735 }
2736
2737 /* Rechain finished requests to final queue */
Heiko Carstens1aae0562013-01-30 09:49:40 +01002738 cqr->endclk = get_tod_clock();
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002739 list_move_tail(&cqr->blocklist, final_queue);
2740 }
2741}
2742
2743static void dasd_return_cqr_cb(struct dasd_ccw_req *cqr, void *data)
2744{
2745 dasd_schedule_block_bh(cqr->block);
2746}
2747
2748static void __dasd_block_start_head(struct dasd_block *block)
2749{
2750 struct dasd_ccw_req *cqr;
2751
2752 if (list_empty(&block->ccw_queue))
2753 return;
2754 /* We allways begin with the first requests on the queue, as some
2755 * of previously started requests have to be enqueued on a
2756 * dasd_device again for error recovery.
2757 */
2758 list_for_each_entry(cqr, &block->ccw_queue, blocklist) {
2759 if (cqr->status != DASD_CQR_FILLED)
2760 continue;
Stefan Weinhuber5a27e602011-01-05 12:48:04 +01002761 if (test_bit(DASD_FLAG_LOCK_STOLEN, &block->base->flags) &&
2762 !test_bit(DASD_CQR_ALLOW_SLOCK, &cqr->flags)) {
2763 cqr->status = DASD_CQR_FAILED;
2764 cqr->intrc = -EPERM;
2765 dasd_schedule_block_bh(block);
2766 continue;
2767 }
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002768 /* Non-temporary stop condition will trigger fail fast */
2769 if (block->base->stopped & ~DASD_STOPPED_PENDING &&
2770 test_bit(DASD_CQR_FLAGS_FAILFAST, &cqr->flags) &&
2771 (!dasd_eer_enabled(block->base))) {
2772 cqr->status = DASD_CQR_FAILED;
Hannes Reinecked1ffc1f2013-01-30 09:26:16 +00002773 cqr->intrc = -ENOLINK;
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002774 dasd_schedule_block_bh(block);
2775 continue;
2776 }
2777 /* Don't try to start requests if device is stopped */
2778 if (block->base->stopped)
2779 return;
2780
2781 /* just a fail safe check, should not happen */
2782 if (!cqr->startdev)
2783 cqr->startdev = block->base;
2784
2785 /* make sure that the requests we submit find their way back */
2786 cqr->callback = dasd_return_cqr_cb;
2787
2788 dasd_add_request_tail(cqr);
2789 }
2790}
2791
2792/*
2793 * Central dasd_block layer routine. Takes requests from the generic
2794 * block layer request queue, creates ccw requests, enqueues them on
2795 * a dasd_device and processes ccw requests that have been returned.
2796 */
2797static void dasd_block_tasklet(struct dasd_block *block)
2798{
2799 struct list_head final_queue;
2800 struct list_head *l, *n;
2801 struct dasd_ccw_req *cqr;
2802
2803 atomic_set(&block->tasklet_scheduled, 0);
2804 INIT_LIST_HEAD(&final_queue);
2805 spin_lock(&block->queue_lock);
2806 /* Finish off requests on ccw queue */
2807 __dasd_process_block_ccw_queue(block, &final_queue);
2808 spin_unlock(&block->queue_lock);
2809 /* Now call the callback function of requests with final status */
2810 spin_lock_irq(&block->request_queue_lock);
2811 list_for_each_safe(l, n, &final_queue) {
2812 cqr = list_entry(l, struct dasd_ccw_req, blocklist);
2813 list_del_init(&cqr->blocklist);
2814 __dasd_cleanup_cqr(cqr);
2815 }
2816 spin_lock(&block->queue_lock);
2817 /* Get new request from the block device request queue */
2818 __dasd_process_request_queue(block);
2819 /* Now check if the head of the ccw queue needs to be started. */
2820 __dasd_block_start_head(block);
2821 spin_unlock(&block->queue_lock);
2822 spin_unlock_irq(&block->request_queue_lock);
Stefan Haberland4679e892012-06-19 17:30:12 +02002823 if (waitqueue_active(&shutdown_waitq))
2824 wake_up(&shutdown_waitq);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002825 dasd_put_device(block->base);
2826}
2827
2828static void _dasd_wake_block_flush_cb(struct dasd_ccw_req *cqr, void *data)
2829{
2830 wake_up(&dasd_flush_wq);
2831}
2832
2833/*
Stefan Haberlandc5576872013-04-15 16:41:31 +02002834 * Requeue a request back to the block request queue
2835 * only works for block requests
2836 */
2837static int _dasd_requeue_request(struct dasd_ccw_req *cqr)
2838{
2839 struct dasd_block *block = cqr->block;
2840 struct request *req;
2841 unsigned long flags;
2842
2843 if (!block)
2844 return -EINVAL;
2845 spin_lock_irqsave(&block->queue_lock, flags);
2846 req = (struct request *) cqr->callback_data;
2847 blk_requeue_request(block->request_queue, req);
2848 spin_unlock_irqrestore(&block->queue_lock, flags);
2849
2850 return 0;
2851}
2852
2853/*
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002854 * Go through all request on the dasd_block request queue, cancel them
2855 * on the respective dasd_device, and return them to the generic
2856 * block layer.
2857 */
2858static int dasd_flush_block_queue(struct dasd_block *block)
2859{
2860 struct dasd_ccw_req *cqr, *n;
2861 int rc, i;
2862 struct list_head flush_queue;
2863
2864 INIT_LIST_HEAD(&flush_queue);
2865 spin_lock_bh(&block->queue_lock);
2866 rc = 0;
2867restart:
2868 list_for_each_entry_safe(cqr, n, &block->ccw_queue, blocklist) {
2869 /* if this request currently owned by a dasd_device cancel it */
2870 if (cqr->status >= DASD_CQR_QUEUED)
2871 rc = dasd_cancel_req(cqr);
2872 if (rc < 0)
2873 break;
2874 /* Rechain request (including erp chain) so it won't be
2875 * touched by the dasd_block_tasklet anymore.
2876 * Replace the callback so we notice when the request
2877 * is returned from the dasd_device layer.
2878 */
2879 cqr->callback = _dasd_wake_block_flush_cb;
2880 for (i = 0; cqr != NULL; cqr = cqr->refers, i++)
2881 list_move_tail(&cqr->blocklist, &flush_queue);
2882 if (i > 1)
2883 /* moved more than one request - need to restart */
2884 goto restart;
2885 }
2886 spin_unlock_bh(&block->queue_lock);
2887 /* Now call the callback function of flushed requests */
2888restart_cb:
2889 list_for_each_entry_safe(cqr, n, &flush_queue, blocklist) {
2890 wait_event(dasd_flush_wq, (cqr->status < DASD_CQR_QUEUED));
2891 /* Process finished ERP request. */
2892 if (cqr->refers) {
Stefan Haberland0cd4bd42008-12-25 13:38:54 +01002893 spin_lock_bh(&block->queue_lock);
Stefan Weinhubereb6e1992009-12-07 12:51:51 +01002894 __dasd_process_erp(block->base, cqr);
Stefan Haberland0cd4bd42008-12-25 13:38:54 +01002895 spin_unlock_bh(&block->queue_lock);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002896 /* restart list_for_xx loop since dasd_process_erp
2897 * might remove multiple elements */
2898 goto restart_cb;
2899 }
2900 /* call the callback function */
Stefan Haberland0cd4bd42008-12-25 13:38:54 +01002901 spin_lock_irq(&block->request_queue_lock);
Heiko Carstens1aae0562013-01-30 09:49:40 +01002902 cqr->endclk = get_tod_clock();
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002903 list_del_init(&cqr->blocklist);
2904 __dasd_cleanup_cqr(cqr);
Stefan Haberland0cd4bd42008-12-25 13:38:54 +01002905 spin_unlock_irq(&block->request_queue_lock);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002906 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002907 return rc;
2908}
2909
2910/*
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002911 * Schedules a call to dasd_tasklet over the device tasklet.
2912 */
2913void dasd_schedule_block_bh(struct dasd_block *block)
2914{
2915 /* Protect against rescheduling. */
2916 if (atomic_cmpxchg(&block->tasklet_scheduled, 0, 1) != 0)
2917 return;
2918 /* life cycle of block is bound to it's base device */
2919 dasd_get_device(block->base);
2920 tasklet_hi_schedule(&block->tasklet);
2921}
Fabian Frederick7048a2b2014-06-26 19:41:47 +02002922EXPORT_SYMBOL(dasd_schedule_block_bh);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002923
2924
2925/*
2926 * SECTION: external block device operations
2927 * (request queue handling, open, release, etc.)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002928 */
2929
2930/*
2931 * Dasd request queue function. Called from ll_rw_blk.c
2932 */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002933static void do_dasd_request(struct request_queue *queue)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002934{
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002935 struct dasd_block *block;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002936
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002937 block = queue->queuedata;
2938 spin_lock(&block->queue_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002939 /* Get new request from the block device request queue */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002940 __dasd_process_request_queue(block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002941 /* Now check if the head of the ccw queue needs to be started. */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002942 __dasd_block_start_head(block);
2943 spin_unlock(&block->queue_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002944}
2945
2946/*
Hannes Reineckea2ace462013-01-30 09:26:14 +00002947 * Block timeout callback, called from the block layer
2948 *
2949 * request_queue lock is held on entry.
2950 *
2951 * Return values:
2952 * BLK_EH_RESET_TIMER if the request should be left running
2953 * BLK_EH_NOT_HANDLED if the request is handled or terminated
2954 * by the driver.
2955 */
2956enum blk_eh_timer_return dasd_times_out(struct request *req)
2957{
2958 struct dasd_ccw_req *cqr = req->completion_data;
2959 struct dasd_block *block = req->q->queuedata;
2960 struct dasd_device *device;
2961 int rc = 0;
2962
2963 if (!cqr)
2964 return BLK_EH_NOT_HANDLED;
2965
2966 device = cqr->startdev ? cqr->startdev : block->base;
Hannes Reinecke3d71ad32013-01-30 09:26:18 +00002967 if (!device->blk_timeout)
2968 return BLK_EH_RESET_TIMER;
Hannes Reineckea2ace462013-01-30 09:26:14 +00002969 DBF_DEV_EVENT(DBF_WARNING, device,
2970 " dasd_times_out cqr %p status %x",
2971 cqr, cqr->status);
2972
2973 spin_lock(&block->queue_lock);
2974 spin_lock(get_ccwdev_lock(device->cdev));
2975 cqr->retries = -1;
2976 cqr->intrc = -ETIMEDOUT;
2977 if (cqr->status >= DASD_CQR_QUEUED) {
2978 spin_unlock(get_ccwdev_lock(device->cdev));
2979 rc = dasd_cancel_req(cqr);
2980 } else if (cqr->status == DASD_CQR_FILLED ||
2981 cqr->status == DASD_CQR_NEED_ERP) {
2982 cqr->status = DASD_CQR_TERMINATED;
2983 spin_unlock(get_ccwdev_lock(device->cdev));
2984 } else if (cqr->status == DASD_CQR_IN_ERP) {
2985 struct dasd_ccw_req *searchcqr, *nextcqr, *tmpcqr;
2986
2987 list_for_each_entry_safe(searchcqr, nextcqr,
2988 &block->ccw_queue, blocklist) {
2989 tmpcqr = searchcqr;
2990 while (tmpcqr->refers)
2991 tmpcqr = tmpcqr->refers;
2992 if (tmpcqr != cqr)
2993 continue;
2994 /* searchcqr is an ERP request for cqr */
2995 searchcqr->retries = -1;
2996 searchcqr->intrc = -ETIMEDOUT;
2997 if (searchcqr->status >= DASD_CQR_QUEUED) {
2998 spin_unlock(get_ccwdev_lock(device->cdev));
2999 rc = dasd_cancel_req(searchcqr);
3000 spin_lock(get_ccwdev_lock(device->cdev));
3001 } else if ((searchcqr->status == DASD_CQR_FILLED) ||
3002 (searchcqr->status == DASD_CQR_NEED_ERP)) {
3003 searchcqr->status = DASD_CQR_TERMINATED;
3004 rc = 0;
3005 } else if (searchcqr->status == DASD_CQR_IN_ERP) {
3006 /*
3007 * Shouldn't happen; most recent ERP
3008 * request is at the front of queue
3009 */
3010 continue;
3011 }
3012 break;
3013 }
3014 spin_unlock(get_ccwdev_lock(device->cdev));
3015 }
3016 dasd_schedule_block_bh(block);
3017 spin_unlock(&block->queue_lock);
3018
3019 return rc ? BLK_EH_RESET_TIMER : BLK_EH_NOT_HANDLED;
3020}
3021
3022/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003023 * Allocate and initialize request queue and default I/O scheduler.
3024 */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01003025static int dasd_alloc_queue(struct dasd_block *block)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003026{
3027 int rc;
3028
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01003029 block->request_queue = blk_init_queue(do_dasd_request,
3030 &block->request_queue_lock);
3031 if (block->request_queue == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003032 return -ENOMEM;
3033
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01003034 block->request_queue->queuedata = block;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003035
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01003036 elevator_exit(block->request_queue->elevator);
Josef 'Jeff' Sipek08a8a0c2008-04-17 07:45:56 +02003037 block->request_queue->elevator = NULL;
Heiko Carstensef089942013-10-31 13:24:28 +01003038 mutex_lock(&block->request_queue->sysfs_lock);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01003039 rc = elevator_init(block->request_queue, "deadline");
Heiko Carstensef089942013-10-31 13:24:28 +01003040 if (rc)
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01003041 blk_cleanup_queue(block->request_queue);
Heiko Carstensef089942013-10-31 13:24:28 +01003042 mutex_unlock(&block->request_queue->sysfs_lock);
3043 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003044}
3045
3046/*
3047 * Allocate and initialize request queue.
3048 */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01003049static void dasd_setup_queue(struct dasd_block *block)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003050{
3051 int max;
3052
Stefan Haberlande4dbb0f2011-01-05 12:48:06 +01003053 if (block->base->features & DASD_FEATURE_USERAW) {
3054 /*
3055 * the max_blocks value for raw_track access is 256
3056 * it is higher than the native ECKD value because we
3057 * only need one ccw per track
3058 * so the max_hw_sectors are
3059 * 2048 x 512B = 1024kB = 16 tracks
3060 */
3061 max = 2048;
3062 } else {
3063 max = block->base->discipline->max_blocks << block->s2b_shift;
3064 }
3065 blk_queue_logical_block_size(block->request_queue,
3066 block->bp_block);
Martin K. Petersen086fa5f2010-02-26 00:20:38 -05003067 blk_queue_max_hw_sectors(block->request_queue, max);
Martin K. Petersen8a783622010-02-26 00:20:39 -05003068 blk_queue_max_segments(block->request_queue, -1L);
Stefan Weinhuberf3eb5382009-03-26 15:23:48 +01003069 /* with page sized segments we can translate each segement into
3070 * one idaw/tidaw
3071 */
3072 blk_queue_max_segment_size(block->request_queue, PAGE_SIZE);
3073 blk_queue_segment_boundary(block->request_queue, PAGE_SIZE - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003074}
3075
3076/*
3077 * Deactivate and free request queue.
3078 */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01003079static void dasd_free_queue(struct dasd_block *block)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003080{
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01003081 if (block->request_queue) {
3082 blk_cleanup_queue(block->request_queue);
3083 block->request_queue = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003084 }
3085}
3086
3087/*
3088 * Flush request on the request queue.
3089 */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01003090static void dasd_flush_request_queue(struct dasd_block *block)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003091{
3092 struct request *req;
3093
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01003094 if (!block->request_queue)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003095 return;
Horst Hummel138c0142006-06-29 14:58:12 +02003096
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01003097 spin_lock_irq(&block->request_queue_lock);
Tejun Heo9934c8c2009-05-08 11:54:16 +09003098 while ((req = blk_fetch_request(block->request_queue)))
Tejun Heo40cbbb72009-04-23 11:05:19 +09003099 __blk_end_request_all(req, -EIO);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01003100 spin_unlock_irq(&block->request_queue_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003101}
3102
Al Viro57a7c0b2008-03-02 10:36:08 -05003103static int dasd_open(struct block_device *bdev, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003104{
Stefan Haberland9eb25122010-02-26 22:37:46 +01003105 struct dasd_device *base;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003106 int rc;
3107
Stefan Weinhuber65f8da42011-04-20 10:15:30 +02003108 base = dasd_device_from_gendisk(bdev->bd_disk);
3109 if (!base)
Stefan Haberland9eb25122010-02-26 22:37:46 +01003110 return -ENODEV;
3111
Stefan Weinhuber65f8da42011-04-20 10:15:30 +02003112 atomic_inc(&base->block->open_count);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01003113 if (test_bit(DASD_FLAG_OFFLINE, &base->flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003114 rc = -ENODEV;
3115 goto unlock;
3116 }
3117
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01003118 if (!try_module_get(base->discipline->owner)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003119 rc = -EINVAL;
3120 goto unlock;
3121 }
3122
3123 if (dasd_probeonly) {
Stefan Haberlandfc19f382009-03-26 15:23:49 +01003124 dev_info(&base->cdev->dev,
3125 "Accessing the DASD failed because it is in "
3126 "probeonly mode\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003127 rc = -EPERM;
3128 goto out;
3129 }
3130
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01003131 if (base->state <= DASD_STATE_BASIC) {
3132 DBF_DEV_EVENT(DBF_ERR, base, " %s",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003133 " Cannot open unrecognized device");
3134 rc = -ENODEV;
3135 goto out;
3136 }
3137
Stefan Weinhuber33b62a32010-03-08 12:26:24 +01003138 if ((mode & FMODE_WRITE) &&
3139 (test_bit(DASD_FLAG_DEVICE_RO, &base->flags) ||
3140 (base->features & DASD_FEATURE_READONLY))) {
3141 rc = -EROFS;
3142 goto out;
3143 }
3144
Stefan Weinhuber65f8da42011-04-20 10:15:30 +02003145 dasd_put_device(base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003146 return 0;
3147
3148out:
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01003149 module_put(base->discipline->owner);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003150unlock:
Stefan Weinhuber65f8da42011-04-20 10:15:30 +02003151 atomic_dec(&base->block->open_count);
3152 dasd_put_device(base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003153 return rc;
3154}
3155
Al Virodb2a1442013-05-05 21:52:57 -04003156static void dasd_release(struct gendisk *disk, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003157{
Al Virodb2a1442013-05-05 21:52:57 -04003158 struct dasd_device *base = dasd_device_from_gendisk(disk);
3159 if (base) {
3160 atomic_dec(&base->block->open_count);
3161 module_put(base->discipline->owner);
3162 dasd_put_device(base);
3163 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003164}
3165
Christoph Hellwiga885c8c2006-01-08 01:02:50 -08003166/*
3167 * Return disk geometry.
3168 */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01003169static int dasd_getgeo(struct block_device *bdev, struct hd_geometry *geo)
Christoph Hellwiga885c8c2006-01-08 01:02:50 -08003170{
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01003171 struct dasd_device *base;
Christoph Hellwiga885c8c2006-01-08 01:02:50 -08003172
Stefan Weinhuber65f8da42011-04-20 10:15:30 +02003173 base = dasd_device_from_gendisk(bdev->bd_disk);
3174 if (!base)
Christoph Hellwiga885c8c2006-01-08 01:02:50 -08003175 return -ENODEV;
3176
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01003177 if (!base->discipline ||
Stefan Weinhuber65f8da42011-04-20 10:15:30 +02003178 !base->discipline->fill_geometry) {
3179 dasd_put_device(base);
Christoph Hellwiga885c8c2006-01-08 01:02:50 -08003180 return -EINVAL;
Stefan Weinhuber65f8da42011-04-20 10:15:30 +02003181 }
3182 base->discipline->fill_geometry(base->block, geo);
3183 geo->start = get_start_sect(bdev) >> base->block->s2b_shift;
3184 dasd_put_device(base);
Christoph Hellwiga885c8c2006-01-08 01:02:50 -08003185 return 0;
3186}
3187
Alexey Dobriyan83d5cde2009-09-21 17:01:13 -07003188const struct block_device_operations
Linus Torvalds1da177e2005-04-16 15:20:36 -07003189dasd_device_operations = {
3190 .owner = THIS_MODULE,
Al Viro57a7c0b2008-03-02 10:36:08 -05003191 .open = dasd_open,
3192 .release = dasd_release,
Heiko Carstens0000d032009-03-26 15:23:45 +01003193 .ioctl = dasd_ioctl,
3194 .compat_ioctl = dasd_ioctl,
Christoph Hellwiga885c8c2006-01-08 01:02:50 -08003195 .getgeo = dasd_getgeo,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003196};
3197
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01003198/*******************************************************************************
3199 * end of block device operations
3200 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003201
3202static void
3203dasd_exit(void)
3204{
3205#ifdef CONFIG_PROC_FS
3206 dasd_proc_exit();
3207#endif
Stefan Weinhuber20c64462006-03-24 03:15:25 -08003208 dasd_eer_exit();
Horst Hummel6bb0e012005-07-27 11:45:03 -07003209 if (dasd_page_cache != NULL) {
3210 kmem_cache_destroy(dasd_page_cache);
3211 dasd_page_cache = NULL;
3212 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003213 dasd_gendisk_exit();
3214 dasd_devmap_exit();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003215 if (dasd_debug_area != NULL) {
3216 debug_unregister(dasd_debug_area);
3217 dasd_debug_area = NULL;
3218 }
Stefan Weinhuber4fa52aa2011-07-24 10:48:32 +02003219 dasd_statistics_removeroot();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003220}
3221
3222/*
3223 * SECTION: common functions for ccw_driver use
3224 */
3225
Stefan Weinhuber33b62a32010-03-08 12:26:24 +01003226/*
3227 * Is the device read-only?
3228 * Note that this function does not report the setting of the
3229 * readonly device attribute, but how it is configured in z/VM.
3230 */
3231int dasd_device_is_ro(struct dasd_device *device)
3232{
3233 struct ccw_dev_id dev_id;
3234 struct diag210 diag_data;
3235 int rc;
3236
3237 if (!MACHINE_IS_VM)
3238 return 0;
3239 ccw_device_get_id(device->cdev, &dev_id);
3240 memset(&diag_data, 0, sizeof(diag_data));
3241 diag_data.vrdcdvno = dev_id.devno;
3242 diag_data.vrdclen = sizeof(diag_data);
3243 rc = diag210(&diag_data);
3244 if (rc == 0 || rc == 2) {
3245 return diag_data.vrdcvfla & 0x80;
3246 } else {
3247 DBF_EVENT(DBF_WARNING, "diag210 failed for dev=%04x with rc=%d",
3248 dev_id.devno, rc);
3249 return 0;
3250 }
3251}
3252EXPORT_SYMBOL_GPL(dasd_device_is_ro);
3253
Cornelia Huckf3445a12009-04-14 15:36:23 +02003254static void dasd_generic_auto_online(void *data, async_cookie_t cookie)
3255{
3256 struct ccw_device *cdev = data;
3257 int ret;
3258
3259 ret = ccw_device_set_online(cdev);
3260 if (ret)
Fabian Frederick4ce25962014-06-26 19:41:48 +02003261 pr_warn("%s: Setting the DASD online failed with rc=%d\n",
3262 dev_name(&cdev->dev), ret);
Cornelia Huckf3445a12009-04-14 15:36:23 +02003263}
3264
Horst Hummel1c01b8a2006-01-06 00:19:15 -08003265/*
3266 * Initial attempt at a probe function. this can be simplified once
3267 * the other detection code is gone.
3268 */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01003269int dasd_generic_probe(struct ccw_device *cdev,
3270 struct dasd_discipline *discipline)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003271{
3272 int ret;
3273
3274 ret = dasd_add_sysfs_files(cdev);
3275 if (ret) {
Stefan Haberlandb8ed5dd2009-12-07 12:51:52 +01003276 DBF_EVENT_DEVID(DBF_WARNING, cdev, "%s",
3277 "dasd_generic_probe: could not add "
3278 "sysfs entries");
Horst Hummel40545572006-06-29 15:08:18 +02003279 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003280 }
Horst Hummel40545572006-06-29 15:08:18 +02003281 cdev->handler = &dasd_int_handler;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003282
Horst Hummel40545572006-06-29 15:08:18 +02003283 /*
3284 * Automatically online either all dasd devices (dasd_autodetect)
3285 * or all devices specified with dasd= parameters during
3286 * initial probe.
3287 */
3288 if ((dasd_get_feature(cdev, DASD_FEATURE_INITIAL_ONLINE) > 0 ) ||
Kay Sievers2a0217d2008-10-10 21:33:09 +02003289 (dasd_autodetect && dasd_busid_known(dev_name(&cdev->dev)) != 0))
Cornelia Huckf3445a12009-04-14 15:36:23 +02003290 async_schedule(dasd_generic_auto_online, cdev);
Stefan Haberlandde3e0da2008-01-26 14:11:08 +01003291 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003292}
Fabian Frederick7048a2b2014-06-26 19:41:47 +02003293EXPORT_SYMBOL_GPL(dasd_generic_probe);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003294
Horst Hummel1c01b8a2006-01-06 00:19:15 -08003295/*
3296 * This will one day be called from a global not_oper handler.
3297 * It is also used by driver_unregister during module unload.
3298 */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01003299void dasd_generic_remove(struct ccw_device *cdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003300{
3301 struct dasd_device *device;
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01003302 struct dasd_block *block;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003303
Horst Hummel59afda72005-05-16 21:53:39 -07003304 cdev->handler = NULL;
3305
Linus Torvalds1da177e2005-04-16 15:20:36 -07003306 device = dasd_device_from_cdev(cdev);
Stefan Weinhuberbe4904e2013-02-04 13:10:35 +01003307 if (IS_ERR(device)) {
3308 dasd_remove_sysfs_files(cdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003309 return;
Stefan Weinhuberbe4904e2013-02-04 13:10:35 +01003310 }
Stefan Haberlandd07dc5d2012-11-28 13:43:38 +01003311 if (test_and_set_bit(DASD_FLAG_OFFLINE, &device->flags) &&
3312 !test_bit(DASD_FLAG_SAFE_OFFLINE_RUNNING, &device->flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003313 /* Already doing offline processing */
3314 dasd_put_device(device);
Stefan Weinhuberbe4904e2013-02-04 13:10:35 +01003315 dasd_remove_sysfs_files(cdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003316 return;
3317 }
3318 /*
3319 * This device is removed unconditionally. Set offline
3320 * flag to prevent dasd_open from opening it while it is
3321 * no quite down yet.
3322 */
3323 dasd_set_target_state(device, DASD_STATE_NEW);
3324 /* dasd_delete_device destroys the device reference. */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01003325 block = device->block;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003326 dasd_delete_device(device);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01003327 /*
3328 * life cycle of block is bound to device, so delete it after
3329 * device was safely removed
3330 */
3331 if (block)
3332 dasd_free_block(block);
Stefan Haberlandd07dc5d2012-11-28 13:43:38 +01003333
3334 dasd_remove_sysfs_files(cdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003335}
Fabian Frederick7048a2b2014-06-26 19:41:47 +02003336EXPORT_SYMBOL_GPL(dasd_generic_remove);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003337
Horst Hummel1c01b8a2006-01-06 00:19:15 -08003338/*
3339 * Activate a device. This is called from dasd_{eckd,fba}_probe() when either
Linus Torvalds1da177e2005-04-16 15:20:36 -07003340 * the device is detected for the first time and is supposed to be used
Horst Hummel1c01b8a2006-01-06 00:19:15 -08003341 * or the user has started activation through sysfs.
3342 */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01003343int dasd_generic_set_online(struct ccw_device *cdev,
3344 struct dasd_discipline *base_discipline)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003345{
Peter Oberparleiteraa888612006-02-20 18:28:13 -08003346 struct dasd_discipline *discipline;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003347 struct dasd_device *device;
Horst Hummelc6eb7b72005-09-03 15:57:58 -07003348 int rc;
Horst Hummelf24acd42005-05-01 08:58:59 -07003349
Horst Hummel40545572006-06-29 15:08:18 +02003350 /* first online clears initial online feature flag */
3351 dasd_set_feature(cdev, DASD_FEATURE_INITIAL_ONLINE, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003352 device = dasd_create_device(cdev);
3353 if (IS_ERR(device))
3354 return PTR_ERR(device);
3355
Peter Oberparleiteraa888612006-02-20 18:28:13 -08003356 discipline = base_discipline;
Horst Hummelc6eb7b72005-09-03 15:57:58 -07003357 if (device->features & DASD_FEATURE_USEDIAG) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003358 if (!dasd_diag_discipline_pointer) {
Fabian Frederick4ce25962014-06-26 19:41:48 +02003359 pr_warn("%s Setting the DASD online failed because of missing DIAG discipline\n",
3360 dev_name(&cdev->dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003361 dasd_delete_device(device);
3362 return -ENODEV;
3363 }
3364 discipline = dasd_diag_discipline_pointer;
3365 }
Peter Oberparleiteraa888612006-02-20 18:28:13 -08003366 if (!try_module_get(base_discipline->owner)) {
3367 dasd_delete_device(device);
3368 return -EINVAL;
3369 }
3370 if (!try_module_get(discipline->owner)) {
3371 module_put(base_discipline->owner);
3372 dasd_delete_device(device);
3373 return -EINVAL;
3374 }
3375 device->base_discipline = base_discipline;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003376 device->discipline = discipline;
3377
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01003378 /* check_device will allocate block device if necessary */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003379 rc = discipline->check_device(device);
3380 if (rc) {
Fabian Frederick4ce25962014-06-26 19:41:48 +02003381 pr_warn("%s Setting the DASD online with discipline %s failed with rc=%i\n",
3382 dev_name(&cdev->dev), discipline->name, rc);
Peter Oberparleiteraa888612006-02-20 18:28:13 -08003383 module_put(discipline->owner);
3384 module_put(base_discipline->owner);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003385 dasd_delete_device(device);
3386 return rc;
3387 }
3388
3389 dasd_set_target_state(device, DASD_STATE_ONLINE);
3390 if (device->state <= DASD_STATE_KNOWN) {
Fabian Frederick4ce25962014-06-26 19:41:48 +02003391 pr_warn("%s Setting the DASD online failed because of a missing discipline\n",
3392 dev_name(&cdev->dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003393 rc = -ENODEV;
3394 dasd_set_target_state(device, DASD_STATE_NEW);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01003395 if (device->block)
3396 dasd_free_block(device->block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003397 dasd_delete_device(device);
3398 } else
3399 pr_debug("dasd_generic device %s found\n",
Kay Sievers2a0217d2008-10-10 21:33:09 +02003400 dev_name(&cdev->dev));
Stefan Haberland589c74d2010-02-26 22:37:47 +01003401
3402 wait_event(dasd_init_waitq, _wait_for_device(device));
3403
Linus Torvalds1da177e2005-04-16 15:20:36 -07003404 dasd_put_device(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003405 return rc;
3406}
Fabian Frederick7048a2b2014-06-26 19:41:47 +02003407EXPORT_SYMBOL_GPL(dasd_generic_set_online);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003408
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01003409int dasd_generic_set_offline(struct ccw_device *cdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003410{
3411 struct dasd_device *device;
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01003412 struct dasd_block *block;
Stefan Haberlandd07dc5d2012-11-28 13:43:38 +01003413 int max_count, open_count, rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003414
Stefan Haberlandd07dc5d2012-11-28 13:43:38 +01003415 rc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003416 device = dasd_device_from_cdev(cdev);
3417 if (IS_ERR(device))
3418 return PTR_ERR(device);
Stefan Haberlandd07dc5d2012-11-28 13:43:38 +01003419
Linus Torvalds1da177e2005-04-16 15:20:36 -07003420 /*
3421 * We must make sure that this device is currently not in use.
3422 * The open_count is increased for every opener, that includes
3423 * the blkdev_get in dasd_scan_partitions. We are only interested
3424 * in the other openers.
3425 */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01003426 if (device->block) {
Heiko Carstensa8061702008-04-17 07:46:26 +02003427 max_count = device->block->bdev ? 0 : -1;
3428 open_count = atomic_read(&device->block->open_count);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01003429 if (open_count > max_count) {
3430 if (open_count > 0)
Fabian Frederick4ce25962014-06-26 19:41:48 +02003431 pr_warn("%s: The DASD cannot be set offline with open count %i\n",
3432 dev_name(&cdev->dev), open_count);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01003433 else
Fabian Frederick4ce25962014-06-26 19:41:48 +02003434 pr_warn("%s: The DASD cannot be set offline while it is in use\n",
3435 dev_name(&cdev->dev));
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01003436 clear_bit(DASD_FLAG_OFFLINE, &device->flags);
3437 dasd_put_device(device);
3438 return -EBUSY;
3439 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003440 }
Stefan Haberlandd07dc5d2012-11-28 13:43:38 +01003441
3442 if (test_bit(DASD_FLAG_SAFE_OFFLINE_RUNNING, &device->flags)) {
3443 /*
Hendrik Bruecknerb4a96012013-12-13 12:53:42 +01003444 * safe offline already running
Stefan Haberlandd07dc5d2012-11-28 13:43:38 +01003445 * could only be called by normal offline so safe_offline flag
3446 * needs to be removed to run normal offline and kill all I/O
3447 */
3448 if (test_and_set_bit(DASD_FLAG_OFFLINE, &device->flags)) {
3449 /* Already doing normal offline processing */
3450 dasd_put_device(device);
3451 return -EBUSY;
3452 } else
3453 clear_bit(DASD_FLAG_SAFE_OFFLINE, &device->flags);
3454
3455 } else
3456 if (test_bit(DASD_FLAG_OFFLINE, &device->flags)) {
3457 /* Already doing offline processing */
3458 dasd_put_device(device);
3459 return -EBUSY;
3460 }
3461
3462 /*
3463 * if safe_offline called set safe_offline_running flag and
3464 * clear safe_offline so that a call to normal offline
3465 * can overrun safe_offline processing
3466 */
3467 if (test_and_clear_bit(DASD_FLAG_SAFE_OFFLINE, &device->flags) &&
3468 !test_and_set_bit(DASD_FLAG_SAFE_OFFLINE_RUNNING, &device->flags)) {
3469 /*
3470 * If we want to set the device safe offline all IO operations
3471 * should be finished before continuing the offline process
3472 * so sync bdev first and then wait for our queues to become
3473 * empty
3474 */
3475 /* sync blockdev and partitions */
3476 rc = fsync_bdev(device->block->bdev);
3477 if (rc != 0)
3478 goto interrupted;
3479
3480 /* schedule device tasklet and wait for completion */
3481 dasd_schedule_device_bh(device);
3482 rc = wait_event_interruptible(shutdown_waitq,
3483 _wait_for_empty_queues(device));
3484 if (rc != 0)
3485 goto interrupted;
3486 }
3487
3488 set_bit(DASD_FLAG_OFFLINE, &device->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003489 dasd_set_target_state(device, DASD_STATE_NEW);
3490 /* dasd_delete_device destroys the device reference. */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01003491 block = device->block;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003492 dasd_delete_device(device);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01003493 /*
3494 * life cycle of block is bound to device, so delete it after
3495 * device was safely removed
3496 */
3497 if (block)
3498 dasd_free_block(block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003499 return 0;
Stefan Haberlandd07dc5d2012-11-28 13:43:38 +01003500
3501interrupted:
3502 /* interrupted by signal */
3503 clear_bit(DASD_FLAG_SAFE_OFFLINE, &device->flags);
3504 clear_bit(DASD_FLAG_SAFE_OFFLINE_RUNNING, &device->flags);
3505 clear_bit(DASD_FLAG_OFFLINE, &device->flags);
3506 dasd_put_device(device);
3507 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003508}
Fabian Frederick7048a2b2014-06-26 19:41:47 +02003509EXPORT_SYMBOL_GPL(dasd_generic_set_offline);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003510
Stefan Weinhubera4d26c62011-01-05 12:48:03 +01003511int dasd_generic_last_path_gone(struct dasd_device *device)
3512{
3513 struct dasd_ccw_req *cqr;
3514
3515 dev_warn(&device->cdev->dev, "No operational channel path is left "
3516 "for the device\n");
3517 DBF_DEV_EVENT(DBF_WARNING, device, "%s", "last path gone");
3518 /* First of all call extended error reporting. */
3519 dasd_eer_write(device, NULL, DASD_EER_NOPATH);
3520
3521 if (device->state < DASD_STATE_BASIC)
3522 return 0;
3523 /* Device is active. We want to keep it. */
3524 list_for_each_entry(cqr, &device->ccw_queue, devlist)
3525 if ((cqr->status == DASD_CQR_IN_IO) ||
3526 (cqr->status == DASD_CQR_CLEAR_PENDING)) {
3527 cqr->status = DASD_CQR_QUEUED;
3528 cqr->retries++;
3529 }
3530 dasd_device_set_stop_bits(device, DASD_STOPPED_DC_WAIT);
3531 dasd_device_clear_timer(device);
3532 dasd_schedule_device_bh(device);
3533 return 1;
3534}
3535EXPORT_SYMBOL_GPL(dasd_generic_last_path_gone);
3536
3537int dasd_generic_path_operational(struct dasd_device *device)
3538{
3539 dev_info(&device->cdev->dev, "A channel path to the device has become "
3540 "operational\n");
3541 DBF_DEV_EVENT(DBF_WARNING, device, "%s", "path operational");
3542 dasd_device_remove_stop_bits(device, DASD_STOPPED_DC_WAIT);
3543 if (device->stopped & DASD_UNRESUMED_PM) {
3544 dasd_device_remove_stop_bits(device, DASD_UNRESUMED_PM);
3545 dasd_restore_device(device);
3546 return 1;
3547 }
3548 dasd_schedule_device_bh(device);
3549 if (device->block)
3550 dasd_schedule_block_bh(device->block);
Stefan Haberland931a3dc2014-07-18 14:22:41 +02003551
3552 if (!device->stopped)
3553 wake_up(&generic_waitq);
3554
Stefan Weinhubera4d26c62011-01-05 12:48:03 +01003555 return 1;
3556}
3557EXPORT_SYMBOL_GPL(dasd_generic_path_operational);
3558
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01003559int dasd_generic_notify(struct ccw_device *cdev, int event)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003560{
3561 struct dasd_device *device;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003562 int ret;
3563
Peter Oberparleiter91c36912008-08-21 19:46:39 +02003564 device = dasd_device_from_cdev_locked(cdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003565 if (IS_ERR(device))
3566 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003567 ret = 0;
3568 switch (event) {
3569 case CIO_GONE:
Sebastian Ott47593bf2009-03-31 19:16:05 +02003570 case CIO_BOXED:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003571 case CIO_NO_PATH:
Stefan Weinhubera4d26c62011-01-05 12:48:03 +01003572 device->path_data.opm = 0;
3573 device->path_data.ppm = 0;
3574 device->path_data.npm = 0;
3575 ret = dasd_generic_last_path_gone(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003576 break;
3577 case CIO_OPER:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003578 ret = 1;
Stefan Weinhubera4d26c62011-01-05 12:48:03 +01003579 if (device->path_data.opm)
3580 ret = dasd_generic_path_operational(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003581 break;
3582 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003583 dasd_put_device(device);
3584 return ret;
3585}
Fabian Frederick7048a2b2014-06-26 19:41:47 +02003586EXPORT_SYMBOL_GPL(dasd_generic_notify);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003587
Stefan Weinhubera4d26c62011-01-05 12:48:03 +01003588void dasd_generic_path_event(struct ccw_device *cdev, int *path_event)
3589{
3590 int chp;
3591 __u8 oldopm, eventlpm;
3592 struct dasd_device *device;
3593
3594 device = dasd_device_from_cdev_locked(cdev);
3595 if (IS_ERR(device))
3596 return;
3597 for (chp = 0; chp < 8; chp++) {
3598 eventlpm = 0x80 >> chp;
3599 if (path_event[chp] & PE_PATH_GONE) {
3600 oldopm = device->path_data.opm;
3601 device->path_data.opm &= ~eventlpm;
3602 device->path_data.ppm &= ~eventlpm;
3603 device->path_data.npm &= ~eventlpm;
Stefan Weinhuber8b811ba2013-05-28 15:26:06 +02003604 if (oldopm && !device->path_data.opm) {
3605 dev_warn(&device->cdev->dev,
3606 "No verified channel paths remain "
3607 "for the device\n");
3608 DBF_DEV_EVENT(DBF_WARNING, device,
3609 "%s", "last verified path gone");
3610 dasd_eer_write(device, NULL, DASD_EER_NOPATH);
3611 dasd_device_set_stop_bits(device,
3612 DASD_STOPPED_DC_WAIT);
3613 }
Stefan Weinhubera4d26c62011-01-05 12:48:03 +01003614 }
3615 if (path_event[chp] & PE_PATH_AVAILABLE) {
3616 device->path_data.opm &= ~eventlpm;
3617 device->path_data.ppm &= ~eventlpm;
3618 device->path_data.npm &= ~eventlpm;
3619 device->path_data.tbvpm |= eventlpm;
3620 dasd_schedule_device_bh(device);
3621 }
Stefan Haberlandf1633032012-01-18 18:03:41 +01003622 if (path_event[chp] & PE_PATHGROUP_ESTABLISHED) {
Stefan Haberland12d7b102012-09-11 15:10:58 +02003623 if (!(device->path_data.opm & eventlpm) &&
3624 !(device->path_data.tbvpm & eventlpm)) {
3625 /*
3626 * we can not establish a pathgroup on an
3627 * unavailable path, so trigger a path
3628 * verification first
3629 */
3630 device->path_data.tbvpm |= eventlpm;
3631 dasd_schedule_device_bh(device);
3632 }
Stefan Haberlandf1633032012-01-18 18:03:41 +01003633 DBF_DEV_EVENT(DBF_WARNING, device, "%s",
3634 "Pathgroup re-established\n");
3635 if (device->discipline->kick_validate)
3636 device->discipline->kick_validate(device);
3637 }
Stefan Weinhubera4d26c62011-01-05 12:48:03 +01003638 }
3639 dasd_put_device(device);
3640}
3641EXPORT_SYMBOL_GPL(dasd_generic_path_event);
3642
3643int dasd_generic_verify_path(struct dasd_device *device, __u8 lpm)
3644{
3645 if (!device->path_data.opm && lpm) {
3646 device->path_data.opm = lpm;
3647 dasd_generic_path_operational(device);
3648 } else
3649 device->path_data.opm |= lpm;
3650 return 0;
3651}
3652EXPORT_SYMBOL_GPL(dasd_generic_verify_path);
3653
3654
Stefan Haberlandd41dd122009-06-16 10:30:25 +02003655int dasd_generic_pm_freeze(struct ccw_device *cdev)
3656{
Stefan Haberlandd41dd122009-06-16 10:30:25 +02003657 struct dasd_device *device = dasd_device_from_cdev(cdev);
Stefan Haberlandc5576872013-04-15 16:41:31 +02003658 struct list_head freeze_queue;
3659 struct dasd_ccw_req *cqr, *n;
3660 struct dasd_ccw_req *refers;
3661 int rc;
Stefan Haberlandd41dd122009-06-16 10:30:25 +02003662
3663 if (IS_ERR(device))
3664 return PTR_ERR(device);
Stefan Haberland6f272b92011-01-05 12:48:05 +01003665
Stefan Haberlandc8d1c0f2011-10-30 15:17:09 +01003666 /* mark device as suspended */
3667 set_bit(DASD_FLAG_SUSPENDED, &device->flags);
3668
Stefan Haberland6f272b92011-01-05 12:48:05 +01003669 if (device->discipline->freeze)
3670 rc = device->discipline->freeze(device);
3671
Stefan Haberlandd41dd122009-06-16 10:30:25 +02003672 /* disallow new I/O */
Stefan Weinhubereb6e1992009-12-07 12:51:51 +01003673 dasd_device_set_stop_bits(device, DASD_STOPPED_PM);
Stefan Haberlandc5576872013-04-15 16:41:31 +02003674
3675 /* clear active requests and requeue them to block layer if possible */
Stefan Haberlandd41dd122009-06-16 10:30:25 +02003676 INIT_LIST_HEAD(&freeze_queue);
3677 spin_lock_irq(get_ccwdev_lock(cdev));
3678 rc = 0;
3679 list_for_each_entry_safe(cqr, n, &device->ccw_queue, devlist) {
3680 /* Check status and move request to flush_queue */
3681 if (cqr->status == DASD_CQR_IN_IO) {
3682 rc = device->discipline->term_IO(cqr);
3683 if (rc) {
3684 /* unable to terminate requeust */
3685 dev_err(&device->cdev->dev,
3686 "Unable to terminate request %p "
3687 "on suspend\n", cqr);
3688 spin_unlock_irq(get_ccwdev_lock(cdev));
3689 dasd_put_device(device);
3690 return rc;
3691 }
3692 }
3693 list_move_tail(&cqr->devlist, &freeze_queue);
3694 }
Stefan Haberlandd41dd122009-06-16 10:30:25 +02003695 spin_unlock_irq(get_ccwdev_lock(cdev));
3696
3697 list_for_each_entry_safe(cqr, n, &freeze_queue, devlist) {
3698 wait_event(dasd_flush_wq,
3699 (cqr->status != DASD_CQR_CLEAR_PENDING));
3700 if (cqr->status == DASD_CQR_CLEARED)
3701 cqr->status = DASD_CQR_QUEUED;
Stefan Haberlandd41dd122009-06-16 10:30:25 +02003702
Stefan Haberlandc5576872013-04-15 16:41:31 +02003703 /* requeue requests to blocklayer will only work for
3704 block device requests */
3705 if (_dasd_requeue_request(cqr))
3706 continue;
3707
3708 /* remove requests from device and block queue */
3709 list_del_init(&cqr->devlist);
3710 while (cqr->refers != NULL) {
3711 refers = cqr->refers;
3712 /* remove the request from the block queue */
3713 list_del(&cqr->blocklist);
3714 /* free the finished erp request */
3715 dasd_free_erp_request(cqr, cqr->memdev);
3716 cqr = refers;
3717 }
3718 if (cqr->block)
3719 list_del_init(&cqr->blocklist);
3720 cqr->block->base->discipline->free_cp(
3721 cqr, (struct request *) cqr->callback_data);
3722 }
3723
3724 /*
3725 * if requests remain then they are internal request
3726 * and go back to the device queue
3727 */
3728 if (!list_empty(&freeze_queue)) {
3729 /* move freeze_queue to start of the ccw_queue */
3730 spin_lock_irq(get_ccwdev_lock(cdev));
3731 list_splice_tail(&freeze_queue, &device->ccw_queue);
3732 spin_unlock_irq(get_ccwdev_lock(cdev));
3733 }
Stefan Haberlandd41dd122009-06-16 10:30:25 +02003734 dasd_put_device(device);
3735 return rc;
3736}
3737EXPORT_SYMBOL_GPL(dasd_generic_pm_freeze);
3738
3739int dasd_generic_restore_device(struct ccw_device *cdev)
3740{
3741 struct dasd_device *device = dasd_device_from_cdev(cdev);
3742 int rc = 0;
3743
3744 if (IS_ERR(device))
3745 return PTR_ERR(device);
3746
Stefan Haberlande6125fb2009-06-22 12:08:17 +02003747 /* allow new IO again */
Stefan Weinhubereb6e1992009-12-07 12:51:51 +01003748 dasd_device_remove_stop_bits(device,
3749 (DASD_STOPPED_PM | DASD_UNRESUMED_PM));
Stefan Haberlande6125fb2009-06-22 12:08:17 +02003750
Stefan Haberlandd41dd122009-06-16 10:30:25 +02003751 dasd_schedule_device_bh(device);
Stefan Haberlandd41dd122009-06-16 10:30:25 +02003752
Stefan Weinhubereb6e1992009-12-07 12:51:51 +01003753 /*
3754 * call discipline restore function
3755 * if device is stopped do nothing e.g. for disconnected devices
3756 */
3757 if (device->discipline->restore && !(device->stopped))
Stefan Haberlandd41dd122009-06-16 10:30:25 +02003758 rc = device->discipline->restore(device);
Stefan Weinhubereb6e1992009-12-07 12:51:51 +01003759 if (rc || device->stopped)
Stefan Haberlande6125fb2009-06-22 12:08:17 +02003760 /*
3761 * if the resume failed for the DASD we put it in
3762 * an UNRESUMED stop state
3763 */
3764 device->stopped |= DASD_UNRESUMED_PM;
Stefan Haberlandd41dd122009-06-16 10:30:25 +02003765
Stefan Haberland6fca97a2009-10-06 10:34:15 +02003766 if (device->block)
3767 dasd_schedule_block_bh(device->block);
3768
Stefan Haberlandc8d1c0f2011-10-30 15:17:09 +01003769 clear_bit(DASD_FLAG_SUSPENDED, &device->flags);
Stefan Haberlandd41dd122009-06-16 10:30:25 +02003770 dasd_put_device(device);
Stefan Haberlande6125fb2009-06-22 12:08:17 +02003771 return 0;
Stefan Haberlandd41dd122009-06-16 10:30:25 +02003772}
3773EXPORT_SYMBOL_GPL(dasd_generic_restore_device);
3774
Heiko Carstens763968e2007-05-10 15:45:46 +02003775static struct dasd_ccw_req *dasd_generic_build_rdc(struct dasd_device *device,
3776 void *rdc_buffer,
3777 int rdc_buffer_size,
Stefan Haberland68b781f2009-09-11 10:28:29 +02003778 int magic)
Cornelia Huck17283b52007-05-04 18:47:51 +02003779{
3780 struct dasd_ccw_req *cqr;
3781 struct ccw1 *ccw;
Stefan Haberlandd9fa9442009-10-14 12:43:48 +02003782 unsigned long *idaw;
Cornelia Huck17283b52007-05-04 18:47:51 +02003783
3784 cqr = dasd_smalloc_request(magic, 1 /* RDC */, rdc_buffer_size, device);
3785
3786 if (IS_ERR(cqr)) {
Stefan Haberlandfc19f382009-03-26 15:23:49 +01003787 /* internal error 13 - Allocating the RDC request failed*/
3788 dev_err(&device->cdev->dev,
3789 "An error occurred in the DASD device driver, "
3790 "reason=%s\n", "13");
Cornelia Huck17283b52007-05-04 18:47:51 +02003791 return cqr;
3792 }
3793
3794 ccw = cqr->cpaddr;
3795 ccw->cmd_code = CCW_CMD_RDC;
Stefan Haberlandd9fa9442009-10-14 12:43:48 +02003796 if (idal_is_needed(rdc_buffer, rdc_buffer_size)) {
3797 idaw = (unsigned long *) (cqr->data);
3798 ccw->cda = (__u32)(addr_t) idaw;
3799 ccw->flags = CCW_FLAG_IDA;
3800 idaw = idal_create_words(idaw, rdc_buffer, rdc_buffer_size);
3801 } else {
3802 ccw->cda = (__u32)(addr_t) rdc_buffer;
3803 ccw->flags = 0;
3804 }
Cornelia Huck17283b52007-05-04 18:47:51 +02003805
Stefan Haberlandd9fa9442009-10-14 12:43:48 +02003806 ccw->count = rdc_buffer_size;
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01003807 cqr->startdev = device;
3808 cqr->memdev = device;
Cornelia Huck17283b52007-05-04 18:47:51 +02003809 cqr->expires = 10*HZ;
Stefan Weinhubereb6e1992009-12-07 12:51:51 +01003810 cqr->retries = 256;
Heiko Carstens1aae0562013-01-30 09:49:40 +01003811 cqr->buildclk = get_tod_clock();
Cornelia Huck17283b52007-05-04 18:47:51 +02003812 cqr->status = DASD_CQR_FILLED;
3813 return cqr;
3814}
3815
3816
Stefan Haberland68b781f2009-09-11 10:28:29 +02003817int dasd_generic_read_dev_chars(struct dasd_device *device, int magic,
Sebastian Ott92636b12009-06-12 10:26:37 +02003818 void *rdc_buffer, int rdc_buffer_size)
Cornelia Huck17283b52007-05-04 18:47:51 +02003819{
3820 int ret;
3821 struct dasd_ccw_req *cqr;
3822
Sebastian Ott92636b12009-06-12 10:26:37 +02003823 cqr = dasd_generic_build_rdc(device, rdc_buffer, rdc_buffer_size,
Cornelia Huck17283b52007-05-04 18:47:51 +02003824 magic);
3825 if (IS_ERR(cqr))
3826 return PTR_ERR(cqr);
3827
3828 ret = dasd_sleep_on(cqr);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01003829 dasd_sfree_request(cqr, cqr->memdev);
Cornelia Huck17283b52007-05-04 18:47:51 +02003830 return ret;
3831}
Cornelia Huckaaff0f62007-05-10 15:45:45 +02003832EXPORT_SYMBOL_GPL(dasd_generic_read_dev_chars);
Stefan Weinhuber20c64462006-03-24 03:15:25 -08003833
Stefan Weinhuberf3eb5382009-03-26 15:23:48 +01003834/*
3835 * In command mode and transport mode we need to look for sense
3836 * data in different places. The sense data itself is allways
3837 * an array of 32 bytes, so we can unify the sense data access
3838 * for both modes.
3839 */
3840char *dasd_get_sense(struct irb *irb)
3841{
3842 struct tsb *tsb = NULL;
3843 char *sense = NULL;
3844
3845 if (scsw_is_tm(&irb->scsw) && (irb->scsw.tm.fcxs == 0x01)) {
3846 if (irb->scsw.tm.tcw)
3847 tsb = tcw_get_tsb((struct tcw *)(unsigned long)
3848 irb->scsw.tm.tcw);
3849 if (tsb && tsb->length == 64 && tsb->flags)
3850 switch (tsb->flags & 0x07) {
3851 case 1: /* tsa_iostat */
3852 sense = tsb->tsa.iostat.sense;
3853 break;
3854 case 2: /* tsa_ddpc */
3855 sense = tsb->tsa.ddpc.sense;
3856 break;
3857 default:
3858 /* currently we don't use interrogate data */
3859 break;
3860 }
3861 } else if (irb->esw.esw0.erw.cons) {
3862 sense = irb->ecw;
3863 }
3864 return sense;
3865}
3866EXPORT_SYMBOL_GPL(dasd_get_sense);
3867
Stefan Haberland4679e892012-06-19 17:30:12 +02003868void dasd_generic_shutdown(struct ccw_device *cdev)
3869{
3870 struct dasd_device *device;
3871
3872 device = dasd_device_from_cdev(cdev);
3873 if (IS_ERR(device))
3874 return;
3875
3876 if (device->block)
3877 dasd_schedule_block_bh(device->block);
3878
3879 dasd_schedule_device_bh(device);
3880
3881 wait_event(shutdown_waitq, _wait_for_empty_queues(device));
3882}
3883EXPORT_SYMBOL_GPL(dasd_generic_shutdown);
3884
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01003885static int __init dasd_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003886{
3887 int rc;
3888
3889 init_waitqueue_head(&dasd_init_waitq);
Horst Hummel8f617012006-08-30 14:33:33 +02003890 init_waitqueue_head(&dasd_flush_wq);
Stefan Haberlandc80ee722008-05-30 10:03:31 +02003891 init_waitqueue_head(&generic_waitq);
Stefan Haberland4679e892012-06-19 17:30:12 +02003892 init_waitqueue_head(&shutdown_waitq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003893
3894 /* register 'common' DASD debug area, used for all DBF_XXX calls */
Peter Tiedemann361f4942008-01-26 14:11:30 +01003895 dasd_debug_area = debug_register("dasd", 1, 1, 8 * sizeof(long));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003896 if (dasd_debug_area == NULL) {
3897 rc = -ENOMEM;
3898 goto failed;
3899 }
3900 debug_register_view(dasd_debug_area, &debug_sprintf_view);
Horst Hummelb0035f12006-09-20 15:59:07 +02003901 debug_set_level(dasd_debug_area, DBF_WARNING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003902
3903 DBF_EVENT(DBF_EMERG, "%s", "debug area created");
3904
3905 dasd_diag_discipline_pointer = NULL;
3906
Stefan Weinhuber4fa52aa2011-07-24 10:48:32 +02003907 dasd_statistics_createroot();
3908
Linus Torvalds1da177e2005-04-16 15:20:36 -07003909 rc = dasd_devmap_init();
3910 if (rc)
3911 goto failed;
3912 rc = dasd_gendisk_init();
3913 if (rc)
3914 goto failed;
3915 rc = dasd_parse();
3916 if (rc)
3917 goto failed;
Stefan Weinhuber20c64462006-03-24 03:15:25 -08003918 rc = dasd_eer_init();
3919 if (rc)
3920 goto failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003921#ifdef CONFIG_PROC_FS
3922 rc = dasd_proc_init();
3923 if (rc)
3924 goto failed;
3925#endif
3926
3927 return 0;
3928failed:
Stefan Haberlandfc19f382009-03-26 15:23:49 +01003929 pr_info("The DASD device driver could not be initialized\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003930 dasd_exit();
3931 return rc;
3932}
3933
3934module_init(dasd_init);
3935module_exit(dasd_exit);