blob: 9bdb463765c74b460cfb7a7f2db96842b1f75ae3 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * drivers/s390/cio/cio.c
3 * S/390 common I/O routines -- low level i/o calls
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
Cornelia Huck0ae7a7b2008-07-14 09:58:43 +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
12#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/init.h>
14#include <linux/slab.h>
15#include <linux/device.h>
16#include <linux/kernel_stat.h>
17#include <linux/interrupt.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <asm/cio.h>
19#include <asm/delay.h>
20#include <asm/irq.h>
Heiko Carstens5a489b982006-10-06 16:38:35 +020021#include <asm/irq_regs.h>
Heiko Carstense87bfe52006-09-20 15:59:15 +020022#include <asm/setup.h>
Heiko Carstens15e9b582006-12-04 15:40:26 +010023#include <asm/reset.h>
Michael Holzheu46b05d22007-02-21 10:55:21 +010024#include <asm/ipl.h>
Peter Oberparleitere5854a52007-04-27 16:01:31 +020025#include <asm/chpid.h>
Peter Oberparleiter4e8e56c2008-01-26 14:10:44 +010026#include <asm/airq.h>
Cornelia Huck3a3fc292008-07-14 09:58:58 +020027#include <asm/isc.h>
Heiko Carstens43ca5c32008-04-17 07:46:23 +020028#include <asm/cpu.h>
Peter Oberparleiter83262d62008-07-14 09:58:51 +020029#include <asm/fcx.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include "cio.h"
31#include "css.h"
32#include "chsc.h"
33#include "ioasm.h"
Cornelia Huckcd6b4f22008-01-26 14:10:43 +010034#include "io_sch.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include "blacklist.h"
36#include "cio_debug.h"
Peter Oberparleitere6b6e102007-04-27 16:01:28 +020037#include "chp.h"
Heiko Carstens15e9b582006-12-04 15:40:26 +010038#include "../s390mach.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
40debug_info_t *cio_debug_msg_id;
41debug_info_t *cio_debug_trace_id;
42debug_info_t *cio_debug_crw_id;
43
Linus Torvalds1da177e2005-04-16 15:20:36 -070044/*
45 * Function: cio_debug_init
Cornelia Huckbc698bc2008-01-26 14:10:42 +010046 * Initializes three debug logs for common I/O:
47 * - cio_msg logs generic cio messages
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 * - cio_trace logs the calling of different functions
Cornelia Huckbc698bc2008-01-26 14:10:42 +010049 * - cio_crw logs machine check related cio messages
Linus Torvalds1da177e2005-04-16 15:20:36 -070050 */
Cornelia Huckbc698bc2008-01-26 14:10:42 +010051static int __init cio_debug_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070052{
Peter Tiedemann361f4942008-01-26 14:11:30 +010053 cio_debug_msg_id = debug_register("cio_msg", 16, 1, 16 * sizeof(long));
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 if (!cio_debug_msg_id)
55 goto out_unregister;
Cornelia Huckbc698bc2008-01-26 14:10:42 +010056 debug_register_view(cio_debug_msg_id, &debug_sprintf_view);
57 debug_set_level(cio_debug_msg_id, 2);
Peter Tiedemann361f4942008-01-26 14:11:30 +010058 cio_debug_trace_id = debug_register("cio_trace", 16, 1, 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 if (!cio_debug_trace_id)
60 goto out_unregister;
Cornelia Huckbc698bc2008-01-26 14:10:42 +010061 debug_register_view(cio_debug_trace_id, &debug_hex_ascii_view);
62 debug_set_level(cio_debug_trace_id, 2);
Peter Tiedemann361f4942008-01-26 14:11:30 +010063 cio_debug_crw_id = debug_register("cio_crw", 16, 1, 16 * sizeof(long));
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 if (!cio_debug_crw_id)
65 goto out_unregister;
Cornelia Huckbc698bc2008-01-26 14:10:42 +010066 debug_register_view(cio_debug_crw_id, &debug_sprintf_view);
67 debug_set_level(cio_debug_crw_id, 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 return 0;
69
70out_unregister:
71 if (cio_debug_msg_id)
Cornelia Huckbc698bc2008-01-26 14:10:42 +010072 debug_unregister(cio_debug_msg_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 if (cio_debug_trace_id)
Cornelia Huckbc698bc2008-01-26 14:10:42 +010074 debug_unregister(cio_debug_trace_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 if (cio_debug_crw_id)
Cornelia Huckbc698bc2008-01-26 14:10:42 +010076 debug_unregister(cio_debug_crw_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 return -1;
78}
79
80arch_initcall (cio_debug_init);
81
82int
83cio_set_options (struct subchannel *sch, int flags)
84{
85 sch->options.suspend = (flags & DOIO_ALLOW_SUSPEND) != 0;
86 sch->options.prefetch = (flags & DOIO_DENY_PREFETCH) != 0;
87 sch->options.inter = (flags & DOIO_SUPPRESS_INTER) != 0;
88 return 0;
89}
90
91/* FIXME: who wants to use this? */
92int
93cio_get_options (struct subchannel *sch)
94{
95 int flags;
96
97 flags = 0;
98 if (sch->options.suspend)
99 flags |= DOIO_ALLOW_SUSPEND;
100 if (sch->options.prefetch)
101 flags |= DOIO_DENY_PREFETCH;
102 if (sch->options.inter)
103 flags |= DOIO_SUPPRESS_INTER;
104 return flags;
105}
106
Heiko Carstens4d284ca2007-02-05 21:18:53 +0100107static int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108cio_start_handle_notoper(struct subchannel *sch, __u8 lpm)
109{
110 char dbf_text[15];
111
112 if (lpm != 0)
113 sch->lpm &= ~lpm;
114 else
115 sch->lpm = 0;
116
Michael Ernst139b83dd2008-05-07 09:22:54 +0200117 CIO_MSG_EVENT(2, "cio_start: 'not oper' status for "
Cornelia Huckfb6958a2006-01-06 00:19:25 -0800118 "subchannel 0.%x.%04x!\n", sch->schid.ssid,
119 sch->schid.sch_no);
Sebastian Ottcdb912a2008-12-25 13:39:12 +0100120
121 if (cio_update_schib(sch))
122 return -ENODEV;
123
Kay Sievers2a0217d2008-10-10 21:33:09 +0200124 sprintf(dbf_text, "no%s", dev_name(&sch->dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 CIO_TRACE_EVENT(0, dbf_text);
126 CIO_HEX_EVENT(0, &sch->schib, sizeof (struct schib));
127
128 return (sch->lpm ? -EACCES : -ENODEV);
129}
130
131int
132cio_start_key (struct subchannel *sch, /* subchannel structure */
133 struct ccw1 * cpa, /* logical channel prog addr */
134 __u8 lpm, /* logical path mask */
135 __u8 key) /* storage key */
136{
137 char dbf_txt[15];
138 int ccode;
Peter Oberparleiter83262d62008-07-14 09:58:51 +0200139 union orb *orb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140
Cornelia Huckcd6b4f22008-01-26 14:10:43 +0100141 CIO_TRACE_EVENT(4, "stIO");
Kay Sievers2a0217d2008-10-10 21:33:09 +0200142 CIO_TRACE_EVENT(4, dev_name(&sch->dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
Cornelia Huckcd6b4f22008-01-26 14:10:43 +0100144 orb = &to_io_private(sch)->orb;
Stefan Weinhuber9adb8c12008-09-16 09:32:19 -0700145 memset(orb, 0, sizeof(union orb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 /* sch is always under 2G. */
Peter Oberparleiter83262d62008-07-14 09:58:51 +0200147 orb->cmd.intparm = (u32)(addr_t)sch;
148 orb->cmd.fmt = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149
Peter Oberparleiter83262d62008-07-14 09:58:51 +0200150 orb->cmd.pfch = sch->options.prefetch == 0;
151 orb->cmd.spnd = sch->options.suspend;
152 orb->cmd.ssic = sch->options.suspend && sch->options.inter;
153 orb->cmd.lpm = (lpm != 0) ? lpm : sch->lpm;
Martin Schwidefsky347a8dc2006-01-06 00:19:28 -0800154#ifdef CONFIG_64BIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 /*
156 * for 64 bit we always support 64 bit IDAWs with 4k page size only
157 */
Peter Oberparleiter83262d62008-07-14 09:58:51 +0200158 orb->cmd.c64 = 1;
159 orb->cmd.i2k = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160#endif
Peter Oberparleiter83262d62008-07-14 09:58:51 +0200161 orb->cmd.key = key >> 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 /* issue "Start Subchannel" */
Peter Oberparleiter83262d62008-07-14 09:58:51 +0200163 orb->cmd.cpa = (__u32) __pa(cpa);
Cornelia Huckcd6b4f22008-01-26 14:10:43 +0100164 ccode = ssch(sch->schid, orb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165
166 /* process condition code */
Cornelia Huckcd6b4f22008-01-26 14:10:43 +0100167 sprintf(dbf_txt, "ccode:%d", ccode);
168 CIO_TRACE_EVENT(4, dbf_txt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
170 switch (ccode) {
171 case 0:
172 /*
173 * initialize device status information
174 */
Peter Oberparleiter23d805b62008-07-14 09:58:50 +0200175 sch->schib.scsw.cmd.actl |= SCSW_ACTL_START_PEND;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 return 0;
177 case 1: /* status pending */
178 case 2: /* busy */
179 return -EBUSY;
Cornelia Huckc91ebe42008-09-09 12:38:58 +0200180 case 3: /* device/path not operational */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 return cio_start_handle_notoper(sch, lpm);
Cornelia Huckc91ebe42008-09-09 12:38:58 +0200182 default:
183 return ccode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 }
185}
186
187int
188cio_start (struct subchannel *sch, struct ccw1 *cpa, __u8 lpm)
189{
Peter Oberparleiter0b642ed2005-05-01 08:58:58 -0700190 return cio_start_key(sch, cpa, lpm, PAGE_DEFAULT_KEY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191}
192
193/*
194 * resume suspended I/O operation
195 */
196int
197cio_resume (struct subchannel *sch)
198{
199 char dbf_txt[15];
200 int ccode;
201
202 CIO_TRACE_EVENT (4, "resIO");
Kay Sievers2a0217d2008-10-10 21:33:09 +0200203 CIO_TRACE_EVENT(4, dev_name(&sch->dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800205 ccode = rsch (sch->schid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206
207 sprintf (dbf_txt, "ccode:%d", ccode);
208 CIO_TRACE_EVENT (4, dbf_txt);
209
210 switch (ccode) {
211 case 0:
Peter Oberparleiter23d805b62008-07-14 09:58:50 +0200212 sch->schib.scsw.cmd.actl |= SCSW_ACTL_RESUME_PEND;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 return 0;
214 case 1:
215 return -EBUSY;
216 case 2:
217 return -EINVAL;
218 default:
219 /*
220 * useless to wait for request completion
221 * as device is no longer operational !
222 */
223 return -ENODEV;
224 }
225}
226
227/*
228 * halt I/O operation
229 */
230int
231cio_halt(struct subchannel *sch)
232{
233 char dbf_txt[15];
234 int ccode;
235
236 if (!sch)
237 return -ENODEV;
238
239 CIO_TRACE_EVENT (2, "haltIO");
Kay Sievers2a0217d2008-10-10 21:33:09 +0200240 CIO_TRACE_EVENT(2, dev_name(&sch->dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241
242 /*
243 * Issue "Halt subchannel" and process condition code
244 */
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800245 ccode = hsch (sch->schid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246
247 sprintf (dbf_txt, "ccode:%d", ccode);
248 CIO_TRACE_EVENT (2, dbf_txt);
249
250 switch (ccode) {
251 case 0:
Peter Oberparleiter23d805b62008-07-14 09:58:50 +0200252 sch->schib.scsw.cmd.actl |= SCSW_ACTL_HALT_PEND;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 return 0;
254 case 1: /* status pending */
255 case 2: /* busy */
256 return -EBUSY;
257 default: /* device not operational */
258 return -ENODEV;
259 }
260}
261
262/*
263 * Clear I/O operation
264 */
265int
266cio_clear(struct subchannel *sch)
267{
268 char dbf_txt[15];
269 int ccode;
270
271 if (!sch)
272 return -ENODEV;
273
274 CIO_TRACE_EVENT (2, "clearIO");
Kay Sievers2a0217d2008-10-10 21:33:09 +0200275 CIO_TRACE_EVENT(2, dev_name(&sch->dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276
277 /*
278 * Issue "Clear subchannel" and process condition code
279 */
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800280 ccode = csch (sch->schid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281
282 sprintf (dbf_txt, "ccode:%d", ccode);
283 CIO_TRACE_EVENT (2, dbf_txt);
284
285 switch (ccode) {
286 case 0:
Peter Oberparleiter23d805b62008-07-14 09:58:50 +0200287 sch->schib.scsw.cmd.actl |= SCSW_ACTL_CLEAR_PEND;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 return 0;
289 default: /* device not operational */
290 return -ENODEV;
291 }
292}
293
294/*
295 * Function: cio_cancel
296 * Issues a "Cancel Subchannel" on the specified subchannel
297 * Note: We don't need any fancy intparms and flags here
298 * since xsch is executed synchronously.
299 * Only for common I/O internal use as for now.
300 */
301int
302cio_cancel (struct subchannel *sch)
303{
304 char dbf_txt[15];
305 int ccode;
306
307 if (!sch)
308 return -ENODEV;
309
310 CIO_TRACE_EVENT (2, "cancelIO");
Kay Sievers2a0217d2008-10-10 21:33:09 +0200311 CIO_TRACE_EVENT(2, dev_name(&sch->dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800313 ccode = xsch (sch->schid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314
315 sprintf (dbf_txt, "ccode:%d", ccode);
316 CIO_TRACE_EVENT (2, dbf_txt);
317
318 switch (ccode) {
319 case 0: /* success */
320 /* Update information in scsw. */
Sebastian Ottcdb912a2008-12-25 13:39:12 +0100321 if (cio_update_schib(sch))
322 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 return 0;
324 case 1: /* status pending */
325 return -EBUSY;
326 case 2: /* not applicable */
327 return -EINVAL;
328 default: /* not oper */
329 return -ENODEV;
330 }
331}
332
333/*
334 * Function: cio_modify
335 * Issues a "Modify Subchannel" on the specified subchannel
336 */
337int
338cio_modify (struct subchannel *sch)
339{
340 int ccode, retry, ret;
341
342 ret = 0;
343 for (retry = 0; retry < 5; retry++) {
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800344 ccode = msch_err (sch->schid, &sch->schib);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 if (ccode < 0) /* -EIO if msch gets a program check. */
346 return ccode;
347 switch (ccode) {
348 case 0: /* successfull */
349 return 0;
350 case 1: /* status pending */
351 return -EBUSY;
352 case 2: /* busy */
353 udelay (100); /* allow for recovery */
354 ret = -EBUSY;
355 break;
356 case 3: /* not operational */
357 return -ENODEV;
358 }
359 }
360 return ret;
361}
362
Cornelia Huck44a1c192008-07-14 09:58:47 +0200363/**
Sebastian Ottcdb912a2008-12-25 13:39:12 +0100364 * cio_update_schib - Perform stsch and update schib if subchannel is valid.
365 * @sch: subchannel on which to perform stsch
366 * Return zero on success, -ENODEV otherwise.
367 */
368int cio_update_schib(struct subchannel *sch)
369{
370 struct schib schib;
371
372 if (stsch(sch->schid, &schib) || !css_sch_is_valid(&schib))
373 return -ENODEV;
374
375 memcpy(&sch->schib, &schib, sizeof(schib));
376 return 0;
377}
378EXPORT_SYMBOL_GPL(cio_update_schib);
379
380/**
Cornelia Huck44a1c192008-07-14 09:58:47 +0200381 * cio_enable_subchannel - enable a subchannel.
382 * @sch: subchannel to be enabled
383 * @intparm: interruption parameter to set
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 */
Cornelia Huckedf22092008-04-30 13:38:39 +0200385int cio_enable_subchannel(struct subchannel *sch, u32 intparm)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386{
387 char dbf_txt[15];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 int retry;
389 int ret;
390
391 CIO_TRACE_EVENT (2, "ensch");
Kay Sievers2a0217d2008-10-10 21:33:09 +0200392 CIO_TRACE_EVENT(2, dev_name(&sch->dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393
Cornelia Huckd7b5a4c92006-12-08 15:54:28 +0100394 if (sch_is_pseudo_sch(sch))
395 return -EINVAL;
Sebastian Ottcdb912a2008-12-25 13:39:12 +0100396 if (cio_update_schib(sch))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 return -ENODEV;
398
399 for (retry = 5, ret = 0; retry > 0; retry--) {
400 sch->schib.pmcw.ena = 1;
Cornelia Huckedf22092008-04-30 13:38:39 +0200401 sch->schib.pmcw.isc = sch->isc;
Cornelia Huckb279a4f2008-01-26 14:10:45 +0100402 sch->schib.pmcw.intparm = intparm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 ret = cio_modify(sch);
404 if (ret == -ENODEV)
405 break;
406 if (ret == -EIO)
407 /*
408 * Got a program check in cio_modify. Try without
409 * the concurrent sense bit the next time.
410 */
411 sch->schib.pmcw.csense = 0;
412 if (ret == 0) {
Sebastian Ottcdb912a2008-12-25 13:39:12 +0100413 if (cio_update_schib(sch)) {
414 ret = -ENODEV;
415 break;
416 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 if (sch->schib.pmcw.ena)
418 break;
419 }
420 if (ret == -EBUSY) {
421 struct irb irb;
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800422 if (tsch(sch->schid, &irb) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 break;
424 }
425 }
426 sprintf (dbf_txt, "ret:%d", ret);
427 CIO_TRACE_EVENT (2, dbf_txt);
428 return ret;
429}
Cornelia Huck44a1c192008-07-14 09:58:47 +0200430EXPORT_SYMBOL_GPL(cio_enable_subchannel);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431
Cornelia Huck44a1c192008-07-14 09:58:47 +0200432/**
433 * cio_disable_subchannel - disable a subchannel.
434 * @sch: subchannel to disable
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 */
Cornelia Huck44a1c192008-07-14 09:58:47 +0200436int cio_disable_subchannel(struct subchannel *sch)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437{
438 char dbf_txt[15];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 int retry;
440 int ret;
441
442 CIO_TRACE_EVENT (2, "dissch");
Kay Sievers2a0217d2008-10-10 21:33:09 +0200443 CIO_TRACE_EVENT(2, dev_name(&sch->dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444
Cornelia Huckd7b5a4c92006-12-08 15:54:28 +0100445 if (sch_is_pseudo_sch(sch))
446 return 0;
Sebastian Ottcdb912a2008-12-25 13:39:12 +0100447 if (cio_update_schib(sch))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 return -ENODEV;
449
Peter Oberparleiter23d805b62008-07-14 09:58:50 +0200450 if (scsw_actl(&sch->schib.scsw) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 /*
452 * the disable function must not be called while there are
453 * requests pending for completion !
454 */
455 return -EBUSY;
456
457 for (retry = 5, ret = 0; retry > 0; retry--) {
458 sch->schib.pmcw.ena = 0;
459 ret = cio_modify(sch);
460 if (ret == -ENODEV)
461 break;
462 if (ret == -EBUSY)
463 /*
464 * The subchannel is busy or status pending.
465 * We'll disable when the next interrupt was delivered
466 * via the state machine.
467 */
468 break;
469 if (ret == 0) {
Sebastian Ottcdb912a2008-12-25 13:39:12 +0100470 if (cio_update_schib(sch)) {
471 ret = -ENODEV;
472 break;
473 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 if (!sch->schib.pmcw.ena)
475 break;
476 }
477 }
478 sprintf (dbf_txt, "ret:%d", ret);
479 CIO_TRACE_EVENT (2, dbf_txt);
480 return ret;
481}
Cornelia Huck44a1c192008-07-14 09:58:47 +0200482EXPORT_SYMBOL_GPL(cio_disable_subchannel);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483
Cornelia Huckd7b5a4c92006-12-08 15:54:28 +0100484int cio_create_sch_lock(struct subchannel *sch)
Cornelia Huck2ec22982006-12-08 15:54:26 +0100485{
486 sch->lock = kmalloc(sizeof(spinlock_t), GFP_KERNEL);
487 if (!sch->lock)
488 return -ENOMEM;
489 spin_lock_init(sch->lock);
490 return 0;
491}
492
Cornelia Huckb3a686f2008-07-14 09:58:48 +0200493static int cio_check_devno_blacklisted(struct subchannel *sch)
Cornelia Huck0ae7a7b2008-07-14 09:58:43 +0200494{
Cornelia Huck0ae7a7b2008-07-14 09:58:43 +0200495 if (is_blacklisted(sch->schid.ssid, sch->schib.pmcw.dev)) {
496 /*
497 * This device must not be known to Linux. So we simply
498 * say that there is no device and return ENODEV.
499 */
500 CIO_MSG_EVENT(6, "Blacklisted device detected "
501 "at devno %04X, subchannel set %x\n",
502 sch->schib.pmcw.dev, sch->schid.ssid);
503 return -ENODEV;
504 }
505 return 0;
506}
507
Cornelia Huckb3a686f2008-07-14 09:58:48 +0200508static int cio_validate_io_subchannel(struct subchannel *sch)
509{
510 /* Initialization for io subchannels. */
511 if (!css_sch_is_valid(&sch->schib))
512 return -ENODEV;
513
514 /* Devno is valid. */
515 return cio_check_devno_blacklisted(sch);
516}
517
518static int cio_validate_msg_subchannel(struct subchannel *sch)
519{
520 /* Initialization for message subchannels. */
521 if (!css_sch_is_valid(&sch->schib))
522 return -ENODEV;
523
524 /* Devno is valid. */
525 return cio_check_devno_blacklisted(sch);
526}
527
Cornelia Huck0ae7a7b2008-07-14 09:58:43 +0200528/**
529 * cio_validate_subchannel - basic validation of subchannel
530 * @sch: subchannel structure to be filled out
531 * @schid: subchannel id
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 *
533 * Find out subchannel type and initialize struct subchannel.
534 * Return codes:
Cornelia Huck0ae7a7b2008-07-14 09:58:43 +0200535 * 0 on success
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 * -ENXIO for non-defined subchannels
Cornelia Huck0ae7a7b2008-07-14 09:58:43 +0200537 * -ENODEV for invalid subchannels or blacklisted devices
538 * -EIO for subchannels in an invalid subchannel set
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 */
Cornelia Huck0ae7a7b2008-07-14 09:58:43 +0200540int cio_validate_subchannel(struct subchannel *sch, struct subchannel_id schid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541{
542 char dbf_txt[15];
543 int ccode;
Cornelia Huck2ec22982006-12-08 15:54:26 +0100544 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545
Cornelia Huck0ae7a7b2008-07-14 09:58:43 +0200546 sprintf(dbf_txt, "valsch%x", schid.sch_no);
547 CIO_TRACE_EVENT(4, dbf_txt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548
549 /* Nuke all fields. */
550 memset(sch, 0, sizeof(struct subchannel));
551
Cornelia Huck2ec22982006-12-08 15:54:26 +0100552 sch->schid = schid;
553 if (cio_is_console(schid)) {
554 sch->lock = cio_get_console_lock();
555 } else {
556 err = cio_create_sch_lock(sch);
557 if (err)
558 goto out;
559 }
Cornelia Huck6ab48792006-07-12 16:39:50 +0200560 mutex_init(&sch->reg_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 /* Set a name for the subchannel */
Cornelia Huck1f4e7ed2008-10-10 21:33:14 +0200562 if (cio_is_console(schid))
563 sch->dev.init_name = cio_get_console_sch_name(schid);
564 else
565 dev_set_name(&sch->dev, "0.%x.%04x", schid.ssid, schid.sch_no);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566
567 /*
568 * The first subchannel that is not-operational (ccode==3)
569 * indicates that there aren't any more devices available.
Cornelia Huckfb6958a2006-01-06 00:19:25 -0800570 * If stsch gets an exception, it means the current subchannel set
571 * is not valid.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 */
Cornelia Huckfb6958a2006-01-06 00:19:25 -0800573 ccode = stsch_err (schid, &sch->schib);
Cornelia Huck2ec22982006-12-08 15:54:26 +0100574 if (ccode) {
575 err = (ccode == 3) ? -ENXIO : ccode;
576 goto out;
577 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 /* Copy subchannel type from path management control word. */
579 sch->st = sch->schib.pmcw.st;
Cornelia Huckc820de32008-07-14 09:58:45 +0200580
Cornelia Huck0ae7a7b2008-07-14 09:58:43 +0200581 switch (sch->st) {
582 case SUBCHANNEL_TYPE_IO:
583 err = cio_validate_io_subchannel(sch);
584 break;
Cornelia Huckb3a686f2008-07-14 09:58:48 +0200585 case SUBCHANNEL_TYPE_MSG:
586 err = cio_validate_msg_subchannel(sch);
587 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);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 return 0;
Cornelia Huck2ec22982006-12-08 15:54:26 +0100597out:
598 if (!cio_is_console(schid))
599 kfree(sch->lock);
600 sch->lock = NULL;
601 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602}
603
604/*
605 * do_IRQ() handles all normal I/O device IRQ's (the special
606 * SMP cross-CPU interrupts have their own specific
607 * handlers).
608 *
609 */
610void
611do_IRQ (struct pt_regs *regs)
612{
613 struct tpi_info *tpi_info;
614 struct subchannel *sch;
615 struct irb *irb;
Heiko Carstens5a489b982006-10-06 16:38:35 +0200616 struct pt_regs *old_regs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617
Heiko Carstens5a489b982006-10-06 16:38:35 +0200618 old_regs = set_irq_regs(regs);
Heiko Carstens9d0a57c2006-10-11 15:31:26 +0200619 irq_enter();
Heiko Carstens43ca5c32008-04-17 07:46:23 +0200620 s390_idle_check();
Heiko Carstens5a62b192008-04-17 07:46:25 +0200621 if (S390_lowcore.int_clock >= S390_lowcore.clock_comparator)
622 /* Serve timer interrupts first. */
623 clock_comparator_work();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 /*
625 * Get interrupt information from lowcore
626 */
627 tpi_info = (struct tpi_info *) __LC_SUBCHANNEL_ID;
628 irb = (struct irb *) __LC_IRB;
629 do {
630 kstat_cpu(smp_processor_id()).irqs[IO_INTERRUPT]++;
631 /*
632 * Non I/O-subchannel thin interrupts are processed differently
633 */
634 if (tpi_info->adapter_IO == 1 &&
635 tpi_info->int_type == IO_INTERRUPT_TYPE) {
Cornelia Huckda7c5af2008-07-14 09:58:59 +0200636 do_adapter_IO(tpi_info->isc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 continue;
638 }
639 sch = (struct subchannel *)(unsigned long)tpi_info->intparm;
Heiko Carstensa8061702008-04-17 07:46:26 +0200640 if (!sch) {
641 /* Clear pending interrupt condition. */
642 tsch(tpi_info->schid, irb);
643 continue;
644 }
645 spin_lock(sch->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 /* Store interrupt response block to lowcore. */
Heiko Carstensa8061702008-04-17 07:46:26 +0200647 if (tsch(tpi_info->schid, irb) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 /* Keep subchannel information word up to date. */
649 memcpy (&sch->schib.scsw, &irb->scsw,
650 sizeof (irb->scsw));
651 /* Call interrupt handler if there is one. */
652 if (sch->driver && sch->driver->irq)
Cornelia Huck602b20f2008-01-26 14:10:39 +0100653 sch->driver->irq(sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 }
Heiko Carstensa8061702008-04-17 07:46:26 +0200655 spin_unlock(sch->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 /*
657 * Are more interrupts pending?
658 * If so, the tpi instruction will update the lowcore
659 * to hold the info for the next interrupt.
660 * We don't do this for VM because a tpi drops the cpu
661 * out of the sie which costs more cycles than it saves.
662 */
663 } while (!MACHINE_IS_VM && tpi (NULL) != 0);
Heiko Carstens9d0a57c2006-10-11 15:31:26 +0200664 irq_exit();
Heiko Carstens5a489b982006-10-06 16:38:35 +0200665 set_irq_regs(old_regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666}
667
668#ifdef CONFIG_CCW_CONSOLE
669static struct subchannel console_subchannel;
Cornelia Huck1f4e7ed2008-10-10 21:33:14 +0200670static char console_sch_name[10] = "0.x.xxxx";
Cornelia Huckcd6b4f22008-01-26 14:10:43 +0100671static struct io_subchannel_private console_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672static int console_subchannel_in_use;
673
Heiko Carstens191fd442008-12-25 13:39:01 +0100674/*
675 * Use tpi to get a pending interrupt, call the interrupt handler and
676 * return a pointer to the subchannel structure.
677 */
678static int cio_tpi(void)
679{
680 struct tpi_info *tpi_info;
681 struct subchannel *sch;
682 struct irb *irb;
683 int irq_context;
684
685 tpi_info = (struct tpi_info *) __LC_SUBCHANNEL_ID;
686 if (tpi(NULL) != 1)
687 return 0;
688 irb = (struct irb *) __LC_IRB;
689 /* Store interrupt response block to lowcore. */
690 if (tsch(tpi_info->schid, irb) != 0)
691 /* Not status pending or not operational. */
692 return 1;
693 sch = (struct subchannel *)(unsigned long)tpi_info->intparm;
694 if (!sch)
695 return 1;
696 irq_context = in_interrupt();
697 if (!irq_context)
698 local_bh_disable();
699 irq_enter();
700 spin_lock(sch->lock);
701 memcpy(&sch->schib.scsw, &irb->scsw, sizeof(union scsw));
702 if (sch->driver && sch->driver->irq)
703 sch->driver->irq(sch);
704 spin_unlock(sch->lock);
705 irq_exit();
706 if (!irq_context)
707 _local_bh_enable();
708 return 1;
709}
710
Cornelia Huckcd6b4f22008-01-26 14:10:43 +0100711void *cio_get_console_priv(void)
712{
713 return &console_priv;
714}
715
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716/*
717 * busy wait for the next interrupt on the console
718 */
Heiko Carstensa8061702008-04-17 07:46:26 +0200719void wait_cons_dev(void)
720 __releases(console_subchannel.lock)
721 __acquires(console_subchannel.lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722{
723 unsigned long cr6 __attribute__ ((aligned (8)));
724 unsigned long save_cr6 __attribute__ ((aligned (8)));
725
726 /*
727 * before entering the spinlock we may already have
728 * processed the interrupt on a different CPU...
729 */
730 if (!console_subchannel_in_use)
731 return;
732
Cornelia Huck3a3fc292008-07-14 09:58:58 +0200733 /* disable all but the console isc */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 __ctl_store (save_cr6, 6, 6);
Cornelia Huck3a3fc292008-07-14 09:58:58 +0200735 cr6 = 1UL << (31 - CONSOLE_ISC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 __ctl_load (cr6, 6, 6);
737
738 do {
Cornelia Huck2ec22982006-12-08 15:54:26 +0100739 spin_unlock(console_subchannel.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 if (!cio_tpi())
741 cpu_relax();
Cornelia Huck2ec22982006-12-08 15:54:26 +0100742 spin_lock(console_subchannel.lock);
Peter Oberparleiter23d805b62008-07-14 09:58:50 +0200743 } while (console_subchannel.schib.scsw.cmd.actl != 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 /*
745 * restore previous isc value
746 */
747 __ctl_load (save_cr6, 6, 6);
748}
749
750static int
Cornelia Huckf97a56f2006-01-06 00:19:22 -0800751cio_test_for_console(struct subchannel_id schid, void *data)
752{
Cornelia Huckfb6958a2006-01-06 00:19:25 -0800753 if (stsch_err(schid, &console_subchannel.schib) != 0)
Cornelia Huckf97a56f2006-01-06 00:19:22 -0800754 return -ENXIO;
Cornelia Huckb279a4f2008-01-26 14:10:45 +0100755 if ((console_subchannel.schib.pmcw.st == SUBCHANNEL_TYPE_IO) &&
756 console_subchannel.schib.pmcw.dnv &&
757 (console_subchannel.schib.pmcw.dev == console_devno)) {
Cornelia Huckf97a56f2006-01-06 00:19:22 -0800758 console_irq = schid.sch_no;
759 return 1; /* found */
760 }
761 return 0;
762}
763
764
765static int
766cio_get_console_sch_no(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767{
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800768 struct subchannel_id schid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800770 init_subchannel_id(&schid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 if (console_irq != -1) {
772 /* VM provided us with the irq number of the console. */
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800773 schid.sch_no = console_irq;
774 if (stsch(schid, &console_subchannel.schib) != 0 ||
Cornelia Huckb279a4f2008-01-26 14:10:45 +0100775 (console_subchannel.schib.pmcw.st != SUBCHANNEL_TYPE_IO) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 !console_subchannel.schib.pmcw.dnv)
777 return -1;
778 console_devno = console_subchannel.schib.pmcw.dev;
779 } else if (console_devno != -1) {
780 /* At least the console device number is known. */
Cornelia Huckf97a56f2006-01-06 00:19:22 -0800781 for_each_subchannel(cio_test_for_console, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 if (console_irq == -1)
783 return -1;
784 } else {
785 /* unlike in 2.4, we cannot autoprobe here, since
786 * the channel subsystem is not fully initialized.
787 * With some luck, the HWC console can take over */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 return -1;
789 }
790 return console_irq;
791}
792
793struct subchannel *
794cio_probe_console(void)
795{
Cornelia Huckf97a56f2006-01-06 00:19:22 -0800796 int sch_no, ret;
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800797 struct subchannel_id schid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798
799 if (xchg(&console_subchannel_in_use, 1) != 0)
800 return ERR_PTR(-EBUSY);
Cornelia Huckf97a56f2006-01-06 00:19:22 -0800801 sch_no = cio_get_console_sch_no();
802 if (sch_no == -1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 console_subchannel_in_use = 0;
Michael Ernstc78aa6c2008-07-14 09:59:22 +0200804 printk(KERN_WARNING "cio: No ccw console found!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 return ERR_PTR(-ENODEV);
806 }
807 memset(&console_subchannel, 0, sizeof(struct subchannel));
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800808 init_subchannel_id(&schid);
Cornelia Huckf97a56f2006-01-06 00:19:22 -0800809 schid.sch_no = sch_no;
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800810 ret = cio_validate_subchannel(&console_subchannel, schid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 if (ret) {
812 console_subchannel_in_use = 0;
813 return ERR_PTR(-ENODEV);
814 }
815
816 /*
Cornelia Huck3a3fc292008-07-14 09:58:58 +0200817 * enable console I/O-interrupt subclass
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 */
Cornelia Huck6ef556c2008-07-14 09:59:01 +0200819 isc_register(CONSOLE_ISC);
Cornelia Huck3a3fc292008-07-14 09:58:58 +0200820 console_subchannel.schib.pmcw.isc = CONSOLE_ISC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 console_subchannel.schib.pmcw.intparm =
Cornelia Huckcd6b4f22008-01-26 14:10:43 +0100822 (u32)(addr_t)&console_subchannel;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 ret = cio_modify(&console_subchannel);
824 if (ret) {
Cornelia Huck6ef556c2008-07-14 09:59:01 +0200825 isc_unregister(CONSOLE_ISC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 console_subchannel_in_use = 0;
827 return ERR_PTR(ret);
828 }
829 return &console_subchannel;
830}
831
832void
833cio_release_console(void)
834{
835 console_subchannel.schib.pmcw.intparm = 0;
836 cio_modify(&console_subchannel);
Cornelia Huck6ef556c2008-07-14 09:59:01 +0200837 isc_unregister(CONSOLE_ISC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 console_subchannel_in_use = 0;
839}
840
841/* Bah... hack to catch console special sausages. */
842int
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800843cio_is_console(struct subchannel_id schid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844{
845 if (!console_subchannel_in_use)
846 return 0;
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800847 return schid_equal(&schid, &console_subchannel.schid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848}
849
850struct subchannel *
851cio_get_console_subchannel(void)
852{
853 if (!console_subchannel_in_use)
Heiko Carstensd2c993d2006-07-12 16:41:55 +0200854 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 return &console_subchannel;
856}
857
Cornelia Huck1f4e7ed2008-10-10 21:33:14 +0200858const char *cio_get_console_sch_name(struct subchannel_id schid)
859{
860 snprintf(console_sch_name, 10, "0.%x.%04x", schid.ssid, schid.sch_no);
861 return (const char *)console_sch_name;
862}
863
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864#endif
Heiko Carstens4d284ca2007-02-05 21:18:53 +0100865static int
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800866__disable_subchannel_easy(struct subchannel_id schid, struct schib *schib)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867{
868 int retry, cc;
869
870 cc = 0;
871 for (retry=0;retry<3;retry++) {
872 schib->pmcw.ena = 0;
873 cc = msch(schid, schib);
874 if (cc)
875 return (cc==3?-ENODEV:-EBUSY);
Sebastian Ottcdb912a2008-12-25 13:39:12 +0100876 if (stsch(schid, schib) || !css_sch_is_valid(schib))
877 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 if (!schib->pmcw.ena)
879 return 0;
880 }
881 return -EBUSY; /* uhm... */
882}
883
Heiko Carstens4d284ca2007-02-05 21:18:53 +0100884static int
Cornelia Huck0ae7a7b2008-07-14 09:58:43 +0200885__clear_io_subchannel_easy(struct subchannel_id schid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886{
887 int retry;
888
889 if (csch(schid))
890 return -ENODEV;
891 for (retry=0;retry<20;retry++) {
892 struct tpi_info ti;
893
894 if (tpi(&ti)) {
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800895 tsch(ti.schid, (struct irb *)__LC_IRB);
896 if (schid_equal(&ti.schid, &schid))
Cornelia Huck4c24da72005-09-03 15:58:01 -0700897 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 }
Heiko Carstens5a0d0e62008-10-10 21:33:22 +0200899 udelay_simple(100);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 }
901 return -EBUSY;
902}
903
Cornelia Huck9d92a7e2008-07-14 09:59:05 +0200904static void __clear_chsc_subchannel_easy(void)
905{
906 /* It seems we can only wait for a bit here :/ */
Heiko Carstens5a0d0e62008-10-10 21:33:22 +0200907 udelay_simple(100);
Cornelia Huck9d92a7e2008-07-14 09:59:05 +0200908}
909
Michael Holzheua45e1412006-12-15 17:18:22 +0100910static int pgm_check_occured;
911
912static void cio_reset_pgm_check_handler(void)
913{
914 pgm_check_occured = 1;
915}
916
Peter Oberparleiterf9c9fe32008-10-10 21:33:15 +0200917static int stsch_reset(struct subchannel_id schid, struct schib *addr)
Michael Holzheua45e1412006-12-15 17:18:22 +0100918{
919 int rc;
920
921 pgm_check_occured = 0;
Heiko Carstensab14de62007-02-05 21:18:37 +0100922 s390_base_pgm_handler_fn = cio_reset_pgm_check_handler;
Heiko Carstens6faf4442007-01-09 10:18:41 +0100923 rc = stsch(schid, addr);
Heiko Carstensab14de62007-02-05 21:18:37 +0100924 s390_base_pgm_handler_fn = NULL;
Heiko Carstens6faf4442007-01-09 10:18:41 +0100925
Heiko Carstensab14de62007-02-05 21:18:37 +0100926 /* The program check handler could have changed pgm_check_occured. */
Heiko Carstens6faf4442007-01-09 10:18:41 +0100927 barrier();
928
Michael Holzheua45e1412006-12-15 17:18:22 +0100929 if (pgm_check_occured)
930 return -EIO;
931 else
932 return rc;
933}
934
Heiko Carstens15e9b582006-12-04 15:40:26 +0100935static int __shutdown_subchannel_easy(struct subchannel_id schid, void *data)
Cornelia Huckf97a56f2006-01-06 00:19:22 -0800936{
937 struct schib schib;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938
Michael Holzheua45e1412006-12-15 17:18:22 +0100939 if (stsch_reset(schid, &schib))
Cornelia Huckf97a56f2006-01-06 00:19:22 -0800940 return -ENXIO;
941 if (!schib.pmcw.ena)
942 return 0;
943 switch(__disable_subchannel_easy(schid, &schib)) {
944 case 0:
945 case -ENODEV:
946 break;
947 default: /* -EBUSY */
Cornelia Huck0ae7a7b2008-07-14 09:58:43 +0200948 switch (schib.pmcw.st) {
949 case SUBCHANNEL_TYPE_IO:
950 if (__clear_io_subchannel_easy(schid))
951 goto out; /* give up... */
952 break;
Cornelia Huck9d92a7e2008-07-14 09:59:05 +0200953 case SUBCHANNEL_TYPE_CHSC:
954 __clear_chsc_subchannel_easy();
955 break;
Cornelia Huck0ae7a7b2008-07-14 09:58:43 +0200956 default:
957 /* No default clear strategy */
958 break;
959 }
Cornelia Huckf97a56f2006-01-06 00:19:22 -0800960 stsch(schid, &schib);
961 __disable_subchannel_easy(schid, &schib);
962 }
Cornelia Huck0ae7a7b2008-07-14 09:58:43 +0200963out:
Cornelia Huckf97a56f2006-01-06 00:19:22 -0800964 return 0;
965}
966
Heiko Carstens15e9b582006-12-04 15:40:26 +0100967static atomic_t chpid_reset_count;
968
969static void s390_reset_chpids_mcck_handler(void)
970{
971 struct crw crw;
972 struct mci *mci;
973
974 /* Check for pending channel report word. */
975 mci = (struct mci *)&S390_lowcore.mcck_interruption_code;
976 if (!mci->cp)
977 return;
978 /* Process channel report words. */
979 while (stcrw(&crw) == 0) {
980 /* Check for responses to RCHP. */
981 if (crw.slct && crw.rsc == CRW_RSC_CPATH)
982 atomic_dec(&chpid_reset_count);
983 }
984}
985
986#define RCHP_TIMEOUT (30 * USEC_PER_SEC)
987static void css_reset(void)
988{
989 int i, ret;
990 unsigned long long timeout;
Peter Oberparleiterf86635f2007-04-27 16:01:26 +0200991 struct chp_id chpid;
Heiko Carstens15e9b582006-12-04 15:40:26 +0100992
993 /* Reset subchannels. */
994 for_each_subchannel(__shutdown_subchannel_easy, NULL);
995 /* Reset channel paths. */
Heiko Carstensab14de62007-02-05 21:18:37 +0100996 s390_base_mcck_handler_fn = s390_reset_chpids_mcck_handler;
Heiko Carstens15e9b582006-12-04 15:40:26 +0100997 /* Enable channel report machine checks. */
998 __ctl_set_bit(14, 28);
999 /* Temporarily reenable machine checks. */
1000 local_mcck_enable();
Peter Oberparleiterf86635f2007-04-27 16:01:26 +02001001 chp_id_init(&chpid);
Heiko Carstens15e9b582006-12-04 15:40:26 +01001002 for (i = 0; i <= __MAX_CHPID; i++) {
Peter Oberparleiterf86635f2007-04-27 16:01:26 +02001003 chpid.id = i;
1004 ret = rchp(chpid);
Heiko Carstens15e9b582006-12-04 15:40:26 +01001005 if ((ret == 0) || (ret == 2))
1006 /*
1007 * rchp either succeeded, or another rchp is already
1008 * in progress. In either case, we'll get a crw.
1009 */
1010 atomic_inc(&chpid_reset_count);
1011 }
1012 /* Wait for machine check for all channel paths. */
1013 timeout = get_clock() + (RCHP_TIMEOUT << 12);
1014 while (atomic_read(&chpid_reset_count) != 0) {
1015 if (get_clock() > timeout)
1016 break;
1017 cpu_relax();
1018 }
1019 /* Disable machine checks again. */
1020 local_mcck_disable();
1021 /* Disable channel report machine checks. */
1022 __ctl_clear_bit(14, 28);
Heiko Carstensab14de62007-02-05 21:18:37 +01001023 s390_base_mcck_handler_fn = NULL;
Heiko Carstens15e9b582006-12-04 15:40:26 +01001024}
1025
1026static struct reset_call css_reset_call = {
1027 .fn = css_reset,
1028};
1029
1030static int __init init_css_reset_call(void)
1031{
1032 atomic_set(&chpid_reset_count, 0);
1033 register_reset_call(&css_reset_call);
1034 return 0;
1035}
1036
1037arch_initcall(init_css_reset_call);
1038
1039struct sch_match_id {
1040 struct subchannel_id schid;
1041 struct ccw_dev_id devid;
1042 int rc;
1043};
1044
1045static int __reipl_subchannel_match(struct subchannel_id schid, void *data)
1046{
1047 struct schib schib;
1048 struct sch_match_id *match_id = data;
1049
Michael Holzheua45e1412006-12-15 17:18:22 +01001050 if (stsch_reset(schid, &schib))
Heiko Carstens15e9b582006-12-04 15:40:26 +01001051 return -ENXIO;
Cornelia Huckb279a4f2008-01-26 14:10:45 +01001052 if ((schib.pmcw.st == SUBCHANNEL_TYPE_IO) && schib.pmcw.dnv &&
Heiko Carstens15e9b582006-12-04 15:40:26 +01001053 (schib.pmcw.dev == match_id->devid.devno) &&
1054 (schid.ssid == match_id->devid.ssid)) {
1055 match_id->schid = schid;
1056 match_id->rc = 0;
1057 return 1;
1058 }
1059 return 0;
1060}
1061
1062static int reipl_find_schid(struct ccw_dev_id *devid,
1063 struct subchannel_id *schid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064{
Michael Holzheuff6b8ea2006-09-20 15:58:49 +02001065 struct sch_match_id match_id;
1066
1067 match_id.devid = *devid;
1068 match_id.rc = -ENODEV;
Heiko Carstens15e9b582006-12-04 15:40:26 +01001069 for_each_subchannel(__reipl_subchannel_match, &match_id);
Michael Holzheuff6b8ea2006-09-20 15:58:49 +02001070 if (match_id.rc == 0)
1071 *schid = match_id.schid;
1072 return match_id.rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073}
1074
Michael Holzheuff6b8ea2006-09-20 15:58:49 +02001075extern void do_reipl_asm(__u32 schid);
1076
1077/* Make sure all subchannels are quiet before we re-ipl an lpar. */
1078void reipl_ccw_dev(struct ccw_dev_id *devid)
1079{
1080 struct subchannel_id schid;
1081
Heiko Carstens15e9b582006-12-04 15:40:26 +01001082 s390_reset_system();
1083 if (reipl_find_schid(devid, &schid) != 0)
Michael Holzheuff6b8ea2006-09-20 15:58:49 +02001084 panic("IPL Device not found\n");
Michael Holzheuff6b8ea2006-09-20 15:58:49 +02001085 do_reipl_asm(*((__u32*)&schid));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086}
Heiko Carstense87bfe52006-09-20 15:59:15 +02001087
Heiko Carstens6fc321f2007-04-27 16:01:25 +02001088int __init cio_get_iplinfo(struct cio_iplinfo *iplinfo)
Heiko Carstense87bfe52006-09-20 15:59:15 +02001089{
1090 struct subchannel_id schid;
Heiko Carstens6fc321f2007-04-27 16:01:25 +02001091 struct schib schib;
Heiko Carstense87bfe52006-09-20 15:59:15 +02001092
1093 schid = *(struct subchannel_id *)__LC_SUBCHANNEL_ID;
1094 if (!schid.one)
Heiko Carstens6fc321f2007-04-27 16:01:25 +02001095 return -ENODEV;
1096 if (stsch(schid, &schib))
1097 return -ENODEV;
Cornelia Huckb279a4f2008-01-26 14:10:45 +01001098 if (schib.pmcw.st != SUBCHANNEL_TYPE_IO)
1099 return -ENODEV;
Heiko Carstens6fc321f2007-04-27 16:01:25 +02001100 if (!schib.pmcw.dnv)
1101 return -ENODEV;
1102 iplinfo->devno = schib.pmcw.dev;
1103 iplinfo->is_qdio = schib.pmcw.qf;
1104 return 0;
Heiko Carstense87bfe52006-09-20 15:59:15 +02001105}
Peter Oberparleiter83262d62008-07-14 09:58:51 +02001106
1107/**
1108 * cio_tm_start_key - perform start function
1109 * @sch: subchannel on which to perform the start function
1110 * @tcw: transport-command word to be started
1111 * @lpm: mask of paths to use
1112 * @key: storage key to use for storage access
1113 *
1114 * Start the tcw on the given subchannel. Return zero on success, non-zero
1115 * otherwise.
1116 */
1117int cio_tm_start_key(struct subchannel *sch, struct tcw *tcw, u8 lpm, u8 key)
1118{
1119 int cc;
1120 union orb *orb = &to_io_private(sch)->orb;
1121
1122 memset(orb, 0, sizeof(union orb));
1123 orb->tm.intparm = (u32) (addr_t) sch;
1124 orb->tm.key = key >> 4;
1125 orb->tm.b = 1;
1126 orb->tm.lpm = lpm ? lpm : sch->lpm;
1127 orb->tm.tcw = (u32) (addr_t) tcw;
1128 cc = ssch(sch->schid, orb);
1129 switch (cc) {
1130 case 0:
1131 return 0;
1132 case 1:
1133 case 2:
1134 return -EBUSY;
1135 default:
1136 return cio_start_handle_notoper(sch, lpm);
1137 }
1138}
1139
1140/**
1141 * cio_tm_intrg - perform interrogate function
1142 * @sch - subchannel on which to perform the interrogate function
1143 *
1144 * If the specified subchannel is running in transport-mode, perform the
1145 * interrogate function. Return zero on success, non-zero otherwie.
1146 */
1147int cio_tm_intrg(struct subchannel *sch)
1148{
1149 int cc;
1150
1151 if (!to_io_private(sch)->orb.tm.b)
1152 return -EINVAL;
1153 cc = xsch(sch->schid);
1154 switch (cc) {
1155 case 0:
1156 case 2:
1157 return 0;
1158 case 1:
1159 return -EBUSY;
1160 default:
1161 return -ENODEV;
1162 }
1163}