blob: 77f9c92df4b96db075a1de5a6131ebdb8ffbb7f0 [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
Christoph Lameter4a6f4fe2010-12-06 11:16:24 -0600564 __this_cpu_write(s390_idle.nohz_delay, 1);
Martin Schwidefsky1f44a222013-06-27 09:01:09 +0200565 tpi_info = (struct tpi_info *) &get_irq_regs()->int_code;
Martin Schwidefsky63aef002014-05-27 14:40:39 +0200566 irb = &__get_cpu_var(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;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605
Heiko Carstens191fd442008-12-25 13:39:01 +0100606/*
Martin Schwidefskyb603d252012-05-09 16:27:36 +0200607 * Use cio_tsch to update the subchannel status and call the interrupt handler
Sebastian Ott188561a2013-04-13 12:53:21 +0200608 * if status had been pending. Called with the subchannel's lock held.
Heiko Carstens191fd442008-12-25 13:39:01 +0100609 */
Sebastian Ott188561a2013-04-13 12:53:21 +0200610void cio_tsch(struct subchannel *sch)
Heiko Carstens191fd442008-12-25 13:39:01 +0100611{
Heiko Carstens191fd442008-12-25 13:39:01 +0100612 struct irb *irb;
613 int irq_context;
614
Martin Schwidefsky63aef002014-05-27 14:40:39 +0200615 irb = &__get_cpu_var(cio_irb);
Heiko Carstens191fd442008-12-25 13:39:01 +0100616 /* Store interrupt response block to lowcore. */
Martin Schwidefskyb603d252012-05-09 16:27:36 +0200617 if (tsch(sch->schid, irb) != 0)
Heiko Carstens191fd442008-12-25 13:39:01 +0100618 /* Not status pending or not operational. */
Martin Schwidefskyb603d252012-05-09 16:27:36 +0200619 return;
Heiko Carstens191fd442008-12-25 13:39:01 +0100620 memcpy(&sch->schib.scsw, &irb->scsw, sizeof(union scsw));
Martin Schwidefskyb603d252012-05-09 16:27:36 +0200621 /* Call interrupt handler with updated status. */
622 irq_context = in_interrupt();
623 if (!irq_context) {
624 local_bh_disable();
625 irq_enter();
626 }
Thomas Gleixnerbc5dfcf2014-02-23 21:40:17 +0000627 kstat_incr_irq_this_cpu(IO_INTERRUPT);
Heiko Carstens191fd442008-12-25 13:39:01 +0100628 if (sch->driver && sch->driver->irq)
629 sch->driver->irq(sch);
Peter Oberparleiterde400d62011-10-30 15:16:04 +0100630 else
Heiko Carstens420f42e2013-01-02 15:18:18 +0100631 inc_irq_stat(IRQIO_CIO);
Martin Schwidefskyb603d252012-05-09 16:27:36 +0200632 if (!irq_context) {
633 irq_exit();
Heiko Carstens191fd442008-12-25 13:39:01 +0100634 _local_bh_enable();
Martin Schwidefskyb603d252012-05-09 16:27:36 +0200635 }
Heiko Carstens191fd442008-12-25 13:39:01 +0100636}
637
Sebastian Ott863fc842013-04-13 13:01:50 +0200638static int cio_test_for_console(struct subchannel_id schid, void *data)
Cornelia Huckcd6b4f22008-01-26 14:10:43 +0100639{
Sebastian Ott863fc842013-04-13 13:01:50 +0200640 struct schib schib;
Cornelia Huckcd6b4f22008-01-26 14:10:43 +0100641
Sebastian Ott863fc842013-04-13 13:01:50 +0200642 if (stsch_err(schid, &schib) != 0)
Cornelia Huckf97a56f2006-01-06 00:19:22 -0800643 return -ENXIO;
Sebastian Ott863fc842013-04-13 13:01:50 +0200644 if ((schib.pmcw.st == SUBCHANNEL_TYPE_IO) && schib.pmcw.dnv &&
645 (schib.pmcw.dev == console_devno)) {
Cornelia Huckf97a56f2006-01-06 00:19:22 -0800646 console_irq = schid.sch_no;
647 return 1; /* found */
648 }
649 return 0;
650}
651
Sebastian Ott863fc842013-04-13 13:01:50 +0200652static int cio_get_console_sch_no(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653{
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800654 struct subchannel_id schid;
Sebastian Ott863fc842013-04-13 13:01:50 +0200655 struct schib schib;
656
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800657 init_subchannel_id(&schid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 if (console_irq != -1) {
659 /* VM provided us with the irq number of the console. */
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800660 schid.sch_no = console_irq;
Sebastian Ott863fc842013-04-13 13:01:50 +0200661 if (stsch_err(schid, &schib) != 0 ||
662 (schib.pmcw.st != SUBCHANNEL_TYPE_IO) || !schib.pmcw.dnv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 return -1;
Sebastian Ott863fc842013-04-13 13:01:50 +0200664 console_devno = schib.pmcw.dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 } else if (console_devno != -1) {
666 /* At least the console device number is known. */
Cornelia Huckf97a56f2006-01-06 00:19:22 -0800667 for_each_subchannel(cio_test_for_console, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 }
669 return console_irq;
670}
671
Sebastian Ott863fc842013-04-13 13:01:50 +0200672struct subchannel *cio_probe_console(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673{
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800674 struct subchannel_id schid;
Sebastian Ott863fc842013-04-13 13:01:50 +0200675 struct subchannel *sch;
676 int sch_no, ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677
Cornelia Huckf97a56f2006-01-06 00:19:22 -0800678 sch_no = cio_get_console_sch_no();
679 if (sch_no == -1) {
Michael Ernste6d5a422008-12-25 13:39:36 +0100680 pr_warning("No CCW console was found\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 return ERR_PTR(-ENODEV);
682 }
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800683 init_subchannel_id(&schid);
Cornelia Huckf97a56f2006-01-06 00:19:22 -0800684 schid.sch_no = sch_no;
Sebastian Ott863fc842013-04-13 13:01:50 +0200685 sch = css_alloc_subchannel(schid);
686 if (IS_ERR(sch))
687 return sch;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688
Cornelia Huck6ef556c2008-07-14 09:59:01 +0200689 isc_register(CONSOLE_ISC);
Sebastian Ott863fc842013-04-13 13:01:50 +0200690 sch->config.isc = CONSOLE_ISC;
691 sch->config.intparm = (u32)(addr_t)sch;
692 ret = cio_commit_config(sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 if (ret) {
Cornelia Huck6ef556c2008-07-14 09:59:01 +0200694 isc_unregister(CONSOLE_ISC);
Sebastian Ott863fc842013-04-13 13:01:50 +0200695 put_device(&sch->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 return ERR_PTR(ret);
697 }
Sebastian Ott863fc842013-04-13 13:01:50 +0200698 console_sch = sch;
699 return sch;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700}
701
Sebastian Ott863fc842013-04-13 13:01:50 +0200702int cio_is_console(struct subchannel_id schid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703{
Sebastian Ott863fc842013-04-13 13:01:50 +0200704 if (!console_sch)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 return 0;
Sebastian Ott863fc842013-04-13 13:01:50 +0200706 return schid_equal(&schid, &console_sch->schid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707}
708
Sebastian Ott14556b32013-04-13 13:03:54 +0200709void cio_register_early_subchannels(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710{
Sebastian Ott14556b32013-04-13 13:03:54 +0200711 int ret;
712
713 if (!console_sch)
714 return;
715
716 ret = css_register_subchannel(console_sch);
717 if (ret)
718 put_device(&console_sch->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719}
Sebastian Ott863fc842013-04-13 13:01:50 +0200720#endif /* CONFIG_CCW_CONSOLE */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721
Heiko Carstens4d284ca2007-02-05 21:18:53 +0100722static int
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800723__disable_subchannel_easy(struct subchannel_id schid, struct schib *schib)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724{
725 int retry, cc;
726
727 cc = 0;
728 for (retry=0;retry<3;retry++) {
729 schib->pmcw.ena = 0;
Sebastian Ott8821d242010-04-22 17:17:05 +0200730 cc = msch_err(schid, schib);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 if (cc)
732 return (cc==3?-ENODEV:-EBUSY);
Sebastian Ott8821d242010-04-22 17:17:05 +0200733 if (stsch_err(schid, schib) || !css_sch_is_valid(schib))
Sebastian Ottcdb912a2008-12-25 13:39:12 +0100734 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 if (!schib->pmcw.ena)
736 return 0;
737 }
738 return -EBUSY; /* uhm... */
739}
740
Heiko Carstens4d284ca2007-02-05 21:18:53 +0100741static int
Cornelia Huck0ae7a7b2008-07-14 09:58:43 +0200742__clear_io_subchannel_easy(struct subchannel_id schid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743{
744 int retry;
745
746 if (csch(schid))
747 return -ENODEV;
748 for (retry=0;retry<20;retry++) {
749 struct tpi_info ti;
750
751 if (tpi(&ti)) {
Martin Schwidefsky63aef002014-05-27 14:40:39 +0200752 tsch(ti.schid, &__get_cpu_var(cio_irb));
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800753 if (schid_equal(&ti.schid, &schid))
Cornelia Huck4c24da72005-09-03 15:58:01 -0700754 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 }
Heiko Carstens5a0d0e62008-10-10 21:33:22 +0200756 udelay_simple(100);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 }
758 return -EBUSY;
759}
760
Cornelia Huck9d92a7e2008-07-14 09:59:05 +0200761static void __clear_chsc_subchannel_easy(void)
762{
763 /* It seems we can only wait for a bit here :/ */
Heiko Carstens5a0d0e62008-10-10 21:33:22 +0200764 udelay_simple(100);
Cornelia Huck9d92a7e2008-07-14 09:59:05 +0200765}
766
Michael Holzheua45e1412006-12-15 17:18:22 +0100767static int pgm_check_occured;
768
769static void cio_reset_pgm_check_handler(void)
770{
771 pgm_check_occured = 1;
772}
773
Peter Oberparleiterf9c9fe32008-10-10 21:33:15 +0200774static int stsch_reset(struct subchannel_id schid, struct schib *addr)
Michael Holzheua45e1412006-12-15 17:18:22 +0100775{
776 int rc;
777
778 pgm_check_occured = 0;
Heiko Carstensab14de62007-02-05 21:18:37 +0100779 s390_base_pgm_handler_fn = cio_reset_pgm_check_handler;
Sebastian Ott8821d242010-04-22 17:17:05 +0200780 rc = stsch_err(schid, addr);
Heiko Carstensab14de62007-02-05 21:18:37 +0100781 s390_base_pgm_handler_fn = NULL;
Heiko Carstens6faf4442007-01-09 10:18:41 +0100782
Heiko Carstensab14de62007-02-05 21:18:37 +0100783 /* The program check handler could have changed pgm_check_occured. */
Heiko Carstens6faf4442007-01-09 10:18:41 +0100784 barrier();
785
Michael Holzheua45e1412006-12-15 17:18:22 +0100786 if (pgm_check_occured)
787 return -EIO;
788 else
789 return rc;
790}
791
Heiko Carstens15e9b582006-12-04 15:40:26 +0100792static int __shutdown_subchannel_easy(struct subchannel_id schid, void *data)
Cornelia Huckf97a56f2006-01-06 00:19:22 -0800793{
794 struct schib schib;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795
Michael Holzheua45e1412006-12-15 17:18:22 +0100796 if (stsch_reset(schid, &schib))
Cornelia Huckf97a56f2006-01-06 00:19:22 -0800797 return -ENXIO;
798 if (!schib.pmcw.ena)
799 return 0;
800 switch(__disable_subchannel_easy(schid, &schib)) {
801 case 0:
802 case -ENODEV:
803 break;
804 default: /* -EBUSY */
Cornelia Huck0ae7a7b2008-07-14 09:58:43 +0200805 switch (schib.pmcw.st) {
806 case SUBCHANNEL_TYPE_IO:
807 if (__clear_io_subchannel_easy(schid))
808 goto out; /* give up... */
809 break;
Cornelia Huck9d92a7e2008-07-14 09:59:05 +0200810 case SUBCHANNEL_TYPE_CHSC:
811 __clear_chsc_subchannel_easy();
812 break;
Cornelia Huck0ae7a7b2008-07-14 09:58:43 +0200813 default:
814 /* No default clear strategy */
815 break;
816 }
Sebastian Ott8821d242010-04-22 17:17:05 +0200817 stsch_err(schid, &schib);
Cornelia Huckf97a56f2006-01-06 00:19:22 -0800818 __disable_subchannel_easy(schid, &schib);
819 }
Cornelia Huck0ae7a7b2008-07-14 09:58:43 +0200820out:
Cornelia Huckf97a56f2006-01-06 00:19:22 -0800821 return 0;
822}
823
Heiko Carstens15e9b582006-12-04 15:40:26 +0100824static atomic_t chpid_reset_count;
825
826static void s390_reset_chpids_mcck_handler(void)
827{
828 struct crw crw;
829 struct mci *mci;
830
831 /* Check for pending channel report word. */
832 mci = (struct mci *)&S390_lowcore.mcck_interruption_code;
833 if (!mci->cp)
834 return;
835 /* Process channel report words. */
836 while (stcrw(&crw) == 0) {
837 /* Check for responses to RCHP. */
838 if (crw.slct && crw.rsc == CRW_RSC_CPATH)
839 atomic_dec(&chpid_reset_count);
840 }
841}
842
843#define RCHP_TIMEOUT (30 * USEC_PER_SEC)
844static void css_reset(void)
845{
846 int i, ret;
847 unsigned long long timeout;
Peter Oberparleiterf86635f2007-04-27 16:01:26 +0200848 struct chp_id chpid;
Heiko Carstens15e9b582006-12-04 15:40:26 +0100849
850 /* Reset subchannels. */
851 for_each_subchannel(__shutdown_subchannel_easy, NULL);
852 /* Reset channel paths. */
Heiko Carstensab14de62007-02-05 21:18:37 +0100853 s390_base_mcck_handler_fn = s390_reset_chpids_mcck_handler;
Heiko Carstens15e9b582006-12-04 15:40:26 +0100854 /* Enable channel report machine checks. */
855 __ctl_set_bit(14, 28);
856 /* Temporarily reenable machine checks. */
857 local_mcck_enable();
Peter Oberparleiterf86635f2007-04-27 16:01:26 +0200858 chp_id_init(&chpid);
Heiko Carstens15e9b582006-12-04 15:40:26 +0100859 for (i = 0; i <= __MAX_CHPID; i++) {
Peter Oberparleiterf86635f2007-04-27 16:01:26 +0200860 chpid.id = i;
861 ret = rchp(chpid);
Heiko Carstens15e9b582006-12-04 15:40:26 +0100862 if ((ret == 0) || (ret == 2))
863 /*
864 * rchp either succeeded, or another rchp is already
865 * in progress. In either case, we'll get a crw.
866 */
867 atomic_inc(&chpid_reset_count);
868 }
869 /* Wait for machine check for all channel paths. */
Martin Schwidefsky8c071b02013-10-17 12:38:17 +0200870 timeout = get_tod_clock_fast() + (RCHP_TIMEOUT << 12);
Heiko Carstens15e9b582006-12-04 15:40:26 +0100871 while (atomic_read(&chpid_reset_count) != 0) {
Martin Schwidefsky8c071b02013-10-17 12:38:17 +0200872 if (get_tod_clock_fast() > timeout)
Heiko Carstens15e9b582006-12-04 15:40:26 +0100873 break;
874 cpu_relax();
875 }
876 /* Disable machine checks again. */
877 local_mcck_disable();
878 /* Disable channel report machine checks. */
879 __ctl_clear_bit(14, 28);
Heiko Carstensab14de62007-02-05 21:18:37 +0100880 s390_base_mcck_handler_fn = NULL;
Heiko Carstens15e9b582006-12-04 15:40:26 +0100881}
882
883static struct reset_call css_reset_call = {
884 .fn = css_reset,
885};
886
887static int __init init_css_reset_call(void)
888{
889 atomic_set(&chpid_reset_count, 0);
890 register_reset_call(&css_reset_call);
891 return 0;
892}
893
894arch_initcall(init_css_reset_call);
895
896struct sch_match_id {
897 struct subchannel_id schid;
898 struct ccw_dev_id devid;
899 int rc;
900};
901
902static int __reipl_subchannel_match(struct subchannel_id schid, void *data)
903{
904 struct schib schib;
905 struct sch_match_id *match_id = data;
906
Michael Holzheua45e1412006-12-15 17:18:22 +0100907 if (stsch_reset(schid, &schib))
Heiko Carstens15e9b582006-12-04 15:40:26 +0100908 return -ENXIO;
Cornelia Huckb279a4f2008-01-26 14:10:45 +0100909 if ((schib.pmcw.st == SUBCHANNEL_TYPE_IO) && schib.pmcw.dnv &&
Heiko Carstens15e9b582006-12-04 15:40:26 +0100910 (schib.pmcw.dev == match_id->devid.devno) &&
911 (schid.ssid == match_id->devid.ssid)) {
912 match_id->schid = schid;
913 match_id->rc = 0;
914 return 1;
915 }
916 return 0;
917}
918
919static int reipl_find_schid(struct ccw_dev_id *devid,
920 struct subchannel_id *schid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921{
Michael Holzheuff6b8ea2006-09-20 15:58:49 +0200922 struct sch_match_id match_id;
923
924 match_id.devid = *devid;
925 match_id.rc = -ENODEV;
Heiko Carstens15e9b582006-12-04 15:40:26 +0100926 for_each_subchannel(__reipl_subchannel_match, &match_id);
Michael Holzheuff6b8ea2006-09-20 15:58:49 +0200927 if (match_id.rc == 0)
928 *schid = match_id.schid;
929 return match_id.rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930}
931
Michael Holzheuff6b8ea2006-09-20 15:58:49 +0200932extern void do_reipl_asm(__u32 schid);
933
934/* Make sure all subchannels are quiet before we re-ipl an lpar. */
935void reipl_ccw_dev(struct ccw_dev_id *devid)
936{
Heiko Carstens41459d32012-09-14 11:09:52 +0200937 struct subchannel_id uninitialized_var(schid);
Michael Holzheuff6b8ea2006-09-20 15:58:49 +0200938
Michael Holzheu60a0c682011-10-30 15:16:40 +0100939 s390_reset_system(NULL, NULL);
Heiko Carstens15e9b582006-12-04 15:40:26 +0100940 if (reipl_find_schid(devid, &schid) != 0)
Michael Holzheuff6b8ea2006-09-20 15:58:49 +0200941 panic("IPL Device not found\n");
Michael Holzheuff6b8ea2006-09-20 15:58:49 +0200942 do_reipl_asm(*((__u32*)&schid));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943}
Heiko Carstense87bfe52006-09-20 15:59:15 +0200944
Heiko Carstens6fc321f2007-04-27 16:01:25 +0200945int __init cio_get_iplinfo(struct cio_iplinfo *iplinfo)
Heiko Carstense87bfe52006-09-20 15:59:15 +0200946{
947 struct subchannel_id schid;
Heiko Carstens6fc321f2007-04-27 16:01:25 +0200948 struct schib schib;
Heiko Carstense87bfe52006-09-20 15:59:15 +0200949
Heiko Carstenscbb870c2010-02-26 22:37:43 +0100950 schid = *(struct subchannel_id *)&S390_lowcore.subchannel_id;
Heiko Carstense87bfe52006-09-20 15:59:15 +0200951 if (!schid.one)
Heiko Carstens6fc321f2007-04-27 16:01:25 +0200952 return -ENODEV;
Sebastian Ott8821d242010-04-22 17:17:05 +0200953 if (stsch_err(schid, &schib))
Heiko Carstens6fc321f2007-04-27 16:01:25 +0200954 return -ENODEV;
Cornelia Huckb279a4f2008-01-26 14:10:45 +0100955 if (schib.pmcw.st != SUBCHANNEL_TYPE_IO)
956 return -ENODEV;
Heiko Carstens6fc321f2007-04-27 16:01:25 +0200957 if (!schib.pmcw.dnv)
958 return -ENODEV;
959 iplinfo->devno = schib.pmcw.dev;
960 iplinfo->is_qdio = schib.pmcw.qf;
961 return 0;
Heiko Carstense87bfe52006-09-20 15:59:15 +0200962}
Peter Oberparleiter83262d62008-07-14 09:58:51 +0200963
964/**
965 * cio_tm_start_key - perform start function
966 * @sch: subchannel on which to perform the start function
967 * @tcw: transport-command word to be started
968 * @lpm: mask of paths to use
969 * @key: storage key to use for storage access
970 *
971 * Start the tcw on the given subchannel. Return zero on success, non-zero
972 * otherwise.
973 */
974int cio_tm_start_key(struct subchannel *sch, struct tcw *tcw, u8 lpm, u8 key)
975{
976 int cc;
977 union orb *orb = &to_io_private(sch)->orb;
978
979 memset(orb, 0, sizeof(union orb));
980 orb->tm.intparm = (u32) (addr_t) sch;
981 orb->tm.key = key >> 4;
982 orb->tm.b = 1;
983 orb->tm.lpm = lpm ? lpm : sch->lpm;
984 orb->tm.tcw = (u32) (addr_t) tcw;
985 cc = ssch(sch->schid, orb);
986 switch (cc) {
987 case 0:
988 return 0;
989 case 1:
990 case 2:
991 return -EBUSY;
992 default:
993 return cio_start_handle_notoper(sch, lpm);
994 }
995}
996
997/**
998 * cio_tm_intrg - perform interrogate function
999 * @sch - subchannel on which to perform the interrogate function
1000 *
1001 * If the specified subchannel is running in transport-mode, perform the
1002 * interrogate function. Return zero on success, non-zero otherwie.
1003 */
1004int cio_tm_intrg(struct subchannel *sch)
1005{
1006 int cc;
1007
1008 if (!to_io_private(sch)->orb.tm.b)
1009 return -EINVAL;
1010 cc = xsch(sch->schid);
1011 switch (cc) {
1012 case 0:
1013 case 2:
1014 return 0;
1015 case 1:
1016 return -EBUSY;
1017 default:
1018 return -ENODEV;
1019 }
1020}