blob: 81f8819eaf19d346c99f3ad8462e79608e173d13 [file] [log] [blame]
Horst Hummel138c0142006-06-29 14:58:12 +02001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * File...........: linux/drivers/s390/block/dasd_eckd.c
3 * Author(s)......: Holger Smolinski <Holger.Smolinski@de.ibm.com>
Horst Hummel138c0142006-06-29 14:58:12 +02004 * Horst Hummel <Horst.Hummel@de.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 * 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,2000
Nigel Hislopab1d8482008-10-10 21:33:25 +02009 * EMC Symmetrix ioctl Copyright EMC Corporation, 2008
10 * Author.........: Nigel Hislop <hislop_nigel@emc.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070012 */
13
Stefan Haberlandfc19f382009-03-26 15:23:49 +010014#define KMSG_COMPONENT "dasd"
15
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/stddef.h>
17#include <linux/kernel.h>
18#include <linux/slab.h>
19#include <linux/hdreg.h> /* HDIO_GETGEO */
20#include <linux/bio.h>
21#include <linux/module.h>
22#include <linux/init.h>
23
24#include <asm/debug.h>
25#include <asm/idals.h>
26#include <asm/ebcdic.h>
27#include <asm/io.h>
28#include <asm/todclk.h>
29#include <asm/uaccess.h>
Horst Hummel40545572006-06-29 15:08:18 +020030#include <asm/cio.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <asm/ccwdev.h>
Stefan Weinhuberf3eb5382009-03-26 15:23:48 +010032#include <asm/itcw.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
34#include "dasd_int.h"
35#include "dasd_eckd.h"
Stefan Weinhuberf3eb5382009-03-26 15:23:48 +010036#include "../cio/chsc.h"
37
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
39#ifdef PRINTK_HEADER
40#undef PRINTK_HEADER
41#endif /* PRINTK_HEADER */
42#define PRINTK_HEADER "dasd(eckd):"
43
44#define ECKD_C0(i) (i->home_bytes)
45#define ECKD_F(i) (i->formula)
46#define ECKD_F1(i) (ECKD_F(i)==0x01?(i->factors.f_0x01.f1):\
47 (i->factors.f_0x02.f1))
48#define ECKD_F2(i) (ECKD_F(i)==0x01?(i->factors.f_0x01.f2):\
49 (i->factors.f_0x02.f2))
50#define ECKD_F3(i) (ECKD_F(i)==0x01?(i->factors.f_0x01.f3):\
51 (i->factors.f_0x02.f3))
52#define ECKD_F4(i) (ECKD_F(i)==0x02?(i->factors.f_0x02.f4):0)
53#define ECKD_F5(i) (ECKD_F(i)==0x02?(i->factors.f_0x02.f5):0)
54#define ECKD_F6(i) (i->factor6)
55#define ECKD_F7(i) (i->factor7)
56#define ECKD_F8(i) (i->factor8)
57
58MODULE_LICENSE("GPL");
59
60static struct dasd_discipline dasd_eckd_discipline;
61
Linus Torvalds1da177e2005-04-16 15:20:36 -070062/* The ccw bus type uses this table to find devices that it sends to
63 * dasd_eckd_probe */
64static struct ccw_device_id dasd_eckd_ids[] = {
Heiko Carstensd2c993d2006-07-12 16:41:55 +020065 { CCW_DEVICE_DEVTYPE (0x3990, 0, 0x3390, 0), .driver_info = 0x1},
66 { CCW_DEVICE_DEVTYPE (0x2105, 0, 0x3390, 0), .driver_info = 0x2},
67 { CCW_DEVICE_DEVTYPE (0x3880, 0, 0x3390, 0), .driver_info = 0x3},
68 { CCW_DEVICE_DEVTYPE (0x3990, 0, 0x3380, 0), .driver_info = 0x4},
69 { CCW_DEVICE_DEVTYPE (0x2105, 0, 0x3380, 0), .driver_info = 0x5},
70 { CCW_DEVICE_DEVTYPE (0x9343, 0, 0x9345, 0), .driver_info = 0x6},
71 { CCW_DEVICE_DEVTYPE (0x2107, 0, 0x3390, 0), .driver_info = 0x7},
72 { CCW_DEVICE_DEVTYPE (0x2107, 0, 0x3380, 0), .driver_info = 0x8},
73 { CCW_DEVICE_DEVTYPE (0x1750, 0, 0x3390, 0), .driver_info = 0x9},
74 { CCW_DEVICE_DEVTYPE (0x1750, 0, 0x3380, 0), .driver_info = 0xa},
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 { /* end of list */ },
76};
77
78MODULE_DEVICE_TABLE(ccw, dasd_eckd_ids);
79
80static struct ccw_driver dasd_eckd_driver; /* see below */
81
82/* initial attempt at a probe function. this can be simplified once
83 * the other detection code is gone */
84static int
85dasd_eckd_probe (struct ccw_device *cdev)
86{
87 int ret;
88
Horst Hummel40545572006-06-29 15:08:18 +020089 /* set ECKD specific ccw-device options */
90 ret = ccw_device_set_options(cdev, CCWDEV_ALLOW_FORCE);
91 if (ret) {
Stefan Haberlandfc19f382009-03-26 15:23:49 +010092 DBF_EVENT(DBF_WARNING,
Horst Hummel40545572006-06-29 15:08:18 +020093 "dasd_eckd_probe: could not set ccw-device options "
Kay Sievers2a0217d2008-10-10 21:33:09 +020094 "for %s\n", dev_name(&cdev->dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 return ret;
Horst Hummel40545572006-06-29 15:08:18 +020096 }
97 ret = dasd_generic_probe(cdev, &dasd_eckd_discipline);
98 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -070099}
100
101static int
102dasd_eckd_set_online(struct ccw_device *cdev)
103{
Horst Hummel40545572006-06-29 15:08:18 +0200104 return dasd_generic_set_online(cdev, &dasd_eckd_discipline);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105}
106
107static struct ccw_driver dasd_eckd_driver = {
108 .name = "dasd-eckd",
109 .owner = THIS_MODULE,
110 .ids = dasd_eckd_ids,
111 .probe = dasd_eckd_probe,
112 .remove = dasd_generic_remove,
113 .set_offline = dasd_generic_set_offline,
114 .set_online = dasd_eckd_set_online,
115 .notify = dasd_generic_notify,
116};
117
118static const int sizes_trk0[] = { 28, 148, 84 };
119#define LABEL_SIZE 140
120
121static inline unsigned int
122round_up_multiple(unsigned int no, unsigned int mult)
123{
124 int rem = no % mult;
125 return (rem ? no - rem + mult : no);
126}
127
128static inline unsigned int
129ceil_quot(unsigned int d1, unsigned int d2)
130{
131 return (d1 + (d2 - 1)) / d2;
132}
133
Heiko Carstens4d284ca2007-02-05 21:18:53 +0100134static unsigned int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135recs_per_track(struct dasd_eckd_characteristics * rdc,
136 unsigned int kl, unsigned int dl)
137{
138 int dn, kn;
139
140 switch (rdc->dev_type) {
141 case 0x3380:
142 if (kl)
143 return 1499 / (15 + 7 + ceil_quot(kl + 12, 32) +
144 ceil_quot(dl + 12, 32));
145 else
146 return 1499 / (15 + ceil_quot(dl + 12, 32));
147 case 0x3390:
148 dn = ceil_quot(dl + 6, 232) + 1;
149 if (kl) {
150 kn = ceil_quot(kl + 6, 232) + 1;
151 return 1729 / (10 + 9 + ceil_quot(kl + 6 * kn, 34) +
152 9 + ceil_quot(dl + 6 * dn, 34));
153 } else
154 return 1729 / (10 + 9 + ceil_quot(dl + 6 * dn, 34));
155 case 0x9345:
156 dn = ceil_quot(dl + 6, 232) + 1;
157 if (kl) {
158 kn = ceil_quot(kl + 6, 232) + 1;
159 return 1420 / (18 + 7 + ceil_quot(kl + 6 * kn, 34) +
160 ceil_quot(dl + 6 * dn, 34));
161 } else
162 return 1420 / (18 + 7 + ceil_quot(dl + 6 * dn, 34));
163 }
164 return 0;
165}
166
Stefan Weinhuberb44b0ab32009-03-26 15:23:47 +0100167static void set_ch_t(struct ch_t *geo, __u32 cyl, __u8 head)
168{
169 geo->cyl = (__u16) cyl;
170 geo->head = cyl >> 16;
171 geo->head <<= 4;
172 geo->head |= head;
173}
174
Heiko Carstens4d284ca2007-02-05 21:18:53 +0100175static int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176check_XRC (struct ccw1 *de_ccw,
177 struct DE_eckd_data *data,
178 struct dasd_device *device)
179{
180 struct dasd_eckd_private *private;
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100181 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182
183 private = (struct dasd_eckd_private *) device->private;
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100184 if (!private->rdc_data.facilities.XRC_supported)
185 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186
187 /* switch on System Time Stamp - needed for XRC Support */
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100188 data->ga_extended |= 0x08; /* switch on 'Time Stamp Valid' */
189 data->ga_extended |= 0x02; /* switch on 'Extended Parameter' */
Horst Hummel138c0142006-06-29 14:58:12 +0200190
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100191 rc = get_sync_clock(&data->ep_sys_time);
192 /* Ignore return code if sync clock is switched off. */
193 if (rc == -ENOSYS || rc == -EACCES)
194 rc = 0;
Horst Hummel138c0142006-06-29 14:58:12 +0200195
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100196 de_ccw->count = sizeof(struct DE_eckd_data);
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100197 de_ccw->flags |= CCW_FLAG_SLI;
198 return rc;
199}
Horst Hummel138c0142006-06-29 14:58:12 +0200200
Heiko Carstens4d284ca2007-02-05 21:18:53 +0100201static int
Stefan Weinhuberb44b0ab32009-03-26 15:23:47 +0100202define_extent(struct ccw1 *ccw, struct DE_eckd_data *data, unsigned int trk,
203 unsigned int totrk, int cmd, struct dasd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204{
205 struct dasd_eckd_private *private;
Stefan Weinhuberb44b0ab32009-03-26 15:23:47 +0100206 u32 begcyl, endcyl;
207 u16 heads, beghead, endhead;
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100208 int rc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209
210 private = (struct dasd_eckd_private *) device->private;
211
212 ccw->cmd_code = DASD_ECKD_CCW_DEFINE_EXTENT;
213 ccw->flags = 0;
214 ccw->count = 16;
215 ccw->cda = (__u32) __pa(data);
216
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100217 memset(data, 0, sizeof(struct DE_eckd_data));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 switch (cmd) {
219 case DASD_ECKD_CCW_READ_HOME_ADDRESS:
220 case DASD_ECKD_CCW_READ_RECORD_ZERO:
221 case DASD_ECKD_CCW_READ:
222 case DASD_ECKD_CCW_READ_MT:
223 case DASD_ECKD_CCW_READ_CKD:
224 case DASD_ECKD_CCW_READ_CKD_MT:
225 case DASD_ECKD_CCW_READ_KD:
226 case DASD_ECKD_CCW_READ_KD_MT:
227 case DASD_ECKD_CCW_READ_COUNT:
228 data->mask.perm = 0x1;
229 data->attributes.operation = private->attrib.operation;
230 break;
231 case DASD_ECKD_CCW_WRITE:
232 case DASD_ECKD_CCW_WRITE_MT:
233 case DASD_ECKD_CCW_WRITE_KD:
234 case DASD_ECKD_CCW_WRITE_KD_MT:
235 data->mask.perm = 0x02;
236 data->attributes.operation = private->attrib.operation;
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100237 rc = check_XRC (ccw, data, device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 break;
239 case DASD_ECKD_CCW_WRITE_CKD:
240 case DASD_ECKD_CCW_WRITE_CKD_MT:
241 data->attributes.operation = DASD_BYPASS_CACHE;
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100242 rc = check_XRC (ccw, data, device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 break;
244 case DASD_ECKD_CCW_ERASE:
245 case DASD_ECKD_CCW_WRITE_HOME_ADDRESS:
246 case DASD_ECKD_CCW_WRITE_RECORD_ZERO:
247 data->mask.perm = 0x3;
248 data->mask.auth = 0x1;
249 data->attributes.operation = DASD_BYPASS_CACHE;
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100250 rc = check_XRC (ccw, data, device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 break;
252 default:
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100253 dev_err(&device->cdev->dev,
254 "0x%x is not a known command\n", cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 break;
256 }
257
258 data->attributes.mode = 0x3; /* ECKD */
259
260 if ((private->rdc_data.cu_type == 0x2105 ||
261 private->rdc_data.cu_type == 0x2107 ||
262 private->rdc_data.cu_type == 0x1750)
263 && !(private->uses_cdl && trk < 2))
264 data->ga_extended |= 0x40; /* Regular Data Format Mode */
265
Stefan Weinhuberb44b0ab32009-03-26 15:23:47 +0100266 heads = private->rdc_data.trk_per_cyl;
267 begcyl = trk / heads;
268 beghead = trk % heads;
269 endcyl = totrk / heads;
270 endhead = totrk % heads;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271
272 /* check for sequential prestage - enhance cylinder range */
273 if (data->attributes.operation == DASD_SEQ_PRESTAGE ||
274 data->attributes.operation == DASD_SEQ_ACCESS) {
Horst Hummel138c0142006-06-29 14:58:12 +0200275
Stefan Weinhuberb44b0ab32009-03-26 15:23:47 +0100276 if (endcyl + private->attrib.nr_cyl < private->real_cyl)
277 endcyl += private->attrib.nr_cyl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 else
Stefan Weinhuberb44b0ab32009-03-26 15:23:47 +0100279 endcyl = (private->real_cyl - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 }
281
Stefan Weinhuberb44b0ab32009-03-26 15:23:47 +0100282 set_ch_t(&data->beg_ext, begcyl, beghead);
283 set_ch_t(&data->end_ext, endcyl, endhead);
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100284 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285}
286
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100287static int check_XRC_on_prefix(struct PFX_eckd_data *pfxdata,
288 struct dasd_device *device)
289{
290 struct dasd_eckd_private *private;
291 int rc;
292
293 private = (struct dasd_eckd_private *) device->private;
294 if (!private->rdc_data.facilities.XRC_supported)
295 return 0;
296
297 /* switch on System Time Stamp - needed for XRC Support */
Stefan Weinhuberf3eb5382009-03-26 15:23:48 +0100298 pfxdata->define_extent.ga_extended |= 0x08; /* 'Time Stamp Valid' */
299 pfxdata->define_extent.ga_extended |= 0x02; /* 'Extended Parameter' */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100300 pfxdata->validity.time_stamp = 1; /* 'Time Stamp Valid' */
301
Stefan Weinhuberf3eb5382009-03-26 15:23:48 +0100302 rc = get_sync_clock(&pfxdata->define_extent.ep_sys_time);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100303 /* Ignore return code if sync clock is switched off. */
304 if (rc == -ENOSYS || rc == -EACCES)
305 rc = 0;
306 return rc;
307}
308
Stefan Weinhuberf3eb5382009-03-26 15:23:48 +0100309static void fill_LRE_data(struct LRE_eckd_data *data, unsigned int trk,
310 unsigned int rec_on_trk, int count, int cmd,
311 struct dasd_device *device, unsigned int reclen,
312 unsigned int tlf)
313{
314 struct dasd_eckd_private *private;
315 int sector;
316 int dn, d;
317
318 private = (struct dasd_eckd_private *) device->private;
319
320 memset(data, 0, sizeof(*data));
321 sector = 0;
322 if (rec_on_trk) {
323 switch (private->rdc_data.dev_type) {
324 case 0x3390:
325 dn = ceil_quot(reclen + 6, 232);
326 d = 9 + ceil_quot(reclen + 6 * (dn + 1), 34);
327 sector = (49 + (rec_on_trk - 1) * (10 + d)) / 8;
328 break;
329 case 0x3380:
330 d = 7 + ceil_quot(reclen + 12, 32);
331 sector = (39 + (rec_on_trk - 1) * (8 + d)) / 7;
332 break;
333 }
334 }
335 data->sector = sector;
336 /* note: meaning of count depends on the operation
337 * for record based I/O it's the number of records, but for
338 * track based I/O it's the number of tracks
339 */
340 data->count = count;
341 switch (cmd) {
342 case DASD_ECKD_CCW_WRITE_HOME_ADDRESS:
343 data->operation.orientation = 0x3;
344 data->operation.operation = 0x03;
345 break;
346 case DASD_ECKD_CCW_READ_HOME_ADDRESS:
347 data->operation.orientation = 0x3;
348 data->operation.operation = 0x16;
349 break;
350 case DASD_ECKD_CCW_WRITE_RECORD_ZERO:
351 data->operation.orientation = 0x1;
352 data->operation.operation = 0x03;
353 data->count++;
354 break;
355 case DASD_ECKD_CCW_READ_RECORD_ZERO:
356 data->operation.orientation = 0x3;
357 data->operation.operation = 0x16;
358 data->count++;
359 break;
360 case DASD_ECKD_CCW_WRITE:
361 case DASD_ECKD_CCW_WRITE_MT:
362 case DASD_ECKD_CCW_WRITE_KD:
363 case DASD_ECKD_CCW_WRITE_KD_MT:
364 data->auxiliary.length_valid = 0x1;
365 data->length = reclen;
366 data->operation.operation = 0x01;
367 break;
368 case DASD_ECKD_CCW_WRITE_CKD:
369 case DASD_ECKD_CCW_WRITE_CKD_MT:
370 data->auxiliary.length_valid = 0x1;
371 data->length = reclen;
372 data->operation.operation = 0x03;
373 break;
374 case DASD_ECKD_CCW_WRITE_TRACK_DATA:
375 data->auxiliary.length_valid = 0x1;
376 data->length = reclen; /* not tlf, as one might think */
377 data->operation.operation = 0x3F;
378 data->extended_operation = 0x23;
379 break;
380 case DASD_ECKD_CCW_READ:
381 case DASD_ECKD_CCW_READ_MT:
382 case DASD_ECKD_CCW_READ_KD:
383 case DASD_ECKD_CCW_READ_KD_MT:
384 data->auxiliary.length_valid = 0x1;
385 data->length = reclen;
386 data->operation.operation = 0x06;
387 break;
388 case DASD_ECKD_CCW_READ_CKD:
389 case DASD_ECKD_CCW_READ_CKD_MT:
390 data->auxiliary.length_valid = 0x1;
391 data->length = reclen;
392 data->operation.operation = 0x16;
393 break;
394 case DASD_ECKD_CCW_READ_COUNT:
395 data->operation.operation = 0x06;
396 break;
397 case DASD_ECKD_CCW_READ_TRACK_DATA:
398 data->auxiliary.length_valid = 0x1;
399 data->length = tlf;
400 data->operation.operation = 0x0C;
401 break;
402 case DASD_ECKD_CCW_ERASE:
403 data->length = reclen;
404 data->auxiliary.length_valid = 0x1;
405 data->operation.operation = 0x0b;
406 break;
407 default:
408 DBF_DEV_EVENT(DBF_ERR, device,
409 "fill LRE unknown opcode 0x%x", cmd);
410 BUG();
411 }
412 set_ch_t(&data->seek_addr,
413 trk / private->rdc_data.trk_per_cyl,
414 trk % private->rdc_data.trk_per_cyl);
415 data->search_arg.cyl = data->seek_addr.cyl;
416 data->search_arg.head = data->seek_addr.head;
417 data->search_arg.record = rec_on_trk;
418}
419
420static int prefix_LRE(struct ccw1 *ccw, struct PFX_eckd_data *pfxdata,
421 unsigned int trk, unsigned int totrk, int cmd,
422 struct dasd_device *basedev, struct dasd_device *startdev,
423 unsigned char format, unsigned int rec_on_trk, int count,
424 unsigned int blksize, unsigned int tlf)
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100425{
426 struct dasd_eckd_private *basepriv, *startpriv;
Stefan Weinhuberf3eb5382009-03-26 15:23:48 +0100427 struct DE_eckd_data *dedata;
428 struct LRE_eckd_data *lredata;
Stefan Weinhuberb44b0ab32009-03-26 15:23:47 +0100429 u32 begcyl, endcyl;
430 u16 heads, beghead, endhead;
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100431 int rc = 0;
432
433 basepriv = (struct dasd_eckd_private *) basedev->private;
434 startpriv = (struct dasd_eckd_private *) startdev->private;
Stefan Weinhuberf3eb5382009-03-26 15:23:48 +0100435 dedata = &pfxdata->define_extent;
436 lredata = &pfxdata->locate_record;
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100437
438 ccw->cmd_code = DASD_ECKD_CCW_PFX;
439 ccw->flags = 0;
440 ccw->count = sizeof(*pfxdata);
441 ccw->cda = (__u32) __pa(pfxdata);
442
443 memset(pfxdata, 0, sizeof(*pfxdata));
444 /* prefix data */
Stefan Weinhuberf3eb5382009-03-26 15:23:48 +0100445 if (format > 1) {
446 DBF_DEV_EVENT(DBF_ERR, basedev,
447 "PFX LRE unknown format 0x%x", format);
448 BUG();
449 return -EINVAL;
450 }
451 pfxdata->format = format;
Stefan Weinhuber4abb08c2008-08-01 16:39:09 +0200452 pfxdata->base_address = basepriv->ned->unit_addr;
453 pfxdata->base_lss = basepriv->ned->ID;
Stefan Weinhuberf3eb5382009-03-26 15:23:48 +0100454 pfxdata->validity.define_extent = 1;
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100455
456 /* private uid is kept up to date, conf_data may be outdated */
457 if (startpriv->uid.type != UA_BASE_DEVICE) {
458 pfxdata->validity.verify_base = 1;
459 if (startpriv->uid.type == UA_HYPER_PAV_ALIAS)
460 pfxdata->validity.hyper_pav = 1;
461 }
462
463 /* define extend data (mostly)*/
464 switch (cmd) {
465 case DASD_ECKD_CCW_READ_HOME_ADDRESS:
466 case DASD_ECKD_CCW_READ_RECORD_ZERO:
467 case DASD_ECKD_CCW_READ:
468 case DASD_ECKD_CCW_READ_MT:
469 case DASD_ECKD_CCW_READ_CKD:
470 case DASD_ECKD_CCW_READ_CKD_MT:
471 case DASD_ECKD_CCW_READ_KD:
472 case DASD_ECKD_CCW_READ_KD_MT:
473 case DASD_ECKD_CCW_READ_COUNT:
Stefan Weinhuberf3eb5382009-03-26 15:23:48 +0100474 dedata->mask.perm = 0x1;
475 dedata->attributes.operation = basepriv->attrib.operation;
476 break;
477 case DASD_ECKD_CCW_READ_TRACK_DATA:
478 dedata->mask.perm = 0x1;
479 dedata->attributes.operation = basepriv->attrib.operation;
480 dedata->blk_size = 0;
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100481 break;
482 case DASD_ECKD_CCW_WRITE:
483 case DASD_ECKD_CCW_WRITE_MT:
484 case DASD_ECKD_CCW_WRITE_KD:
485 case DASD_ECKD_CCW_WRITE_KD_MT:
Stefan Weinhuberf3eb5382009-03-26 15:23:48 +0100486 dedata->mask.perm = 0x02;
487 dedata->attributes.operation = basepriv->attrib.operation;
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100488 rc = check_XRC_on_prefix(pfxdata, basedev);
489 break;
490 case DASD_ECKD_CCW_WRITE_CKD:
491 case DASD_ECKD_CCW_WRITE_CKD_MT:
Stefan Weinhuberf3eb5382009-03-26 15:23:48 +0100492 dedata->attributes.operation = DASD_BYPASS_CACHE;
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100493 rc = check_XRC_on_prefix(pfxdata, basedev);
494 break;
495 case DASD_ECKD_CCW_ERASE:
496 case DASD_ECKD_CCW_WRITE_HOME_ADDRESS:
497 case DASD_ECKD_CCW_WRITE_RECORD_ZERO:
Stefan Weinhuberf3eb5382009-03-26 15:23:48 +0100498 dedata->mask.perm = 0x3;
499 dedata->mask.auth = 0x1;
500 dedata->attributes.operation = DASD_BYPASS_CACHE;
501 rc = check_XRC_on_prefix(pfxdata, basedev);
502 break;
503 case DASD_ECKD_CCW_WRITE_TRACK_DATA:
504 dedata->mask.perm = 0x02;
505 dedata->attributes.operation = basepriv->attrib.operation;
506 dedata->blk_size = blksize;
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100507 rc = check_XRC_on_prefix(pfxdata, basedev);
508 break;
509 default:
Stefan Weinhuberf3eb5382009-03-26 15:23:48 +0100510 DBF_DEV_EVENT(DBF_ERR, basedev,
511 "PFX LRE unknown opcode 0x%x", cmd);
512 BUG();
513 return -EINVAL;
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100514 }
515
Stefan Weinhuberf3eb5382009-03-26 15:23:48 +0100516 dedata->attributes.mode = 0x3; /* ECKD */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100517
518 if ((basepriv->rdc_data.cu_type == 0x2105 ||
519 basepriv->rdc_data.cu_type == 0x2107 ||
520 basepriv->rdc_data.cu_type == 0x1750)
521 && !(basepriv->uses_cdl && trk < 2))
Stefan Weinhuberf3eb5382009-03-26 15:23:48 +0100522 dedata->ga_extended |= 0x40; /* Regular Data Format Mode */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100523
Stefan Weinhuberb44b0ab32009-03-26 15:23:47 +0100524 heads = basepriv->rdc_data.trk_per_cyl;
525 begcyl = trk / heads;
526 beghead = trk % heads;
527 endcyl = totrk / heads;
528 endhead = totrk % heads;
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100529
530 /* check for sequential prestage - enhance cylinder range */
Stefan Weinhuberf3eb5382009-03-26 15:23:48 +0100531 if (dedata->attributes.operation == DASD_SEQ_PRESTAGE ||
532 dedata->attributes.operation == DASD_SEQ_ACCESS) {
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100533
Stefan Weinhuberb44b0ab32009-03-26 15:23:47 +0100534 if (endcyl + basepriv->attrib.nr_cyl < basepriv->real_cyl)
535 endcyl += basepriv->attrib.nr_cyl;
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100536 else
Stefan Weinhuberb44b0ab32009-03-26 15:23:47 +0100537 endcyl = (basepriv->real_cyl - 1);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100538 }
539
Stefan Weinhuberf3eb5382009-03-26 15:23:48 +0100540 set_ch_t(&dedata->beg_ext, begcyl, beghead);
541 set_ch_t(&dedata->end_ext, endcyl, endhead);
542
543 if (format == 1) {
544 fill_LRE_data(lredata, trk, rec_on_trk, count, cmd,
545 basedev, blksize, tlf);
546 }
547
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100548 return rc;
549}
550
Stefan Weinhuberf3eb5382009-03-26 15:23:48 +0100551static int prefix(struct ccw1 *ccw, struct PFX_eckd_data *pfxdata,
552 unsigned int trk, unsigned int totrk, int cmd,
553 struct dasd_device *basedev, struct dasd_device *startdev)
554{
555 return prefix_LRE(ccw, pfxdata, trk, totrk, cmd, basedev, startdev,
556 0, 0, 0, 0, 0);
557}
558
Heiko Carstens4d284ca2007-02-05 21:18:53 +0100559static void
Stefan Weinhuberb44b0ab32009-03-26 15:23:47 +0100560locate_record(struct ccw1 *ccw, struct LO_eckd_data *data, unsigned int trk,
561 unsigned int rec_on_trk, int no_rec, int cmd,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 struct dasd_device * device, int reclen)
563{
564 struct dasd_eckd_private *private;
565 int sector;
566 int dn, d;
Horst Hummel138c0142006-06-29 14:58:12 +0200567
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 private = (struct dasd_eckd_private *) device->private;
569
570 DBF_DEV_EVENT(DBF_INFO, device,
571 "Locate: trk %d, rec %d, no_rec %d, cmd %d, reclen %d",
572 trk, rec_on_trk, no_rec, cmd, reclen);
573
574 ccw->cmd_code = DASD_ECKD_CCW_LOCATE_RECORD;
575 ccw->flags = 0;
576 ccw->count = 16;
577 ccw->cda = (__u32) __pa(data);
578
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100579 memset(data, 0, sizeof(struct LO_eckd_data));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 sector = 0;
581 if (rec_on_trk) {
582 switch (private->rdc_data.dev_type) {
583 case 0x3390:
584 dn = ceil_quot(reclen + 6, 232);
585 d = 9 + ceil_quot(reclen + 6 * (dn + 1), 34);
586 sector = (49 + (rec_on_trk - 1) * (10 + d)) / 8;
587 break;
588 case 0x3380:
589 d = 7 + ceil_quot(reclen + 12, 32);
590 sector = (39 + (rec_on_trk - 1) * (8 + d)) / 7;
591 break;
592 }
593 }
594 data->sector = sector;
595 data->count = no_rec;
596 switch (cmd) {
597 case DASD_ECKD_CCW_WRITE_HOME_ADDRESS:
598 data->operation.orientation = 0x3;
599 data->operation.operation = 0x03;
600 break;
601 case DASD_ECKD_CCW_READ_HOME_ADDRESS:
602 data->operation.orientation = 0x3;
603 data->operation.operation = 0x16;
604 break;
605 case DASD_ECKD_CCW_WRITE_RECORD_ZERO:
606 data->operation.orientation = 0x1;
607 data->operation.operation = 0x03;
608 data->count++;
609 break;
610 case DASD_ECKD_CCW_READ_RECORD_ZERO:
611 data->operation.orientation = 0x3;
612 data->operation.operation = 0x16;
613 data->count++;
614 break;
615 case DASD_ECKD_CCW_WRITE:
616 case DASD_ECKD_CCW_WRITE_MT:
617 case DASD_ECKD_CCW_WRITE_KD:
618 case DASD_ECKD_CCW_WRITE_KD_MT:
619 data->auxiliary.last_bytes_used = 0x1;
620 data->length = reclen;
621 data->operation.operation = 0x01;
622 break;
623 case DASD_ECKD_CCW_WRITE_CKD:
624 case DASD_ECKD_CCW_WRITE_CKD_MT:
625 data->auxiliary.last_bytes_used = 0x1;
626 data->length = reclen;
627 data->operation.operation = 0x03;
628 break;
629 case DASD_ECKD_CCW_READ:
630 case DASD_ECKD_CCW_READ_MT:
631 case DASD_ECKD_CCW_READ_KD:
632 case DASD_ECKD_CCW_READ_KD_MT:
633 data->auxiliary.last_bytes_used = 0x1;
634 data->length = reclen;
635 data->operation.operation = 0x06;
636 break;
637 case DASD_ECKD_CCW_READ_CKD:
638 case DASD_ECKD_CCW_READ_CKD_MT:
639 data->auxiliary.last_bytes_used = 0x1;
640 data->length = reclen;
641 data->operation.operation = 0x16;
642 break;
643 case DASD_ECKD_CCW_READ_COUNT:
644 data->operation.operation = 0x06;
645 break;
646 case DASD_ECKD_CCW_ERASE:
647 data->length = reclen;
648 data->auxiliary.last_bytes_used = 0x1;
649 data->operation.operation = 0x0b;
650 break;
651 default:
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100652 DBF_DEV_EVENT(DBF_ERR, device, "unknown locate record "
653 "opcode 0x%x", cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 }
Stefan Weinhuberb44b0ab32009-03-26 15:23:47 +0100655 set_ch_t(&data->seek_addr,
656 trk / private->rdc_data.trk_per_cyl,
657 trk % private->rdc_data.trk_per_cyl);
658 data->search_arg.cyl = data->seek_addr.cyl;
659 data->search_arg.head = data->seek_addr.head;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 data->search_arg.record = rec_on_trk;
661}
662
663/*
664 * Returns 1 if the block is one of the special blocks that needs
665 * to get read/written with the KD variant of the command.
666 * That is DASD_ECKD_READ_KD_MT instead of DASD_ECKD_READ_MT and
667 * DASD_ECKD_WRITE_KD_MT instead of DASD_ECKD_WRITE_MT.
668 * Luckily the KD variants differ only by one bit (0x08) from the
669 * normal variant. So don't wonder about code like:
670 * if (dasd_eckd_cdl_special(blk_per_trk, recid))
671 * ccw->cmd_code |= 0x8;
672 */
673static inline int
674dasd_eckd_cdl_special(int blk_per_trk, int recid)
675{
676 if (recid < 3)
677 return 1;
678 if (recid < blk_per_trk)
679 return 0;
680 if (recid < 2 * blk_per_trk)
681 return 1;
682 return 0;
683}
684
685/*
686 * Returns the record size for the special blocks of the cdl format.
687 * Only returns something useful if dasd_eckd_cdl_special is true
688 * for the recid.
689 */
690static inline int
691dasd_eckd_cdl_reclen(int recid)
692{
693 if (recid < 3)
694 return sizes_trk0[recid];
695 return LABEL_SIZE;
696}
697
Horst Hummel3d052592006-04-27 18:40:28 -0700698/*
699 * Generate device unique id that specifies the physical device.
700 */
Stefan Weinhuber4abb08c2008-08-01 16:39:09 +0200701static int dasd_eckd_generate_uid(struct dasd_device *device,
702 struct dasd_uid *uid)
Horst Hummel3d052592006-04-27 18:40:28 -0700703{
704 struct dasd_eckd_private *private;
Stefan Weinhuber4abb08c2008-08-01 16:39:09 +0200705 int count;
Horst Hummel3d052592006-04-27 18:40:28 -0700706
707 private = (struct dasd_eckd_private *) device->private;
708 if (!private)
709 return -ENODEV;
Stefan Weinhuber4abb08c2008-08-01 16:39:09 +0200710 if (!private->ned || !private->gneq)
Horst Hummel3d052592006-04-27 18:40:28 -0700711 return -ENODEV;
712
713 memset(uid, 0, sizeof(struct dasd_uid));
Stefan Weinhuber4abb08c2008-08-01 16:39:09 +0200714 memcpy(uid->vendor, private->ned->HDA_manufacturer,
Horst Hummeld0710c72006-08-10 15:45:16 +0200715 sizeof(uid->vendor) - 1);
Horst Hummel3d052592006-04-27 18:40:28 -0700716 EBCASC(uid->vendor, sizeof(uid->vendor) - 1);
Stefan Weinhuber4abb08c2008-08-01 16:39:09 +0200717 memcpy(uid->serial, private->ned->HDA_location,
Horst Hummeld0710c72006-08-10 15:45:16 +0200718 sizeof(uid->serial) - 1);
Horst Hummel3d052592006-04-27 18:40:28 -0700719 EBCASC(uid->serial, sizeof(uid->serial) - 1);
Stefan Weinhuber4abb08c2008-08-01 16:39:09 +0200720 uid->ssid = private->gneq->subsystemID;
721 uid->real_unit_addr = private->ned->unit_addr;;
722 if (private->sneq) {
723 uid->type = private->sneq->sua_flags;
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100724 if (uid->type == UA_BASE_PAV_ALIAS)
Stefan Weinhuber4abb08c2008-08-01 16:39:09 +0200725 uid->base_unit_addr = private->sneq->base_unit_addr;
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100726 } else {
727 uid->type = UA_BASE_DEVICE;
728 }
Stefan Weinhuber4abb08c2008-08-01 16:39:09 +0200729 if (private->vdsneq) {
730 for (count = 0; count < 16; count++) {
731 sprintf(uid->vduit+2*count, "%02x",
732 private->vdsneq->uit[count]);
733 }
734 }
Horst Hummel3d052592006-04-27 18:40:28 -0700735 return 0;
736}
737
Heiko Carstens763968e2007-05-10 15:45:46 +0200738static struct dasd_ccw_req *dasd_eckd_build_rcd_lpm(struct dasd_device *device,
739 void *rcd_buffer,
740 struct ciw *ciw, __u8 lpm)
Cornelia Huck17283b52007-05-04 18:47:51 +0200741{
742 struct dasd_ccw_req *cqr;
743 struct ccw1 *ccw;
744
745 cqr = dasd_smalloc_request("ECKD", 1 /* RCD */, ciw->count, device);
746
747 if (IS_ERR(cqr)) {
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100748 DBF_DEV_EVENT(DBF_WARNING, device, "%s",
749 "Could not allocate RCD request");
Cornelia Huck17283b52007-05-04 18:47:51 +0200750 return cqr;
751 }
752
753 ccw = cqr->cpaddr;
754 ccw->cmd_code = ciw->cmd;
755 ccw->cda = (__u32)(addr_t)rcd_buffer;
756 ccw->count = ciw->count;
757
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100758 cqr->startdev = device;
759 cqr->memdev = device;
760 cqr->block = NULL;
Cornelia Huck17283b52007-05-04 18:47:51 +0200761 cqr->expires = 10*HZ;
762 cqr->lpm = lpm;
763 clear_bit(DASD_CQR_FLAGS_USE_ERP, &cqr->flags);
764 cqr->retries = 2;
765 cqr->buildclk = get_clock();
766 cqr->status = DASD_CQR_FILLED;
767 return cqr;
768}
769
770static int dasd_eckd_read_conf_lpm(struct dasd_device *device,
771 void **rcd_buffer,
772 int *rcd_buffer_size, __u8 lpm)
773{
774 struct ciw *ciw;
775 char *rcd_buf = NULL;
776 int ret;
777 struct dasd_ccw_req *cqr;
778
779 /*
780 * scan for RCD command in extended SenseID data
781 */
782 ciw = ccw_device_get_ciw(device->cdev, CIW_TYPE_RCD);
783 if (!ciw || ciw->cmd == 0) {
784 ret = -EOPNOTSUPP;
785 goto out_error;
786 }
787 rcd_buf = kzalloc(ciw->count, GFP_KERNEL | GFP_DMA);
788 if (!rcd_buf) {
789 ret = -ENOMEM;
790 goto out_error;
791 }
Stefan Weinhuber4abb08c2008-08-01 16:39:09 +0200792
793 /*
794 * buffer has to start with EBCDIC "V1.0" to show
795 * support for virtual device SNEQ
796 */
797 rcd_buf[0] = 0xE5;
798 rcd_buf[1] = 0xF1;
799 rcd_buf[2] = 0x4B;
800 rcd_buf[3] = 0xF0;
Cornelia Huck17283b52007-05-04 18:47:51 +0200801 cqr = dasd_eckd_build_rcd_lpm(device, rcd_buf, ciw, lpm);
802 if (IS_ERR(cqr)) {
803 ret = PTR_ERR(cqr);
804 goto out_error;
805 }
806 ret = dasd_sleep_on(cqr);
807 /*
808 * on success we update the user input parms
809 */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100810 dasd_sfree_request(cqr, cqr->memdev);
Cornelia Huck17283b52007-05-04 18:47:51 +0200811 if (ret)
812 goto out_error;
813
814 *rcd_buffer_size = ciw->count;
815 *rcd_buffer = rcd_buf;
816 return 0;
817out_error:
818 kfree(rcd_buf);
819 *rcd_buffer = NULL;
820 *rcd_buffer_size = 0;
821 return ret;
822}
823
Stefan Weinhuber4abb08c2008-08-01 16:39:09 +0200824static int dasd_eckd_identify_conf_parts(struct dasd_eckd_private *private)
825{
826
827 struct dasd_sneq *sneq;
828 int i, count;
829
830 private->ned = NULL;
831 private->sneq = NULL;
832 private->vdsneq = NULL;
833 private->gneq = NULL;
834 count = private->conf_len / sizeof(struct dasd_sneq);
835 sneq = (struct dasd_sneq *)private->conf_data;
836 for (i = 0; i < count; ++i) {
837 if (sneq->flags.identifier == 1 && sneq->format == 1)
838 private->sneq = sneq;
839 else if (sneq->flags.identifier == 1 && sneq->format == 4)
840 private->vdsneq = (struct vd_sneq *)sneq;
841 else if (sneq->flags.identifier == 2)
842 private->gneq = (struct dasd_gneq *)sneq;
843 else if (sneq->flags.identifier == 3 && sneq->res1 == 1)
844 private->ned = (struct dasd_ned *)sneq;
845 sneq++;
846 }
847 if (!private->ned || !private->gneq) {
848 private->ned = NULL;
849 private->sneq = NULL;
850 private->vdsneq = NULL;
851 private->gneq = NULL;
852 return -EINVAL;
853 }
854 return 0;
855
856};
857
858static unsigned char dasd_eckd_path_access(void *conf_data, int conf_len)
859{
860 struct dasd_gneq *gneq;
861 int i, count, found;
862
863 count = conf_len / sizeof(*gneq);
864 gneq = (struct dasd_gneq *)conf_data;
865 found = 0;
866 for (i = 0; i < count; ++i) {
867 if (gneq->flags.identifier == 2) {
868 found = 1;
869 break;
870 }
871 gneq++;
872 }
873 if (found)
874 return ((char *)gneq)[18] & 0x07;
875 else
876 return 0;
877}
878
879static int dasd_eckd_read_conf(struct dasd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880{
881 void *conf_data;
882 int conf_len, conf_data_saved;
883 int rc;
884 __u8 lpm;
885 struct dasd_eckd_private *private;
886 struct dasd_eckd_path *path_data;
887
888 private = (struct dasd_eckd_private *) device->private;
889 path_data = (struct dasd_eckd_path *) &private->path_data;
890 path_data->opm = ccw_device_get_path_mask(device->cdev);
891 lpm = 0x80;
892 conf_data_saved = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 /* get configuration data per operational path */
894 for (lpm = 0x80; lpm; lpm>>= 1) {
895 if (lpm & path_data->opm){
Cornelia Huck17283b52007-05-04 18:47:51 +0200896 rc = dasd_eckd_read_conf_lpm(device, &conf_data,
897 &conf_len, lpm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 if (rc && rc != -EOPNOTSUPP) { /* -EOPNOTSUPP is ok */
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100899 DBF_EVENT(DBF_WARNING,
900 "Read configuration data returned "
901 "error %d for device: %s", rc,
902 dev_name(&device->cdev->dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 return rc;
904 }
905 if (conf_data == NULL) {
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100906 DBF_EVENT(DBF_WARNING, "No configuration "
907 "data retrieved for device: %s",
908 dev_name(&device->cdev->dev));
Gabriel Craciunescud133a962007-07-31 00:39:19 -0700909 continue; /* no error */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 /* save first valid configuration data */
Stefan Weinhuber4abb08c2008-08-01 16:39:09 +0200912 if (!conf_data_saved) {
913 kfree(private->conf_data);
914 private->conf_data = conf_data;
915 private->conf_len = conf_len;
916 if (dasd_eckd_identify_conf_parts(private)) {
917 private->conf_data = NULL;
918 private->conf_len = 0;
919 kfree(conf_data);
920 continue;
921 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 conf_data_saved++;
923 }
Stefan Weinhuber4abb08c2008-08-01 16:39:09 +0200924 switch (dasd_eckd_path_access(conf_data, conf_len)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 case 0x02:
926 path_data->npm |= lpm;
927 break;
928 case 0x03:
929 path_data->ppm |= lpm;
930 break;
931 }
Stefan Weinhuber4abb08c2008-08-01 16:39:09 +0200932 if (conf_data != private->conf_data)
933 kfree(conf_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 }
935 }
936 return 0;
937}
938
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100939static int dasd_eckd_read_features(struct dasd_device *device)
940{
941 struct dasd_psf_prssd_data *prssdp;
942 struct dasd_rssd_features *features;
943 struct dasd_ccw_req *cqr;
944 struct ccw1 *ccw;
945 int rc;
946 struct dasd_eckd_private *private;
947
948 private = (struct dasd_eckd_private *) device->private;
949 cqr = dasd_smalloc_request(dasd_eckd_discipline.name,
950 1 /* PSF */ + 1 /* RSSD */ ,
951 (sizeof(struct dasd_psf_prssd_data) +
952 sizeof(struct dasd_rssd_features)),
953 device);
954 if (IS_ERR(cqr)) {
Stefan Haberlandfc19f382009-03-26 15:23:49 +0100955 DBF_EVENT(DBF_WARNING, "Could not allocate initialization "
956 "request for device: %s",
957 dev_name(&device->cdev->dev));
Stefan Weinhuber8e09f212008-01-26 14:11:23 +0100958 return PTR_ERR(cqr);
959 }
960 cqr->startdev = device;
961 cqr->memdev = device;
962 cqr->block = NULL;
963 clear_bit(DASD_CQR_FLAGS_USE_ERP, &cqr->flags);
964 cqr->retries = 5;
965 cqr->expires = 10 * HZ;
966
967 /* Prepare for Read Subsystem Data */
968 prssdp = (struct dasd_psf_prssd_data *) cqr->data;
969 memset(prssdp, 0, sizeof(struct dasd_psf_prssd_data));
970 prssdp->order = PSF_ORDER_PRSSD;
971 prssdp->suborder = 0x41; /* Read Feature Codes */
972 /* all other bytes of prssdp must be zero */
973
974 ccw = cqr->cpaddr;
975 ccw->cmd_code = DASD_ECKD_CCW_PSF;
976 ccw->count = sizeof(struct dasd_psf_prssd_data);
977 ccw->flags |= CCW_FLAG_CC;
978 ccw->cda = (__u32)(addr_t) prssdp;
979
980 /* Read Subsystem Data - feature codes */
981 features = (struct dasd_rssd_features *) (prssdp + 1);
982 memset(features, 0, sizeof(struct dasd_rssd_features));
983
984 ccw++;
985 ccw->cmd_code = DASD_ECKD_CCW_RSSD;
986 ccw->count = sizeof(struct dasd_rssd_features);
987 ccw->cda = (__u32)(addr_t) features;
988
989 cqr->buildclk = get_clock();
990 cqr->status = DASD_CQR_FILLED;
991 rc = dasd_sleep_on(cqr);
992 if (rc == 0) {
993 prssdp = (struct dasd_psf_prssd_data *) cqr->data;
994 features = (struct dasd_rssd_features *) (prssdp + 1);
995 memcpy(&private->features, features,
996 sizeof(struct dasd_rssd_features));
997 }
998 dasd_sfree_request(cqr, cqr->memdev);
999 return rc;
1000}
1001
1002
Horst Hummel3d052592006-04-27 18:40:28 -07001003/*
Horst Hummel40545572006-06-29 15:08:18 +02001004 * Build CP for Perform Subsystem Function - SSC.
1005 */
Stefan Weinhuberf3eb5382009-03-26 15:23:48 +01001006static struct dasd_ccw_req *dasd_eckd_build_psf_ssc(struct dasd_device *device,
1007 int enable_pav)
Horst Hummel40545572006-06-29 15:08:18 +02001008{
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001009 struct dasd_ccw_req *cqr;
1010 struct dasd_psf_ssc_data *psf_ssc_data;
1011 struct ccw1 *ccw;
Horst Hummel40545572006-06-29 15:08:18 +02001012
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001013 cqr = dasd_smalloc_request("ECKD", 1 /* PSF */ ,
Horst Hummel40545572006-06-29 15:08:18 +02001014 sizeof(struct dasd_psf_ssc_data),
1015 device);
1016
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001017 if (IS_ERR(cqr)) {
Stefan Haberlandfc19f382009-03-26 15:23:49 +01001018 DBF_DEV_EVENT(DBF_WARNING, device, "%s",
Horst Hummel40545572006-06-29 15:08:18 +02001019 "Could not allocate PSF-SSC request");
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001020 return cqr;
1021 }
1022 psf_ssc_data = (struct dasd_psf_ssc_data *)cqr->data;
1023 psf_ssc_data->order = PSF_ORDER_SSC;
Stefan Weinhuberf3eb5382009-03-26 15:23:48 +01001024 psf_ssc_data->suborder = 0x40;
1025 if (enable_pav) {
1026 psf_ssc_data->suborder |= 0x88;
1027 psf_ssc_data->reserved[0] = 0x88;
1028 }
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001029 ccw = cqr->cpaddr;
1030 ccw->cmd_code = DASD_ECKD_CCW_PSF;
1031 ccw->cda = (__u32)(addr_t)psf_ssc_data;
1032 ccw->count = 66;
Horst Hummel40545572006-06-29 15:08:18 +02001033
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001034 cqr->startdev = device;
1035 cqr->memdev = device;
1036 cqr->block = NULL;
1037 cqr->expires = 10*HZ;
1038 cqr->buildclk = get_clock();
1039 cqr->status = DASD_CQR_FILLED;
1040 return cqr;
Horst Hummel40545572006-06-29 15:08:18 +02001041}
1042
1043/*
1044 * Perform Subsystem Function.
1045 * It is necessary to trigger CIO for channel revalidation since this
1046 * call might change behaviour of DASD devices.
1047 */
1048static int
Stefan Weinhuberf3eb5382009-03-26 15:23:48 +01001049dasd_eckd_psf_ssc(struct dasd_device *device, int enable_pav)
Horst Hummel40545572006-06-29 15:08:18 +02001050{
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001051 struct dasd_ccw_req *cqr;
1052 int rc;
Horst Hummel40545572006-06-29 15:08:18 +02001053
Stefan Weinhuberf3eb5382009-03-26 15:23:48 +01001054 cqr = dasd_eckd_build_psf_ssc(device, enable_pav);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001055 if (IS_ERR(cqr))
1056 return PTR_ERR(cqr);
Horst Hummel40545572006-06-29 15:08:18 +02001057
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001058 rc = dasd_sleep_on(cqr);
1059 if (!rc)
1060 /* trigger CIO to reprobe devices */
1061 css_schedule_reprobe();
1062 dasd_sfree_request(cqr, cqr->memdev);
1063 return rc;
Horst Hummel40545572006-06-29 15:08:18 +02001064}
1065
1066/*
1067 * Valide storage server of current device.
1068 */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001069static int dasd_eckd_validate_server(struct dasd_device *device)
Horst Hummel40545572006-06-29 15:08:18 +02001070{
1071 int rc;
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001072 struct dasd_eckd_private *private;
Stefan Weinhuberf3eb5382009-03-26 15:23:48 +01001073 int enable_pav;
Horst Hummel40545572006-06-29 15:08:18 +02001074
Horst Hummel40545572006-06-29 15:08:18 +02001075 if (dasd_nopav || MACHINE_IS_VM)
Stefan Weinhuberf3eb5382009-03-26 15:23:48 +01001076 enable_pav = 0;
1077 else
1078 enable_pav = 1;
1079 rc = dasd_eckd_psf_ssc(device, enable_pav);
Horst Hummel8e79a442006-08-24 13:22:36 +02001080 /* may be requested feature is not available on server,
1081 * therefore just report error and go ahead */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001082 private = (struct dasd_eckd_private *) device->private;
Stefan Haberlandfc19f382009-03-26 15:23:49 +01001083 DBF_EVENT(DBF_WARNING, "PSF-SSC on storage subsystem %s.%s.%04x "
1084 "returned rc=%d for device: %s",
1085 private->uid.vendor, private->uid.serial,
1086 private->uid.ssid, rc, dev_name(&device->cdev->dev));
Horst Hummel40545572006-06-29 15:08:18 +02001087 /* RE-Read Configuration Data */
1088 return dasd_eckd_read_conf(device);
1089}
1090
1091/*
Horst Hummel3d052592006-04-27 18:40:28 -07001092 * Check device characteristics.
1093 * If the device is accessible using ECKD discipline, the device is enabled.
1094 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095static int
1096dasd_eckd_check_characteristics(struct dasd_device *device)
1097{
1098 struct dasd_eckd_private *private;
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001099 struct dasd_block *block;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 void *rdc_data;
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001101 int is_known, rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102
1103 private = (struct dasd_eckd_private *) device->private;
1104 if (private == NULL) {
Horst Hummel138c0142006-06-29 14:58:12 +02001105 private = kzalloc(sizeof(struct dasd_eckd_private),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106 GFP_KERNEL | GFP_DMA);
1107 if (private == NULL) {
Stefan Haberlandfc19f382009-03-26 15:23:49 +01001108 dev_warn(&device->cdev->dev,
1109 "Allocating memory for private DASD data "
1110 "failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 return -ENOMEM;
1112 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 device->private = (void *) private;
1114 }
1115 /* Invalidate status of initial analysis. */
1116 private->init_cqr_status = -1;
1117 /* Set default cache operations. */
1118 private->attrib.operation = DASD_NORMAL_CACHE;
1119 private->attrib.nr_cyl = 0;
1120
Horst Hummel40545572006-06-29 15:08:18 +02001121 /* Read Configuration Data */
1122 rc = dasd_eckd_read_conf(device);
1123 if (rc)
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001124 goto out_err1;
Horst Hummel40545572006-06-29 15:08:18 +02001125
1126 /* Generate device unique id and register in devmap */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001127 rc = dasd_eckd_generate_uid(device, &private->uid);
Horst Hummel40545572006-06-29 15:08:18 +02001128 if (rc)
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001129 goto out_err1;
1130 dasd_set_uid(device->cdev, &private->uid);
1131
1132 if (private->uid.type == UA_BASE_DEVICE) {
1133 block = dasd_alloc_block();
1134 if (IS_ERR(block)) {
Stefan Haberlandfc19f382009-03-26 15:23:49 +01001135 DBF_EVENT(DBF_WARNING, "could not allocate dasd "
1136 "block structure for device: %s",
1137 dev_name(&device->cdev->dev));
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001138 rc = PTR_ERR(block);
1139 goto out_err1;
1140 }
1141 device->block = block;
1142 block->base = device;
1143 }
1144
1145 /* register lcu with alias handling, enable PAV if this is a new lcu */
1146 is_known = dasd_alias_make_device_known_to_lcu(device);
1147 if (is_known < 0) {
1148 rc = is_known;
1149 goto out_err2;
1150 }
1151 if (!is_known) {
1152 /* new lcu found */
1153 rc = dasd_eckd_validate_server(device); /* will switch pav on */
1154 if (rc)
1155 goto out_err3;
1156 }
1157
1158 /* Read Feature Codes */
1159 rc = dasd_eckd_read_features(device);
Horst Hummel40545572006-06-29 15:08:18 +02001160 if (rc)
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001161 goto out_err3;
Horst Hummel40545572006-06-29 15:08:18 +02001162
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163 /* Read Device Characteristics */
1164 rdc_data = (void *) &(private->rdc_data);
Horst Hummel3d052592006-04-27 18:40:28 -07001165 memset(rdc_data, 0, sizeof(rdc_data));
Cornelia Huck17283b52007-05-04 18:47:51 +02001166 rc = dasd_generic_read_dev_chars(device, "ECKD", &rdc_data, 64);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001167 if (rc) {
Stefan Haberlandfc19f382009-03-26 15:23:49 +01001168 DBF_EVENT(DBF_WARNING,
1169 "Read device characteristics failed, rc=%d for "
1170 "device: %s", rc, dev_name(&device->cdev->dev));
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001171 goto out_err3;
1172 }
Stefan Weinhuberb44b0ab32009-03-26 15:23:47 +01001173 /* find the vaild cylinder size */
1174 if (private->rdc_data.no_cyl == LV_COMPAT_CYL &&
1175 private->rdc_data.long_no_cyl)
1176 private->real_cyl = private->rdc_data.long_no_cyl;
1177 else
1178 private->real_cyl = private->rdc_data.no_cyl;
1179
Stefan Haberlandfc19f382009-03-26 15:23:49 +01001180 dev_info(&device->cdev->dev, "New DASD %04X/%02X (CU %04X/%02X) "
1181 "with %d cylinders, %d heads, %d sectors\n",
1182 private->rdc_data.dev_type,
1183 private->rdc_data.dev_model,
1184 private->rdc_data.cu_type,
1185 private->rdc_data.cu_model.model,
Stefan Weinhuberb44b0ab32009-03-26 15:23:47 +01001186 private->real_cyl,
Stefan Haberlandfc19f382009-03-26 15:23:49 +01001187 private->rdc_data.trk_per_cyl,
1188 private->rdc_data.sec_per_trk);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001189 return 0;
1190
1191out_err3:
1192 dasd_alias_disconnect_device_from_lcu(device);
1193out_err2:
1194 dasd_free_block(device->block);
1195 device->block = NULL;
1196out_err1:
Stefan Weinhuber4abb08c2008-08-01 16:39:09 +02001197 kfree(private->conf_data);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001198 kfree(device->private);
1199 device->private = NULL;
Horst Hummel3d052592006-04-27 18:40:28 -07001200 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201}
1202
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001203static void dasd_eckd_uncheck_device(struct dasd_device *device)
1204{
Stefan Weinhuber4abb08c2008-08-01 16:39:09 +02001205 struct dasd_eckd_private *private;
1206
1207 private = (struct dasd_eckd_private *) device->private;
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001208 dasd_alias_disconnect_device_from_lcu(device);
Stefan Weinhuber4abb08c2008-08-01 16:39:09 +02001209 private->ned = NULL;
1210 private->sneq = NULL;
1211 private->vdsneq = NULL;
1212 private->gneq = NULL;
1213 private->conf_len = 0;
1214 kfree(private->conf_data);
1215 private->conf_data = NULL;
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001216}
1217
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218static struct dasd_ccw_req *
1219dasd_eckd_analysis_ccw(struct dasd_device *device)
1220{
1221 struct dasd_eckd_private *private;
1222 struct eckd_count *count_data;
1223 struct LO_eckd_data *LO_data;
1224 struct dasd_ccw_req *cqr;
1225 struct ccw1 *ccw;
1226 int cplength, datasize;
1227 int i;
1228
1229 private = (struct dasd_eckd_private *) device->private;
1230
1231 cplength = 8;
1232 datasize = sizeof(struct DE_eckd_data) + 2*sizeof(struct LO_eckd_data);
1233 cqr = dasd_smalloc_request(dasd_eckd_discipline.name,
1234 cplength, datasize, device);
1235 if (IS_ERR(cqr))
1236 return cqr;
1237 ccw = cqr->cpaddr;
1238 /* Define extent for the first 3 tracks. */
1239 define_extent(ccw++, cqr->data, 0, 2,
1240 DASD_ECKD_CCW_READ_COUNT, device);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001241 LO_data = cqr->data + sizeof(struct DE_eckd_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242 /* Locate record for the first 4 records on track 0. */
1243 ccw[-1].flags |= CCW_FLAG_CC;
1244 locate_record(ccw++, LO_data++, 0, 0, 4,
1245 DASD_ECKD_CCW_READ_COUNT, device, 0);
1246
1247 count_data = private->count_area;
1248 for (i = 0; i < 4; i++) {
1249 ccw[-1].flags |= CCW_FLAG_CC;
1250 ccw->cmd_code = DASD_ECKD_CCW_READ_COUNT;
1251 ccw->flags = 0;
1252 ccw->count = 8;
1253 ccw->cda = (__u32)(addr_t) count_data;
1254 ccw++;
1255 count_data++;
1256 }
1257
1258 /* Locate record for the first record on track 2. */
1259 ccw[-1].flags |= CCW_FLAG_CC;
1260 locate_record(ccw++, LO_data++, 2, 0, 1,
1261 DASD_ECKD_CCW_READ_COUNT, device, 0);
1262 /* Read count ccw. */
1263 ccw[-1].flags |= CCW_FLAG_CC;
1264 ccw->cmd_code = DASD_ECKD_CCW_READ_COUNT;
1265 ccw->flags = 0;
1266 ccw->count = 8;
1267 ccw->cda = (__u32)(addr_t) count_data;
1268
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001269 cqr->block = NULL;
1270 cqr->startdev = device;
1271 cqr->memdev = device;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 cqr->retries = 0;
1273 cqr->buildclk = get_clock();
1274 cqr->status = DASD_CQR_FILLED;
1275 return cqr;
1276}
1277
1278/*
1279 * This is the callback function for the init_analysis cqr. It saves
1280 * the status of the initial analysis ccw before it frees it and kicks
1281 * the device to continue the startup sequence. This will call
1282 * dasd_eckd_do_analysis again (if the devices has not been marked
1283 * for deletion in the meantime).
1284 */
1285static void
1286dasd_eckd_analysis_callback(struct dasd_ccw_req *init_cqr, void *data)
1287{
1288 struct dasd_eckd_private *private;
1289 struct dasd_device *device;
1290
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001291 device = init_cqr->startdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 private = (struct dasd_eckd_private *) device->private;
1293 private->init_cqr_status = init_cqr->status;
1294 dasd_sfree_request(init_cqr, device);
1295 dasd_kick_device(device);
1296}
1297
1298static int
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001299dasd_eckd_start_analysis(struct dasd_block *block)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300{
1301 struct dasd_eckd_private *private;
1302 struct dasd_ccw_req *init_cqr;
1303
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001304 private = (struct dasd_eckd_private *) block->base->private;
1305 init_cqr = dasd_eckd_analysis_ccw(block->base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306 if (IS_ERR(init_cqr))
1307 return PTR_ERR(init_cqr);
1308 init_cqr->callback = dasd_eckd_analysis_callback;
1309 init_cqr->callback_data = NULL;
1310 init_cqr->expires = 5*HZ;
1311 dasd_add_request_head(init_cqr);
1312 return -EAGAIN;
1313}
1314
1315static int
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001316dasd_eckd_end_analysis(struct dasd_block *block)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317{
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001318 struct dasd_device *device;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319 struct dasd_eckd_private *private;
1320 struct eckd_count *count_area;
1321 unsigned int sb, blk_per_trk;
1322 int status, i;
1323
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001324 device = block->base;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325 private = (struct dasd_eckd_private *) device->private;
1326 status = private->init_cqr_status;
1327 private->init_cqr_status = -1;
1328 if (status != DASD_CQR_DONE) {
Stefan Haberlandfc19f382009-03-26 15:23:49 +01001329 dev_warn(&device->cdev->dev,
1330 "The DASD is not formatted\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331 return -EMEDIUMTYPE;
1332 }
1333
1334 private->uses_cdl = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335 /* Check Track 0 for Compatible Disk Layout */
1336 count_area = NULL;
1337 for (i = 0; i < 3; i++) {
1338 if (private->count_area[i].kl != 4 ||
1339 private->count_area[i].dl != dasd_eckd_cdl_reclen(i) - 4) {
1340 private->uses_cdl = 0;
1341 break;
1342 }
1343 }
1344 if (i == 3)
1345 count_area = &private->count_area[4];
1346
1347 if (private->uses_cdl == 0) {
1348 for (i = 0; i < 5; i++) {
1349 if ((private->count_area[i].kl != 0) ||
1350 (private->count_area[i].dl !=
1351 private->count_area[0].dl))
1352 break;
1353 }
1354 if (i == 5)
1355 count_area = &private->count_area[0];
1356 } else {
1357 if (private->count_area[3].record == 1)
Stefan Haberlandfc19f382009-03-26 15:23:49 +01001358 dev_warn(&device->cdev->dev,
1359 "Track 0 has no records following the VTOC\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360 }
1361 if (count_area != NULL && count_area->kl == 0) {
1362 /* we found notthing violating our disk layout */
1363 if (dasd_check_blocksize(count_area->dl) == 0)
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001364 block->bp_block = count_area->dl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365 }
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001366 if (block->bp_block == 0) {
Stefan Haberlandfc19f382009-03-26 15:23:49 +01001367 dev_warn(&device->cdev->dev,
1368 "The disk layout of the DASD is not supported\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369 return -EMEDIUMTYPE;
1370 }
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001371 block->s2b_shift = 0; /* bits to shift 512 to get a block */
1372 for (sb = 512; sb < block->bp_block; sb = sb << 1)
1373 block->s2b_shift++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001375 blk_per_trk = recs_per_track(&private->rdc_data, 0, block->bp_block);
Stefan Weinhuberb44b0ab32009-03-26 15:23:47 +01001376 block->blocks = (private->real_cyl *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 private->rdc_data.trk_per_cyl *
1378 blk_per_trk);
1379
Stefan Haberlandfc19f382009-03-26 15:23:49 +01001380 dev_info(&device->cdev->dev,
1381 "DASD with %d KB/block, %d KB total size, %d KB/track, "
1382 "%s\n", (block->bp_block >> 10),
1383 ((private->real_cyl *
1384 private->rdc_data.trk_per_cyl *
1385 blk_per_trk * (block->bp_block >> 9)) >> 1),
1386 ((blk_per_trk * block->bp_block) >> 10),
1387 private->uses_cdl ?
1388 "compatible disk layout" : "linux disk layout");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389
1390 return 0;
1391}
1392
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001393static int dasd_eckd_do_analysis(struct dasd_block *block)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394{
1395 struct dasd_eckd_private *private;
1396
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001397 private = (struct dasd_eckd_private *) block->base->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398 if (private->init_cqr_status < 0)
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001399 return dasd_eckd_start_analysis(block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400 else
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001401 return dasd_eckd_end_analysis(block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402}
1403
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001404static int dasd_eckd_ready_to_online(struct dasd_device *device)
1405{
1406 return dasd_alias_add_device(device);
1407};
1408
1409static int dasd_eckd_online_to_ready(struct dasd_device *device)
1410{
1411 return dasd_alias_remove_device(device);
1412};
1413
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414static int
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001415dasd_eckd_fill_geometry(struct dasd_block *block, struct hd_geometry *geo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416{
1417 struct dasd_eckd_private *private;
1418
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001419 private = (struct dasd_eckd_private *) block->base->private;
1420 if (dasd_check_blocksize(block->bp_block) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421 geo->sectors = recs_per_track(&private->rdc_data,
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001422 0, block->bp_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423 }
1424 geo->cylinders = private->rdc_data.no_cyl;
1425 geo->heads = private->rdc_data.trk_per_cyl;
1426 return 0;
1427}
1428
1429static struct dasd_ccw_req *
1430dasd_eckd_format_device(struct dasd_device * device,
1431 struct format_data_t * fdata)
1432{
1433 struct dasd_eckd_private *private;
1434 struct dasd_ccw_req *fcp;
1435 struct eckd_count *ect;
1436 struct ccw1 *ccw;
1437 void *data;
Stefan Weinhuberb44b0ab32009-03-26 15:23:47 +01001438 int rpt;
1439 struct ch_t address;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440 int cplength, datasize;
1441 int i;
Jean-Baptiste Joretf9a28f72009-03-26 15:23:46 +01001442 int intensity = 0;
1443 int r0_perm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444
1445 private = (struct dasd_eckd_private *) device->private;
1446 rpt = recs_per_track(&private->rdc_data, 0, fdata->blksize);
Stefan Weinhuberb44b0ab32009-03-26 15:23:47 +01001447 set_ch_t(&address,
1448 fdata->start_unit / private->rdc_data.trk_per_cyl,
1449 fdata->start_unit % private->rdc_data.trk_per_cyl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450
1451 /* Sanity checks. */
1452 if (fdata->start_unit >=
Stefan Weinhuberb44b0ab32009-03-26 15:23:47 +01001453 (private->real_cyl * private->rdc_data.trk_per_cyl)) {
Stefan Haberlandfc19f382009-03-26 15:23:49 +01001454 dev_warn(&device->cdev->dev, "Start track number %d used in "
1455 "formatting is too big\n", fdata->start_unit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456 return ERR_PTR(-EINVAL);
1457 }
1458 if (fdata->start_unit > fdata->stop_unit) {
Stefan Haberlandfc19f382009-03-26 15:23:49 +01001459 dev_warn(&device->cdev->dev, "Start track %d used in "
1460 "formatting exceeds end track\n", fdata->start_unit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461 return ERR_PTR(-EINVAL);
1462 }
1463 if (dasd_check_blocksize(fdata->blksize) != 0) {
Stefan Haberlandfc19f382009-03-26 15:23:49 +01001464 dev_warn(&device->cdev->dev,
1465 "The DASD cannot be formatted with block size %d\n",
1466 fdata->blksize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467 return ERR_PTR(-EINVAL);
1468 }
1469
1470 /*
1471 * fdata->intensity is a bit string that tells us what to do:
1472 * Bit 0: write record zero
1473 * Bit 1: write home address, currently not supported
1474 * Bit 2: invalidate tracks
1475 * Bit 3: use OS/390 compatible disk layout (cdl)
Jean-Baptiste Joretf9a28f72009-03-26 15:23:46 +01001476 * Bit 4: do not allow storage subsystem to modify record zero
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477 * Only some bit combinations do make sense.
1478 */
Jean-Baptiste Joretf9a28f72009-03-26 15:23:46 +01001479 if (fdata->intensity & 0x10) {
1480 r0_perm = 0;
1481 intensity = fdata->intensity & ~0x10;
1482 } else {
1483 r0_perm = 1;
1484 intensity = fdata->intensity;
1485 }
1486 switch (intensity) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487 case 0x00: /* Normal format */
1488 case 0x08: /* Normal format, use cdl. */
1489 cplength = 2 + rpt;
1490 datasize = sizeof(struct DE_eckd_data) +
1491 sizeof(struct LO_eckd_data) +
1492 rpt * sizeof(struct eckd_count);
1493 break;
1494 case 0x01: /* Write record zero and format track. */
1495 case 0x09: /* Write record zero and format track, use cdl. */
1496 cplength = 3 + rpt;
1497 datasize = sizeof(struct DE_eckd_data) +
1498 sizeof(struct LO_eckd_data) +
1499 sizeof(struct eckd_count) +
1500 rpt * sizeof(struct eckd_count);
1501 break;
1502 case 0x04: /* Invalidate track. */
1503 case 0x0c: /* Invalidate track, use cdl. */
1504 cplength = 3;
1505 datasize = sizeof(struct DE_eckd_data) +
1506 sizeof(struct LO_eckd_data) +
1507 sizeof(struct eckd_count);
1508 break;
1509 default:
Stefan Haberlandfc19f382009-03-26 15:23:49 +01001510 dev_warn(&device->cdev->dev, "An I/O control call used "
1511 "incorrect flags 0x%x\n", fdata->intensity);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512 return ERR_PTR(-EINVAL);
1513 }
1514 /* Allocate the format ccw request. */
1515 fcp = dasd_smalloc_request(dasd_eckd_discipline.name,
1516 cplength, datasize, device);
1517 if (IS_ERR(fcp))
1518 return fcp;
1519
1520 data = fcp->data;
1521 ccw = fcp->cpaddr;
1522
Jean-Baptiste Joretf9a28f72009-03-26 15:23:46 +01001523 switch (intensity & ~0x08) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524 case 0x00: /* Normal format. */
1525 define_extent(ccw++, (struct DE_eckd_data *) data,
1526 fdata->start_unit, fdata->start_unit,
1527 DASD_ECKD_CCW_WRITE_CKD, device);
Jean-Baptiste Joretf9a28f72009-03-26 15:23:46 +01001528 /* grant subsystem permission to format R0 */
1529 if (r0_perm)
1530 ((struct DE_eckd_data *)data)->ga_extended |= 0x04;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531 data += sizeof(struct DE_eckd_data);
1532 ccw[-1].flags |= CCW_FLAG_CC;
1533 locate_record(ccw++, (struct LO_eckd_data *) data,
1534 fdata->start_unit, 0, rpt,
1535 DASD_ECKD_CCW_WRITE_CKD, device,
1536 fdata->blksize);
1537 data += sizeof(struct LO_eckd_data);
1538 break;
1539 case 0x01: /* Write record zero + format track. */
1540 define_extent(ccw++, (struct DE_eckd_data *) data,
1541 fdata->start_unit, fdata->start_unit,
1542 DASD_ECKD_CCW_WRITE_RECORD_ZERO,
1543 device);
1544 data += sizeof(struct DE_eckd_data);
1545 ccw[-1].flags |= CCW_FLAG_CC;
1546 locate_record(ccw++, (struct LO_eckd_data *) data,
1547 fdata->start_unit, 0, rpt + 1,
1548 DASD_ECKD_CCW_WRITE_RECORD_ZERO, device,
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001549 device->block->bp_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550 data += sizeof(struct LO_eckd_data);
1551 break;
1552 case 0x04: /* Invalidate track. */
1553 define_extent(ccw++, (struct DE_eckd_data *) data,
1554 fdata->start_unit, fdata->start_unit,
1555 DASD_ECKD_CCW_WRITE_CKD, device);
1556 data += sizeof(struct DE_eckd_data);
1557 ccw[-1].flags |= CCW_FLAG_CC;
1558 locate_record(ccw++, (struct LO_eckd_data *) data,
1559 fdata->start_unit, 0, 1,
1560 DASD_ECKD_CCW_WRITE_CKD, device, 8);
1561 data += sizeof(struct LO_eckd_data);
1562 break;
1563 }
Jean-Baptiste Joretf9a28f72009-03-26 15:23:46 +01001564 if (intensity & 0x01) { /* write record zero */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565 ect = (struct eckd_count *) data;
1566 data += sizeof(struct eckd_count);
Stefan Weinhuberb44b0ab32009-03-26 15:23:47 +01001567 ect->cyl = address.cyl;
1568 ect->head = address.head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569 ect->record = 0;
1570 ect->kl = 0;
1571 ect->dl = 8;
1572 ccw[-1].flags |= CCW_FLAG_CC;
1573 ccw->cmd_code = DASD_ECKD_CCW_WRITE_RECORD_ZERO;
1574 ccw->flags = CCW_FLAG_SLI;
1575 ccw->count = 8;
1576 ccw->cda = (__u32)(addr_t) ect;
1577 ccw++;
1578 }
Jean-Baptiste Joretf9a28f72009-03-26 15:23:46 +01001579 if ((intensity & ~0x08) & 0x04) { /* erase track */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580 ect = (struct eckd_count *) data;
1581 data += sizeof(struct eckd_count);
Stefan Weinhuberb44b0ab32009-03-26 15:23:47 +01001582 ect->cyl = address.cyl;
1583 ect->head = address.head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584 ect->record = 1;
1585 ect->kl = 0;
1586 ect->dl = 0;
1587 ccw[-1].flags |= CCW_FLAG_CC;
1588 ccw->cmd_code = DASD_ECKD_CCW_WRITE_CKD;
1589 ccw->flags = CCW_FLAG_SLI;
1590 ccw->count = 8;
1591 ccw->cda = (__u32)(addr_t) ect;
1592 } else { /* write remaining records */
1593 for (i = 0; i < rpt; i++) {
1594 ect = (struct eckd_count *) data;
1595 data += sizeof(struct eckd_count);
Stefan Weinhuberb44b0ab32009-03-26 15:23:47 +01001596 ect->cyl = address.cyl;
1597 ect->head = address.head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 ect->record = i + 1;
1599 ect->kl = 0;
1600 ect->dl = fdata->blksize;
1601 /* Check for special tracks 0-1 when formatting CDL */
Jean-Baptiste Joretf9a28f72009-03-26 15:23:46 +01001602 if ((intensity & 0x08) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603 fdata->start_unit == 0) {
1604 if (i < 3) {
1605 ect->kl = 4;
1606 ect->dl = sizes_trk0[i] - 4;
Horst Hummel138c0142006-06-29 14:58:12 +02001607 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608 }
Jean-Baptiste Joretf9a28f72009-03-26 15:23:46 +01001609 if ((intensity & 0x08) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610 fdata->start_unit == 1) {
1611 ect->kl = 44;
1612 ect->dl = LABEL_SIZE - 44;
1613 }
1614 ccw[-1].flags |= CCW_FLAG_CC;
1615 ccw->cmd_code = DASD_ECKD_CCW_WRITE_CKD;
1616 ccw->flags = CCW_FLAG_SLI;
1617 ccw->count = 8;
1618 ccw->cda = (__u32)(addr_t) ect;
1619 ccw++;
1620 }
1621 }
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001622 fcp->startdev = device;
1623 fcp->memdev = device;
1624 clear_bit(DASD_CQR_FLAGS_USE_ERP, &fcp->flags);
1625 fcp->retries = 5; /* set retry counter to enable default ERP */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626 fcp->buildclk = get_clock();
1627 fcp->status = DASD_CQR_FILLED;
1628 return fcp;
1629}
1630
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001631static void dasd_eckd_handle_terminated_request(struct dasd_ccw_req *cqr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632{
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001633 cqr->status = DASD_CQR_FILLED;
1634 if (cqr->block && (cqr->startdev != cqr->block->base)) {
1635 dasd_eckd_reset_ccw_to_base_io(cqr);
1636 cqr->startdev = cqr->block->base;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637 }
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001638};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639
1640static dasd_erp_fn_t
1641dasd_eckd_erp_action(struct dasd_ccw_req * cqr)
1642{
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001643 struct dasd_device *device = (struct dasd_device *) cqr->startdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644 struct ccw_device *cdev = device->cdev;
1645
1646 switch (cdev->id.cu_type) {
1647 case 0x3990:
1648 case 0x2105:
1649 case 0x2107:
1650 case 0x1750:
1651 return dasd_3990_erp_action;
1652 case 0x9343:
1653 case 0x3880:
1654 default:
1655 return dasd_default_erp_action;
1656 }
1657}
1658
1659static dasd_erp_fn_t
1660dasd_eckd_erp_postaction(struct dasd_ccw_req * cqr)
1661{
1662 return dasd_default_erp_postaction;
1663}
1664
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001665
1666static void dasd_eckd_handle_unsolicited_interrupt(struct dasd_device *device,
1667 struct irb *irb)
1668{
1669 char mask;
Stefan Weinhuberf3eb5382009-03-26 15:23:48 +01001670 char *sense = NULL;
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001671
1672 /* first of all check for state change pending interrupt */
1673 mask = DEV_STAT_ATTENTION | DEV_STAT_DEV_END | DEV_STAT_UNIT_EXCEP;
Stefan Weinhuberf3eb5382009-03-26 15:23:48 +01001674 if ((scsw_dstat(&irb->scsw) & mask) == mask) {
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001675 dasd_generic_handle_state_change(device);
1676 return;
1677 }
1678
1679 /* summary unit check */
Stefan Weinhuberf3eb5382009-03-26 15:23:48 +01001680 if ((scsw_dstat(&irb->scsw) & DEV_STAT_UNIT_CHECK) &&
Peter Oberparleiter23d805b2008-07-14 09:58:50 +02001681 (irb->ecw[7] == 0x0D)) {
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001682 dasd_alias_handle_summary_unit_check(device, irb);
1683 return;
1684 }
1685
Stefan Weinhuberf3eb5382009-03-26 15:23:48 +01001686 sense = dasd_get_sense(irb);
Stefan Haberlandf60c7682008-04-17 07:46:08 +02001687 /* service information message SIM */
Stefan Weinhuberf3eb5382009-03-26 15:23:48 +01001688 if (sense && !(sense[27] & DASD_SENSE_BIT_0) &&
1689 ((sense[6] & DASD_SIM_SENSE) == DASD_SIM_SENSE)) {
1690 dasd_3990_erp_handle_sim(device, sense);
Stefan Haberland9d853ca2008-07-17 17:16:41 +02001691 dasd_schedule_device_bh(device);
Stefan Haberlandf60c7682008-04-17 07:46:08 +02001692 return;
1693 }
1694
Stefan Weinhuberf3eb5382009-03-26 15:23:48 +01001695 if ((scsw_cc(&irb->scsw) == 1) &&
1696 (scsw_fctl(&irb->scsw) & SCSW_FCTL_START_FUNC) &&
1697 (scsw_actl(&irb->scsw) & SCSW_ACTL_START_PEND) &&
1698 (scsw_stctl(&irb->scsw) & SCSW_STCTL_STATUS_PEND)) {
Stefan Haberlandada3df92008-10-10 21:33:23 +02001699 /* fake irb do nothing, they are handled elsewhere */
1700 dasd_schedule_device_bh(device);
1701 return;
1702 }
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001703
Stefan Weinhuberf3eb5382009-03-26 15:23:48 +01001704 if (!sense) {
Stefan Haberlandada3df92008-10-10 21:33:23 +02001705 /* just report other unsolicited interrupts */
Stefan Haberlandfc19f382009-03-26 15:23:49 +01001706 DBF_DEV_EVENT(DBF_ERR, device, "%s",
Stefan Haberlandada3df92008-10-10 21:33:23 +02001707 "unsolicited interrupt received");
1708 } else {
Stefan Haberlandfc19f382009-03-26 15:23:49 +01001709 DBF_DEV_EVENT(DBF_ERR, device, "%s",
Stefan Haberlandada3df92008-10-10 21:33:23 +02001710 "unsolicited interrupt received "
1711 "(sense available)");
Stefan Haberlandfc19f382009-03-26 15:23:49 +01001712 device->discipline->dump_sense_dbf(device, NULL, irb,
1713 "unsolicited");
Stefan Haberlandada3df92008-10-10 21:33:23 +02001714 }
1715
1716 dasd_schedule_device_bh(device);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001717 return;
1718};
1719
Stefan Weinhuberf3eb5382009-03-26 15:23:48 +01001720
1721static struct dasd_ccw_req *dasd_eckd_build_cp_cmd_single(
1722 struct dasd_device *startdev,
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001723 struct dasd_block *block,
Stefan Weinhuberf3eb5382009-03-26 15:23:48 +01001724 struct request *req,
1725 sector_t first_rec,
1726 sector_t last_rec,
1727 sector_t first_trk,
1728 sector_t last_trk,
1729 unsigned int first_offs,
1730 unsigned int last_offs,
1731 unsigned int blk_per_trk,
1732 unsigned int blksize)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733{
1734 struct dasd_eckd_private *private;
1735 unsigned long *idaws;
1736 struct LO_eckd_data *LO_data;
1737 struct dasd_ccw_req *cqr;
1738 struct ccw1 *ccw;
NeilBrown5705f702007-09-25 12:35:59 +02001739 struct req_iterator iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740 struct bio_vec *bv;
1741 char *dst;
Stefan Weinhuberf3eb5382009-03-26 15:23:48 +01001742 unsigned int off;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743 int count, cidaw, cplength, datasize;
Stefan Weinhuberf3eb5382009-03-26 15:23:48 +01001744 sector_t recid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745 unsigned char cmd, rcmd;
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001746 int use_prefix;
1747 struct dasd_device *basedev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001749 basedev = block->base;
1750 private = (struct dasd_eckd_private *) basedev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751 if (rq_data_dir(req) == READ)
1752 cmd = DASD_ECKD_CCW_READ_MT;
1753 else if (rq_data_dir(req) == WRITE)
1754 cmd = DASD_ECKD_CCW_WRITE_MT;
1755 else
1756 return ERR_PTR(-EINVAL);
Stefan Weinhuberf3eb5382009-03-26 15:23:48 +01001757
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758 /* Check struct bio and count the number of blocks for the request. */
1759 count = 0;
1760 cidaw = 0;
NeilBrown5705f702007-09-25 12:35:59 +02001761 rq_for_each_segment(bv, req, iter) {
Jens Axboe6c92e692007-08-16 13:43:12 +02001762 if (bv->bv_len & (blksize - 1))
1763 /* Eckd can only do full blocks. */
1764 return ERR_PTR(-EINVAL);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001765 count += bv->bv_len >> (block->s2b_shift + 9);
Martin Schwidefsky347a8dc2006-01-06 00:19:28 -08001766#if defined(CONFIG_64BIT)
Jens Axboe6c92e692007-08-16 13:43:12 +02001767 if (idal_is_needed (page_address(bv->bv_page), bv->bv_len))
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001768 cidaw += bv->bv_len >> (block->s2b_shift + 9);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770 }
1771 /* Paranoia. */
1772 if (count != last_rec - first_rec + 1)
1773 return ERR_PTR(-EINVAL);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001774
1775 /* use the prefix command if available */
1776 use_prefix = private->features.feature[8] & 0x01;
1777 if (use_prefix) {
1778 /* 1x prefix + number of blocks */
1779 cplength = 2 + count;
1780 /* 1x prefix + cidaws*sizeof(long) */
1781 datasize = sizeof(struct PFX_eckd_data) +
1782 sizeof(struct LO_eckd_data) +
1783 cidaw * sizeof(unsigned long);
1784 } else {
1785 /* 1x define extent + 1x locate record + number of blocks */
1786 cplength = 2 + count;
1787 /* 1x define extent + 1x locate record + cidaws*sizeof(long) */
1788 datasize = sizeof(struct DE_eckd_data) +
1789 sizeof(struct LO_eckd_data) +
1790 cidaw * sizeof(unsigned long);
1791 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792 /* Find out the number of additional locate record ccws for cdl. */
1793 if (private->uses_cdl && first_rec < 2*blk_per_trk) {
1794 if (last_rec >= 2*blk_per_trk)
1795 count = 2*blk_per_trk - first_rec;
1796 cplength += count;
1797 datasize += count*sizeof(struct LO_eckd_data);
1798 }
1799 /* Allocate the ccw request. */
1800 cqr = dasd_smalloc_request(dasd_eckd_discipline.name,
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001801 cplength, datasize, startdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802 if (IS_ERR(cqr))
1803 return cqr;
1804 ccw = cqr->cpaddr;
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001805 /* First ccw is define extent or prefix. */
1806 if (use_prefix) {
1807 if (prefix(ccw++, cqr->data, first_trk,
1808 last_trk, cmd, basedev, startdev) == -EAGAIN) {
1809 /* Clock not in sync and XRC is enabled.
1810 * Try again later.
1811 */
1812 dasd_sfree_request(cqr, startdev);
1813 return ERR_PTR(-EAGAIN);
1814 }
1815 idaws = (unsigned long *) (cqr->data +
1816 sizeof(struct PFX_eckd_data));
1817 } else {
1818 if (define_extent(ccw++, cqr->data, first_trk,
1819 last_trk, cmd, startdev) == -EAGAIN) {
1820 /* Clock not in sync and XRC is enabled.
1821 * Try again later.
1822 */
1823 dasd_sfree_request(cqr, startdev);
1824 return ERR_PTR(-EAGAIN);
1825 }
1826 idaws = (unsigned long *) (cqr->data +
1827 sizeof(struct DE_eckd_data));
Martin Schwidefskyd54853e2007-02-05 21:18:19 +01001828 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829 /* Build locate_record+read/write/ccws. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830 LO_data = (struct LO_eckd_data *) (idaws + cidaw);
1831 recid = first_rec;
1832 if (private->uses_cdl == 0 || recid > 2*blk_per_trk) {
1833 /* Only standard blocks so there is just one locate record. */
1834 ccw[-1].flags |= CCW_FLAG_CC;
1835 locate_record(ccw++, LO_data++, first_trk, first_offs + 1,
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001836 last_rec - recid + 1, cmd, basedev, blksize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837 }
NeilBrown5705f702007-09-25 12:35:59 +02001838 rq_for_each_segment(bv, req, iter) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839 dst = page_address(bv->bv_page) + bv->bv_offset;
1840 if (dasd_page_cache) {
1841 char *copy = kmem_cache_alloc(dasd_page_cache,
Christoph Lameter441e1432006-12-06 20:33:19 -08001842 GFP_DMA | __GFP_NOWARN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843 if (copy && rq_data_dir(req) == WRITE)
1844 memcpy(copy + bv->bv_offset, dst, bv->bv_len);
1845 if (copy)
1846 dst = copy + bv->bv_offset;
1847 }
1848 for (off = 0; off < bv->bv_len; off += blksize) {
1849 sector_t trkid = recid;
1850 unsigned int recoffs = sector_div(trkid, blk_per_trk);
1851 rcmd = cmd;
1852 count = blksize;
1853 /* Locate record for cdl special block ? */
1854 if (private->uses_cdl && recid < 2*blk_per_trk) {
1855 if (dasd_eckd_cdl_special(blk_per_trk, recid)){
1856 rcmd |= 0x8;
1857 count = dasd_eckd_cdl_reclen(recid);
Horst Hummelec5883a2005-05-01 08:58:59 -07001858 if (count < blksize &&
1859 rq_data_dir(req) == READ)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860 memset(dst + count, 0xe5,
1861 blksize - count);
1862 }
1863 ccw[-1].flags |= CCW_FLAG_CC;
1864 locate_record(ccw++, LO_data++,
1865 trkid, recoffs + 1,
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001866 1, rcmd, basedev, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867 }
1868 /* Locate record for standard blocks ? */
1869 if (private->uses_cdl && recid == 2*blk_per_trk) {
1870 ccw[-1].flags |= CCW_FLAG_CC;
1871 locate_record(ccw++, LO_data++,
1872 trkid, recoffs + 1,
1873 last_rec - recid + 1,
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001874 cmd, basedev, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875 }
1876 /* Read/write ccw. */
1877 ccw[-1].flags |= CCW_FLAG_CC;
1878 ccw->cmd_code = rcmd;
1879 ccw->count = count;
1880 if (idal_is_needed(dst, blksize)) {
1881 ccw->cda = (__u32)(addr_t) idaws;
1882 ccw->flags = CCW_FLAG_IDA;
1883 idaws = idal_create_words(idaws, dst, blksize);
1884 } else {
1885 ccw->cda = (__u32)(addr_t) dst;
1886 ccw->flags = 0;
1887 }
1888 ccw++;
1889 dst += blksize;
1890 recid++;
1891 }
1892 }
Holger Smolinski13de2272009-01-09 12:14:51 +01001893 if (blk_noretry_request(req) ||
1894 block->base->features & DASD_FEATURE_FAILFAST)
Horst Hummel1c01b8a2006-01-06 00:19:15 -08001895 set_bit(DASD_CQR_FLAGS_FAILFAST, &cqr->flags);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01001896 cqr->startdev = startdev;
1897 cqr->memdev = startdev;
1898 cqr->block = block;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899 cqr->expires = 5 * 60 * HZ; /* 5 minutes */
1900 cqr->lpm = private->path_data.ppm;
1901 cqr->retries = 256;
1902 cqr->buildclk = get_clock();
1903 cqr->status = DASD_CQR_FILLED;
1904 return cqr;
1905}
1906
Stefan Weinhuberf3eb5382009-03-26 15:23:48 +01001907static struct dasd_ccw_req *dasd_eckd_build_cp_cmd_track(
1908 struct dasd_device *startdev,
1909 struct dasd_block *block,
1910 struct request *req,
1911 sector_t first_rec,
1912 sector_t last_rec,
1913 sector_t first_trk,
1914 sector_t last_trk,
1915 unsigned int first_offs,
1916 unsigned int last_offs,
1917 unsigned int blk_per_trk,
1918 unsigned int blksize)
1919{
1920 struct dasd_eckd_private *private;
1921 unsigned long *idaws;
1922 struct dasd_ccw_req *cqr;
1923 struct ccw1 *ccw;
1924 struct req_iterator iter;
1925 struct bio_vec *bv;
1926 char *dst, *idaw_dst;
1927 unsigned int cidaw, cplength, datasize;
1928 unsigned int tlf;
1929 sector_t recid;
1930 unsigned char cmd;
1931 struct dasd_device *basedev;
1932 unsigned int trkcount, count, count_to_trk_end;
1933 unsigned int idaw_len, seg_len, part_len, len_to_track_end;
1934 unsigned char new_track, end_idaw;
1935 sector_t trkid;
1936 unsigned int recoffs;
1937
1938 basedev = block->base;
1939 private = (struct dasd_eckd_private *) basedev->private;
1940 if (rq_data_dir(req) == READ)
1941 cmd = DASD_ECKD_CCW_READ_TRACK_DATA;
1942 else if (rq_data_dir(req) == WRITE)
1943 cmd = DASD_ECKD_CCW_WRITE_TRACK_DATA;
1944 else
1945 return ERR_PTR(-EINVAL);
1946
1947 /* Track based I/O needs IDAWs for each page, and not just for
1948 * 64 bit addresses. We need additional idals for pages
1949 * that get filled from two tracks, so we use the number
1950 * of records as upper limit.
1951 */
1952 cidaw = last_rec - first_rec + 1;
1953 trkcount = last_trk - first_trk + 1;
1954
1955 /* 1x prefix + one read/write ccw per track */
1956 cplength = 1 + trkcount;
1957
1958 /* on 31-bit we need space for two 32 bit addresses per page
1959 * on 64-bit one 64 bit address
1960 */
1961 datasize = sizeof(struct PFX_eckd_data) +
1962 cidaw * sizeof(unsigned long long);
1963
1964 /* Allocate the ccw request. */
1965 cqr = dasd_smalloc_request(dasd_eckd_discipline.name,
1966 cplength, datasize, startdev);
1967 if (IS_ERR(cqr))
1968 return cqr;
1969 ccw = cqr->cpaddr;
1970 /* transfer length factor: how many bytes to read from the last track */
1971 if (first_trk == last_trk)
1972 tlf = last_offs - first_offs + 1;
1973 else
1974 tlf = last_offs + 1;
1975 tlf *= blksize;
1976
1977 if (prefix_LRE(ccw++, cqr->data, first_trk,
1978 last_trk, cmd, basedev, startdev,
1979 1 /* format */, first_offs + 1,
1980 trkcount, blksize,
1981 tlf) == -EAGAIN) {
1982 /* Clock not in sync and XRC is enabled.
1983 * Try again later.
1984 */
1985 dasd_sfree_request(cqr, startdev);
1986 return ERR_PTR(-EAGAIN);
1987 }
1988
1989 /*
1990 * The translation of request into ccw programs must meet the
1991 * following conditions:
1992 * - all idaws but the first and the last must address full pages
1993 * (or 2K blocks on 31-bit)
1994 * - the scope of a ccw and it's idal ends with the track boundaries
1995 */
1996 idaws = (unsigned long *) (cqr->data + sizeof(struct PFX_eckd_data));
1997 recid = first_rec;
1998 new_track = 1;
1999 end_idaw = 0;
2000 len_to_track_end = 0;
2001 idaw_dst = 0;
2002 idaw_len = 0;
2003 rq_for_each_segment(bv, req, iter) {
2004 dst = page_address(bv->bv_page) + bv->bv_offset;
2005 seg_len = bv->bv_len;
2006 while (seg_len) {
2007 if (new_track) {
2008 trkid = recid;
2009 recoffs = sector_div(trkid, blk_per_trk);
2010 count_to_trk_end = blk_per_trk - recoffs;
2011 count = min((last_rec - recid + 1),
2012 (sector_t)count_to_trk_end);
2013 len_to_track_end = count * blksize;
2014 ccw[-1].flags |= CCW_FLAG_CC;
2015 ccw->cmd_code = cmd;
2016 ccw->count = len_to_track_end;
2017 ccw->cda = (__u32)(addr_t)idaws;
2018 ccw->flags = CCW_FLAG_IDA;
2019 ccw++;
2020 recid += count;
2021 new_track = 0;
Stefan Weinhuber52db45c2009-04-14 15:36:24 +02002022 /* first idaw for a ccw may start anywhere */
2023 if (!idaw_dst)
2024 idaw_dst = dst;
Stefan Weinhuberf3eb5382009-03-26 15:23:48 +01002025 }
Stefan Weinhuber52db45c2009-04-14 15:36:24 +02002026 /* If we start a new idaw, we must make sure that it
2027 * starts on an IDA_BLOCK_SIZE boundary.
Stefan Weinhuberf3eb5382009-03-26 15:23:48 +01002028 * If we continue an idaw, we must make sure that the
2029 * current segment begins where the so far accumulated
2030 * idaw ends
2031 */
Stefan Weinhuber52db45c2009-04-14 15:36:24 +02002032 if (!idaw_dst) {
2033 if (__pa(dst) & (IDA_BLOCK_SIZE-1)) {
2034 dasd_sfree_request(cqr, startdev);
2035 return ERR_PTR(-ERANGE);
2036 } else
2037 idaw_dst = dst;
2038 }
Stefan Weinhuberf3eb5382009-03-26 15:23:48 +01002039 if ((idaw_dst + idaw_len) != dst) {
2040 dasd_sfree_request(cqr, startdev);
2041 return ERR_PTR(-ERANGE);
2042 }
2043 part_len = min(seg_len, len_to_track_end);
2044 seg_len -= part_len;
2045 dst += part_len;
2046 idaw_len += part_len;
2047 len_to_track_end -= part_len;
2048 /* collected memory area ends on an IDA_BLOCK border,
2049 * -> create an idaw
2050 * idal_create_words will handle cases where idaw_len
2051 * is larger then IDA_BLOCK_SIZE
2052 */
2053 if (!(__pa(idaw_dst + idaw_len) & (IDA_BLOCK_SIZE-1)))
2054 end_idaw = 1;
2055 /* We also need to end the idaw at track end */
2056 if (!len_to_track_end) {
2057 new_track = 1;
2058 end_idaw = 1;
2059 }
2060 if (end_idaw) {
2061 idaws = idal_create_words(idaws, idaw_dst,
2062 idaw_len);
2063 idaw_dst = 0;
2064 idaw_len = 0;
2065 end_idaw = 0;
2066 }
2067 }
2068 }
2069
2070 if (blk_noretry_request(req) ||
2071 block->base->features & DASD_FEATURE_FAILFAST)
2072 set_bit(DASD_CQR_FLAGS_FAILFAST, &cqr->flags);
2073 cqr->startdev = startdev;
2074 cqr->memdev = startdev;
2075 cqr->block = block;
2076 cqr->expires = 5 * 60 * HZ; /* 5 minutes */
2077 cqr->lpm = private->path_data.ppm;
2078 cqr->retries = 256;
2079 cqr->buildclk = get_clock();
2080 cqr->status = DASD_CQR_FILLED;
2081 return cqr;
2082}
2083
2084static int prepare_itcw(struct itcw *itcw,
2085 unsigned int trk, unsigned int totrk, int cmd,
2086 struct dasd_device *basedev,
2087 struct dasd_device *startdev,
2088 unsigned int rec_on_trk, int count,
2089 unsigned int blksize,
2090 unsigned int total_data_size,
2091 unsigned int tlf,
2092 unsigned int blk_per_trk)
2093{
2094 struct PFX_eckd_data pfxdata;
2095 struct dasd_eckd_private *basepriv, *startpriv;
2096 struct DE_eckd_data *dedata;
2097 struct LRE_eckd_data *lredata;
2098 struct dcw *dcw;
2099
2100 u32 begcyl, endcyl;
2101 u16 heads, beghead, endhead;
2102 u8 pfx_cmd;
2103
2104 int rc = 0;
2105 int sector = 0;
2106 int dn, d;
2107
2108
2109 /* setup prefix data */
2110 basepriv = (struct dasd_eckd_private *) basedev->private;
2111 startpriv = (struct dasd_eckd_private *) startdev->private;
2112 dedata = &pfxdata.define_extent;
2113 lredata = &pfxdata.locate_record;
2114
2115 memset(&pfxdata, 0, sizeof(pfxdata));
2116 pfxdata.format = 1; /* PFX with LRE */
2117 pfxdata.base_address = basepriv->ned->unit_addr;
2118 pfxdata.base_lss = basepriv->ned->ID;
2119 pfxdata.validity.define_extent = 1;
2120
2121 /* private uid is kept up to date, conf_data may be outdated */
2122 if (startpriv->uid.type != UA_BASE_DEVICE) {
2123 pfxdata.validity.verify_base = 1;
2124 if (startpriv->uid.type == UA_HYPER_PAV_ALIAS)
2125 pfxdata.validity.hyper_pav = 1;
2126 }
2127
2128 switch (cmd) {
2129 case DASD_ECKD_CCW_READ_TRACK_DATA:
2130 dedata->mask.perm = 0x1;
2131 dedata->attributes.operation = basepriv->attrib.operation;
2132 dedata->blk_size = blksize;
2133 dedata->ga_extended |= 0x42;
2134 lredata->operation.orientation = 0x0;
2135 lredata->operation.operation = 0x0C;
2136 lredata->auxiliary.check_bytes = 0x01;
2137 pfx_cmd = DASD_ECKD_CCW_PFX_READ;
2138 break;
2139 case DASD_ECKD_CCW_WRITE_TRACK_DATA:
2140 dedata->mask.perm = 0x02;
2141 dedata->attributes.operation = basepriv->attrib.operation;
2142 dedata->blk_size = blksize;
2143 rc = check_XRC_on_prefix(&pfxdata, basedev);
2144 dedata->ga_extended |= 0x42;
2145 lredata->operation.orientation = 0x0;
2146 lredata->operation.operation = 0x3F;
2147 lredata->extended_operation = 0x23;
2148 lredata->auxiliary.check_bytes = 0x2;
2149 pfx_cmd = DASD_ECKD_CCW_PFX;
2150 break;
2151 default:
2152 DBF_DEV_EVENT(DBF_ERR, basedev,
2153 "prepare itcw, unknown opcode 0x%x", cmd);
2154 BUG();
2155 break;
2156 }
2157 if (rc)
2158 return rc;
2159
2160 dedata->attributes.mode = 0x3; /* ECKD */
2161
2162 heads = basepriv->rdc_data.trk_per_cyl;
2163 begcyl = trk / heads;
2164 beghead = trk % heads;
2165 endcyl = totrk / heads;
2166 endhead = totrk % heads;
2167
2168 /* check for sequential prestage - enhance cylinder range */
2169 if (dedata->attributes.operation == DASD_SEQ_PRESTAGE ||
2170 dedata->attributes.operation == DASD_SEQ_ACCESS) {
2171
2172 if (endcyl + basepriv->attrib.nr_cyl < basepriv->real_cyl)
2173 endcyl += basepriv->attrib.nr_cyl;
2174 else
2175 endcyl = (basepriv->real_cyl - 1);
2176 }
2177
2178 set_ch_t(&dedata->beg_ext, begcyl, beghead);
2179 set_ch_t(&dedata->end_ext, endcyl, endhead);
2180
2181 dedata->ep_format = 0x20; /* records per track is valid */
2182 dedata->ep_rec_per_track = blk_per_trk;
2183
2184 if (rec_on_trk) {
2185 switch (basepriv->rdc_data.dev_type) {
2186 case 0x3390:
2187 dn = ceil_quot(blksize + 6, 232);
2188 d = 9 + ceil_quot(blksize + 6 * (dn + 1), 34);
2189 sector = (49 + (rec_on_trk - 1) * (10 + d)) / 8;
2190 break;
2191 case 0x3380:
2192 d = 7 + ceil_quot(blksize + 12, 32);
2193 sector = (39 + (rec_on_trk - 1) * (8 + d)) / 7;
2194 break;
2195 }
2196 }
2197
2198 lredata->auxiliary.length_valid = 1;
2199 lredata->auxiliary.length_scope = 1;
2200 lredata->auxiliary.imbedded_ccw_valid = 1;
2201 lredata->length = tlf;
2202 lredata->imbedded_ccw = cmd;
2203 lredata->count = count;
2204 lredata->sector = sector;
2205 set_ch_t(&lredata->seek_addr, begcyl, beghead);
2206 lredata->search_arg.cyl = lredata->seek_addr.cyl;
2207 lredata->search_arg.head = lredata->seek_addr.head;
2208 lredata->search_arg.record = rec_on_trk;
2209
2210 dcw = itcw_add_dcw(itcw, pfx_cmd, 0,
2211 &pfxdata, sizeof(pfxdata), total_data_size);
2212
2213 return rc;
2214}
2215
2216static struct dasd_ccw_req *dasd_eckd_build_cp_tpm_track(
2217 struct dasd_device *startdev,
2218 struct dasd_block *block,
2219 struct request *req,
2220 sector_t first_rec,
2221 sector_t last_rec,
2222 sector_t first_trk,
2223 sector_t last_trk,
2224 unsigned int first_offs,
2225 unsigned int last_offs,
2226 unsigned int blk_per_trk,
2227 unsigned int blksize)
2228{
2229 struct dasd_eckd_private *private;
2230 struct dasd_ccw_req *cqr;
2231 struct req_iterator iter;
2232 struct bio_vec *bv;
2233 char *dst;
2234 unsigned int trkcount, ctidaw;
2235 unsigned char cmd;
2236 struct dasd_device *basedev;
2237 unsigned int tlf;
2238 struct itcw *itcw;
2239 struct tidaw *last_tidaw = NULL;
2240 int itcw_op;
2241 size_t itcw_size;
2242
2243 basedev = block->base;
2244 private = (struct dasd_eckd_private *) basedev->private;
2245 if (rq_data_dir(req) == READ) {
2246 cmd = DASD_ECKD_CCW_READ_TRACK_DATA;
2247 itcw_op = ITCW_OP_READ;
2248 } else if (rq_data_dir(req) == WRITE) {
2249 cmd = DASD_ECKD_CCW_WRITE_TRACK_DATA;
2250 itcw_op = ITCW_OP_WRITE;
2251 } else
2252 return ERR_PTR(-EINVAL);
2253
2254 /* trackbased I/O needs address all memory via TIDAWs,
2255 * not just for 64 bit addresses. This allows us to map
2256 * each segment directly to one tidaw.
2257 */
2258 trkcount = last_trk - first_trk + 1;
2259 ctidaw = 0;
2260 rq_for_each_segment(bv, req, iter) {
2261 ++ctidaw;
2262 }
2263
2264 /* Allocate the ccw request. */
2265 itcw_size = itcw_calc_size(0, ctidaw, 0);
2266 cqr = dasd_smalloc_request(dasd_eckd_discipline.name,
2267 0, itcw_size, startdev);
2268 if (IS_ERR(cqr))
2269 return cqr;
2270
2271 cqr->cpmode = 1;
2272 cqr->startdev = startdev;
2273 cqr->memdev = startdev;
2274 cqr->block = block;
2275 cqr->expires = 100*HZ;
2276 cqr->buildclk = get_clock();
2277 cqr->status = DASD_CQR_FILLED;
2278 cqr->retries = 10;
2279
2280 /* transfer length factor: how many bytes to read from the last track */
2281 if (first_trk == last_trk)
2282 tlf = last_offs - first_offs + 1;
2283 else
2284 tlf = last_offs + 1;
2285 tlf *= blksize;
2286
2287 itcw = itcw_init(cqr->data, itcw_size, itcw_op, 0, ctidaw, 0);
2288 cqr->cpaddr = itcw_get_tcw(itcw);
2289
2290 if (prepare_itcw(itcw, first_trk, last_trk,
2291 cmd, basedev, startdev,
2292 first_offs + 1,
2293 trkcount, blksize,
2294 (last_rec - first_rec + 1) * blksize,
2295 tlf, blk_per_trk) == -EAGAIN) {
2296 /* Clock not in sync and XRC is enabled.
2297 * Try again later.
2298 */
2299 dasd_sfree_request(cqr, startdev);
2300 return ERR_PTR(-EAGAIN);
2301 }
2302
2303 /*
2304 * A tidaw can address 4k of memory, but must not cross page boundaries
2305 * We can let the block layer handle this by setting
2306 * blk_queue_segment_boundary to page boundaries and
2307 * blk_max_segment_size to page size when setting up the request queue.
2308 */
2309 rq_for_each_segment(bv, req, iter) {
2310 dst = page_address(bv->bv_page) + bv->bv_offset;
2311 last_tidaw = itcw_add_tidaw(itcw, 0x00, dst, bv->bv_len);
2312 if (IS_ERR(last_tidaw))
2313 return (struct dasd_ccw_req *)last_tidaw;
2314 }
2315
2316 last_tidaw->flags |= 0x80;
2317 itcw_finalize(itcw);
2318
2319 if (blk_noretry_request(req) ||
2320 block->base->features & DASD_FEATURE_FAILFAST)
2321 set_bit(DASD_CQR_FLAGS_FAILFAST, &cqr->flags);
2322 cqr->startdev = startdev;
2323 cqr->memdev = startdev;
2324 cqr->block = block;
2325 cqr->expires = 5 * 60 * HZ; /* 5 minutes */
2326 cqr->lpm = private->path_data.ppm;
2327 cqr->retries = 256;
2328 cqr->buildclk = get_clock();
2329 cqr->status = DASD_CQR_FILLED;
2330 return cqr;
2331}
2332
2333static struct dasd_ccw_req *dasd_eckd_build_cp(struct dasd_device *startdev,
2334 struct dasd_block *block,
2335 struct request *req)
2336{
2337 int tpm, cmdrtd, cmdwtd;
2338 int use_prefix;
Stefan Weinhuber45b44d72009-06-12 10:26:36 +02002339#if defined(CONFIG_64BIT)
Stefan Weinhuberf3eb5382009-03-26 15:23:48 +01002340 int fcx_in_css, fcx_in_gneq, fcx_in_features;
Stefan Weinhuber45b44d72009-06-12 10:26:36 +02002341#endif
2342 struct dasd_eckd_private *private;
Stefan Weinhuberf3eb5382009-03-26 15:23:48 +01002343 struct dasd_device *basedev;
2344 sector_t first_rec, last_rec;
2345 sector_t first_trk, last_trk;
2346 unsigned int first_offs, last_offs;
2347 unsigned int blk_per_trk, blksize;
2348 int cdlspecial;
2349 struct dasd_ccw_req *cqr;
2350
2351 basedev = block->base;
2352 private = (struct dasd_eckd_private *) basedev->private;
2353
2354 /* Calculate number of blocks/records per track. */
2355 blksize = block->bp_block;
2356 blk_per_trk = recs_per_track(&private->rdc_data, 0, blksize);
2357 /* Calculate record id of first and last block. */
Tejun Heo83096eb2009-05-07 22:24:39 +09002358 first_rec = first_trk = blk_rq_pos(req) >> block->s2b_shift;
Stefan Weinhuberf3eb5382009-03-26 15:23:48 +01002359 first_offs = sector_div(first_trk, blk_per_trk);
2360 last_rec = last_trk =
Tejun Heo83096eb2009-05-07 22:24:39 +09002361 (blk_rq_pos(req) + blk_rq_sectors(req) - 1) >> block->s2b_shift;
Stefan Weinhuberf3eb5382009-03-26 15:23:48 +01002362 last_offs = sector_div(last_trk, blk_per_trk);
2363 cdlspecial = (private->uses_cdl && first_rec < 2*blk_per_trk);
2364
Stefan Weinhuber45b44d72009-06-12 10:26:36 +02002365 /* is transport mode supported? */
2366#if defined(CONFIG_64BIT)
Stefan Weinhuberf3eb5382009-03-26 15:23:48 +01002367 fcx_in_css = css_general_characteristics.fcx;
2368 fcx_in_gneq = private->gneq->reserved2[7] & 0x04;
2369 fcx_in_features = private->features.feature[40] & 0x80;
2370 tpm = fcx_in_css && fcx_in_gneq && fcx_in_features;
Stefan Weinhuber45b44d72009-06-12 10:26:36 +02002371#else
2372 tpm = 0;
2373#endif
Stefan Weinhuberf3eb5382009-03-26 15:23:48 +01002374
2375 /* is read track data and write track data in command mode supported? */
2376 cmdrtd = private->features.feature[9] & 0x20;
2377 cmdwtd = private->features.feature[12] & 0x40;
2378 use_prefix = private->features.feature[8] & 0x01;
2379
2380 cqr = NULL;
2381 if (cdlspecial || dasd_page_cache) {
2382 /* do nothing, just fall through to the cmd mode single case */
2383 } else if (!dasd_nofcx && tpm && (first_trk == last_trk)) {
2384 cqr = dasd_eckd_build_cp_tpm_track(startdev, block, req,
2385 first_rec, last_rec,
2386 first_trk, last_trk,
2387 first_offs, last_offs,
2388 blk_per_trk, blksize);
2389 if (IS_ERR(cqr) && PTR_ERR(cqr) != -EAGAIN)
2390 cqr = NULL;
2391 } else if (use_prefix &&
2392 (((rq_data_dir(req) == READ) && cmdrtd) ||
2393 ((rq_data_dir(req) == WRITE) && cmdwtd))) {
2394 cqr = dasd_eckd_build_cp_cmd_track(startdev, block, req,
2395 first_rec, last_rec,
2396 first_trk, last_trk,
2397 first_offs, last_offs,
2398 blk_per_trk, blksize);
2399 if (IS_ERR(cqr) && PTR_ERR(cqr) != -EAGAIN)
2400 cqr = NULL;
2401 }
2402 if (!cqr)
2403 cqr = dasd_eckd_build_cp_cmd_single(startdev, block, req,
2404 first_rec, last_rec,
2405 first_trk, last_trk,
2406 first_offs, last_offs,
2407 blk_per_trk, blksize);
2408 return cqr;
2409}
2410
Linus Torvalds1da177e2005-04-16 15:20:36 -07002411static int
2412dasd_eckd_free_cp(struct dasd_ccw_req *cqr, struct request *req)
2413{
2414 struct dasd_eckd_private *private;
2415 struct ccw1 *ccw;
NeilBrown5705f702007-09-25 12:35:59 +02002416 struct req_iterator iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002417 struct bio_vec *bv;
2418 char *dst, *cda;
2419 unsigned int blksize, blk_per_trk, off;
2420 sector_t recid;
NeilBrown5705f702007-09-25 12:35:59 +02002421 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002422
2423 if (!dasd_page_cache)
2424 goto out;
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002425 private = (struct dasd_eckd_private *) cqr->block->base->private;
2426 blksize = cqr->block->bp_block;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002427 blk_per_trk = recs_per_track(&private->rdc_data, 0, blksize);
Tejun Heo83096eb2009-05-07 22:24:39 +09002428 recid = blk_rq_pos(req) >> cqr->block->s2b_shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002429 ccw = cqr->cpaddr;
2430 /* Skip over define extent & locate record. */
2431 ccw++;
2432 if (private->uses_cdl == 0 || recid > 2*blk_per_trk)
2433 ccw++;
NeilBrown5705f702007-09-25 12:35:59 +02002434 rq_for_each_segment(bv, req, iter) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002435 dst = page_address(bv->bv_page) + bv->bv_offset;
2436 for (off = 0; off < bv->bv_len; off += blksize) {
2437 /* Skip locate record. */
2438 if (private->uses_cdl && recid <= 2*blk_per_trk)
2439 ccw++;
2440 if (dst) {
2441 if (ccw->flags & CCW_FLAG_IDA)
2442 cda = *((char **)((addr_t) ccw->cda));
2443 else
2444 cda = (char *)((addr_t) ccw->cda);
2445 if (dst != cda) {
2446 if (rq_data_dir(req) == READ)
2447 memcpy(dst, cda, bv->bv_len);
2448 kmem_cache_free(dasd_page_cache,
2449 (void *)((addr_t)cda & PAGE_MASK));
2450 }
2451 dst = NULL;
2452 }
2453 ccw++;
2454 recid++;
2455 }
2456 }
2457out:
2458 status = cqr->status == DASD_CQR_DONE;
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002459 dasd_sfree_request(cqr, cqr->memdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002460 return status;
2461}
2462
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002463/*
Stefan Weinhuberf3eb5382009-03-26 15:23:48 +01002464 * Modify ccw/tcw in cqr so it can be started on a base device.
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002465 *
2466 * Note that this is not enough to restart the cqr!
2467 * Either reset cqr->startdev as well (summary unit check handling)
2468 * or restart via separate cqr (as in ERP handling).
2469 */
2470void dasd_eckd_reset_ccw_to_base_io(struct dasd_ccw_req *cqr)
2471{
2472 struct ccw1 *ccw;
2473 struct PFX_eckd_data *pfxdata;
Stefan Weinhuberf3eb5382009-03-26 15:23:48 +01002474 struct tcw *tcw;
2475 struct tccb *tccb;
2476 struct dcw *dcw;
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002477
Stefan Weinhuberf3eb5382009-03-26 15:23:48 +01002478 if (cqr->cpmode == 1) {
2479 tcw = cqr->cpaddr;
2480 tccb = tcw_get_tccb(tcw);
2481 dcw = (struct dcw *)&tccb->tca[0];
2482 pfxdata = (struct PFX_eckd_data *)&dcw->cd[0];
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002483 pfxdata->validity.verify_base = 0;
2484 pfxdata->validity.hyper_pav = 0;
Stefan Weinhuberf3eb5382009-03-26 15:23:48 +01002485 } else {
2486 ccw = cqr->cpaddr;
2487 pfxdata = cqr->data;
2488 if (ccw->cmd_code == DASD_ECKD_CCW_PFX) {
2489 pfxdata->validity.verify_base = 0;
2490 pfxdata->validity.hyper_pav = 0;
2491 }
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002492 }
2493}
2494
2495#define DASD_ECKD_CHANQ_MAX_SIZE 4
2496
2497static struct dasd_ccw_req *dasd_eckd_build_alias_cp(struct dasd_device *base,
2498 struct dasd_block *block,
2499 struct request *req)
2500{
2501 struct dasd_eckd_private *private;
2502 struct dasd_device *startdev;
2503 unsigned long flags;
2504 struct dasd_ccw_req *cqr;
2505
2506 startdev = dasd_alias_get_start_dev(base);
2507 if (!startdev)
2508 startdev = base;
2509 private = (struct dasd_eckd_private *) startdev->private;
2510 if (private->count >= DASD_ECKD_CHANQ_MAX_SIZE)
2511 return ERR_PTR(-EBUSY);
2512
2513 spin_lock_irqsave(get_ccwdev_lock(startdev->cdev), flags);
2514 private->count++;
2515 cqr = dasd_eckd_build_cp(startdev, block, req);
2516 if (IS_ERR(cqr))
2517 private->count--;
2518 spin_unlock_irqrestore(get_ccwdev_lock(startdev->cdev), flags);
2519 return cqr;
2520}
2521
2522static int dasd_eckd_free_alias_cp(struct dasd_ccw_req *cqr,
2523 struct request *req)
2524{
2525 struct dasd_eckd_private *private;
2526 unsigned long flags;
2527
2528 spin_lock_irqsave(get_ccwdev_lock(cqr->memdev->cdev), flags);
2529 private = (struct dasd_eckd_private *) cqr->memdev->private;
2530 private->count--;
2531 spin_unlock_irqrestore(get_ccwdev_lock(cqr->memdev->cdev), flags);
2532 return dasd_eckd_free_cp(cqr, req);
2533}
2534
Linus Torvalds1da177e2005-04-16 15:20:36 -07002535static int
2536dasd_eckd_fill_info(struct dasd_device * device,
2537 struct dasd_information2_t * info)
2538{
2539 struct dasd_eckd_private *private;
2540
2541 private = (struct dasd_eckd_private *) device->private;
2542 info->label_block = 2;
2543 info->FBA_layout = private->uses_cdl ? 0 : 1;
2544 info->format = private->uses_cdl ? DASD_FORMAT_CDL : DASD_FORMAT_LDL;
2545 info->characteristics_size = sizeof(struct dasd_eckd_characteristics);
2546 memcpy(info->characteristics, &private->rdc_data,
2547 sizeof(struct dasd_eckd_characteristics));
Stefan Weinhuber4abb08c2008-08-01 16:39:09 +02002548 info->confdata_size = min((unsigned long)private->conf_len,
2549 sizeof(info->configuration_data));
2550 memcpy(info->configuration_data, private->conf_data,
2551 info->confdata_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002552 return 0;
2553}
2554
2555/*
2556 * SECTION: ioctl functions for eckd devices.
2557 */
2558
2559/*
2560 * Release device ioctl.
Horst Hummel138c0142006-06-29 14:58:12 +02002561 * Buils a channel programm to releases a prior reserved
Linus Torvalds1da177e2005-04-16 15:20:36 -07002562 * (see dasd_eckd_reserve) device.
2563 */
2564static int
Christoph Hellwig1107ccf2006-03-24 03:15:20 -08002565dasd_eckd_release(struct dasd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002566{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002567 struct dasd_ccw_req *cqr;
2568 int rc;
Stefan Weinhuberf3eb5382009-03-26 15:23:48 +01002569 struct ccw1 *ccw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002570
2571 if (!capable(CAP_SYS_ADMIN))
2572 return -EACCES;
2573
Linus Torvalds1da177e2005-04-16 15:20:36 -07002574 cqr = dasd_smalloc_request(dasd_eckd_discipline.name,
2575 1, 32, device);
2576 if (IS_ERR(cqr)) {
Stefan Haberlandfc19f382009-03-26 15:23:49 +01002577 DBF_DEV_EVENT(DBF_WARNING, device, "%s",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002578 "Could not allocate initialization request");
2579 return PTR_ERR(cqr);
2580 }
Stefan Weinhuberf3eb5382009-03-26 15:23:48 +01002581 ccw = cqr->cpaddr;
2582 ccw->cmd_code = DASD_ECKD_CCW_RELEASE;
2583 ccw->flags |= CCW_FLAG_SLI;
2584 ccw->count = 32;
2585 ccw->cda = (__u32)(addr_t) cqr->data;
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002586 cqr->startdev = device;
2587 cqr->memdev = device;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002588 clear_bit(DASD_CQR_FLAGS_USE_ERP, &cqr->flags);
Horst Hummel1c01b8a2006-01-06 00:19:15 -08002589 set_bit(DASD_CQR_FLAGS_FAILFAST, &cqr->flags);
Horst Hummel336c3402007-02-05 21:17:24 +01002590 cqr->retries = 2; /* set retry counter to enable basic ERP */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002591 cqr->expires = 2 * HZ;
2592 cqr->buildclk = get_clock();
2593 cqr->status = DASD_CQR_FILLED;
2594
2595 rc = dasd_sleep_on_immediatly(cqr);
2596
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002597 dasd_sfree_request(cqr, cqr->memdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002598 return rc;
2599}
2600
2601/*
2602 * Reserve device ioctl.
2603 * Options are set to 'synchronous wait for interrupt' and
Horst Hummel138c0142006-06-29 14:58:12 +02002604 * 'timeout the request'. This leads to a terminate IO if
2605 * the interrupt is outstanding for a certain time.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002606 */
2607static int
Christoph Hellwig1107ccf2006-03-24 03:15:20 -08002608dasd_eckd_reserve(struct dasd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002609{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002610 struct dasd_ccw_req *cqr;
2611 int rc;
Stefan Weinhuberf3eb5382009-03-26 15:23:48 +01002612 struct ccw1 *ccw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002613
2614 if (!capable(CAP_SYS_ADMIN))
2615 return -EACCES;
2616
Linus Torvalds1da177e2005-04-16 15:20:36 -07002617 cqr = dasd_smalloc_request(dasd_eckd_discipline.name,
2618 1, 32, device);
2619 if (IS_ERR(cqr)) {
Stefan Haberlandfc19f382009-03-26 15:23:49 +01002620 DBF_DEV_EVENT(DBF_WARNING, device, "%s",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002621 "Could not allocate initialization request");
2622 return PTR_ERR(cqr);
2623 }
Stefan Weinhuberf3eb5382009-03-26 15:23:48 +01002624 ccw = cqr->cpaddr;
2625 ccw->cmd_code = DASD_ECKD_CCW_RESERVE;
2626 ccw->flags |= CCW_FLAG_SLI;
2627 ccw->count = 32;
2628 ccw->cda = (__u32)(addr_t) cqr->data;
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002629 cqr->startdev = device;
2630 cqr->memdev = device;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002631 clear_bit(DASD_CQR_FLAGS_USE_ERP, &cqr->flags);
Horst Hummel1c01b8a2006-01-06 00:19:15 -08002632 set_bit(DASD_CQR_FLAGS_FAILFAST, &cqr->flags);
Horst Hummel336c3402007-02-05 21:17:24 +01002633 cqr->retries = 2; /* set retry counter to enable basic ERP */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002634 cqr->expires = 2 * HZ;
2635 cqr->buildclk = get_clock();
2636 cqr->status = DASD_CQR_FILLED;
2637
2638 rc = dasd_sleep_on_immediatly(cqr);
2639
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002640 dasd_sfree_request(cqr, cqr->memdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002641 return rc;
2642}
2643
2644/*
2645 * Steal lock ioctl - unconditional reserve device.
Horst Hummel138c0142006-06-29 14:58:12 +02002646 * Buils a channel programm to break a device's reservation.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002647 * (unconditional reserve)
2648 */
2649static int
Christoph Hellwig1107ccf2006-03-24 03:15:20 -08002650dasd_eckd_steal_lock(struct dasd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002651{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002652 struct dasd_ccw_req *cqr;
2653 int rc;
Stefan Weinhuberf3eb5382009-03-26 15:23:48 +01002654 struct ccw1 *ccw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002655
2656 if (!capable(CAP_SYS_ADMIN))
2657 return -EACCES;
2658
Linus Torvalds1da177e2005-04-16 15:20:36 -07002659 cqr = dasd_smalloc_request(dasd_eckd_discipline.name,
2660 1, 32, device);
2661 if (IS_ERR(cqr)) {
Stefan Haberlandfc19f382009-03-26 15:23:49 +01002662 DBF_DEV_EVENT(DBF_WARNING, device, "%s",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002663 "Could not allocate initialization request");
2664 return PTR_ERR(cqr);
2665 }
Stefan Weinhuberf3eb5382009-03-26 15:23:48 +01002666 ccw = cqr->cpaddr;
2667 ccw->cmd_code = DASD_ECKD_CCW_SLCK;
2668 ccw->flags |= CCW_FLAG_SLI;
2669 ccw->count = 32;
2670 ccw->cda = (__u32)(addr_t) cqr->data;
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002671 cqr->startdev = device;
2672 cqr->memdev = device;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002673 clear_bit(DASD_CQR_FLAGS_USE_ERP, &cqr->flags);
Horst Hummel1c01b8a2006-01-06 00:19:15 -08002674 set_bit(DASD_CQR_FLAGS_FAILFAST, &cqr->flags);
Horst Hummel336c3402007-02-05 21:17:24 +01002675 cqr->retries = 2; /* set retry counter to enable basic ERP */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002676 cqr->expires = 2 * HZ;
2677 cqr->buildclk = get_clock();
2678 cqr->status = DASD_CQR_FILLED;
2679
2680 rc = dasd_sleep_on_immediatly(cqr);
2681
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002682 dasd_sfree_request(cqr, cqr->memdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002683 return rc;
2684}
2685
2686/*
2687 * Read performance statistics
2688 */
2689static int
Christoph Hellwig1107ccf2006-03-24 03:15:20 -08002690dasd_eckd_performance(struct dasd_device *device, void __user *argp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002691{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002692 struct dasd_psf_prssd_data *prssdp;
2693 struct dasd_rssd_perf_stats_t *stats;
2694 struct dasd_ccw_req *cqr;
2695 struct ccw1 *ccw;
2696 int rc;
2697
Linus Torvalds1da177e2005-04-16 15:20:36 -07002698 cqr = dasd_smalloc_request(dasd_eckd_discipline.name,
2699 1 /* PSF */ + 1 /* RSSD */ ,
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002700 (sizeof(struct dasd_psf_prssd_data) +
2701 sizeof(struct dasd_rssd_perf_stats_t)),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002702 device);
2703 if (IS_ERR(cqr)) {
Stefan Haberlandfc19f382009-03-26 15:23:49 +01002704 DBF_DEV_EVENT(DBF_WARNING, device, "%s",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002705 "Could not allocate initialization request");
2706 return PTR_ERR(cqr);
2707 }
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002708 cqr->startdev = device;
2709 cqr->memdev = device;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002710 cqr->retries = 0;
2711 cqr->expires = 10 * HZ;
2712
2713 /* Prepare for Read Subsystem Data */
2714 prssdp = (struct dasd_psf_prssd_data *) cqr->data;
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002715 memset(prssdp, 0, sizeof(struct dasd_psf_prssd_data));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002716 prssdp->order = PSF_ORDER_PRSSD;
Joe Perches5d67d162008-01-26 14:11:20 +01002717 prssdp->suborder = 0x01; /* Performance Statistics */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002718 prssdp->varies[1] = 0x01; /* Perf Statistics for the Subsystem */
2719
2720 ccw = cqr->cpaddr;
2721 ccw->cmd_code = DASD_ECKD_CCW_PSF;
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002722 ccw->count = sizeof(struct dasd_psf_prssd_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002723 ccw->flags |= CCW_FLAG_CC;
2724 ccw->cda = (__u32)(addr_t) prssdp;
2725
2726 /* Read Subsystem Data - Performance Statistics */
2727 stats = (struct dasd_rssd_perf_stats_t *) (prssdp + 1);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002728 memset(stats, 0, sizeof(struct dasd_rssd_perf_stats_t));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002729
2730 ccw++;
2731 ccw->cmd_code = DASD_ECKD_CCW_RSSD;
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002732 ccw->count = sizeof(struct dasd_rssd_perf_stats_t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002733 ccw->cda = (__u32)(addr_t) stats;
2734
2735 cqr->buildclk = get_clock();
2736 cqr->status = DASD_CQR_FILLED;
2737 rc = dasd_sleep_on(cqr);
2738 if (rc == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002739 prssdp = (struct dasd_psf_prssd_data *) cqr->data;
2740 stats = (struct dasd_rssd_perf_stats_t *) (prssdp + 1);
Christoph Hellwig1107ccf2006-03-24 03:15:20 -08002741 if (copy_to_user(argp, stats,
2742 sizeof(struct dasd_rssd_perf_stats_t)))
2743 rc = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002744 }
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002745 dasd_sfree_request(cqr, cqr->memdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002746 return rc;
2747}
2748
2749/*
2750 * Get attributes (cache operations)
2751 * Returnes the cache attributes used in Define Extend (DE).
2752 */
2753static int
Christoph Hellwig1107ccf2006-03-24 03:15:20 -08002754dasd_eckd_get_attrib(struct dasd_device *device, void __user *argp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002755{
Christoph Hellwig1107ccf2006-03-24 03:15:20 -08002756 struct dasd_eckd_private *private =
2757 (struct dasd_eckd_private *)device->private;
2758 struct attrib_data_t attrib = private->attrib;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002759 int rc;
2760
2761 if (!capable(CAP_SYS_ADMIN))
2762 return -EACCES;
Christoph Hellwig1107ccf2006-03-24 03:15:20 -08002763 if (!argp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002764 return -EINVAL;
2765
Christoph Hellwig1107ccf2006-03-24 03:15:20 -08002766 rc = 0;
2767 if (copy_to_user(argp, (long *) &attrib,
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002768 sizeof(struct attrib_data_t)))
Christoph Hellwig1107ccf2006-03-24 03:15:20 -08002769 rc = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002770
2771 return rc;
2772}
2773
2774/*
2775 * Set attributes (cache operations)
2776 * Stores the attributes for cache operation to be used in Define Extend (DE).
2777 */
2778static int
Christoph Hellwig1107ccf2006-03-24 03:15:20 -08002779dasd_eckd_set_attrib(struct dasd_device *device, void __user *argp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002780{
Christoph Hellwig1107ccf2006-03-24 03:15:20 -08002781 struct dasd_eckd_private *private =
2782 (struct dasd_eckd_private *)device->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002783 struct attrib_data_t attrib;
2784
2785 if (!capable(CAP_SYS_ADMIN))
2786 return -EACCES;
Christoph Hellwig1107ccf2006-03-24 03:15:20 -08002787 if (!argp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002788 return -EINVAL;
2789
Christoph Hellwig1107ccf2006-03-24 03:15:20 -08002790 if (copy_from_user(&attrib, argp, sizeof(struct attrib_data_t)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002791 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002792 private->attrib = attrib;
2793
Stefan Haberlandfc19f382009-03-26 15:23:49 +01002794 dev_info(&device->cdev->dev,
2795 "The DASD cache mode was set to %x (%i cylinder prestage)\n",
2796 private->attrib.operation, private->attrib.nr_cyl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002797 return 0;
2798}
2799
Nigel Hislopab1d8482008-10-10 21:33:25 +02002800/*
2801 * Issue syscall I/O to EMC Symmetrix array.
2802 * CCWs are PSF and RSSD
2803 */
2804static int dasd_symm_io(struct dasd_device *device, void __user *argp)
2805{
2806 struct dasd_symmio_parms usrparm;
2807 char *psf_data, *rssd_result;
2808 struct dasd_ccw_req *cqr;
2809 struct ccw1 *ccw;
2810 int rc;
2811
2812 /* Copy parms from caller */
2813 rc = -EFAULT;
2814 if (copy_from_user(&usrparm, argp, sizeof(usrparm)))
2815 goto out;
2816#ifndef CONFIG_64BIT
2817 /* Make sure pointers are sane even on 31 bit. */
2818 if ((usrparm.psf_data >> 32) != 0 || (usrparm.rssd_result >> 32) != 0) {
2819 rc = -EINVAL;
2820 goto out;
2821 }
2822#endif
2823 /* alloc I/O data area */
2824 psf_data = kzalloc(usrparm.psf_data_len, GFP_KERNEL | GFP_DMA);
2825 rssd_result = kzalloc(usrparm.rssd_result_len, GFP_KERNEL | GFP_DMA);
2826 if (!psf_data || !rssd_result) {
2827 rc = -ENOMEM;
2828 goto out_free;
2829 }
2830
2831 /* get syscall header from user space */
2832 rc = -EFAULT;
2833 if (copy_from_user(psf_data,
2834 (void __user *)(unsigned long) usrparm.psf_data,
2835 usrparm.psf_data_len))
2836 goto out_free;
2837
2838 /* sanity check on syscall header */
2839 if (psf_data[0] != 0x17 && psf_data[1] != 0xce) {
2840 rc = -EINVAL;
2841 goto out_free;
2842 }
2843
2844 /* setup CCWs for PSF + RSSD */
2845 cqr = dasd_smalloc_request("ECKD", 2 , 0, device);
2846 if (IS_ERR(cqr)) {
Stefan Haberlandfc19f382009-03-26 15:23:49 +01002847 DBF_DEV_EVENT(DBF_WARNING, device, "%s",
Nigel Hislopab1d8482008-10-10 21:33:25 +02002848 "Could not allocate initialization request");
2849 rc = PTR_ERR(cqr);
2850 goto out_free;
2851 }
2852
2853 cqr->startdev = device;
2854 cqr->memdev = device;
2855 cqr->retries = 3;
2856 cqr->expires = 10 * HZ;
2857 cqr->buildclk = get_clock();
2858 cqr->status = DASD_CQR_FILLED;
2859
2860 /* Build the ccws */
2861 ccw = cqr->cpaddr;
2862
2863 /* PSF ccw */
2864 ccw->cmd_code = DASD_ECKD_CCW_PSF;
2865 ccw->count = usrparm.psf_data_len;
2866 ccw->flags |= CCW_FLAG_CC;
2867 ccw->cda = (__u32)(addr_t) psf_data;
2868
2869 ccw++;
2870
2871 /* RSSD ccw */
2872 ccw->cmd_code = DASD_ECKD_CCW_RSSD;
2873 ccw->count = usrparm.rssd_result_len;
2874 ccw->flags = CCW_FLAG_SLI ;
2875 ccw->cda = (__u32)(addr_t) rssd_result;
2876
2877 rc = dasd_sleep_on(cqr);
2878 if (rc)
2879 goto out_sfree;
2880
2881 rc = -EFAULT;
2882 if (copy_to_user((void __user *)(unsigned long) usrparm.rssd_result,
2883 rssd_result, usrparm.rssd_result_len))
2884 goto out_sfree;
2885 rc = 0;
2886
2887out_sfree:
2888 dasd_sfree_request(cqr, cqr->memdev);
2889out_free:
2890 kfree(rssd_result);
2891 kfree(psf_data);
2892out:
2893 DBF_DEV_EVENT(DBF_WARNING, device, "Symmetrix ioctl: rc=%d", rc);
2894 return rc;
2895}
2896
Christoph Hellwig1107ccf2006-03-24 03:15:20 -08002897static int
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002898dasd_eckd_ioctl(struct dasd_block *block, unsigned int cmd, void __user *argp)
Christoph Hellwig1107ccf2006-03-24 03:15:20 -08002899{
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01002900 struct dasd_device *device = block->base;
2901
Christoph Hellwig1107ccf2006-03-24 03:15:20 -08002902 switch (cmd) {
2903 case BIODASDGATTR:
2904 return dasd_eckd_get_attrib(device, argp);
2905 case BIODASDSATTR:
2906 return dasd_eckd_set_attrib(device, argp);
2907 case BIODASDPSRD:
2908 return dasd_eckd_performance(device, argp);
2909 case BIODASDRLSE:
2910 return dasd_eckd_release(device);
2911 case BIODASDRSRV:
2912 return dasd_eckd_reserve(device);
2913 case BIODASDSLCK:
2914 return dasd_eckd_steal_lock(device);
Nigel Hislopab1d8482008-10-10 21:33:25 +02002915 case BIODASDSYMMIO:
2916 return dasd_symm_io(device, argp);
Christoph Hellwig1107ccf2006-03-24 03:15:20 -08002917 default:
2918 return -ENOIOCTLCMD;
2919 }
2920}
2921
Linus Torvalds1da177e2005-04-16 15:20:36 -07002922/*
Horst Hummel445b5b42006-06-29 14:57:52 +02002923 * Dump the range of CCWs into 'page' buffer
2924 * and return number of printed chars.
2925 */
Heiko Carstens4d284ca2007-02-05 21:18:53 +01002926static int
Horst Hummel445b5b42006-06-29 14:57:52 +02002927dasd_eckd_dump_ccw_range(struct ccw1 *from, struct ccw1 *to, char *page)
2928{
2929 int len, count;
2930 char *datap;
2931
2932 len = 0;
2933 while (from <= to) {
2934 len += sprintf(page + len, KERN_ERR PRINTK_HEADER
2935 " CCW %p: %08X %08X DAT:",
2936 from, ((int *) from)[0], ((int *) from)[1]);
2937
2938 /* get pointer to data (consider IDALs) */
2939 if (from->flags & CCW_FLAG_IDA)
2940 datap = (char *) *((addr_t *) (addr_t) from->cda);
2941 else
2942 datap = (char *) ((addr_t) from->cda);
2943
2944 /* dump data (max 32 bytes) */
2945 for (count = 0; count < from->count && count < 32; count++) {
2946 if (count % 8 == 0) len += sprintf(page + len, " ");
2947 if (count % 4 == 0) len += sprintf(page + len, " ");
2948 len += sprintf(page + len, "%02x", datap[count]);
2949 }
2950 len += sprintf(page + len, "\n");
2951 from++;
2952 }
2953 return len;
2954}
2955
Stefan Haberlandfc19f382009-03-26 15:23:49 +01002956static void
2957dasd_eckd_dump_sense_dbf(struct dasd_device *device, struct dasd_ccw_req *req,
2958 struct irb *irb, char *reason)
2959{
2960 u64 *sense;
2961 int sl;
2962 struct tsb *tsb;
2963
2964 sense = NULL;
2965 tsb = NULL;
2966 if (req && scsw_is_tm(&req->irb.scsw)) {
2967 if (irb->scsw.tm.tcw)
2968 tsb = tcw_get_tsb(
2969 (struct tcw *)(unsigned long)irb->scsw.tm.tcw);
2970 if (tsb && (irb->scsw.tm.fcxs == 0x01)) {
2971 switch (tsb->flags & 0x07) {
2972 case 1: /* tsa_iostat */
2973 sense = (u64 *)tsb->tsa.iostat.sense;
2974 break;
2975 case 2: /* ts_ddpc */
2976 sense = (u64 *)tsb->tsa.ddpc.sense;
2977 break;
2978 case 3: /* tsa_intrg */
2979 break;
2980 }
2981 }
2982 } else {
2983 if (irb->esw.esw0.erw.cons)
2984 sense = (u64 *)irb->ecw;
2985 }
2986 if (sense) {
2987 for (sl = 0; sl < 4; sl++) {
2988 DBF_DEV_EVENT(DBF_EMERG, device,
2989 "%s: %016llx %016llx %016llx %016llx",
2990 reason, sense[0], sense[1], sense[2],
2991 sense[3]);
2992 }
2993 } else {
2994 DBF_DEV_EVENT(DBF_EMERG, device, "%s",
2995 "SORRY - NO VALID SENSE AVAILABLE\n");
2996 }
2997}
2998
Horst Hummel445b5b42006-06-29 14:57:52 +02002999/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003000 * Print sense data and related channel program.
3001 * Parts are printed because printk buffer is only 1024 bytes.
3002 */
Stefan Weinhuberf3eb5382009-03-26 15:23:48 +01003003static void dasd_eckd_dump_sense_ccw(struct dasd_device *device,
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01003004 struct dasd_ccw_req *req, struct irb *irb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003005{
3006 char *page;
Horst Hummel445b5b42006-06-29 14:57:52 +02003007 struct ccw1 *first, *last, *fail, *from, *to;
3008 int len, sl, sct;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003009
3010 page = (char *) get_zeroed_page(GFP_ATOMIC);
3011 if (page == NULL) {
Stefan Haberlandfc19f382009-03-26 15:23:49 +01003012 DBF_DEV_EVENT(DBF_WARNING, device, "%s",
3013 "No memory to dump sense data\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003014 return;
3015 }
Horst Hummel445b5b42006-06-29 14:57:52 +02003016 /* dump the sense data */
3017 len = sprintf(page, KERN_ERR PRINTK_HEADER
Linus Torvalds1da177e2005-04-16 15:20:36 -07003018 " I/O status report for device %s:\n",
Kay Sievers2a0217d2008-10-10 21:33:09 +02003019 dev_name(&device->cdev->dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003020 len += sprintf(page + len, KERN_ERR PRINTK_HEADER
3021 " in req: %p CS: 0x%02X DS: 0x%02X\n", req,
Stefan Weinhuberf3eb5382009-03-26 15:23:48 +01003022 scsw_cstat(&irb->scsw), scsw_dstat(&irb->scsw));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003023 len += sprintf(page + len, KERN_ERR PRINTK_HEADER
3024 " device %s: Failing CCW: %p\n",
Kay Sievers2a0217d2008-10-10 21:33:09 +02003025 dev_name(&device->cdev->dev),
Peter Oberparleiter23d805b2008-07-14 09:58:50 +02003026 (void *) (addr_t) irb->scsw.cmd.cpa);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003027 if (irb->esw.esw0.erw.cons) {
3028 for (sl = 0; sl < 4; sl++) {
3029 len += sprintf(page + len, KERN_ERR PRINTK_HEADER
3030 " Sense(hex) %2d-%2d:",
3031 (8 * sl), ((8 * sl) + 7));
3032
3033 for (sct = 0; sct < 8; sct++) {
3034 len += sprintf(page + len, " %02x",
3035 irb->ecw[8 * sl + sct]);
3036 }
3037 len += sprintf(page + len, "\n");
3038 }
3039
3040 if (irb->ecw[27] & DASD_SENSE_BIT_0) {
3041 /* 24 Byte Sense Data */
Horst Hummel445b5b42006-06-29 14:57:52 +02003042 sprintf(page + len, KERN_ERR PRINTK_HEADER
3043 " 24 Byte: %x MSG %x, "
3044 "%s MSGb to SYSOP\n",
3045 irb->ecw[7] >> 4, irb->ecw[7] & 0x0f,
3046 irb->ecw[1] & 0x10 ? "" : "no");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003047 } else {
3048 /* 32 Byte Sense Data */
Horst Hummel445b5b42006-06-29 14:57:52 +02003049 sprintf(page + len, KERN_ERR PRINTK_HEADER
3050 " 32 Byte: Format: %x "
3051 "Exception class %x\n",
3052 irb->ecw[6] & 0x0f, irb->ecw[22] >> 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003053 }
3054 } else {
Horst Hummel445b5b42006-06-29 14:57:52 +02003055 sprintf(page + len, KERN_ERR PRINTK_HEADER
3056 " SORRY - NO VALID SENSE AVAILABLE\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003057 }
Horst Hummel445b5b42006-06-29 14:57:52 +02003058 printk("%s", page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003059
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01003060 if (req) {
3061 /* req == NULL for unsolicited interrupts */
3062 /* dump the Channel Program (max 140 Bytes per line) */
3063 /* Count CCW and print first CCWs (maximum 1024 % 140 = 7) */
3064 first = req->cpaddr;
3065 for (last = first; last->flags & (CCW_FLAG_CC | CCW_FLAG_DC); last++);
3066 to = min(first + 6, last);
3067 len = sprintf(page, KERN_ERR PRINTK_HEADER
3068 " Related CP in req: %p\n", req);
3069 dasd_eckd_dump_ccw_range(first, to, page + len);
Horst Hummel445b5b42006-06-29 14:57:52 +02003070 printk("%s", page);
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01003071
3072 /* print failing CCW area (maximum 4) */
3073 /* scsw->cda is either valid or zero */
3074 len = 0;
3075 from = ++to;
Peter Oberparleiter23d805b2008-07-14 09:58:50 +02003076 fail = (struct ccw1 *)(addr_t)
3077 irb->scsw.cmd.cpa; /* failing CCW */
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01003078 if (from < fail - 2) {
3079 from = fail - 2; /* there is a gap - print header */
3080 len += sprintf(page, KERN_ERR PRINTK_HEADER "......\n");
3081 }
3082 to = min(fail + 1, last);
3083 len += dasd_eckd_dump_ccw_range(from, to, page + len);
3084
3085 /* print last CCWs (maximum 2) */
3086 from = max(from, ++to);
3087 if (from < last - 1) {
3088 from = last - 1; /* there is a gap - print header */
3089 len += sprintf(page + len, KERN_ERR PRINTK_HEADER "......\n");
3090 }
3091 len += dasd_eckd_dump_ccw_range(from, last, page + len);
3092 if (len > 0)
3093 printk("%s", page);
3094 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003095 free_page((unsigned long) page);
3096}
3097
Stefan Weinhuberf3eb5382009-03-26 15:23:48 +01003098
3099/*
3100 * Print sense data from a tcw.
3101 */
3102static void dasd_eckd_dump_sense_tcw(struct dasd_device *device,
3103 struct dasd_ccw_req *req, struct irb *irb)
3104{
3105 char *page;
3106 int len, sl, sct, residual;
3107
3108 struct tsb *tsb;
3109 u8 *sense;
3110
3111
3112 page = (char *) get_zeroed_page(GFP_ATOMIC);
3113 if (page == NULL) {
Stefan Haberlandfc19f382009-03-26 15:23:49 +01003114 DBF_DEV_EVENT(DBF_WARNING, device, " %s",
Stefan Weinhuberf3eb5382009-03-26 15:23:48 +01003115 "No memory to dump sense data");
3116 return;
3117 }
3118 /* dump the sense data */
3119 len = sprintf(page, KERN_ERR PRINTK_HEADER
3120 " I/O status report for device %s:\n",
3121 dev_name(&device->cdev->dev));
3122 len += sprintf(page + len, KERN_ERR PRINTK_HEADER
3123 " in req: %p CS: 0x%02X DS: 0x%02X "
3124 "fcxs: 0x%02X schxs: 0x%02X\n", req,
3125 scsw_cstat(&irb->scsw), scsw_dstat(&irb->scsw),
3126 irb->scsw.tm.fcxs, irb->scsw.tm.schxs);
3127 len += sprintf(page + len, KERN_ERR PRINTK_HEADER
3128 " device %s: Failing TCW: %p\n",
3129 dev_name(&device->cdev->dev),
3130 (void *) (addr_t) irb->scsw.tm.tcw);
3131
3132 tsb = NULL;
3133 sense = NULL;
3134 if (irb->scsw.tm.tcw)
3135 tsb = tcw_get_tsb(
3136 (struct tcw *)(unsigned long)irb->scsw.tm.tcw);
3137
3138 if (tsb && (irb->scsw.tm.fcxs == 0x01)) {
3139 len += sprintf(page + len, KERN_ERR PRINTK_HEADER
3140 " tsb->length %d\n", tsb->length);
3141 len += sprintf(page + len, KERN_ERR PRINTK_HEADER
3142 " tsb->flags %x\n", tsb->flags);
3143 len += sprintf(page + len, KERN_ERR PRINTK_HEADER
3144 " tsb->dcw_offset %d\n", tsb->dcw_offset);
3145 len += sprintf(page + len, KERN_ERR PRINTK_HEADER
3146 " tsb->count %d\n", tsb->count);
3147 residual = tsb->count - 28;
3148 len += sprintf(page + len, KERN_ERR PRINTK_HEADER
3149 " residual %d\n", residual);
3150
3151 switch (tsb->flags & 0x07) {
3152 case 1: /* tsa_iostat */
3153 len += sprintf(page + len, KERN_ERR PRINTK_HEADER
3154 " tsb->tsa.iostat.dev_time %d\n",
3155 tsb->tsa.iostat.dev_time);
3156 len += sprintf(page + len, KERN_ERR PRINTK_HEADER
3157 " tsb->tsa.iostat.def_time %d\n",
3158 tsb->tsa.iostat.def_time);
3159 len += sprintf(page + len, KERN_ERR PRINTK_HEADER
3160 " tsb->tsa.iostat.queue_time %d\n",
3161 tsb->tsa.iostat.queue_time);
3162 len += sprintf(page + len, KERN_ERR PRINTK_HEADER
3163 " tsb->tsa.iostat.dev_busy_time %d\n",
3164 tsb->tsa.iostat.dev_busy_time);
3165 len += sprintf(page + len, KERN_ERR PRINTK_HEADER
3166 " tsb->tsa.iostat.dev_act_time %d\n",
3167 tsb->tsa.iostat.dev_act_time);
3168 sense = tsb->tsa.iostat.sense;
3169 break;
3170 case 2: /* ts_ddpc */
3171 len += sprintf(page + len, KERN_ERR PRINTK_HEADER
3172 " tsb->tsa.ddpc.rc %d\n", tsb->tsa.ddpc.rc);
3173 len += sprintf(page + len, KERN_ERR PRINTK_HEADER
3174 " tsb->tsa.ddpc.rcq: ");
3175 for (sl = 0; sl < 16; sl++) {
3176 for (sct = 0; sct < 8; sct++) {
3177 len += sprintf(page + len, " %02x",
3178 tsb->tsa.ddpc.rcq[sl]);
3179 }
3180 len += sprintf(page + len, "\n");
3181 }
3182 sense = tsb->tsa.ddpc.sense;
3183 break;
3184 case 3: /* tsa_intrg */
3185 len += sprintf(page + len, KERN_ERR PRINTK_HEADER
3186 " tsb->tsa.intrg.: not supportet yet \n");
3187 break;
3188 }
3189
3190 if (sense) {
3191 for (sl = 0; sl < 4; sl++) {
3192 len += sprintf(page + len,
3193 KERN_ERR PRINTK_HEADER
3194 " Sense(hex) %2d-%2d:",
3195 (8 * sl), ((8 * sl) + 7));
3196 for (sct = 0; sct < 8; sct++) {
3197 len += sprintf(page + len, " %02x",
3198 sense[8 * sl + sct]);
3199 }
3200 len += sprintf(page + len, "\n");
3201 }
3202
3203 if (sense[27] & DASD_SENSE_BIT_0) {
3204 /* 24 Byte Sense Data */
3205 sprintf(page + len, KERN_ERR PRINTK_HEADER
3206 " 24 Byte: %x MSG %x, "
3207 "%s MSGb to SYSOP\n",
3208 sense[7] >> 4, sense[7] & 0x0f,
3209 sense[1] & 0x10 ? "" : "no");
3210 } else {
3211 /* 32 Byte Sense Data */
3212 sprintf(page + len, KERN_ERR PRINTK_HEADER
3213 " 32 Byte: Format: %x "
3214 "Exception class %x\n",
3215 sense[6] & 0x0f, sense[22] >> 4);
3216 }
3217 } else {
3218 sprintf(page + len, KERN_ERR PRINTK_HEADER
3219 " SORRY - NO VALID SENSE AVAILABLE\n");
3220 }
3221 } else {
3222 sprintf(page + len, KERN_ERR PRINTK_HEADER
3223 " SORRY - NO TSB DATA AVAILABLE\n");
3224 }
3225 printk("%s", page);
3226 free_page((unsigned long) page);
3227}
3228
3229static void dasd_eckd_dump_sense(struct dasd_device *device,
3230 struct dasd_ccw_req *req, struct irb *irb)
3231{
3232 if (req && scsw_is_tm(&req->irb.scsw))
3233 dasd_eckd_dump_sense_tcw(device, req, irb);
3234 else
3235 dasd_eckd_dump_sense_ccw(device, req, irb);
3236}
3237
3238
Linus Torvalds1da177e2005-04-16 15:20:36 -07003239/*
3240 * max_blocks is dependent on the amount of storage that is available
3241 * in the static io buffer for each device. Currently each device has
3242 * 8192 bytes (=2 pages). For 64 bit one dasd_mchunkt_t structure has
3243 * 24 bytes, the struct dasd_ccw_req has 136 bytes and each block can use
3244 * up to 16 bytes (8 for the ccw and 8 for the idal pointer). In
3245 * addition we have one define extent ccw + 16 bytes of data and one
3246 * locate record ccw + 16 bytes of data. That makes:
3247 * (8192 - 24 - 136 - 8 - 16 - 8 - 16) / 16 = 499 blocks at maximum.
3248 * We want to fit two into the available memory so that we can immediately
3249 * start the next request if one finishes off. That makes 249.5 blocks
3250 * for one request. Give a little safety and the result is 240.
3251 */
3252static struct dasd_discipline dasd_eckd_discipline = {
3253 .owner = THIS_MODULE,
3254 .name = "ECKD",
3255 .ebcname = "ECKD",
3256 .max_blocks = 240,
3257 .check_device = dasd_eckd_check_characteristics,
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01003258 .uncheck_device = dasd_eckd_uncheck_device,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003259 .do_analysis = dasd_eckd_do_analysis,
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01003260 .ready_to_online = dasd_eckd_ready_to_online,
3261 .online_to_ready = dasd_eckd_online_to_ready,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003262 .fill_geometry = dasd_eckd_fill_geometry,
3263 .start_IO = dasd_start_IO,
3264 .term_IO = dasd_term_IO,
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01003265 .handle_terminated_request = dasd_eckd_handle_terminated_request,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003266 .format_device = dasd_eckd_format_device,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003267 .erp_action = dasd_eckd_erp_action,
3268 .erp_postaction = dasd_eckd_erp_postaction,
Stefan Weinhuber8e09f212008-01-26 14:11:23 +01003269 .handle_unsolicited_interrupt = dasd_eckd_handle_unsolicited_interrupt,
3270 .build_cp = dasd_eckd_build_alias_cp,
3271 .free_cp = dasd_eckd_free_alias_cp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003272 .dump_sense = dasd_eckd_dump_sense,
Stefan Haberlandfc19f382009-03-26 15:23:49 +01003273 .dump_sense_dbf = dasd_eckd_dump_sense_dbf,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003274 .fill_info = dasd_eckd_fill_info,
Christoph Hellwig1107ccf2006-03-24 03:15:20 -08003275 .ioctl = dasd_eckd_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003276};
3277
3278static int __init
3279dasd_eckd_init(void)
3280{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003281 ASCEBC(dasd_eckd_discipline.ebcname, 4);
Horst Hummel40545572006-06-29 15:08:18 +02003282 return ccw_driver_register(&dasd_eckd_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003283}
3284
3285static void __exit
3286dasd_eckd_cleanup(void)
3287{
3288 ccw_driver_unregister(&dasd_eckd_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003289}
3290
3291module_init(dasd_eckd_init);
3292module_exit(dasd_eckd_cleanup);