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