2 * Helper functions for scsw access.
4 * Copyright IBM Corp. 2008,2009
5 * Author(s): Peter Oberparleiter <peter.oberparleiter@de.ibm.com>
8 #ifndef _ASM_S390_SCSW_H_
9 #define _ASM_S390_SCSW_H_
11 #include <linux/types.h>
16 * struct cmd_scsw - command-mode subchannel status word
17 * @key: subchannel key
18 * @sctl: suspend control
20 * @cc: deferred condition code
23 * @isic: initial-status interruption control
24 * @alcc: address-limit checking control
25 * @ssi: suppress-suspended interruption
26 * @zcc: zero condition code
27 * @ectl: extended control
28 * @pno: path not operational
30 * @fctl: function control
31 * @actl: activity control
32 * @stctl: status control
33 * @cpa: channel program address
34 * @dstat: device status
35 * @cstat: subchannel status
36 * @count: residual count
59 } __attribute__ ((packed
));
62 * struct tm_scsw - transport-mode subchannel status word
63 * @key: subchannel key
65 * @cc: deferred condition code
67 * @x: IRB-format control
68 * @q: interrogate-complete
69 * @ectl: extended control
70 * @pno: path not operational
71 * @fctl: function control
72 * @actl: activity control
73 * @stctl: status control
75 * @dstat: device status
76 * @cstat: subchannel status
78 * @schxs: subchannel-extended status
100 } __attribute__ ((packed
));
103 * union scsw - subchannel status word
104 * @cmd: command-mode SCSW
105 * @tm: transport-mode SCSW
110 } __attribute__ ((packed
));
112 #define SCSW_FCTL_CLEAR_FUNC 0x1
113 #define SCSW_FCTL_HALT_FUNC 0x2
114 #define SCSW_FCTL_START_FUNC 0x4
116 #define SCSW_ACTL_SUSPENDED 0x1
117 #define SCSW_ACTL_DEVACT 0x2
118 #define SCSW_ACTL_SCHACT 0x4
119 #define SCSW_ACTL_CLEAR_PEND 0x8
120 #define SCSW_ACTL_HALT_PEND 0x10
121 #define SCSW_ACTL_START_PEND 0x20
122 #define SCSW_ACTL_RESUME_PEND 0x40
124 #define SCSW_STCTL_STATUS_PEND 0x1
125 #define SCSW_STCTL_SEC_STATUS 0x2
126 #define SCSW_STCTL_PRIM_STATUS 0x4
127 #define SCSW_STCTL_INTER_STATUS 0x8
128 #define SCSW_STCTL_ALERT_STATUS 0x10
130 #define DEV_STAT_ATTENTION 0x80
131 #define DEV_STAT_STAT_MOD 0x40
132 #define DEV_STAT_CU_END 0x20
133 #define DEV_STAT_BUSY 0x10
134 #define DEV_STAT_CHN_END 0x08
135 #define DEV_STAT_DEV_END 0x04
136 #define DEV_STAT_UNIT_CHECK 0x02
137 #define DEV_STAT_UNIT_EXCEP 0x01
139 #define SCHN_STAT_PCI 0x80
140 #define SCHN_STAT_INCORR_LEN 0x40
141 #define SCHN_STAT_PROG_CHECK 0x20
142 #define SCHN_STAT_PROT_CHECK 0x10
143 #define SCHN_STAT_CHN_DATA_CHK 0x08
144 #define SCHN_STAT_CHN_CTRL_CHK 0x04
145 #define SCHN_STAT_INTF_CTRL_CHK 0x02
146 #define SCHN_STAT_CHAIN_CHECK 0x01
149 * architectured values for first sense byte
151 #define SNS0_CMD_REJECT 0x80
152 #define SNS_CMD_REJECT SNS0_CMD_REJEC
153 #define SNS0_INTERVENTION_REQ 0x40
154 #define SNS0_BUS_OUT_CHECK 0x20
155 #define SNS0_EQUIPMENT_CHECK 0x10
156 #define SNS0_DATA_CHECK 0x08
157 #define SNS0_OVERRUN 0x04
158 #define SNS0_INCOMPL_DOMAIN 0x01
161 * architectured values for second sense byte
163 #define SNS1_PERM_ERR 0x80
164 #define SNS1_INV_TRACK_FORMAT 0x40
165 #define SNS1_EOC 0x20
166 #define SNS1_MESSAGE_TO_OPER 0x10
167 #define SNS1_NO_REC_FOUND 0x08
168 #define SNS1_FILE_PROTECTED 0x04
169 #define SNS1_WRITE_INHIBITED 0x02
170 #define SNS1_INPRECISE_END 0x01
173 * architectured values for third sense byte
175 #define SNS2_REQ_INH_WRITE 0x80
176 #define SNS2_CORRECTABLE 0x40
177 #define SNS2_FIRST_LOG_ERR 0x20
178 #define SNS2_ENV_DATA_PRESENT 0x10
179 #define SNS2_INPRECISE_END 0x04
182 * scsw_is_tm - check for transport mode scsw
183 * @scsw: pointer to scsw
185 * Return non-zero if the specified scsw is a transport mode scsw, zero
188 static inline int scsw_is_tm(union scsw
*scsw
)
190 return css_general_characteristics
.fcx
&& (scsw
->tm
.x
== 1);
194 * scsw_key - return scsw key field
195 * @scsw: pointer to scsw
197 * Return the value of the key field of the specified scsw, regardless of
198 * whether it is a transport mode or command mode scsw.
200 static inline u32
scsw_key(union scsw
*scsw
)
202 if (scsw_is_tm(scsw
))
205 return scsw
->cmd
.key
;
209 * scsw_eswf - return scsw eswf field
210 * @scsw: pointer to scsw
212 * Return the value of the eswf field of the specified scsw, regardless of
213 * whether it is a transport mode or command mode scsw.
215 static inline u32
scsw_eswf(union scsw
*scsw
)
217 if (scsw_is_tm(scsw
))
218 return scsw
->tm
.eswf
;
220 return scsw
->cmd
.eswf
;
224 * scsw_cc - return scsw cc field
225 * @scsw: pointer to scsw
227 * Return the value of the cc field of the specified scsw, regardless of
228 * whether it is a transport mode or command mode scsw.
230 static inline u32
scsw_cc(union scsw
*scsw
)
232 if (scsw_is_tm(scsw
))
239 * scsw_ectl - return scsw ectl field
240 * @scsw: pointer to scsw
242 * Return the value of the ectl field of the specified scsw, regardless of
243 * whether it is a transport mode or command mode scsw.
245 static inline u32
scsw_ectl(union scsw
*scsw
)
247 if (scsw_is_tm(scsw
))
248 return scsw
->tm
.ectl
;
250 return scsw
->cmd
.ectl
;
254 * scsw_pno - return scsw pno field
255 * @scsw: pointer to scsw
257 * Return the value of the pno field of the specified scsw, regardless of
258 * whether it is a transport mode or command mode scsw.
260 static inline u32
scsw_pno(union scsw
*scsw
)
262 if (scsw_is_tm(scsw
))
265 return scsw
->cmd
.pno
;
269 * scsw_fctl - return scsw fctl field
270 * @scsw: pointer to scsw
272 * Return the value of the fctl field of the specified scsw, regardless of
273 * whether it is a transport mode or command mode scsw.
275 static inline u32
scsw_fctl(union scsw
*scsw
)
277 if (scsw_is_tm(scsw
))
278 return scsw
->tm
.fctl
;
280 return scsw
->cmd
.fctl
;
284 * scsw_actl - return scsw actl field
285 * @scsw: pointer to scsw
287 * Return the value of the actl field of the specified scsw, regardless of
288 * whether it is a transport mode or command mode scsw.
290 static inline u32
scsw_actl(union scsw
*scsw
)
292 if (scsw_is_tm(scsw
))
293 return scsw
->tm
.actl
;
295 return scsw
->cmd
.actl
;
299 * scsw_stctl - return scsw stctl field
300 * @scsw: pointer to scsw
302 * Return the value of the stctl field of the specified scsw, regardless of
303 * whether it is a transport mode or command mode scsw.
305 static inline u32
scsw_stctl(union scsw
*scsw
)
307 if (scsw_is_tm(scsw
))
308 return scsw
->tm
.stctl
;
310 return scsw
->cmd
.stctl
;
314 * scsw_dstat - return scsw dstat field
315 * @scsw: pointer to scsw
317 * Return the value of the dstat field of the specified scsw, regardless of
318 * whether it is a transport mode or command mode scsw.
320 static inline u32
scsw_dstat(union scsw
*scsw
)
322 if (scsw_is_tm(scsw
))
323 return scsw
->tm
.dstat
;
325 return scsw
->cmd
.dstat
;
329 * scsw_cstat - return scsw cstat field
330 * @scsw: pointer to scsw
332 * Return the value of the cstat field of the specified scsw, regardless of
333 * whether it is a transport mode or command mode scsw.
335 static inline u32
scsw_cstat(union scsw
*scsw
)
337 if (scsw_is_tm(scsw
))
338 return scsw
->tm
.cstat
;
340 return scsw
->cmd
.cstat
;
344 * scsw_cmd_is_valid_key - check key field validity
345 * @scsw: pointer to scsw
347 * Return non-zero if the key field of the specified command mode scsw is
348 * valid, zero otherwise.
350 static inline int scsw_cmd_is_valid_key(union scsw
*scsw
)
352 return (scsw
->cmd
.fctl
& SCSW_FCTL_START_FUNC
);
356 * scsw_cmd_is_valid_sctl - check fctl field validity
357 * @scsw: pointer to scsw
359 * Return non-zero if the fctl field of the specified command mode scsw is
360 * valid, zero otherwise.
362 static inline int scsw_cmd_is_valid_sctl(union scsw
*scsw
)
364 return (scsw
->cmd
.fctl
& SCSW_FCTL_START_FUNC
);
368 * scsw_cmd_is_valid_eswf - check eswf field validity
369 * @scsw: pointer to scsw
371 * Return non-zero if the eswf field of the specified command mode scsw is
372 * valid, zero otherwise.
374 static inline int scsw_cmd_is_valid_eswf(union scsw
*scsw
)
376 return (scsw
->cmd
.stctl
& SCSW_STCTL_STATUS_PEND
);
380 * scsw_cmd_is_valid_cc - check cc field validity
381 * @scsw: pointer to scsw
383 * Return non-zero if the cc field of the specified command mode scsw is
384 * valid, zero otherwise.
386 static inline int scsw_cmd_is_valid_cc(union scsw
*scsw
)
388 return (scsw
->cmd
.fctl
& SCSW_FCTL_START_FUNC
) &&
389 (scsw
->cmd
.stctl
& SCSW_STCTL_STATUS_PEND
);
393 * scsw_cmd_is_valid_fmt - check fmt field validity
394 * @scsw: pointer to scsw
396 * Return non-zero if the fmt field of the specified command mode scsw is
397 * valid, zero otherwise.
399 static inline int scsw_cmd_is_valid_fmt(union scsw
*scsw
)
401 return (scsw
->cmd
.fctl
& SCSW_FCTL_START_FUNC
);
405 * scsw_cmd_is_valid_pfch - check pfch field validity
406 * @scsw: pointer to scsw
408 * Return non-zero if the pfch field of the specified command mode scsw is
409 * valid, zero otherwise.
411 static inline int scsw_cmd_is_valid_pfch(union scsw
*scsw
)
413 return (scsw
->cmd
.fctl
& SCSW_FCTL_START_FUNC
);
417 * scsw_cmd_is_valid_isic - check isic field validity
418 * @scsw: pointer to scsw
420 * Return non-zero if the isic field of the specified command mode scsw is
421 * valid, zero otherwise.
423 static inline int scsw_cmd_is_valid_isic(union scsw
*scsw
)
425 return (scsw
->cmd
.fctl
& SCSW_FCTL_START_FUNC
);
429 * scsw_cmd_is_valid_alcc - check alcc field validity
430 * @scsw: pointer to scsw
432 * Return non-zero if the alcc field of the specified command mode scsw is
433 * valid, zero otherwise.
435 static inline int scsw_cmd_is_valid_alcc(union scsw
*scsw
)
437 return (scsw
->cmd
.fctl
& SCSW_FCTL_START_FUNC
);
441 * scsw_cmd_is_valid_ssi - check ssi field validity
442 * @scsw: pointer to scsw
444 * Return non-zero if the ssi field of the specified command mode scsw is
445 * valid, zero otherwise.
447 static inline int scsw_cmd_is_valid_ssi(union scsw
*scsw
)
449 return (scsw
->cmd
.fctl
& SCSW_FCTL_START_FUNC
);
453 * scsw_cmd_is_valid_zcc - check zcc field validity
454 * @scsw: pointer to scsw
456 * Return non-zero if the zcc field of the specified command mode scsw is
457 * valid, zero otherwise.
459 static inline int scsw_cmd_is_valid_zcc(union scsw
*scsw
)
461 return (scsw
->cmd
.fctl
& SCSW_FCTL_START_FUNC
) &&
462 (scsw
->cmd
.stctl
& SCSW_STCTL_INTER_STATUS
);
466 * scsw_cmd_is_valid_ectl - check ectl field validity
467 * @scsw: pointer to scsw
469 * Return non-zero if the ectl field of the specified command mode scsw is
470 * valid, zero otherwise.
472 static inline int scsw_cmd_is_valid_ectl(union scsw
*scsw
)
474 return (scsw
->cmd
.stctl
& SCSW_STCTL_STATUS_PEND
) &&
475 !(scsw
->cmd
.stctl
& SCSW_STCTL_INTER_STATUS
) &&
476 (scsw
->cmd
.stctl
& SCSW_STCTL_ALERT_STATUS
);
480 * scsw_cmd_is_valid_pno - check pno field validity
481 * @scsw: pointer to scsw
483 * Return non-zero if the pno field of the specified command mode scsw is
484 * valid, zero otherwise.
486 static inline int scsw_cmd_is_valid_pno(union scsw
*scsw
)
488 return (scsw
->cmd
.fctl
!= 0) &&
489 (scsw
->cmd
.stctl
& SCSW_STCTL_STATUS_PEND
) &&
490 (!(scsw
->cmd
.stctl
& SCSW_STCTL_INTER_STATUS
) ||
491 ((scsw
->cmd
.stctl
& SCSW_STCTL_INTER_STATUS
) &&
492 (scsw
->cmd
.actl
& SCSW_ACTL_SUSPENDED
)));
496 * scsw_cmd_is_valid_fctl - check fctl field validity
497 * @scsw: pointer to scsw
499 * Return non-zero if the fctl field of the specified command mode scsw is
500 * valid, zero otherwise.
502 static inline int scsw_cmd_is_valid_fctl(union scsw
*scsw
)
504 /* Only valid if pmcw.dnv == 1*/
509 * scsw_cmd_is_valid_actl - check actl field validity
510 * @scsw: pointer to scsw
512 * Return non-zero if the actl field of the specified command mode scsw is
513 * valid, zero otherwise.
515 static inline int scsw_cmd_is_valid_actl(union scsw
*scsw
)
517 /* Only valid if pmcw.dnv == 1*/
522 * scsw_cmd_is_valid_stctl - check stctl field validity
523 * @scsw: pointer to scsw
525 * Return non-zero if the stctl field of the specified command mode scsw is
526 * valid, zero otherwise.
528 static inline int scsw_cmd_is_valid_stctl(union scsw
*scsw
)
530 /* Only valid if pmcw.dnv == 1*/
535 * scsw_cmd_is_valid_dstat - check dstat field validity
536 * @scsw: pointer to scsw
538 * Return non-zero if the dstat field of the specified command mode scsw is
539 * valid, zero otherwise.
541 static inline int scsw_cmd_is_valid_dstat(union scsw
*scsw
)
543 return (scsw
->cmd
.stctl
& SCSW_STCTL_STATUS_PEND
) &&
548 * scsw_cmd_is_valid_cstat - check cstat field validity
549 * @scsw: pointer to scsw
551 * Return non-zero if the cstat field of the specified command mode scsw is
552 * valid, zero otherwise.
554 static inline int scsw_cmd_is_valid_cstat(union scsw
*scsw
)
556 return (scsw
->cmd
.stctl
& SCSW_STCTL_STATUS_PEND
) &&
561 * scsw_tm_is_valid_key - check key field validity
562 * @scsw: pointer to scsw
564 * Return non-zero if the key field of the specified transport mode scsw is
565 * valid, zero otherwise.
567 static inline int scsw_tm_is_valid_key(union scsw
*scsw
)
569 return (scsw
->tm
.fctl
& SCSW_FCTL_START_FUNC
);
573 * scsw_tm_is_valid_eswf - check eswf field validity
574 * @scsw: pointer to scsw
576 * Return non-zero if the eswf field of the specified transport mode scsw is
577 * valid, zero otherwise.
579 static inline int scsw_tm_is_valid_eswf(union scsw
*scsw
)
581 return (scsw
->tm
.stctl
& SCSW_STCTL_STATUS_PEND
);
585 * scsw_tm_is_valid_cc - check cc field validity
586 * @scsw: pointer to scsw
588 * Return non-zero if the cc field of the specified transport mode scsw is
589 * valid, zero otherwise.
591 static inline int scsw_tm_is_valid_cc(union scsw
*scsw
)
593 return (scsw
->tm
.fctl
& SCSW_FCTL_START_FUNC
) &&
594 (scsw
->tm
.stctl
& SCSW_STCTL_STATUS_PEND
);
598 * scsw_tm_is_valid_fmt - check fmt field validity
599 * @scsw: pointer to scsw
601 * Return non-zero if the fmt field of the specified transport mode scsw is
602 * valid, zero otherwise.
604 static inline int scsw_tm_is_valid_fmt(union scsw
*scsw
)
610 * scsw_tm_is_valid_x - check x field validity
611 * @scsw: pointer to scsw
613 * Return non-zero if the x field of the specified transport mode scsw is
614 * valid, zero otherwise.
616 static inline int scsw_tm_is_valid_x(union scsw
*scsw
)
622 * scsw_tm_is_valid_q - check q field validity
623 * @scsw: pointer to scsw
625 * Return non-zero if the q field of the specified transport mode scsw is
626 * valid, zero otherwise.
628 static inline int scsw_tm_is_valid_q(union scsw
*scsw
)
634 * scsw_tm_is_valid_ectl - check ectl field validity
635 * @scsw: pointer to scsw
637 * Return non-zero if the ectl field of the specified transport mode scsw is
638 * valid, zero otherwise.
640 static inline int scsw_tm_is_valid_ectl(union scsw
*scsw
)
642 return (scsw
->tm
.stctl
& SCSW_STCTL_STATUS_PEND
) &&
643 !(scsw
->tm
.stctl
& SCSW_STCTL_INTER_STATUS
) &&
644 (scsw
->tm
.stctl
& SCSW_STCTL_ALERT_STATUS
);
648 * scsw_tm_is_valid_pno - check pno field validity
649 * @scsw: pointer to scsw
651 * Return non-zero if the pno field of the specified transport mode scsw is
652 * valid, zero otherwise.
654 static inline int scsw_tm_is_valid_pno(union scsw
*scsw
)
656 return (scsw
->tm
.fctl
!= 0) &&
657 (scsw
->tm
.stctl
& SCSW_STCTL_STATUS_PEND
) &&
658 (!(scsw
->tm
.stctl
& SCSW_STCTL_INTER_STATUS
) ||
659 ((scsw
->tm
.stctl
& SCSW_STCTL_INTER_STATUS
) &&
660 (scsw
->tm
.actl
& SCSW_ACTL_SUSPENDED
)));
664 * scsw_tm_is_valid_fctl - check fctl field validity
665 * @scsw: pointer to scsw
667 * Return non-zero if the fctl field of the specified transport mode scsw is
668 * valid, zero otherwise.
670 static inline int scsw_tm_is_valid_fctl(union scsw
*scsw
)
672 /* Only valid if pmcw.dnv == 1*/
677 * scsw_tm_is_valid_actl - check actl field validity
678 * @scsw: pointer to scsw
680 * Return non-zero if the actl field of the specified transport mode scsw is
681 * valid, zero otherwise.
683 static inline int scsw_tm_is_valid_actl(union scsw
*scsw
)
685 /* Only valid if pmcw.dnv == 1*/
690 * scsw_tm_is_valid_stctl - check stctl field validity
691 * @scsw: pointer to scsw
693 * Return non-zero if the stctl field of the specified transport mode scsw is
694 * valid, zero otherwise.
696 static inline int scsw_tm_is_valid_stctl(union scsw
*scsw
)
698 /* Only valid if pmcw.dnv == 1*/
703 * scsw_tm_is_valid_dstat - check dstat field validity
704 * @scsw: pointer to scsw
706 * Return non-zero if the dstat field of the specified transport mode scsw is
707 * valid, zero otherwise.
709 static inline int scsw_tm_is_valid_dstat(union scsw
*scsw
)
711 return (scsw
->tm
.stctl
& SCSW_STCTL_STATUS_PEND
) &&
716 * scsw_tm_is_valid_cstat - check cstat field validity
717 * @scsw: pointer to scsw
719 * Return non-zero if the cstat field of the specified transport mode scsw is
720 * valid, zero otherwise.
722 static inline int scsw_tm_is_valid_cstat(union scsw
*scsw
)
724 return (scsw
->tm
.stctl
& SCSW_STCTL_STATUS_PEND
) &&
729 * scsw_tm_is_valid_fcxs - check fcxs field validity
730 * @scsw: pointer to scsw
732 * Return non-zero if the fcxs field of the specified transport mode scsw is
733 * valid, zero otherwise.
735 static inline int scsw_tm_is_valid_fcxs(union scsw
*scsw
)
741 * scsw_tm_is_valid_schxs - check schxs field validity
742 * @scsw: pointer to scsw
744 * Return non-zero if the schxs field of the specified transport mode scsw is
745 * valid, zero otherwise.
747 static inline int scsw_tm_is_valid_schxs(union scsw
*scsw
)
749 return (scsw
->tm
.cstat
& (SCHN_STAT_PROG_CHECK
|
750 SCHN_STAT_INTF_CTRL_CHK
|
751 SCHN_STAT_PROT_CHECK
|
752 SCHN_STAT_CHN_DATA_CHK
));
756 * scsw_is_valid_actl - check actl field validity
757 * @scsw: pointer to scsw
759 * Return non-zero if the actl field of the specified scsw is valid,
760 * regardless of whether it is a transport mode or command mode scsw.
761 * Return zero if the field does not contain a valid value.
763 static inline int scsw_is_valid_actl(union scsw
*scsw
)
765 if (scsw_is_tm(scsw
))
766 return scsw_tm_is_valid_actl(scsw
);
768 return scsw_cmd_is_valid_actl(scsw
);
772 * scsw_is_valid_cc - check cc field validity
773 * @scsw: pointer to scsw
775 * Return non-zero if the cc field of the specified scsw is valid,
776 * regardless of whether it is a transport mode or command mode scsw.
777 * Return zero if the field does not contain a valid value.
779 static inline int scsw_is_valid_cc(union scsw
*scsw
)
781 if (scsw_is_tm(scsw
))
782 return scsw_tm_is_valid_cc(scsw
);
784 return scsw_cmd_is_valid_cc(scsw
);
788 * scsw_is_valid_cstat - check cstat field validity
789 * @scsw: pointer to scsw
791 * Return non-zero if the cstat field of the specified scsw is valid,
792 * regardless of whether it is a transport mode or command mode scsw.
793 * Return zero if the field does not contain a valid value.
795 static inline int scsw_is_valid_cstat(union scsw
*scsw
)
797 if (scsw_is_tm(scsw
))
798 return scsw_tm_is_valid_cstat(scsw
);
800 return scsw_cmd_is_valid_cstat(scsw
);
804 * scsw_is_valid_dstat - check dstat field validity
805 * @scsw: pointer to scsw
807 * Return non-zero if the dstat field of the specified scsw is valid,
808 * regardless of whether it is a transport mode or command mode scsw.
809 * Return zero if the field does not contain a valid value.
811 static inline int scsw_is_valid_dstat(union scsw
*scsw
)
813 if (scsw_is_tm(scsw
))
814 return scsw_tm_is_valid_dstat(scsw
);
816 return scsw_cmd_is_valid_dstat(scsw
);
820 * scsw_is_valid_ectl - check ectl field validity
821 * @scsw: pointer to scsw
823 * Return non-zero if the ectl field of the specified scsw is valid,
824 * regardless of whether it is a transport mode or command mode scsw.
825 * Return zero if the field does not contain a valid value.
827 static inline int scsw_is_valid_ectl(union scsw
*scsw
)
829 if (scsw_is_tm(scsw
))
830 return scsw_tm_is_valid_ectl(scsw
);
832 return scsw_cmd_is_valid_ectl(scsw
);
836 * scsw_is_valid_eswf - check eswf field validity
837 * @scsw: pointer to scsw
839 * Return non-zero if the eswf field of the specified scsw is valid,
840 * regardless of whether it is a transport mode or command mode scsw.
841 * Return zero if the field does not contain a valid value.
843 static inline int scsw_is_valid_eswf(union scsw
*scsw
)
845 if (scsw_is_tm(scsw
))
846 return scsw_tm_is_valid_eswf(scsw
);
848 return scsw_cmd_is_valid_eswf(scsw
);
852 * scsw_is_valid_fctl - check fctl field validity
853 * @scsw: pointer to scsw
855 * Return non-zero if the fctl field of the specified scsw is valid,
856 * regardless of whether it is a transport mode or command mode scsw.
857 * Return zero if the field does not contain a valid value.
859 static inline int scsw_is_valid_fctl(union scsw
*scsw
)
861 if (scsw_is_tm(scsw
))
862 return scsw_tm_is_valid_fctl(scsw
);
864 return scsw_cmd_is_valid_fctl(scsw
);
868 * scsw_is_valid_key - check key field validity
869 * @scsw: pointer to scsw
871 * Return non-zero if the key field of the specified scsw is valid,
872 * regardless of whether it is a transport mode or command mode scsw.
873 * Return zero if the field does not contain a valid value.
875 static inline int scsw_is_valid_key(union scsw
*scsw
)
877 if (scsw_is_tm(scsw
))
878 return scsw_tm_is_valid_key(scsw
);
880 return scsw_cmd_is_valid_key(scsw
);
884 * scsw_is_valid_pno - check pno field validity
885 * @scsw: pointer to scsw
887 * Return non-zero if the pno field of the specified scsw is valid,
888 * regardless of whether it is a transport mode or command mode scsw.
889 * Return zero if the field does not contain a valid value.
891 static inline int scsw_is_valid_pno(union scsw
*scsw
)
893 if (scsw_is_tm(scsw
))
894 return scsw_tm_is_valid_pno(scsw
);
896 return scsw_cmd_is_valid_pno(scsw
);
900 * scsw_is_valid_stctl - check stctl field validity
901 * @scsw: pointer to scsw
903 * Return non-zero if the stctl field of the specified scsw is valid,
904 * regardless of whether it is a transport mode or command mode scsw.
905 * Return zero if the field does not contain a valid value.
907 static inline int scsw_is_valid_stctl(union scsw
*scsw
)
909 if (scsw_is_tm(scsw
))
910 return scsw_tm_is_valid_stctl(scsw
);
912 return scsw_cmd_is_valid_stctl(scsw
);
916 * scsw_cmd_is_solicited - check for solicited scsw
917 * @scsw: pointer to scsw
919 * Return non-zero if the command mode scsw indicates that the associated
920 * status condition is solicited, zero if it is unsolicited.
922 static inline int scsw_cmd_is_solicited(union scsw
*scsw
)
924 return (scsw
->cmd
.cc
!= 0) || (scsw
->cmd
.stctl
!=
925 (SCSW_STCTL_STATUS_PEND
| SCSW_STCTL_ALERT_STATUS
));
929 * scsw_tm_is_solicited - check for solicited scsw
930 * @scsw: pointer to scsw
932 * Return non-zero if the transport mode scsw indicates that the associated
933 * status condition is solicited, zero if it is unsolicited.
935 static inline int scsw_tm_is_solicited(union scsw
*scsw
)
937 return (scsw
->tm
.cc
!= 0) || (scsw
->tm
.stctl
!=
938 (SCSW_STCTL_STATUS_PEND
| SCSW_STCTL_ALERT_STATUS
));
942 * scsw_is_solicited - check for solicited scsw
943 * @scsw: pointer to scsw
945 * Return non-zero if the transport or command mode scsw indicates that the
946 * associated status condition is solicited, zero if it is unsolicited.
948 static inline int scsw_is_solicited(union scsw
*scsw
)
950 if (scsw_is_tm(scsw
))
951 return scsw_tm_is_solicited(scsw
);
953 return scsw_cmd_is_solicited(scsw
);
956 #endif /* _ASM_S390_SCSW_H_ */