2 * Author(s)......: Holger Smolinski <Holger.Smolinski@de.ibm.com>
3 * Horst Hummel <Horst.Hummel@de.ibm.com>
4 * Carsten Otte <Cotte@de.ibm.com>
5 * Martin Schwidefsky <schwidefsky@de.ibm.com>
6 * Bugreports.to..: <Linux390@de.ibm.com>
7 * Copyright IBM Corp. 1999, 2009
8 * EMC Symmetrix ioctl Copyright EMC Corporation, 2008
9 * Author.........: Nigel Hislop <hislop_nigel@emc.com>
12 #define KMSG_COMPONENT "dasd-eckd"
14 #include <linux/stddef.h>
15 #include <linux/kernel.h>
16 #include <linux/slab.h>
17 #include <linux/hdreg.h> /* HDIO_GETGEO */
18 #include <linux/bio.h>
19 #include <linux/module.h>
20 #include <linux/compat.h>
21 #include <linux/init.h>
23 #include <asm/css_chars.h>
24 #include <asm/debug.h>
25 #include <asm/idals.h>
26 #include <asm/ebcdic.h>
28 #include <asm/uaccess.h>
30 #include <asm/ccwdev.h>
34 #include "dasd_eckd.h"
38 #endif /* PRINTK_HEADER */
39 #define PRINTK_HEADER "dasd(eckd):"
41 #define ECKD_C0(i) (i->home_bytes)
42 #define ECKD_F(i) (i->formula)
43 #define ECKD_F1(i) (ECKD_F(i)==0x01?(i->factors.f_0x01.f1):\
44 (i->factors.f_0x02.f1))
45 #define ECKD_F2(i) (ECKD_F(i)==0x01?(i->factors.f_0x01.f2):\
46 (i->factors.f_0x02.f2))
47 #define ECKD_F3(i) (ECKD_F(i)==0x01?(i->factors.f_0x01.f3):\
48 (i->factors.f_0x02.f3))
49 #define ECKD_F4(i) (ECKD_F(i)==0x02?(i->factors.f_0x02.f4):0)
50 #define ECKD_F5(i) (ECKD_F(i)==0x02?(i->factors.f_0x02.f5):0)
51 #define ECKD_F6(i) (i->factor6)
52 #define ECKD_F7(i) (i->factor7)
53 #define ECKD_F8(i) (i->factor8)
56 * raw track access always map to 64k in memory
57 * so it maps to 16 blocks of 4k per track
59 #define DASD_RAW_BLOCK_PER_TRACK 16
60 #define DASD_RAW_BLOCKSIZE 4096
61 /* 64k are 128 x 512 byte sectors */
62 #define DASD_RAW_SECTORS_PER_TRACK 128
64 MODULE_LICENSE("GPL");
66 static struct dasd_discipline dasd_eckd_discipline;
68 /* The ccw bus type uses this table to find devices that it sends to
70 static struct ccw_device_id dasd_eckd_ids[] = {
71 { CCW_DEVICE_DEVTYPE (0x3990, 0, 0x3390, 0), .driver_info = 0x1},
72 { CCW_DEVICE_DEVTYPE (0x2105, 0, 0x3390, 0), .driver_info = 0x2},
73 { CCW_DEVICE_DEVTYPE (0x3880, 0, 0x3380, 0), .driver_info = 0x3},
74 { CCW_DEVICE_DEVTYPE (0x3990, 0, 0x3380, 0), .driver_info = 0x4},
75 { CCW_DEVICE_DEVTYPE (0x2105, 0, 0x3380, 0), .driver_info = 0x5},
76 { CCW_DEVICE_DEVTYPE (0x9343, 0, 0x9345, 0), .driver_info = 0x6},
77 { CCW_DEVICE_DEVTYPE (0x2107, 0, 0x3390, 0), .driver_info = 0x7},
78 { CCW_DEVICE_DEVTYPE (0x2107, 0, 0x3380, 0), .driver_info = 0x8},
79 { CCW_DEVICE_DEVTYPE (0x1750, 0, 0x3390, 0), .driver_info = 0x9},
80 { CCW_DEVICE_DEVTYPE (0x1750, 0, 0x3380, 0), .driver_info = 0xa},
81 { /* end of list */ },
84 MODULE_DEVICE_TABLE(ccw, dasd_eckd_ids);
86 static struct ccw_driver dasd_eckd_driver; /* see below */
89 #define INIT_CQR_UNFORMATTED 1
90 #define INIT_CQR_ERROR 2
92 /* emergency request for reserve/release */
94 struct dasd_ccw_req cqr;
98 static DEFINE_MUTEX(dasd_reserve_mutex);
100 /* definitions for the path verification worker */
101 struct path_verification_work_data {
102 struct work_struct worker;
103 struct dasd_device *device;
104 struct dasd_ccw_req cqr;
106 __u8 rcd_buffer[DASD_ECKD_RCD_DATA_SIZE];
110 static struct path_verification_work_data *path_verification_worker;
111 static DEFINE_MUTEX(dasd_path_verification_mutex);
113 /* initial attempt at a probe function. this can be simplified once
114 * the other detection code is gone */
116 dasd_eckd_probe (struct ccw_device *cdev)
120 /* set ECKD specific ccw-device options */
121 ret = ccw_device_set_options(cdev, CCWDEV_ALLOW_FORCE |
122 CCWDEV_DO_PATHGROUP | CCWDEV_DO_MULTIPATH);
124 DBF_EVENT_DEVID(DBF_WARNING, cdev, "%s",
125 "dasd_eckd_probe: could not set "
126 "ccw-device options");
129 ret = dasd_generic_probe(cdev, &dasd_eckd_discipline);
134 dasd_eckd_set_online(struct ccw_device *cdev)
136 return dasd_generic_set_online(cdev, &dasd_eckd_discipline);
139 static const int sizes_trk0[] = { 28, 148, 84 };
140 #define LABEL_SIZE 140
142 /* head and record addresses of count_area read in analysis ccw */
143 static const int count_area_head[] = { 0, 0, 0, 0, 2 };
144 static const int count_area_rec[] = { 1, 2, 3, 4, 1 };
146 static inline unsigned int
147 round_up_multiple(unsigned int no, unsigned int mult)
150 return (rem ? no - rem + mult : no);
153 static inline unsigned int
154 ceil_quot(unsigned int d1, unsigned int d2)
156 return (d1 + (d2 - 1)) / d2;
160 recs_per_track(struct dasd_eckd_characteristics * rdc,
161 unsigned int kl, unsigned int dl)
165 switch (rdc->dev_type) {
168 return 1499 / (15 + 7 + ceil_quot(kl + 12, 32) +
169 ceil_quot(dl + 12, 32));
171 return 1499 / (15 + ceil_quot(dl + 12, 32));
173 dn = ceil_quot(dl + 6, 232) + 1;
175 kn = ceil_quot(kl + 6, 232) + 1;
176 return 1729 / (10 + 9 + ceil_quot(kl + 6 * kn, 34) +
177 9 + ceil_quot(dl + 6 * dn, 34));
179 return 1729 / (10 + 9 + ceil_quot(dl + 6 * dn, 34));
181 dn = ceil_quot(dl + 6, 232) + 1;
183 kn = ceil_quot(kl + 6, 232) + 1;
184 return 1420 / (18 + 7 + ceil_quot(kl + 6 * kn, 34) +
185 ceil_quot(dl + 6 * dn, 34));
187 return 1420 / (18 + 7 + ceil_quot(dl + 6 * dn, 34));
192 static void set_ch_t(struct ch_t *geo, __u32 cyl, __u8 head)
194 geo->cyl = (__u16) cyl;
195 geo->head = cyl >> 16;
201 check_XRC (struct ccw1 *de_ccw,
202 struct DE_eckd_data *data,
203 struct dasd_device *device)
205 struct dasd_eckd_private *private;
208 private = (struct dasd_eckd_private *) device->private;
209 if (!private->rdc_data.facilities.XRC_supported)
212 /* switch on System Time Stamp - needed for XRC Support */
213 data->ga_extended |= 0x08; /* switch on 'Time Stamp Valid' */
214 data->ga_extended |= 0x02; /* switch on 'Extended Parameter' */
216 rc = get_sync_clock(&data->ep_sys_time);
217 /* Ignore return code if sync clock is switched off. */
218 if (rc == -EOPNOTSUPP || rc == -EACCES)
221 de_ccw->count = sizeof(struct DE_eckd_data);
222 de_ccw->flags |= CCW_FLAG_SLI;
227 define_extent(struct ccw1 *ccw, struct DE_eckd_data *data, unsigned int trk,
228 unsigned int totrk, int cmd, struct dasd_device *device)
230 struct dasd_eckd_private *private;
232 u16 heads, beghead, endhead;
235 private = (struct dasd_eckd_private *) device->private;
237 ccw->cmd_code = DASD_ECKD_CCW_DEFINE_EXTENT;
240 ccw->cda = (__u32) __pa(data);
242 memset(data, 0, sizeof(struct DE_eckd_data));
244 case DASD_ECKD_CCW_READ_HOME_ADDRESS:
245 case DASD_ECKD_CCW_READ_RECORD_ZERO:
246 case DASD_ECKD_CCW_READ:
247 case DASD_ECKD_CCW_READ_MT:
248 case DASD_ECKD_CCW_READ_CKD:
249 case DASD_ECKD_CCW_READ_CKD_MT:
250 case DASD_ECKD_CCW_READ_KD:
251 case DASD_ECKD_CCW_READ_KD_MT:
252 case DASD_ECKD_CCW_READ_COUNT:
253 data->mask.perm = 0x1;
254 data->attributes.operation = private->attrib.operation;
256 case DASD_ECKD_CCW_WRITE:
257 case DASD_ECKD_CCW_WRITE_MT:
258 case DASD_ECKD_CCW_WRITE_KD:
259 case DASD_ECKD_CCW_WRITE_KD_MT:
260 data->mask.perm = 0x02;
261 data->attributes.operation = private->attrib.operation;
262 rc = check_XRC (ccw, data, device);
264 case DASD_ECKD_CCW_WRITE_CKD:
265 case DASD_ECKD_CCW_WRITE_CKD_MT:
266 data->attributes.operation = DASD_BYPASS_CACHE;
267 rc = check_XRC (ccw, data, device);
269 case DASD_ECKD_CCW_ERASE:
270 case DASD_ECKD_CCW_WRITE_HOME_ADDRESS:
271 case DASD_ECKD_CCW_WRITE_RECORD_ZERO:
272 data->mask.perm = 0x3;
273 data->mask.auth = 0x1;
274 data->attributes.operation = DASD_BYPASS_CACHE;
275 rc = check_XRC (ccw, data, device);
278 dev_err(&device->cdev->dev,
279 "0x%x is not a known command\n", cmd);
283 data->attributes.mode = 0x3; /* ECKD */
285 if ((private->rdc_data.cu_type == 0x2105 ||
286 private->rdc_data.cu_type == 0x2107 ||
287 private->rdc_data.cu_type == 0x1750)
288 && !(private->uses_cdl && trk < 2))
289 data->ga_extended |= 0x40; /* Regular Data Format Mode */
291 heads = private->rdc_data.trk_per_cyl;
292 begcyl = trk / heads;
293 beghead = trk % heads;
294 endcyl = totrk / heads;
295 endhead = totrk % heads;
297 /* check for sequential prestage - enhance cylinder range */
298 if (data->attributes.operation == DASD_SEQ_PRESTAGE ||
299 data->attributes.operation == DASD_SEQ_ACCESS) {
301 if (endcyl + private->attrib.nr_cyl < private->real_cyl)
302 endcyl += private->attrib.nr_cyl;
304 endcyl = (private->real_cyl - 1);
307 set_ch_t(&data->beg_ext, begcyl, beghead);
308 set_ch_t(&data->end_ext, endcyl, endhead);
312 static int check_XRC_on_prefix(struct PFX_eckd_data *pfxdata,
313 struct dasd_device *device)
315 struct dasd_eckd_private *private;
318 private = (struct dasd_eckd_private *) device->private;
319 if (!private->rdc_data.facilities.XRC_supported)
322 /* switch on System Time Stamp - needed for XRC Support */
323 pfxdata->define_extent.ga_extended |= 0x08; /* 'Time Stamp Valid' */
324 pfxdata->define_extent.ga_extended |= 0x02; /* 'Extended Parameter' */
325 pfxdata->validity.time_stamp = 1; /* 'Time Stamp Valid' */
327 rc = get_sync_clock(&pfxdata->define_extent.ep_sys_time);
328 /* Ignore return code if sync clock is switched off. */
329 if (rc == -EOPNOTSUPP || rc == -EACCES)
334 static void fill_LRE_data(struct LRE_eckd_data *data, unsigned int trk,
335 unsigned int rec_on_trk, int count, int cmd,
336 struct dasd_device *device, unsigned int reclen,
339 struct dasd_eckd_private *private;
343 private = (struct dasd_eckd_private *) device->private;
345 memset(data, 0, sizeof(*data));
348 switch (private->rdc_data.dev_type) {
350 dn = ceil_quot(reclen + 6, 232);
351 d = 9 + ceil_quot(reclen + 6 * (dn + 1), 34);
352 sector = (49 + (rec_on_trk - 1) * (10 + d)) / 8;
355 d = 7 + ceil_quot(reclen + 12, 32);
356 sector = (39 + (rec_on_trk - 1) * (8 + d)) / 7;
360 data->sector = sector;
361 /* note: meaning of count depends on the operation
362 * for record based I/O it's the number of records, but for
363 * track based I/O it's the number of tracks
367 case DASD_ECKD_CCW_WRITE_HOME_ADDRESS:
368 data->operation.orientation = 0x3;
369 data->operation.operation = 0x03;
371 case DASD_ECKD_CCW_READ_HOME_ADDRESS:
372 data->operation.orientation = 0x3;
373 data->operation.operation = 0x16;
375 case DASD_ECKD_CCW_WRITE_RECORD_ZERO:
376 data->operation.orientation = 0x1;
377 data->operation.operation = 0x03;
380 case DASD_ECKD_CCW_READ_RECORD_ZERO:
381 data->operation.orientation = 0x3;
382 data->operation.operation = 0x16;
385 case DASD_ECKD_CCW_WRITE:
386 case DASD_ECKD_CCW_WRITE_MT:
387 case DASD_ECKD_CCW_WRITE_KD:
388 case DASD_ECKD_CCW_WRITE_KD_MT:
389 data->auxiliary.length_valid = 0x1;
390 data->length = reclen;
391 data->operation.operation = 0x01;
393 case DASD_ECKD_CCW_WRITE_CKD:
394 case DASD_ECKD_CCW_WRITE_CKD_MT:
395 data->auxiliary.length_valid = 0x1;
396 data->length = reclen;
397 data->operation.operation = 0x03;
399 case DASD_ECKD_CCW_WRITE_FULL_TRACK:
400 data->operation.orientation = 0x0;
401 data->operation.operation = 0x3F;
402 data->extended_operation = 0x11;
404 data->extended_parameter_length = 0x02;
405 if (data->count > 8) {
406 data->extended_parameter[0] = 0xFF;
407 data->extended_parameter[1] = 0xFF;
408 data->extended_parameter[1] <<= (16 - count);
410 data->extended_parameter[0] = 0xFF;
411 data->extended_parameter[0] <<= (8 - count);
412 data->extended_parameter[1] = 0x00;
416 case DASD_ECKD_CCW_WRITE_TRACK_DATA:
417 data->auxiliary.length_valid = 0x1;
418 data->length = reclen; /* not tlf, as one might think */
419 data->operation.operation = 0x3F;
420 data->extended_operation = 0x23;
422 case DASD_ECKD_CCW_READ:
423 case DASD_ECKD_CCW_READ_MT:
424 case DASD_ECKD_CCW_READ_KD:
425 case DASD_ECKD_CCW_READ_KD_MT:
426 data->auxiliary.length_valid = 0x1;
427 data->length = reclen;
428 data->operation.operation = 0x06;
430 case DASD_ECKD_CCW_READ_CKD:
431 case DASD_ECKD_CCW_READ_CKD_MT:
432 data->auxiliary.length_valid = 0x1;
433 data->length = reclen;
434 data->operation.operation = 0x16;
436 case DASD_ECKD_CCW_READ_COUNT:
437 data->operation.operation = 0x06;
439 case DASD_ECKD_CCW_READ_TRACK:
440 data->operation.orientation = 0x1;
441 data->operation.operation = 0x0C;
442 data->extended_parameter_length = 0;
445 case DASD_ECKD_CCW_READ_TRACK_DATA:
446 data->auxiliary.length_valid = 0x1;
448 data->operation.operation = 0x0C;
450 case DASD_ECKD_CCW_ERASE:
451 data->length = reclen;
452 data->auxiliary.length_valid = 0x1;
453 data->operation.operation = 0x0b;
456 DBF_DEV_EVENT(DBF_ERR, device,
457 "fill LRE unknown opcode 0x%x", cmd);
460 set_ch_t(&data->seek_addr,
461 trk / private->rdc_data.trk_per_cyl,
462 trk % private->rdc_data.trk_per_cyl);
463 data->search_arg.cyl = data->seek_addr.cyl;
464 data->search_arg.head = data->seek_addr.head;
465 data->search_arg.record = rec_on_trk;
468 static int prefix_LRE(struct ccw1 *ccw, struct PFX_eckd_data *pfxdata,
469 unsigned int trk, unsigned int totrk, int cmd,
470 struct dasd_device *basedev, struct dasd_device *startdev,
471 unsigned char format, unsigned int rec_on_trk, int count,
472 unsigned int blksize, unsigned int tlf)
474 struct dasd_eckd_private *basepriv, *startpriv;
475 struct DE_eckd_data *dedata;
476 struct LRE_eckd_data *lredata;
478 u16 heads, beghead, endhead;
481 basepriv = (struct dasd_eckd_private *) basedev->private;
482 startpriv = (struct dasd_eckd_private *) startdev->private;
483 dedata = &pfxdata->define_extent;
484 lredata = &pfxdata->locate_record;
486 ccw->cmd_code = DASD_ECKD_CCW_PFX;
488 if (cmd == DASD_ECKD_CCW_WRITE_FULL_TRACK) {
489 ccw->count = sizeof(*pfxdata) + 2;
490 ccw->cda = (__u32) __pa(pfxdata);
491 memset(pfxdata, 0, sizeof(*pfxdata) + 2);
493 ccw->count = sizeof(*pfxdata);
494 ccw->cda = (__u32) __pa(pfxdata);
495 memset(pfxdata, 0, sizeof(*pfxdata));
500 DBF_DEV_EVENT(DBF_ERR, basedev,
501 "PFX LRE unknown format 0x%x", format);
505 pfxdata->format = format;
506 pfxdata->base_address = basepriv->ned->unit_addr;
507 pfxdata->base_lss = basepriv->ned->ID;
508 pfxdata->validity.define_extent = 1;
510 /* private uid is kept up to date, conf_data may be outdated */
511 if (startpriv->uid.type != UA_BASE_DEVICE) {
512 pfxdata->validity.verify_base = 1;
513 if (startpriv->uid.type == UA_HYPER_PAV_ALIAS)
514 pfxdata->validity.hyper_pav = 1;
517 /* define extend data (mostly)*/
519 case DASD_ECKD_CCW_READ_HOME_ADDRESS:
520 case DASD_ECKD_CCW_READ_RECORD_ZERO:
521 case DASD_ECKD_CCW_READ:
522 case DASD_ECKD_CCW_READ_MT:
523 case DASD_ECKD_CCW_READ_CKD:
524 case DASD_ECKD_CCW_READ_CKD_MT:
525 case DASD_ECKD_CCW_READ_KD:
526 case DASD_ECKD_CCW_READ_KD_MT:
527 case DASD_ECKD_CCW_READ_COUNT:
528 dedata->mask.perm = 0x1;
529 dedata->attributes.operation = basepriv->attrib.operation;
531 case DASD_ECKD_CCW_READ_TRACK:
532 case DASD_ECKD_CCW_READ_TRACK_DATA:
533 dedata->mask.perm = 0x1;
534 dedata->attributes.operation = basepriv->attrib.operation;
535 dedata->blk_size = 0;
537 case DASD_ECKD_CCW_WRITE:
538 case DASD_ECKD_CCW_WRITE_MT:
539 case DASD_ECKD_CCW_WRITE_KD:
540 case DASD_ECKD_CCW_WRITE_KD_MT:
541 dedata->mask.perm = 0x02;
542 dedata->attributes.operation = basepriv->attrib.operation;
543 rc = check_XRC_on_prefix(pfxdata, basedev);
545 case DASD_ECKD_CCW_WRITE_CKD:
546 case DASD_ECKD_CCW_WRITE_CKD_MT:
547 dedata->attributes.operation = DASD_BYPASS_CACHE;
548 rc = check_XRC_on_prefix(pfxdata, basedev);
550 case DASD_ECKD_CCW_ERASE:
551 case DASD_ECKD_CCW_WRITE_HOME_ADDRESS:
552 case DASD_ECKD_CCW_WRITE_RECORD_ZERO:
553 dedata->mask.perm = 0x3;
554 dedata->mask.auth = 0x1;
555 dedata->attributes.operation = DASD_BYPASS_CACHE;
556 rc = check_XRC_on_prefix(pfxdata, basedev);
558 case DASD_ECKD_CCW_WRITE_FULL_TRACK:
559 dedata->mask.perm = 0x03;
560 dedata->attributes.operation = basepriv->attrib.operation;
561 dedata->blk_size = 0;
563 case DASD_ECKD_CCW_WRITE_TRACK_DATA:
564 dedata->mask.perm = 0x02;
565 dedata->attributes.operation = basepriv->attrib.operation;
566 dedata->blk_size = blksize;
567 rc = check_XRC_on_prefix(pfxdata, basedev);
570 DBF_DEV_EVENT(DBF_ERR, basedev,
571 "PFX LRE unknown opcode 0x%x", cmd);
576 dedata->attributes.mode = 0x3; /* ECKD */
578 if ((basepriv->rdc_data.cu_type == 0x2105 ||
579 basepriv->rdc_data.cu_type == 0x2107 ||
580 basepriv->rdc_data.cu_type == 0x1750)
581 && !(basepriv->uses_cdl && trk < 2))
582 dedata->ga_extended |= 0x40; /* Regular Data Format Mode */
584 heads = basepriv->rdc_data.trk_per_cyl;
585 begcyl = trk / heads;
586 beghead = trk % heads;
587 endcyl = totrk / heads;
588 endhead = totrk % heads;
590 /* check for sequential prestage - enhance cylinder range */
591 if (dedata->attributes.operation == DASD_SEQ_PRESTAGE ||
592 dedata->attributes.operation == DASD_SEQ_ACCESS) {
594 if (endcyl + basepriv->attrib.nr_cyl < basepriv->real_cyl)
595 endcyl += basepriv->attrib.nr_cyl;
597 endcyl = (basepriv->real_cyl - 1);
600 set_ch_t(&dedata->beg_ext, begcyl, beghead);
601 set_ch_t(&dedata->end_ext, endcyl, endhead);
604 fill_LRE_data(lredata, trk, rec_on_trk, count, cmd,
605 basedev, blksize, tlf);
611 static int prefix(struct ccw1 *ccw, struct PFX_eckd_data *pfxdata,
612 unsigned int trk, unsigned int totrk, int cmd,
613 struct dasd_device *basedev, struct dasd_device *startdev)
615 return prefix_LRE(ccw, pfxdata, trk, totrk, cmd, basedev, startdev,
620 locate_record(struct ccw1 *ccw, struct LO_eckd_data *data, unsigned int trk,
621 unsigned int rec_on_trk, int no_rec, int cmd,
622 struct dasd_device * device, int reclen)
624 struct dasd_eckd_private *private;
628 private = (struct dasd_eckd_private *) device->private;
630 DBF_DEV_EVENT(DBF_INFO, device,
631 "Locate: trk %d, rec %d, no_rec %d, cmd %d, reclen %d",
632 trk, rec_on_trk, no_rec, cmd, reclen);
634 ccw->cmd_code = DASD_ECKD_CCW_LOCATE_RECORD;
637 ccw->cda = (__u32) __pa(data);
639 memset(data, 0, sizeof(struct LO_eckd_data));
642 switch (private->rdc_data.dev_type) {
644 dn = ceil_quot(reclen + 6, 232);
645 d = 9 + ceil_quot(reclen + 6 * (dn + 1), 34);
646 sector = (49 + (rec_on_trk - 1) * (10 + d)) / 8;
649 d = 7 + ceil_quot(reclen + 12, 32);
650 sector = (39 + (rec_on_trk - 1) * (8 + d)) / 7;
654 data->sector = sector;
655 data->count = no_rec;
657 case DASD_ECKD_CCW_WRITE_HOME_ADDRESS:
658 data->operation.orientation = 0x3;
659 data->operation.operation = 0x03;
661 case DASD_ECKD_CCW_READ_HOME_ADDRESS:
662 data->operation.orientation = 0x3;
663 data->operation.operation = 0x16;
665 case DASD_ECKD_CCW_WRITE_RECORD_ZERO:
666 data->operation.orientation = 0x1;
667 data->operation.operation = 0x03;
670 case DASD_ECKD_CCW_READ_RECORD_ZERO:
671 data->operation.orientation = 0x3;
672 data->operation.operation = 0x16;
675 case DASD_ECKD_CCW_WRITE:
676 case DASD_ECKD_CCW_WRITE_MT:
677 case DASD_ECKD_CCW_WRITE_KD:
678 case DASD_ECKD_CCW_WRITE_KD_MT:
679 data->auxiliary.last_bytes_used = 0x1;
680 data->length = reclen;
681 data->operation.operation = 0x01;
683 case DASD_ECKD_CCW_WRITE_CKD:
684 case DASD_ECKD_CCW_WRITE_CKD_MT:
685 data->auxiliary.last_bytes_used = 0x1;
686 data->length = reclen;
687 data->operation.operation = 0x03;
689 case DASD_ECKD_CCW_READ:
690 case DASD_ECKD_CCW_READ_MT:
691 case DASD_ECKD_CCW_READ_KD:
692 case DASD_ECKD_CCW_READ_KD_MT:
693 data->auxiliary.last_bytes_used = 0x1;
694 data->length = reclen;
695 data->operation.operation = 0x06;
697 case DASD_ECKD_CCW_READ_CKD:
698 case DASD_ECKD_CCW_READ_CKD_MT:
699 data->auxiliary.last_bytes_used = 0x1;
700 data->length = reclen;
701 data->operation.operation = 0x16;
703 case DASD_ECKD_CCW_READ_COUNT:
704 data->operation.operation = 0x06;
706 case DASD_ECKD_CCW_ERASE:
707 data->length = reclen;
708 data->auxiliary.last_bytes_used = 0x1;
709 data->operation.operation = 0x0b;
712 DBF_DEV_EVENT(DBF_ERR, device, "unknown locate record "
715 set_ch_t(&data->seek_addr,
716 trk / private->rdc_data.trk_per_cyl,
717 trk % private->rdc_data.trk_per_cyl);
718 data->search_arg.cyl = data->seek_addr.cyl;
719 data->search_arg.head = data->seek_addr.head;
720 data->search_arg.record = rec_on_trk;
724 * Returns 1 if the block is one of the special blocks that needs
725 * to get read/written with the KD variant of the command.
726 * That is DASD_ECKD_READ_KD_MT instead of DASD_ECKD_READ_MT and
727 * DASD_ECKD_WRITE_KD_MT instead of DASD_ECKD_WRITE_MT.
728 * Luckily the KD variants differ only by one bit (0x08) from the
729 * normal variant. So don't wonder about code like:
730 * if (dasd_eckd_cdl_special(blk_per_trk, recid))
731 * ccw->cmd_code |= 0x8;
734 dasd_eckd_cdl_special(int blk_per_trk, int recid)
738 if (recid < blk_per_trk)
740 if (recid < 2 * blk_per_trk)
746 * Returns the record size for the special blocks of the cdl format.
747 * Only returns something useful if dasd_eckd_cdl_special is true
751 dasd_eckd_cdl_reclen(int recid)
754 return sizes_trk0[recid];
757 /* create unique id from private structure. */
758 static void create_uid(struct dasd_eckd_private *private)
761 struct dasd_uid *uid;
764 memset(uid, 0, sizeof(struct dasd_uid));
765 memcpy(uid->vendor, private->ned->HDA_manufacturer,
766 sizeof(uid->vendor) - 1);
767 EBCASC(uid->vendor, sizeof(uid->vendor) - 1);
768 memcpy(uid->serial, private->ned->HDA_location,
769 sizeof(uid->serial) - 1);
770 EBCASC(uid->serial, sizeof(uid->serial) - 1);
771 uid->ssid = private->gneq->subsystemID;
772 uid->real_unit_addr = private->ned->unit_addr;
774 uid->type = private->sneq->sua_flags;
775 if (uid->type == UA_BASE_PAV_ALIAS)
776 uid->base_unit_addr = private->sneq->base_unit_addr;
778 uid->type = UA_BASE_DEVICE;
780 if (private->vdsneq) {
781 for (count = 0; count < 16; count++) {
782 sprintf(uid->vduit+2*count, "%02x",
783 private->vdsneq->uit[count]);
789 * Generate device unique id that specifies the physical device.
791 static int dasd_eckd_generate_uid(struct dasd_device *device)
793 struct dasd_eckd_private *private;
796 private = (struct dasd_eckd_private *) device->private;
799 if (!private->ned || !private->gneq)
801 spin_lock_irqsave(get_ccwdev_lock(device->cdev), flags);
803 spin_unlock_irqrestore(get_ccwdev_lock(device->cdev), flags);
807 static int dasd_eckd_get_uid(struct dasd_device *device, struct dasd_uid *uid)
809 struct dasd_eckd_private *private;
812 if (device->private) {
813 private = (struct dasd_eckd_private *)device->private;
814 spin_lock_irqsave(get_ccwdev_lock(device->cdev), flags);
816 spin_unlock_irqrestore(get_ccwdev_lock(device->cdev), flags);
823 * compare device UID with data of a given dasd_eckd_private structure
826 static int dasd_eckd_compare_path_uid(struct dasd_device *device,
827 struct dasd_eckd_private *private)
829 struct dasd_uid device_uid;
832 dasd_eckd_get_uid(device, &device_uid);
834 return memcmp(&device_uid, &private->uid, sizeof(struct dasd_uid));
837 static void dasd_eckd_fill_rcd_cqr(struct dasd_device *device,
838 struct dasd_ccw_req *cqr,
844 * buffer has to start with EBCDIC "V1.0" to show
845 * support for virtual device SNEQ
847 rcd_buffer[0] = 0xE5;
848 rcd_buffer[1] = 0xF1;
849 rcd_buffer[2] = 0x4B;
850 rcd_buffer[3] = 0xF0;
853 ccw->cmd_code = DASD_ECKD_CCW_RCD;
855 ccw->cda = (__u32)(addr_t)rcd_buffer;
856 ccw->count = DASD_ECKD_RCD_DATA_SIZE;
857 cqr->magic = DASD_ECKD_MAGIC;
859 cqr->startdev = device;
860 cqr->memdev = device;
862 cqr->expires = 10*HZ;
865 cqr->buildclk = get_clock();
866 cqr->status = DASD_CQR_FILLED;
867 set_bit(DASD_CQR_VERIFY_PATH, &cqr->flags);
871 * Wakeup helper for read_conf
872 * if the cqr is not done and needs some error recovery
873 * the buffer has to be re-initialized with the EBCDIC "V1.0"
874 * to show support for virtual device SNEQ
876 static void read_conf_cb(struct dasd_ccw_req *cqr, void *data)
881 if (cqr->status != DASD_CQR_DONE) {
883 rcd_buffer = (__u8 *)((addr_t) ccw->cda);
884 memset(rcd_buffer, 0, sizeof(*rcd_buffer));
886 rcd_buffer[0] = 0xE5;
887 rcd_buffer[1] = 0xF1;
888 rcd_buffer[2] = 0x4B;
889 rcd_buffer[3] = 0xF0;
891 dasd_wakeup_cb(cqr, data);
894 static int dasd_eckd_read_conf_immediately(struct dasd_device *device,
895 struct dasd_ccw_req *cqr,
902 * sanity check: scan for RCD command in extended SenseID data
903 * some devices do not support RCD
905 ciw = ccw_device_get_ciw(device->cdev, CIW_TYPE_RCD);
906 if (!ciw || ciw->cmd != DASD_ECKD_CCW_RCD)
909 dasd_eckd_fill_rcd_cqr(device, cqr, rcd_buffer, lpm);
910 clear_bit(DASD_CQR_FLAGS_USE_ERP, &cqr->flags);
911 set_bit(DASD_CQR_ALLOW_SLOCK, &cqr->flags);
913 cqr->callback = read_conf_cb;
914 rc = dasd_sleep_on_immediatly(cqr);
918 static int dasd_eckd_read_conf_lpm(struct dasd_device *device,
920 int *rcd_buffer_size, __u8 lpm)
923 char *rcd_buf = NULL;
925 struct dasd_ccw_req *cqr;
928 * sanity check: scan for RCD command in extended SenseID data
929 * some devices do not support RCD
931 ciw = ccw_device_get_ciw(device->cdev, CIW_TYPE_RCD);
932 if (!ciw || ciw->cmd != DASD_ECKD_CCW_RCD) {
936 rcd_buf = kzalloc(DASD_ECKD_RCD_DATA_SIZE, GFP_KERNEL | GFP_DMA);
941 cqr = dasd_smalloc_request(DASD_ECKD_MAGIC, 1 /* RCD */,
942 0, /* use rcd_buf as data ara */
945 DBF_DEV_EVENT(DBF_WARNING, device, "%s",
946 "Could not allocate RCD request");
950 dasd_eckd_fill_rcd_cqr(device, cqr, rcd_buf, lpm);
951 cqr->callback = read_conf_cb;
952 ret = dasd_sleep_on(cqr);
954 * on success we update the user input parms
956 dasd_sfree_request(cqr, cqr->memdev);
960 *rcd_buffer_size = DASD_ECKD_RCD_DATA_SIZE;
961 *rcd_buffer = rcd_buf;
966 *rcd_buffer_size = 0;
970 static int dasd_eckd_identify_conf_parts(struct dasd_eckd_private *private)
973 struct dasd_sneq *sneq;
977 private->sneq = NULL;
978 private->vdsneq = NULL;
979 private->gneq = NULL;
980 count = private->conf_len / sizeof(struct dasd_sneq);
981 sneq = (struct dasd_sneq *)private->conf_data;
982 for (i = 0; i < count; ++i) {
983 if (sneq->flags.identifier == 1 && sneq->format == 1)
984 private->sneq = sneq;
985 else if (sneq->flags.identifier == 1 && sneq->format == 4)
986 private->vdsneq = (struct vd_sneq *)sneq;
987 else if (sneq->flags.identifier == 2)
988 private->gneq = (struct dasd_gneq *)sneq;
989 else if (sneq->flags.identifier == 3 && sneq->res1 == 1)
990 private->ned = (struct dasd_ned *)sneq;
993 if (!private->ned || !private->gneq) {
995 private->sneq = NULL;
996 private->vdsneq = NULL;
997 private->gneq = NULL;
1004 static unsigned char dasd_eckd_path_access(void *conf_data, int conf_len)
1006 struct dasd_gneq *gneq;
1007 int i, count, found;
1009 count = conf_len / sizeof(*gneq);
1010 gneq = (struct dasd_gneq *)conf_data;
1012 for (i = 0; i < count; ++i) {
1013 if (gneq->flags.identifier == 2) {
1020 return ((char *)gneq)[18] & 0x07;
1025 static int dasd_eckd_read_conf(struct dasd_device *device)
1028 int conf_len, conf_data_saved;
1031 struct dasd_eckd_private *private, path_private;
1032 struct dasd_path *path_data;
1033 struct dasd_uid *uid;
1034 char print_path_uid[60], print_device_uid[60];
1036 private = (struct dasd_eckd_private *) device->private;
1037 path_data = &device->path_data;
1038 opm = ccw_device_get_path_mask(device->cdev);
1039 conf_data_saved = 0;
1040 /* get configuration data per operational path */
1041 for (lpm = 0x80; lpm; lpm>>= 1) {
1044 rc = dasd_eckd_read_conf_lpm(device, &conf_data,
1046 if (rc && rc != -EOPNOTSUPP) { /* -EOPNOTSUPP is ok */
1047 DBF_EVENT_DEVID(DBF_WARNING, device->cdev,
1048 "Read configuration data returned "
1052 if (conf_data == NULL) {
1053 DBF_EVENT_DEVID(DBF_WARNING, device->cdev, "%s",
1054 "No configuration data "
1056 /* no further analysis possible */
1057 path_data->opm |= lpm;
1058 continue; /* no error */
1060 /* save first valid configuration data */
1061 if (!conf_data_saved) {
1062 kfree(private->conf_data);
1063 private->conf_data = conf_data;
1064 private->conf_len = conf_len;
1065 if (dasd_eckd_identify_conf_parts(private)) {
1066 private->conf_data = NULL;
1067 private->conf_len = 0;
1072 * build device UID that other path data
1073 * can be compared to it
1075 dasd_eckd_generate_uid(device);
1078 path_private.conf_data = conf_data;
1079 path_private.conf_len = DASD_ECKD_RCD_DATA_SIZE;
1080 if (dasd_eckd_identify_conf_parts(
1082 path_private.conf_data = NULL;
1083 path_private.conf_len = 0;
1088 if (dasd_eckd_compare_path_uid(
1089 device, &path_private)) {
1090 uid = &path_private.uid;
1091 if (strlen(uid->vduit) > 0)
1092 snprintf(print_path_uid,
1093 sizeof(print_path_uid),
1094 "%s.%s.%04x.%02x.%s",
1095 uid->vendor, uid->serial,
1096 uid->ssid, uid->real_unit_addr,
1099 snprintf(print_path_uid,
1100 sizeof(print_path_uid),
1102 uid->vendor, uid->serial,
1104 uid->real_unit_addr);
1105 uid = &private->uid;
1106 if (strlen(uid->vduit) > 0)
1107 snprintf(print_device_uid,
1108 sizeof(print_device_uid),
1109 "%s.%s.%04x.%02x.%s",
1110 uid->vendor, uid->serial,
1111 uid->ssid, uid->real_unit_addr,
1114 snprintf(print_device_uid,
1115 sizeof(print_device_uid),
1117 uid->vendor, uid->serial,
1119 uid->real_unit_addr);
1120 dev_err(&device->cdev->dev,
1121 "Not all channel paths lead to "
1122 "the same device, path %02X leads to "
1123 "device %s instead of %s\n", lpm,
1124 print_path_uid, print_device_uid);
1128 path_private.conf_data = NULL;
1129 path_private.conf_len = 0;
1131 switch (dasd_eckd_path_access(conf_data, conf_len)) {
1133 path_data->npm |= lpm;
1136 path_data->ppm |= lpm;
1139 path_data->opm |= lpm;
1141 if (conf_data != private->conf_data)
1148 static int verify_fcx_max_data(struct dasd_device *device, __u8 lpm)
1150 struct dasd_eckd_private *private;
1154 private = (struct dasd_eckd_private *) device->private;
1155 if (private->fcx_max_data) {
1156 mdc = ccw_device_get_mdc(device->cdev, lpm);
1158 dev_warn(&device->cdev->dev,
1159 "Detecting the maximum data size for zHPF "
1160 "requests failed (rc=%d) for a new path %x\n",
1164 fcx_max_data = mdc * FCX_MAX_DATA_FACTOR;
1165 if (fcx_max_data < private->fcx_max_data) {
1166 dev_warn(&device->cdev->dev,
1167 "The maximum data size for zHPF requests %u "
1168 "on a new path %x is below the active maximum "
1169 "%u\n", fcx_max_data, lpm,
1170 private->fcx_max_data);
1177 static int rebuild_device_uid(struct dasd_device *device,
1178 struct path_verification_work_data *data)
1180 struct dasd_eckd_private *private;
1181 struct dasd_path *path_data;
1186 private = (struct dasd_eckd_private *) device->private;
1187 path_data = &device->path_data;
1188 opm = device->path_data.opm;
1190 for (lpm = 0x80; lpm; lpm >>= 1) {
1193 memset(&data->rcd_buffer, 0, sizeof(data->rcd_buffer));
1194 memset(&data->cqr, 0, sizeof(data->cqr));
1195 data->cqr.cpaddr = &data->ccw;
1196 rc = dasd_eckd_read_conf_immediately(device, &data->cqr,
1201 if (rc == -EOPNOTSUPP) /* -EOPNOTSUPP is ok */
1203 DBF_EVENT_DEVID(DBF_WARNING, device->cdev,
1204 "Read configuration data "
1205 "returned error %d", rc);
1208 memcpy(private->conf_data, data->rcd_buffer,
1209 DASD_ECKD_RCD_DATA_SIZE);
1210 if (dasd_eckd_identify_conf_parts(private)) {
1212 } else /* first valid path is enough */
1217 rc = dasd_eckd_generate_uid(device);
1222 static void do_path_verification_work(struct work_struct *work)
1224 struct path_verification_work_data *data;
1225 struct dasd_device *device;
1226 struct dasd_eckd_private path_private;
1227 struct dasd_uid *uid;
1228 __u8 path_rcd_buf[DASD_ECKD_RCD_DATA_SIZE];
1229 __u8 lpm, opm, npm, ppm, epm;
1230 unsigned long flags;
1234 data = container_of(work, struct path_verification_work_data, worker);
1235 device = data->device;
1237 /* delay path verification until device was resumed */
1238 if (test_bit(DASD_FLAG_SUSPENDED, &device->flags)) {
1239 schedule_work(work);
1247 for (lpm = 0x80; lpm; lpm >>= 1) {
1248 if (!(lpm & data->tbvpm))
1250 memset(&data->rcd_buffer, 0, sizeof(data->rcd_buffer));
1251 memset(&data->cqr, 0, sizeof(data->cqr));
1252 data->cqr.cpaddr = &data->ccw;
1253 rc = dasd_eckd_read_conf_immediately(device, &data->cqr,
1257 switch (dasd_eckd_path_access(data->rcd_buffer,
1258 DASD_ECKD_RCD_DATA_SIZE)
1268 } else if (rc == -EOPNOTSUPP) {
1269 DBF_EVENT_DEVID(DBF_WARNING, device->cdev, "%s",
1270 "path verification: No configuration "
1273 } else if (rc == -EAGAIN) {
1274 DBF_EVENT_DEVID(DBF_WARNING, device->cdev, "%s",
1275 "path verification: device is stopped,"
1276 " try again later");
1279 dev_warn(&device->cdev->dev,
1280 "Reading device feature codes failed "
1281 "(rc=%d) for new path %x\n", rc, lpm);
1284 if (verify_fcx_max_data(device, lpm)) {
1292 * save conf_data for comparison after
1293 * rebuild_device_uid may have changed
1296 memcpy(&path_rcd_buf, data->rcd_buffer,
1297 DASD_ECKD_RCD_DATA_SIZE);
1298 path_private.conf_data = (void *) &path_rcd_buf;
1299 path_private.conf_len = DASD_ECKD_RCD_DATA_SIZE;
1300 if (dasd_eckd_identify_conf_parts(&path_private)) {
1301 path_private.conf_data = NULL;
1302 path_private.conf_len = 0;
1307 * compare path UID with device UID only if at least
1308 * one valid path is left
1309 * in other case the device UID may have changed and
1310 * the first working path UID will be used as device UID
1312 if (device->path_data.opm &&
1313 dasd_eckd_compare_path_uid(device, &path_private)) {
1315 * the comparison was not successful
1316 * rebuild the device UID with at least one
1317 * known path in case a z/VM hyperswap command
1318 * has changed the device
1320 * after this compare again
1322 * if either the rebuild or the recompare fails
1323 * the path can not be used
1325 if (rebuild_device_uid(device, data) ||
1326 dasd_eckd_compare_path_uid(
1327 device, &path_private)) {
1328 uid = &path_private.uid;
1329 if (strlen(uid->vduit) > 0)
1330 snprintf(print_uid, sizeof(print_uid),
1331 "%s.%s.%04x.%02x.%s",
1332 uid->vendor, uid->serial,
1333 uid->ssid, uid->real_unit_addr,
1336 snprintf(print_uid, sizeof(print_uid),
1338 uid->vendor, uid->serial,
1340 uid->real_unit_addr);
1341 dev_err(&device->cdev->dev,
1342 "The newly added channel path %02X "
1343 "will not be used because it leads "
1344 "to a different device %s\n",
1354 * There is a small chance that a path is lost again between
1355 * above path verification and the following modification of
1356 * the device opm mask. We could avoid that race here by using
1357 * yet another path mask, but we rather deal with this unlikely
1358 * situation in dasd_start_IO.
1360 spin_lock_irqsave(get_ccwdev_lock(device->cdev), flags);
1361 if (!device->path_data.opm && opm) {
1362 device->path_data.opm = opm;
1363 dasd_generic_path_operational(device);
1365 device->path_data.opm |= opm;
1366 device->path_data.npm |= npm;
1367 device->path_data.ppm |= ppm;
1368 device->path_data.tbvpm |= epm;
1369 spin_unlock_irqrestore(get_ccwdev_lock(device->cdev), flags);
1372 dasd_put_device(device);
1374 mutex_unlock(&dasd_path_verification_mutex);
1379 static int dasd_eckd_verify_path(struct dasd_device *device, __u8 lpm)
1381 struct path_verification_work_data *data;
1383 data = kmalloc(sizeof(*data), GFP_ATOMIC | GFP_DMA);
1385 if (mutex_trylock(&dasd_path_verification_mutex)) {
1386 data = path_verification_worker;
1391 memset(data, 0, sizeof(*data));
1394 INIT_WORK(&data->worker, do_path_verification_work);
1395 dasd_get_device(device);
1396 data->device = device;
1398 schedule_work(&data->worker);
1402 static int dasd_eckd_read_features(struct dasd_device *device)
1404 struct dasd_psf_prssd_data *prssdp;
1405 struct dasd_rssd_features *features;
1406 struct dasd_ccw_req *cqr;
1409 struct dasd_eckd_private *private;
1411 private = (struct dasd_eckd_private *) device->private;
1412 memset(&private->features, 0, sizeof(struct dasd_rssd_features));
1413 cqr = dasd_smalloc_request(DASD_ECKD_MAGIC, 1 /* PSF */ + 1 /* RSSD */,
1414 (sizeof(struct dasd_psf_prssd_data) +
1415 sizeof(struct dasd_rssd_features)),
1418 DBF_EVENT_DEVID(DBF_WARNING, device->cdev, "%s", "Could not "
1419 "allocate initialization request");
1420 return PTR_ERR(cqr);
1422 cqr->startdev = device;
1423 cqr->memdev = device;
1426 cqr->expires = 10 * HZ;
1428 /* Prepare for Read Subsystem Data */
1429 prssdp = (struct dasd_psf_prssd_data *) cqr->data;
1430 memset(prssdp, 0, sizeof(struct dasd_psf_prssd_data));
1431 prssdp->order = PSF_ORDER_PRSSD;
1432 prssdp->suborder = 0x41; /* Read Feature Codes */
1433 /* all other bytes of prssdp must be zero */
1436 ccw->cmd_code = DASD_ECKD_CCW_PSF;
1437 ccw->count = sizeof(struct dasd_psf_prssd_data);
1438 ccw->flags |= CCW_FLAG_CC;
1439 ccw->cda = (__u32)(addr_t) prssdp;
1441 /* Read Subsystem Data - feature codes */
1442 features = (struct dasd_rssd_features *) (prssdp + 1);
1443 memset(features, 0, sizeof(struct dasd_rssd_features));
1446 ccw->cmd_code = DASD_ECKD_CCW_RSSD;
1447 ccw->count = sizeof(struct dasd_rssd_features);
1448 ccw->cda = (__u32)(addr_t) features;
1450 cqr->buildclk = get_clock();
1451 cqr->status = DASD_CQR_FILLED;
1452 rc = dasd_sleep_on(cqr);
1454 prssdp = (struct dasd_psf_prssd_data *) cqr->data;
1455 features = (struct dasd_rssd_features *) (prssdp + 1);
1456 memcpy(&private->features, features,
1457 sizeof(struct dasd_rssd_features));
1459 dev_warn(&device->cdev->dev, "Reading device feature codes"
1460 " failed with rc=%d\n", rc);
1461 dasd_sfree_request(cqr, cqr->memdev);
1467 * Build CP for Perform Subsystem Function - SSC.
1469 static struct dasd_ccw_req *dasd_eckd_build_psf_ssc(struct dasd_device *device,
1472 struct dasd_ccw_req *cqr;
1473 struct dasd_psf_ssc_data *psf_ssc_data;
1476 cqr = dasd_smalloc_request(DASD_ECKD_MAGIC, 1 /* PSF */ ,
1477 sizeof(struct dasd_psf_ssc_data),
1481 DBF_DEV_EVENT(DBF_WARNING, device, "%s",
1482 "Could not allocate PSF-SSC request");
1485 psf_ssc_data = (struct dasd_psf_ssc_data *)cqr->data;
1486 psf_ssc_data->order = PSF_ORDER_SSC;
1487 psf_ssc_data->suborder = 0xc0;
1489 psf_ssc_data->suborder |= 0x08;
1490 psf_ssc_data->reserved[0] = 0x88;
1493 ccw->cmd_code = DASD_ECKD_CCW_PSF;
1494 ccw->cda = (__u32)(addr_t)psf_ssc_data;
1497 cqr->startdev = device;
1498 cqr->memdev = device;
1501 cqr->expires = 10*HZ;
1502 cqr->buildclk = get_clock();
1503 cqr->status = DASD_CQR_FILLED;
1508 * Perform Subsystem Function.
1509 * It is necessary to trigger CIO for channel revalidation since this
1510 * call might change behaviour of DASD devices.
1513 dasd_eckd_psf_ssc(struct dasd_device *device, int enable_pav,
1514 unsigned long flags)
1516 struct dasd_ccw_req *cqr;
1519 cqr = dasd_eckd_build_psf_ssc(device, enable_pav);
1521 return PTR_ERR(cqr);
1524 * set flags e.g. turn on failfast, to prevent blocking
1525 * the calling function should handle failed requests
1527 cqr->flags |= flags;
1529 rc = dasd_sleep_on(cqr);
1531 /* trigger CIO to reprobe devices */
1532 css_schedule_reprobe();
1533 else if (cqr->intrc == -EAGAIN)
1536 dasd_sfree_request(cqr, cqr->memdev);
1541 * Valide storage server of current device.
1543 static int dasd_eckd_validate_server(struct dasd_device *device,
1544 unsigned long flags)
1547 struct dasd_eckd_private *private;
1550 private = (struct dasd_eckd_private *) device->private;
1551 if (private->uid.type == UA_BASE_PAV_ALIAS ||
1552 private->uid.type == UA_HYPER_PAV_ALIAS)
1554 if (dasd_nopav || MACHINE_IS_VM)
1558 rc = dasd_eckd_psf_ssc(device, enable_pav, flags);
1560 /* may be requested feature is not available on server,
1561 * therefore just report error and go ahead */
1562 DBF_EVENT_DEVID(DBF_WARNING, device->cdev, "PSF-SSC for SSID %04x "
1563 "returned rc=%d", private->uid.ssid, rc);
1568 * worker to do a validate server in case of a lost pathgroup
1570 static void dasd_eckd_do_validate_server(struct work_struct *work)
1572 struct dasd_device *device = container_of(work, struct dasd_device,
1574 if (dasd_eckd_validate_server(device, DASD_CQR_FLAGS_FAILFAST)
1576 /* schedule worker again if failed */
1577 schedule_work(&device->kick_validate);
1581 dasd_put_device(device);
1584 static void dasd_eckd_kick_validate_server(struct dasd_device *device)
1586 dasd_get_device(device);
1587 /* exit if device not online or in offline processing */
1588 if (test_bit(DASD_FLAG_OFFLINE, &device->flags) ||
1589 device->state < DASD_STATE_ONLINE) {
1590 dasd_put_device(device);
1593 /* queue call to do_validate_server to the kernel event daemon. */
1594 schedule_work(&device->kick_validate);
1597 static u32 get_fcx_max_data(struct dasd_device *device)
1599 #if defined(CONFIG_64BIT)
1601 int fcx_in_css, fcx_in_gneq, fcx_in_features;
1602 struct dasd_eckd_private *private;
1606 /* is transport mode supported? */
1607 private = (struct dasd_eckd_private *) device->private;
1608 fcx_in_css = css_general_characteristics.fcx;
1609 fcx_in_gneq = private->gneq->reserved2[7] & 0x04;
1610 fcx_in_features = private->features.feature[40] & 0x80;
1611 tpm = fcx_in_css && fcx_in_gneq && fcx_in_features;
1616 mdc = ccw_device_get_mdc(device->cdev, 0);
1618 dev_warn(&device->cdev->dev, "Detecting the maximum supported"
1619 " data size for zHPF requests failed\n");
1622 return mdc * FCX_MAX_DATA_FACTOR;
1629 * Check device characteristics.
1630 * If the device is accessible using ECKD discipline, the device is enabled.
1633 dasd_eckd_check_characteristics(struct dasd_device *device)
1635 struct dasd_eckd_private *private;
1636 struct dasd_block *block;
1637 struct dasd_uid temp_uid;
1640 unsigned long value;
1642 /* setup work queue for validate server*/
1643 INIT_WORK(&device->kick_validate, dasd_eckd_do_validate_server);
1645 if (!ccw_device_is_pathgroup(device->cdev)) {
1646 dev_warn(&device->cdev->dev,
1647 "A channel path group could not be established\n");
1650 if (!ccw_device_is_multipath(device->cdev)) {
1651 dev_info(&device->cdev->dev,
1652 "The DASD is not operating in multipath mode\n");
1654 private = (struct dasd_eckd_private *) device->private;
1656 private = kzalloc(sizeof(*private), GFP_KERNEL | GFP_DMA);
1658 dev_warn(&device->cdev->dev,
1659 "Allocating memory for private DASD data "
1663 device->private = (void *) private;
1665 memset(private, 0, sizeof(*private));
1667 /* Invalidate status of initial analysis. */
1668 private->init_cqr_status = -1;
1669 /* Set default cache operations. */
1670 private->attrib.operation = DASD_NORMAL_CACHE;
1671 private->attrib.nr_cyl = 0;
1673 /* Read Configuration Data */
1674 rc = dasd_eckd_read_conf(device);
1678 /* set default timeout */
1679 device->default_expires = DASD_EXPIRES;
1680 if (private->gneq) {
1682 for (i = 0; i < private->gneq->timeout.value; i++)
1684 value = value * private->gneq->timeout.number;
1685 /* do not accept useless values */
1686 if (value != 0 && value <= DASD_EXPIRES_MAX)
1687 device->default_expires = value;
1690 dasd_eckd_get_uid(device, &temp_uid);
1691 if (temp_uid.type == UA_BASE_DEVICE) {
1692 block = dasd_alloc_block();
1693 if (IS_ERR(block)) {
1694 DBF_EVENT_DEVID(DBF_WARNING, device->cdev, "%s",
1695 "could not allocate dasd "
1697 rc = PTR_ERR(block);
1700 device->block = block;
1701 block->base = device;
1704 /* register lcu with alias handling, enable PAV */
1705 rc = dasd_alias_make_device_known_to_lcu(device);
1709 dasd_eckd_validate_server(device, 0);
1711 /* device may report different configuration data after LCU setup */
1712 rc = dasd_eckd_read_conf(device);
1716 /* Read Feature Codes */
1717 dasd_eckd_read_features(device);
1719 /* Read Device Characteristics */
1720 rc = dasd_generic_read_dev_chars(device, DASD_ECKD_MAGIC,
1721 &private->rdc_data, 64);
1723 DBF_EVENT_DEVID(DBF_WARNING, device->cdev,
1724 "Read device characteristic failed, rc=%d", rc);
1728 if ((device->features & DASD_FEATURE_USERAW) &&
1729 !(private->rdc_data.facilities.RT_in_LR)) {
1730 dev_err(&device->cdev->dev, "The storage server does not "
1731 "support raw-track access\n");
1736 /* find the valid cylinder size */
1737 if (private->rdc_data.no_cyl == LV_COMPAT_CYL &&
1738 private->rdc_data.long_no_cyl)
1739 private->real_cyl = private->rdc_data.long_no_cyl;
1741 private->real_cyl = private->rdc_data.no_cyl;
1743 private->fcx_max_data = get_fcx_max_data(device);
1745 readonly = dasd_device_is_ro(device);
1747 set_bit(DASD_FLAG_DEVICE_RO, &device->flags);
1749 dev_info(&device->cdev->dev, "New DASD %04X/%02X (CU %04X/%02X) "
1750 "with %d cylinders, %d heads, %d sectors%s\n",
1751 private->rdc_data.dev_type,
1752 private->rdc_data.dev_model,
1753 private->rdc_data.cu_type,
1754 private->rdc_data.cu_model.model,
1756 private->rdc_data.trk_per_cyl,
1757 private->rdc_data.sec_per_trk,
1758 readonly ? ", read-only device" : "");
1762 dasd_alias_disconnect_device_from_lcu(device);
1764 dasd_free_block(device->block);
1765 device->block = NULL;
1767 kfree(private->conf_data);
1768 kfree(device->private);
1769 device->private = NULL;
1773 static void dasd_eckd_uncheck_device(struct dasd_device *device)
1775 struct dasd_eckd_private *private;
1777 private = (struct dasd_eckd_private *) device->private;
1778 dasd_alias_disconnect_device_from_lcu(device);
1779 private->ned = NULL;
1780 private->sneq = NULL;
1781 private->vdsneq = NULL;
1782 private->gneq = NULL;
1783 private->conf_len = 0;
1784 kfree(private->conf_data);
1785 private->conf_data = NULL;
1788 static struct dasd_ccw_req *
1789 dasd_eckd_analysis_ccw(struct dasd_device *device)
1791 struct dasd_eckd_private *private;
1792 struct eckd_count *count_data;
1793 struct LO_eckd_data *LO_data;
1794 struct dasd_ccw_req *cqr;
1796 int cplength, datasize;
1799 private = (struct dasd_eckd_private *) device->private;
1802 datasize = sizeof(struct DE_eckd_data) + 2*sizeof(struct LO_eckd_data);
1803 cqr = dasd_smalloc_request(DASD_ECKD_MAGIC, cplength, datasize, device);
1807 /* Define extent for the first 3 tracks. */
1808 define_extent(ccw++, cqr->data, 0, 2,
1809 DASD_ECKD_CCW_READ_COUNT, device);
1810 LO_data = cqr->data + sizeof(struct DE_eckd_data);
1811 /* Locate record for the first 4 records on track 0. */
1812 ccw[-1].flags |= CCW_FLAG_CC;
1813 locate_record(ccw++, LO_data++, 0, 0, 4,
1814 DASD_ECKD_CCW_READ_COUNT, device, 0);
1816 count_data = private->count_area;
1817 for (i = 0; i < 4; i++) {
1818 ccw[-1].flags |= CCW_FLAG_CC;
1819 ccw->cmd_code = DASD_ECKD_CCW_READ_COUNT;
1822 ccw->cda = (__u32)(addr_t) count_data;
1827 /* Locate record for the first record on track 2. */
1828 ccw[-1].flags |= CCW_FLAG_CC;
1829 locate_record(ccw++, LO_data++, 2, 0, 1,
1830 DASD_ECKD_CCW_READ_COUNT, device, 0);
1831 /* Read count ccw. */
1832 ccw[-1].flags |= CCW_FLAG_CC;
1833 ccw->cmd_code = DASD_ECKD_CCW_READ_COUNT;
1836 ccw->cda = (__u32)(addr_t) count_data;
1839 cqr->startdev = device;
1840 cqr->memdev = device;
1842 cqr->buildclk = get_clock();
1843 cqr->status = DASD_CQR_FILLED;
1847 /* differentiate between 'no record found' and any other error */
1848 static int dasd_eckd_analysis_evaluation(struct dasd_ccw_req *init_cqr)
1851 if (init_cqr->status == DASD_CQR_DONE)
1853 else if (init_cqr->status == DASD_CQR_NEED_ERP ||
1854 init_cqr->status == DASD_CQR_FAILED) {
1855 sense = dasd_get_sense(&init_cqr->irb);
1856 if (sense && (sense[1] & SNS1_NO_REC_FOUND))
1857 return INIT_CQR_UNFORMATTED;
1859 return INIT_CQR_ERROR;
1861 return INIT_CQR_ERROR;
1865 * This is the callback function for the init_analysis cqr. It saves
1866 * the status of the initial analysis ccw before it frees it and kicks
1867 * the device to continue the startup sequence. This will call
1868 * dasd_eckd_do_analysis again (if the devices has not been marked
1869 * for deletion in the meantime).
1871 static void dasd_eckd_analysis_callback(struct dasd_ccw_req *init_cqr,
1874 struct dasd_eckd_private *private;
1875 struct dasd_device *device;
1877 device = init_cqr->startdev;
1878 private = (struct dasd_eckd_private *) device->private;
1879 private->init_cqr_status = dasd_eckd_analysis_evaluation(init_cqr);
1880 dasd_sfree_request(init_cqr, device);
1881 dasd_kick_device(device);
1884 static int dasd_eckd_start_analysis(struct dasd_block *block)
1886 struct dasd_ccw_req *init_cqr;
1888 init_cqr = dasd_eckd_analysis_ccw(block->base);
1889 if (IS_ERR(init_cqr))
1890 return PTR_ERR(init_cqr);
1891 init_cqr->callback = dasd_eckd_analysis_callback;
1892 init_cqr->callback_data = NULL;
1893 init_cqr->expires = 5*HZ;
1894 /* first try without ERP, so we can later handle unformatted
1895 * devices as special case
1897 clear_bit(DASD_CQR_FLAGS_USE_ERP, &init_cqr->flags);
1898 init_cqr->retries = 0;
1899 dasd_add_request_head(init_cqr);
1903 static int dasd_eckd_end_analysis(struct dasd_block *block)
1905 struct dasd_device *device;
1906 struct dasd_eckd_private *private;
1907 struct eckd_count *count_area;
1908 unsigned int sb, blk_per_trk;
1910 struct dasd_ccw_req *init_cqr;
1912 device = block->base;
1913 private = (struct dasd_eckd_private *) device->private;
1914 status = private->init_cqr_status;
1915 private->init_cqr_status = -1;
1916 if (status == INIT_CQR_ERROR) {
1917 /* try again, this time with full ERP */
1918 init_cqr = dasd_eckd_analysis_ccw(device);
1919 dasd_sleep_on(init_cqr);
1920 status = dasd_eckd_analysis_evaluation(init_cqr);
1921 dasd_sfree_request(init_cqr, device);
1924 if (device->features & DASD_FEATURE_USERAW) {
1925 block->bp_block = DASD_RAW_BLOCKSIZE;
1926 blk_per_trk = DASD_RAW_BLOCK_PER_TRACK;
1927 block->s2b_shift = 3;
1931 if (status == INIT_CQR_UNFORMATTED) {
1932 dev_warn(&device->cdev->dev, "The DASD is not formatted\n");
1933 return -EMEDIUMTYPE;
1934 } else if (status == INIT_CQR_ERROR) {
1935 dev_err(&device->cdev->dev,
1936 "Detecting the DASD disk layout failed because "
1937 "of an I/O error\n");
1941 private->uses_cdl = 1;
1942 /* Check Track 0 for Compatible Disk Layout */
1944 for (i = 0; i < 3; i++) {
1945 if (private->count_area[i].kl != 4 ||
1946 private->count_area[i].dl != dasd_eckd_cdl_reclen(i) - 4 ||
1947 private->count_area[i].cyl != 0 ||
1948 private->count_area[i].head != count_area_head[i] ||
1949 private->count_area[i].record != count_area_rec[i]) {
1950 private->uses_cdl = 0;
1955 count_area = &private->count_area[4];
1957 if (private->uses_cdl == 0) {
1958 for (i = 0; i < 5; i++) {
1959 if ((private->count_area[i].kl != 0) ||
1960 (private->count_area[i].dl !=
1961 private->count_area[0].dl) ||
1962 private->count_area[i].cyl != 0 ||
1963 private->count_area[i].head != count_area_head[i] ||
1964 private->count_area[i].record != count_area_rec[i])
1968 count_area = &private->count_area[0];
1970 if (private->count_area[3].record == 1)
1971 dev_warn(&device->cdev->dev,
1972 "Track 0 has no records following the VTOC\n");
1975 if (count_area != NULL && count_area->kl == 0) {
1976 /* we found notthing violating our disk layout */
1977 if (dasd_check_blocksize(count_area->dl) == 0)
1978 block->bp_block = count_area->dl;
1980 if (block->bp_block == 0) {
1981 dev_warn(&device->cdev->dev,
1982 "The disk layout of the DASD is not supported\n");
1983 return -EMEDIUMTYPE;
1985 block->s2b_shift = 0; /* bits to shift 512 to get a block */
1986 for (sb = 512; sb < block->bp_block; sb = sb << 1)
1989 blk_per_trk = recs_per_track(&private->rdc_data, 0, block->bp_block);
1992 block->blocks = (private->real_cyl *
1993 private->rdc_data.trk_per_cyl *
1996 dev_info(&device->cdev->dev,
1997 "DASD with %d KB/block, %d KB total size, %d KB/track, "
1998 "%s\n", (block->bp_block >> 10),
1999 ((private->real_cyl *
2000 private->rdc_data.trk_per_cyl *
2001 blk_per_trk * (block->bp_block >> 9)) >> 1),
2002 ((blk_per_trk * block->bp_block) >> 10),
2004 "compatible disk layout" : "linux disk layout");
2009 static int dasd_eckd_do_analysis(struct dasd_block *block)
2011 struct dasd_eckd_private *private;
2013 private = (struct dasd_eckd_private *) block->base->private;
2014 if (private->init_cqr_status < 0)
2015 return dasd_eckd_start_analysis(block);
2017 return dasd_eckd_end_analysis(block);
2020 static int dasd_eckd_ready_to_online(struct dasd_device *device)
2022 return dasd_alias_add_device(device);
2025 static int dasd_eckd_online_to_ready(struct dasd_device *device)
2027 cancel_work_sync(&device->reload_device);
2028 cancel_work_sync(&device->kick_validate);
2029 return dasd_alias_remove_device(device);
2033 dasd_eckd_fill_geometry(struct dasd_block *block, struct hd_geometry *geo)
2035 struct dasd_eckd_private *private;
2037 private = (struct dasd_eckd_private *) block->base->private;
2038 if (dasd_check_blocksize(block->bp_block) == 0) {
2039 geo->sectors = recs_per_track(&private->rdc_data,
2040 0, block->bp_block);
2042 geo->cylinders = private->rdc_data.no_cyl;
2043 geo->heads = private->rdc_data.trk_per_cyl;
2047 static struct dasd_ccw_req *
2048 dasd_eckd_format_device(struct dasd_device * device,
2049 struct format_data_t * fdata)
2051 struct dasd_eckd_private *private;
2052 struct dasd_ccw_req *fcp;
2053 struct eckd_count *ect;
2057 struct ch_t address;
2058 int cplength, datasize;
2063 private = (struct dasd_eckd_private *) device->private;
2064 rpt = recs_per_track(&private->rdc_data, 0, fdata->blksize);
2066 fdata->start_unit / private->rdc_data.trk_per_cyl,
2067 fdata->start_unit % private->rdc_data.trk_per_cyl);
2069 /* Sanity checks. */
2070 if (fdata->start_unit >=
2071 (private->real_cyl * private->rdc_data.trk_per_cyl)) {
2072 dev_warn(&device->cdev->dev, "Start track number %d used in "
2073 "formatting is too big\n", fdata->start_unit);
2074 return ERR_PTR(-EINVAL);
2076 if (fdata->start_unit > fdata->stop_unit) {
2077 dev_warn(&device->cdev->dev, "Start track %d used in "
2078 "formatting exceeds end track\n", fdata->start_unit);
2079 return ERR_PTR(-EINVAL);
2081 if (dasd_check_blocksize(fdata->blksize) != 0) {
2082 dev_warn(&device->cdev->dev,
2083 "The DASD cannot be formatted with block size %d\n",
2085 return ERR_PTR(-EINVAL);
2089 * fdata->intensity is a bit string that tells us what to do:
2090 * Bit 0: write record zero
2091 * Bit 1: write home address, currently not supported
2092 * Bit 2: invalidate tracks
2093 * Bit 3: use OS/390 compatible disk layout (cdl)
2094 * Bit 4: do not allow storage subsystem to modify record zero
2095 * Only some bit combinations do make sense.
2097 if (fdata->intensity & 0x10) {
2099 intensity = fdata->intensity & ~0x10;
2102 intensity = fdata->intensity;
2104 switch (intensity) {
2105 case 0x00: /* Normal format */
2106 case 0x08: /* Normal format, use cdl. */
2108 datasize = sizeof(struct DE_eckd_data) +
2109 sizeof(struct LO_eckd_data) +
2110 rpt * sizeof(struct eckd_count);
2112 case 0x01: /* Write record zero and format track. */
2113 case 0x09: /* Write record zero and format track, use cdl. */
2115 datasize = sizeof(struct DE_eckd_data) +
2116 sizeof(struct LO_eckd_data) +
2117 sizeof(struct eckd_count) +
2118 rpt * sizeof(struct eckd_count);
2120 case 0x04: /* Invalidate track. */
2121 case 0x0c: /* Invalidate track, use cdl. */
2123 datasize = sizeof(struct DE_eckd_data) +
2124 sizeof(struct LO_eckd_data) +
2125 sizeof(struct eckd_count);
2128 dev_warn(&device->cdev->dev, "An I/O control call used "
2129 "incorrect flags 0x%x\n", fdata->intensity);
2130 return ERR_PTR(-EINVAL);
2132 /* Allocate the format ccw request. */
2133 fcp = dasd_smalloc_request(DASD_ECKD_MAGIC, cplength, datasize, device);
2140 switch (intensity & ~0x08) {
2141 case 0x00: /* Normal format. */
2142 define_extent(ccw++, (struct DE_eckd_data *) data,
2143 fdata->start_unit, fdata->start_unit,
2144 DASD_ECKD_CCW_WRITE_CKD, device);
2145 /* grant subsystem permission to format R0 */
2147 ((struct DE_eckd_data *)data)->ga_extended |= 0x04;
2148 data += sizeof(struct DE_eckd_data);
2149 ccw[-1].flags |= CCW_FLAG_CC;
2150 locate_record(ccw++, (struct LO_eckd_data *) data,
2151 fdata->start_unit, 0, rpt,
2152 DASD_ECKD_CCW_WRITE_CKD, device,
2154 data += sizeof(struct LO_eckd_data);
2156 case 0x01: /* Write record zero + format track. */
2157 define_extent(ccw++, (struct DE_eckd_data *) data,
2158 fdata->start_unit, fdata->start_unit,
2159 DASD_ECKD_CCW_WRITE_RECORD_ZERO,
2161 data += sizeof(struct DE_eckd_data);
2162 ccw[-1].flags |= CCW_FLAG_CC;
2163 locate_record(ccw++, (struct LO_eckd_data *) data,
2164 fdata->start_unit, 0, rpt + 1,
2165 DASD_ECKD_CCW_WRITE_RECORD_ZERO, device,
2166 device->block->bp_block);
2167 data += sizeof(struct LO_eckd_data);
2169 case 0x04: /* Invalidate track. */
2170 define_extent(ccw++, (struct DE_eckd_data *) data,
2171 fdata->start_unit, fdata->start_unit,
2172 DASD_ECKD_CCW_WRITE_CKD, device);
2173 data += sizeof(struct DE_eckd_data);
2174 ccw[-1].flags |= CCW_FLAG_CC;
2175 locate_record(ccw++, (struct LO_eckd_data *) data,
2176 fdata->start_unit, 0, 1,
2177 DASD_ECKD_CCW_WRITE_CKD, device, 8);
2178 data += sizeof(struct LO_eckd_data);
2181 if (intensity & 0x01) { /* write record zero */
2182 ect = (struct eckd_count *) data;
2183 data += sizeof(struct eckd_count);
2184 ect->cyl = address.cyl;
2185 ect->head = address.head;
2189 ccw[-1].flags |= CCW_FLAG_CC;
2190 ccw->cmd_code = DASD_ECKD_CCW_WRITE_RECORD_ZERO;
2191 ccw->flags = CCW_FLAG_SLI;
2193 ccw->cda = (__u32)(addr_t) ect;
2196 if ((intensity & ~0x08) & 0x04) { /* erase track */
2197 ect = (struct eckd_count *) data;
2198 data += sizeof(struct eckd_count);
2199 ect->cyl = address.cyl;
2200 ect->head = address.head;
2204 ccw[-1].flags |= CCW_FLAG_CC;
2205 ccw->cmd_code = DASD_ECKD_CCW_WRITE_CKD;
2206 ccw->flags = CCW_FLAG_SLI;
2208 ccw->cda = (__u32)(addr_t) ect;
2209 } else { /* write remaining records */
2210 for (i = 0; i < rpt; i++) {
2211 ect = (struct eckd_count *) data;
2212 data += sizeof(struct eckd_count);
2213 ect->cyl = address.cyl;
2214 ect->head = address.head;
2215 ect->record = i + 1;
2217 ect->dl = fdata->blksize;
2218 /* Check for special tracks 0-1 when formatting CDL */
2219 if ((intensity & 0x08) &&
2220 fdata->start_unit == 0) {
2223 ect->dl = sizes_trk0[i] - 4;
2226 if ((intensity & 0x08) &&
2227 fdata->start_unit == 1) {
2229 ect->dl = LABEL_SIZE - 44;
2231 ccw[-1].flags |= CCW_FLAG_CC;
2232 ccw->cmd_code = DASD_ECKD_CCW_WRITE_CKD;
2233 ccw->flags = CCW_FLAG_SLI;
2235 ccw->cda = (__u32)(addr_t) ect;
2239 fcp->startdev = device;
2240 fcp->memdev = device;
2242 fcp->buildclk = get_clock();
2243 fcp->status = DASD_CQR_FILLED;
2247 static void dasd_eckd_handle_terminated_request(struct dasd_ccw_req *cqr)
2249 cqr->status = DASD_CQR_FILLED;
2250 if (cqr->block && (cqr->startdev != cqr->block->base)) {
2251 dasd_eckd_reset_ccw_to_base_io(cqr);
2252 cqr->startdev = cqr->block->base;
2253 cqr->lpm = cqr->block->base->path_data.opm;
2257 static dasd_erp_fn_t
2258 dasd_eckd_erp_action(struct dasd_ccw_req * cqr)
2260 struct dasd_device *device = (struct dasd_device *) cqr->startdev;
2261 struct ccw_device *cdev = device->cdev;
2263 switch (cdev->id.cu_type) {
2268 return dasd_3990_erp_action;
2272 return dasd_default_erp_action;
2276 static dasd_erp_fn_t
2277 dasd_eckd_erp_postaction(struct dasd_ccw_req * cqr)
2279 return dasd_default_erp_postaction;
2282 static void dasd_eckd_check_for_device_change(struct dasd_device *device,
2283 struct dasd_ccw_req *cqr,
2288 struct dasd_eckd_private *private;
2290 private = (struct dasd_eckd_private *) device->private;
2291 /* first of all check for state change pending interrupt */
2292 mask = DEV_STAT_ATTENTION | DEV_STAT_DEV_END | DEV_STAT_UNIT_EXCEP;
2293 if ((scsw_dstat(&irb->scsw) & mask) == mask) {
2295 * for alias only, not in offline processing
2296 * and only if not suspended
2298 if (!device->block && private->lcu &&
2299 device->state == DASD_STATE_ONLINE &&
2300 !test_bit(DASD_FLAG_OFFLINE, &device->flags) &&
2301 !test_bit(DASD_FLAG_SUSPENDED, &device->flags)) {
2303 * the state change could be caused by an alias
2304 * reassignment remove device from alias handling
2305 * to prevent new requests from being scheduled on
2306 * the wrong alias device
2308 dasd_alias_remove_device(device);
2310 /* schedule worker to reload device */
2311 dasd_reload_device(device);
2313 dasd_generic_handle_state_change(device);
2317 sense = dasd_get_sense(irb);
2321 /* summary unit check */
2322 if ((sense[27] & DASD_SENSE_BIT_0) && (sense[7] == 0x0D) &&
2323 (scsw_dstat(&irb->scsw) & DEV_STAT_UNIT_CHECK)) {
2324 dasd_alias_handle_summary_unit_check(device, irb);
2328 /* service information message SIM */
2329 if (!cqr && !(sense[27] & DASD_SENSE_BIT_0) &&
2330 ((sense[6] & DASD_SIM_SENSE) == DASD_SIM_SENSE)) {
2331 dasd_3990_erp_handle_sim(device, sense);
2335 /* loss of device reservation is handled via base devices only
2336 * as alias devices may be used with several bases
2338 if (device->block && (sense[27] & DASD_SENSE_BIT_0) &&
2339 (sense[7] == 0x3F) &&
2340 (scsw_dstat(&irb->scsw) & DEV_STAT_UNIT_CHECK) &&
2341 test_bit(DASD_FLAG_IS_RESERVED, &device->flags)) {
2342 if (device->features & DASD_FEATURE_FAILONSLCK)
2343 set_bit(DASD_FLAG_LOCK_STOLEN, &device->flags);
2344 clear_bit(DASD_FLAG_IS_RESERVED, &device->flags);
2345 dev_err(&device->cdev->dev,
2346 "The device reservation was lost\n");
2350 static struct dasd_ccw_req *dasd_eckd_build_cp_cmd_single(
2351 struct dasd_device *startdev,
2352 struct dasd_block *block,
2353 struct request *req,
2358 unsigned int first_offs,
2359 unsigned int last_offs,
2360 unsigned int blk_per_trk,
2361 unsigned int blksize)
2363 struct dasd_eckd_private *private;
2364 unsigned long *idaws;
2365 struct LO_eckd_data *LO_data;
2366 struct dasd_ccw_req *cqr;
2368 struct req_iterator iter;
2372 int count, cidaw, cplength, datasize;
2374 unsigned char cmd, rcmd;
2376 struct dasd_device *basedev;
2378 basedev = block->base;
2379 private = (struct dasd_eckd_private *) basedev->private;
2380 if (rq_data_dir(req) == READ)
2381 cmd = DASD_ECKD_CCW_READ_MT;
2382 else if (rq_data_dir(req) == WRITE)
2383 cmd = DASD_ECKD_CCW_WRITE_MT;
2385 return ERR_PTR(-EINVAL);
2387 /* Check struct bio and count the number of blocks for the request. */
2390 rq_for_each_segment(bv, req, iter) {
2391 if (bv->bv_len & (blksize - 1))
2392 /* Eckd can only do full blocks. */
2393 return ERR_PTR(-EINVAL);
2394 count += bv->bv_len >> (block->s2b_shift + 9);
2395 #if defined(CONFIG_64BIT)
2396 if (idal_is_needed (page_address(bv->bv_page), bv->bv_len))
2397 cidaw += bv->bv_len >> (block->s2b_shift + 9);
2401 if (count != last_rec - first_rec + 1)
2402 return ERR_PTR(-EINVAL);
2404 /* use the prefix command if available */
2405 use_prefix = private->features.feature[8] & 0x01;
2407 /* 1x prefix + number of blocks */
2408 cplength = 2 + count;
2409 /* 1x prefix + cidaws*sizeof(long) */
2410 datasize = sizeof(struct PFX_eckd_data) +
2411 sizeof(struct LO_eckd_data) +
2412 cidaw * sizeof(unsigned long);
2414 /* 1x define extent + 1x locate record + number of blocks */
2415 cplength = 2 + count;
2416 /* 1x define extent + 1x locate record + cidaws*sizeof(long) */
2417 datasize = sizeof(struct DE_eckd_data) +
2418 sizeof(struct LO_eckd_data) +
2419 cidaw * sizeof(unsigned long);
2421 /* Find out the number of additional locate record ccws for cdl. */
2422 if (private->uses_cdl && first_rec < 2*blk_per_trk) {
2423 if (last_rec >= 2*blk_per_trk)
2424 count = 2*blk_per_trk - first_rec;
2426 datasize += count*sizeof(struct LO_eckd_data);
2428 /* Allocate the ccw request. */
2429 cqr = dasd_smalloc_request(DASD_ECKD_MAGIC, cplength, datasize,
2434 /* First ccw is define extent or prefix. */
2436 if (prefix(ccw++, cqr->data, first_trk,
2437 last_trk, cmd, basedev, startdev) == -EAGAIN) {
2438 /* Clock not in sync and XRC is enabled.
2441 dasd_sfree_request(cqr, startdev);
2442 return ERR_PTR(-EAGAIN);
2444 idaws = (unsigned long *) (cqr->data +
2445 sizeof(struct PFX_eckd_data));
2447 if (define_extent(ccw++, cqr->data, first_trk,
2448 last_trk, cmd, basedev) == -EAGAIN) {
2449 /* Clock not in sync and XRC is enabled.
2452 dasd_sfree_request(cqr, startdev);
2453 return ERR_PTR(-EAGAIN);
2455 idaws = (unsigned long *) (cqr->data +
2456 sizeof(struct DE_eckd_data));
2458 /* Build locate_record+read/write/ccws. */
2459 LO_data = (struct LO_eckd_data *) (idaws + cidaw);
2461 if (private->uses_cdl == 0 || recid > 2*blk_per_trk) {
2462 /* Only standard blocks so there is just one locate record. */
2463 ccw[-1].flags |= CCW_FLAG_CC;
2464 locate_record(ccw++, LO_data++, first_trk, first_offs + 1,
2465 last_rec - recid + 1, cmd, basedev, blksize);
2467 rq_for_each_segment(bv, req, iter) {
2468 dst = page_address(bv->bv_page) + bv->bv_offset;
2469 if (dasd_page_cache) {
2470 char *copy = kmem_cache_alloc(dasd_page_cache,
2471 GFP_DMA | __GFP_NOWARN);
2472 if (copy && rq_data_dir(req) == WRITE)
2473 memcpy(copy + bv->bv_offset, dst, bv->bv_len);
2475 dst = copy + bv->bv_offset;
2477 for (off = 0; off < bv->bv_len; off += blksize) {
2478 sector_t trkid = recid;
2479 unsigned int recoffs = sector_div(trkid, blk_per_trk);
2482 /* Locate record for cdl special block ? */
2483 if (private->uses_cdl && recid < 2*blk_per_trk) {
2484 if (dasd_eckd_cdl_special(blk_per_trk, recid)){
2486 count = dasd_eckd_cdl_reclen(recid);
2487 if (count < blksize &&
2488 rq_data_dir(req) == READ)
2489 memset(dst + count, 0xe5,
2492 ccw[-1].flags |= CCW_FLAG_CC;
2493 locate_record(ccw++, LO_data++,
2495 1, rcmd, basedev, count);
2497 /* Locate record for standard blocks ? */
2498 if (private->uses_cdl && recid == 2*blk_per_trk) {
2499 ccw[-1].flags |= CCW_FLAG_CC;
2500 locate_record(ccw++, LO_data++,
2502 last_rec - recid + 1,
2503 cmd, basedev, count);
2505 /* Read/write ccw. */
2506 ccw[-1].flags |= CCW_FLAG_CC;
2507 ccw->cmd_code = rcmd;
2509 if (idal_is_needed(dst, blksize)) {
2510 ccw->cda = (__u32)(addr_t) idaws;
2511 ccw->flags = CCW_FLAG_IDA;
2512 idaws = idal_create_words(idaws, dst, blksize);
2514 ccw->cda = (__u32)(addr_t) dst;
2522 if (blk_noretry_request(req) ||
2523 block->base->features & DASD_FEATURE_FAILFAST)
2524 set_bit(DASD_CQR_FLAGS_FAILFAST, &cqr->flags);
2525 cqr->startdev = startdev;
2526 cqr->memdev = startdev;
2528 cqr->expires = startdev->default_expires * HZ; /* default 5 minutes */
2529 cqr->lpm = startdev->path_data.ppm;
2531 cqr->buildclk = get_clock();
2532 cqr->status = DASD_CQR_FILLED;
2536 static struct dasd_ccw_req *dasd_eckd_build_cp_cmd_track(
2537 struct dasd_device *startdev,
2538 struct dasd_block *block,
2539 struct request *req,
2544 unsigned int first_offs,
2545 unsigned int last_offs,
2546 unsigned int blk_per_trk,
2547 unsigned int blksize)
2549 unsigned long *idaws;
2550 struct dasd_ccw_req *cqr;
2552 struct req_iterator iter;
2554 char *dst, *idaw_dst;
2555 unsigned int cidaw, cplength, datasize;
2559 struct dasd_device *basedev;
2560 unsigned int trkcount, count, count_to_trk_end;
2561 unsigned int idaw_len, seg_len, part_len, len_to_track_end;
2562 unsigned char new_track, end_idaw;
2564 unsigned int recoffs;
2566 basedev = block->base;
2567 if (rq_data_dir(req) == READ)
2568 cmd = DASD_ECKD_CCW_READ_TRACK_DATA;
2569 else if (rq_data_dir(req) == WRITE)
2570 cmd = DASD_ECKD_CCW_WRITE_TRACK_DATA;
2572 return ERR_PTR(-EINVAL);
2574 /* Track based I/O needs IDAWs for each page, and not just for
2575 * 64 bit addresses. We need additional idals for pages
2576 * that get filled from two tracks, so we use the number
2577 * of records as upper limit.
2579 cidaw = last_rec - first_rec + 1;
2580 trkcount = last_trk - first_trk + 1;
2582 /* 1x prefix + one read/write ccw per track */
2583 cplength = 1 + trkcount;
2585 /* on 31-bit we need space for two 32 bit addresses per page
2586 * on 64-bit one 64 bit address
2588 datasize = sizeof(struct PFX_eckd_data) +
2589 cidaw * sizeof(unsigned long long);
2591 /* Allocate the ccw request. */
2592 cqr = dasd_smalloc_request(DASD_ECKD_MAGIC, cplength, datasize,
2597 /* transfer length factor: how many bytes to read from the last track */
2598 if (first_trk == last_trk)
2599 tlf = last_offs - first_offs + 1;
2601 tlf = last_offs + 1;
2604 if (prefix_LRE(ccw++, cqr->data, first_trk,
2605 last_trk, cmd, basedev, startdev,
2606 1 /* format */, first_offs + 1,
2609 /* Clock not in sync and XRC is enabled.
2612 dasd_sfree_request(cqr, startdev);
2613 return ERR_PTR(-EAGAIN);
2617 * The translation of request into ccw programs must meet the
2618 * following conditions:
2619 * - all idaws but the first and the last must address full pages
2620 * (or 2K blocks on 31-bit)
2621 * - the scope of a ccw and it's idal ends with the track boundaries
2623 idaws = (unsigned long *) (cqr->data + sizeof(struct PFX_eckd_data));
2627 len_to_track_end = 0;
2630 rq_for_each_segment(bv, req, iter) {
2631 dst = page_address(bv->bv_page) + bv->bv_offset;
2632 seg_len = bv->bv_len;
2636 recoffs = sector_div(trkid, blk_per_trk);
2637 count_to_trk_end = blk_per_trk - recoffs;
2638 count = min((last_rec - recid + 1),
2639 (sector_t)count_to_trk_end);
2640 len_to_track_end = count * blksize;
2641 ccw[-1].flags |= CCW_FLAG_CC;
2642 ccw->cmd_code = cmd;
2643 ccw->count = len_to_track_end;
2644 ccw->cda = (__u32)(addr_t)idaws;
2645 ccw->flags = CCW_FLAG_IDA;
2649 /* first idaw for a ccw may start anywhere */
2653 /* If we start a new idaw, we must make sure that it
2654 * starts on an IDA_BLOCK_SIZE boundary.
2655 * If we continue an idaw, we must make sure that the
2656 * current segment begins where the so far accumulated
2660 if (__pa(dst) & (IDA_BLOCK_SIZE-1)) {
2661 dasd_sfree_request(cqr, startdev);
2662 return ERR_PTR(-ERANGE);
2666 if ((idaw_dst + idaw_len) != dst) {
2667 dasd_sfree_request(cqr, startdev);
2668 return ERR_PTR(-ERANGE);
2670 part_len = min(seg_len, len_to_track_end);
2671 seg_len -= part_len;
2673 idaw_len += part_len;
2674 len_to_track_end -= part_len;
2675 /* collected memory area ends on an IDA_BLOCK border,
2677 * idal_create_words will handle cases where idaw_len
2678 * is larger then IDA_BLOCK_SIZE
2680 if (!(__pa(idaw_dst + idaw_len) & (IDA_BLOCK_SIZE-1)))
2682 /* We also need to end the idaw at track end */
2683 if (!len_to_track_end) {
2688 idaws = idal_create_words(idaws, idaw_dst,
2697 if (blk_noretry_request(req) ||
2698 block->base->features & DASD_FEATURE_FAILFAST)
2699 set_bit(DASD_CQR_FLAGS_FAILFAST, &cqr->flags);
2700 cqr->startdev = startdev;
2701 cqr->memdev = startdev;
2703 cqr->expires = startdev->default_expires * HZ; /* default 5 minutes */
2704 cqr->lpm = startdev->path_data.ppm;
2706 cqr->buildclk = get_clock();
2707 cqr->status = DASD_CQR_FILLED;
2711 static int prepare_itcw(struct itcw *itcw,
2712 unsigned int trk, unsigned int totrk, int cmd,
2713 struct dasd_device *basedev,
2714 struct dasd_device *startdev,
2715 unsigned int rec_on_trk, int count,
2716 unsigned int blksize,
2717 unsigned int total_data_size,
2719 unsigned int blk_per_trk)
2721 struct PFX_eckd_data pfxdata;
2722 struct dasd_eckd_private *basepriv, *startpriv;
2723 struct DE_eckd_data *dedata;
2724 struct LRE_eckd_data *lredata;
2728 u16 heads, beghead, endhead;
2736 /* setup prefix data */
2737 basepriv = (struct dasd_eckd_private *) basedev->private;
2738 startpriv = (struct dasd_eckd_private *) startdev->private;
2739 dedata = &pfxdata.define_extent;
2740 lredata = &pfxdata.locate_record;
2742 memset(&pfxdata, 0, sizeof(pfxdata));
2743 pfxdata.format = 1; /* PFX with LRE */
2744 pfxdata.base_address = basepriv->ned->unit_addr;
2745 pfxdata.base_lss = basepriv->ned->ID;
2746 pfxdata.validity.define_extent = 1;
2748 /* private uid is kept up to date, conf_data may be outdated */
2749 if (startpriv->uid.type != UA_BASE_DEVICE) {
2750 pfxdata.validity.verify_base = 1;
2751 if (startpriv->uid.type == UA_HYPER_PAV_ALIAS)
2752 pfxdata.validity.hyper_pav = 1;
2756 case DASD_ECKD_CCW_READ_TRACK_DATA:
2757 dedata->mask.perm = 0x1;
2758 dedata->attributes.operation = basepriv->attrib.operation;
2759 dedata->blk_size = blksize;
2760 dedata->ga_extended |= 0x42;
2761 lredata->operation.orientation = 0x0;
2762 lredata->operation.operation = 0x0C;
2763 lredata->auxiliary.check_bytes = 0x01;
2764 pfx_cmd = DASD_ECKD_CCW_PFX_READ;
2766 case DASD_ECKD_CCW_WRITE_TRACK_DATA:
2767 dedata->mask.perm = 0x02;
2768 dedata->attributes.operation = basepriv->attrib.operation;
2769 dedata->blk_size = blksize;
2770 rc = check_XRC_on_prefix(&pfxdata, basedev);
2771 dedata->ga_extended |= 0x42;
2772 lredata->operation.orientation = 0x0;
2773 lredata->operation.operation = 0x3F;
2774 lredata->extended_operation = 0x23;
2775 lredata->auxiliary.check_bytes = 0x2;
2776 pfx_cmd = DASD_ECKD_CCW_PFX;
2779 DBF_DEV_EVENT(DBF_ERR, basedev,
2780 "prepare itcw, unknown opcode 0x%x", cmd);
2787 dedata->attributes.mode = 0x3; /* ECKD */
2789 heads = basepriv->rdc_data.trk_per_cyl;
2790 begcyl = trk / heads;
2791 beghead = trk % heads;
2792 endcyl = totrk / heads;
2793 endhead = totrk % heads;
2795 /* check for sequential prestage - enhance cylinder range */
2796 if (dedata->attributes.operation == DASD_SEQ_PRESTAGE ||
2797 dedata->attributes.operation == DASD_SEQ_ACCESS) {
2799 if (endcyl + basepriv->attrib.nr_cyl < basepriv->real_cyl)
2800 endcyl += basepriv->attrib.nr_cyl;
2802 endcyl = (basepriv->real_cyl - 1);
2805 set_ch_t(&dedata->beg_ext, begcyl, beghead);
2806 set_ch_t(&dedata->end_ext, endcyl, endhead);
2808 dedata->ep_format = 0x20; /* records per track is valid */
2809 dedata->ep_rec_per_track = blk_per_trk;
2812 switch (basepriv->rdc_data.dev_type) {
2814 dn = ceil_quot(blksize + 6, 232);
2815 d = 9 + ceil_quot(blksize + 6 * (dn + 1), 34);
2816 sector = (49 + (rec_on_trk - 1) * (10 + d)) / 8;
2819 d = 7 + ceil_quot(blksize + 12, 32);
2820 sector = (39 + (rec_on_trk - 1) * (8 + d)) / 7;
2825 lredata->auxiliary.length_valid = 1;
2826 lredata->auxiliary.length_scope = 1;
2827 lredata->auxiliary.imbedded_ccw_valid = 1;
2828 lredata->length = tlf;
2829 lredata->imbedded_ccw = cmd;
2830 lredata->count = count;
2831 lredata->sector = sector;
2832 set_ch_t(&lredata->seek_addr, begcyl, beghead);
2833 lredata->search_arg.cyl = lredata->seek_addr.cyl;
2834 lredata->search_arg.head = lredata->seek_addr.head;
2835 lredata->search_arg.record = rec_on_trk;
2837 dcw = itcw_add_dcw(itcw, pfx_cmd, 0,
2838 &pfxdata, sizeof(pfxdata), total_data_size);
2839 return IS_ERR(dcw) ? PTR_ERR(dcw) : 0;
2842 static struct dasd_ccw_req *dasd_eckd_build_cp_tpm_track(
2843 struct dasd_device *startdev,
2844 struct dasd_block *block,
2845 struct request *req,
2850 unsigned int first_offs,
2851 unsigned int last_offs,
2852 unsigned int blk_per_trk,
2853 unsigned int blksize)
2855 struct dasd_ccw_req *cqr;
2856 struct req_iterator iter;
2859 unsigned int trkcount, ctidaw;
2861 struct dasd_device *basedev;
2864 struct tidaw *last_tidaw = NULL;
2868 unsigned int seg_len, part_len, len_to_track_end;
2869 unsigned char new_track;
2870 sector_t recid, trkid;
2872 unsigned int count, count_to_trk_end;
2875 basedev = block->base;
2876 if (rq_data_dir(req) == READ) {
2877 cmd = DASD_ECKD_CCW_READ_TRACK_DATA;
2878 itcw_op = ITCW_OP_READ;
2879 } else if (rq_data_dir(req) == WRITE) {
2880 cmd = DASD_ECKD_CCW_WRITE_TRACK_DATA;
2881 itcw_op = ITCW_OP_WRITE;
2883 return ERR_PTR(-EINVAL);
2885 /* trackbased I/O needs address all memory via TIDAWs,
2886 * not just for 64 bit addresses. This allows us to map
2887 * each segment directly to one tidaw.
2888 * In the case of write requests, additional tidaws may
2889 * be needed when a segment crosses a track boundary.
2891 trkcount = last_trk - first_trk + 1;
2893 rq_for_each_segment(bv, req, iter) {
2896 if (rq_data_dir(req) == WRITE)
2897 ctidaw += (last_trk - first_trk);
2899 /* Allocate the ccw request. */
2900 itcw_size = itcw_calc_size(0, ctidaw, 0);
2901 cqr = dasd_smalloc_request(DASD_ECKD_MAGIC, 0, itcw_size, startdev);
2905 /* transfer length factor: how many bytes to read from the last track */
2906 if (first_trk == last_trk)
2907 tlf = last_offs - first_offs + 1;
2909 tlf = last_offs + 1;
2912 itcw = itcw_init(cqr->data, itcw_size, itcw_op, 0, ctidaw, 0);
2917 cqr->cpaddr = itcw_get_tcw(itcw);
2918 if (prepare_itcw(itcw, first_trk, last_trk,
2919 cmd, basedev, startdev,
2922 (last_rec - first_rec + 1) * blksize,
2923 tlf, blk_per_trk) == -EAGAIN) {
2924 /* Clock not in sync and XRC is enabled.
2930 len_to_track_end = 0;
2932 * A tidaw can address 4k of memory, but must not cross page boundaries
2933 * We can let the block layer handle this by setting
2934 * blk_queue_segment_boundary to page boundaries and
2935 * blk_max_segment_size to page size when setting up the request queue.
2936 * For write requests, a TIDAW must not cross track boundaries, because
2937 * we have to set the CBC flag on the last tidaw for each track.
2939 if (rq_data_dir(req) == WRITE) {
2942 rq_for_each_segment(bv, req, iter) {
2943 dst = page_address(bv->bv_page) + bv->bv_offset;
2944 seg_len = bv->bv_len;
2948 offs = sector_div(trkid, blk_per_trk);
2949 count_to_trk_end = blk_per_trk - offs;
2950 count = min((last_rec - recid + 1),
2951 (sector_t)count_to_trk_end);
2952 len_to_track_end = count * blksize;
2956 part_len = min(seg_len, len_to_track_end);
2957 seg_len -= part_len;
2958 len_to_track_end -= part_len;
2959 /* We need to end the tidaw at track end */
2960 if (!len_to_track_end) {
2962 tidaw_flags = TIDAW_FLAGS_INSERT_CBC;
2965 last_tidaw = itcw_add_tidaw(itcw, tidaw_flags,
2967 if (IS_ERR(last_tidaw)) {
2975 rq_for_each_segment(bv, req, iter) {
2976 dst = page_address(bv->bv_page) + bv->bv_offset;
2977 last_tidaw = itcw_add_tidaw(itcw, 0x00,
2979 if (IS_ERR(last_tidaw)) {
2985 last_tidaw->flags |= TIDAW_FLAGS_LAST;
2986 last_tidaw->flags &= ~TIDAW_FLAGS_INSERT_CBC;
2987 itcw_finalize(itcw);
2989 if (blk_noretry_request(req) ||
2990 block->base->features & DASD_FEATURE_FAILFAST)
2991 set_bit(DASD_CQR_FLAGS_FAILFAST, &cqr->flags);
2993 cqr->startdev = startdev;
2994 cqr->memdev = startdev;
2996 cqr->expires = startdev->default_expires * HZ; /* default 5 minutes */
2997 cqr->lpm = startdev->path_data.ppm;
2999 cqr->buildclk = get_clock();
3000 cqr->status = DASD_CQR_FILLED;
3003 dasd_sfree_request(cqr, startdev);
3004 return ERR_PTR(ret);
3007 static struct dasd_ccw_req *dasd_eckd_build_cp(struct dasd_device *startdev,
3008 struct dasd_block *block,
3009 struct request *req)
3014 struct dasd_eckd_private *private;
3015 struct dasd_device *basedev;
3016 sector_t first_rec, last_rec;
3017 sector_t first_trk, last_trk;
3018 unsigned int first_offs, last_offs;
3019 unsigned int blk_per_trk, blksize;
3021 unsigned int data_size;
3022 struct dasd_ccw_req *cqr;
3024 basedev = block->base;
3025 private = (struct dasd_eckd_private *) basedev->private;
3027 /* Calculate number of blocks/records per track. */
3028 blksize = block->bp_block;
3029 blk_per_trk = recs_per_track(&private->rdc_data, 0, blksize);
3030 if (blk_per_trk == 0)
3031 return ERR_PTR(-EINVAL);
3032 /* Calculate record id of first and last block. */
3033 first_rec = first_trk = blk_rq_pos(req) >> block->s2b_shift;
3034 first_offs = sector_div(first_trk, blk_per_trk);
3035 last_rec = last_trk =
3036 (blk_rq_pos(req) + blk_rq_sectors(req) - 1) >> block->s2b_shift;
3037 last_offs = sector_div(last_trk, blk_per_trk);
3038 cdlspecial = (private->uses_cdl && first_rec < 2*blk_per_trk);
3040 fcx_multitrack = private->features.feature[40] & 0x20;
3041 data_size = blk_rq_bytes(req);
3042 /* tpm write request add CBC data on each track boundary */
3043 if (rq_data_dir(req) == WRITE)
3044 data_size += (last_trk - first_trk) * 4;
3046 /* is read track data and write track data in command mode supported? */
3047 cmdrtd = private->features.feature[9] & 0x20;
3048 cmdwtd = private->features.feature[12] & 0x40;
3049 use_prefix = private->features.feature[8] & 0x01;
3052 if (cdlspecial || dasd_page_cache) {
3053 /* do nothing, just fall through to the cmd mode single case */
3054 } else if ((data_size <= private->fcx_max_data)
3055 && (fcx_multitrack || (first_trk == last_trk))) {
3056 cqr = dasd_eckd_build_cp_tpm_track(startdev, block, req,
3057 first_rec, last_rec,
3058 first_trk, last_trk,
3059 first_offs, last_offs,
3060 blk_per_trk, blksize);
3061 if (IS_ERR(cqr) && (PTR_ERR(cqr) != -EAGAIN) &&
3062 (PTR_ERR(cqr) != -ENOMEM))
3064 } else if (use_prefix &&
3065 (((rq_data_dir(req) == READ) && cmdrtd) ||
3066 ((rq_data_dir(req) == WRITE) && cmdwtd))) {
3067 cqr = dasd_eckd_build_cp_cmd_track(startdev, block, req,
3068 first_rec, last_rec,
3069 first_trk, last_trk,
3070 first_offs, last_offs,
3071 blk_per_trk, blksize);
3072 if (IS_ERR(cqr) && (PTR_ERR(cqr) != -EAGAIN) &&
3073 (PTR_ERR(cqr) != -ENOMEM))
3077 cqr = dasd_eckd_build_cp_cmd_single(startdev, block, req,
3078 first_rec, last_rec,
3079 first_trk, last_trk,
3080 first_offs, last_offs,
3081 blk_per_trk, blksize);
3085 static struct dasd_ccw_req *dasd_raw_build_cp(struct dasd_device *startdev,
3086 struct dasd_block *block,
3087 struct request *req)
3089 unsigned long *idaws;
3090 struct dasd_device *basedev;
3091 struct dasd_ccw_req *cqr;
3093 struct req_iterator iter;
3097 unsigned int trkcount;
3098 unsigned int seg_len, len_to_track_end;
3099 unsigned int first_offs;
3100 unsigned int cidaw, cplength, datasize;
3101 sector_t first_trk, last_trk;
3102 unsigned int pfx_datasize;
3105 * raw track access needs to be mutiple of 64k and on 64k boundary
3107 if ((blk_rq_pos(req) % DASD_RAW_SECTORS_PER_TRACK) != 0) {
3108 cqr = ERR_PTR(-EINVAL);
3111 if (((blk_rq_pos(req) + blk_rq_sectors(req)) %
3112 DASD_RAW_SECTORS_PER_TRACK) != 0) {
3113 cqr = ERR_PTR(-EINVAL);
3117 first_trk = blk_rq_pos(req) / DASD_RAW_SECTORS_PER_TRACK;
3118 last_trk = (blk_rq_pos(req) + blk_rq_sectors(req) - 1) /
3119 DASD_RAW_SECTORS_PER_TRACK;
3120 trkcount = last_trk - first_trk + 1;
3122 basedev = block->base;
3124 if (rq_data_dir(req) == READ)
3125 cmd = DASD_ECKD_CCW_READ_TRACK;
3126 else if (rq_data_dir(req) == WRITE)
3127 cmd = DASD_ECKD_CCW_WRITE_FULL_TRACK;
3129 cqr = ERR_PTR(-EINVAL);
3134 * Raw track based I/O needs IDAWs for each page,
3135 * and not just for 64 bit addresses.
3137 cidaw = trkcount * DASD_RAW_BLOCK_PER_TRACK;
3139 /* 1x prefix + one read/write ccw per track */
3140 cplength = 1 + trkcount;
3143 * struct PFX_eckd_data has up to 2 byte as extended parameter
3144 * this is needed for write full track and has to be mentioned
3146 * add 8 instead of 2 to keep 8 byte boundary
3148 pfx_datasize = sizeof(struct PFX_eckd_data) + 8;
3150 datasize = pfx_datasize + cidaw * sizeof(unsigned long long);
3152 /* Allocate the ccw request. */
3153 cqr = dasd_smalloc_request(DASD_ECKD_MAGIC, cplength,
3154 datasize, startdev);
3159 if (prefix_LRE(ccw++, cqr->data, first_trk, last_trk, cmd,
3160 basedev, startdev, 1 /* format */, first_offs + 1,
3161 trkcount, 0, 0) == -EAGAIN) {
3162 /* Clock not in sync and XRC is enabled.
3165 dasd_sfree_request(cqr, startdev);
3166 cqr = ERR_PTR(-EAGAIN);
3170 idaws = (unsigned long *)(cqr->data + pfx_datasize);
3172 len_to_track_end = 0;
3174 rq_for_each_segment(bv, req, iter) {
3175 dst = page_address(bv->bv_page) + bv->bv_offset;
3176 seg_len = bv->bv_len;
3177 if (!len_to_track_end) {
3178 ccw[-1].flags |= CCW_FLAG_CC;
3179 ccw->cmd_code = cmd;
3180 /* maximum 3390 track size */
3182 /* 64k map to one track */
3183 len_to_track_end = 65536;
3184 ccw->cda = (__u32)(addr_t)idaws;
3185 ccw->flags |= CCW_FLAG_IDA;
3186 ccw->flags |= CCW_FLAG_SLI;
3189 len_to_track_end -= seg_len;
3190 idaws = idal_create_words(idaws, dst, seg_len);
3193 if (blk_noretry_request(req) ||
3194 block->base->features & DASD_FEATURE_FAILFAST)
3195 set_bit(DASD_CQR_FLAGS_FAILFAST, &cqr->flags);
3196 cqr->startdev = startdev;
3197 cqr->memdev = startdev;
3199 cqr->expires = startdev->default_expires * HZ;
3200 cqr->lpm = startdev->path_data.ppm;
3202 cqr->buildclk = get_clock();
3203 cqr->status = DASD_CQR_FILLED;
3205 if (IS_ERR(cqr) && PTR_ERR(cqr) != -EAGAIN)
3213 dasd_eckd_free_cp(struct dasd_ccw_req *cqr, struct request *req)
3215 struct dasd_eckd_private *private;
3217 struct req_iterator iter;
3220 unsigned int blksize, blk_per_trk, off;
3224 if (!dasd_page_cache)
3226 private = (struct dasd_eckd_private *) cqr->block->base->private;
3227 blksize = cqr->block->bp_block;
3228 blk_per_trk = recs_per_track(&private->rdc_data, 0, blksize);
3229 recid = blk_rq_pos(req) >> cqr->block->s2b_shift;
3231 /* Skip over define extent & locate record. */
3233 if (private->uses_cdl == 0 || recid > 2*blk_per_trk)
3235 rq_for_each_segment(bv, req, iter) {
3236 dst = page_address(bv->bv_page) + bv->bv_offset;
3237 for (off = 0; off < bv->bv_len; off += blksize) {
3238 /* Skip locate record. */
3239 if (private->uses_cdl && recid <= 2*blk_per_trk)
3242 if (ccw->flags & CCW_FLAG_IDA)
3243 cda = *((char **)((addr_t) ccw->cda));
3245 cda = (char *)((addr_t) ccw->cda);
3247 if (rq_data_dir(req) == READ)
3248 memcpy(dst, cda, bv->bv_len);
3249 kmem_cache_free(dasd_page_cache,
3250 (void *)((addr_t)cda & PAGE_MASK));
3259 status = cqr->status == DASD_CQR_DONE;
3260 dasd_sfree_request(cqr, cqr->memdev);
3265 * Modify ccw/tcw in cqr so it can be started on a base device.
3267 * Note that this is not enough to restart the cqr!
3268 * Either reset cqr->startdev as well (summary unit check handling)
3269 * or restart via separate cqr (as in ERP handling).
3271 void dasd_eckd_reset_ccw_to_base_io(struct dasd_ccw_req *cqr)
3274 struct PFX_eckd_data *pfxdata;
3279 if (cqr->cpmode == 1) {
3281 tccb = tcw_get_tccb(tcw);
3282 dcw = (struct dcw *)&tccb->tca[0];
3283 pfxdata = (struct PFX_eckd_data *)&dcw->cd[0];
3284 pfxdata->validity.verify_base = 0;
3285 pfxdata->validity.hyper_pav = 0;
3288 pfxdata = cqr->data;
3289 if (ccw->cmd_code == DASD_ECKD_CCW_PFX) {
3290 pfxdata->validity.verify_base = 0;
3291 pfxdata->validity.hyper_pav = 0;
3296 #define DASD_ECKD_CHANQ_MAX_SIZE 4
3298 static struct dasd_ccw_req *dasd_eckd_build_alias_cp(struct dasd_device *base,
3299 struct dasd_block *block,
3300 struct request *req)
3302 struct dasd_eckd_private *private;
3303 struct dasd_device *startdev;
3304 unsigned long flags;
3305 struct dasd_ccw_req *cqr;
3307 startdev = dasd_alias_get_start_dev(base);
3310 private = (struct dasd_eckd_private *) startdev->private;
3311 if (private->count >= DASD_ECKD_CHANQ_MAX_SIZE)
3312 return ERR_PTR(-EBUSY);
3314 spin_lock_irqsave(get_ccwdev_lock(startdev->cdev), flags);
3316 if ((base->features & DASD_FEATURE_USERAW))
3317 cqr = dasd_raw_build_cp(startdev, block, req);
3319 cqr = dasd_eckd_build_cp(startdev, block, req);
3322 spin_unlock_irqrestore(get_ccwdev_lock(startdev->cdev), flags);
3326 static int dasd_eckd_free_alias_cp(struct dasd_ccw_req *cqr,
3327 struct request *req)
3329 struct dasd_eckd_private *private;
3330 unsigned long flags;
3332 spin_lock_irqsave(get_ccwdev_lock(cqr->memdev->cdev), flags);
3333 private = (struct dasd_eckd_private *) cqr->memdev->private;
3335 spin_unlock_irqrestore(get_ccwdev_lock(cqr->memdev->cdev), flags);
3336 return dasd_eckd_free_cp(cqr, req);
3340 dasd_eckd_fill_info(struct dasd_device * device,
3341 struct dasd_information2_t * info)
3343 struct dasd_eckd_private *private;
3345 private = (struct dasd_eckd_private *) device->private;
3346 info->label_block = 2;
3347 info->FBA_layout = private->uses_cdl ? 0 : 1;
3348 info->format = private->uses_cdl ? DASD_FORMAT_CDL : DASD_FORMAT_LDL;
3349 info->characteristics_size = sizeof(struct dasd_eckd_characteristics);
3350 memcpy(info->characteristics, &private->rdc_data,
3351 sizeof(struct dasd_eckd_characteristics));
3352 info->confdata_size = min((unsigned long)private->conf_len,
3353 sizeof(info->configuration_data));
3354 memcpy(info->configuration_data, private->conf_data,
3355 info->confdata_size);
3360 * SECTION: ioctl functions for eckd devices.
3364 * Release device ioctl.
3365 * Buils a channel programm to releases a prior reserved
3366 * (see dasd_eckd_reserve) device.
3369 dasd_eckd_release(struct dasd_device *device)
3371 struct dasd_ccw_req *cqr;
3376 if (!capable(CAP_SYS_ADMIN))
3380 cqr = dasd_smalloc_request(DASD_ECKD_MAGIC, 1, 32, device);
3382 mutex_lock(&dasd_reserve_mutex);
3384 cqr = &dasd_reserve_req->cqr;
3385 memset(cqr, 0, sizeof(*cqr));
3386 memset(&dasd_reserve_req->ccw, 0,
3387 sizeof(dasd_reserve_req->ccw));
3388 cqr->cpaddr = &dasd_reserve_req->ccw;
3389 cqr->data = &dasd_reserve_req->data;
3390 cqr->magic = DASD_ECKD_MAGIC;
3393 ccw->cmd_code = DASD_ECKD_CCW_RELEASE;
3394 ccw->flags |= CCW_FLAG_SLI;
3396 ccw->cda = (__u32)(addr_t) cqr->data;
3397 cqr->startdev = device;
3398 cqr->memdev = device;
3399 clear_bit(DASD_CQR_FLAGS_USE_ERP, &cqr->flags);
3400 set_bit(DASD_CQR_FLAGS_FAILFAST, &cqr->flags);
3401 cqr->retries = 2; /* set retry counter to enable basic ERP */
3402 cqr->expires = 2 * HZ;
3403 cqr->buildclk = get_clock();
3404 cqr->status = DASD_CQR_FILLED;
3406 rc = dasd_sleep_on_immediatly(cqr);
3408 clear_bit(DASD_FLAG_IS_RESERVED, &device->flags);
3411 mutex_unlock(&dasd_reserve_mutex);
3413 dasd_sfree_request(cqr, cqr->memdev);
3418 * Reserve device ioctl.
3419 * Options are set to 'synchronous wait for interrupt' and
3420 * 'timeout the request'. This leads to a terminate IO if
3421 * the interrupt is outstanding for a certain time.
3424 dasd_eckd_reserve(struct dasd_device *device)
3426 struct dasd_ccw_req *cqr;
3431 if (!capable(CAP_SYS_ADMIN))
3435 cqr = dasd_smalloc_request(DASD_ECKD_MAGIC, 1, 32, device);
3437 mutex_lock(&dasd_reserve_mutex);
3439 cqr = &dasd_reserve_req->cqr;
3440 memset(cqr, 0, sizeof(*cqr));
3441 memset(&dasd_reserve_req->ccw, 0,
3442 sizeof(dasd_reserve_req->ccw));
3443 cqr->cpaddr = &dasd_reserve_req->ccw;
3444 cqr->data = &dasd_reserve_req->data;
3445 cqr->magic = DASD_ECKD_MAGIC;
3448 ccw->cmd_code = DASD_ECKD_CCW_RESERVE;
3449 ccw->flags |= CCW_FLAG_SLI;
3451 ccw->cda = (__u32)(addr_t) cqr->data;
3452 cqr->startdev = device;
3453 cqr->memdev = device;
3454 clear_bit(DASD_CQR_FLAGS_USE_ERP, &cqr->flags);
3455 set_bit(DASD_CQR_FLAGS_FAILFAST, &cqr->flags);
3456 cqr->retries = 2; /* set retry counter to enable basic ERP */
3457 cqr->expires = 2 * HZ;
3458 cqr->buildclk = get_clock();
3459 cqr->status = DASD_CQR_FILLED;
3461 rc = dasd_sleep_on_immediatly(cqr);
3463 set_bit(DASD_FLAG_IS_RESERVED, &device->flags);
3466 mutex_unlock(&dasd_reserve_mutex);
3468 dasd_sfree_request(cqr, cqr->memdev);
3473 * Steal lock ioctl - unconditional reserve device.
3474 * Buils a channel programm to break a device's reservation.
3475 * (unconditional reserve)
3478 dasd_eckd_steal_lock(struct dasd_device *device)
3480 struct dasd_ccw_req *cqr;
3485 if (!capable(CAP_SYS_ADMIN))
3489 cqr = dasd_smalloc_request(DASD_ECKD_MAGIC, 1, 32, device);
3491 mutex_lock(&dasd_reserve_mutex);
3493 cqr = &dasd_reserve_req->cqr;
3494 memset(cqr, 0, sizeof(*cqr));
3495 memset(&dasd_reserve_req->ccw, 0,
3496 sizeof(dasd_reserve_req->ccw));
3497 cqr->cpaddr = &dasd_reserve_req->ccw;
3498 cqr->data = &dasd_reserve_req->data;
3499 cqr->magic = DASD_ECKD_MAGIC;
3502 ccw->cmd_code = DASD_ECKD_CCW_SLCK;
3503 ccw->flags |= CCW_FLAG_SLI;
3505 ccw->cda = (__u32)(addr_t) cqr->data;
3506 cqr->startdev = device;
3507 cqr->memdev = device;
3508 clear_bit(DASD_CQR_FLAGS_USE_ERP, &cqr->flags);
3509 set_bit(DASD_CQR_FLAGS_FAILFAST, &cqr->flags);
3510 cqr->retries = 2; /* set retry counter to enable basic ERP */
3511 cqr->expires = 2 * HZ;
3512 cqr->buildclk = get_clock();
3513 cqr->status = DASD_CQR_FILLED;
3515 rc = dasd_sleep_on_immediatly(cqr);
3517 set_bit(DASD_FLAG_IS_RESERVED, &device->flags);
3520 mutex_unlock(&dasd_reserve_mutex);
3522 dasd_sfree_request(cqr, cqr->memdev);
3527 * SNID - Sense Path Group ID
3528 * This ioctl may be used in situations where I/O is stalled due to
3529 * a reserve, so if the normal dasd_smalloc_request fails, we use the
3530 * preallocated dasd_reserve_req.
3532 static int dasd_eckd_snid(struct dasd_device *device,
3535 struct dasd_ccw_req *cqr;
3539 struct dasd_snid_ioctl_data usrparm;
3541 if (!capable(CAP_SYS_ADMIN))
3544 if (copy_from_user(&usrparm, argp, sizeof(usrparm)))
3548 cqr = dasd_smalloc_request(DASD_ECKD_MAGIC, 1,
3549 sizeof(struct dasd_snid_data), device);
3551 mutex_lock(&dasd_reserve_mutex);
3553 cqr = &dasd_reserve_req->cqr;
3554 memset(cqr, 0, sizeof(*cqr));
3555 memset(&dasd_reserve_req->ccw, 0,
3556 sizeof(dasd_reserve_req->ccw));
3557 cqr->cpaddr = &dasd_reserve_req->ccw;
3558 cqr->data = &dasd_reserve_req->data;
3559 cqr->magic = DASD_ECKD_MAGIC;
3562 ccw->cmd_code = DASD_ECKD_CCW_SNID;
3563 ccw->flags |= CCW_FLAG_SLI;
3565 ccw->cda = (__u32)(addr_t) cqr->data;
3566 cqr->startdev = device;
3567 cqr->memdev = device;
3568 clear_bit(DASD_CQR_FLAGS_USE_ERP, &cqr->flags);
3569 set_bit(DASD_CQR_FLAGS_FAILFAST, &cqr->flags);
3570 set_bit(DASD_CQR_ALLOW_SLOCK, &cqr->flags);
3572 cqr->expires = 10 * HZ;
3573 cqr->buildclk = get_clock();
3574 cqr->status = DASD_CQR_FILLED;
3575 cqr->lpm = usrparm.path_mask;
3577 rc = dasd_sleep_on_immediatly(cqr);
3578 /* verify that I/O processing didn't modify the path mask */
3579 if (!rc && usrparm.path_mask && (cqr->lpm != usrparm.path_mask))
3582 usrparm.data = *((struct dasd_snid_data *)cqr->data);
3583 if (copy_to_user(argp, &usrparm, sizeof(usrparm)))
3588 mutex_unlock(&dasd_reserve_mutex);
3590 dasd_sfree_request(cqr, cqr->memdev);
3595 * Read performance statistics
3598 dasd_eckd_performance(struct dasd_device *device, void __user *argp)
3600 struct dasd_psf_prssd_data *prssdp;
3601 struct dasd_rssd_perf_stats_t *stats;
3602 struct dasd_ccw_req *cqr;
3606 cqr = dasd_smalloc_request(DASD_ECKD_MAGIC, 1 /* PSF */ + 1 /* RSSD */,
3607 (sizeof(struct dasd_psf_prssd_data) +
3608 sizeof(struct dasd_rssd_perf_stats_t)),
3611 DBF_DEV_EVENT(DBF_WARNING, device, "%s",
3612 "Could not allocate initialization request");
3613 return PTR_ERR(cqr);
3615 cqr->startdev = device;
3616 cqr->memdev = device;
3618 clear_bit(DASD_CQR_FLAGS_USE_ERP, &cqr->flags);
3619 cqr->expires = 10 * HZ;
3621 /* Prepare for Read Subsystem Data */
3622 prssdp = (struct dasd_psf_prssd_data *) cqr->data;
3623 memset(prssdp, 0, sizeof(struct dasd_psf_prssd_data));
3624 prssdp->order = PSF_ORDER_PRSSD;
3625 prssdp->suborder = 0x01; /* Performance Statistics */
3626 prssdp->varies[1] = 0x01; /* Perf Statistics for the Subsystem */
3629 ccw->cmd_code = DASD_ECKD_CCW_PSF;
3630 ccw->count = sizeof(struct dasd_psf_prssd_data);
3631 ccw->flags |= CCW_FLAG_CC;
3632 ccw->cda = (__u32)(addr_t) prssdp;
3634 /* Read Subsystem Data - Performance Statistics */
3635 stats = (struct dasd_rssd_perf_stats_t *) (prssdp + 1);
3636 memset(stats, 0, sizeof(struct dasd_rssd_perf_stats_t));
3639 ccw->cmd_code = DASD_ECKD_CCW_RSSD;
3640 ccw->count = sizeof(struct dasd_rssd_perf_stats_t);
3641 ccw->cda = (__u32)(addr_t) stats;
3643 cqr->buildclk = get_clock();
3644 cqr->status = DASD_CQR_FILLED;
3645 rc = dasd_sleep_on(cqr);
3647 prssdp = (struct dasd_psf_prssd_data *) cqr->data;
3648 stats = (struct dasd_rssd_perf_stats_t *) (prssdp + 1);
3649 if (copy_to_user(argp, stats,
3650 sizeof(struct dasd_rssd_perf_stats_t)))
3653 dasd_sfree_request(cqr, cqr->memdev);
3658 * Get attributes (cache operations)
3659 * Returnes the cache attributes used in Define Extend (DE).
3662 dasd_eckd_get_attrib(struct dasd_device *device, void __user *argp)
3664 struct dasd_eckd_private *private =
3665 (struct dasd_eckd_private *)device->private;
3666 struct attrib_data_t attrib = private->attrib;
3669 if (!capable(CAP_SYS_ADMIN))
3675 if (copy_to_user(argp, (long *) &attrib,
3676 sizeof(struct attrib_data_t)))
3683 * Set attributes (cache operations)
3684 * Stores the attributes for cache operation to be used in Define Extend (DE).
3687 dasd_eckd_set_attrib(struct dasd_device *device, void __user *argp)
3689 struct dasd_eckd_private *private =
3690 (struct dasd_eckd_private *)device->private;
3691 struct attrib_data_t attrib;
3693 if (!capable(CAP_SYS_ADMIN))
3698 if (copy_from_user(&attrib, argp, sizeof(struct attrib_data_t)))
3700 private->attrib = attrib;
3702 dev_info(&device->cdev->dev,
3703 "The DASD cache mode was set to %x (%i cylinder prestage)\n",
3704 private->attrib.operation, private->attrib.nr_cyl);
3709 * Issue syscall I/O to EMC Symmetrix array.
3710 * CCWs are PSF and RSSD
3712 static int dasd_symm_io(struct dasd_device *device, void __user *argp)
3714 struct dasd_symmio_parms usrparm;
3715 char *psf_data, *rssd_result;
3716 struct dasd_ccw_req *cqr;
3721 if (!capable(CAP_SYS_ADMIN) && !capable(CAP_SYS_RAWIO))
3725 /* Copy parms from caller */
3727 if (copy_from_user(&usrparm, argp, sizeof(usrparm)))
3729 if (is_compat_task() || sizeof(long) == 4) {
3730 /* Make sure pointers are sane even on 31 bit. */
3732 if ((usrparm.psf_data >> 32) != 0)
3734 if ((usrparm.rssd_result >> 32) != 0)
3736 usrparm.psf_data &= 0x7fffffffULL;
3737 usrparm.rssd_result &= 0x7fffffffULL;
3739 /* alloc I/O data area */
3740 psf_data = kzalloc(usrparm.psf_data_len, GFP_KERNEL | GFP_DMA);
3741 rssd_result = kzalloc(usrparm.rssd_result_len, GFP_KERNEL | GFP_DMA);
3742 if (!psf_data || !rssd_result) {
3747 /* get syscall header from user space */
3749 if (copy_from_user(psf_data,
3750 (void __user *)(unsigned long) usrparm.psf_data,
3751 usrparm.psf_data_len))
3756 /* setup CCWs for PSF + RSSD */
3757 cqr = dasd_smalloc_request(DASD_ECKD_MAGIC, 2 , 0, device);
3759 DBF_DEV_EVENT(DBF_WARNING, device, "%s",
3760 "Could not allocate initialization request");
3765 cqr->startdev = device;
3766 cqr->memdev = device;
3768 cqr->expires = 10 * HZ;
3769 cqr->buildclk = get_clock();
3770 cqr->status = DASD_CQR_FILLED;
3772 /* Build the ccws */
3776 ccw->cmd_code = DASD_ECKD_CCW_PSF;
3777 ccw->count = usrparm.psf_data_len;
3778 ccw->flags |= CCW_FLAG_CC;
3779 ccw->cda = (__u32)(addr_t) psf_data;
3784 ccw->cmd_code = DASD_ECKD_CCW_RSSD;
3785 ccw->count = usrparm.rssd_result_len;
3786 ccw->flags = CCW_FLAG_SLI ;
3787 ccw->cda = (__u32)(addr_t) rssd_result;
3789 rc = dasd_sleep_on(cqr);
3794 if (copy_to_user((void __user *)(unsigned long) usrparm.rssd_result,
3795 rssd_result, usrparm.rssd_result_len))
3800 dasd_sfree_request(cqr, cqr->memdev);
3805 DBF_DEV_EVENT(DBF_WARNING, device,
3806 "Symmetrix ioctl (0x%02x 0x%02x): rc=%d",
3807 (int) psf0, (int) psf1, rc);
3812 dasd_eckd_ioctl(struct dasd_block *block, unsigned int cmd, void __user *argp)
3814 struct dasd_device *device = block->base;
3818 return dasd_eckd_get_attrib(device, argp);
3820 return dasd_eckd_set_attrib(device, argp);
3822 return dasd_eckd_performance(device, argp);
3824 return dasd_eckd_release(device);
3826 return dasd_eckd_reserve(device);
3828 return dasd_eckd_steal_lock(device);
3830 return dasd_eckd_snid(device, argp);
3832 return dasd_symm_io(device, argp);
3839 * Dump the range of CCWs into 'page' buffer
3840 * and return number of printed chars.
3843 dasd_eckd_dump_ccw_range(struct ccw1 *from, struct ccw1 *to, char *page)
3849 while (from <= to) {
3850 len += sprintf(page + len, KERN_ERR PRINTK_HEADER
3851 " CCW %p: %08X %08X DAT:",
3852 from, ((int *) from)[0], ((int *) from)[1]);
3854 /* get pointer to data (consider IDALs) */
3855 if (from->flags & CCW_FLAG_IDA)
3856 datap = (char *) *((addr_t *) (addr_t) from->cda);
3858 datap = (char *) ((addr_t) from->cda);
3860 /* dump data (max 32 bytes) */
3861 for (count = 0; count < from->count && count < 32; count++) {
3862 if (count % 8 == 0) len += sprintf(page + len, " ");
3863 if (count % 4 == 0) len += sprintf(page + len, " ");
3864 len += sprintf(page + len, "%02x", datap[count]);
3866 len += sprintf(page + len, "\n");
3873 dasd_eckd_dump_sense_dbf(struct dasd_device *device, struct irb *irb,
3879 sense = (u64 *) dasd_get_sense(irb);
3880 stat = (u64 *) &irb->scsw;
3882 DBF_DEV_EVENT(DBF_EMERG, device, "%s: %016llx %08x : "
3883 "%016llx %016llx %016llx %016llx",
3884 reason, *stat, *((u32 *) (stat + 1)),
3885 sense[0], sense[1], sense[2], sense[3]);
3887 DBF_DEV_EVENT(DBF_EMERG, device, "%s: %016llx %08x : %s",
3888 reason, *stat, *((u32 *) (stat + 1)),
3894 * Print sense data and related channel program.
3895 * Parts are printed because printk buffer is only 1024 bytes.
3897 static void dasd_eckd_dump_sense_ccw(struct dasd_device *device,
3898 struct dasd_ccw_req *req, struct irb *irb)
3901 struct ccw1 *first, *last, *fail, *from, *to;
3904 page = (char *) get_zeroed_page(GFP_ATOMIC);
3906 DBF_DEV_EVENT(DBF_WARNING, device, "%s",
3907 "No memory to dump sense data\n");
3910 /* dump the sense data */
3911 len = sprintf(page, KERN_ERR PRINTK_HEADER
3912 " I/O status report for device %s:\n",
3913 dev_name(&device->cdev->dev));
3914 len += sprintf(page + len, KERN_ERR PRINTK_HEADER
3915 " in req: %p CC:%02X FC:%02X AC:%02X SC:%02X DS:%02X "
3917 req, scsw_cc(&irb->scsw), scsw_fctl(&irb->scsw),
3918 scsw_actl(&irb->scsw), scsw_stctl(&irb->scsw),
3919 scsw_dstat(&irb->scsw), scsw_cstat(&irb->scsw),
3920 req ? req->intrc : 0);
3921 len += sprintf(page + len, KERN_ERR PRINTK_HEADER
3922 " device %s: Failing CCW: %p\n",
3923 dev_name(&device->cdev->dev),
3924 (void *) (addr_t) irb->scsw.cmd.cpa);
3925 if (irb->esw.esw0.erw.cons) {
3926 for (sl = 0; sl < 4; sl++) {
3927 len += sprintf(page + len, KERN_ERR PRINTK_HEADER
3928 " Sense(hex) %2d-%2d:",
3929 (8 * sl), ((8 * sl) + 7));
3931 for (sct = 0; sct < 8; sct++) {
3932 len += sprintf(page + len, " %02x",
3933 irb->ecw[8 * sl + sct]);
3935 len += sprintf(page + len, "\n");
3938 if (irb->ecw[27] & DASD_SENSE_BIT_0) {
3939 /* 24 Byte Sense Data */
3940 sprintf(page + len, KERN_ERR PRINTK_HEADER
3941 " 24 Byte: %x MSG %x, "
3942 "%s MSGb to SYSOP\n",
3943 irb->ecw[7] >> 4, irb->ecw[7] & 0x0f,
3944 irb->ecw[1] & 0x10 ? "" : "no");
3946 /* 32 Byte Sense Data */
3947 sprintf(page + len, KERN_ERR PRINTK_HEADER
3948 " 32 Byte: Format: %x "
3949 "Exception class %x\n",
3950 irb->ecw[6] & 0x0f, irb->ecw[22] >> 4);
3953 sprintf(page + len, KERN_ERR PRINTK_HEADER
3954 " SORRY - NO VALID SENSE AVAILABLE\n");
3959 /* req == NULL for unsolicited interrupts */
3960 /* dump the Channel Program (max 140 Bytes per line) */
3961 /* Count CCW and print first CCWs (maximum 1024 % 140 = 7) */
3962 first = req->cpaddr;
3963 for (last = first; last->flags & (CCW_FLAG_CC | CCW_FLAG_DC); last++);
3964 to = min(first + 6, last);
3965 len = sprintf(page, KERN_ERR PRINTK_HEADER
3966 " Related CP in req: %p\n", req);
3967 dasd_eckd_dump_ccw_range(first, to, page + len);
3970 /* print failing CCW area (maximum 4) */
3971 /* scsw->cda is either valid or zero */
3974 fail = (struct ccw1 *)(addr_t)
3975 irb->scsw.cmd.cpa; /* failing CCW */
3976 if (from < fail - 2) {
3977 from = fail - 2; /* there is a gap - print header */
3978 len += sprintf(page, KERN_ERR PRINTK_HEADER "......\n");
3980 to = min(fail + 1, last);
3981 len += dasd_eckd_dump_ccw_range(from, to, page + len);
3983 /* print last CCWs (maximum 2) */
3984 from = max(from, ++to);
3985 if (from < last - 1) {
3986 from = last - 1; /* there is a gap - print header */
3987 len += sprintf(page + len, KERN_ERR PRINTK_HEADER "......\n");
3989 len += dasd_eckd_dump_ccw_range(from, last, page + len);
3993 free_page((unsigned long) page);
3998 * Print sense data from a tcw.
4000 static void dasd_eckd_dump_sense_tcw(struct dasd_device *device,
4001 struct dasd_ccw_req *req, struct irb *irb)
4004 int len, sl, sct, residual;
4008 page = (char *) get_zeroed_page(GFP_ATOMIC);
4010 DBF_DEV_EVENT(DBF_WARNING, device, " %s",
4011 "No memory to dump sense data");
4014 /* dump the sense data */
4015 len = sprintf(page, KERN_ERR PRINTK_HEADER
4016 " I/O status report for device %s:\n",
4017 dev_name(&device->cdev->dev));
4018 len += sprintf(page + len, KERN_ERR PRINTK_HEADER
4019 " in req: %p CC:%02X FC:%02X AC:%02X SC:%02X DS:%02X "
4020 "CS:%02X fcxs:%02X schxs:%02X RC:%d\n",
4021 req, scsw_cc(&irb->scsw), scsw_fctl(&irb->scsw),
4022 scsw_actl(&irb->scsw), scsw_stctl(&irb->scsw),
4023 scsw_dstat(&irb->scsw), scsw_cstat(&irb->scsw),
4024 irb->scsw.tm.fcxs, irb->scsw.tm.schxs,
4025 req ? req->intrc : 0);
4026 len += sprintf(page + len, KERN_ERR PRINTK_HEADER
4027 " device %s: Failing TCW: %p\n",
4028 dev_name(&device->cdev->dev),
4029 (void *) (addr_t) irb->scsw.tm.tcw);
4033 if (irb->scsw.tm.tcw && (irb->scsw.tm.fcxs & 0x01))
4035 (struct tcw *)(unsigned long)irb->scsw.tm.tcw);
4038 len += sprintf(page + len, KERN_ERR PRINTK_HEADER
4039 " tsb->length %d\n", tsb->length);
4040 len += sprintf(page + len, KERN_ERR PRINTK_HEADER
4041 " tsb->flags %x\n", tsb->flags);
4042 len += sprintf(page + len, KERN_ERR PRINTK_HEADER
4043 " tsb->dcw_offset %d\n", tsb->dcw_offset);
4044 len += sprintf(page + len, KERN_ERR PRINTK_HEADER
4045 " tsb->count %d\n", tsb->count);
4046 residual = tsb->count - 28;
4047 len += sprintf(page + len, KERN_ERR PRINTK_HEADER
4048 " residual %d\n", residual);
4050 switch (tsb->flags & 0x07) {
4051 case 1: /* tsa_iostat */
4052 len += sprintf(page + len, KERN_ERR PRINTK_HEADER
4053 " tsb->tsa.iostat.dev_time %d\n",
4054 tsb->tsa.iostat.dev_time);
4055 len += sprintf(page + len, KERN_ERR PRINTK_HEADER
4056 " tsb->tsa.iostat.def_time %d\n",
4057 tsb->tsa.iostat.def_time);
4058 len += sprintf(page + len, KERN_ERR PRINTK_HEADER
4059 " tsb->tsa.iostat.queue_time %d\n",
4060 tsb->tsa.iostat.queue_time);
4061 len += sprintf(page + len, KERN_ERR PRINTK_HEADER
4062 " tsb->tsa.iostat.dev_busy_time %d\n",
4063 tsb->tsa.iostat.dev_busy_time);
4064 len += sprintf(page + len, KERN_ERR PRINTK_HEADER
4065 " tsb->tsa.iostat.dev_act_time %d\n",
4066 tsb->tsa.iostat.dev_act_time);
4067 sense = tsb->tsa.iostat.sense;
4069 case 2: /* ts_ddpc */
4070 len += sprintf(page + len, KERN_ERR PRINTK_HEADER
4071 " tsb->tsa.ddpc.rc %d\n", tsb->tsa.ddpc.rc);
4072 for (sl = 0; sl < 2; sl++) {
4073 len += sprintf(page + len,
4074 KERN_ERR PRINTK_HEADER
4075 " tsb->tsa.ddpc.rcq %2d-%2d: ",
4076 (8 * sl), ((8 * sl) + 7));
4077 rcq = tsb->tsa.ddpc.rcq;
4078 for (sct = 0; sct < 8; sct++) {
4079 len += sprintf(page + len, " %02x",
4082 len += sprintf(page + len, "\n");
4084 sense = tsb->tsa.ddpc.sense;
4086 case 3: /* tsa_intrg */
4087 len += sprintf(page + len, KERN_ERR PRINTK_HEADER
4088 " tsb->tsa.intrg.: not supportet yet \n");
4093 for (sl = 0; sl < 4; sl++) {
4094 len += sprintf(page + len,
4095 KERN_ERR PRINTK_HEADER
4096 " Sense(hex) %2d-%2d:",
4097 (8 * sl), ((8 * sl) + 7));
4098 for (sct = 0; sct < 8; sct++) {
4099 len += sprintf(page + len, " %02x",
4100 sense[8 * sl + sct]);
4102 len += sprintf(page + len, "\n");
4105 if (sense[27] & DASD_SENSE_BIT_0) {
4106 /* 24 Byte Sense Data */
4107 sprintf(page + len, KERN_ERR PRINTK_HEADER
4108 " 24 Byte: %x MSG %x, "
4109 "%s MSGb to SYSOP\n",
4110 sense[7] >> 4, sense[7] & 0x0f,
4111 sense[1] & 0x10 ? "" : "no");
4113 /* 32 Byte Sense Data */
4114 sprintf(page + len, KERN_ERR PRINTK_HEADER
4115 " 32 Byte: Format: %x "
4116 "Exception class %x\n",
4117 sense[6] & 0x0f, sense[22] >> 4);
4120 sprintf(page + len, KERN_ERR PRINTK_HEADER
4121 " SORRY - NO VALID SENSE AVAILABLE\n");
4124 sprintf(page + len, KERN_ERR PRINTK_HEADER
4125 " SORRY - NO TSB DATA AVAILABLE\n");
4128 free_page((unsigned long) page);
4131 static void dasd_eckd_dump_sense(struct dasd_device *device,
4132 struct dasd_ccw_req *req, struct irb *irb)
4134 if (scsw_is_tm(&irb->scsw))
4135 dasd_eckd_dump_sense_tcw(device, req, irb);
4137 dasd_eckd_dump_sense_ccw(device, req, irb);
4140 static int dasd_eckd_pm_freeze(struct dasd_device *device)
4143 * the device should be disconnected from our LCU structure
4144 * on restore we will reconnect it and reread LCU specific
4145 * information like PAV support that might have changed
4147 dasd_alias_remove_device(device);
4148 dasd_alias_disconnect_device_from_lcu(device);
4153 static int dasd_eckd_restore_device(struct dasd_device *device)
4155 struct dasd_eckd_private *private;
4156 struct dasd_eckd_characteristics temp_rdc_data;
4158 struct dasd_uid temp_uid;
4159 unsigned long flags;
4161 private = (struct dasd_eckd_private *) device->private;
4163 /* Read Configuration Data */
4164 rc = dasd_eckd_read_conf(device);
4168 dasd_eckd_get_uid(device, &temp_uid);
4169 /* Generate device unique id */
4170 rc = dasd_eckd_generate_uid(device);
4171 spin_lock_irqsave(get_ccwdev_lock(device->cdev), flags);
4172 if (memcmp(&private->uid, &temp_uid, sizeof(struct dasd_uid)) != 0)
4173 dev_err(&device->cdev->dev, "The UID of the DASD has "
4175 spin_unlock_irqrestore(get_ccwdev_lock(device->cdev), flags);
4179 /* register lcu with alias handling, enable PAV if this is a new lcu */
4180 rc = dasd_alias_make_device_known_to_lcu(device);
4183 dasd_eckd_validate_server(device, DASD_CQR_FLAGS_FAILFAST);
4185 /* RE-Read Configuration Data */
4186 rc = dasd_eckd_read_conf(device);
4190 /* Read Feature Codes */
4191 dasd_eckd_read_features(device);
4193 /* Read Device Characteristics */
4194 rc = dasd_generic_read_dev_chars(device, DASD_ECKD_MAGIC,
4195 &temp_rdc_data, 64);
4197 DBF_EVENT_DEVID(DBF_WARNING, device->cdev,
4198 "Read device characteristic failed, rc=%d", rc);
4201 spin_lock_irqsave(get_ccwdev_lock(device->cdev), flags);
4202 memcpy(&private->rdc_data, &temp_rdc_data, sizeof(temp_rdc_data));
4203 spin_unlock_irqrestore(get_ccwdev_lock(device->cdev), flags);
4205 /* add device to alias management */
4206 dasd_alias_add_device(device);
4214 static int dasd_eckd_reload_device(struct dasd_device *device)
4216 struct dasd_eckd_private *private;
4219 struct dasd_uid uid;
4220 unsigned long flags;
4222 private = (struct dasd_eckd_private *) device->private;
4224 spin_lock_irqsave(get_ccwdev_lock(device->cdev), flags);
4225 old_base = private->uid.base_unit_addr;
4226 spin_unlock_irqrestore(get_ccwdev_lock(device->cdev), flags);
4228 /* Read Configuration Data */
4229 rc = dasd_eckd_read_conf(device);
4233 rc = dasd_eckd_generate_uid(device);
4237 * update unit address configuration and
4238 * add device to alias management
4240 dasd_alias_update_add_device(device);
4242 dasd_eckd_get_uid(device, &uid);
4244 if (old_base != uid.base_unit_addr) {
4245 if (strlen(uid.vduit) > 0)
4246 snprintf(print_uid, sizeof(print_uid),
4247 "%s.%s.%04x.%02x.%s", uid.vendor, uid.serial,
4248 uid.ssid, uid.base_unit_addr, uid.vduit);
4250 snprintf(print_uid, sizeof(print_uid),
4251 "%s.%s.%04x.%02x", uid.vendor, uid.serial,
4252 uid.ssid, uid.base_unit_addr);
4254 dev_info(&device->cdev->dev,
4255 "An Alias device was reassigned to a new base device "
4256 "with UID: %s\n", print_uid);
4264 static struct ccw_driver dasd_eckd_driver = {
4266 .name = "dasd-eckd",
4267 .owner = THIS_MODULE,
4269 .ids = dasd_eckd_ids,
4270 .probe = dasd_eckd_probe,
4271 .remove = dasd_generic_remove,
4272 .set_offline = dasd_generic_set_offline,
4273 .set_online = dasd_eckd_set_online,
4274 .notify = dasd_generic_notify,
4275 .path_event = dasd_generic_path_event,
4276 .shutdown = dasd_generic_shutdown,
4277 .freeze = dasd_generic_pm_freeze,
4278 .thaw = dasd_generic_restore_device,
4279 .restore = dasd_generic_restore_device,
4280 .uc_handler = dasd_generic_uc_handler,
4281 .int_class = IOINT_DAS,
4285 * max_blocks is dependent on the amount of storage that is available
4286 * in the static io buffer for each device. Currently each device has
4287 * 8192 bytes (=2 pages). For 64 bit one dasd_mchunkt_t structure has
4288 * 24 bytes, the struct dasd_ccw_req has 136 bytes and each block can use
4289 * up to 16 bytes (8 for the ccw and 8 for the idal pointer). In
4290 * addition we have one define extent ccw + 16 bytes of data and one
4291 * locate record ccw + 16 bytes of data. That makes:
4292 * (8192 - 24 - 136 - 8 - 16 - 8 - 16) / 16 = 499 blocks at maximum.
4293 * We want to fit two into the available memory so that we can immediately
4294 * start the next request if one finishes off. That makes 249.5 blocks
4295 * for one request. Give a little safety and the result is 240.
4297 static struct dasd_discipline dasd_eckd_discipline = {
4298 .owner = THIS_MODULE,
4302 .check_device = dasd_eckd_check_characteristics,
4303 .uncheck_device = dasd_eckd_uncheck_device,
4304 .do_analysis = dasd_eckd_do_analysis,
4305 .verify_path = dasd_eckd_verify_path,
4306 .ready_to_online = dasd_eckd_ready_to_online,
4307 .online_to_ready = dasd_eckd_online_to_ready,
4308 .fill_geometry = dasd_eckd_fill_geometry,
4309 .start_IO = dasd_start_IO,
4310 .term_IO = dasd_term_IO,
4311 .handle_terminated_request = dasd_eckd_handle_terminated_request,
4312 .format_device = dasd_eckd_format_device,
4313 .erp_action = dasd_eckd_erp_action,
4314 .erp_postaction = dasd_eckd_erp_postaction,
4315 .check_for_device_change = dasd_eckd_check_for_device_change,
4316 .build_cp = dasd_eckd_build_alias_cp,
4317 .free_cp = dasd_eckd_free_alias_cp,
4318 .dump_sense = dasd_eckd_dump_sense,
4319 .dump_sense_dbf = dasd_eckd_dump_sense_dbf,
4320 .fill_info = dasd_eckd_fill_info,
4321 .ioctl = dasd_eckd_ioctl,
4322 .freeze = dasd_eckd_pm_freeze,
4323 .restore = dasd_eckd_restore_device,
4324 .reload = dasd_eckd_reload_device,
4325 .get_uid = dasd_eckd_get_uid,
4326 .kick_validate = dasd_eckd_kick_validate_server,
4330 dasd_eckd_init(void)
4334 ASCEBC(dasd_eckd_discipline.ebcname, 4);
4335 dasd_reserve_req = kmalloc(sizeof(*dasd_reserve_req),
4336 GFP_KERNEL | GFP_DMA);
4337 if (!dasd_reserve_req)
4339 path_verification_worker = kmalloc(sizeof(*path_verification_worker),
4340 GFP_KERNEL | GFP_DMA);
4341 if (!path_verification_worker) {
4342 kfree(dasd_reserve_req);
4345 ret = ccw_driver_register(&dasd_eckd_driver);
4347 wait_for_device_probe();
4349 kfree(path_verification_worker);
4350 kfree(dasd_reserve_req);
4356 dasd_eckd_cleanup(void)
4358 ccw_driver_unregister(&dasd_eckd_driver);
4359 kfree(path_verification_worker);
4360 kfree(dasd_reserve_req);
4363 module_init(dasd_eckd_init);
4364 module_exit(dasd_eckd_cleanup);