Merge to Fedora kernel-2.6.18-1.2255_FC5-vs2.0.2.2-rc9 patched with stable patch...
[linux-2.6.git] / drivers / s390 / cio / cio.c
1 /*
2  *  drivers/s390/cio/cio.c
3  *   S/390 common I/O routines -- low level i/o calls
4  *
5  *    Copyright (C) 1999-2002 IBM Deutschland Entwicklung GmbH,
6  *                            IBM Corporation
7  *    Author(s): Ingo Adlung (adlung@de.ibm.com)
8  *               Cornelia Huck (cornelia.huck@de.ibm.com)
9  *               Arnd Bergmann (arndb@de.ibm.com)
10  *               Martin Schwidefsky (schwidefsky@de.ibm.com)
11  */
12
13 #include <linux/module.h>
14 #include <linux/init.h>
15 #include <linux/slab.h>
16 #include <linux/device.h>
17 #include <linux/kernel_stat.h>
18 #include <linux/interrupt.h>
19 #include <linux/vs_context.h>
20
21 #include <asm/cio.h>
22 #include <asm/delay.h>
23 #include <asm/irq.h>
24
25 #include "airq.h"
26 #include "cio.h"
27 #include "css.h"
28 #include "chsc.h"
29 #include "ioasm.h"
30 #include "blacklist.h"
31 #include "cio_debug.h"
32
33 debug_info_t *cio_debug_msg_id;
34 debug_info_t *cio_debug_trace_id;
35 debug_info_t *cio_debug_crw_id;
36
37 int cio_show_msg;
38
39 static int __init
40 cio_setup (char *parm)
41 {
42         if (!strcmp (parm, "yes"))
43                 cio_show_msg = 1;
44         else if (!strcmp (parm, "no"))
45                 cio_show_msg = 0;
46         else
47                 printk (KERN_ERR "cio_setup : invalid cio_msg parameter '%s'",
48                         parm);
49         return 1;
50 }
51
52 __setup ("cio_msg=", cio_setup);
53
54 /*
55  * Function: cio_debug_init
56  * Initializes three debug logs (under /proc/s390dbf) for common I/O:
57  * - cio_msg logs the messages which are printk'ed when CONFIG_DEBUG_IO is on
58  * - cio_trace logs the calling of different functions
59  * - cio_crw logs the messages which are printk'ed when CONFIG_DEBUG_CRW is on
60  * debug levels depend on CONFIG_DEBUG_IO resp. CONFIG_DEBUG_CRW
61  */
62 static int __init
63 cio_debug_init (void)
64 {
65         cio_debug_msg_id = debug_register ("cio_msg", 16, 4, 16*sizeof (long));
66         if (!cio_debug_msg_id)
67                 goto out_unregister;
68         debug_register_view (cio_debug_msg_id, &debug_sprintf_view);
69         debug_set_level (cio_debug_msg_id, 2);
70         cio_debug_trace_id = debug_register ("cio_trace", 16, 4, 16);
71         if (!cio_debug_trace_id)
72                 goto out_unregister;
73         debug_register_view (cio_debug_trace_id, &debug_hex_ascii_view);
74         debug_set_level (cio_debug_trace_id, 2);
75         cio_debug_crw_id = debug_register ("cio_crw", 4, 4, 16*sizeof (long));
76         if (!cio_debug_crw_id)
77                 goto out_unregister;
78         debug_register_view (cio_debug_crw_id, &debug_sprintf_view);
79         debug_set_level (cio_debug_crw_id, 2);
80         pr_debug("debugging initialized\n");
81         return 0;
82
83 out_unregister:
84         if (cio_debug_msg_id)
85                 debug_unregister (cio_debug_msg_id);
86         if (cio_debug_trace_id)
87                 debug_unregister (cio_debug_trace_id);
88         if (cio_debug_crw_id)
89                 debug_unregister (cio_debug_crw_id);
90         pr_debug("could not initialize debugging\n");
91         return -1;
92 }
93
94 arch_initcall (cio_debug_init);
95
96 int
97 cio_set_options (struct subchannel *sch, int flags)
98 {
99        sch->options.suspend = (flags & DOIO_ALLOW_SUSPEND) != 0;
100        sch->options.prefetch = (flags & DOIO_DENY_PREFETCH) != 0;
101        sch->options.inter = (flags & DOIO_SUPPRESS_INTER) != 0;
102        return 0;
103 }
104
105 /* FIXME: who wants to use this? */
106 int
107 cio_get_options (struct subchannel *sch)
108 {
109        int flags;
110
111        flags = 0;
112        if (sch->options.suspend)
113                 flags |= DOIO_ALLOW_SUSPEND;
114        if (sch->options.prefetch)
115                 flags |= DOIO_DENY_PREFETCH;
116        if (sch->options.inter)
117                 flags |= DOIO_SUPPRESS_INTER;
118        return flags;
119 }
120
121 /*
122  * Use tpi to get a pending interrupt, call the interrupt handler and
123  * return a pointer to the subchannel structure.
124  */
125 static inline int
126 cio_tpi(void)
127 {
128         struct tpi_info *tpi_info;
129         struct subchannel *sch;
130         struct irb *irb;
131
132         tpi_info = (struct tpi_info *) __LC_SUBCHANNEL_ID;
133         if (tpi (NULL) != 1)
134                 return 0;
135         irb = (struct irb *) __LC_IRB;
136         /* Store interrupt response block to lowcore. */
137         if (tsch (tpi_info->schid, irb) != 0)
138                 /* Not status pending or not operational. */
139                 return 1;
140         sch = (struct subchannel *)(unsigned long)tpi_info->intparm;
141         if (!sch)
142                 return 1;
143         local_bh_disable();
144         irq_enter ();
145         spin_lock(&sch->lock);
146         memcpy (&sch->schib.scsw, &irb->scsw, sizeof (struct scsw));
147         if (sch->driver && sch->driver->irq)
148                 sch->driver->irq(&sch->dev);
149         spin_unlock(&sch->lock);
150         irq_exit ();
151         _local_bh_enable();
152         return 1;
153 }
154
155 static inline int
156 cio_start_handle_notoper(struct subchannel *sch, __u8 lpm)
157 {
158         char dbf_text[15];
159
160         if (lpm != 0)
161                 sch->lpm &= ~lpm;
162         else
163                 sch->lpm = 0;
164
165         stsch (sch->schid, &sch->schib);
166
167         CIO_MSG_EVENT(0, "cio_start: 'not oper' status for "
168                       "subchannel 0.%x.%04x!\n", sch->schid.ssid,
169                       sch->schid.sch_no);
170         sprintf(dbf_text, "no%s", sch->dev.bus_id);
171         CIO_TRACE_EVENT(0, dbf_text);
172         CIO_HEX_EVENT(0, &sch->schib, sizeof (struct schib));
173
174         return (sch->lpm ? -EACCES : -ENODEV);
175 }
176
177 int
178 cio_start_key (struct subchannel *sch,  /* subchannel structure */
179                struct ccw1 * cpa,       /* logical channel prog addr */
180                __u8 lpm,                /* logical path mask */
181                __u8 key)                /* storage key */
182 {
183         char dbf_txt[15];
184         int ccode;
185
186         CIO_TRACE_EVENT (4, "stIO");
187         CIO_TRACE_EVENT (4, sch->dev.bus_id);
188
189         /* sch is always under 2G. */
190         sch->orb.intparm = (__u32)(unsigned long)sch;
191         sch->orb.fmt = 1;
192
193         sch->orb.pfch = sch->options.prefetch == 0;
194         sch->orb.spnd = sch->options.suspend;
195         sch->orb.ssic = sch->options.suspend && sch->options.inter;
196         sch->orb.lpm = (lpm != 0) ? (lpm & sch->opm) : sch->lpm;
197 #ifdef CONFIG_64BIT
198         /*
199          * for 64 bit we always support 64 bit IDAWs with 4k page size only
200          */
201         sch->orb.c64 = 1;
202         sch->orb.i2k = 0;
203 #endif
204         sch->orb.key = key >> 4;
205         /* issue "Start Subchannel" */
206         sch->orb.cpa = (__u32) __pa (cpa);
207         ccode = ssch (sch->schid, &sch->orb);
208
209         /* process condition code */
210         sprintf (dbf_txt, "ccode:%d", ccode);
211         CIO_TRACE_EVENT (4, dbf_txt);
212
213         switch (ccode) {
214         case 0:
215                 /*
216                  * initialize device status information
217                  */
218                 sch->schib.scsw.actl |= SCSW_ACTL_START_PEND;
219                 return 0;
220         case 1:         /* status pending */
221         case 2:         /* busy */
222                 return -EBUSY;
223         default:                /* device/path not operational */
224                 return cio_start_handle_notoper(sch, lpm);
225         }
226 }
227
228 int
229 cio_start (struct subchannel *sch, struct ccw1 *cpa, __u8 lpm)
230 {
231         return cio_start_key(sch, cpa, lpm, PAGE_DEFAULT_KEY);
232 }
233
234 /*
235  * resume suspended I/O operation
236  */
237 int
238 cio_resume (struct subchannel *sch)
239 {
240         char dbf_txt[15];
241         int ccode;
242
243         CIO_TRACE_EVENT (4, "resIO");
244         CIO_TRACE_EVENT (4, sch->dev.bus_id);
245
246         ccode = rsch (sch->schid);
247
248         sprintf (dbf_txt, "ccode:%d", ccode);
249         CIO_TRACE_EVENT (4, dbf_txt);
250
251         switch (ccode) {
252         case 0:
253                 sch->schib.scsw.actl |= SCSW_ACTL_RESUME_PEND;
254                 return 0;
255         case 1:
256                 return -EBUSY;
257         case 2:
258                 return -EINVAL;
259         default:
260                 /*
261                  * useless to wait for request completion
262                  *  as device is no longer operational !
263                  */
264                 return -ENODEV;
265         }
266 }
267
268 /*
269  * halt I/O operation
270  */
271 int
272 cio_halt(struct subchannel *sch)
273 {
274         char dbf_txt[15];
275         int ccode;
276
277         if (!sch)
278                 return -ENODEV;
279
280         CIO_TRACE_EVENT (2, "haltIO");
281         CIO_TRACE_EVENT (2, sch->dev.bus_id);
282
283         /*
284          * Issue "Halt subchannel" and process condition code
285          */
286         ccode = hsch (sch->schid);
287
288         sprintf (dbf_txt, "ccode:%d", ccode);
289         CIO_TRACE_EVENT (2, dbf_txt);
290
291         switch (ccode) {
292         case 0:
293                 sch->schib.scsw.actl |= SCSW_ACTL_HALT_PEND;
294                 return 0;
295         case 1:         /* status pending */
296         case 2:         /* busy */
297                 return -EBUSY;
298         default:                /* device not operational */
299                 return -ENODEV;
300         }
301 }
302
303 /*
304  * Clear I/O operation
305  */
306 int
307 cio_clear(struct subchannel *sch)
308 {
309         char dbf_txt[15];
310         int ccode;
311
312         if (!sch)
313                 return -ENODEV;
314
315         CIO_TRACE_EVENT (2, "clearIO");
316         CIO_TRACE_EVENT (2, sch->dev.bus_id);
317
318         /*
319          * Issue "Clear subchannel" and process condition code
320          */
321         ccode = csch (sch->schid);
322
323         sprintf (dbf_txt, "ccode:%d", ccode);
324         CIO_TRACE_EVENT (2, dbf_txt);
325
326         switch (ccode) {
327         case 0:
328                 sch->schib.scsw.actl |= SCSW_ACTL_CLEAR_PEND;
329                 return 0;
330         default:                /* device not operational */
331                 return -ENODEV;
332         }
333 }
334
335 /*
336  * Function: cio_cancel
337  * Issues a "Cancel Subchannel" on the specified subchannel
338  * Note: We don't need any fancy intparms and flags here
339  *       since xsch is executed synchronously.
340  * Only for common I/O internal use as for now.
341  */
342 int
343 cio_cancel (struct subchannel *sch)
344 {
345         char dbf_txt[15];
346         int ccode;
347
348         if (!sch)
349                 return -ENODEV;
350
351         CIO_TRACE_EVENT (2, "cancelIO");
352         CIO_TRACE_EVENT (2, sch->dev.bus_id);
353
354         ccode = xsch (sch->schid);
355
356         sprintf (dbf_txt, "ccode:%d", ccode);
357         CIO_TRACE_EVENT (2, dbf_txt);
358
359         switch (ccode) {
360         case 0:         /* success */
361                 /* Update information in scsw. */
362                 stsch (sch->schid, &sch->schib);
363                 return 0;
364         case 1:         /* status pending */
365                 return -EBUSY;
366         case 2:         /* not applicable */
367                 return -EINVAL;
368         default:        /* not oper */
369                 return -ENODEV;
370         }
371 }
372
373 /*
374  * Function: cio_modify
375  * Issues a "Modify Subchannel" on the specified subchannel
376  */
377 int
378 cio_modify (struct subchannel *sch)
379 {
380         int ccode, retry, ret;
381
382         ret = 0;
383         for (retry = 0; retry < 5; retry++) {
384                 ccode = msch_err (sch->schid, &sch->schib);
385                 if (ccode < 0)  /* -EIO if msch gets a program check. */
386                         return ccode;
387                 switch (ccode) {
388                 case 0: /* successfull */
389                         return 0;
390                 case 1: /* status pending */
391                         return -EBUSY;
392                 case 2: /* busy */
393                         udelay (100);   /* allow for recovery */
394                         ret = -EBUSY;
395                         break;
396                 case 3: /* not operational */
397                         return -ENODEV;
398                 }
399         }
400         return ret;
401 }
402
403 /*
404  * Enable subchannel.
405  */
406 int
407 cio_enable_subchannel (struct subchannel *sch, unsigned int isc)
408 {
409         char dbf_txt[15];
410         int ccode;
411         int retry;
412         int ret;
413
414         CIO_TRACE_EVENT (2, "ensch");
415         CIO_TRACE_EVENT (2, sch->dev.bus_id);
416
417         ccode = stsch (sch->schid, &sch->schib);
418         if (ccode)
419                 return -ENODEV;
420
421         for (retry = 5, ret = 0; retry > 0; retry--) {
422                 sch->schib.pmcw.ena = 1;
423                 sch->schib.pmcw.isc = isc;
424                 sch->schib.pmcw.intparm = (__u32)(unsigned long)sch;
425                 ret = cio_modify(sch);
426                 if (ret == -ENODEV)
427                         break;
428                 if (ret == -EIO)
429                         /*
430                          * Got a program check in cio_modify. Try without
431                          * the concurrent sense bit the next time.
432                          */
433                         sch->schib.pmcw.csense = 0;
434                 if (ret == 0) {
435                         stsch (sch->schid, &sch->schib);
436                         if (sch->schib.pmcw.ena)
437                                 break;
438                 }
439                 if (ret == -EBUSY) {
440                         struct irb irb;
441                         if (tsch(sch->schid, &irb) != 0)
442                                 break;
443                 }
444         }
445         sprintf (dbf_txt, "ret:%d", ret);
446         CIO_TRACE_EVENT (2, dbf_txt);
447         return ret;
448 }
449
450 /*
451  * Disable subchannel.
452  */
453 int
454 cio_disable_subchannel (struct subchannel *sch)
455 {
456         char dbf_txt[15];
457         int ccode;
458         int retry;
459         int ret;
460
461         CIO_TRACE_EVENT (2, "dissch");
462         CIO_TRACE_EVENT (2, sch->dev.bus_id);
463
464         ccode = stsch (sch->schid, &sch->schib);
465         if (ccode == 3)         /* Not operational. */
466                 return -ENODEV;
467
468         if (sch->schib.scsw.actl != 0)
469                 /*
470                  * the disable function must not be called while there are
471                  *  requests pending for completion !
472                  */
473                 return -EBUSY;
474
475         for (retry = 5, ret = 0; retry > 0; retry--) {
476                 sch->schib.pmcw.ena = 0;
477                 ret = cio_modify(sch);
478                 if (ret == -ENODEV)
479                         break;
480                 if (ret == -EBUSY)
481                         /*
482                          * The subchannel is busy or status pending.
483                          * We'll disable when the next interrupt was delivered
484                          * via the state machine.
485                          */
486                         break;
487                 if (ret == 0) {
488                         stsch (sch->schid, &sch->schib);
489                         if (!sch->schib.pmcw.ena)
490                                 break;
491                 }
492         }
493         sprintf (dbf_txt, "ret:%d", ret);
494         CIO_TRACE_EVENT (2, dbf_txt);
495         return ret;
496 }
497
498 /*
499  * cio_validate_subchannel()
500  *
501  * Find out subchannel type and initialize struct subchannel.
502  * Return codes:
503  *   SUBCHANNEL_TYPE_IO for a normal io subchannel
504  *   SUBCHANNEL_TYPE_CHSC for a chsc subchannel
505  *   SUBCHANNEL_TYPE_MESSAGE for a messaging subchannel
506  *   SUBCHANNEL_TYPE_ADM for a adm(?) subchannel
507  *   -ENXIO for non-defined subchannels
508  *   -ENODEV for subchannels with invalid device number or blacklisted devices
509  */
510 int
511 cio_validate_subchannel (struct subchannel *sch, struct subchannel_id schid)
512 {
513         char dbf_txt[15];
514         int ccode;
515
516         sprintf (dbf_txt, "valsch%x", schid.sch_no);
517         CIO_TRACE_EVENT (4, dbf_txt);
518
519         /* Nuke all fields. */
520         memset(sch, 0, sizeof(struct subchannel));
521
522         spin_lock_init(&sch->lock);
523         mutex_init(&sch->reg_mutex);
524
525         /* Set a name for the subchannel */
526         snprintf (sch->dev.bus_id, BUS_ID_SIZE, "0.%x.%04x", schid.ssid,
527                   schid.sch_no);
528
529         /*
530          * The first subchannel that is not-operational (ccode==3)
531          *  indicates that there aren't any more devices available.
532          * If stsch gets an exception, it means the current subchannel set
533          *  is not valid.
534          */
535         ccode = stsch_err (schid, &sch->schib);
536         if (ccode)
537                 return (ccode == 3) ? -ENXIO : ccode;
538
539         sch->schid = schid;
540         /* Copy subchannel type from path management control word. */
541         sch->st = sch->schib.pmcw.st;
542
543         /*
544          * ... just being curious we check for non I/O subchannels
545          */
546         if (sch->st != 0) {
547                 CIO_DEBUG(KERN_INFO, 0,
548                           "Subchannel 0.%x.%04x reports "
549                           "non-I/O subchannel type %04X\n",
550                           sch->schid.ssid, sch->schid.sch_no, sch->st);
551                 /* We stop here for non-io subchannels. */
552                 return sch->st;
553         }
554
555         /* Initialization for io subchannels. */
556         if (!sch->schib.pmcw.dnv)
557                 /* io subchannel but device number is invalid. */
558                 return -ENODEV;
559
560         /* Devno is valid. */
561         if (is_blacklisted (sch->schid.ssid, sch->schib.pmcw.dev)) {
562                 /*
563                  * This device must not be known to Linux. So we simply
564                  * say that there is no device and return ENODEV.
565                  */
566                 CIO_MSG_EVENT(0, "Blacklisted device detected "
567                               "at devno %04X, subchannel set %x\n",
568                               sch->schib.pmcw.dev, sch->schid.ssid);
569                 return -ENODEV;
570         }
571         sch->opm = 0xff;
572         if (!cio_is_console(sch->schid))
573                 chsc_validate_chpids(sch);
574         sch->lpm = sch->schib.pmcw.pim &
575                 sch->schib.pmcw.pam &
576                 sch->schib.pmcw.pom &
577                 sch->opm;
578
579         CIO_DEBUG(KERN_INFO, 0,
580                   "Detected device %04x on subchannel 0.%x.%04X"
581                   " - PIM = %02X, PAM = %02X, POM = %02X\n",
582                   sch->schib.pmcw.dev, sch->schid.ssid,
583                   sch->schid.sch_no, sch->schib.pmcw.pim,
584                   sch->schib.pmcw.pam, sch->schib.pmcw.pom);
585
586         /*
587          * We now have to initially ...
588          *  ... set "interruption subclass"
589          *  ... enable "concurrent sense"
590          *  ... enable "multipath mode" if more than one
591          *        CHPID is available. This is done regardless
592          *        whether multiple paths are available for us.
593          */
594         sch->schib.pmcw.isc = 3;        /* could be smth. else */
595         sch->schib.pmcw.csense = 1;     /* concurrent sense */
596         sch->schib.pmcw.ena = 0;
597         if ((sch->lpm & (sch->lpm - 1)) != 0)
598                 sch->schib.pmcw.mp = 1; /* multipath mode */
599         return 0;
600 }
601
602 /*
603  * do_IRQ() handles all normal I/O device IRQ's (the special
604  *          SMP cross-CPU interrupts have their own specific
605  *          handlers).
606  *
607  */
608 void
609 do_IRQ (struct pt_regs *regs)
610 {
611         struct tpi_info *tpi_info;
612         struct subchannel *sch;
613         struct irb *irb;
614
615         irq_enter ();
616         asm volatile ("mc 0,0");
617         if (S390_lowcore.int_clock >= S390_lowcore.jiffy_timer)
618                 /**
619                  * Make sure that the i/o interrupt did not "overtake"
620                  * the last HZ timer interrupt.
621                  */
622                 account_ticks(regs);
623         /*
624          * Get interrupt information from lowcore
625          */
626         tpi_info = (struct tpi_info *) __LC_SUBCHANNEL_ID;
627         irb = (struct irb *) __LC_IRB;
628         do {
629                 kstat_cpu(smp_processor_id()).irqs[IO_INTERRUPT]++;
630                 /*
631                  * Non I/O-subchannel thin interrupts are processed differently
632                  */
633                 if (tpi_info->adapter_IO == 1 &&
634                     tpi_info->int_type == IO_INTERRUPT_TYPE) {
635                         do_adapter_IO();
636                         continue;
637                 }
638                 sch = (struct subchannel *)(unsigned long)tpi_info->intparm;
639                 if (sch)
640                         spin_lock(&sch->lock);
641                 /* Store interrupt response block to lowcore. */
642                 if (tsch (tpi_info->schid, irb) == 0 && sch) {
643
644                         /* Keep subchannel information word up to date. */
645                         memcpy (&sch->schib.scsw, &irb->scsw,
646                                 sizeof (irb->scsw));
647                         /* Call interrupt handler if there is one. */
648                         if (sch->driver && sch->driver->irq)
649                                 sch->driver->irq(&sch->dev);
650                 }
651                 if (sch)
652                         spin_unlock(&sch->lock);
653                 /*
654                  * Are more interrupts pending?
655                  * If so, the tpi instruction will update the lowcore
656                  * to hold the info for the next interrupt.
657                  * We don't do this for VM because a tpi drops the cpu
658                  * out of the sie which costs more cycles than it saves.
659                  */
660         } while (!MACHINE_IS_VM && tpi (NULL) != 0);
661         irq_exit ();
662 }
663
664 #ifdef CONFIG_CCW_CONSOLE
665 static struct subchannel console_subchannel;
666 static int console_subchannel_in_use;
667
668 /*
669  * busy wait for the next interrupt on the console
670  */
671 void
672 wait_cons_dev (void)
673 {
674         unsigned long cr6      __attribute__ ((aligned (8)));
675         unsigned long save_cr6 __attribute__ ((aligned (8)));
676
677         /* 
678          * before entering the spinlock we may already have
679          * processed the interrupt on a different CPU...
680          */
681         if (!console_subchannel_in_use)
682                 return;
683
684         /* disable all but isc 7 (console device) */
685         __ctl_store (save_cr6, 6, 6);
686         cr6 = 0x01000000;
687         __ctl_load (cr6, 6, 6);
688
689         do {
690                 spin_unlock(&console_subchannel.lock);
691                 if (!cio_tpi())
692                         cpu_relax();
693                 spin_lock(&console_subchannel.lock);
694         } while (console_subchannel.schib.scsw.actl != 0);
695         /*
696          * restore previous isc value
697          */
698         __ctl_load (save_cr6, 6, 6);
699 }
700
701 static int
702 cio_test_for_console(struct subchannel_id schid, void *data)
703 {
704         if (stsch_err(schid, &console_subchannel.schib) != 0)
705                 return -ENXIO;
706         if (console_subchannel.schib.pmcw.dnv &&
707             console_subchannel.schib.pmcw.dev ==
708             console_devno) {
709                 console_irq = schid.sch_no;
710                 return 1; /* found */
711         }
712         return 0;
713 }
714
715
716 static int
717 cio_get_console_sch_no(void)
718 {
719         struct subchannel_id schid;
720         
721         init_subchannel_id(&schid);
722         if (console_irq != -1) {
723                 /* VM provided us with the irq number of the console. */
724                 schid.sch_no = console_irq;
725                 if (stsch(schid, &console_subchannel.schib) != 0 ||
726                     !console_subchannel.schib.pmcw.dnv)
727                         return -1;
728                 console_devno = console_subchannel.schib.pmcw.dev;
729         } else if (console_devno != -1) {
730                 /* At least the console device number is known. */
731                 for_each_subchannel(cio_test_for_console, NULL);
732                 if (console_irq == -1)
733                         return -1;
734         } else {
735                 /* unlike in 2.4, we cannot autoprobe here, since
736                  * the channel subsystem is not fully initialized.
737                  * With some luck, the HWC console can take over */
738                 printk(KERN_WARNING "No ccw console found!\n");
739                 return -1;
740         }
741         return console_irq;
742 }
743
744 struct subchannel *
745 cio_probe_console(void)
746 {
747         int sch_no, ret;
748         struct subchannel_id schid;
749
750         if (xchg(&console_subchannel_in_use, 1) != 0)
751                 return ERR_PTR(-EBUSY);
752         sch_no = cio_get_console_sch_no();
753         if (sch_no == -1) {
754                 console_subchannel_in_use = 0;
755                 return ERR_PTR(-ENODEV);
756         }
757         memset(&console_subchannel, 0, sizeof(struct subchannel));
758         init_subchannel_id(&schid);
759         schid.sch_no = sch_no;
760         ret = cio_validate_subchannel(&console_subchannel, schid);
761         if (ret) {
762                 console_subchannel_in_use = 0;
763                 return ERR_PTR(-ENODEV);
764         }
765
766         /*
767          * enable console I/O-interrupt subclass 7
768          */
769         ctl_set_bit(6, 24);
770         console_subchannel.schib.pmcw.isc = 7;
771         console_subchannel.schib.pmcw.intparm =
772                 (__u32)(unsigned long)&console_subchannel;
773         ret = cio_modify(&console_subchannel);
774         if (ret) {
775                 console_subchannel_in_use = 0;
776                 return ERR_PTR(ret);
777         }
778         return &console_subchannel;
779 }
780
781 void
782 cio_release_console(void)
783 {
784         console_subchannel.schib.pmcw.intparm = 0;
785         cio_modify(&console_subchannel);
786         ctl_clear_bit(6, 24);
787         console_subchannel_in_use = 0;
788 }
789
790 /* Bah... hack to catch console special sausages. */
791 int
792 cio_is_console(struct subchannel_id schid)
793 {
794         if (!console_subchannel_in_use)
795                 return 0;
796         return schid_equal(&schid, &console_subchannel.schid);
797 }
798
799 struct subchannel *
800 cio_get_console_subchannel(void)
801 {
802         if (!console_subchannel_in_use)
803                 return NULL;
804         return &console_subchannel;
805 }
806
807 #endif
808 static inline int
809 __disable_subchannel_easy(struct subchannel_id schid, struct schib *schib)
810 {
811         int retry, cc;
812
813         cc = 0;
814         for (retry=0;retry<3;retry++) {
815                 schib->pmcw.ena = 0;
816                 cc = msch(schid, schib);
817                 if (cc)
818                         return (cc==3?-ENODEV:-EBUSY);
819                 stsch(schid, schib);
820                 if (!schib->pmcw.ena)
821                         return 0;
822         }
823         return -EBUSY; /* uhm... */
824 }
825
826 static inline int
827 __clear_subchannel_easy(struct subchannel_id schid)
828 {
829         int retry;
830
831         if (csch(schid))
832                 return -ENODEV;
833         for (retry=0;retry<20;retry++) {
834                 struct tpi_info ti;
835
836                 if (tpi(&ti)) {
837                         tsch(ti.schid, (struct irb *)__LC_IRB);
838                         if (schid_equal(&ti.schid, &schid))
839                                 return 0;
840                 }
841                 udelay(100);
842         }
843         return -EBUSY;
844 }
845
846 extern void do_reipl(unsigned long devno);
847 static int
848 __shutdown_subchannel_easy(struct subchannel_id schid, void *data)
849 {
850         struct schib schib;
851
852         if (stsch_err(schid, &schib))
853                 return -ENXIO;
854         if (!schib.pmcw.ena)
855                 return 0;
856         switch(__disable_subchannel_easy(schid, &schib)) {
857         case 0:
858         case -ENODEV:
859                 break;
860         default: /* -EBUSY */
861                 if (__clear_subchannel_easy(schid))
862                         break; /* give up... */
863                 stsch(schid, &schib);
864                 __disable_subchannel_easy(schid, &schib);
865         }
866         return 0;
867 }
868
869 void
870 clear_all_subchannels(void)
871 {
872         local_irq_disable();
873         for_each_subchannel(__shutdown_subchannel_easy, NULL);
874 }
875
876 /* Make sure all subchannels are quiet before we re-ipl an lpar. */
877 void
878 reipl(unsigned long devno)
879 {
880         clear_all_subchannels();
881         cio_reset_channel_paths();
882         do_reipl(devno);
883 }