blob: 987bf9a8c9f7237d06c578e42807a6e168ef7dfd [file] [log] [blame]
Greg Kroah-Hartman724117b2017-11-14 18:38:02 +01001// SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 * S/390 common I/O routines -- low level i/o calls
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
Heiko Carstensa53c8fa2012-07-20 11:15:04 +02005 * Copyright IBM Corp. 1999, 2008
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 * Author(s): Ingo Adlung (adlung@de.ibm.com)
Cornelia Huck4ce3b302006-01-14 13:21:04 -08007 * Cornelia Huck (cornelia.huck@de.ibm.com)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 * Arnd Bergmann (arndb@de.ibm.com)
9 * Martin Schwidefsky (schwidefsky@de.ibm.com)
10 */
11
Michael Ernste6d5a422008-12-25 13:39:36 +010012#define KMSG_COMPONENT "cio"
13#define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
14
Heiko Carstens88dbd202009-06-12 10:26:46 +020015#include <linux/ftrace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/init.h>
18#include <linux/slab.h>
19#include <linux/device.h>
20#include <linux/kernel_stat.h>
21#include <linux/interrupt.h>
Thomas Gleixner257ceab2014-03-04 23:57:29 +010022#include <linux/irq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <asm/cio.h>
24#include <asm/delay.h>
25#include <asm/irq.h>
Heiko Carstens5a489b982006-10-06 16:38:35 +020026#include <asm/irq_regs.h>
Heiko Carstense87bfe52006-09-20 15:59:15 +020027#include <asm/setup.h>
Heiko Carstens15e9b582006-12-04 15:40:26 +010028#include <asm/reset.h>
Michael Holzheu46b05d22007-02-21 10:55:21 +010029#include <asm/ipl.h>
Peter Oberparleitere5854a52007-04-27 16:01:31 +020030#include <asm/chpid.h>
Peter Oberparleiter4e8e56c2008-01-26 14:10:44 +010031#include <asm/airq.h>
Cornelia Huck3a3fc292008-07-14 09:58:58 +020032#include <asm/isc.h>
Ingo Molnar32ef5512017-02-05 11:48:36 +010033#include <linux/sched/cputime.h>
Peter Oberparleiter83262d62008-07-14 09:58:51 +020034#include <asm/fcx.h>
Heiko Carstensf5daba12009-03-26 15:24:01 +010035#include <asm/nmi.h>
36#include <asm/crw.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include "cio.h"
38#include "css.h"
39#include "chsc.h"
40#include "ioasm.h"
Cornelia Huckcd6b4f22008-01-26 14:10:43 +010041#include "io_sch.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#include "blacklist.h"
43#include "cio_debug.h"
Peter Oberparleitere6b6e102007-04-27 16:01:28 +020044#include "chp.h"
Peter Oberparleiter42248972015-12-18 12:59:36 +010045#include "trace.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
47debug_info_t *cio_debug_msg_id;
48debug_info_t *cio_debug_trace_id;
49debug_info_t *cio_debug_crw_id;
50
Martin Schwidefsky63aef002014-05-27 14:40:39 +020051DEFINE_PER_CPU_ALIGNED(struct irb, cio_irb);
52EXPORT_PER_CPU_SYMBOL(cio_irb);
53
Linus Torvalds1da177e2005-04-16 15:20:36 -070054/*
55 * Function: cio_debug_init
Cornelia Huckbc698bc2008-01-26 14:10:42 +010056 * Initializes three debug logs for common I/O:
57 * - cio_msg logs generic cio messages
Linus Torvalds1da177e2005-04-16 15:20:36 -070058 * - cio_trace logs the calling of different functions
Cornelia Huckbc698bc2008-01-26 14:10:42 +010059 * - cio_crw logs machine check related cio messages
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 */
Cornelia Huckbc698bc2008-01-26 14:10:42 +010061static int __init cio_debug_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070062{
Sebastian Ottf7e1e652014-02-17 11:16:10 +010063 cio_debug_msg_id = debug_register("cio_msg", 16, 1, 11 * sizeof(long));
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 if (!cio_debug_msg_id)
65 goto out_unregister;
Cornelia Huckbc698bc2008-01-26 14:10:42 +010066 debug_register_view(cio_debug_msg_id, &debug_sprintf_view);
67 debug_set_level(cio_debug_msg_id, 2);
Peter Tiedemann361f4942008-01-26 14:11:30 +010068 cio_debug_trace_id = debug_register("cio_trace", 16, 1, 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 if (!cio_debug_trace_id)
70 goto out_unregister;
Cornelia Huckbc698bc2008-01-26 14:10:42 +010071 debug_register_view(cio_debug_trace_id, &debug_hex_ascii_view);
72 debug_set_level(cio_debug_trace_id, 2);
Sebastian Ottf7e1e652014-02-17 11:16:10 +010073 cio_debug_crw_id = debug_register("cio_crw", 8, 1, 8 * sizeof(long));
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 if (!cio_debug_crw_id)
75 goto out_unregister;
Cornelia Huckbc698bc2008-01-26 14:10:42 +010076 debug_register_view(cio_debug_crw_id, &debug_sprintf_view);
77 debug_set_level(cio_debug_crw_id, 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 return 0;
79
80out_unregister:
Markus Elfringa6e975c2015-11-16 14:45:40 +010081 debug_unregister(cio_debug_msg_id);
82 debug_unregister(cio_debug_trace_id);
83 debug_unregister(cio_debug_crw_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 return -1;
85}
86
87arch_initcall (cio_debug_init);
88
Sebastian Ottc513d072011-03-15 17:08:25 +010089int cio_set_options(struct subchannel *sch, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -070090{
Sebastian Ottc513d072011-03-15 17:08:25 +010091 struct io_subchannel_private *priv = to_io_private(sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
Sebastian Ottc513d072011-03-15 17:08:25 +010093 priv->options.suspend = (flags & DOIO_ALLOW_SUSPEND) != 0;
94 priv->options.prefetch = (flags & DOIO_DENY_PREFETCH) != 0;
95 priv->options.inter = (flags & DOIO_SUPPRESS_INTER) != 0;
96 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070097}
98
Heiko Carstens4d284ca2007-02-05 21:18:53 +010099static int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100cio_start_handle_notoper(struct subchannel *sch, __u8 lpm)
101{
102 char dbf_text[15];
103
104 if (lpm != 0)
105 sch->lpm &= ~lpm;
106 else
107 sch->lpm = 0;
108
Michael Ernst139b83dd2008-05-07 09:22:54 +0200109 CIO_MSG_EVENT(2, "cio_start: 'not oper' status for "
Cornelia Huckfb6958a2006-01-06 00:19:25 -0800110 "subchannel 0.%x.%04x!\n", sch->schid.ssid,
111 sch->schid.sch_no);
Sebastian Ottcdb912a2008-12-25 13:39:12 +0100112
113 if (cio_update_schib(sch))
114 return -ENODEV;
115
Kay Sievers2a0217d2008-10-10 21:33:09 +0200116 sprintf(dbf_text, "no%s", dev_name(&sch->dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 CIO_TRACE_EVENT(0, dbf_text);
118 CIO_HEX_EVENT(0, &sch->schib, sizeof (struct schib));
119
120 return (sch->lpm ? -EACCES : -ENODEV);
121}
122
123int
124cio_start_key (struct subchannel *sch, /* subchannel structure */
125 struct ccw1 * cpa, /* logical channel prog addr */
126 __u8 lpm, /* logical path mask */
127 __u8 key) /* storage key */
128{
Sebastian Ottc513d072011-03-15 17:08:25 +0100129 struct io_subchannel_private *priv = to_io_private(sch);
130 union orb *orb = &priv->orb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 int ccode;
132
Sebastian Ottefd986d2009-09-11 10:28:18 +0200133 CIO_TRACE_EVENT(5, "stIO");
134 CIO_TRACE_EVENT(5, dev_name(&sch->dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135
Stefan Weinhuber9adb8c12008-09-16 09:32:19 -0700136 memset(orb, 0, sizeof(union orb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 /* sch is always under 2G. */
Peter Oberparleiter83262d62008-07-14 09:58:51 +0200138 orb->cmd.intparm = (u32)(addr_t)sch;
139 orb->cmd.fmt = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140
Sebastian Ottc513d072011-03-15 17:08:25 +0100141 orb->cmd.pfch = priv->options.prefetch == 0;
142 orb->cmd.spnd = priv->options.suspend;
143 orb->cmd.ssic = priv->options.suspend && priv->options.inter;
Peter Oberparleiter83262d62008-07-14 09:58:51 +0200144 orb->cmd.lpm = (lpm != 0) ? lpm : sch->lpm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 /*
146 * for 64 bit we always support 64 bit IDAWs with 4k page size only
147 */
Peter Oberparleiter83262d62008-07-14 09:58:51 +0200148 orb->cmd.c64 = 1;
149 orb->cmd.i2k = 0;
Peter Oberparleiter83262d62008-07-14 09:58:51 +0200150 orb->cmd.key = key >> 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 /* issue "Start Subchannel" */
Peter Oberparleiter83262d62008-07-14 09:58:51 +0200152 orb->cmd.cpa = (__u32) __pa(cpa);
Cornelia Huckcd6b4f22008-01-26 14:10:43 +0100153 ccode = ssch(sch->schid, orb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154
155 /* process condition code */
Sebastian Ottefd986d2009-09-11 10:28:18 +0200156 CIO_HEX_EVENT(5, &ccode, sizeof(ccode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157
158 switch (ccode) {
159 case 0:
160 /*
161 * initialize device status information
162 */
Peter Oberparleiter23d805b62008-07-14 09:58:50 +0200163 sch->schib.scsw.cmd.actl |= SCSW_ACTL_START_PEND;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 return 0;
165 case 1: /* status pending */
166 case 2: /* busy */
167 return -EBUSY;
Cornelia Huckc91ebe42008-09-09 12:38:58 +0200168 case 3: /* device/path not operational */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 return cio_start_handle_notoper(sch, lpm);
Cornelia Huckc91ebe42008-09-09 12:38:58 +0200170 default:
171 return ccode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 }
173}
Dong Jia Shia22217e2017-03-17 04:17:29 +0100174EXPORT_SYMBOL_GPL(cio_start_key);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175
176int
177cio_start (struct subchannel *sch, struct ccw1 *cpa, __u8 lpm)
178{
Peter Oberparleiter0b642ed2005-05-01 08:58:58 -0700179 return cio_start_key(sch, cpa, lpm, PAGE_DEFAULT_KEY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180}
Dong Jia Shia22217e2017-03-17 04:17:29 +0100181EXPORT_SYMBOL_GPL(cio_start);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182
183/*
184 * resume suspended I/O operation
185 */
186int
187cio_resume (struct subchannel *sch)
188{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 int ccode;
190
Sebastian Ottefd986d2009-09-11 10:28:18 +0200191 CIO_TRACE_EVENT(4, "resIO");
Kay Sievers2a0217d2008-10-10 21:33:09 +0200192 CIO_TRACE_EVENT(4, dev_name(&sch->dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800194 ccode = rsch (sch->schid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195
Sebastian Ottefd986d2009-09-11 10:28:18 +0200196 CIO_HEX_EVENT(4, &ccode, sizeof(ccode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197
198 switch (ccode) {
199 case 0:
Peter Oberparleiter23d805b62008-07-14 09:58:50 +0200200 sch->schib.scsw.cmd.actl |= SCSW_ACTL_RESUME_PEND;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 return 0;
202 case 1:
203 return -EBUSY;
204 case 2:
205 return -EINVAL;
206 default:
207 /*
208 * useless to wait for request completion
209 * as device is no longer operational !
210 */
211 return -ENODEV;
212 }
213}
Dong Jia Shia22217e2017-03-17 04:17:29 +0100214EXPORT_SYMBOL_GPL(cio_resume);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215
216/*
217 * halt I/O operation
218 */
219int
220cio_halt(struct subchannel *sch)
221{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 int ccode;
223
224 if (!sch)
225 return -ENODEV;
226
Sebastian Ottefd986d2009-09-11 10:28:18 +0200227 CIO_TRACE_EVENT(2, "haltIO");
Kay Sievers2a0217d2008-10-10 21:33:09 +0200228 CIO_TRACE_EVENT(2, dev_name(&sch->dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229
230 /*
231 * Issue "Halt subchannel" and process condition code
232 */
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800233 ccode = hsch (sch->schid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234
Sebastian Ottefd986d2009-09-11 10:28:18 +0200235 CIO_HEX_EVENT(2, &ccode, sizeof(ccode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236
237 switch (ccode) {
238 case 0:
Peter Oberparleiter23d805b62008-07-14 09:58:50 +0200239 sch->schib.scsw.cmd.actl |= SCSW_ACTL_HALT_PEND;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 return 0;
241 case 1: /* status pending */
242 case 2: /* busy */
243 return -EBUSY;
244 default: /* device not operational */
245 return -ENODEV;
246 }
247}
Dong Jia Shia22217e2017-03-17 04:17:29 +0100248EXPORT_SYMBOL_GPL(cio_halt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249
250/*
251 * Clear I/O operation
252 */
253int
254cio_clear(struct subchannel *sch)
255{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 int ccode;
257
258 if (!sch)
259 return -ENODEV;
260
Sebastian Ottefd986d2009-09-11 10:28:18 +0200261 CIO_TRACE_EVENT(2, "clearIO");
Kay Sievers2a0217d2008-10-10 21:33:09 +0200262 CIO_TRACE_EVENT(2, dev_name(&sch->dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263
264 /*
265 * Issue "Clear subchannel" and process condition code
266 */
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800267 ccode = csch (sch->schid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268
Sebastian Ottefd986d2009-09-11 10:28:18 +0200269 CIO_HEX_EVENT(2, &ccode, sizeof(ccode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270
271 switch (ccode) {
272 case 0:
Peter Oberparleiter23d805b62008-07-14 09:58:50 +0200273 sch->schib.scsw.cmd.actl |= SCSW_ACTL_CLEAR_PEND;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 return 0;
275 default: /* device not operational */
276 return -ENODEV;
277 }
278}
Dong Jia Shia22217e2017-03-17 04:17:29 +0100279EXPORT_SYMBOL_GPL(cio_clear);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280
281/*
282 * Function: cio_cancel
283 * Issues a "Cancel Subchannel" on the specified subchannel
284 * Note: We don't need any fancy intparms and flags here
285 * since xsch is executed synchronously.
286 * Only for common I/O internal use as for now.
287 */
288int
289cio_cancel (struct subchannel *sch)
290{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 int ccode;
292
293 if (!sch)
294 return -ENODEV;
295
Sebastian Ottefd986d2009-09-11 10:28:18 +0200296 CIO_TRACE_EVENT(2, "cancelIO");
Kay Sievers2a0217d2008-10-10 21:33:09 +0200297 CIO_TRACE_EVENT(2, dev_name(&sch->dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800299 ccode = xsch (sch->schid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300
Sebastian Ottefd986d2009-09-11 10:28:18 +0200301 CIO_HEX_EVENT(2, &ccode, sizeof(ccode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302
303 switch (ccode) {
304 case 0: /* success */
305 /* Update information in scsw. */
Sebastian Ottcdb912a2008-12-25 13:39:12 +0100306 if (cio_update_schib(sch))
307 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 return 0;
309 case 1: /* status pending */
310 return -EBUSY;
311 case 2: /* not applicable */
312 return -EINVAL;
313 default: /* not oper */
314 return -ENODEV;
315 }
316}
Dong Jia Shia22217e2017-03-17 04:17:29 +0100317EXPORT_SYMBOL_GPL(cio_cancel);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318
Dong Jia Shi5434da42017-03-17 04:17:28 +0100319/**
320 * cio_cancel_halt_clear - Cancel running I/O by performing cancel, halt
321 * and clear ordinally if subchannel is valid.
322 * @sch: subchannel on which to perform the cancel_halt_clear operation
323 * @iretry: the number of the times remained to retry the next operation
324 *
325 * This should be called repeatedly since halt/clear are asynchronous
326 * operations. We do one try with cio_cancel, three tries with cio_halt,
327 * 255 tries with cio_clear. The caller should initialize @iretry with
328 * the value 255 for its first call to this, and keep using the same
329 * @iretry in the subsequent calls until it gets a non -EBUSY return.
330 *
331 * Returns 0 if device now idle, -ENODEV for device not operational,
332 * -EBUSY if an interrupt is expected (either from halt/clear or from a
333 * status pending), and -EIO if out of retries.
334 */
335int cio_cancel_halt_clear(struct subchannel *sch, int *iretry)
336{
337 int ret;
338
339 if (cio_update_schib(sch))
340 return -ENODEV;
341 if (!sch->schib.pmcw.ena)
342 /* Not operational -> done. */
343 return 0;
344 /* Stage 1: cancel io. */
345 if (!(scsw_actl(&sch->schib.scsw) & SCSW_ACTL_HALT_PEND) &&
346 !(scsw_actl(&sch->schib.scsw) & SCSW_ACTL_CLEAR_PEND)) {
347 if (!scsw_is_tm(&sch->schib.scsw)) {
348 ret = cio_cancel(sch);
349 if (ret != -EINVAL)
350 return ret;
351 }
352 /*
353 * Cancel io unsuccessful or not applicable (transport mode).
354 * Continue with asynchronous instructions.
355 */
356 *iretry = 3; /* 3 halt retries. */
357 }
358 /* Stage 2: halt io. */
359 if (!(scsw_actl(&sch->schib.scsw) & SCSW_ACTL_CLEAR_PEND)) {
360 if (*iretry) {
361 *iretry -= 1;
362 ret = cio_halt(sch);
363 if (ret != -EBUSY)
364 return (ret == 0) ? -EBUSY : ret;
365 }
366 /* Halt io unsuccessful. */
367 *iretry = 255; /* 255 clear retries. */
368 }
369 /* Stage 3: clear io. */
370 if (*iretry) {
371 *iretry -= 1;
372 ret = cio_clear(sch);
373 return (ret == 0) ? -EBUSY : ret;
374 }
375 /* Function was unsuccessful */
376 return -EIO;
377}
Dong Jia Shia22217e2017-03-17 04:17:29 +0100378EXPORT_SYMBOL_GPL(cio_cancel_halt_clear);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379
Sebastian Ott13952ec2008-12-25 13:39:13 +0100380static void cio_apply_config(struct subchannel *sch, struct schib *schib)
381{
382 schib->pmcw.intparm = sch->config.intparm;
383 schib->pmcw.mbi = sch->config.mbi;
384 schib->pmcw.isc = sch->config.isc;
385 schib->pmcw.ena = sch->config.ena;
386 schib->pmcw.mme = sch->config.mme;
387 schib->pmcw.mp = sch->config.mp;
388 schib->pmcw.csense = sch->config.csense;
389 schib->pmcw.mbfc = sch->config.mbfc;
390 if (sch->config.mbfc)
391 schib->mba = sch->config.mba;
392}
393
394static int cio_check_config(struct subchannel *sch, struct schib *schib)
395{
396 return (schib->pmcw.intparm == sch->config.intparm) &&
397 (schib->pmcw.mbi == sch->config.mbi) &&
398 (schib->pmcw.isc == sch->config.isc) &&
399 (schib->pmcw.ena == sch->config.ena) &&
400 (schib->pmcw.mme == sch->config.mme) &&
401 (schib->pmcw.mp == sch->config.mp) &&
402 (schib->pmcw.csense == sch->config.csense) &&
403 (schib->pmcw.mbfc == sch->config.mbfc) &&
404 (!sch->config.mbfc || (schib->mba == sch->config.mba));
405}
406
407/*
408 * cio_commit_config - apply configuration to the subchannel
409 */
410int cio_commit_config(struct subchannel *sch)
411{
Sebastian Ott13952ec2008-12-25 13:39:13 +0100412 int ccode, retry, ret = 0;
Sebastian Ott1bc89272014-02-05 13:36:05 +0100413 struct schib schib;
414 struct irb irb;
Sebastian Ott13952ec2008-12-25 13:39:13 +0100415
Peter Oberparleiter62e65da2015-12-18 12:58:47 +0100416 if (stsch(sch->schid, &schib) || !css_sch_is_valid(&schib))
Sebastian Ott13952ec2008-12-25 13:39:13 +0100417 return -ENODEV;
418
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 for (retry = 0; retry < 5; retry++) {
Sebastian Ott13952ec2008-12-25 13:39:13 +0100420 /* copy desired changes to local schib */
421 cio_apply_config(sch, &schib);
Peter Oberparleiter62e65da2015-12-18 12:58:47 +0100422 ccode = msch(sch->schid, &schib);
Sebastian Ott13952ec2008-12-25 13:39:13 +0100423 if (ccode < 0) /* -EIO if msch gets a program check. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 return ccode;
425 switch (ccode) {
Coly Li73ac36e2009-01-07 18:09:16 -0800426 case 0: /* successful */
Peter Oberparleiter62e65da2015-12-18 12:58:47 +0100427 if (stsch(sch->schid, &schib) ||
Sebastian Ott13952ec2008-12-25 13:39:13 +0100428 !css_sch_is_valid(&schib))
429 return -ENODEV;
430 if (cio_check_config(sch, &schib)) {
431 /* commit changes from local schib */
432 memcpy(&sch->schib, &schib, sizeof(schib));
433 return 0;
434 }
435 ret = -EAGAIN;
436 break;
437 case 1: /* status pending */
Sebastian Ott1bc89272014-02-05 13:36:05 +0100438 ret = -EBUSY;
439 if (tsch(sch->schid, &irb))
440 return ret;
441 break;
Sebastian Ott13952ec2008-12-25 13:39:13 +0100442 case 2: /* busy */
443 udelay(100); /* allow for recovery */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 ret = -EBUSY;
445 break;
Sebastian Ott13952ec2008-12-25 13:39:13 +0100446 case 3: /* not operational */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 return -ENODEV;
448 }
449 }
450 return ret;
451}
Dong Jia Shia22217e2017-03-17 04:17:29 +0100452EXPORT_SYMBOL_GPL(cio_commit_config);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453
Cornelia Huck44a1c192008-07-14 09:58:47 +0200454/**
Sebastian Ottcdb912a2008-12-25 13:39:12 +0100455 * cio_update_schib - Perform stsch and update schib if subchannel is valid.
456 * @sch: subchannel on which to perform stsch
457 * Return zero on success, -ENODEV otherwise.
458 */
459int cio_update_schib(struct subchannel *sch)
460{
461 struct schib schib;
462
Peter Oberparleiter62e65da2015-12-18 12:58:47 +0100463 if (stsch(sch->schid, &schib) || !css_sch_is_valid(&schib))
Sebastian Ottcdb912a2008-12-25 13:39:12 +0100464 return -ENODEV;
465
466 memcpy(&sch->schib, &schib, sizeof(schib));
467 return 0;
468}
469EXPORT_SYMBOL_GPL(cio_update_schib);
470
471/**
Cornelia Huck44a1c192008-07-14 09:58:47 +0200472 * cio_enable_subchannel - enable a subchannel.
473 * @sch: subchannel to be enabled
474 * @intparm: interruption parameter to set
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 */
Cornelia Huckedf22092008-04-30 13:38:39 +0200476int cio_enable_subchannel(struct subchannel *sch, u32 intparm)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 int ret;
479
Sebastian Ottefd986d2009-09-11 10:28:18 +0200480 CIO_TRACE_EVENT(2, "ensch");
Kay Sievers2a0217d2008-10-10 21:33:09 +0200481 CIO_TRACE_EVENT(2, dev_name(&sch->dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482
Cornelia Huckd7b5a4c92006-12-08 15:54:28 +0100483 if (sch_is_pseudo_sch(sch))
484 return -EINVAL;
Sebastian Ottcdb912a2008-12-25 13:39:12 +0100485 if (cio_update_schib(sch))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 return -ENODEV;
487
Sebastian Ott13952ec2008-12-25 13:39:13 +0100488 sch->config.ena = 1;
489 sch->config.isc = sch->isc;
490 sch->config.intparm = intparm;
491
Sebastian Ott1bc89272014-02-05 13:36:05 +0100492 ret = cio_commit_config(sch);
493 if (ret == -EIO) {
494 /*
495 * Got a program check in msch. Try without
496 * the concurrent sense bit the next time.
497 */
498 sch->config.csense = 0;
Sebastian Ott13952ec2008-12-25 13:39:13 +0100499 ret = cio_commit_config(sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 }
Sebastian Ottefd986d2009-09-11 10:28:18 +0200501 CIO_HEX_EVENT(2, &ret, sizeof(ret));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 return ret;
503}
Cornelia Huck44a1c192008-07-14 09:58:47 +0200504EXPORT_SYMBOL_GPL(cio_enable_subchannel);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505
Cornelia Huck44a1c192008-07-14 09:58:47 +0200506/**
507 * cio_disable_subchannel - disable a subchannel.
508 * @sch: subchannel to disable
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 */
Cornelia Huck44a1c192008-07-14 09:58:47 +0200510int cio_disable_subchannel(struct subchannel *sch)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 int ret;
513
Sebastian Ottefd986d2009-09-11 10:28:18 +0200514 CIO_TRACE_EVENT(2, "dissch");
Kay Sievers2a0217d2008-10-10 21:33:09 +0200515 CIO_TRACE_EVENT(2, dev_name(&sch->dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516
Cornelia Huckd7b5a4c92006-12-08 15:54:28 +0100517 if (sch_is_pseudo_sch(sch))
518 return 0;
Sebastian Ottcdb912a2008-12-25 13:39:12 +0100519 if (cio_update_schib(sch))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 return -ENODEV;
521
Sebastian Ott13952ec2008-12-25 13:39:13 +0100522 sch->config.ena = 0;
Sebastian Ott1bc89272014-02-05 13:36:05 +0100523 ret = cio_commit_config(sch);
Sebastian Ott13952ec2008-12-25 13:39:13 +0100524
Sebastian Ottefd986d2009-09-11 10:28:18 +0200525 CIO_HEX_EVENT(2, &ret, sizeof(ret));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 return ret;
527}
Cornelia Huck44a1c192008-07-14 09:58:47 +0200528EXPORT_SYMBOL_GPL(cio_disable_subchannel);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529
Cornelia Huckb3a686f2008-07-14 09:58:48 +0200530static int cio_check_devno_blacklisted(struct subchannel *sch)
Cornelia Huck0ae7a7b2008-07-14 09:58:43 +0200531{
Cornelia Huck0ae7a7b2008-07-14 09:58:43 +0200532 if (is_blacklisted(sch->schid.ssid, sch->schib.pmcw.dev)) {
533 /*
534 * This device must not be known to Linux. So we simply
535 * say that there is no device and return ENODEV.
536 */
537 CIO_MSG_EVENT(6, "Blacklisted device detected "
538 "at devno %04X, subchannel set %x\n",
539 sch->schib.pmcw.dev, sch->schid.ssid);
540 return -ENODEV;
541 }
542 return 0;
543}
544
545/**
546 * cio_validate_subchannel - basic validation of subchannel
547 * @sch: subchannel structure to be filled out
548 * @schid: subchannel id
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 *
550 * Find out subchannel type and initialize struct subchannel.
551 * Return codes:
Cornelia Huck0ae7a7b2008-07-14 09:58:43 +0200552 * 0 on success
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 * -ENXIO for non-defined subchannels
Cornelia Huck0ae7a7b2008-07-14 09:58:43 +0200554 * -ENODEV for invalid subchannels or blacklisted devices
555 * -EIO for subchannels in an invalid subchannel set
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 */
Cornelia Huck0ae7a7b2008-07-14 09:58:43 +0200557int cio_validate_subchannel(struct subchannel *sch, struct subchannel_id schid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558{
559 char dbf_txt[15];
560 int ccode;
Cornelia Huck2ec22982006-12-08 15:54:26 +0100561 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562
Cornelia Huck0ae7a7b2008-07-14 09:58:43 +0200563 sprintf(dbf_txt, "valsch%x", schid.sch_no);
564 CIO_TRACE_EVENT(4, dbf_txt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 /*
567 * The first subchannel that is not-operational (ccode==3)
Sebastian Otte5dcf002013-04-13 13:08:01 +0200568 * indicates that there aren't any more devices available.
Cornelia Huckfb6958a2006-01-06 00:19:25 -0800569 * If stsch gets an exception, it means the current subchannel set
Sebastian Otte5dcf002013-04-13 13:08:01 +0200570 * is not valid.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 */
Peter Oberparleiter62e65da2015-12-18 12:58:47 +0100572 ccode = stsch(schid, &sch->schib);
Cornelia Huck2ec22982006-12-08 15:54:26 +0100573 if (ccode) {
574 err = (ccode == 3) ? -ENXIO : ccode;
575 goto out;
576 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 sch->st = sch->schib.pmcw.st;
Sebastian Otte5dcf002013-04-13 13:08:01 +0200578 sch->schid = schid;
Cornelia Huckc820de32008-07-14 09:58:45 +0200579
Cornelia Huck0ae7a7b2008-07-14 09:58:43 +0200580 switch (sch->st) {
581 case SUBCHANNEL_TYPE_IO:
Cornelia Huckb3a686f2008-07-14 09:58:48 +0200582 case SUBCHANNEL_TYPE_MSG:
Pierre Morele510f682015-10-26 11:13:18 +0100583 if (!css_sch_is_valid(&sch->schib))
584 err = -ENODEV;
585 else
586 err = cio_check_devno_blacklisted(sch);
Cornelia Huckb3a686f2008-07-14 09:58:48 +0200587 break;
Cornelia Huck0ae7a7b2008-07-14 09:58:43 +0200588 default:
589 err = 0;
590 }
591 if (err)
Cornelia Huck2ec22982006-12-08 15:54:26 +0100592 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593
Cornelia Huck0ae7a7b2008-07-14 09:58:43 +0200594 CIO_MSG_EVENT(4, "Subchannel 0.%x.%04x reports subchannel type %04X\n",
595 sch->schid.ssid, sch->schid.sch_no, sch->st);
Cornelia Huck2ec22982006-12-08 15:54:26 +0100596out:
Cornelia Huck2ec22982006-12-08 15:54:26 +0100597 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598}
599
600/*
Martin Schwidefsky1f44a2252013-06-27 09:01:09 +0200601 * do_cio_interrupt() handles all normal I/O device IRQ's
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 */
Martin Schwidefsky1f44a2252013-06-27 09:01:09 +0200603static irqreturn_t do_cio_interrupt(int irq, void *dummy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604{
Martin Schwidefsky1f44a2252013-06-27 09:01:09 +0200605 struct tpi_info *tpi_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 struct subchannel *sch;
607 struct irb *irb;
608
Martin Schwidefskyfe0f4972014-09-30 17:37:52 +0200609 set_cpu_flag(CIF_NOHZ_DELAY);
Martin Schwidefsky1f44a2252013-06-27 09:01:09 +0200610 tpi_info = (struct tpi_info *) &get_irq_regs()->int_code;
Peter Oberparleiter42248972015-12-18 12:59:36 +0100611 trace_s390_cio_interrupt(tpi_info);
Christoph Lameter0bf7fcf2014-08-17 12:30:46 -0500612 irb = this_cpu_ptr(&cio_irb);
Martin Schwidefsky48f6b002013-06-17 14:54:02 +0200613 sch = (struct subchannel *)(unsigned long) tpi_info->intparm;
614 if (!sch) {
615 /* Clear pending interrupt condition. */
616 inc_irq_stat(IRQIO_CIO);
617 tsch(tpi_info->schid, irb);
Martin Schwidefsky1f44a2252013-06-27 09:01:09 +0200618 return IRQ_HANDLED;
Martin Schwidefsky48f6b002013-06-17 14:54:02 +0200619 }
620 spin_lock(sch->lock);
621 /* Store interrupt response block to lowcore. */
622 if (tsch(tpi_info->schid, irb) == 0) {
623 /* Keep subchannel information word up to date. */
624 memcpy (&sch->schib.scsw, &irb->scsw, sizeof (irb->scsw));
625 /* Call interrupt handler if there is one. */
626 if (sch->driver && sch->driver->irq)
627 sch->driver->irq(sch);
628 else
Heiko Carstens420f42e2013-01-02 15:18:18 +0100629 inc_irq_stat(IRQIO_CIO);
Martin Schwidefsky48f6b002013-06-17 14:54:02 +0200630 } else
631 inc_irq_stat(IRQIO_CIO);
632 spin_unlock(sch->lock);
Martin Schwidefsky1f44a2252013-06-27 09:01:09 +0200633
634 return IRQ_HANDLED;
635}
636
Martin Schwidefsky1f44a2252013-06-27 09:01:09 +0200637static struct irqaction io_interrupt = {
638 .name = "IO",
639 .handler = do_cio_interrupt,
640};
641
642void __init init_cio_interrupts(void)
643{
644 irq_set_chip_and_handler(IO_INTERRUPT,
645 &dummy_irq_chip, handle_percpu_irq);
646 setup_irq(IO_INTERRUPT, &io_interrupt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647}
648
649#ifdef CONFIG_CCW_CONSOLE
Sebastian Ott863fc842013-04-13 13:01:50 +0200650static struct subchannel *console_sch;
Sebastian Ottdbe33fc92014-06-03 15:03:09 +0200651static struct lock_class_key console_sch_key;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652
Heiko Carstens191fd442008-12-25 13:39:01 +0100653/*
Martin Schwidefskyb603d252012-05-09 16:27:36 +0200654 * Use cio_tsch to update the subchannel status and call the interrupt handler
Sebastian Ott188561a2013-04-13 12:53:21 +0200655 * if status had been pending. Called with the subchannel's lock held.
Heiko Carstens191fd442008-12-25 13:39:01 +0100656 */
Sebastian Ott188561a2013-04-13 12:53:21 +0200657void cio_tsch(struct subchannel *sch)
Heiko Carstens191fd442008-12-25 13:39:01 +0100658{
Heiko Carstens191fd442008-12-25 13:39:01 +0100659 struct irb *irb;
660 int irq_context;
661
Christoph Lameter0bf7fcf2014-08-17 12:30:46 -0500662 irb = this_cpu_ptr(&cio_irb);
Heiko Carstens191fd442008-12-25 13:39:01 +0100663 /* Store interrupt response block to lowcore. */
Martin Schwidefskyb603d252012-05-09 16:27:36 +0200664 if (tsch(sch->schid, irb) != 0)
Heiko Carstens191fd442008-12-25 13:39:01 +0100665 /* Not status pending or not operational. */
Martin Schwidefskyb603d252012-05-09 16:27:36 +0200666 return;
Heiko Carstens191fd442008-12-25 13:39:01 +0100667 memcpy(&sch->schib.scsw, &irb->scsw, sizeof(union scsw));
Martin Schwidefskyb603d252012-05-09 16:27:36 +0200668 /* Call interrupt handler with updated status. */
669 irq_context = in_interrupt();
670 if (!irq_context) {
671 local_bh_disable();
672 irq_enter();
673 }
Thomas Gleixnerbc5dfcf2014-02-23 21:40:17 +0000674 kstat_incr_irq_this_cpu(IO_INTERRUPT);
Heiko Carstens191fd442008-12-25 13:39:01 +0100675 if (sch->driver && sch->driver->irq)
676 sch->driver->irq(sch);
Peter Oberparleiterde400d62011-10-30 15:16:04 +0100677 else
Heiko Carstens420f42e2013-01-02 15:18:18 +0100678 inc_irq_stat(IRQIO_CIO);
Martin Schwidefskyb603d252012-05-09 16:27:36 +0200679 if (!irq_context) {
680 irq_exit();
Heiko Carstens191fd442008-12-25 13:39:01 +0100681 _local_bh_enable();
Martin Schwidefskyb603d252012-05-09 16:27:36 +0200682 }
Heiko Carstens191fd442008-12-25 13:39:01 +0100683}
684
Sebastian Ott863fc842013-04-13 13:01:50 +0200685static int cio_test_for_console(struct subchannel_id schid, void *data)
Cornelia Huckcd6b4f22008-01-26 14:10:43 +0100686{
Sebastian Ott863fc842013-04-13 13:01:50 +0200687 struct schib schib;
Cornelia Huckcd6b4f22008-01-26 14:10:43 +0100688
Peter Oberparleiter62e65da2015-12-18 12:58:47 +0100689 if (stsch(schid, &schib) != 0)
Cornelia Huckf97a56f2006-01-06 00:19:22 -0800690 return -ENXIO;
Sebastian Ott863fc842013-04-13 13:01:50 +0200691 if ((schib.pmcw.st == SUBCHANNEL_TYPE_IO) && schib.pmcw.dnv &&
692 (schib.pmcw.dev == console_devno)) {
Cornelia Huckf97a56f2006-01-06 00:19:22 -0800693 console_irq = schid.sch_no;
694 return 1; /* found */
695 }
696 return 0;
697}
698
Sebastian Ott863fc842013-04-13 13:01:50 +0200699static int cio_get_console_sch_no(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700{
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800701 struct subchannel_id schid;
Sebastian Ott863fc842013-04-13 13:01:50 +0200702 struct schib schib;
703
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800704 init_subchannel_id(&schid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 if (console_irq != -1) {
706 /* VM provided us with the irq number of the console. */
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800707 schid.sch_no = console_irq;
Peter Oberparleiter62e65da2015-12-18 12:58:47 +0100708 if (stsch(schid, &schib) != 0 ||
Sebastian Ott863fc842013-04-13 13:01:50 +0200709 (schib.pmcw.st != SUBCHANNEL_TYPE_IO) || !schib.pmcw.dnv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 return -1;
Sebastian Ott863fc842013-04-13 13:01:50 +0200711 console_devno = schib.pmcw.dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 } else if (console_devno != -1) {
713 /* At least the console device number is known. */
Cornelia Huckf97a56f2006-01-06 00:19:22 -0800714 for_each_subchannel(cio_test_for_console, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 }
716 return console_irq;
717}
718
Sebastian Ott863fc842013-04-13 13:01:50 +0200719struct subchannel *cio_probe_console(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720{
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800721 struct subchannel_id schid;
Sebastian Ott863fc842013-04-13 13:01:50 +0200722 struct subchannel *sch;
723 int sch_no, ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724
Cornelia Huckf97a56f2006-01-06 00:19:22 -0800725 sch_no = cio_get_console_sch_no();
726 if (sch_no == -1) {
Joe Perchesbaebc702016-03-03 20:49:57 -0800727 pr_warn("No CCW console was found\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 return ERR_PTR(-ENODEV);
729 }
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800730 init_subchannel_id(&schid);
Cornelia Huckf97a56f2006-01-06 00:19:22 -0800731 schid.sch_no = sch_no;
Sebastian Ott863fc842013-04-13 13:01:50 +0200732 sch = css_alloc_subchannel(schid);
733 if (IS_ERR(sch))
734 return sch;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735
Sebastian Ottdbe33fc92014-06-03 15:03:09 +0200736 lockdep_set_class(sch->lock, &console_sch_key);
Cornelia Huck6ef556c2008-07-14 09:59:01 +0200737 isc_register(CONSOLE_ISC);
Sebastian Ott863fc842013-04-13 13:01:50 +0200738 sch->config.isc = CONSOLE_ISC;
739 sch->config.intparm = (u32)(addr_t)sch;
740 ret = cio_commit_config(sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 if (ret) {
Cornelia Huck6ef556c2008-07-14 09:59:01 +0200742 isc_unregister(CONSOLE_ISC);
Sebastian Ott863fc842013-04-13 13:01:50 +0200743 put_device(&sch->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 return ERR_PTR(ret);
745 }
Sebastian Ott863fc842013-04-13 13:01:50 +0200746 console_sch = sch;
747 return sch;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748}
749
Sebastian Ott863fc842013-04-13 13:01:50 +0200750int cio_is_console(struct subchannel_id schid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751{
Sebastian Ott863fc842013-04-13 13:01:50 +0200752 if (!console_sch)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 return 0;
Sebastian Ott863fc842013-04-13 13:01:50 +0200754 return schid_equal(&schid, &console_sch->schid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755}
756
Sebastian Ott14556b32013-04-13 13:03:54 +0200757void cio_register_early_subchannels(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758{
Sebastian Ott14556b32013-04-13 13:03:54 +0200759 int ret;
760
761 if (!console_sch)
762 return;
763
764 ret = css_register_subchannel(console_sch);
765 if (ret)
766 put_device(&console_sch->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767}
Sebastian Ott863fc842013-04-13 13:01:50 +0200768#endif /* CONFIG_CCW_CONSOLE */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769
Heiko Carstens4d284ca2007-02-05 21:18:53 +0100770static int
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800771__disable_subchannel_easy(struct subchannel_id schid, struct schib *schib)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772{
773 int retry, cc;
774
775 cc = 0;
776 for (retry=0;retry<3;retry++) {
777 schib->pmcw.ena = 0;
Peter Oberparleiter62e65da2015-12-18 12:58:47 +0100778 cc = msch(schid, schib);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 if (cc)
780 return (cc==3?-ENODEV:-EBUSY);
Peter Oberparleiter62e65da2015-12-18 12:58:47 +0100781 if (stsch(schid, schib) || !css_sch_is_valid(schib))
Sebastian Ottcdb912a2008-12-25 13:39:12 +0100782 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 if (!schib->pmcw.ena)
784 return 0;
785 }
786 return -EBUSY; /* uhm... */
787}
788
Heiko Carstens4d284ca2007-02-05 21:18:53 +0100789static int
Cornelia Huck0ae7a7b2008-07-14 09:58:43 +0200790__clear_io_subchannel_easy(struct subchannel_id schid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791{
792 int retry;
793
794 if (csch(schid))
795 return -ENODEV;
796 for (retry=0;retry<20;retry++) {
797 struct tpi_info ti;
798
799 if (tpi(&ti)) {
Christoph Lameter0bf7fcf2014-08-17 12:30:46 -0500800 tsch(ti.schid, this_cpu_ptr(&cio_irb));
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800801 if (schid_equal(&ti.schid, &schid))
Cornelia Huck4c24da72005-09-03 15:58:01 -0700802 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 }
Heiko Carstens5a0d0e62008-10-10 21:33:22 +0200804 udelay_simple(100);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 }
806 return -EBUSY;
807}
808
Cornelia Huck9d92a7e2008-07-14 09:59:05 +0200809static void __clear_chsc_subchannel_easy(void)
810{
811 /* It seems we can only wait for a bit here :/ */
Heiko Carstens5a0d0e62008-10-10 21:33:22 +0200812 udelay_simple(100);
Cornelia Huck9d92a7e2008-07-14 09:59:05 +0200813}
814
Michael Holzheua45e1412006-12-15 17:18:22 +0100815static int pgm_check_occured;
816
817static void cio_reset_pgm_check_handler(void)
818{
819 pgm_check_occured = 1;
820}
821
Peter Oberparleiterf9c9fe32008-10-10 21:33:15 +0200822static int stsch_reset(struct subchannel_id schid, struct schib *addr)
Michael Holzheua45e1412006-12-15 17:18:22 +0100823{
824 int rc;
825
826 pgm_check_occured = 0;
Heiko Carstensab14de62007-02-05 21:18:37 +0100827 s390_base_pgm_handler_fn = cio_reset_pgm_check_handler;
Peter Oberparleiter62e65da2015-12-18 12:58:47 +0100828 rc = stsch(schid, addr);
Heiko Carstensab14de62007-02-05 21:18:37 +0100829 s390_base_pgm_handler_fn = NULL;
Heiko Carstens6faf4442007-01-09 10:18:41 +0100830
Heiko Carstensab14de62007-02-05 21:18:37 +0100831 /* The program check handler could have changed pgm_check_occured. */
Heiko Carstens6faf4442007-01-09 10:18:41 +0100832 barrier();
833
Michael Holzheua45e1412006-12-15 17:18:22 +0100834 if (pgm_check_occured)
835 return -EIO;
836 else
837 return rc;
838}
839
Heiko Carstens15e9b582006-12-04 15:40:26 +0100840static int __shutdown_subchannel_easy(struct subchannel_id schid, void *data)
Cornelia Huckf97a56f2006-01-06 00:19:22 -0800841{
842 struct schib schib;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843
Michael Holzheua45e1412006-12-15 17:18:22 +0100844 if (stsch_reset(schid, &schib))
Cornelia Huckf97a56f2006-01-06 00:19:22 -0800845 return -ENXIO;
846 if (!schib.pmcw.ena)
847 return 0;
848 switch(__disable_subchannel_easy(schid, &schib)) {
849 case 0:
850 case -ENODEV:
851 break;
852 default: /* -EBUSY */
Cornelia Huck0ae7a7b2008-07-14 09:58:43 +0200853 switch (schib.pmcw.st) {
854 case SUBCHANNEL_TYPE_IO:
855 if (__clear_io_subchannel_easy(schid))
856 goto out; /* give up... */
857 break;
Cornelia Huck9d92a7e2008-07-14 09:59:05 +0200858 case SUBCHANNEL_TYPE_CHSC:
859 __clear_chsc_subchannel_easy();
860 break;
Cornelia Huck0ae7a7b2008-07-14 09:58:43 +0200861 default:
862 /* No default clear strategy */
863 break;
864 }
Peter Oberparleiter62e65da2015-12-18 12:58:47 +0100865 stsch(schid, &schib);
Cornelia Huckf97a56f2006-01-06 00:19:22 -0800866 __disable_subchannel_easy(schid, &schib);
867 }
Cornelia Huck0ae7a7b2008-07-14 09:58:43 +0200868out:
Cornelia Huckf97a56f2006-01-06 00:19:22 -0800869 return 0;
870}
871
Heiko Carstens15e9b582006-12-04 15:40:26 +0100872static atomic_t chpid_reset_count;
873
874static void s390_reset_chpids_mcck_handler(void)
875{
876 struct crw crw;
Heiko Carstensdc6e1552015-10-12 13:00:39 +0200877 union mci mci;
Heiko Carstens15e9b582006-12-04 15:40:26 +0100878
879 /* Check for pending channel report word. */
Heiko Carstensdc6e1552015-10-12 13:00:39 +0200880 mci.val = S390_lowcore.mcck_interruption_code;
881 if (!mci.cp)
Heiko Carstens15e9b582006-12-04 15:40:26 +0100882 return;
883 /* Process channel report words. */
884 while (stcrw(&crw) == 0) {
885 /* Check for responses to RCHP. */
886 if (crw.slct && crw.rsc == CRW_RSC_CPATH)
887 atomic_dec(&chpid_reset_count);
888 }
889}
890
891#define RCHP_TIMEOUT (30 * USEC_PER_SEC)
892static void css_reset(void)
893{
894 int i, ret;
895 unsigned long long timeout;
Peter Oberparleiterf86635f2007-04-27 16:01:26 +0200896 struct chp_id chpid;
Heiko Carstens15e9b582006-12-04 15:40:26 +0100897
898 /* Reset subchannels. */
899 for_each_subchannel(__shutdown_subchannel_easy, NULL);
900 /* Reset channel paths. */
Heiko Carstensab14de62007-02-05 21:18:37 +0100901 s390_base_mcck_handler_fn = s390_reset_chpids_mcck_handler;
Heiko Carstens15e9b582006-12-04 15:40:26 +0100902 /* Enable channel report machine checks. */
903 __ctl_set_bit(14, 28);
904 /* Temporarily reenable machine checks. */
905 local_mcck_enable();
Peter Oberparleiterf86635f2007-04-27 16:01:26 +0200906 chp_id_init(&chpid);
Heiko Carstens15e9b582006-12-04 15:40:26 +0100907 for (i = 0; i <= __MAX_CHPID; i++) {
Peter Oberparleiterf86635f2007-04-27 16:01:26 +0200908 chpid.id = i;
909 ret = rchp(chpid);
Heiko Carstens15e9b582006-12-04 15:40:26 +0100910 if ((ret == 0) || (ret == 2))
911 /*
912 * rchp either succeeded, or another rchp is already
913 * in progress. In either case, we'll get a crw.
914 */
915 atomic_inc(&chpid_reset_count);
916 }
917 /* Wait for machine check for all channel paths. */
Martin Schwidefsky8c071b02013-10-17 12:38:17 +0200918 timeout = get_tod_clock_fast() + (RCHP_TIMEOUT << 12);
Heiko Carstens15e9b582006-12-04 15:40:26 +0100919 while (atomic_read(&chpid_reset_count) != 0) {
Martin Schwidefsky8c071b02013-10-17 12:38:17 +0200920 if (get_tod_clock_fast() > timeout)
Heiko Carstens15e9b582006-12-04 15:40:26 +0100921 break;
922 cpu_relax();
923 }
924 /* Disable machine checks again. */
925 local_mcck_disable();
926 /* Disable channel report machine checks. */
927 __ctl_clear_bit(14, 28);
Heiko Carstensab14de62007-02-05 21:18:37 +0100928 s390_base_mcck_handler_fn = NULL;
Heiko Carstens15e9b582006-12-04 15:40:26 +0100929}
930
931static struct reset_call css_reset_call = {
932 .fn = css_reset,
933};
934
935static int __init init_css_reset_call(void)
936{
937 atomic_set(&chpid_reset_count, 0);
938 register_reset_call(&css_reset_call);
939 return 0;
940}
941
942arch_initcall(init_css_reset_call);
943
944struct sch_match_id {
945 struct subchannel_id schid;
946 struct ccw_dev_id devid;
947 int rc;
948};
949
950static int __reipl_subchannel_match(struct subchannel_id schid, void *data)
951{
952 struct schib schib;
953 struct sch_match_id *match_id = data;
954
Michael Holzheua45e1412006-12-15 17:18:22 +0100955 if (stsch_reset(schid, &schib))
Heiko Carstens15e9b582006-12-04 15:40:26 +0100956 return -ENXIO;
Cornelia Huckb279a4f2008-01-26 14:10:45 +0100957 if ((schib.pmcw.st == SUBCHANNEL_TYPE_IO) && schib.pmcw.dnv &&
Heiko Carstens15e9b582006-12-04 15:40:26 +0100958 (schib.pmcw.dev == match_id->devid.devno) &&
959 (schid.ssid == match_id->devid.ssid)) {
960 match_id->schid = schid;
961 match_id->rc = 0;
962 return 1;
963 }
964 return 0;
965}
966
967static int reipl_find_schid(struct ccw_dev_id *devid,
968 struct subchannel_id *schid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969{
Michael Holzheuff6b8ea2006-09-20 15:58:49 +0200970 struct sch_match_id match_id;
971
972 match_id.devid = *devid;
973 match_id.rc = -ENODEV;
Heiko Carstens15e9b582006-12-04 15:40:26 +0100974 for_each_subchannel(__reipl_subchannel_match, &match_id);
Michael Holzheuff6b8ea2006-09-20 15:58:49 +0200975 if (match_id.rc == 0)
976 *schid = match_id.schid;
977 return match_id.rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978}
979
Michael Holzheuff6b8ea2006-09-20 15:58:49 +0200980extern void do_reipl_asm(__u32 schid);
981
982/* Make sure all subchannels are quiet before we re-ipl an lpar. */
983void reipl_ccw_dev(struct ccw_dev_id *devid)
984{
Heiko Carstens41459d32012-09-14 11:09:52 +0200985 struct subchannel_id uninitialized_var(schid);
Michael Holzheuff6b8ea2006-09-20 15:58:49 +0200986
Martin Schwidefsky1a36a392015-10-29 10:28:26 +0100987 s390_reset_system();
Heiko Carstens15e9b582006-12-04 15:40:26 +0100988 if (reipl_find_schid(devid, &schid) != 0)
Michael Holzheuff6b8ea2006-09-20 15:58:49 +0200989 panic("IPL Device not found\n");
Michael Holzheuff6b8ea2006-09-20 15:58:49 +0200990 do_reipl_asm(*((__u32*)&schid));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991}
Heiko Carstense87bfe52006-09-20 15:59:15 +0200992
Heiko Carstens6fc321f2007-04-27 16:01:25 +0200993int __init cio_get_iplinfo(struct cio_iplinfo *iplinfo)
Heiko Carstense87bfe52006-09-20 15:59:15 +0200994{
Sebastian Ott18e22a12015-06-29 18:39:54 +0200995 static struct chsc_sda_area sda_area __initdata;
Heiko Carstense87bfe52006-09-20 15:59:15 +0200996 struct subchannel_id schid;
Heiko Carstens6fc321f2007-04-27 16:01:25 +0200997 struct schib schib;
Heiko Carstense87bfe52006-09-20 15:59:15 +0200998
Heiko Carstenscbb870c2010-02-26 22:37:43 +0100999 schid = *(struct subchannel_id *)&S390_lowcore.subchannel_id;
Heiko Carstense87bfe52006-09-20 15:59:15 +02001000 if (!schid.one)
Heiko Carstens6fc321f2007-04-27 16:01:25 +02001001 return -ENODEV;
Sebastian Ott18e22a12015-06-29 18:39:54 +02001002
1003 if (schid.ssid) {
1004 /*
1005 * Firmware should have already enabled MSS but whoever started
1006 * the kernel might have initiated a channel subsystem reset.
1007 * Ensure that MSS is enabled.
1008 */
1009 memset(&sda_area, 0, sizeof(sda_area));
1010 if (__chsc_enable_facility(&sda_area, CHSC_SDA_OC_MSS))
1011 return -ENODEV;
1012 }
Peter Oberparleiter62e65da2015-12-18 12:58:47 +01001013 if (stsch(schid, &schib))
Heiko Carstens6fc321f2007-04-27 16:01:25 +02001014 return -ENODEV;
Cornelia Huckb279a4f2008-01-26 14:10:45 +01001015 if (schib.pmcw.st != SUBCHANNEL_TYPE_IO)
1016 return -ENODEV;
Heiko Carstens6fc321f2007-04-27 16:01:25 +02001017 if (!schib.pmcw.dnv)
1018 return -ENODEV;
Sebastian Ott18e22a12015-06-29 18:39:54 +02001019
1020 iplinfo->ssid = schid.ssid;
Heiko Carstens6fc321f2007-04-27 16:01:25 +02001021 iplinfo->devno = schib.pmcw.dev;
1022 iplinfo->is_qdio = schib.pmcw.qf;
1023 return 0;
Heiko Carstense87bfe52006-09-20 15:59:15 +02001024}
Peter Oberparleiter83262d62008-07-14 09:58:51 +02001025
1026/**
1027 * cio_tm_start_key - perform start function
1028 * @sch: subchannel on which to perform the start function
1029 * @tcw: transport-command word to be started
1030 * @lpm: mask of paths to use
1031 * @key: storage key to use for storage access
1032 *
1033 * Start the tcw on the given subchannel. Return zero on success, non-zero
1034 * otherwise.
1035 */
1036int cio_tm_start_key(struct subchannel *sch, struct tcw *tcw, u8 lpm, u8 key)
1037{
1038 int cc;
1039 union orb *orb = &to_io_private(sch)->orb;
1040
1041 memset(orb, 0, sizeof(union orb));
1042 orb->tm.intparm = (u32) (addr_t) sch;
1043 orb->tm.key = key >> 4;
1044 orb->tm.b = 1;
1045 orb->tm.lpm = lpm ? lpm : sch->lpm;
1046 orb->tm.tcw = (u32) (addr_t) tcw;
1047 cc = ssch(sch->schid, orb);
1048 switch (cc) {
1049 case 0:
1050 return 0;
1051 case 1:
1052 case 2:
1053 return -EBUSY;
1054 default:
1055 return cio_start_handle_notoper(sch, lpm);
1056 }
1057}
Dong Jia Shia22217e2017-03-17 04:17:29 +01001058EXPORT_SYMBOL_GPL(cio_tm_start_key);
Peter Oberparleiter83262d62008-07-14 09:58:51 +02001059
1060/**
1061 * cio_tm_intrg - perform interrogate function
1062 * @sch - subchannel on which to perform the interrogate function
1063 *
1064 * If the specified subchannel is running in transport-mode, perform the
1065 * interrogate function. Return zero on success, non-zero otherwie.
1066 */
1067int cio_tm_intrg(struct subchannel *sch)
1068{
1069 int cc;
1070
1071 if (!to_io_private(sch)->orb.tm.b)
1072 return -EINVAL;
1073 cc = xsch(sch->schid);
1074 switch (cc) {
1075 case 0:
1076 case 2:
1077 return 0;
1078 case 1:
1079 return -EBUSY;
1080 default:
1081 return -ENODEV;
1082 }
1083}
Dong Jia Shia22217e2017-03-17 04:17:29 +01001084EXPORT_SYMBOL_GPL(cio_tm_intrg);