2 * CCW device PGID and path verification I/O handling.
4 * Copyright IBM Corp. 2002,2009
5 * Author(s): Cornelia Huck <cornelia.huck@de.ibm.com>
6 * Martin Schwidefsky <schwidefsky@de.ibm.com>
7 * Peter Oberparleiter <peter.oberparleiter@de.ibm.com>
10 #include <linux/kernel.h>
11 #include <linux/string.h>
12 #include <linux/types.h>
13 #include <linux/errno.h>
14 #include <linux/bitops.h>
15 #include <asm/ccwdev.h>
19 #include "cio_debug.h"
23 #define PGID_RETRIES 256
24 #define PGID_TIMEOUT (10 * HZ)
27 * Process path verification data and report result.
29 static void verify_done(struct ccw_device
*cdev
, int rc
)
31 struct subchannel
*sch
= to_subchannel(cdev
->dev
.parent
);
32 struct ccw_dev_id
*id
= &cdev
->private->dev_id
;
33 int mpath
= cdev
->private->flags
.mpath
;
34 int pgroup
= cdev
->private->flags
.pgroup
;
38 /* Ensure consistent multipathing state at device and channel. */
39 if (sch
->config
.mp
!= mpath
) {
40 sch
->config
.mp
= mpath
;
41 rc
= cio_commit_config(sch
);
44 CIO_MSG_EVENT(2, "vrfy: device 0.%x.%04x: rc=%d pgroup=%d mpath=%d "
45 "vpm=%02x\n", id
->ssid
, id
->devno
, rc
, pgroup
, mpath
,
47 ccw_device_verify_done(cdev
, rc
);
51 * Create channel program to perform a NOOP.
53 static void nop_build_cp(struct ccw_device
*cdev
)
55 struct ccw_request
*req
= &cdev
->private->req
;
56 struct ccw1
*cp
= cdev
->private->iccws
;
58 cp
->cmd_code
= CCW_CMD_NOOP
;
61 cp
->flags
= CCW_FLAG_SLI
;
66 * Perform NOOP on a single path.
68 static void nop_do(struct ccw_device
*cdev
)
70 struct subchannel
*sch
= to_subchannel(cdev
->dev
.parent
);
71 struct ccw_request
*req
= &cdev
->private->req
;
74 req
->lpm
= lpm_adjust(req
->lpm
, sch
->schib
.pmcw
.pam
& sch
->opm
);
78 ccw_request_start(cdev
);
82 verify_done(cdev
, sch
->vpm
? 0 : -EACCES
);
86 * Adjust NOOP I/O status.
88 static enum io_status
nop_filter(struct ccw_device
*cdev
, void *data
,
89 struct irb
*irb
, enum io_status status
)
91 /* Only subchannel status might indicate a path error. */
92 if (status
== IO_STATUS_ERROR
&& irb
->scsw
.cmd
.cstat
== 0)
98 * Process NOOP request result for a single path.
100 static void nop_callback(struct ccw_device
*cdev
, void *data
, int rc
)
102 struct subchannel
*sch
= to_subchannel(cdev
->dev
.parent
);
103 struct ccw_request
*req
= &cdev
->private->req
;
106 sch
->vpm
|= req
->lpm
;
107 else if (rc
!= -EACCES
)
114 verify_done(cdev
, rc
);
118 * Create channel program to perform SET PGID on a single path.
120 static void spid_build_cp(struct ccw_device
*cdev
, u8 fn
)
122 struct ccw_request
*req
= &cdev
->private->req
;
123 struct ccw1
*cp
= cdev
->private->iccws
;
124 int i
= 8 - ffs(req
->lpm
);
125 struct pgid
*pgid
= &cdev
->private->pgid
[i
];
128 cp
->cmd_code
= CCW_CMD_SET_PGID
;
129 cp
->cda
= (u32
) (addr_t
) pgid
;
130 cp
->count
= sizeof(*pgid
);
131 cp
->flags
= CCW_FLAG_SLI
;
136 * Perform establish/resign SET PGID on a single path.
138 static void spid_do(struct ccw_device
*cdev
)
140 struct subchannel
*sch
= to_subchannel(cdev
->dev
.parent
);
141 struct ccw_request
*req
= &cdev
->private->req
;
144 /* Use next available path that is not already in correct state. */
145 req
->lpm
= lpm_adjust(req
->lpm
, cdev
->private->pgid_todo_mask
);
148 /* Channel program setup. */
149 if (req
->lpm
& sch
->opm
)
150 fn
= SPID_FUNC_ESTABLISH
;
152 fn
= SPID_FUNC_RESIGN
;
153 if (cdev
->private->flags
.mpath
)
154 fn
|= SPID_FUNC_MULTI_PATH
;
155 spid_build_cp(cdev
, fn
);
156 ccw_request_start(cdev
);
160 verify_done(cdev
, sch
->vpm
? 0 : -EACCES
);
163 static void verify_start(struct ccw_device
*cdev
);
166 * Process SET PGID request result for a single path.
168 static void spid_callback(struct ccw_device
*cdev
, void *data
, int rc
)
170 struct subchannel
*sch
= to_subchannel(cdev
->dev
.parent
);
171 struct ccw_request
*req
= &cdev
->private->req
;
175 sch
->vpm
|= req
->lpm
& sch
->opm
;
180 if (cdev
->private->flags
.mpath
) {
181 /* Try without multipathing. */
182 cdev
->private->flags
.mpath
= 0;
185 /* Try without pathgrouping. */
186 cdev
->private->flags
.pgroup
= 0;
199 verify_done(cdev
, rc
);
202 static void spid_start(struct ccw_device
*cdev
)
204 struct ccw_request
*req
= &cdev
->private->req
;
206 /* Initialize request data. */
207 memset(req
, 0, sizeof(*req
));
208 req
->timeout
= PGID_TIMEOUT
;
209 req
->maxretries
= PGID_RETRIES
;
212 req
->callback
= spid_callback
;
216 static int pgid_is_reset(struct pgid
*p
)
220 for (c
= (char *)p
+ 1; c
< (char *)(p
+ 1); c
++) {
227 static int pgid_cmp(struct pgid
*p1
, struct pgid
*p2
)
229 return memcmp((char *) p1
+ 1, (char *) p2
+ 1,
230 sizeof(struct pgid
) - 1);
234 * Determine pathgroup state from PGID data.
236 static void pgid_analyze(struct ccw_device
*cdev
, struct pgid
**p
,
237 int *mismatch
, int *reserved
, u8
*reset
)
239 struct pgid
*pgid
= &cdev
->private->pgid
[0];
240 struct pgid
*first
= NULL
;
247 for (i
= 0, lpm
= 0x80; i
< 8; i
++, pgid
++, lpm
>>= 1) {
248 if ((cdev
->private->pgid_valid_mask
& lpm
) == 0)
250 if (pgid
->inf
.ps
.state2
== SNID_STATE2_RESVD_ELSE
)
252 if (pgid_is_reset(pgid
)) {
260 if (pgid_cmp(pgid
, first
) != 0)
264 first
= &channel_subsystems
[0]->global_pgid
;
268 static u8
pgid_to_donepm(struct ccw_device
*cdev
)
270 struct subchannel
*sch
= to_subchannel(cdev
->dev
.parent
);
276 /* Set bits for paths which are already in the target state. */
277 for (i
= 0; i
< 8; i
++) {
279 if ((cdev
->private->pgid_valid_mask
& lpm
) == 0)
281 pgid
= &cdev
->private->pgid
[i
];
282 if (sch
->opm
& lpm
) {
283 if (pgid
->inf
.ps
.state1
!= SNID_STATE1_GROUPED
)
286 if (pgid
->inf
.ps
.state1
!= SNID_STATE1_UNGROUPED
)
289 if (cdev
->private->flags
.mpath
) {
290 if (pgid
->inf
.ps
.state3
!= SNID_STATE3_MULTI_PATH
)
293 if (pgid
->inf
.ps
.state3
!= SNID_STATE3_SINGLE_PATH
)
302 static void pgid_fill(struct ccw_device
*cdev
, struct pgid
*pgid
)
306 for (i
= 0; i
< 8; i
++)
307 memcpy(&cdev
->private->pgid
[i
], pgid
, sizeof(struct pgid
));
311 * Process SENSE PGID data and report result.
313 static void snid_done(struct ccw_device
*cdev
, int rc
)
315 struct ccw_dev_id
*id
= &cdev
->private->dev_id
;
316 struct subchannel
*sch
= to_subchannel(cdev
->dev
.parent
);
325 pgid_analyze(cdev
, &pgid
, &mismatch
, &reserved
, &reset
);
331 donepm
= pgid_to_donepm(cdev
);
332 sch
->vpm
= donepm
& sch
->opm
;
333 cdev
->private->pgid_todo_mask
&= ~donepm
;
334 cdev
->private->pgid_reset_mask
|= reset
;
335 pgid_fill(cdev
, pgid
);
338 CIO_MSG_EVENT(2, "snid: device 0.%x.%04x: rc=%d pvm=%02x vpm=%02x "
339 "todo=%02x mism=%d rsvd=%d reset=%02x\n", id
->ssid
,
340 id
->devno
, rc
, cdev
->private->pgid_valid_mask
, sch
->vpm
,
341 cdev
->private->pgid_todo_mask
, mismatch
, reserved
, reset
);
344 /* Anything left to do? */
345 if (cdev
->private->pgid_todo_mask
== 0) {
346 verify_done(cdev
, sch
->vpm
== 0 ? -EACCES
: 0);
349 /* Perform path-grouping. */
353 /* Path-grouping not supported. */
354 cdev
->private->flags
.pgroup
= 0;
355 cdev
->private->flags
.mpath
= 0;
359 verify_done(cdev
, rc
);
364 * Create channel program to perform a SENSE PGID on a single path.
366 static void snid_build_cp(struct ccw_device
*cdev
)
368 struct ccw_request
*req
= &cdev
->private->req
;
369 struct ccw1
*cp
= cdev
->private->iccws
;
370 int i
= 8 - ffs(req
->lpm
);
372 /* Channel program setup. */
373 cp
->cmd_code
= CCW_CMD_SENSE_PGID
;
374 cp
->cda
= (u32
) (addr_t
) &cdev
->private->pgid
[i
];
375 cp
->count
= sizeof(struct pgid
);
376 cp
->flags
= CCW_FLAG_SLI
;
381 * Perform SENSE PGID on a single path.
383 static void snid_do(struct ccw_device
*cdev
)
385 struct subchannel
*sch
= to_subchannel(cdev
->dev
.parent
);
386 struct ccw_request
*req
= &cdev
->private->req
;
388 /* Adjust lpm if paths are not set in pam. */
389 req
->lpm
= lpm_adjust(req
->lpm
, sch
->schib
.pmcw
.pam
);
393 ccw_request_start(cdev
);
397 snid_done(cdev
, cdev
->private->pgid_valid_mask
? 0 : -EACCES
);
401 * Process SENSE PGID request result for single path.
403 static void snid_callback(struct ccw_device
*cdev
, void *data
, int rc
)
405 struct ccw_request
*req
= &cdev
->private->req
;
408 cdev
->private->pgid_valid_mask
|= req
->lpm
;
409 else if (rc
!= -EACCES
)
420 * Perform path verification.
422 static void verify_start(struct ccw_device
*cdev
)
424 struct subchannel
*sch
= to_subchannel(cdev
->dev
.parent
);
425 struct ccw_request
*req
= &cdev
->private->req
;
426 struct ccw_dev_id
*devid
= &cdev
->private->dev_id
;
429 sch
->lpm
= sch
->schib
.pmcw
.pam
;
430 /* Initialize request data. */
431 memset(req
, 0, sizeof(*req
));
432 req
->timeout
= PGID_TIMEOUT
;
433 req
->maxretries
= PGID_RETRIES
;
436 if (cdev
->private->flags
.pgroup
) {
437 CIO_TRACE_EVENT(4, "snid");
438 CIO_HEX_EVENT(4, devid
, sizeof(*devid
));
439 req
->callback
= snid_callback
;
442 CIO_TRACE_EVENT(4, "nop");
443 CIO_HEX_EVENT(4, devid
, sizeof(*devid
));
444 req
->filter
= nop_filter
;
445 req
->callback
= nop_callback
;
451 * ccw_device_verify_start - perform path verification
454 * Perform an I/O on each available channel path to @cdev to determine which
455 * paths are operational. The resulting path mask is stored in sch->vpm.
456 * If device options specify pathgrouping, establish a pathgroup for the
457 * operational paths. When finished, call ccw_device_verify_done with a
458 * return code specifying the result.
460 void ccw_device_verify_start(struct ccw_device
*cdev
)
462 struct subchannel
*sch
= to_subchannel(cdev
->dev
.parent
);
464 CIO_TRACE_EVENT(4, "vrfy");
465 CIO_HEX_EVENT(4, &cdev
->private->dev_id
, sizeof(cdev
->private->dev_id
));
466 /* Initialize PGID data. */
467 memset(cdev
->private->pgid
, 0, sizeof(cdev
->private->pgid
));
468 cdev
->private->pgid_valid_mask
= 0;
469 cdev
->private->pgid_todo_mask
= sch
->schib
.pmcw
.pam
;
471 * Initialize pathgroup and multipath state with target values.
472 * They may change in the course of path verification.
474 cdev
->private->flags
.pgroup
= cdev
->private->options
.pgroup
;
475 cdev
->private->flags
.mpath
= cdev
->private->options
.mpath
;
476 cdev
->private->flags
.doverify
= 0;
481 * Process disband SET PGID request result.
483 static void disband_callback(struct ccw_device
*cdev
, void *data
, int rc
)
485 struct subchannel
*sch
= to_subchannel(cdev
->dev
.parent
);
486 struct ccw_dev_id
*id
= &cdev
->private->dev_id
;
490 /* Ensure consistent multipathing state at device and channel. */
491 cdev
->private->flags
.mpath
= 0;
492 if (sch
->config
.mp
) {
494 rc
= cio_commit_config(sch
);
497 CIO_MSG_EVENT(0, "disb: device 0.%x.%04x: rc=%d\n", id
->ssid
, id
->devno
,
499 ccw_device_disband_done(cdev
, rc
);
503 * ccw_device_disband_start - disband pathgroup
506 * Execute a SET PGID channel program on @cdev to disband a previously
507 * established pathgroup. When finished, call ccw_device_disband_done with
508 * a return code specifying the result.
510 void ccw_device_disband_start(struct ccw_device
*cdev
)
512 struct subchannel
*sch
= to_subchannel(cdev
->dev
.parent
);
513 struct ccw_request
*req
= &cdev
->private->req
;
516 CIO_TRACE_EVENT(4, "disb");
517 CIO_HEX_EVENT(4, &cdev
->private->dev_id
, sizeof(cdev
->private->dev_id
));
519 memset(req
, 0, sizeof(*req
));
520 req
->timeout
= PGID_TIMEOUT
;
521 req
->maxretries
= PGID_RETRIES
;
522 req
->lpm
= sch
->schib
.pmcw
.pam
& sch
->opm
;
524 req
->callback
= disband_callback
;
525 fn
= SPID_FUNC_DISBAND
;
526 if (cdev
->private->flags
.mpath
)
527 fn
|= SPID_FUNC_MULTI_PATH
;
528 spid_build_cp(cdev
, fn
);
529 ccw_request_start(cdev
);
532 static void stlck_build_cp(struct ccw_device
*cdev
, void *buf1
, void *buf2
)
534 struct ccw_request
*req
= &cdev
->private->req
;
535 struct ccw1
*cp
= cdev
->private->iccws
;
537 cp
[0].cmd_code
= CCW_CMD_STLCK
;
538 cp
[0].cda
= (u32
) (addr_t
) buf1
;
540 cp
[0].flags
= CCW_FLAG_CC
;
541 cp
[1].cmd_code
= CCW_CMD_RELEASE
;
542 cp
[1].cda
= (u32
) (addr_t
) buf2
;
548 static void stlck_callback(struct ccw_device
*cdev
, void *data
, int rc
)
550 ccw_device_stlck_done(cdev
, data
, rc
);
554 * ccw_device_stlck_start - perform unconditional release
556 * @data: data pointer to be passed to ccw_device_stlck_done
557 * @buf1: data pointer used in channel program
558 * @buf2: data pointer used in channel program
560 * Execute a channel program on @cdev to release an existing PGID reservation.
561 * When finished, call ccw_device_stlck_done with a return code specifying the
564 void ccw_device_stlck_start(struct ccw_device
*cdev
, void *data
, void *buf1
,
567 struct subchannel
*sch
= to_subchannel(cdev
->dev
.parent
);
568 struct ccw_request
*req
= &cdev
->private->req
;
570 CIO_TRACE_EVENT(4, "stlck");
571 CIO_HEX_EVENT(4, &cdev
->private->dev_id
, sizeof(cdev
->private->dev_id
));
573 memset(req
, 0, sizeof(*req
));
574 req
->timeout
= PGID_TIMEOUT
;
575 req
->maxretries
= PGID_RETRIES
;
576 req
->lpm
= sch
->schib
.pmcw
.pam
& sch
->opm
;
578 req
->callback
= stlck_callback
;
579 stlck_build_cp(cdev
, buf1
, buf2
);
580 ccw_request_start(cdev
);