blob: 9bc3512374c903980299c014947d86ba4cefcffa [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Heiko Carstensa53c8fa2012-07-20 11:15:04 +02002 * Copyright IBM Corp. 2002
Cornelia Huck4ce3b302006-01-14 13:21:04 -08003 * Author(s): Cornelia Huck (cornelia.huck@de.ibm.com)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 * Martin Schwidefsky (schwidefsky@de.ibm.com)
5 *
6 * Status accumulation and basic sense functions.
7 */
8
Linus Torvalds1da177e2005-04-16 15:20:36 -07009#include <linux/module.h>
10#include <linux/init.h>
11
12#include <asm/ccwdev.h>
13#include <asm/cio.h>
14
15#include "cio.h"
16#include "cio_debug.h"
17#include "css.h"
18#include "device.h"
19#include "ioasm.h"
Cornelia Huckcd6b4f22008-01-26 14:10:43 +010020#include "io_sch.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
22/*
23 * Check for any kind of channel or interface control check but don't
24 * issue the message for the console device
25 */
Heiko Carstens4d284ca2007-02-05 21:18:53 +010026static void
Linus Torvalds1da177e2005-04-16 15:20:36 -070027ccw_device_msg_control_check(struct ccw_device *cdev, struct irb *irb)
28{
Sebastian Ott7de6a632016-07-28 20:26:37 +020029 struct subchannel *sch = to_subchannel(cdev->dev.parent);
Peter Oberparleiter23d805b2008-07-14 09:58:50 +020030 char dbf_text[15];
31
32 if (!scsw_is_valid_cstat(&irb->scsw) ||
33 !(scsw_cstat(&irb->scsw) & (SCHN_STAT_CHN_DATA_CHK |
34 SCHN_STAT_CHN_CTRL_CHK | SCHN_STAT_INTF_CTRL_CHK)))
Linus Torvalds1da177e2005-04-16 15:20:36 -070035 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -070036 CIO_MSG_EVENT(0, "Channel-Check or Interface-Control-Check "
37 "received"
Cornelia Huckfb6958a2006-01-06 00:19:25 -080038 " ... device %04x on subchannel 0.%x.%04x, dev_stat "
Linus Torvalds1da177e2005-04-16 15:20:36 -070039 ": %02X sch_stat : %02X\n",
Sebastian Ott7de6a632016-07-28 20:26:37 +020040 cdev->private->dev_id.devno, sch->schid.ssid,
41 sch->schid.sch_no,
Peter Oberparleiter23d805b2008-07-14 09:58:50 +020042 scsw_dstat(&irb->scsw), scsw_cstat(&irb->scsw));
Sebastian Ott7de6a632016-07-28 20:26:37 +020043 sprintf(dbf_text, "chk%x", sch->schid.sch_no);
Peter Oberparleiter23d805b2008-07-14 09:58:50 +020044 CIO_TRACE_EVENT(0, dbf_text);
45 CIO_HEX_EVENT(0, irb, sizeof(struct irb));
Linus Torvalds1da177e2005-04-16 15:20:36 -070046}
47
48/*
49 * Some paths became not operational (pno bit in scsw is set).
50 */
51static void
52ccw_device_path_notoper(struct ccw_device *cdev)
53{
54 struct subchannel *sch;
55
56 sch = to_subchannel(cdev->dev.parent);
Sebastian Ottcdb912a2008-12-25 13:39:12 +010057 if (cio_update_schib(sch))
58 goto doverify;
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
Cornelia Huckfb6958a2006-01-06 00:19:25 -080060 CIO_MSG_EVENT(0, "%s(0.%x.%04x) - path(s) %02x are "
Harvey Harrison2a2cf6b2008-04-17 07:46:21 +020061 "not operational \n", __func__,
Cornelia Huckfb6958a2006-01-06 00:19:25 -080062 sch->schid.ssid, sch->schid.sch_no,
Linus Torvalds1da177e2005-04-16 15:20:36 -070063 sch->schib.pmcw.pnom);
64
65 sch->lpm &= ~sch->schib.pmcw.pnom;
Sebastian Ottcdb912a2008-12-25 13:39:12 +010066doverify:
Cornelia Huck7e560812006-07-12 16:40:19 +020067 cdev->private->flags.doverify = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070068}
69
70/*
71 * Copy valid bits from the extended control word to device irb.
72 */
Heiko Carstens4d284ca2007-02-05 21:18:53 +010073static void
Linus Torvalds1da177e2005-04-16 15:20:36 -070074ccw_device_accumulate_ecw(struct ccw_device *cdev, struct irb *irb)
75{
76 /*
77 * Copy extended control bit if it is valid... yes there
78 * are condition that have to be met for the extended control
79 * bit to have meaning. Sick.
80 */
Peter Oberparleiter23d805b2008-07-14 09:58:50 +020081 cdev->private->irb.scsw.cmd.ectl = 0;
82 if ((irb->scsw.cmd.stctl & SCSW_STCTL_ALERT_STATUS) &&
83 !(irb->scsw.cmd.stctl & SCSW_STCTL_INTER_STATUS))
84 cdev->private->irb.scsw.cmd.ectl = irb->scsw.cmd.ectl;
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 /* Check if extended control word is valid. */
Peter Oberparleiter23d805b2008-07-14 09:58:50 +020086 if (!cdev->private->irb.scsw.cmd.ectl)
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 return;
88 /* Copy concurrent sense / model dependent information. */
89 memcpy (&cdev->private->irb.ecw, irb->ecw, sizeof (irb->ecw));
90}
91
92/*
93 * Check if extended status word is valid.
94 */
Heiko Carstens4d284ca2007-02-05 21:18:53 +010095static int
Linus Torvalds1da177e2005-04-16 15:20:36 -070096ccw_device_accumulate_esw_valid(struct irb *irb)
97{
Peter Oberparleiter23d805b2008-07-14 09:58:50 +020098 if (!irb->scsw.cmd.eswf &&
99 (irb->scsw.cmd.stctl == SCSW_STCTL_STATUS_PEND))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 return 0;
Peter Oberparleiter23d805b2008-07-14 09:58:50 +0200101 if (irb->scsw.cmd.stctl ==
102 (SCSW_STCTL_INTER_STATUS|SCSW_STCTL_STATUS_PEND) &&
103 !(irb->scsw.cmd.actl & SCSW_ACTL_SUSPENDED))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 return 0;
105 return 1;
106}
107
108/*
109 * Copy valid bits from the extended status word to device irb.
110 */
Heiko Carstens4d284ca2007-02-05 21:18:53 +0100111static void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112ccw_device_accumulate_esw(struct ccw_device *cdev, struct irb *irb)
113{
114 struct irb *cdev_irb;
115 struct sublog *cdev_sublog, *sublog;
116
117 if (!ccw_device_accumulate_esw_valid(irb))
118 return;
119
120 cdev_irb = &cdev->private->irb;
121
122 /* Copy last path used mask. */
123 cdev_irb->esw.esw1.lpum = irb->esw.esw1.lpum;
124
125 /* Copy subchannel logout information if esw is of format 0. */
Peter Oberparleiter23d805b2008-07-14 09:58:50 +0200126 if (irb->scsw.cmd.eswf) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 cdev_sublog = &cdev_irb->esw.esw0.sublog;
128 sublog = &irb->esw.esw0.sublog;
129 /* Copy extended status flags. */
130 cdev_sublog->esf = sublog->esf;
131 /*
132 * Copy fields that have a meaning for channel data check
133 * channel control check and interface control check.
134 */
Peter Oberparleiter23d805b2008-07-14 09:58:50 +0200135 if (irb->scsw.cmd.cstat & (SCHN_STAT_CHN_DATA_CHK |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 SCHN_STAT_CHN_CTRL_CHK |
137 SCHN_STAT_INTF_CTRL_CHK)) {
138 /* Copy ancillary report bit. */
139 cdev_sublog->arep = sublog->arep;
140 /* Copy field-validity-flags. */
141 cdev_sublog->fvf = sublog->fvf;
142 /* Copy storage access code. */
143 cdev_sublog->sacc = sublog->sacc;
144 /* Copy termination code. */
145 cdev_sublog->termc = sublog->termc;
146 /* Copy sequence code. */
147 cdev_sublog->seqc = sublog->seqc;
148 }
149 /* Copy device status check. */
150 cdev_sublog->devsc = sublog->devsc;
151 /* Copy secondary error. */
152 cdev_sublog->serr = sublog->serr;
153 /* Copy i/o-error alert. */
154 cdev_sublog->ioerr = sublog->ioerr;
155 /* Copy channel path timeout bit. */
Peter Oberparleiter23d805b2008-07-14 09:58:50 +0200156 if (irb->scsw.cmd.cstat & SCHN_STAT_INTF_CTRL_CHK)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 cdev_irb->esw.esw0.erw.cpt = irb->esw.esw0.erw.cpt;
158 /* Copy failing storage address validity flag. */
159 cdev_irb->esw.esw0.erw.fsavf = irb->esw.esw0.erw.fsavf;
160 if (cdev_irb->esw.esw0.erw.fsavf) {
161 /* ... and copy the failing storage address. */
162 memcpy(cdev_irb->esw.esw0.faddr, irb->esw.esw0.faddr,
163 sizeof (irb->esw.esw0.faddr));
164 /* ... and copy the failing storage address format. */
165 cdev_irb->esw.esw0.erw.fsaf = irb->esw.esw0.erw.fsaf;
166 }
167 /* Copy secondary ccw address validity bit. */
168 cdev_irb->esw.esw0.erw.scavf = irb->esw.esw0.erw.scavf;
169 if (irb->esw.esw0.erw.scavf)
170 /* ... and copy the secondary ccw address. */
171 cdev_irb->esw.esw0.saddr = irb->esw.esw0.saddr;
172
173 }
174 /* FIXME: DCTI for format 2? */
175
176 /* Copy authorization bit. */
177 cdev_irb->esw.esw0.erw.auth = irb->esw.esw0.erw.auth;
178 /* Copy path verification required flag. */
179 cdev_irb->esw.esw0.erw.pvrf = irb->esw.esw0.erw.pvrf;
Cornelia Huck7e560812006-07-12 16:40:19 +0200180 if (irb->esw.esw0.erw.pvrf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 cdev->private->flags.doverify = 1;
182 /* Copy concurrent sense bit. */
183 cdev_irb->esw.esw0.erw.cons = irb->esw.esw0.erw.cons;
184 if (irb->esw.esw0.erw.cons)
185 cdev_irb->esw.esw0.erw.scnt = irb->esw.esw0.erw.scnt;
186}
187
188/*
189 * Accumulate status from irb to devstat.
190 */
191void
192ccw_device_accumulate_irb(struct ccw_device *cdev, struct irb *irb)
193{
194 struct irb *cdev_irb;
195
196 /*
197 * Check if the status pending bit is set in stctl.
198 * If not, the remaining bit have no meaning and we must ignore them.
199 * The esw is not meaningful as well...
200 */
Peter Oberparleiter23d805b2008-07-14 09:58:50 +0200201 if (!(scsw_stctl(&irb->scsw) & SCSW_STCTL_STATUS_PEND))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 return;
203
204 /* Check for channel checks and interface control checks. */
205 ccw_device_msg_control_check(cdev, irb);
206
207 /* Check for path not operational. */
Peter Oberparleiter23d805b2008-07-14 09:58:50 +0200208 if (scsw_is_valid_pno(&irb->scsw) && scsw_pno(&irb->scsw))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 ccw_device_path_notoper(cdev);
Peter Oberparleiter23d805b2008-07-14 09:58:50 +0200210 /* No irb accumulation for transport mode irbs. */
211 if (scsw_is_tm(&irb->scsw)) {
212 memcpy(&cdev->private->irb, irb, sizeof(struct irb));
213 return;
214 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 /*
216 * Don't accumulate unsolicited interrupts.
217 */
Peter Oberparleiter23d805b2008-07-14 09:58:50 +0200218 if (!scsw_is_solicited(&irb->scsw))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 return;
220
221 cdev_irb = &cdev->private->irb;
222
Cornelia Huck8c3ce5b2007-04-04 14:37:11 +0200223 /*
224 * If the clear function had been performed, all formerly pending
225 * status at the subchannel has been cleared and we must not pass
226 * intermediate accumulated status to the device driver.
227 */
Peter Oberparleiter23d805b2008-07-14 09:58:50 +0200228 if (irb->scsw.cmd.fctl & SCSW_FCTL_CLEAR_FUNC)
Cornelia Huck8c3ce5b2007-04-04 14:37:11 +0200229 memset(&cdev->private->irb, 0, sizeof(struct irb));
230
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 /* Copy bits which are valid only for the start function. */
Peter Oberparleiter23d805b2008-07-14 09:58:50 +0200232 if (irb->scsw.cmd.fctl & SCSW_FCTL_START_FUNC) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 /* Copy key. */
Peter Oberparleiter23d805b2008-07-14 09:58:50 +0200234 cdev_irb->scsw.cmd.key = irb->scsw.cmd.key;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 /* Copy suspend control bit. */
Peter Oberparleiter23d805b2008-07-14 09:58:50 +0200236 cdev_irb->scsw.cmd.sctl = irb->scsw.cmd.sctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 /* Accumulate deferred condition code. */
Peter Oberparleiter23d805b2008-07-14 09:58:50 +0200238 cdev_irb->scsw.cmd.cc |= irb->scsw.cmd.cc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 /* Copy ccw format bit. */
Peter Oberparleiter23d805b2008-07-14 09:58:50 +0200240 cdev_irb->scsw.cmd.fmt = irb->scsw.cmd.fmt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 /* Copy prefetch bit. */
Peter Oberparleiter23d805b2008-07-14 09:58:50 +0200242 cdev_irb->scsw.cmd.pfch = irb->scsw.cmd.pfch;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 /* Copy initial-status-interruption-control. */
Peter Oberparleiter23d805b2008-07-14 09:58:50 +0200244 cdev_irb->scsw.cmd.isic = irb->scsw.cmd.isic;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 /* Copy address limit checking control. */
Peter Oberparleiter23d805b2008-07-14 09:58:50 +0200246 cdev_irb->scsw.cmd.alcc = irb->scsw.cmd.alcc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 /* Copy suppress suspend bit. */
Peter Oberparleiter23d805b2008-07-14 09:58:50 +0200248 cdev_irb->scsw.cmd.ssi = irb->scsw.cmd.ssi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 }
250
251 /* Take care of the extended control bit and extended control word. */
252 ccw_device_accumulate_ecw(cdev, irb);
253
254 /* Accumulate function control. */
Peter Oberparleiter23d805b2008-07-14 09:58:50 +0200255 cdev_irb->scsw.cmd.fctl |= irb->scsw.cmd.fctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 /* Copy activity control. */
Peter Oberparleiter23d805b2008-07-14 09:58:50 +0200257 cdev_irb->scsw.cmd.actl = irb->scsw.cmd.actl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 /* Accumulate status control. */
Peter Oberparleiter23d805b2008-07-14 09:58:50 +0200259 cdev_irb->scsw.cmd.stctl |= irb->scsw.cmd.stctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 /*
261 * Copy ccw address if it is valid. This is a bit simplified
262 * but should be close enough for all practical purposes.
263 */
Peter Oberparleiter23d805b2008-07-14 09:58:50 +0200264 if ((irb->scsw.cmd.stctl & SCSW_STCTL_PRIM_STATUS) ||
265 ((irb->scsw.cmd.stctl ==
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 (SCSW_STCTL_INTER_STATUS|SCSW_STCTL_STATUS_PEND)) &&
Peter Oberparleiter23d805b2008-07-14 09:58:50 +0200267 (irb->scsw.cmd.actl & SCSW_ACTL_DEVACT) &&
268 (irb->scsw.cmd.actl & SCSW_ACTL_SCHACT)) ||
269 (irb->scsw.cmd.actl & SCSW_ACTL_SUSPENDED))
270 cdev_irb->scsw.cmd.cpa = irb->scsw.cmd.cpa;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 /* Accumulate device status, but not the device busy flag. */
Peter Oberparleiter23d805b2008-07-14 09:58:50 +0200272 cdev_irb->scsw.cmd.dstat &= ~DEV_STAT_BUSY;
Cornelia Huck25c61a12007-03-26 20:42:41 +0200273 /* dstat is not always valid. */
Peter Oberparleiter23d805b2008-07-14 09:58:50 +0200274 if (irb->scsw.cmd.stctl &
Cornelia Huck25c61a12007-03-26 20:42:41 +0200275 (SCSW_STCTL_PRIM_STATUS | SCSW_STCTL_SEC_STATUS
276 | SCSW_STCTL_INTER_STATUS | SCSW_STCTL_ALERT_STATUS))
Peter Oberparleiter23d805b2008-07-14 09:58:50 +0200277 cdev_irb->scsw.cmd.dstat |= irb->scsw.cmd.dstat;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 /* Accumulate subchannel status. */
Peter Oberparleiter23d805b2008-07-14 09:58:50 +0200279 cdev_irb->scsw.cmd.cstat |= irb->scsw.cmd.cstat;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 /* Copy residual count if it is valid. */
Peter Oberparleiter23d805b2008-07-14 09:58:50 +0200281 if ((irb->scsw.cmd.stctl & SCSW_STCTL_PRIM_STATUS) &&
282 (irb->scsw.cmd.cstat & ~(SCHN_STAT_PCI | SCHN_STAT_INCORR_LEN))
283 == 0)
284 cdev_irb->scsw.cmd.count = irb->scsw.cmd.count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285
286 /* Take care of bits in the extended status word. */
287 ccw_device_accumulate_esw(cdev, irb);
288
289 /*
290 * Check whether we must issue a SENSE CCW ourselves if there is no
291 * concurrent sense facility installed for the subchannel.
292 * No sense is required if no delayed sense is pending
293 * and we did not get a unit check without sense information.
294 *
295 * Note: We should check for ioinfo[irq]->flags.consns but VM
296 * violates the ESA/390 architecture and doesn't present an
297 * operand exception for virtual devices without concurrent
298 * sense facility available/supported when enabling the
299 * concurrent sense facility.
300 */
Peter Oberparleiter23d805b2008-07-14 09:58:50 +0200301 if ((cdev_irb->scsw.cmd.dstat & DEV_STAT_UNIT_CHECK) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 !(cdev_irb->esw.esw0.erw.cons))
303 cdev->private->flags.dosense = 1;
304}
305
306/*
307 * Do a basic sense.
308 */
309int
310ccw_device_do_sense(struct ccw_device *cdev, struct irb *irb)
311{
312 struct subchannel *sch;
Cornelia Huckcd6b4f22008-01-26 14:10:43 +0100313 struct ccw1 *sense_ccw;
Cornelia Huckfe6173d2008-04-17 07:46:00 +0200314 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315
316 sch = to_subchannel(cdev->dev.parent);
317
318 /* A sense is required, can we do it now ? */
Peter Oberparleiter23d805b2008-07-14 09:58:50 +0200319 if (scsw_actl(&irb->scsw) & (SCSW_ACTL_DEVACT | SCSW_ACTL_SCHACT))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 /*
321 * we received an Unit Check but we have no final
322 * status yet, therefore we must delay the SENSE
323 * processing. We must not report this intermediate
324 * status to the device interrupt handler.
325 */
326 return -EBUSY;
327
328 /*
329 * We have ending status but no sense information. Do a basic sense.
330 */
Cornelia Huckcd6b4f22008-01-26 14:10:43 +0100331 sense_ccw = &to_io_private(sch)->sense_ccw;
332 sense_ccw->cmd_code = CCW_CMD_BASIC_SENSE;
333 sense_ccw->cda = (__u32) __pa(cdev->private->irb.ecw);
334 sense_ccw->count = SENSE_MAX_COUNT;
335 sense_ccw->flags = CCW_FLAG_SLI;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336
Cornelia Huckfe6173d2008-04-17 07:46:00 +0200337 rc = cio_start(sch, sense_ccw, 0xff);
338 if (rc == -ENODEV || rc == -EACCES)
339 dev_fsm_event(cdev, DEV_EVENT_VERIFY);
340 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341}
342
343/*
344 * Add information from basic sense to devstat.
345 */
346void
347ccw_device_accumulate_basic_sense(struct ccw_device *cdev, struct irb *irb)
348{
349 /*
350 * Check if the status pending bit is set in stctl.
351 * If not, the remaining bit have no meaning and we must ignore them.
352 * The esw is not meaningful as well...
353 */
Peter Oberparleiter23d805b2008-07-14 09:58:50 +0200354 if (!(scsw_stctl(&irb->scsw) & SCSW_STCTL_STATUS_PEND))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 return;
356
357 /* Check for channel checks and interface control checks. */
358 ccw_device_msg_control_check(cdev, irb);
359
360 /* Check for path not operational. */
Peter Oberparleiter23d805b2008-07-14 09:58:50 +0200361 if (scsw_is_valid_pno(&irb->scsw) && scsw_pno(&irb->scsw))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 ccw_device_path_notoper(cdev);
363
Peter Oberparleiter23d805b2008-07-14 09:58:50 +0200364 if (!(irb->scsw.cmd.dstat & DEV_STAT_UNIT_CHECK) &&
365 (irb->scsw.cmd.dstat & DEV_STAT_CHN_END)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 cdev->private->irb.esw.esw0.erw.cons = 1;
367 cdev->private->flags.dosense = 0;
368 }
369 /* Check if path verification is required. */
370 if (ccw_device_accumulate_esw_valid(irb) &&
Cornelia Huck7e560812006-07-12 16:40:19 +0200371 irb->esw.esw0.erw.pvrf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 cdev->private->flags.doverify = 1;
373}
374
375/*
376 * This function accumulates the status into the private devstat and
377 * starts a basic sense if one is needed.
378 */
379int
380ccw_device_accumulate_and_sense(struct ccw_device *cdev, struct irb *irb)
381{
382 ccw_device_accumulate_irb(cdev, irb);
Peter Oberparleiter23d805b2008-07-14 09:58:50 +0200383 if ((irb->scsw.cmd.actl & (SCSW_ACTL_DEVACT | SCSW_ACTL_SCHACT)) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 return -EBUSY;
385 /* Check for basic sense. */
386 if (cdev->private->flags.dosense &&
Peter Oberparleiter23d805b2008-07-14 09:58:50 +0200387 !(irb->scsw.cmd.dstat & DEV_STAT_UNIT_CHECK)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 cdev->private->irb.esw.esw0.erw.cons = 1;
389 cdev->private->flags.dosense = 0;
390 return 0;
391 }
392 if (cdev->private->flags.dosense) {
393 ccw_device_do_sense(cdev, irb);
394 return -EBUSY;
395 }
396 return 0;
397}
398