blob: 10eb738fc81a88e4e510be25e7fa69b0f32463df [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * S/390 common I/O routines -- low level i/o calls
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
Heiko Carstensa53c8fa2012-07-20 11:15:04 +02004 * Copyright IBM Corp. 1999, 2008
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 * Author(s): Ingo Adlung (adlung@de.ibm.com)
Cornelia Huck4ce3b302006-01-14 13:21:04 -08006 * Cornelia Huck (cornelia.huck@de.ibm.com)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * Arnd Bergmann (arndb@de.ibm.com)
8 * Martin Schwidefsky (schwidefsky@de.ibm.com)
9 */
10
Michael Ernste6d5a422008-12-25 13:39:36 +010011#define KMSG_COMPONENT "cio"
12#define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
13
Heiko Carstens88dbd202009-06-12 10:26:46 +020014#include <linux/ftrace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/init.h>
17#include <linux/slab.h>
18#include <linux/device.h>
19#include <linux/kernel_stat.h>
20#include <linux/interrupt.h>
Thomas Gleixner257ceab2014-03-04 23:57:29 +010021#include <linux/irq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <asm/cio.h>
23#include <asm/delay.h>
24#include <asm/irq.h>
Heiko Carstens5a489b92006-10-06 16:38:35 +020025#include <asm/irq_regs.h>
Heiko Carstense87bfe52006-09-20 15:59:15 +020026#include <asm/setup.h>
Heiko Carstens15e9b582006-12-04 15:40:26 +010027#include <asm/reset.h>
Michael Holzheu46b05d22007-02-21 10:55:21 +010028#include <asm/ipl.h>
Peter Oberparleitere5854a52007-04-27 16:01:31 +020029#include <asm/chpid.h>
Peter Oberparleiter4e8e56c2008-01-26 14:10:44 +010030#include <asm/airq.h>
Cornelia Huck3a3fc292008-07-14 09:58:58 +020031#include <asm/isc.h>
Frederic Weisbeckerbfc3f022014-03-05 16:33:42 +010032#include <linux/cputime.h>
Peter Oberparleiter83262d62008-07-14 09:58:51 +020033#include <asm/fcx.h>
Heiko Carstensf5daba12009-03-26 15:24:01 +010034#include <asm/nmi.h>
35#include <asm/crw.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include "cio.h"
37#include "css.h"
38#include "chsc.h"
39#include "ioasm.h"
Cornelia Huckcd6b4f22008-01-26 14:10:43 +010040#include "io_sch.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include "blacklist.h"
42#include "cio_debug.h"
Peter Oberparleitere6b6e102007-04-27 16:01:28 +020043#include "chp.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
45debug_info_t *cio_debug_msg_id;
46debug_info_t *cio_debug_trace_id;
47debug_info_t *cio_debug_crw_id;
48
Martin Schwidefsky63aef002014-05-27 14:40:39 +020049DEFINE_PER_CPU_ALIGNED(struct irb, cio_irb);
50EXPORT_PER_CPU_SYMBOL(cio_irb);
51
Linus Torvalds1da177e2005-04-16 15:20:36 -070052/*
53 * Function: cio_debug_init
Cornelia Huckbc698bc2008-01-26 14:10:42 +010054 * Initializes three debug logs for common I/O:
55 * - cio_msg logs generic cio messages
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 * - cio_trace logs the calling of different functions
Cornelia Huckbc698bc2008-01-26 14:10:42 +010057 * - cio_crw logs machine check related cio messages
Linus Torvalds1da177e2005-04-16 15:20:36 -070058 */
Cornelia Huckbc698bc2008-01-26 14:10:42 +010059static int __init cio_debug_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070060{
Sebastian Ottf7e1e652014-02-17 11:16:10 +010061 cio_debug_msg_id = debug_register("cio_msg", 16, 1, 11 * sizeof(long));
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 if (!cio_debug_msg_id)
63 goto out_unregister;
Cornelia Huckbc698bc2008-01-26 14:10:42 +010064 debug_register_view(cio_debug_msg_id, &debug_sprintf_view);
65 debug_set_level(cio_debug_msg_id, 2);
Peter Tiedemann361f4942008-01-26 14:11:30 +010066 cio_debug_trace_id = debug_register("cio_trace", 16, 1, 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 if (!cio_debug_trace_id)
68 goto out_unregister;
Cornelia Huckbc698bc2008-01-26 14:10:42 +010069 debug_register_view(cio_debug_trace_id, &debug_hex_ascii_view);
70 debug_set_level(cio_debug_trace_id, 2);
Sebastian Ottf7e1e652014-02-17 11:16:10 +010071 cio_debug_crw_id = debug_register("cio_crw", 8, 1, 8 * sizeof(long));
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 if (!cio_debug_crw_id)
73 goto out_unregister;
Cornelia Huckbc698bc2008-01-26 14:10:42 +010074 debug_register_view(cio_debug_crw_id, &debug_sprintf_view);
75 debug_set_level(cio_debug_crw_id, 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 return 0;
77
78out_unregister:
79 if (cio_debug_msg_id)
Cornelia Huckbc698bc2008-01-26 14:10:42 +010080 debug_unregister(cio_debug_msg_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 if (cio_debug_trace_id)
Cornelia Huckbc698bc2008-01-26 14:10:42 +010082 debug_unregister(cio_debug_trace_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 if (cio_debug_crw_id)
Cornelia Huckbc698bc2008-01-26 14:10:42 +010084 debug_unregister(cio_debug_crw_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 return -1;
86}
87
88arch_initcall (cio_debug_init);
89
Sebastian Ottc513d072011-03-15 17:08:25 +010090int cio_set_options(struct subchannel *sch, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -070091{
Sebastian Ottc513d072011-03-15 17:08:25 +010092 struct io_subchannel_private *priv = to_io_private(sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
Sebastian Ottc513d072011-03-15 17:08:25 +010094 priv->options.suspend = (flags & DOIO_ALLOW_SUSPEND) != 0;
95 priv->options.prefetch = (flags & DOIO_DENY_PREFETCH) != 0;
96 priv->options.inter = (flags & DOIO_SUPPRESS_INTER) != 0;
97 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070098}
99
Heiko Carstens4d284ca2007-02-05 21:18:53 +0100100static int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101cio_start_handle_notoper(struct subchannel *sch, __u8 lpm)
102{
103 char dbf_text[15];
104
105 if (lpm != 0)
106 sch->lpm &= ~lpm;
107 else
108 sch->lpm = 0;
109
Michael Ernst139b83d2008-05-07 09:22:54 +0200110 CIO_MSG_EVENT(2, "cio_start: 'not oper' status for "
Cornelia Huckfb6958a2006-01-06 00:19:25 -0800111 "subchannel 0.%x.%04x!\n", sch->schid.ssid,
112 sch->schid.sch_no);
Sebastian Ottcdb912a2008-12-25 13:39:12 +0100113
114 if (cio_update_schib(sch))
115 return -ENODEV;
116
Kay Sievers2a0217d2008-10-10 21:33:09 +0200117 sprintf(dbf_text, "no%s", dev_name(&sch->dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 CIO_TRACE_EVENT(0, dbf_text);
119 CIO_HEX_EVENT(0, &sch->schib, sizeof (struct schib));
120
121 return (sch->lpm ? -EACCES : -ENODEV);
122}
123
124int
125cio_start_key (struct subchannel *sch, /* subchannel structure */
126 struct ccw1 * cpa, /* logical channel prog addr */
127 __u8 lpm, /* logical path mask */
128 __u8 key) /* storage key */
129{
Sebastian Ottc513d072011-03-15 17:08:25 +0100130 struct io_subchannel_private *priv = to_io_private(sch);
131 union orb *orb = &priv->orb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 int ccode;
133
Sebastian Ottefd986d2009-09-11 10:28:18 +0200134 CIO_TRACE_EVENT(5, "stIO");
135 CIO_TRACE_EVENT(5, dev_name(&sch->dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136
Stefan Weinhuber9adb8c12008-09-16 09:32:19 -0700137 memset(orb, 0, sizeof(union orb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 /* sch is always under 2G. */
Peter Oberparleiter83262d62008-07-14 09:58:51 +0200139 orb->cmd.intparm = (u32)(addr_t)sch;
140 orb->cmd.fmt = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141
Sebastian Ottc513d072011-03-15 17:08:25 +0100142 orb->cmd.pfch = priv->options.prefetch == 0;
143 orb->cmd.spnd = priv->options.suspend;
144 orb->cmd.ssic = priv->options.suspend && priv->options.inter;
Peter Oberparleiter83262d62008-07-14 09:58:51 +0200145 orb->cmd.lpm = (lpm != 0) ? lpm : sch->lpm;
Martin Schwidefsky347a8dc2006-01-06 00:19:28 -0800146#ifdef CONFIG_64BIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 /*
148 * for 64 bit we always support 64 bit IDAWs with 4k page size only
149 */
Peter Oberparleiter83262d62008-07-14 09:58:51 +0200150 orb->cmd.c64 = 1;
151 orb->cmd.i2k = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152#endif
Peter Oberparleiter83262d62008-07-14 09:58:51 +0200153 orb->cmd.key = key >> 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 /* issue "Start Subchannel" */
Peter Oberparleiter83262d62008-07-14 09:58:51 +0200155 orb->cmd.cpa = (__u32) __pa(cpa);
Cornelia Huckcd6b4f22008-01-26 14:10:43 +0100156 ccode = ssch(sch->schid, orb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157
158 /* process condition code */
Sebastian Ottefd986d2009-09-11 10:28:18 +0200159 CIO_HEX_EVENT(5, &ccode, sizeof(ccode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
161 switch (ccode) {
162 case 0:
163 /*
164 * initialize device status information
165 */
Peter Oberparleiter23d805b2008-07-14 09:58:50 +0200166 sch->schib.scsw.cmd.actl |= SCSW_ACTL_START_PEND;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 return 0;
168 case 1: /* status pending */
169 case 2: /* busy */
170 return -EBUSY;
Cornelia Huckc91ebe42008-09-09 12:38:58 +0200171 case 3: /* device/path not operational */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 return cio_start_handle_notoper(sch, lpm);
Cornelia Huckc91ebe42008-09-09 12:38:58 +0200173 default:
174 return ccode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 }
176}
177
178int
179cio_start (struct subchannel *sch, struct ccw1 *cpa, __u8 lpm)
180{
Peter Oberparleiter0b642ed2005-05-01 08:58:58 -0700181 return cio_start_key(sch, cpa, lpm, PAGE_DEFAULT_KEY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182}
183
184/*
185 * resume suspended I/O operation
186 */
187int
188cio_resume (struct subchannel *sch)
189{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 int ccode;
191
Sebastian Ottefd986d2009-09-11 10:28:18 +0200192 CIO_TRACE_EVENT(4, "resIO");
Kay Sievers2a0217d2008-10-10 21:33:09 +0200193 CIO_TRACE_EVENT(4, dev_name(&sch->dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800195 ccode = rsch (sch->schid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196
Sebastian Ottefd986d2009-09-11 10:28:18 +0200197 CIO_HEX_EVENT(4, &ccode, sizeof(ccode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198
199 switch (ccode) {
200 case 0:
Peter Oberparleiter23d805b2008-07-14 09:58:50 +0200201 sch->schib.scsw.cmd.actl |= SCSW_ACTL_RESUME_PEND;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 return 0;
203 case 1:
204 return -EBUSY;
205 case 2:
206 return -EINVAL;
207 default:
208 /*
209 * useless to wait for request completion
210 * as device is no longer operational !
211 */
212 return -ENODEV;
213 }
214}
215
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 Oberparleiter23d805b2008-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}
248
249/*
250 * Clear I/O operation
251 */
252int
253cio_clear(struct subchannel *sch)
254{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 int ccode;
256
257 if (!sch)
258 return -ENODEV;
259
Sebastian Ottefd986d2009-09-11 10:28:18 +0200260 CIO_TRACE_EVENT(2, "clearIO");
Kay Sievers2a0217d2008-10-10 21:33:09 +0200261 CIO_TRACE_EVENT(2, dev_name(&sch->dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262
263 /*
264 * Issue "Clear subchannel" and process condition code
265 */
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800266 ccode = csch (sch->schid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267
Sebastian Ottefd986d2009-09-11 10:28:18 +0200268 CIO_HEX_EVENT(2, &ccode, sizeof(ccode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269
270 switch (ccode) {
271 case 0:
Peter Oberparleiter23d805b2008-07-14 09:58:50 +0200272 sch->schib.scsw.cmd.actl |= SCSW_ACTL_CLEAR_PEND;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 return 0;
274 default: /* device not operational */
275 return -ENODEV;
276 }
277}
278
279/*
280 * Function: cio_cancel
281 * Issues a "Cancel Subchannel" on the specified subchannel
282 * Note: We don't need any fancy intparms and flags here
283 * since xsch is executed synchronously.
284 * Only for common I/O internal use as for now.
285 */
286int
287cio_cancel (struct subchannel *sch)
288{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 int ccode;
290
291 if (!sch)
292 return -ENODEV;
293
Sebastian Ottefd986d2009-09-11 10:28:18 +0200294 CIO_TRACE_EVENT(2, "cancelIO");
Kay Sievers2a0217d2008-10-10 21:33:09 +0200295 CIO_TRACE_EVENT(2, dev_name(&sch->dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800297 ccode = xsch (sch->schid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298
Sebastian Ottefd986d2009-09-11 10:28:18 +0200299 CIO_HEX_EVENT(2, &ccode, sizeof(ccode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300
301 switch (ccode) {
302 case 0: /* success */
303 /* Update information in scsw. */
Sebastian Ottcdb912a2008-12-25 13:39:12 +0100304 if (cio_update_schib(sch))
305 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 return 0;
307 case 1: /* status pending */
308 return -EBUSY;
309 case 2: /* not applicable */
310 return -EINVAL;
311 default: /* not oper */
312 return -ENODEV;
313 }
314}
315
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316
Sebastian Ott13952ec2008-12-25 13:39:13 +0100317static void cio_apply_config(struct subchannel *sch, struct schib *schib)
318{
319 schib->pmcw.intparm = sch->config.intparm;
320 schib->pmcw.mbi = sch->config.mbi;
321 schib->pmcw.isc = sch->config.isc;
322 schib->pmcw.ena = sch->config.ena;
323 schib->pmcw.mme = sch->config.mme;
324 schib->pmcw.mp = sch->config.mp;
325 schib->pmcw.csense = sch->config.csense;
326 schib->pmcw.mbfc = sch->config.mbfc;
327 if (sch->config.mbfc)
328 schib->mba = sch->config.mba;
329}
330
331static int cio_check_config(struct subchannel *sch, struct schib *schib)
332{
333 return (schib->pmcw.intparm == sch->config.intparm) &&
334 (schib->pmcw.mbi == sch->config.mbi) &&
335 (schib->pmcw.isc == sch->config.isc) &&
336 (schib->pmcw.ena == sch->config.ena) &&
337 (schib->pmcw.mme == sch->config.mme) &&
338 (schib->pmcw.mp == sch->config.mp) &&
339 (schib->pmcw.csense == sch->config.csense) &&
340 (schib->pmcw.mbfc == sch->config.mbfc) &&
341 (!sch->config.mbfc || (schib->mba == sch->config.mba));
342}
343
344/*
345 * cio_commit_config - apply configuration to the subchannel
346 */
347int cio_commit_config(struct subchannel *sch)
348{
Sebastian Ott13952ec2008-12-25 13:39:13 +0100349 int ccode, retry, ret = 0;
Sebastian Ott1bc89272014-02-05 13:36:05 +0100350 struct schib schib;
351 struct irb irb;
Sebastian Ott13952ec2008-12-25 13:39:13 +0100352
Sebastian Ott8821d242010-04-22 17:17:05 +0200353 if (stsch_err(sch->schid, &schib) || !css_sch_is_valid(&schib))
Sebastian Ott13952ec2008-12-25 13:39:13 +0100354 return -ENODEV;
355
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 for (retry = 0; retry < 5; retry++) {
Sebastian Ott13952ec2008-12-25 13:39:13 +0100357 /* copy desired changes to local schib */
358 cio_apply_config(sch, &schib);
359 ccode = msch_err(sch->schid, &schib);
360 if (ccode < 0) /* -EIO if msch gets a program check. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 return ccode;
362 switch (ccode) {
Coly Li73ac36e2009-01-07 18:09:16 -0800363 case 0: /* successful */
Sebastian Ott8821d242010-04-22 17:17:05 +0200364 if (stsch_err(sch->schid, &schib) ||
Sebastian Ott13952ec2008-12-25 13:39:13 +0100365 !css_sch_is_valid(&schib))
366 return -ENODEV;
367 if (cio_check_config(sch, &schib)) {
368 /* commit changes from local schib */
369 memcpy(&sch->schib, &schib, sizeof(schib));
370 return 0;
371 }
372 ret = -EAGAIN;
373 break;
374 case 1: /* status pending */
Sebastian Ott1bc89272014-02-05 13:36:05 +0100375 ret = -EBUSY;
376 if (tsch(sch->schid, &irb))
377 return ret;
378 break;
Sebastian Ott13952ec2008-12-25 13:39:13 +0100379 case 2: /* busy */
380 udelay(100); /* allow for recovery */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 ret = -EBUSY;
382 break;
Sebastian Ott13952ec2008-12-25 13:39:13 +0100383 case 3: /* not operational */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 return -ENODEV;
385 }
386 }
387 return ret;
388}
389
Cornelia Huck44a1c192008-07-14 09:58:47 +0200390/**
Sebastian Ottcdb912a2008-12-25 13:39:12 +0100391 * cio_update_schib - Perform stsch and update schib if subchannel is valid.
392 * @sch: subchannel on which to perform stsch
393 * Return zero on success, -ENODEV otherwise.
394 */
395int cio_update_schib(struct subchannel *sch)
396{
397 struct schib schib;
398
Sebastian Ott8821d242010-04-22 17:17:05 +0200399 if (stsch_err(sch->schid, &schib) || !css_sch_is_valid(&schib))
Sebastian Ottcdb912a2008-12-25 13:39:12 +0100400 return -ENODEV;
401
402 memcpy(&sch->schib, &schib, sizeof(schib));
403 return 0;
404}
405EXPORT_SYMBOL_GPL(cio_update_schib);
406
407/**
Cornelia Huck44a1c192008-07-14 09:58:47 +0200408 * cio_enable_subchannel - enable a subchannel.
409 * @sch: subchannel to be enabled
410 * @intparm: interruption parameter to set
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 */
Cornelia Huckedf22092008-04-30 13:38:39 +0200412int cio_enable_subchannel(struct subchannel *sch, u32 intparm)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 int ret;
415
Sebastian Ottefd986d2009-09-11 10:28:18 +0200416 CIO_TRACE_EVENT(2, "ensch");
Kay Sievers2a0217d2008-10-10 21:33:09 +0200417 CIO_TRACE_EVENT(2, dev_name(&sch->dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418
Cornelia Huckd7b5a4c92006-12-08 15:54:28 +0100419 if (sch_is_pseudo_sch(sch))
420 return -EINVAL;
Sebastian Ottcdb912a2008-12-25 13:39:12 +0100421 if (cio_update_schib(sch))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 return -ENODEV;
423
Sebastian Ott13952ec2008-12-25 13:39:13 +0100424 sch->config.ena = 1;
425 sch->config.isc = sch->isc;
426 sch->config.intparm = intparm;
427
Sebastian Ott1bc89272014-02-05 13:36:05 +0100428 ret = cio_commit_config(sch);
429 if (ret == -EIO) {
430 /*
431 * Got a program check in msch. Try without
432 * the concurrent sense bit the next time.
433 */
434 sch->config.csense = 0;
Sebastian Ott13952ec2008-12-25 13:39:13 +0100435 ret = cio_commit_config(sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 }
Sebastian Ottefd986d2009-09-11 10:28:18 +0200437 CIO_HEX_EVENT(2, &ret, sizeof(ret));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 return ret;
439}
Cornelia Huck44a1c192008-07-14 09:58:47 +0200440EXPORT_SYMBOL_GPL(cio_enable_subchannel);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441
Cornelia Huck44a1c192008-07-14 09:58:47 +0200442/**
443 * cio_disable_subchannel - disable a subchannel.
444 * @sch: subchannel to disable
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 */
Cornelia Huck44a1c192008-07-14 09:58:47 +0200446int cio_disable_subchannel(struct subchannel *sch)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 int ret;
449
Sebastian Ottefd986d2009-09-11 10:28:18 +0200450 CIO_TRACE_EVENT(2, "dissch");
Kay Sievers2a0217d2008-10-10 21:33:09 +0200451 CIO_TRACE_EVENT(2, dev_name(&sch->dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452
Cornelia Huckd7b5a4c92006-12-08 15:54:28 +0100453 if (sch_is_pseudo_sch(sch))
454 return 0;
Sebastian Ottcdb912a2008-12-25 13:39:12 +0100455 if (cio_update_schib(sch))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 return -ENODEV;
457
Sebastian Ott13952ec2008-12-25 13:39:13 +0100458 sch->config.ena = 0;
Sebastian Ott1bc89272014-02-05 13:36:05 +0100459 ret = cio_commit_config(sch);
Sebastian Ott13952ec2008-12-25 13:39:13 +0100460
Sebastian Ottefd986d2009-09-11 10:28:18 +0200461 CIO_HEX_EVENT(2, &ret, sizeof(ret));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 return ret;
463}
Cornelia Huck44a1c192008-07-14 09:58:47 +0200464EXPORT_SYMBOL_GPL(cio_disable_subchannel);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465
Cornelia Huckb3a686f2008-07-14 09:58:48 +0200466static int cio_check_devno_blacklisted(struct subchannel *sch)
Cornelia Huck0ae7a7b2008-07-14 09:58:43 +0200467{
Cornelia Huck0ae7a7b2008-07-14 09:58:43 +0200468 if (is_blacklisted(sch->schid.ssid, sch->schib.pmcw.dev)) {
469 /*
470 * This device must not be known to Linux. So we simply
471 * say that there is no device and return ENODEV.
472 */
473 CIO_MSG_EVENT(6, "Blacklisted device detected "
474 "at devno %04X, subchannel set %x\n",
475 sch->schib.pmcw.dev, sch->schid.ssid);
476 return -ENODEV;
477 }
478 return 0;
479}
480
Cornelia Huckb3a686f2008-07-14 09:58:48 +0200481static int cio_validate_io_subchannel(struct subchannel *sch)
482{
483 /* Initialization for io subchannels. */
484 if (!css_sch_is_valid(&sch->schib))
485 return -ENODEV;
486
487 /* Devno is valid. */
488 return cio_check_devno_blacklisted(sch);
489}
490
491static int cio_validate_msg_subchannel(struct subchannel *sch)
492{
493 /* Initialization for message subchannels. */
494 if (!css_sch_is_valid(&sch->schib))
495 return -ENODEV;
496
497 /* Devno is valid. */
498 return cio_check_devno_blacklisted(sch);
499}
500
Cornelia Huck0ae7a7b2008-07-14 09:58:43 +0200501/**
502 * cio_validate_subchannel - basic validation of subchannel
503 * @sch: subchannel structure to be filled out
504 * @schid: subchannel id
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 *
506 * Find out subchannel type and initialize struct subchannel.
507 * Return codes:
Cornelia Huck0ae7a7b2008-07-14 09:58:43 +0200508 * 0 on success
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 * -ENXIO for non-defined subchannels
Cornelia Huck0ae7a7b2008-07-14 09:58:43 +0200510 * -ENODEV for invalid subchannels or blacklisted devices
511 * -EIO for subchannels in an invalid subchannel set
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 */
Cornelia Huck0ae7a7b2008-07-14 09:58:43 +0200513int cio_validate_subchannel(struct subchannel *sch, struct subchannel_id schid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514{
515 char dbf_txt[15];
516 int ccode;
Cornelia Huck2ec22982006-12-08 15:54:26 +0100517 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518
Cornelia Huck0ae7a7b2008-07-14 09:58:43 +0200519 sprintf(dbf_txt, "valsch%x", schid.sch_no);
520 CIO_TRACE_EVENT(4, dbf_txt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 /*
523 * The first subchannel that is not-operational (ccode==3)
Sebastian Otte5dcf002013-04-13 13:08:01 +0200524 * indicates that there aren't any more devices available.
Cornelia Huckfb6958a2006-01-06 00:19:25 -0800525 * If stsch gets an exception, it means the current subchannel set
Sebastian Otte5dcf002013-04-13 13:08:01 +0200526 * is not valid.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 */
Sebastian Otte5dcf002013-04-13 13:08:01 +0200528 ccode = stsch_err(schid, &sch->schib);
Cornelia Huck2ec22982006-12-08 15:54:26 +0100529 if (ccode) {
530 err = (ccode == 3) ? -ENXIO : ccode;
531 goto out;
532 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 sch->st = sch->schib.pmcw.st;
Sebastian Otte5dcf002013-04-13 13:08:01 +0200534 sch->schid = schid;
Cornelia Huckc820de32008-07-14 09:58:45 +0200535
Cornelia Huck0ae7a7b2008-07-14 09:58:43 +0200536 switch (sch->st) {
537 case SUBCHANNEL_TYPE_IO:
538 err = cio_validate_io_subchannel(sch);
539 break;
Cornelia Huckb3a686f2008-07-14 09:58:48 +0200540 case SUBCHANNEL_TYPE_MSG:
541 err = cio_validate_msg_subchannel(sch);
542 break;
Cornelia Huck0ae7a7b2008-07-14 09:58:43 +0200543 default:
544 err = 0;
545 }
546 if (err)
Cornelia Huck2ec22982006-12-08 15:54:26 +0100547 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548
Cornelia Huck0ae7a7b2008-07-14 09:58:43 +0200549 CIO_MSG_EVENT(4, "Subchannel 0.%x.%04x reports subchannel type %04X\n",
550 sch->schid.ssid, sch->schid.sch_no, sch->st);
Cornelia Huck2ec22982006-12-08 15:54:26 +0100551out:
Cornelia Huck2ec22982006-12-08 15:54:26 +0100552 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553}
554
555/*
Martin Schwidefsky1f44a222013-06-27 09:01:09 +0200556 * do_cio_interrupt() handles all normal I/O device IRQ's
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 */
Martin Schwidefsky1f44a222013-06-27 09:01:09 +0200558static irqreturn_t do_cio_interrupt(int irq, void *dummy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559{
Martin Schwidefsky1f44a222013-06-27 09:01:09 +0200560 struct tpi_info *tpi_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 struct subchannel *sch;
562 struct irb *irb;
563
Martin Schwidefskyfe0f4972014-09-30 17:37:52 +0200564 set_cpu_flag(CIF_NOHZ_DELAY);
Martin Schwidefsky1f44a222013-06-27 09:01:09 +0200565 tpi_info = (struct tpi_info *) &get_irq_regs()->int_code;
Christoph Lameter0bf7fcf2014-08-17 12:30:46 -0500566 irb = this_cpu_ptr(&cio_irb);
Martin Schwidefsky48f6b002013-06-17 14:54:02 +0200567 sch = (struct subchannel *)(unsigned long) tpi_info->intparm;
568 if (!sch) {
569 /* Clear pending interrupt condition. */
570 inc_irq_stat(IRQIO_CIO);
571 tsch(tpi_info->schid, irb);
Martin Schwidefsky1f44a222013-06-27 09:01:09 +0200572 return IRQ_HANDLED;
Martin Schwidefsky48f6b002013-06-17 14:54:02 +0200573 }
574 spin_lock(sch->lock);
575 /* Store interrupt response block to lowcore. */
576 if (tsch(tpi_info->schid, irb) == 0) {
577 /* Keep subchannel information word up to date. */
578 memcpy (&sch->schib.scsw, &irb->scsw, sizeof (irb->scsw));
579 /* Call interrupt handler if there is one. */
580 if (sch->driver && sch->driver->irq)
581 sch->driver->irq(sch);
582 else
Heiko Carstens420f42e2013-01-02 15:18:18 +0100583 inc_irq_stat(IRQIO_CIO);
Martin Schwidefsky48f6b002013-06-17 14:54:02 +0200584 } else
585 inc_irq_stat(IRQIO_CIO);
586 spin_unlock(sch->lock);
Martin Schwidefsky1f44a222013-06-27 09:01:09 +0200587
588 return IRQ_HANDLED;
589}
590
Martin Schwidefsky1f44a222013-06-27 09:01:09 +0200591static struct irqaction io_interrupt = {
592 .name = "IO",
593 .handler = do_cio_interrupt,
594};
595
596void __init init_cio_interrupts(void)
597{
598 irq_set_chip_and_handler(IO_INTERRUPT,
599 &dummy_irq_chip, handle_percpu_irq);
600 setup_irq(IO_INTERRUPT, &io_interrupt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601}
602
603#ifdef CONFIG_CCW_CONSOLE
Sebastian Ott863fc842013-04-13 13:01:50 +0200604static struct subchannel *console_sch;
Sebastian Ottdbe33fc2014-06-03 15:03:09 +0200605static struct lock_class_key console_sch_key;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606
Heiko Carstens191fd442008-12-25 13:39:01 +0100607/*
Martin Schwidefskyb603d252012-05-09 16:27:36 +0200608 * Use cio_tsch to update the subchannel status and call the interrupt handler
Sebastian Ott188561a2013-04-13 12:53:21 +0200609 * if status had been pending. Called with the subchannel's lock held.
Heiko Carstens191fd442008-12-25 13:39:01 +0100610 */
Sebastian Ott188561a2013-04-13 12:53:21 +0200611void cio_tsch(struct subchannel *sch)
Heiko Carstens191fd442008-12-25 13:39:01 +0100612{
Heiko Carstens191fd442008-12-25 13:39:01 +0100613 struct irb *irb;
614 int irq_context;
615
Christoph Lameter0bf7fcf2014-08-17 12:30:46 -0500616 irb = this_cpu_ptr(&cio_irb);
Heiko Carstens191fd442008-12-25 13:39:01 +0100617 /* Store interrupt response block to lowcore. */
Martin Schwidefskyb603d252012-05-09 16:27:36 +0200618 if (tsch(sch->schid, irb) != 0)
Heiko Carstens191fd442008-12-25 13:39:01 +0100619 /* Not status pending or not operational. */
Martin Schwidefskyb603d252012-05-09 16:27:36 +0200620 return;
Heiko Carstens191fd442008-12-25 13:39:01 +0100621 memcpy(&sch->schib.scsw, &irb->scsw, sizeof(union scsw));
Martin Schwidefskyb603d252012-05-09 16:27:36 +0200622 /* Call interrupt handler with updated status. */
623 irq_context = in_interrupt();
624 if (!irq_context) {
625 local_bh_disable();
626 irq_enter();
627 }
Thomas Gleixnerbc5dfcf2014-02-23 21:40:17 +0000628 kstat_incr_irq_this_cpu(IO_INTERRUPT);
Heiko Carstens191fd442008-12-25 13:39:01 +0100629 if (sch->driver && sch->driver->irq)
630 sch->driver->irq(sch);
Peter Oberparleiterde400d62011-10-30 15:16:04 +0100631 else
Heiko Carstens420f42e2013-01-02 15:18:18 +0100632 inc_irq_stat(IRQIO_CIO);
Martin Schwidefskyb603d252012-05-09 16:27:36 +0200633 if (!irq_context) {
634 irq_exit();
Heiko Carstens191fd442008-12-25 13:39:01 +0100635 _local_bh_enable();
Martin Schwidefskyb603d252012-05-09 16:27:36 +0200636 }
Heiko Carstens191fd442008-12-25 13:39:01 +0100637}
638
Sebastian Ott863fc842013-04-13 13:01:50 +0200639static int cio_test_for_console(struct subchannel_id schid, void *data)
Cornelia Huckcd6b4f22008-01-26 14:10:43 +0100640{
Sebastian Ott863fc842013-04-13 13:01:50 +0200641 struct schib schib;
Cornelia Huckcd6b4f22008-01-26 14:10:43 +0100642
Sebastian Ott863fc842013-04-13 13:01:50 +0200643 if (stsch_err(schid, &schib) != 0)
Cornelia Huckf97a56f2006-01-06 00:19:22 -0800644 return -ENXIO;
Sebastian Ott863fc842013-04-13 13:01:50 +0200645 if ((schib.pmcw.st == SUBCHANNEL_TYPE_IO) && schib.pmcw.dnv &&
646 (schib.pmcw.dev == console_devno)) {
Cornelia Huckf97a56f2006-01-06 00:19:22 -0800647 console_irq = schid.sch_no;
648 return 1; /* found */
649 }
650 return 0;
651}
652
Sebastian Ott863fc842013-04-13 13:01:50 +0200653static int cio_get_console_sch_no(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654{
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800655 struct subchannel_id schid;
Sebastian Ott863fc842013-04-13 13:01:50 +0200656 struct schib schib;
657
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800658 init_subchannel_id(&schid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 if (console_irq != -1) {
660 /* VM provided us with the irq number of the console. */
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800661 schid.sch_no = console_irq;
Sebastian Ott863fc842013-04-13 13:01:50 +0200662 if (stsch_err(schid, &schib) != 0 ||
663 (schib.pmcw.st != SUBCHANNEL_TYPE_IO) || !schib.pmcw.dnv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 return -1;
Sebastian Ott863fc842013-04-13 13:01:50 +0200665 console_devno = schib.pmcw.dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 } else if (console_devno != -1) {
667 /* At least the console device number is known. */
Cornelia Huckf97a56f2006-01-06 00:19:22 -0800668 for_each_subchannel(cio_test_for_console, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 }
670 return console_irq;
671}
672
Sebastian Ott863fc842013-04-13 13:01:50 +0200673struct subchannel *cio_probe_console(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674{
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800675 struct subchannel_id schid;
Sebastian Ott863fc842013-04-13 13:01:50 +0200676 struct subchannel *sch;
677 int sch_no, ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678
Cornelia Huckf97a56f2006-01-06 00:19:22 -0800679 sch_no = cio_get_console_sch_no();
680 if (sch_no == -1) {
Michael Ernste6d5a422008-12-25 13:39:36 +0100681 pr_warning("No CCW console was found\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 return ERR_PTR(-ENODEV);
683 }
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800684 init_subchannel_id(&schid);
Cornelia Huckf97a56f2006-01-06 00:19:22 -0800685 schid.sch_no = sch_no;
Sebastian Ott863fc842013-04-13 13:01:50 +0200686 sch = css_alloc_subchannel(schid);
687 if (IS_ERR(sch))
688 return sch;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689
Sebastian Ottdbe33fc2014-06-03 15:03:09 +0200690 lockdep_set_class(sch->lock, &console_sch_key);
Cornelia Huck6ef556cc2008-07-14 09:59:01 +0200691 isc_register(CONSOLE_ISC);
Sebastian Ott863fc842013-04-13 13:01:50 +0200692 sch->config.isc = CONSOLE_ISC;
693 sch->config.intparm = (u32)(addr_t)sch;
694 ret = cio_commit_config(sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 if (ret) {
Cornelia Huck6ef556cc2008-07-14 09:59:01 +0200696 isc_unregister(CONSOLE_ISC);
Sebastian Ott863fc842013-04-13 13:01:50 +0200697 put_device(&sch->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 return ERR_PTR(ret);
699 }
Sebastian Ott863fc842013-04-13 13:01:50 +0200700 console_sch = sch;
701 return sch;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702}
703
Sebastian Ott863fc842013-04-13 13:01:50 +0200704int cio_is_console(struct subchannel_id schid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705{
Sebastian Ott863fc842013-04-13 13:01:50 +0200706 if (!console_sch)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 return 0;
Sebastian Ott863fc842013-04-13 13:01:50 +0200708 return schid_equal(&schid, &console_sch->schid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709}
710
Sebastian Ott14556b32013-04-13 13:03:54 +0200711void cio_register_early_subchannels(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712{
Sebastian Ott14556b32013-04-13 13:03:54 +0200713 int ret;
714
715 if (!console_sch)
716 return;
717
718 ret = css_register_subchannel(console_sch);
719 if (ret)
720 put_device(&console_sch->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721}
Sebastian Ott863fc842013-04-13 13:01:50 +0200722#endif /* CONFIG_CCW_CONSOLE */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723
Heiko Carstens4d284ca2007-02-05 21:18:53 +0100724static int
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800725__disable_subchannel_easy(struct subchannel_id schid, struct schib *schib)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726{
727 int retry, cc;
728
729 cc = 0;
730 for (retry=0;retry<3;retry++) {
731 schib->pmcw.ena = 0;
Sebastian Ott8821d242010-04-22 17:17:05 +0200732 cc = msch_err(schid, schib);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 if (cc)
734 return (cc==3?-ENODEV:-EBUSY);
Sebastian Ott8821d242010-04-22 17:17:05 +0200735 if (stsch_err(schid, schib) || !css_sch_is_valid(schib))
Sebastian Ottcdb912a2008-12-25 13:39:12 +0100736 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 if (!schib->pmcw.ena)
738 return 0;
739 }
740 return -EBUSY; /* uhm... */
741}
742
Heiko Carstens4d284ca2007-02-05 21:18:53 +0100743static int
Cornelia Huck0ae7a7b2008-07-14 09:58:43 +0200744__clear_io_subchannel_easy(struct subchannel_id schid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745{
746 int retry;
747
748 if (csch(schid))
749 return -ENODEV;
750 for (retry=0;retry<20;retry++) {
751 struct tpi_info ti;
752
753 if (tpi(&ti)) {
Christoph Lameter0bf7fcf2014-08-17 12:30:46 -0500754 tsch(ti.schid, this_cpu_ptr(&cio_irb));
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800755 if (schid_equal(&ti.schid, &schid))
Cornelia Huck4c24da72005-09-03 15:58:01 -0700756 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 }
Heiko Carstens5a0d0e62008-10-10 21:33:22 +0200758 udelay_simple(100);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 }
760 return -EBUSY;
761}
762
Cornelia Huck9d92a7e2008-07-14 09:59:05 +0200763static void __clear_chsc_subchannel_easy(void)
764{
765 /* It seems we can only wait for a bit here :/ */
Heiko Carstens5a0d0e62008-10-10 21:33:22 +0200766 udelay_simple(100);
Cornelia Huck9d92a7e2008-07-14 09:59:05 +0200767}
768
Michael Holzheua45e1412006-12-15 17:18:22 +0100769static int pgm_check_occured;
770
771static void cio_reset_pgm_check_handler(void)
772{
773 pgm_check_occured = 1;
774}
775
Peter Oberparleiterf9c9fe32008-10-10 21:33:15 +0200776static int stsch_reset(struct subchannel_id schid, struct schib *addr)
Michael Holzheua45e1412006-12-15 17:18:22 +0100777{
778 int rc;
779
780 pgm_check_occured = 0;
Heiko Carstensab14de62007-02-05 21:18:37 +0100781 s390_base_pgm_handler_fn = cio_reset_pgm_check_handler;
Sebastian Ott8821d242010-04-22 17:17:05 +0200782 rc = stsch_err(schid, addr);
Heiko Carstensab14de62007-02-05 21:18:37 +0100783 s390_base_pgm_handler_fn = NULL;
Heiko Carstens6faf4442007-01-09 10:18:41 +0100784
Heiko Carstensab14de62007-02-05 21:18:37 +0100785 /* The program check handler could have changed pgm_check_occured. */
Heiko Carstens6faf4442007-01-09 10:18:41 +0100786 barrier();
787
Michael Holzheua45e1412006-12-15 17:18:22 +0100788 if (pgm_check_occured)
789 return -EIO;
790 else
791 return rc;
792}
793
Heiko Carstens15e9b582006-12-04 15:40:26 +0100794static int __shutdown_subchannel_easy(struct subchannel_id schid, void *data)
Cornelia Huckf97a56f2006-01-06 00:19:22 -0800795{
796 struct schib schib;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797
Michael Holzheua45e1412006-12-15 17:18:22 +0100798 if (stsch_reset(schid, &schib))
Cornelia Huckf97a56f2006-01-06 00:19:22 -0800799 return -ENXIO;
800 if (!schib.pmcw.ena)
801 return 0;
802 switch(__disable_subchannel_easy(schid, &schib)) {
803 case 0:
804 case -ENODEV:
805 break;
806 default: /* -EBUSY */
Cornelia Huck0ae7a7b2008-07-14 09:58:43 +0200807 switch (schib.pmcw.st) {
808 case SUBCHANNEL_TYPE_IO:
809 if (__clear_io_subchannel_easy(schid))
810 goto out; /* give up... */
811 break;
Cornelia Huck9d92a7e2008-07-14 09:59:05 +0200812 case SUBCHANNEL_TYPE_CHSC:
813 __clear_chsc_subchannel_easy();
814 break;
Cornelia Huck0ae7a7b2008-07-14 09:58:43 +0200815 default:
816 /* No default clear strategy */
817 break;
818 }
Sebastian Ott8821d242010-04-22 17:17:05 +0200819 stsch_err(schid, &schib);
Cornelia Huckf97a56f2006-01-06 00:19:22 -0800820 __disable_subchannel_easy(schid, &schib);
821 }
Cornelia Huck0ae7a7b2008-07-14 09:58:43 +0200822out:
Cornelia Huckf97a56f2006-01-06 00:19:22 -0800823 return 0;
824}
825
Heiko Carstens15e9b582006-12-04 15:40:26 +0100826static atomic_t chpid_reset_count;
827
828static void s390_reset_chpids_mcck_handler(void)
829{
830 struct crw crw;
831 struct mci *mci;
832
833 /* Check for pending channel report word. */
834 mci = (struct mci *)&S390_lowcore.mcck_interruption_code;
835 if (!mci->cp)
836 return;
837 /* Process channel report words. */
838 while (stcrw(&crw) == 0) {
839 /* Check for responses to RCHP. */
840 if (crw.slct && crw.rsc == CRW_RSC_CPATH)
841 atomic_dec(&chpid_reset_count);
842 }
843}
844
845#define RCHP_TIMEOUT (30 * USEC_PER_SEC)
846static void css_reset(void)
847{
848 int i, ret;
849 unsigned long long timeout;
Peter Oberparleiterf86635f2007-04-27 16:01:26 +0200850 struct chp_id chpid;
Heiko Carstens15e9b582006-12-04 15:40:26 +0100851
852 /* Reset subchannels. */
853 for_each_subchannel(__shutdown_subchannel_easy, NULL);
854 /* Reset channel paths. */
Heiko Carstensab14de62007-02-05 21:18:37 +0100855 s390_base_mcck_handler_fn = s390_reset_chpids_mcck_handler;
Heiko Carstens15e9b582006-12-04 15:40:26 +0100856 /* Enable channel report machine checks. */
857 __ctl_set_bit(14, 28);
858 /* Temporarily reenable machine checks. */
859 local_mcck_enable();
Peter Oberparleiterf86635f2007-04-27 16:01:26 +0200860 chp_id_init(&chpid);
Heiko Carstens15e9b582006-12-04 15:40:26 +0100861 for (i = 0; i <= __MAX_CHPID; i++) {
Peter Oberparleiterf86635f2007-04-27 16:01:26 +0200862 chpid.id = i;
863 ret = rchp(chpid);
Heiko Carstens15e9b582006-12-04 15:40:26 +0100864 if ((ret == 0) || (ret == 2))
865 /*
866 * rchp either succeeded, or another rchp is already
867 * in progress. In either case, we'll get a crw.
868 */
869 atomic_inc(&chpid_reset_count);
870 }
871 /* Wait for machine check for all channel paths. */
Martin Schwidefsky8c071b02013-10-17 12:38:17 +0200872 timeout = get_tod_clock_fast() + (RCHP_TIMEOUT << 12);
Heiko Carstens15e9b582006-12-04 15:40:26 +0100873 while (atomic_read(&chpid_reset_count) != 0) {
Martin Schwidefsky8c071b02013-10-17 12:38:17 +0200874 if (get_tod_clock_fast() > timeout)
Heiko Carstens15e9b582006-12-04 15:40:26 +0100875 break;
876 cpu_relax();
877 }
878 /* Disable machine checks again. */
879 local_mcck_disable();
880 /* Disable channel report machine checks. */
881 __ctl_clear_bit(14, 28);
Heiko Carstensab14de62007-02-05 21:18:37 +0100882 s390_base_mcck_handler_fn = NULL;
Heiko Carstens15e9b582006-12-04 15:40:26 +0100883}
884
885static struct reset_call css_reset_call = {
886 .fn = css_reset,
887};
888
889static int __init init_css_reset_call(void)
890{
891 atomic_set(&chpid_reset_count, 0);
892 register_reset_call(&css_reset_call);
893 return 0;
894}
895
896arch_initcall(init_css_reset_call);
897
898struct sch_match_id {
899 struct subchannel_id schid;
900 struct ccw_dev_id devid;
901 int rc;
902};
903
904static int __reipl_subchannel_match(struct subchannel_id schid, void *data)
905{
906 struct schib schib;
907 struct sch_match_id *match_id = data;
908
Michael Holzheua45e1412006-12-15 17:18:22 +0100909 if (stsch_reset(schid, &schib))
Heiko Carstens15e9b582006-12-04 15:40:26 +0100910 return -ENXIO;
Cornelia Huckb279a4f2008-01-26 14:10:45 +0100911 if ((schib.pmcw.st == SUBCHANNEL_TYPE_IO) && schib.pmcw.dnv &&
Heiko Carstens15e9b582006-12-04 15:40:26 +0100912 (schib.pmcw.dev == match_id->devid.devno) &&
913 (schid.ssid == match_id->devid.ssid)) {
914 match_id->schid = schid;
915 match_id->rc = 0;
916 return 1;
917 }
918 return 0;
919}
920
921static int reipl_find_schid(struct ccw_dev_id *devid,
922 struct subchannel_id *schid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923{
Michael Holzheuff6b8ea2006-09-20 15:58:49 +0200924 struct sch_match_id match_id;
925
926 match_id.devid = *devid;
927 match_id.rc = -ENODEV;
Heiko Carstens15e9b582006-12-04 15:40:26 +0100928 for_each_subchannel(__reipl_subchannel_match, &match_id);
Michael Holzheuff6b8ea2006-09-20 15:58:49 +0200929 if (match_id.rc == 0)
930 *schid = match_id.schid;
931 return match_id.rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932}
933
Michael Holzheuff6b8ea2006-09-20 15:58:49 +0200934extern void do_reipl_asm(__u32 schid);
935
936/* Make sure all subchannels are quiet before we re-ipl an lpar. */
937void reipl_ccw_dev(struct ccw_dev_id *devid)
938{
Heiko Carstens41459d32012-09-14 11:09:52 +0200939 struct subchannel_id uninitialized_var(schid);
Michael Holzheuff6b8ea2006-09-20 15:58:49 +0200940
Michael Holzheu60a0c682011-10-30 15:16:40 +0100941 s390_reset_system(NULL, NULL);
Heiko Carstens15e9b582006-12-04 15:40:26 +0100942 if (reipl_find_schid(devid, &schid) != 0)
Michael Holzheuff6b8ea2006-09-20 15:58:49 +0200943 panic("IPL Device not found\n");
Michael Holzheuff6b8ea2006-09-20 15:58:49 +0200944 do_reipl_asm(*((__u32*)&schid));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945}
Heiko Carstense87bfe52006-09-20 15:59:15 +0200946
Heiko Carstens6fc321f2007-04-27 16:01:25 +0200947int __init cio_get_iplinfo(struct cio_iplinfo *iplinfo)
Heiko Carstense87bfe52006-09-20 15:59:15 +0200948{
949 struct subchannel_id schid;
Heiko Carstens6fc321f2007-04-27 16:01:25 +0200950 struct schib schib;
Heiko Carstense87bfe52006-09-20 15:59:15 +0200951
Heiko Carstenscbb870c2010-02-26 22:37:43 +0100952 schid = *(struct subchannel_id *)&S390_lowcore.subchannel_id;
Heiko Carstense87bfe52006-09-20 15:59:15 +0200953 if (!schid.one)
Heiko Carstens6fc321f2007-04-27 16:01:25 +0200954 return -ENODEV;
Sebastian Ott8821d242010-04-22 17:17:05 +0200955 if (stsch_err(schid, &schib))
Heiko Carstens6fc321f2007-04-27 16:01:25 +0200956 return -ENODEV;
Cornelia Huckb279a4f2008-01-26 14:10:45 +0100957 if (schib.pmcw.st != SUBCHANNEL_TYPE_IO)
958 return -ENODEV;
Heiko Carstens6fc321f2007-04-27 16:01:25 +0200959 if (!schib.pmcw.dnv)
960 return -ENODEV;
961 iplinfo->devno = schib.pmcw.dev;
962 iplinfo->is_qdio = schib.pmcw.qf;
963 return 0;
Heiko Carstense87bfe52006-09-20 15:59:15 +0200964}
Peter Oberparleiter83262d62008-07-14 09:58:51 +0200965
966/**
967 * cio_tm_start_key - perform start function
968 * @sch: subchannel on which to perform the start function
969 * @tcw: transport-command word to be started
970 * @lpm: mask of paths to use
971 * @key: storage key to use for storage access
972 *
973 * Start the tcw on the given subchannel. Return zero on success, non-zero
974 * otherwise.
975 */
976int cio_tm_start_key(struct subchannel *sch, struct tcw *tcw, u8 lpm, u8 key)
977{
978 int cc;
979 union orb *orb = &to_io_private(sch)->orb;
980
981 memset(orb, 0, sizeof(union orb));
982 orb->tm.intparm = (u32) (addr_t) sch;
983 orb->tm.key = key >> 4;
984 orb->tm.b = 1;
985 orb->tm.lpm = lpm ? lpm : sch->lpm;
986 orb->tm.tcw = (u32) (addr_t) tcw;
987 cc = ssch(sch->schid, orb);
988 switch (cc) {
989 case 0:
990 return 0;
991 case 1:
992 case 2:
993 return -EBUSY;
994 default:
995 return cio_start_handle_notoper(sch, lpm);
996 }
997}
998
999/**
1000 * cio_tm_intrg - perform interrogate function
1001 * @sch - subchannel on which to perform the interrogate function
1002 *
1003 * If the specified subchannel is running in transport-mode, perform the
1004 * interrogate function. Return zero on success, non-zero otherwie.
1005 */
1006int cio_tm_intrg(struct subchannel *sch)
1007{
1008 int cc;
1009
1010 if (!to_io_private(sch)->orb.tm.b)
1011 return -EINVAL;
1012 cc = xsch(sch->schid);
1013 switch (cc) {
1014 case 0:
1015 case 2:
1016 return 0;
1017 case 1:
1018 return -EBUSY;
1019 default:
1020 return -ENODEV;
1021 }
1022}