Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * drivers/s390/cio/device_status.c |
| 3 | * |
| 4 | * Copyright (C) 2002 IBM Deutschland Entwicklung GmbH, |
| 5 | * IBM Corporation |
Cornelia Huck | 4ce3b30 | 2006-01-14 13:21:04 -0800 | [diff] [blame] | 6 | * Author(s): Cornelia Huck (cornelia.huck@de.ibm.com) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | * Martin Schwidefsky (schwidefsky@de.ibm.com) |
| 8 | * |
| 9 | * Status accumulation and basic sense functions. |
| 10 | */ |
| 11 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12 | #include <linux/module.h> |
| 13 | #include <linux/init.h> |
| 14 | |
| 15 | #include <asm/ccwdev.h> |
| 16 | #include <asm/cio.h> |
| 17 | |
| 18 | #include "cio.h" |
| 19 | #include "cio_debug.h" |
| 20 | #include "css.h" |
| 21 | #include "device.h" |
| 22 | #include "ioasm.h" |
Cornelia Huck | cd6b4f2 | 2008-01-26 14:10:43 +0100 | [diff] [blame] | 23 | #include "io_sch.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | |
| 25 | /* |
| 26 | * Check for any kind of channel or interface control check but don't |
| 27 | * issue the message for the console device |
| 28 | */ |
Heiko Carstens | 4d284ca | 2007-02-05 21:18:53 +0100 | [diff] [blame] | 29 | static void |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | ccw_device_msg_control_check(struct ccw_device *cdev, struct irb *irb) |
| 31 | { |
Peter Oberparleiter | 23d805b | 2008-07-14 09:58:50 +0200 | [diff] [blame] | 32 | char dbf_text[15]; |
| 33 | |
| 34 | if (!scsw_is_valid_cstat(&irb->scsw) || |
| 35 | !(scsw_cstat(&irb->scsw) & (SCHN_STAT_CHN_DATA_CHK | |
| 36 | SCHN_STAT_CHN_CTRL_CHK | SCHN_STAT_INTF_CTRL_CHK))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | CIO_MSG_EVENT(0, "Channel-Check or Interface-Control-Check " |
| 39 | "received" |
Cornelia Huck | fb6958a | 2006-01-06 00:19:25 -0800 | [diff] [blame] | 40 | " ... device %04x on subchannel 0.%x.%04x, dev_stat " |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | ": %02X sch_stat : %02X\n", |
Cornelia Huck | 7896426 | 2006-10-11 15:31:38 +0200 | [diff] [blame] | 42 | cdev->private->dev_id.devno, cdev->private->schid.ssid, |
| 43 | cdev->private->schid.sch_no, |
Peter Oberparleiter | 23d805b | 2008-07-14 09:58:50 +0200 | [diff] [blame] | 44 | scsw_dstat(&irb->scsw), scsw_cstat(&irb->scsw)); |
| 45 | sprintf(dbf_text, "chk%x", cdev->private->schid.sch_no); |
| 46 | CIO_TRACE_EVENT(0, dbf_text); |
| 47 | CIO_HEX_EVENT(0, irb, sizeof(struct irb)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | } |
| 49 | |
| 50 | /* |
| 51 | * Some paths became not operational (pno bit in scsw is set). |
| 52 | */ |
| 53 | static void |
| 54 | ccw_device_path_notoper(struct ccw_device *cdev) |
| 55 | { |
| 56 | struct subchannel *sch; |
| 57 | |
| 58 | sch = to_subchannel(cdev->dev.parent); |
Sebastian Ott | cdb912a | 2008-12-25 13:39:12 +0100 | [diff] [blame] | 59 | if (cio_update_schib(sch)) |
| 60 | goto doverify; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | |
Cornelia Huck | fb6958a | 2006-01-06 00:19:25 -0800 | [diff] [blame] | 62 | CIO_MSG_EVENT(0, "%s(0.%x.%04x) - path(s) %02x are " |
Harvey Harrison | 2a2cf6b | 2008-04-17 07:46:21 +0200 | [diff] [blame] | 63 | "not operational \n", __func__, |
Cornelia Huck | fb6958a | 2006-01-06 00:19:25 -0800 | [diff] [blame] | 64 | sch->schid.ssid, sch->schid.sch_no, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 | sch->schib.pmcw.pnom); |
| 66 | |
| 67 | sch->lpm &= ~sch->schib.pmcw.pnom; |
Sebastian Ott | cdb912a | 2008-12-25 13:39:12 +0100 | [diff] [blame] | 68 | doverify: |
Cornelia Huck | 7e56081 | 2006-07-12 16:40:19 +0200 | [diff] [blame] | 69 | cdev->private->flags.doverify = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 | } |
| 71 | |
| 72 | /* |
| 73 | * Copy valid bits from the extended control word to device irb. |
| 74 | */ |
Heiko Carstens | 4d284ca | 2007-02-05 21:18:53 +0100 | [diff] [blame] | 75 | static void |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | ccw_device_accumulate_ecw(struct ccw_device *cdev, struct irb *irb) |
| 77 | { |
| 78 | /* |
| 79 | * Copy extended control bit if it is valid... yes there |
| 80 | * are condition that have to be met for the extended control |
| 81 | * bit to have meaning. Sick. |
| 82 | */ |
Peter Oberparleiter | 23d805b | 2008-07-14 09:58:50 +0200 | [diff] [blame] | 83 | cdev->private->irb.scsw.cmd.ectl = 0; |
| 84 | if ((irb->scsw.cmd.stctl & SCSW_STCTL_ALERT_STATUS) && |
| 85 | !(irb->scsw.cmd.stctl & SCSW_STCTL_INTER_STATUS)) |
| 86 | cdev->private->irb.scsw.cmd.ectl = irb->scsw.cmd.ectl; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 | /* Check if extended control word is valid. */ |
Peter Oberparleiter | 23d805b | 2008-07-14 09:58:50 +0200 | [diff] [blame] | 88 | if (!cdev->private->irb.scsw.cmd.ectl) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 89 | return; |
| 90 | /* Copy concurrent sense / model dependent information. */ |
| 91 | memcpy (&cdev->private->irb.ecw, irb->ecw, sizeof (irb->ecw)); |
| 92 | } |
| 93 | |
| 94 | /* |
| 95 | * Check if extended status word is valid. |
| 96 | */ |
Heiko Carstens | 4d284ca | 2007-02-05 21:18:53 +0100 | [diff] [blame] | 97 | static int |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 98 | ccw_device_accumulate_esw_valid(struct irb *irb) |
| 99 | { |
Peter Oberparleiter | 23d805b | 2008-07-14 09:58:50 +0200 | [diff] [blame] | 100 | if (!irb->scsw.cmd.eswf && |
| 101 | (irb->scsw.cmd.stctl == SCSW_STCTL_STATUS_PEND)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 102 | return 0; |
Peter Oberparleiter | 23d805b | 2008-07-14 09:58:50 +0200 | [diff] [blame] | 103 | if (irb->scsw.cmd.stctl == |
| 104 | (SCSW_STCTL_INTER_STATUS|SCSW_STCTL_STATUS_PEND) && |
| 105 | !(irb->scsw.cmd.actl & SCSW_ACTL_SUSPENDED)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 | return 0; |
| 107 | return 1; |
| 108 | } |
| 109 | |
| 110 | /* |
| 111 | * Copy valid bits from the extended status word to device irb. |
| 112 | */ |
Heiko Carstens | 4d284ca | 2007-02-05 21:18:53 +0100 | [diff] [blame] | 113 | static void |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 114 | ccw_device_accumulate_esw(struct ccw_device *cdev, struct irb *irb) |
| 115 | { |
| 116 | struct irb *cdev_irb; |
| 117 | struct sublog *cdev_sublog, *sublog; |
| 118 | |
| 119 | if (!ccw_device_accumulate_esw_valid(irb)) |
| 120 | return; |
| 121 | |
| 122 | cdev_irb = &cdev->private->irb; |
| 123 | |
| 124 | /* Copy last path used mask. */ |
| 125 | cdev_irb->esw.esw1.lpum = irb->esw.esw1.lpum; |
| 126 | |
| 127 | /* Copy subchannel logout information if esw is of format 0. */ |
Peter Oberparleiter | 23d805b | 2008-07-14 09:58:50 +0200 | [diff] [blame] | 128 | if (irb->scsw.cmd.eswf) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 129 | cdev_sublog = &cdev_irb->esw.esw0.sublog; |
| 130 | sublog = &irb->esw.esw0.sublog; |
| 131 | /* Copy extended status flags. */ |
| 132 | cdev_sublog->esf = sublog->esf; |
| 133 | /* |
| 134 | * Copy fields that have a meaning for channel data check |
| 135 | * channel control check and interface control check. |
| 136 | */ |
Peter Oberparleiter | 23d805b | 2008-07-14 09:58:50 +0200 | [diff] [blame] | 137 | if (irb->scsw.cmd.cstat & (SCHN_STAT_CHN_DATA_CHK | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 138 | SCHN_STAT_CHN_CTRL_CHK | |
| 139 | SCHN_STAT_INTF_CTRL_CHK)) { |
| 140 | /* Copy ancillary report bit. */ |
| 141 | cdev_sublog->arep = sublog->arep; |
| 142 | /* Copy field-validity-flags. */ |
| 143 | cdev_sublog->fvf = sublog->fvf; |
| 144 | /* Copy storage access code. */ |
| 145 | cdev_sublog->sacc = sublog->sacc; |
| 146 | /* Copy termination code. */ |
| 147 | cdev_sublog->termc = sublog->termc; |
| 148 | /* Copy sequence code. */ |
| 149 | cdev_sublog->seqc = sublog->seqc; |
| 150 | } |
| 151 | /* Copy device status check. */ |
| 152 | cdev_sublog->devsc = sublog->devsc; |
| 153 | /* Copy secondary error. */ |
| 154 | cdev_sublog->serr = sublog->serr; |
| 155 | /* Copy i/o-error alert. */ |
| 156 | cdev_sublog->ioerr = sublog->ioerr; |
| 157 | /* Copy channel path timeout bit. */ |
Peter Oberparleiter | 23d805b | 2008-07-14 09:58:50 +0200 | [diff] [blame] | 158 | if (irb->scsw.cmd.cstat & SCHN_STAT_INTF_CTRL_CHK) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 159 | cdev_irb->esw.esw0.erw.cpt = irb->esw.esw0.erw.cpt; |
| 160 | /* Copy failing storage address validity flag. */ |
| 161 | cdev_irb->esw.esw0.erw.fsavf = irb->esw.esw0.erw.fsavf; |
| 162 | if (cdev_irb->esw.esw0.erw.fsavf) { |
| 163 | /* ... and copy the failing storage address. */ |
| 164 | memcpy(cdev_irb->esw.esw0.faddr, irb->esw.esw0.faddr, |
| 165 | sizeof (irb->esw.esw0.faddr)); |
| 166 | /* ... and copy the failing storage address format. */ |
| 167 | cdev_irb->esw.esw0.erw.fsaf = irb->esw.esw0.erw.fsaf; |
| 168 | } |
| 169 | /* Copy secondary ccw address validity bit. */ |
| 170 | cdev_irb->esw.esw0.erw.scavf = irb->esw.esw0.erw.scavf; |
| 171 | if (irb->esw.esw0.erw.scavf) |
| 172 | /* ... and copy the secondary ccw address. */ |
| 173 | cdev_irb->esw.esw0.saddr = irb->esw.esw0.saddr; |
| 174 | |
| 175 | } |
| 176 | /* FIXME: DCTI for format 2? */ |
| 177 | |
| 178 | /* Copy authorization bit. */ |
| 179 | cdev_irb->esw.esw0.erw.auth = irb->esw.esw0.erw.auth; |
| 180 | /* Copy path verification required flag. */ |
| 181 | cdev_irb->esw.esw0.erw.pvrf = irb->esw.esw0.erw.pvrf; |
Cornelia Huck | 7e56081 | 2006-07-12 16:40:19 +0200 | [diff] [blame] | 182 | if (irb->esw.esw0.erw.pvrf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 183 | cdev->private->flags.doverify = 1; |
| 184 | /* Copy concurrent sense bit. */ |
| 185 | cdev_irb->esw.esw0.erw.cons = irb->esw.esw0.erw.cons; |
| 186 | if (irb->esw.esw0.erw.cons) |
| 187 | cdev_irb->esw.esw0.erw.scnt = irb->esw.esw0.erw.scnt; |
| 188 | } |
| 189 | |
| 190 | /* |
| 191 | * Accumulate status from irb to devstat. |
| 192 | */ |
| 193 | void |
| 194 | ccw_device_accumulate_irb(struct ccw_device *cdev, struct irb *irb) |
| 195 | { |
| 196 | struct irb *cdev_irb; |
| 197 | |
| 198 | /* |
| 199 | * Check if the status pending bit is set in stctl. |
| 200 | * If not, the remaining bit have no meaning and we must ignore them. |
| 201 | * The esw is not meaningful as well... |
| 202 | */ |
Peter Oberparleiter | 23d805b | 2008-07-14 09:58:50 +0200 | [diff] [blame] | 203 | if (!(scsw_stctl(&irb->scsw) & SCSW_STCTL_STATUS_PEND)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 204 | return; |
| 205 | |
| 206 | /* Check for channel checks and interface control checks. */ |
| 207 | ccw_device_msg_control_check(cdev, irb); |
| 208 | |
| 209 | /* Check for path not operational. */ |
Peter Oberparleiter | 23d805b | 2008-07-14 09:58:50 +0200 | [diff] [blame] | 210 | if (scsw_is_valid_pno(&irb->scsw) && scsw_pno(&irb->scsw)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 211 | ccw_device_path_notoper(cdev); |
Peter Oberparleiter | 23d805b | 2008-07-14 09:58:50 +0200 | [diff] [blame] | 212 | /* No irb accumulation for transport mode irbs. */ |
| 213 | if (scsw_is_tm(&irb->scsw)) { |
| 214 | memcpy(&cdev->private->irb, irb, sizeof(struct irb)); |
| 215 | return; |
| 216 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 217 | /* |
| 218 | * Don't accumulate unsolicited interrupts. |
| 219 | */ |
Peter Oberparleiter | 23d805b | 2008-07-14 09:58:50 +0200 | [diff] [blame] | 220 | if (!scsw_is_solicited(&irb->scsw)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 221 | return; |
| 222 | |
| 223 | cdev_irb = &cdev->private->irb; |
| 224 | |
Cornelia Huck | 8c3ce5b | 2007-04-04 14:37:11 +0200 | [diff] [blame] | 225 | /* |
| 226 | * If the clear function had been performed, all formerly pending |
| 227 | * status at the subchannel has been cleared and we must not pass |
| 228 | * intermediate accumulated status to the device driver. |
| 229 | */ |
Peter Oberparleiter | 23d805b | 2008-07-14 09:58:50 +0200 | [diff] [blame] | 230 | if (irb->scsw.cmd.fctl & SCSW_FCTL_CLEAR_FUNC) |
Cornelia Huck | 8c3ce5b | 2007-04-04 14:37:11 +0200 | [diff] [blame] | 231 | memset(&cdev->private->irb, 0, sizeof(struct irb)); |
| 232 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 233 | /* Copy bits which are valid only for the start function. */ |
Peter Oberparleiter | 23d805b | 2008-07-14 09:58:50 +0200 | [diff] [blame] | 234 | if (irb->scsw.cmd.fctl & SCSW_FCTL_START_FUNC) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 235 | /* Copy key. */ |
Peter Oberparleiter | 23d805b | 2008-07-14 09:58:50 +0200 | [diff] [blame] | 236 | cdev_irb->scsw.cmd.key = irb->scsw.cmd.key; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 237 | /* Copy suspend control bit. */ |
Peter Oberparleiter | 23d805b | 2008-07-14 09:58:50 +0200 | [diff] [blame] | 238 | cdev_irb->scsw.cmd.sctl = irb->scsw.cmd.sctl; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 239 | /* Accumulate deferred condition code. */ |
Peter Oberparleiter | 23d805b | 2008-07-14 09:58:50 +0200 | [diff] [blame] | 240 | cdev_irb->scsw.cmd.cc |= irb->scsw.cmd.cc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 241 | /* Copy ccw format bit. */ |
Peter Oberparleiter | 23d805b | 2008-07-14 09:58:50 +0200 | [diff] [blame] | 242 | cdev_irb->scsw.cmd.fmt = irb->scsw.cmd.fmt; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 243 | /* Copy prefetch bit. */ |
Peter Oberparleiter | 23d805b | 2008-07-14 09:58:50 +0200 | [diff] [blame] | 244 | cdev_irb->scsw.cmd.pfch = irb->scsw.cmd.pfch; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 245 | /* Copy initial-status-interruption-control. */ |
Peter Oberparleiter | 23d805b | 2008-07-14 09:58:50 +0200 | [diff] [blame] | 246 | cdev_irb->scsw.cmd.isic = irb->scsw.cmd.isic; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 247 | /* Copy address limit checking control. */ |
Peter Oberparleiter | 23d805b | 2008-07-14 09:58:50 +0200 | [diff] [blame] | 248 | cdev_irb->scsw.cmd.alcc = irb->scsw.cmd.alcc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 249 | /* Copy suppress suspend bit. */ |
Peter Oberparleiter | 23d805b | 2008-07-14 09:58:50 +0200 | [diff] [blame] | 250 | cdev_irb->scsw.cmd.ssi = irb->scsw.cmd.ssi; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 251 | } |
| 252 | |
| 253 | /* Take care of the extended control bit and extended control word. */ |
| 254 | ccw_device_accumulate_ecw(cdev, irb); |
| 255 | |
| 256 | /* Accumulate function control. */ |
Peter Oberparleiter | 23d805b | 2008-07-14 09:58:50 +0200 | [diff] [blame] | 257 | cdev_irb->scsw.cmd.fctl |= irb->scsw.cmd.fctl; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 258 | /* Copy activity control. */ |
Peter Oberparleiter | 23d805b | 2008-07-14 09:58:50 +0200 | [diff] [blame] | 259 | cdev_irb->scsw.cmd.actl = irb->scsw.cmd.actl; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 260 | /* Accumulate status control. */ |
Peter Oberparleiter | 23d805b | 2008-07-14 09:58:50 +0200 | [diff] [blame] | 261 | cdev_irb->scsw.cmd.stctl |= irb->scsw.cmd.stctl; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 262 | /* |
| 263 | * Copy ccw address if it is valid. This is a bit simplified |
| 264 | * but should be close enough for all practical purposes. |
| 265 | */ |
Peter Oberparleiter | 23d805b | 2008-07-14 09:58:50 +0200 | [diff] [blame] | 266 | if ((irb->scsw.cmd.stctl & SCSW_STCTL_PRIM_STATUS) || |
| 267 | ((irb->scsw.cmd.stctl == |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 268 | (SCSW_STCTL_INTER_STATUS|SCSW_STCTL_STATUS_PEND)) && |
Peter Oberparleiter | 23d805b | 2008-07-14 09:58:50 +0200 | [diff] [blame] | 269 | (irb->scsw.cmd.actl & SCSW_ACTL_DEVACT) && |
| 270 | (irb->scsw.cmd.actl & SCSW_ACTL_SCHACT)) || |
| 271 | (irb->scsw.cmd.actl & SCSW_ACTL_SUSPENDED)) |
| 272 | cdev_irb->scsw.cmd.cpa = irb->scsw.cmd.cpa; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 273 | /* Accumulate device status, but not the device busy flag. */ |
Peter Oberparleiter | 23d805b | 2008-07-14 09:58:50 +0200 | [diff] [blame] | 274 | cdev_irb->scsw.cmd.dstat &= ~DEV_STAT_BUSY; |
Cornelia Huck | 25c61a1 | 2007-03-26 20:42:41 +0200 | [diff] [blame] | 275 | /* dstat is not always valid. */ |
Peter Oberparleiter | 23d805b | 2008-07-14 09:58:50 +0200 | [diff] [blame] | 276 | if (irb->scsw.cmd.stctl & |
Cornelia Huck | 25c61a1 | 2007-03-26 20:42:41 +0200 | [diff] [blame] | 277 | (SCSW_STCTL_PRIM_STATUS | SCSW_STCTL_SEC_STATUS |
| 278 | | SCSW_STCTL_INTER_STATUS | SCSW_STCTL_ALERT_STATUS)) |
Peter Oberparleiter | 23d805b | 2008-07-14 09:58:50 +0200 | [diff] [blame] | 279 | cdev_irb->scsw.cmd.dstat |= irb->scsw.cmd.dstat; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 280 | /* Accumulate subchannel status. */ |
Peter Oberparleiter | 23d805b | 2008-07-14 09:58:50 +0200 | [diff] [blame] | 281 | cdev_irb->scsw.cmd.cstat |= irb->scsw.cmd.cstat; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 282 | /* Copy residual count if it is valid. */ |
Peter Oberparleiter | 23d805b | 2008-07-14 09:58:50 +0200 | [diff] [blame] | 283 | if ((irb->scsw.cmd.stctl & SCSW_STCTL_PRIM_STATUS) && |
| 284 | (irb->scsw.cmd.cstat & ~(SCHN_STAT_PCI | SCHN_STAT_INCORR_LEN)) |
| 285 | == 0) |
| 286 | cdev_irb->scsw.cmd.count = irb->scsw.cmd.count; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 287 | |
| 288 | /* Take care of bits in the extended status word. */ |
| 289 | ccw_device_accumulate_esw(cdev, irb); |
| 290 | |
| 291 | /* |
| 292 | * Check whether we must issue a SENSE CCW ourselves if there is no |
| 293 | * concurrent sense facility installed for the subchannel. |
| 294 | * No sense is required if no delayed sense is pending |
| 295 | * and we did not get a unit check without sense information. |
| 296 | * |
| 297 | * Note: We should check for ioinfo[irq]->flags.consns but VM |
| 298 | * violates the ESA/390 architecture and doesn't present an |
| 299 | * operand exception for virtual devices without concurrent |
| 300 | * sense facility available/supported when enabling the |
| 301 | * concurrent sense facility. |
| 302 | */ |
Peter Oberparleiter | 23d805b | 2008-07-14 09:58:50 +0200 | [diff] [blame] | 303 | if ((cdev_irb->scsw.cmd.dstat & DEV_STAT_UNIT_CHECK) && |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 304 | !(cdev_irb->esw.esw0.erw.cons)) |
| 305 | cdev->private->flags.dosense = 1; |
| 306 | } |
| 307 | |
| 308 | /* |
| 309 | * Do a basic sense. |
| 310 | */ |
| 311 | int |
| 312 | ccw_device_do_sense(struct ccw_device *cdev, struct irb *irb) |
| 313 | { |
| 314 | struct subchannel *sch; |
Cornelia Huck | cd6b4f2 | 2008-01-26 14:10:43 +0100 | [diff] [blame] | 315 | struct ccw1 *sense_ccw; |
Cornelia Huck | fe6173d | 2008-04-17 07:46:00 +0200 | [diff] [blame] | 316 | int rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 317 | |
| 318 | sch = to_subchannel(cdev->dev.parent); |
| 319 | |
| 320 | /* A sense is required, can we do it now ? */ |
Peter Oberparleiter | 23d805b | 2008-07-14 09:58:50 +0200 | [diff] [blame] | 321 | if (scsw_actl(&irb->scsw) & (SCSW_ACTL_DEVACT | SCSW_ACTL_SCHACT)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 322 | /* |
| 323 | * we received an Unit Check but we have no final |
| 324 | * status yet, therefore we must delay the SENSE |
| 325 | * processing. We must not report this intermediate |
| 326 | * status to the device interrupt handler. |
| 327 | */ |
| 328 | return -EBUSY; |
| 329 | |
| 330 | /* |
| 331 | * We have ending status but no sense information. Do a basic sense. |
| 332 | */ |
Cornelia Huck | cd6b4f2 | 2008-01-26 14:10:43 +0100 | [diff] [blame] | 333 | sense_ccw = &to_io_private(sch)->sense_ccw; |
| 334 | sense_ccw->cmd_code = CCW_CMD_BASIC_SENSE; |
| 335 | sense_ccw->cda = (__u32) __pa(cdev->private->irb.ecw); |
| 336 | sense_ccw->count = SENSE_MAX_COUNT; |
| 337 | sense_ccw->flags = CCW_FLAG_SLI; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 338 | |
Cornelia Huck | fe6173d | 2008-04-17 07:46:00 +0200 | [diff] [blame] | 339 | rc = cio_start(sch, sense_ccw, 0xff); |
| 340 | if (rc == -ENODEV || rc == -EACCES) |
| 341 | dev_fsm_event(cdev, DEV_EVENT_VERIFY); |
| 342 | return rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 343 | } |
| 344 | |
| 345 | /* |
| 346 | * Add information from basic sense to devstat. |
| 347 | */ |
| 348 | void |
| 349 | ccw_device_accumulate_basic_sense(struct ccw_device *cdev, struct irb *irb) |
| 350 | { |
| 351 | /* |
| 352 | * Check if the status pending bit is set in stctl. |
| 353 | * If not, the remaining bit have no meaning and we must ignore them. |
| 354 | * The esw is not meaningful as well... |
| 355 | */ |
Peter Oberparleiter | 23d805b | 2008-07-14 09:58:50 +0200 | [diff] [blame] | 356 | if (!(scsw_stctl(&irb->scsw) & SCSW_STCTL_STATUS_PEND)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 357 | return; |
| 358 | |
| 359 | /* Check for channel checks and interface control checks. */ |
| 360 | ccw_device_msg_control_check(cdev, irb); |
| 361 | |
| 362 | /* Check for path not operational. */ |
Peter Oberparleiter | 23d805b | 2008-07-14 09:58:50 +0200 | [diff] [blame] | 363 | if (scsw_is_valid_pno(&irb->scsw) && scsw_pno(&irb->scsw)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 364 | ccw_device_path_notoper(cdev); |
| 365 | |
Peter Oberparleiter | 23d805b | 2008-07-14 09:58:50 +0200 | [diff] [blame] | 366 | if (!(irb->scsw.cmd.dstat & DEV_STAT_UNIT_CHECK) && |
| 367 | (irb->scsw.cmd.dstat & DEV_STAT_CHN_END)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 368 | cdev->private->irb.esw.esw0.erw.cons = 1; |
| 369 | cdev->private->flags.dosense = 0; |
| 370 | } |
| 371 | /* Check if path verification is required. */ |
| 372 | if (ccw_device_accumulate_esw_valid(irb) && |
Cornelia Huck | 7e56081 | 2006-07-12 16:40:19 +0200 | [diff] [blame] | 373 | irb->esw.esw0.erw.pvrf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 374 | cdev->private->flags.doverify = 1; |
| 375 | } |
| 376 | |
| 377 | /* |
| 378 | * This function accumulates the status into the private devstat and |
| 379 | * starts a basic sense if one is needed. |
| 380 | */ |
| 381 | int |
| 382 | ccw_device_accumulate_and_sense(struct ccw_device *cdev, struct irb *irb) |
| 383 | { |
| 384 | ccw_device_accumulate_irb(cdev, irb); |
Peter Oberparleiter | 23d805b | 2008-07-14 09:58:50 +0200 | [diff] [blame] | 385 | if ((irb->scsw.cmd.actl & (SCSW_ACTL_DEVACT | SCSW_ACTL_SCHACT)) != 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 386 | return -EBUSY; |
| 387 | /* Check for basic sense. */ |
| 388 | if (cdev->private->flags.dosense && |
Peter Oberparleiter | 23d805b | 2008-07-14 09:58:50 +0200 | [diff] [blame] | 389 | !(irb->scsw.cmd.dstat & DEV_STAT_UNIT_CHECK)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 390 | cdev->private->irb.esw.esw0.erw.cons = 1; |
| 391 | cdev->private->flags.dosense = 0; |
| 392 | return 0; |
| 393 | } |
| 394 | if (cdev->private->flags.dosense) { |
| 395 | ccw_device_do_sense(cdev, irb); |
| 396 | return -EBUSY; |
| 397 | } |
| 398 | return 0; |
| 399 | } |
| 400 | |