[S390] cio: Fix ungroup vs. machine check race in ccwgroup.
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / drivers / s390 / cio / cio.c
CommitLineData
1da177e4
LT
1/*
2 * drivers/s390/cio/cio.c
3 * S/390 common I/O routines -- low level i/o calls
1da177e4 4 *
aa77015c 5 * Copyright (C) IBM Corp. 1999,2006
1da177e4 6 * Author(s): Ingo Adlung (adlung@de.ibm.com)
4ce3b30c 7 * Cornelia Huck (cornelia.huck@de.ibm.com)
1da177e4
LT
8 * Arnd Bergmann (arndb@de.ibm.com)
9 * Martin Schwidefsky (schwidefsky@de.ibm.com)
10 */
11
12#include <linux/module.h>
1da177e4
LT
13#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>
1da177e4
LT
18#include <asm/cio.h>
19#include <asm/delay.h>
20#include <asm/irq.h>
5a489b98 21#include <asm/irq_regs.h>
e87bfe51 22#include <asm/setup.h>
15e9b586 23#include <asm/reset.h>
46b05d26 24#include <asm/ipl.h>
e5854a58 25#include <asm/chpid.h>
4e8e56c6 26#include <asm/airq.h>
1da177e4
LT
27#include "cio.h"
28#include "css.h"
29#include "chsc.h"
30#include "ioasm.h"
cd6b4f27 31#include "io_sch.h"
1da177e4
LT
32#include "blacklist.h"
33#include "cio_debug.h"
e6b6e10a 34#include "chp.h"
15e9b586 35#include "../s390mach.h"
1da177e4
LT
36
37debug_info_t *cio_debug_msg_id;
38debug_info_t *cio_debug_trace_id;
39debug_info_t *cio_debug_crw_id;
40
41int cio_show_msg;
42
43static int __init
44cio_setup (char *parm)
45{
46 if (!strcmp (parm, "yes"))
47 cio_show_msg = 1;
48 else if (!strcmp (parm, "no"))
49 cio_show_msg = 0;
50 else
e556bbbd
CH
51 printk(KERN_ERR "cio: cio_setup: "
52 "invalid cio_msg parameter '%s'", parm);
1da177e4
LT
53 return 1;
54}
55
56__setup ("cio_msg=", cio_setup);
57
58/*
59 * Function: cio_debug_init
bc698bcf
CH
60 * Initializes three debug logs for common I/O:
61 * - cio_msg logs generic cio messages
1da177e4 62 * - cio_trace logs the calling of different functions
bc698bcf 63 * - cio_crw logs machine check related cio messages
1da177e4 64 */
bc698bcf 65static int __init cio_debug_init(void)
1da177e4 66{
bc698bcf 67 cio_debug_msg_id = debug_register("cio_msg", 16, 4, 16 * sizeof(long));
1da177e4
LT
68 if (!cio_debug_msg_id)
69 goto out_unregister;
bc698bcf
CH
70 debug_register_view(cio_debug_msg_id, &debug_sprintf_view);
71 debug_set_level(cio_debug_msg_id, 2);
72 cio_debug_trace_id = debug_register("cio_trace", 16, 4, 16);
1da177e4
LT
73 if (!cio_debug_trace_id)
74 goto out_unregister;
bc698bcf
CH
75 debug_register_view(cio_debug_trace_id, &debug_hex_ascii_view);
76 debug_set_level(cio_debug_trace_id, 2);
77 cio_debug_crw_id = debug_register("cio_crw", 16, 4, 16 * sizeof(long));
1da177e4
LT
78 if (!cio_debug_crw_id)
79 goto out_unregister;
bc698bcf
CH
80 debug_register_view(cio_debug_crw_id, &debug_sprintf_view);
81 debug_set_level(cio_debug_crw_id, 4);
1da177e4
LT
82 return 0;
83
84out_unregister:
85 if (cio_debug_msg_id)
bc698bcf 86 debug_unregister(cio_debug_msg_id);
1da177e4 87 if (cio_debug_trace_id)
bc698bcf 88 debug_unregister(cio_debug_trace_id);
1da177e4 89 if (cio_debug_crw_id)
bc698bcf 90 debug_unregister(cio_debug_crw_id);
e556bbbd 91 printk(KERN_WARNING"cio: could not initialize debugging\n");
1da177e4
LT
92 return -1;
93}
94
95arch_initcall (cio_debug_init);
96
97int
98cio_set_options (struct subchannel *sch, int flags)
99{
100 sch->options.suspend = (flags & DOIO_ALLOW_SUSPEND) != 0;
101 sch->options.prefetch = (flags & DOIO_DENY_PREFETCH) != 0;
102 sch->options.inter = (flags & DOIO_SUPPRESS_INTER) != 0;
103 return 0;
104}
105
106/* FIXME: who wants to use this? */
107int
108cio_get_options (struct subchannel *sch)
109{
110 int flags;
111
112 flags = 0;
113 if (sch->options.suspend)
114 flags |= DOIO_ALLOW_SUSPEND;
115 if (sch->options.prefetch)
116 flags |= DOIO_DENY_PREFETCH;
117 if (sch->options.inter)
118 flags |= DOIO_SUPPRESS_INTER;
119 return flags;
120}
121
122/*
123 * Use tpi to get a pending interrupt, call the interrupt handler and
124 * return a pointer to the subchannel structure.
125 */
4d284cac 126static int
1da177e4
LT
127cio_tpi(void)
128{
129 struct tpi_info *tpi_info;
130 struct subchannel *sch;
131 struct irb *irb;
132
133 tpi_info = (struct tpi_info *) __LC_SUBCHANNEL_ID;
134 if (tpi (NULL) != 1)
135 return 0;
136 irb = (struct irb *) __LC_IRB;
137 /* Store interrupt response block to lowcore. */
a8237fc4 138 if (tsch (tpi_info->schid, irb) != 0)
1da177e4
LT
139 /* Not status pending or not operational. */
140 return 1;
141 sch = (struct subchannel *)(unsigned long)tpi_info->intparm;
142 if (!sch)
143 return 1;
144 local_bh_disable();
145 irq_enter ();
2ec22984 146 spin_lock(sch->lock);
1da177e4
LT
147 memcpy (&sch->schib.scsw, &irb->scsw, sizeof (struct scsw));
148 if (sch->driver && sch->driver->irq)
602b20f2 149 sch->driver->irq(sch);
2ec22984 150 spin_unlock(sch->lock);
1da177e4 151 irq_exit ();
1f194a4c 152 _local_bh_enable();
1da177e4
LT
153 return 1;
154}
155
4d284cac 156static int
1da177e4
LT
157cio_start_handle_notoper(struct subchannel *sch, __u8 lpm)
158{
159 char dbf_text[15];
160
161 if (lpm != 0)
162 sch->lpm &= ~lpm;
163 else
164 sch->lpm = 0;
165
a8237fc4 166 stsch (sch->schid, &sch->schib);
1da177e4
LT
167
168 CIO_MSG_EVENT(0, "cio_start: 'not oper' status for "
fb6958a5
CH
169 "subchannel 0.%x.%04x!\n", sch->schid.ssid,
170 sch->schid.sch_no);
1da177e4
LT
171 sprintf(dbf_text, "no%s", sch->dev.bus_id);
172 CIO_TRACE_EVENT(0, dbf_text);
173 CIO_HEX_EVENT(0, &sch->schib, sizeof (struct schib));
174
175 return (sch->lpm ? -EACCES : -ENODEV);
176}
177
178int
179cio_start_key (struct subchannel *sch, /* subchannel structure */
180 struct ccw1 * cpa, /* logical channel prog addr */
181 __u8 lpm, /* logical path mask */
182 __u8 key) /* storage key */
183{
184 char dbf_txt[15];
185 int ccode;
cd6b4f27 186 struct orb *orb;
1da177e4 187
cd6b4f27
CH
188 CIO_TRACE_EVENT(4, "stIO");
189 CIO_TRACE_EVENT(4, sch->dev.bus_id);
1da177e4 190
cd6b4f27 191 orb = &to_io_private(sch)->orb;
1da177e4 192 /* sch is always under 2G. */
cd6b4f27
CH
193 orb->intparm = (u32)(addr_t)sch;
194 orb->fmt = 1;
1da177e4 195
cd6b4f27
CH
196 orb->pfch = sch->options.prefetch == 0;
197 orb->spnd = sch->options.suspend;
198 orb->ssic = sch->options.suspend && sch->options.inter;
199 orb->lpm = (lpm != 0) ? lpm : sch->lpm;
347a8dc3 200#ifdef CONFIG_64BIT
1da177e4
LT
201 /*
202 * for 64 bit we always support 64 bit IDAWs with 4k page size only
203 */
cd6b4f27
CH
204 orb->c64 = 1;
205 orb->i2k = 0;
1da177e4 206#endif
cd6b4f27 207 orb->key = key >> 4;
1da177e4 208 /* issue "Start Subchannel" */
cd6b4f27
CH
209 orb->cpa = (__u32) __pa(cpa);
210 ccode = ssch(sch->schid, orb);
1da177e4
LT
211
212 /* process condition code */
cd6b4f27
CH
213 sprintf(dbf_txt, "ccode:%d", ccode);
214 CIO_TRACE_EVENT(4, dbf_txt);
1da177e4
LT
215
216 switch (ccode) {
217 case 0:
218 /*
219 * initialize device status information
220 */
221 sch->schib.scsw.actl |= SCSW_ACTL_START_PEND;
222 return 0;
223 case 1: /* status pending */
224 case 2: /* busy */
225 return -EBUSY;
226 default: /* device/path not operational */
227 return cio_start_handle_notoper(sch, lpm);
228 }
229}
230
231int
232cio_start (struct subchannel *sch, struct ccw1 *cpa, __u8 lpm)
233{
0b642ede 234 return cio_start_key(sch, cpa, lpm, PAGE_DEFAULT_KEY);
1da177e4
LT
235}
236
237/*
238 * resume suspended I/O operation
239 */
240int
241cio_resume (struct subchannel *sch)
242{
243 char dbf_txt[15];
244 int ccode;
245
246 CIO_TRACE_EVENT (4, "resIO");
247 CIO_TRACE_EVENT (4, sch->dev.bus_id);
248
a8237fc4 249 ccode = rsch (sch->schid);
1da177e4
LT
250
251 sprintf (dbf_txt, "ccode:%d", ccode);
252 CIO_TRACE_EVENT (4, dbf_txt);
253
254 switch (ccode) {
255 case 0:
256 sch->schib.scsw.actl |= SCSW_ACTL_RESUME_PEND;
257 return 0;
258 case 1:
259 return -EBUSY;
260 case 2:
261 return -EINVAL;
262 default:
263 /*
264 * useless to wait for request completion
265 * as device is no longer operational !
266 */
267 return -ENODEV;
268 }
269}
270
271/*
272 * halt I/O operation
273 */
274int
275cio_halt(struct subchannel *sch)
276{
277 char dbf_txt[15];
278 int ccode;
279
280 if (!sch)
281 return -ENODEV;
282
283 CIO_TRACE_EVENT (2, "haltIO");
284 CIO_TRACE_EVENT (2, sch->dev.bus_id);
285
286 /*
287 * Issue "Halt subchannel" and process condition code
288 */
a8237fc4 289 ccode = hsch (sch->schid);
1da177e4
LT
290
291 sprintf (dbf_txt, "ccode:%d", ccode);
292 CIO_TRACE_EVENT (2, dbf_txt);
293
294 switch (ccode) {
295 case 0:
296 sch->schib.scsw.actl |= SCSW_ACTL_HALT_PEND;
297 return 0;
298 case 1: /* status pending */
299 case 2: /* busy */
300 return -EBUSY;
301 default: /* device not operational */
302 return -ENODEV;
303 }
304}
305
306/*
307 * Clear I/O operation
308 */
309int
310cio_clear(struct subchannel *sch)
311{
312 char dbf_txt[15];
313 int ccode;
314
315 if (!sch)
316 return -ENODEV;
317
318 CIO_TRACE_EVENT (2, "clearIO");
319 CIO_TRACE_EVENT (2, sch->dev.bus_id);
320
321 /*
322 * Issue "Clear subchannel" and process condition code
323 */
a8237fc4 324 ccode = csch (sch->schid);
1da177e4
LT
325
326 sprintf (dbf_txt, "ccode:%d", ccode);
327 CIO_TRACE_EVENT (2, dbf_txt);
328
329 switch (ccode) {
330 case 0:
331 sch->schib.scsw.actl |= SCSW_ACTL_CLEAR_PEND;
332 return 0;
333 default: /* device not operational */
334 return -ENODEV;
335 }
336}
337
338/*
339 * Function: cio_cancel
340 * Issues a "Cancel Subchannel" on the specified subchannel
341 * Note: We don't need any fancy intparms and flags here
342 * since xsch is executed synchronously.
343 * Only for common I/O internal use as for now.
344 */
345int
346cio_cancel (struct subchannel *sch)
347{
348 char dbf_txt[15];
349 int ccode;
350
351 if (!sch)
352 return -ENODEV;
353
354 CIO_TRACE_EVENT (2, "cancelIO");
355 CIO_TRACE_EVENT (2, sch->dev.bus_id);
356
a8237fc4 357 ccode = xsch (sch->schid);
1da177e4
LT
358
359 sprintf (dbf_txt, "ccode:%d", ccode);
360 CIO_TRACE_EVENT (2, dbf_txt);
361
362 switch (ccode) {
363 case 0: /* success */
364 /* Update information in scsw. */
a8237fc4 365 stsch (sch->schid, &sch->schib);
1da177e4
LT
366 return 0;
367 case 1: /* status pending */
368 return -EBUSY;
369 case 2: /* not applicable */
370 return -EINVAL;
371 default: /* not oper */
372 return -ENODEV;
373 }
374}
375
376/*
377 * Function: cio_modify
378 * Issues a "Modify Subchannel" on the specified subchannel
379 */
380int
381cio_modify (struct subchannel *sch)
382{
383 int ccode, retry, ret;
384
385 ret = 0;
386 for (retry = 0; retry < 5; retry++) {
a8237fc4 387 ccode = msch_err (sch->schid, &sch->schib);
1da177e4
LT
388 if (ccode < 0) /* -EIO if msch gets a program check. */
389 return ccode;
390 switch (ccode) {
391 case 0: /* successfull */
392 return 0;
393 case 1: /* status pending */
394 return -EBUSY;
395 case 2: /* busy */
396 udelay (100); /* allow for recovery */
397 ret = -EBUSY;
398 break;
399 case 3: /* not operational */
400 return -ENODEV;
401 }
402 }
403 return ret;
404}
405
406/*
407 * Enable subchannel.
408 */
b279a4f5
CH
409int cio_enable_subchannel(struct subchannel *sch, unsigned int isc,
410 u32 intparm)
1da177e4
LT
411{
412 char dbf_txt[15];
413 int ccode;
414 int retry;
415 int ret;
416
417 CIO_TRACE_EVENT (2, "ensch");
418 CIO_TRACE_EVENT (2, sch->dev.bus_id);
419
d7b5a4c9
CH
420 if (sch_is_pseudo_sch(sch))
421 return -EINVAL;
a8237fc4 422 ccode = stsch (sch->schid, &sch->schib);
1da177e4
LT
423 if (ccode)
424 return -ENODEV;
425
426 for (retry = 5, ret = 0; retry > 0; retry--) {
427 sch->schib.pmcw.ena = 1;
428 sch->schib.pmcw.isc = isc;
b279a4f5 429 sch->schib.pmcw.intparm = intparm;
1da177e4
LT
430 ret = cio_modify(sch);
431 if (ret == -ENODEV)
432 break;
433 if (ret == -EIO)
434 /*
435 * Got a program check in cio_modify. Try without
436 * the concurrent sense bit the next time.
437 */
438 sch->schib.pmcw.csense = 0;
439 if (ret == 0) {
a8237fc4 440 stsch (sch->schid, &sch->schib);
1da177e4
LT
441 if (sch->schib.pmcw.ena)
442 break;
443 }
444 if (ret == -EBUSY) {
445 struct irb irb;
a8237fc4 446 if (tsch(sch->schid, &irb) != 0)
1da177e4
LT
447 break;
448 }
449 }
450 sprintf (dbf_txt, "ret:%d", ret);
451 CIO_TRACE_EVENT (2, dbf_txt);
452 return ret;
453}
454
455/*
456 * Disable subchannel.
457 */
458int
459cio_disable_subchannel (struct subchannel *sch)
460{
461 char dbf_txt[15];
462 int ccode;
463 int retry;
464 int ret;
465
466 CIO_TRACE_EVENT (2, "dissch");
467 CIO_TRACE_EVENT (2, sch->dev.bus_id);
468
d7b5a4c9
CH
469 if (sch_is_pseudo_sch(sch))
470 return 0;
a8237fc4 471 ccode = stsch (sch->schid, &sch->schib);
1da177e4
LT
472 if (ccode == 3) /* Not operational. */
473 return -ENODEV;
474
475 if (sch->schib.scsw.actl != 0)
476 /*
477 * the disable function must not be called while there are
478 * requests pending for completion !
479 */
480 return -EBUSY;
481
482 for (retry = 5, ret = 0; retry > 0; retry--) {
483 sch->schib.pmcw.ena = 0;
484 ret = cio_modify(sch);
485 if (ret == -ENODEV)
486 break;
487 if (ret == -EBUSY)
488 /*
489 * The subchannel is busy or status pending.
490 * We'll disable when the next interrupt was delivered
491 * via the state machine.
492 */
493 break;
494 if (ret == 0) {
a8237fc4 495 stsch (sch->schid, &sch->schib);
1da177e4
LT
496 if (!sch->schib.pmcw.ena)
497 break;
498 }
499 }
500 sprintf (dbf_txt, "ret:%d", ret);
501 CIO_TRACE_EVENT (2, dbf_txt);
502 return ret;
503}
504
d7b5a4c9 505int cio_create_sch_lock(struct subchannel *sch)
2ec22984
CH
506{
507 sch->lock = kmalloc(sizeof(spinlock_t), GFP_KERNEL);
508 if (!sch->lock)
509 return -ENOMEM;
510 spin_lock_init(sch->lock);
511 return 0;
512}
513
1da177e4
LT
514/*
515 * cio_validate_subchannel()
516 *
517 * Find out subchannel type and initialize struct subchannel.
518 * Return codes:
519 * SUBCHANNEL_TYPE_IO for a normal io subchannel
520 * SUBCHANNEL_TYPE_CHSC for a chsc subchannel
521 * SUBCHANNEL_TYPE_MESSAGE for a messaging subchannel
522 * SUBCHANNEL_TYPE_ADM for a adm(?) subchannel
523 * -ENXIO for non-defined subchannels
524 * -ENODEV for subchannels with invalid device number or blacklisted devices
525 */
526int
a8237fc4 527cio_validate_subchannel (struct subchannel *sch, struct subchannel_id schid)
1da177e4
LT
528{
529 char dbf_txt[15];
530 int ccode;
2ec22984 531 int err;
1da177e4 532
a8237fc4 533 sprintf (dbf_txt, "valsch%x", schid.sch_no);
1da177e4
LT
534 CIO_TRACE_EVENT (4, dbf_txt);
535
536 /* Nuke all fields. */
537 memset(sch, 0, sizeof(struct subchannel));
538
2ec22984
CH
539 sch->schid = schid;
540 if (cio_is_console(schid)) {
541 sch->lock = cio_get_console_lock();
542 } else {
543 err = cio_create_sch_lock(sch);
544 if (err)
545 goto out;
546 }
6ab4879a 547 mutex_init(&sch->reg_mutex);
1da177e4 548 /* Set a name for the subchannel */
fb6958a5
CH
549 snprintf (sch->dev.bus_id, BUS_ID_SIZE, "0.%x.%04x", schid.ssid,
550 schid.sch_no);
1da177e4
LT
551
552 /*
553 * The first subchannel that is not-operational (ccode==3)
554 * indicates that there aren't any more devices available.
fb6958a5
CH
555 * If stsch gets an exception, it means the current subchannel set
556 * is not valid.
1da177e4 557 */
fb6958a5 558 ccode = stsch_err (schid, &sch->schib);
2ec22984
CH
559 if (ccode) {
560 err = (ccode == 3) ? -ENXIO : ccode;
561 goto out;
562 }
1da177e4
LT
563 /* Copy subchannel type from path management control word. */
564 sch->st = sch->schib.pmcw.st;
565
566 /*
567 * ... just being curious we check for non I/O subchannels
568 */
569 if (sch->st != 0) {
570 CIO_DEBUG(KERN_INFO, 0,
bc698bcf 571 "Subchannel 0.%x.%04x reports "
1da177e4 572 "non-I/O subchannel type %04X\n",
fb6958a5 573 sch->schid.ssid, sch->schid.sch_no, sch->st);
1da177e4 574 /* We stop here for non-io subchannels. */
2ec22984
CH
575 err = sch->st;
576 goto out;
1da177e4
LT
577 }
578
579 /* Initialization for io subchannels. */
b279a4f5
CH
580 if (!css_sch_is_valid(&sch->schib))
581 return -ENODEV;
1da177e4 582 /* Devno is valid. */
fb6958a5 583 if (is_blacklisted (sch->schid.ssid, sch->schib.pmcw.dev)) {
1da177e4
LT
584 /*
585 * This device must not be known to Linux. So we simply
586 * say that there is no device and return ENODEV.
587 */
347d59d7 588 CIO_MSG_EVENT(4, "Blacklisted device detected "
fb6958a5
CH
589 "at devno %04X, subchannel set %x\n",
590 sch->schib.pmcw.dev, sch->schid.ssid);
2ec22984
CH
591 err = -ENODEV;
592 goto out;
1da177e4 593 }
e6b6e10a
PO
594 if (cio_is_console(sch->schid))
595 sch->opm = 0xff;
596 else
597 sch->opm = chp_get_sch_opm(sch);
28bdc6f6 598 sch->lpm = sch->schib.pmcw.pam & sch->opm;
1da177e4
LT
599
600 CIO_DEBUG(KERN_INFO, 0,
bc698bcf 601 "Detected device %04x on subchannel 0.%x.%04X"
1da177e4 602 " - PIM = %02X, PAM = %02X, POM = %02X\n",
fb6958a5
CH
603 sch->schib.pmcw.dev, sch->schid.ssid,
604 sch->schid.sch_no, sch->schib.pmcw.pim,
1da177e4
LT
605 sch->schib.pmcw.pam, sch->schib.pmcw.pom);
606
607 /*
608 * We now have to initially ...
609 * ... set "interruption subclass"
610 * ... enable "concurrent sense"
611 * ... enable "multipath mode" if more than one
612 * CHPID is available. This is done regardless
613 * whether multiple paths are available for us.
614 */
615 sch->schib.pmcw.isc = 3; /* could be smth. else */
616 sch->schib.pmcw.csense = 1; /* concurrent sense */
617 sch->schib.pmcw.ena = 0;
618 if ((sch->lpm & (sch->lpm - 1)) != 0)
619 sch->schib.pmcw.mp = 1; /* multipath mode */
1842f2b1
CH
620 /* clean up possible residual cmf stuff */
621 sch->schib.pmcw.mme = 0;
622 sch->schib.pmcw.mbfc = 0;
623 sch->schib.pmcw.mbi = 0;
624 sch->schib.mba = 0;
1da177e4 625 return 0;
2ec22984
CH
626out:
627 if (!cio_is_console(schid))
628 kfree(sch->lock);
629 sch->lock = NULL;
630 return err;
1da177e4
LT
631}
632
633/*
634 * do_IRQ() handles all normal I/O device IRQ's (the special
635 * SMP cross-CPU interrupts have their own specific
636 * handlers).
637 *
638 */
639void
640do_IRQ (struct pt_regs *regs)
641{
642 struct tpi_info *tpi_info;
643 struct subchannel *sch;
644 struct irb *irb;
5a489b98 645 struct pt_regs *old_regs;
1da177e4 646
5a489b98 647 old_regs = set_irq_regs(regs);
9d0a57cb 648 irq_enter();
1da177e4
LT
649 asm volatile ("mc 0,0");
650 if (S390_lowcore.int_clock >= S390_lowcore.jiffy_timer)
651 /**
652 * Make sure that the i/o interrupt did not "overtake"
653 * the last HZ timer interrupt.
654 */
d54853ef 655 account_ticks(S390_lowcore.int_clock);
1da177e4
LT
656 /*
657 * Get interrupt information from lowcore
658 */
659 tpi_info = (struct tpi_info *) __LC_SUBCHANNEL_ID;
660 irb = (struct irb *) __LC_IRB;
661 do {
662 kstat_cpu(smp_processor_id()).irqs[IO_INTERRUPT]++;
663 /*
664 * Non I/O-subchannel thin interrupts are processed differently
665 */
666 if (tpi_info->adapter_IO == 1 &&
667 tpi_info->int_type == IO_INTERRUPT_TYPE) {
668 do_adapter_IO();
669 continue;
670 }
671 sch = (struct subchannel *)(unsigned long)tpi_info->intparm;
672 if (sch)
2ec22984 673 spin_lock(sch->lock);
1da177e4 674 /* Store interrupt response block to lowcore. */
a8237fc4 675 if (tsch (tpi_info->schid, irb) == 0 && sch) {
1da177e4
LT
676 /* Keep subchannel information word up to date. */
677 memcpy (&sch->schib.scsw, &irb->scsw,
678 sizeof (irb->scsw));
679 /* Call interrupt handler if there is one. */
680 if (sch->driver && sch->driver->irq)
602b20f2 681 sch->driver->irq(sch);
1da177e4
LT
682 }
683 if (sch)
2ec22984 684 spin_unlock(sch->lock);
1da177e4
LT
685 /*
686 * Are more interrupts pending?
687 * If so, the tpi instruction will update the lowcore
688 * to hold the info for the next interrupt.
689 * We don't do this for VM because a tpi drops the cpu
690 * out of the sie which costs more cycles than it saves.
691 */
692 } while (!MACHINE_IS_VM && tpi (NULL) != 0);
9d0a57cb 693 irq_exit();
5a489b98 694 set_irq_regs(old_regs);
1da177e4
LT
695}
696
697#ifdef CONFIG_CCW_CONSOLE
698static struct subchannel console_subchannel;
cd6b4f27 699static struct io_subchannel_private console_priv;
1da177e4
LT
700static int console_subchannel_in_use;
701
cd6b4f27
CH
702void *cio_get_console_priv(void)
703{
704 return &console_priv;
705}
706
1da177e4
LT
707/*
708 * busy wait for the next interrupt on the console
709 */
710void
711wait_cons_dev (void)
712{
713 unsigned long cr6 __attribute__ ((aligned (8)));
714 unsigned long save_cr6 __attribute__ ((aligned (8)));
715
716 /*
717 * before entering the spinlock we may already have
718 * processed the interrupt on a different CPU...
719 */
720 if (!console_subchannel_in_use)
721 return;
722
723 /* disable all but isc 7 (console device) */
724 __ctl_store (save_cr6, 6, 6);
725 cr6 = 0x01000000;
726 __ctl_load (cr6, 6, 6);
727
728 do {
2ec22984 729 spin_unlock(console_subchannel.lock);
1da177e4
LT
730 if (!cio_tpi())
731 cpu_relax();
2ec22984 732 spin_lock(console_subchannel.lock);
1da177e4
LT
733 } while (console_subchannel.schib.scsw.actl != 0);
734 /*
735 * restore previous isc value
736 */
737 __ctl_load (save_cr6, 6, 6);
738}
739
740static int
f97a56fb
CH
741cio_test_for_console(struct subchannel_id schid, void *data)
742{
fb6958a5 743 if (stsch_err(schid, &console_subchannel.schib) != 0)
f97a56fb 744 return -ENXIO;
b279a4f5
CH
745 if ((console_subchannel.schib.pmcw.st == SUBCHANNEL_TYPE_IO) &&
746 console_subchannel.schib.pmcw.dnv &&
747 (console_subchannel.schib.pmcw.dev == console_devno)) {
f97a56fb
CH
748 console_irq = schid.sch_no;
749 return 1; /* found */
750 }
751 return 0;
752}
753
754
755static int
756cio_get_console_sch_no(void)
1da177e4 757{
a8237fc4 758 struct subchannel_id schid;
1da177e4 759
a8237fc4 760 init_subchannel_id(&schid);
1da177e4
LT
761 if (console_irq != -1) {
762 /* VM provided us with the irq number of the console. */
a8237fc4
CH
763 schid.sch_no = console_irq;
764 if (stsch(schid, &console_subchannel.schib) != 0 ||
b279a4f5 765 (console_subchannel.schib.pmcw.st != SUBCHANNEL_TYPE_IO) ||
1da177e4
LT
766 !console_subchannel.schib.pmcw.dnv)
767 return -1;
768 console_devno = console_subchannel.schib.pmcw.dev;
769 } else if (console_devno != -1) {
770 /* At least the console device number is known. */
f97a56fb 771 for_each_subchannel(cio_test_for_console, NULL);
1da177e4
LT
772 if (console_irq == -1)
773 return -1;
774 } else {
775 /* unlike in 2.4, we cannot autoprobe here, since
776 * the channel subsystem is not fully initialized.
777 * With some luck, the HWC console can take over */
e556bbbd 778 printk(KERN_WARNING "cio: No ccw console found!\n");
1da177e4
LT
779 return -1;
780 }
781 return console_irq;
782}
783
784struct subchannel *
785cio_probe_console(void)
786{
f97a56fb 787 int sch_no, ret;
a8237fc4 788 struct subchannel_id schid;
1da177e4
LT
789
790 if (xchg(&console_subchannel_in_use, 1) != 0)
791 return ERR_PTR(-EBUSY);
f97a56fb
CH
792 sch_no = cio_get_console_sch_no();
793 if (sch_no == -1) {
1da177e4
LT
794 console_subchannel_in_use = 0;
795 return ERR_PTR(-ENODEV);
796 }
797 memset(&console_subchannel, 0, sizeof(struct subchannel));
a8237fc4 798 init_subchannel_id(&schid);
f97a56fb 799 schid.sch_no = sch_no;
a8237fc4 800 ret = cio_validate_subchannel(&console_subchannel, schid);
1da177e4
LT
801 if (ret) {
802 console_subchannel_in_use = 0;
803 return ERR_PTR(-ENODEV);
804 }
805
806 /*
807 * enable console I/O-interrupt subclass 7
808 */
809 ctl_set_bit(6, 24);
810 console_subchannel.schib.pmcw.isc = 7;
811 console_subchannel.schib.pmcw.intparm =
cd6b4f27 812 (u32)(addr_t)&console_subchannel;
1da177e4
LT
813 ret = cio_modify(&console_subchannel);
814 if (ret) {
815 console_subchannel_in_use = 0;
816 return ERR_PTR(ret);
817 }
818 return &console_subchannel;
819}
820
821void
822cio_release_console(void)
823{
824 console_subchannel.schib.pmcw.intparm = 0;
825 cio_modify(&console_subchannel);
826 ctl_clear_bit(6, 24);
827 console_subchannel_in_use = 0;
828}
829
830/* Bah... hack to catch console special sausages. */
831int
a8237fc4 832cio_is_console(struct subchannel_id schid)
1da177e4
LT
833{
834 if (!console_subchannel_in_use)
835 return 0;
a8237fc4 836 return schid_equal(&schid, &console_subchannel.schid);
1da177e4
LT
837}
838
839struct subchannel *
840cio_get_console_subchannel(void)
841{
842 if (!console_subchannel_in_use)
d2c993d8 843 return NULL;
1da177e4
LT
844 return &console_subchannel;
845}
846
847#endif
4d284cac 848static int
a8237fc4 849__disable_subchannel_easy(struct subchannel_id schid, struct schib *schib)
1da177e4
LT
850{
851 int retry, cc;
852
853 cc = 0;
854 for (retry=0;retry<3;retry++) {
855 schib->pmcw.ena = 0;
856 cc = msch(schid, schib);
857 if (cc)
858 return (cc==3?-ENODEV:-EBUSY);
859 stsch(schid, schib);
860 if (!schib->pmcw.ena)
861 return 0;
862 }
863 return -EBUSY; /* uhm... */
864}
865
d54853ef
MS
866/* we can't use the normal udelay here, since it enables external interrupts */
867
868static void udelay_reset(unsigned long usecs)
869{
870 uint64_t start_cc, end_cc;
871
872 asm volatile ("STCK %0" : "=m" (start_cc));
873 do {
874 cpu_relax();
875 asm volatile ("STCK %0" : "=m" (end_cc));
876 } while (((end_cc - start_cc)/4096) < usecs);
877}
878
4d284cac 879static int
a8237fc4 880__clear_subchannel_easy(struct subchannel_id schid)
1da177e4
LT
881{
882 int retry;
883
884 if (csch(schid))
885 return -ENODEV;
886 for (retry=0;retry<20;retry++) {
887 struct tpi_info ti;
888
889 if (tpi(&ti)) {
a8237fc4
CH
890 tsch(ti.schid, (struct irb *)__LC_IRB);
891 if (schid_equal(&ti.schid, &schid))
4c24da79 892 return 0;
1da177e4 893 }
d54853ef 894 udelay_reset(100);
1da177e4
LT
895 }
896 return -EBUSY;
897}
898
a45e1414
MH
899static int pgm_check_occured;
900
901static void cio_reset_pgm_check_handler(void)
902{
903 pgm_check_occured = 1;
904}
905
906static int stsch_reset(struct subchannel_id schid, volatile struct schib *addr)
907{
908 int rc;
909
910 pgm_check_occured = 0;
ab14de6c 911 s390_base_pgm_handler_fn = cio_reset_pgm_check_handler;
6faf4444 912 rc = stsch(schid, addr);
ab14de6c 913 s390_base_pgm_handler_fn = NULL;
aa77015c 914
ab14de6c 915 /* The program check handler could have changed pgm_check_occured. */
6faf4444 916 barrier();
aa77015c 917
a45e1414
MH
918 if (pgm_check_occured)
919 return -EIO;
920 else
921 return rc;
922}
923
15e9b586 924static int __shutdown_subchannel_easy(struct subchannel_id schid, void *data)
f97a56fb
CH
925{
926 struct schib schib;
927
a45e1414 928 if (stsch_reset(schid, &schib))
f97a56fb
CH
929 return -ENXIO;
930 if (!schib.pmcw.ena)
931 return 0;
932 switch(__disable_subchannel_easy(schid, &schib)) {
933 case 0:
934 case -ENODEV:
935 break;
936 default: /* -EBUSY */
937 if (__clear_subchannel_easy(schid))
938 break; /* give up... */
939 stsch(schid, &schib);
940 __disable_subchannel_easy(schid, &schib);
941 }
942 return 0;
943}
1da177e4 944
15e9b586
HC
945static atomic_t chpid_reset_count;
946
947static void s390_reset_chpids_mcck_handler(void)
948{
949 struct crw crw;
950 struct mci *mci;
951
952 /* Check for pending channel report word. */
953 mci = (struct mci *)&S390_lowcore.mcck_interruption_code;
954 if (!mci->cp)
955 return;
956 /* Process channel report words. */
957 while (stcrw(&crw) == 0) {
958 /* Check for responses to RCHP. */
959 if (crw.slct && crw.rsc == CRW_RSC_CPATH)
960 atomic_dec(&chpid_reset_count);
961 }
962}
963
964#define RCHP_TIMEOUT (30 * USEC_PER_SEC)
965static void css_reset(void)
966{
967 int i, ret;
968 unsigned long long timeout;
f86635fa 969 struct chp_id chpid;
15e9b586
HC
970
971 /* Reset subchannels. */
972 for_each_subchannel(__shutdown_subchannel_easy, NULL);
973 /* Reset channel paths. */
ab14de6c 974 s390_base_mcck_handler_fn = s390_reset_chpids_mcck_handler;
15e9b586
HC
975 /* Enable channel report machine checks. */
976 __ctl_set_bit(14, 28);
977 /* Temporarily reenable machine checks. */
978 local_mcck_enable();
f86635fa 979 chp_id_init(&chpid);
15e9b586 980 for (i = 0; i <= __MAX_CHPID; i++) {
f86635fa
PO
981 chpid.id = i;
982 ret = rchp(chpid);
15e9b586
HC
983 if ((ret == 0) || (ret == 2))
984 /*
985 * rchp either succeeded, or another rchp is already
986 * in progress. In either case, we'll get a crw.
987 */
988 atomic_inc(&chpid_reset_count);
989 }
990 /* Wait for machine check for all channel paths. */
991 timeout = get_clock() + (RCHP_TIMEOUT << 12);
992 while (atomic_read(&chpid_reset_count) != 0) {
993 if (get_clock() > timeout)
994 break;
995 cpu_relax();
996 }
997 /* Disable machine checks again. */
998 local_mcck_disable();
999 /* Disable channel report machine checks. */
1000 __ctl_clear_bit(14, 28);
ab14de6c 1001 s390_base_mcck_handler_fn = NULL;
15e9b586
HC
1002}
1003
1004static struct reset_call css_reset_call = {
1005 .fn = css_reset,
1006};
1007
1008static int __init init_css_reset_call(void)
1009{
1010 atomic_set(&chpid_reset_count, 0);
1011 register_reset_call(&css_reset_call);
1012 return 0;
1013}
1014
1015arch_initcall(init_css_reset_call);
1016
1017struct sch_match_id {
1018 struct subchannel_id schid;
1019 struct ccw_dev_id devid;
1020 int rc;
1021};
1022
1023static int __reipl_subchannel_match(struct subchannel_id schid, void *data)
1024{
1025 struct schib schib;
1026 struct sch_match_id *match_id = data;
1027
a45e1414 1028 if (stsch_reset(schid, &schib))
15e9b586 1029 return -ENXIO;
b279a4f5 1030 if ((schib.pmcw.st == SUBCHANNEL_TYPE_IO) && schib.pmcw.dnv &&
15e9b586
HC
1031 (schib.pmcw.dev == match_id->devid.devno) &&
1032 (schid.ssid == match_id->devid.ssid)) {
1033 match_id->schid = schid;
1034 match_id->rc = 0;
1035 return 1;
1036 }
1037 return 0;
1038}
1039
1040static int reipl_find_schid(struct ccw_dev_id *devid,
1041 struct subchannel_id *schid)
1da177e4 1042{
ff6b8ea6
MH
1043 struct sch_match_id match_id;
1044
1045 match_id.devid = *devid;
1046 match_id.rc = -ENODEV;
15e9b586 1047 for_each_subchannel(__reipl_subchannel_match, &match_id);
ff6b8ea6
MH
1048 if (match_id.rc == 0)
1049 *schid = match_id.schid;
1050 return match_id.rc;
1da177e4
LT
1051}
1052
ff6b8ea6
MH
1053extern void do_reipl_asm(__u32 schid);
1054
1da177e4 1055/* Make sure all subchannels are quiet before we re-ipl an lpar. */
ff6b8ea6 1056void reipl_ccw_dev(struct ccw_dev_id *devid)
1da177e4 1057{
ff6b8ea6
MH
1058 struct subchannel_id schid;
1059
15e9b586
HC
1060 s390_reset_system();
1061 if (reipl_find_schid(devid, &schid) != 0)
ff6b8ea6 1062 panic("IPL Device not found\n");
ff6b8ea6 1063 do_reipl_asm(*((__u32*)&schid));
1da177e4 1064}
e87bfe51 1065
6fc321fd 1066int __init cio_get_iplinfo(struct cio_iplinfo *iplinfo)
e87bfe51
HC
1067{
1068 struct subchannel_id schid;
6fc321fd 1069 struct schib schib;
e87bfe51
HC
1070
1071 schid = *(struct subchannel_id *)__LC_SUBCHANNEL_ID;
1072 if (!schid.one)
6fc321fd
HC
1073 return -ENODEV;
1074 if (stsch(schid, &schib))
1075 return -ENODEV;
b279a4f5
CH
1076 if (schib.pmcw.st != SUBCHANNEL_TYPE_IO)
1077 return -ENODEV;
6fc321fd
HC
1078 if (!schib.pmcw.dnv)
1079 return -ENODEV;
1080 iplinfo->devno = schib.pmcw.dev;
1081 iplinfo->is_qdio = schib.pmcw.qf;
1082 return 0;
e87bfe51 1083}