blob: 8f10000851a3acc603e941ff7741d6a16097dffa [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * File...........: linux/drivers/s390/block/dasd.c
3 * Author(s)......: Holger Smolinski <Holger.Smolinski@de.ibm.com>
4 * Horst Hummel <Horst.Hummel@de.ibm.com>
5 * Carsten Otte <Cotte@de.ibm.com>
6 * Martin Schwidefsky <schwidefsky@de.ibm.com>
7 * Bugreports.to..: <Linux390@de.ibm.com>
8 * (C) IBM Corporation, IBM Deutschland Entwicklung GmbH, 1999-2001
9 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 */
11
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/ctype.h>
13#include <linux/init.h>
14
15#include <asm/debug.h>
16#include <asm/ebcdic.h>
17#include <asm/uaccess.h>
18
19/* This is ugly... */
20#define PRINTK_HEADER "dasd_erp:"
21
22#include "dasd_int.h"
23
24struct dasd_ccw_req *
25dasd_alloc_erp_request(char *magic, int cplength, int datasize,
26 struct dasd_device * device)
27{
28 unsigned long flags;
29 struct dasd_ccw_req *cqr;
30 char *data;
31 int size;
32
33 /* Sanity checks */
Eric Sesterhenne048a8a2006-04-01 01:27:08 +020034 BUG_ON( magic == NULL || datasize > PAGE_SIZE ||
35 (cplength*sizeof(struct ccw1)) > PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
37 size = (sizeof(struct dasd_ccw_req) + 7L) & -8L;
38 if (cplength > 0)
39 size += cplength * sizeof(struct ccw1);
40 if (datasize > 0)
41 size += datasize;
42 spin_lock_irqsave(&device->mem_lock, flags);
43 cqr = (struct dasd_ccw_req *)
44 dasd_alloc_chunk(&device->erp_chunks, size);
45 spin_unlock_irqrestore(&device->mem_lock, flags);
46 if (cqr == NULL)
47 return ERR_PTR(-ENOMEM);
48 memset(cqr, 0, sizeof(struct dasd_ccw_req));
Stefan Weinhuber8e09f212008-01-26 14:11:23 +010049 INIT_LIST_HEAD(&cqr->devlist);
50 INIT_LIST_HEAD(&cqr->blocklist);
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 data = (char *) cqr + ((sizeof(struct dasd_ccw_req) + 7L) & -8L);
52 cqr->cpaddr = NULL;
53 if (cplength > 0) {
54 cqr->cpaddr = (struct ccw1 *) data;
55 data += cplength*sizeof(struct ccw1);
56 memset(cqr->cpaddr, 0, cplength*sizeof(struct ccw1));
57 }
58 cqr->data = NULL;
59 if (datasize > 0) {
60 cqr->data = data;
61 memset(cqr->data, 0, datasize);
62 }
63 strncpy((char *) &cqr->magic, magic, 4);
64 ASCEBC((char *) &cqr->magic, 4);
65 set_bit(DASD_CQR_FLAGS_USE_ERP, &cqr->flags);
66 dasd_get_device(device);
67 return cqr;
68}
69
70void
Stefan Weinhuber8e09f212008-01-26 14:11:23 +010071dasd_free_erp_request(struct dasd_ccw_req *cqr, struct dasd_device * device)
Linus Torvalds1da177e2005-04-16 15:20:36 -070072{
73 unsigned long flags;
74
75 spin_lock_irqsave(&device->mem_lock, flags);
76 dasd_free_chunk(&device->erp_chunks, cqr);
77 spin_unlock_irqrestore(&device->mem_lock, flags);
78 atomic_dec(&device->ref_count);
79}
80
81
82/*
83 * dasd_default_erp_action just retries the current cqr
84 */
85struct dasd_ccw_req *
Stefan Weinhuber8e09f212008-01-26 14:11:23 +010086dasd_default_erp_action(struct dasd_ccw_req *cqr)
Linus Torvalds1da177e2005-04-16 15:20:36 -070087{
88 struct dasd_device *device;
89
Stefan Weinhuber8e09f212008-01-26 14:11:23 +010090 device = cqr->startdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
92 /* just retry - there is nothing to save ... I got no sense data.... */
93 if (cqr->retries > 0) {
Horst Hummel138c0142006-06-29 14:58:12 +020094 DEV_MESSAGE (KERN_DEBUG, device,
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 "default ERP called (%i retries left)",
96 cqr->retries);
97 cqr->lpm = LPM_ANYPATH;
Stefan Weinhuber8e09f212008-01-26 14:11:23 +010098 cqr->status = DASD_CQR_FILLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 } else {
100 DEV_MESSAGE (KERN_WARNING, device, "%s",
101 "default ERP called (NO retry left)");
102 cqr->status = DASD_CQR_FAILED;
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100103 cqr->stopclk = get_clock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 }
105 return cqr;
106} /* end dasd_default_erp_action */
107
108/*
109 * DESCRIPTION
110 * Frees all ERPs of the current ERP Chain and set the status
111 * of the original CQR either to DASD_CQR_DONE if ERP was successful
112 * or to DASD_CQR_FAILED if ERP was NOT successful.
113 * NOTE: This function is only called if no discipline postaction
114 * is available
115 *
116 * PARAMETER
117 * erp current erp_head
118 *
119 * RETURN VALUES
120 * cqr pointer to the original CQR
121 */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100122struct dasd_ccw_req *dasd_default_erp_postaction(struct dasd_ccw_req *cqr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 int success;
125
Eric Sesterhenne048a8a2006-04-01 01:27:08 +0200126 BUG_ON(cqr->refers == NULL || cqr->function == NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 success = cqr->status == DASD_CQR_DONE;
129
130 /* free all ERPs - but NOT the original cqr */
131 while (cqr->refers != NULL) {
132 struct dasd_ccw_req *refers;
133
134 refers = cqr->refers;
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100135 /* remove the request from the block queue */
136 list_del(&cqr->blocklist);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 /* free the finished erp request */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100138 dasd_free_erp_request(cqr, cqr->memdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 cqr = refers;
140 }
141
142 /* set corresponding status to original cqr */
143 if (success)
144 cqr->status = DASD_CQR_DONE;
145 else {
146 cqr->status = DASD_CQR_FAILED;
147 cqr->stopclk = get_clock();
148 }
149
150 return cqr;
151
152} /* end default_erp_postaction */
153
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154void
155dasd_log_sense(struct dasd_ccw_req *cqr, struct irb *irb)
156{
157 struct dasd_device *device;
158
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100159 device = cqr->startdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 /* dump sense data */
161 if (device->discipline && device->discipline->dump_sense)
162 device->discipline->dump_sense(device, cqr, irb);
163}
164
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165EXPORT_SYMBOL(dasd_default_erp_action);
166EXPORT_SYMBOL(dasd_default_erp_postaction);
167EXPORT_SYMBOL(dasd_alloc_erp_request);
168EXPORT_SYMBOL(dasd_free_erp_request);
169EXPORT_SYMBOL(dasd_log_sense);