blob: ea1defba5693af2f7533d387b1aa54d1f0b3a5f2 [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 *
Michael Holzheuaa770152006-12-28 00:35:36 +01005 * Copyright (C) IBM Corp. 1999,2006
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 Carstens5a489b92006-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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include "airq.h"
27#include "cio.h"
28#include "css.h"
29#include "chsc.h"
30#include "ioasm.h"
31#include "blacklist.h"
32#include "cio_debug.h"
Peter Oberparleitere6b6e102007-04-27 16:01:28 +020033#include "chp.h"
Heiko Carstens15e9b582006-12-04 15:40:26 +010034#include "../s390mach.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
36debug_info_t *cio_debug_msg_id;
37debug_info_t *cio_debug_trace_id;
38debug_info_t *cio_debug_crw_id;
39
40int cio_show_msg;
41
42static int __init
43cio_setup (char *parm)
44{
45 if (!strcmp (parm, "yes"))
46 cio_show_msg = 1;
47 else if (!strcmp (parm, "no"))
48 cio_show_msg = 0;
49 else
50 printk (KERN_ERR "cio_setup : invalid cio_msg parameter '%s'",
51 parm);
52 return 1;
53}
54
55__setup ("cio_msg=", cio_setup);
56
57/*
58 * Function: cio_debug_init
59 * Initializes three debug logs (under /proc/s390dbf) for common I/O:
60 * - cio_msg logs the messages which are printk'ed when CONFIG_DEBUG_IO is on
61 * - cio_trace logs the calling of different functions
62 * - cio_crw logs the messages which are printk'ed when CONFIG_DEBUG_CRW is on
63 * debug levels depend on CONFIG_DEBUG_IO resp. CONFIG_DEBUG_CRW
64 */
65static int __init
66cio_debug_init (void)
67{
Michael Holzheu66a464d2005-06-25 14:55:33 -070068 cio_debug_msg_id = debug_register ("cio_msg", 16, 4, 16*sizeof (long));
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 if (!cio_debug_msg_id)
70 goto out_unregister;
71 debug_register_view (cio_debug_msg_id, &debug_sprintf_view);
72 debug_set_level (cio_debug_msg_id, 2);
Peter Oberparleiter06fbcb12006-04-10 22:53:46 -070073 cio_debug_trace_id = debug_register ("cio_trace", 16, 4, 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 if (!cio_debug_trace_id)
75 goto out_unregister;
76 debug_register_view (cio_debug_trace_id, &debug_hex_ascii_view);
77 debug_set_level (cio_debug_trace_id, 2);
Michael Holzheu66a464d2005-06-25 14:55:33 -070078 cio_debug_crw_id = debug_register ("cio_crw", 4, 4, 16*sizeof (long));
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 if (!cio_debug_crw_id)
80 goto out_unregister;
81 debug_register_view (cio_debug_crw_id, &debug_sprintf_view);
82 debug_set_level (cio_debug_crw_id, 2);
83 pr_debug("debugging initialized\n");
84 return 0;
85
86out_unregister:
87 if (cio_debug_msg_id)
88 debug_unregister (cio_debug_msg_id);
89 if (cio_debug_trace_id)
90 debug_unregister (cio_debug_trace_id);
91 if (cio_debug_crw_id)
92 debug_unregister (cio_debug_crw_id);
93 pr_debug("could not initialize debugging\n");
94 return -1;
95}
96
97arch_initcall (cio_debug_init);
98
99int
100cio_set_options (struct subchannel *sch, int flags)
101{
102 sch->options.suspend = (flags & DOIO_ALLOW_SUSPEND) != 0;
103 sch->options.prefetch = (flags & DOIO_DENY_PREFETCH) != 0;
104 sch->options.inter = (flags & DOIO_SUPPRESS_INTER) != 0;
105 return 0;
106}
107
108/* FIXME: who wants to use this? */
109int
110cio_get_options (struct subchannel *sch)
111{
112 int flags;
113
114 flags = 0;
115 if (sch->options.suspend)
116 flags |= DOIO_ALLOW_SUSPEND;
117 if (sch->options.prefetch)
118 flags |= DOIO_DENY_PREFETCH;
119 if (sch->options.inter)
120 flags |= DOIO_SUPPRESS_INTER;
121 return flags;
122}
123
124/*
125 * Use tpi to get a pending interrupt, call the interrupt handler and
126 * return a pointer to the subchannel structure.
127 */
Heiko Carstens4d284ca2007-02-05 21:18:53 +0100128static int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129cio_tpi(void)
130{
131 struct tpi_info *tpi_info;
132 struct subchannel *sch;
133 struct irb *irb;
134
135 tpi_info = (struct tpi_info *) __LC_SUBCHANNEL_ID;
136 if (tpi (NULL) != 1)
137 return 0;
138 irb = (struct irb *) __LC_IRB;
139 /* Store interrupt response block to lowcore. */
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800140 if (tsch (tpi_info->schid, irb) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 /* Not status pending or not operational. */
142 return 1;
143 sch = (struct subchannel *)(unsigned long)tpi_info->intparm;
144 if (!sch)
145 return 1;
146 local_bh_disable();
147 irq_enter ();
Cornelia Huck2ec22982006-12-08 15:54:26 +0100148 spin_lock(sch->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 memcpy (&sch->schib.scsw, &irb->scsw, sizeof (struct scsw));
150 if (sch->driver && sch->driver->irq)
151 sch->driver->irq(&sch->dev);
Cornelia Huck2ec22982006-12-08 15:54:26 +0100152 spin_unlock(sch->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 irq_exit ();
Heiko Carstens1f194a42006-07-03 00:24:46 -0700154 _local_bh_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 return 1;
156}
157
Heiko Carstens4d284ca2007-02-05 21:18:53 +0100158static int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159cio_start_handle_notoper(struct subchannel *sch, __u8 lpm)
160{
161 char dbf_text[15];
162
163 if (lpm != 0)
164 sch->lpm &= ~lpm;
165 else
166 sch->lpm = 0;
167
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800168 stsch (sch->schid, &sch->schib);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
170 CIO_MSG_EVENT(0, "cio_start: 'not oper' status for "
Cornelia Huckfb6958a2006-01-06 00:19:25 -0800171 "subchannel 0.%x.%04x!\n", sch->schid.ssid,
172 sch->schid.sch_no);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 sprintf(dbf_text, "no%s", sch->dev.bus_id);
174 CIO_TRACE_EVENT(0, dbf_text);
175 CIO_HEX_EVENT(0, &sch->schib, sizeof (struct schib));
176
177 return (sch->lpm ? -EACCES : -ENODEV);
178}
179
180int
181cio_start_key (struct subchannel *sch, /* subchannel structure */
182 struct ccw1 * cpa, /* logical channel prog addr */
183 __u8 lpm, /* logical path mask */
184 __u8 key) /* storage key */
185{
186 char dbf_txt[15];
187 int ccode;
188
189 CIO_TRACE_EVENT (4, "stIO");
190 CIO_TRACE_EVENT (4, sch->dev.bus_id);
191
192 /* sch is always under 2G. */
193 sch->orb.intparm = (__u32)(unsigned long)sch;
194 sch->orb.fmt = 1;
195
196 sch->orb.pfch = sch->options.prefetch == 0;
197 sch->orb.spnd = sch->options.suspend;
198 sch->orb.ssic = sch->options.suspend && sch->options.inter;
Peter Oberparleitere0e32c82006-09-20 15:59:57 +0200199 sch->orb.lpm = (lpm != 0) ? lpm : sch->lpm;
Martin Schwidefsky347a8dc2006-01-06 00:19:28 -0800200#ifdef CONFIG_64BIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 /*
202 * for 64 bit we always support 64 bit IDAWs with 4k page size only
203 */
204 sch->orb.c64 = 1;
205 sch->orb.i2k = 0;
206#endif
207 sch->orb.key = key >> 4;
208 /* issue "Start Subchannel" */
209 sch->orb.cpa = (__u32) __pa (cpa);
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800210 ccode = ssch (sch->schid, &sch->orb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211
212 /* process condition code */
213 sprintf (dbf_txt, "ccode:%d", ccode);
214 CIO_TRACE_EVENT (4, dbf_txt);
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{
Peter Oberparleiter0b642ed2005-05-01 08:58:58 -0700234 return cio_start_key(sch, cpa, lpm, PAGE_DEFAULT_KEY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235}
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
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800249 ccode = rsch (sch->schid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
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 */
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800289 ccode = hsch (sch->schid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290
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 */
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800324 ccode = csch (sch->schid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325
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
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800357 ccode = xsch (sch->schid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358
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. */
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800365 stsch (sch->schid, &sch->schib);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 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++) {
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800387 ccode = msch_err (sch->schid, &sch->schib);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 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 */
409int
410cio_enable_subchannel (struct subchannel *sch, unsigned int isc)
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
Cornelia Huckd7b5a4c92006-12-08 15:54:28 +0100420 if (sch_is_pseudo_sch(sch))
421 return -EINVAL;
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800422 ccode = stsch (sch->schid, &sch->schib);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 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;
429 sch->schib.pmcw.intparm = (__u32)(unsigned long)sch;
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) {
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800440 stsch (sch->schid, &sch->schib);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 if (sch->schib.pmcw.ena)
442 break;
443 }
444 if (ret == -EBUSY) {
445 struct irb irb;
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800446 if (tsch(sch->schid, &irb) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 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
Cornelia Huckd7b5a4c92006-12-08 15:54:28 +0100469 if (sch_is_pseudo_sch(sch))
470 return 0;
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800471 ccode = stsch (sch->schid, &sch->schib);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 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) {
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800495 stsch (sch->schid, &sch->schib);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 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
Cornelia Huckd7b5a4c92006-12-08 15:54:28 +0100505int cio_create_sch_lock(struct subchannel *sch)
Cornelia Huck2ec22982006-12-08 15:54:26 +0100506{
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
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514/*
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
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800527cio_validate_subchannel (struct subchannel *sch, struct subchannel_id schid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528{
529 char dbf_txt[15];
530 int ccode;
Cornelia Huck2ec22982006-12-08 15:54:26 +0100531 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800533 sprintf (dbf_txt, "valsch%x", schid.sch_no);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 CIO_TRACE_EVENT (4, dbf_txt);
535
536 /* Nuke all fields. */
537 memset(sch, 0, sizeof(struct subchannel));
538
Cornelia Huck2ec22982006-12-08 15:54:26 +0100539 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 }
Cornelia Huck6ab48792006-07-12 16:39:50 +0200547 mutex_init(&sch->reg_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 /* Set a name for the subchannel */
Cornelia Huckfb6958a2006-01-06 00:19:25 -0800549 snprintf (sch->dev.bus_id, BUS_ID_SIZE, "0.%x.%04x", schid.ssid,
550 schid.sch_no);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551
552 /*
553 * The first subchannel that is not-operational (ccode==3)
554 * indicates that there aren't any more devices available.
Cornelia Huckfb6958a2006-01-06 00:19:25 -0800555 * If stsch gets an exception, it means the current subchannel set
556 * is not valid.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 */
Cornelia Huckfb6958a2006-01-06 00:19:25 -0800558 ccode = stsch_err (schid, &sch->schib);
Cornelia Huck2ec22982006-12-08 15:54:26 +0100559 if (ccode) {
560 err = (ccode == 3) ? -ENXIO : ccode;
561 goto out;
562 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 /* 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,
Cornelia Huckfb6958a2006-01-06 00:19:25 -0800571 "Subchannel 0.%x.%04x reports "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 "non-I/O subchannel type %04X\n",
Cornelia Huckfb6958a2006-01-06 00:19:25 -0800573 sch->schid.ssid, sch->schid.sch_no, sch->st);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 /* We stop here for non-io subchannels. */
Cornelia Huck2ec22982006-12-08 15:54:26 +0100575 err = sch->st;
576 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 }
578
579 /* Initialization for io subchannels. */
Cornelia Huck2ec22982006-12-08 15:54:26 +0100580 if (!sch->schib.pmcw.dnv) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 /* io subchannel but device number is invalid. */
Cornelia Huck2ec22982006-12-08 15:54:26 +0100582 err = -ENODEV;
583 goto out;
584 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 /* Devno is valid. */
Cornelia Huckfb6958a2006-01-06 00:19:25 -0800586 if (is_blacklisted (sch->schid.ssid, sch->schib.pmcw.dev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 /*
588 * This device must not be known to Linux. So we simply
589 * say that there is no device and return ENODEV.
590 */
Cornelia Huck347d59d2007-02-05 21:17:56 +0100591 CIO_MSG_EVENT(4, "Blacklisted device detected "
Cornelia Huckfb6958a2006-01-06 00:19:25 -0800592 "at devno %04X, subchannel set %x\n",
593 sch->schib.pmcw.dev, sch->schid.ssid);
Cornelia Huck2ec22982006-12-08 15:54:26 +0100594 err = -ENODEV;
595 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 }
Peter Oberparleitere6b6e102007-04-27 16:01:28 +0200597 if (cio_is_console(sch->schid))
598 sch->opm = 0xff;
599 else
600 sch->opm = chp_get_sch_opm(sch);
Peter Oberparleiter28bdc6f2006-09-20 15:59:59 +0200601 sch->lpm = sch->schib.pmcw.pam & sch->opm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602
603 CIO_DEBUG(KERN_INFO, 0,
Cornelia Huckfb6958a2006-01-06 00:19:25 -0800604 "Detected device %04x on subchannel 0.%x.%04X"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 " - PIM = %02X, PAM = %02X, POM = %02X\n",
Cornelia Huckfb6958a2006-01-06 00:19:25 -0800606 sch->schib.pmcw.dev, sch->schid.ssid,
607 sch->schid.sch_no, sch->schib.pmcw.pim,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 sch->schib.pmcw.pam, sch->schib.pmcw.pom);
609
610 /*
611 * We now have to initially ...
612 * ... set "interruption subclass"
613 * ... enable "concurrent sense"
614 * ... enable "multipath mode" if more than one
615 * CHPID is available. This is done regardless
616 * whether multiple paths are available for us.
617 */
618 sch->schib.pmcw.isc = 3; /* could be smth. else */
619 sch->schib.pmcw.csense = 1; /* concurrent sense */
620 sch->schib.pmcw.ena = 0;
621 if ((sch->lpm & (sch->lpm - 1)) != 0)
622 sch->schib.pmcw.mp = 1; /* multipath mode */
623 return 0;
Cornelia Huck2ec22982006-12-08 15:54:26 +0100624out:
625 if (!cio_is_console(schid))
626 kfree(sch->lock);
627 sch->lock = NULL;
628 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629}
630
631/*
632 * do_IRQ() handles all normal I/O device IRQ's (the special
633 * SMP cross-CPU interrupts have their own specific
634 * handlers).
635 *
636 */
637void
638do_IRQ (struct pt_regs *regs)
639{
640 struct tpi_info *tpi_info;
641 struct subchannel *sch;
642 struct irb *irb;
Heiko Carstens5a489b92006-10-06 16:38:35 +0200643 struct pt_regs *old_regs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644
Heiko Carstens5a489b92006-10-06 16:38:35 +0200645 old_regs = set_irq_regs(regs);
Heiko Carstens9d0a57c2006-10-11 15:31:26 +0200646 irq_enter();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 asm volatile ("mc 0,0");
648 if (S390_lowcore.int_clock >= S390_lowcore.jiffy_timer)
649 /**
650 * Make sure that the i/o interrupt did not "overtake"
651 * the last HZ timer interrupt.
652 */
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100653 account_ticks(S390_lowcore.int_clock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 /*
655 * Get interrupt information from lowcore
656 */
657 tpi_info = (struct tpi_info *) __LC_SUBCHANNEL_ID;
658 irb = (struct irb *) __LC_IRB;
659 do {
660 kstat_cpu(smp_processor_id()).irqs[IO_INTERRUPT]++;
661 /*
662 * Non I/O-subchannel thin interrupts are processed differently
663 */
664 if (tpi_info->adapter_IO == 1 &&
665 tpi_info->int_type == IO_INTERRUPT_TYPE) {
666 do_adapter_IO();
667 continue;
668 }
669 sch = (struct subchannel *)(unsigned long)tpi_info->intparm;
670 if (sch)
Cornelia Huck2ec22982006-12-08 15:54:26 +0100671 spin_lock(sch->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 /* Store interrupt response block to lowcore. */
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800673 if (tsch (tpi_info->schid, irb) == 0 && sch) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 /* Keep subchannel information word up to date. */
675 memcpy (&sch->schib.scsw, &irb->scsw,
676 sizeof (irb->scsw));
677 /* Call interrupt handler if there is one. */
678 if (sch->driver && sch->driver->irq)
679 sch->driver->irq(&sch->dev);
680 }
681 if (sch)
Cornelia Huck2ec22982006-12-08 15:54:26 +0100682 spin_unlock(sch->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 /*
684 * Are more interrupts pending?
685 * If so, the tpi instruction will update the lowcore
686 * to hold the info for the next interrupt.
687 * We don't do this for VM because a tpi drops the cpu
688 * out of the sie which costs more cycles than it saves.
689 */
690 } while (!MACHINE_IS_VM && tpi (NULL) != 0);
Heiko Carstens9d0a57c2006-10-11 15:31:26 +0200691 irq_exit();
Heiko Carstens5a489b92006-10-06 16:38:35 +0200692 set_irq_regs(old_regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693}
694
695#ifdef CONFIG_CCW_CONSOLE
696static struct subchannel console_subchannel;
697static int console_subchannel_in_use;
698
699/*
700 * busy wait for the next interrupt on the console
701 */
702void
703wait_cons_dev (void)
704{
705 unsigned long cr6 __attribute__ ((aligned (8)));
706 unsigned long save_cr6 __attribute__ ((aligned (8)));
707
708 /*
709 * before entering the spinlock we may already have
710 * processed the interrupt on a different CPU...
711 */
712 if (!console_subchannel_in_use)
713 return;
714
715 /* disable all but isc 7 (console device) */
716 __ctl_store (save_cr6, 6, 6);
717 cr6 = 0x01000000;
718 __ctl_load (cr6, 6, 6);
719
720 do {
Cornelia Huck2ec22982006-12-08 15:54:26 +0100721 spin_unlock(console_subchannel.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 if (!cio_tpi())
723 cpu_relax();
Cornelia Huck2ec22982006-12-08 15:54:26 +0100724 spin_lock(console_subchannel.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 } while (console_subchannel.schib.scsw.actl != 0);
726 /*
727 * restore previous isc value
728 */
729 __ctl_load (save_cr6, 6, 6);
730}
731
732static int
Cornelia Huckf97a56f2006-01-06 00:19:22 -0800733cio_test_for_console(struct subchannel_id schid, void *data)
734{
Cornelia Huckfb6958a2006-01-06 00:19:25 -0800735 if (stsch_err(schid, &console_subchannel.schib) != 0)
Cornelia Huckf97a56f2006-01-06 00:19:22 -0800736 return -ENXIO;
737 if (console_subchannel.schib.pmcw.dnv &&
738 console_subchannel.schib.pmcw.dev ==
739 console_devno) {
740 console_irq = schid.sch_no;
741 return 1; /* found */
742 }
743 return 0;
744}
745
746
747static int
748cio_get_console_sch_no(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749{
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800750 struct subchannel_id schid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800752 init_subchannel_id(&schid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 if (console_irq != -1) {
754 /* VM provided us with the irq number of the console. */
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800755 schid.sch_no = console_irq;
756 if (stsch(schid, &console_subchannel.schib) != 0 ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 !console_subchannel.schib.pmcw.dnv)
758 return -1;
759 console_devno = console_subchannel.schib.pmcw.dev;
760 } else if (console_devno != -1) {
761 /* At least the console device number is known. */
Cornelia Huckf97a56f2006-01-06 00:19:22 -0800762 for_each_subchannel(cio_test_for_console, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 if (console_irq == -1)
764 return -1;
765 } else {
766 /* unlike in 2.4, we cannot autoprobe here, since
767 * the channel subsystem is not fully initialized.
768 * With some luck, the HWC console can take over */
769 printk(KERN_WARNING "No ccw console found!\n");
770 return -1;
771 }
772 return console_irq;
773}
774
775struct subchannel *
776cio_probe_console(void)
777{
Cornelia Huckf97a56f2006-01-06 00:19:22 -0800778 int sch_no, ret;
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800779 struct subchannel_id schid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780
781 if (xchg(&console_subchannel_in_use, 1) != 0)
782 return ERR_PTR(-EBUSY);
Cornelia Huckf97a56f2006-01-06 00:19:22 -0800783 sch_no = cio_get_console_sch_no();
784 if (sch_no == -1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 console_subchannel_in_use = 0;
786 return ERR_PTR(-ENODEV);
787 }
788 memset(&console_subchannel, 0, sizeof(struct subchannel));
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800789 init_subchannel_id(&schid);
Cornelia Huckf97a56f2006-01-06 00:19:22 -0800790 schid.sch_no = sch_no;
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800791 ret = cio_validate_subchannel(&console_subchannel, schid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 if (ret) {
793 console_subchannel_in_use = 0;
794 return ERR_PTR(-ENODEV);
795 }
796
797 /*
798 * enable console I/O-interrupt subclass 7
799 */
800 ctl_set_bit(6, 24);
801 console_subchannel.schib.pmcw.isc = 7;
802 console_subchannel.schib.pmcw.intparm =
803 (__u32)(unsigned long)&console_subchannel;
804 ret = cio_modify(&console_subchannel);
805 if (ret) {
806 console_subchannel_in_use = 0;
807 return ERR_PTR(ret);
808 }
809 return &console_subchannel;
810}
811
812void
813cio_release_console(void)
814{
815 console_subchannel.schib.pmcw.intparm = 0;
816 cio_modify(&console_subchannel);
817 ctl_clear_bit(6, 24);
818 console_subchannel_in_use = 0;
819}
820
821/* Bah... hack to catch console special sausages. */
822int
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800823cio_is_console(struct subchannel_id schid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824{
825 if (!console_subchannel_in_use)
826 return 0;
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800827 return schid_equal(&schid, &console_subchannel.schid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828}
829
830struct subchannel *
831cio_get_console_subchannel(void)
832{
833 if (!console_subchannel_in_use)
Heiko Carstensd2c993d2006-07-12 16:41:55 +0200834 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 return &console_subchannel;
836}
837
838#endif
Heiko Carstens4d284ca2007-02-05 21:18:53 +0100839static int
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800840__disable_subchannel_easy(struct subchannel_id schid, struct schib *schib)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841{
842 int retry, cc;
843
844 cc = 0;
845 for (retry=0;retry<3;retry++) {
846 schib->pmcw.ena = 0;
847 cc = msch(schid, schib);
848 if (cc)
849 return (cc==3?-ENODEV:-EBUSY);
850 stsch(schid, schib);
851 if (!schib->pmcw.ena)
852 return 0;
853 }
854 return -EBUSY; /* uhm... */
855}
856
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100857/* we can't use the normal udelay here, since it enables external interrupts */
858
859static void udelay_reset(unsigned long usecs)
860{
861 uint64_t start_cc, end_cc;
862
863 asm volatile ("STCK %0" : "=m" (start_cc));
864 do {
865 cpu_relax();
866 asm volatile ("STCK %0" : "=m" (end_cc));
867 } while (((end_cc - start_cc)/4096) < usecs);
868}
869
Heiko Carstens4d284ca2007-02-05 21:18:53 +0100870static int
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800871__clear_subchannel_easy(struct subchannel_id schid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872{
873 int retry;
874
875 if (csch(schid))
876 return -ENODEV;
877 for (retry=0;retry<20;retry++) {
878 struct tpi_info ti;
879
880 if (tpi(&ti)) {
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800881 tsch(ti.schid, (struct irb *)__LC_IRB);
882 if (schid_equal(&ti.schid, &schid))
Cornelia Huck4c24da72005-09-03 15:58:01 -0700883 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 }
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100885 udelay_reset(100);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 }
887 return -EBUSY;
888}
889
Michael Holzheua45e1412006-12-15 17:18:22 +0100890static int pgm_check_occured;
891
892static void cio_reset_pgm_check_handler(void)
893{
894 pgm_check_occured = 1;
895}
896
897static int stsch_reset(struct subchannel_id schid, volatile struct schib *addr)
898{
899 int rc;
900
901 pgm_check_occured = 0;
Heiko Carstensab14de62007-02-05 21:18:37 +0100902 s390_base_pgm_handler_fn = cio_reset_pgm_check_handler;
Heiko Carstens6faf4442007-01-09 10:18:41 +0100903 rc = stsch(schid, addr);
Heiko Carstensab14de62007-02-05 21:18:37 +0100904 s390_base_pgm_handler_fn = NULL;
Heiko Carstens6faf4442007-01-09 10:18:41 +0100905
Heiko Carstensab14de62007-02-05 21:18:37 +0100906 /* The program check handler could have changed pgm_check_occured. */
Heiko Carstens6faf4442007-01-09 10:18:41 +0100907 barrier();
908
Michael Holzheua45e1412006-12-15 17:18:22 +0100909 if (pgm_check_occured)
910 return -EIO;
911 else
912 return rc;
913}
914
Heiko Carstens15e9b582006-12-04 15:40:26 +0100915static int __shutdown_subchannel_easy(struct subchannel_id schid, void *data)
Cornelia Huckf97a56f2006-01-06 00:19:22 -0800916{
917 struct schib schib;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918
Michael Holzheua45e1412006-12-15 17:18:22 +0100919 if (stsch_reset(schid, &schib))
Cornelia Huckf97a56f2006-01-06 00:19:22 -0800920 return -ENXIO;
921 if (!schib.pmcw.ena)
922 return 0;
923 switch(__disable_subchannel_easy(schid, &schib)) {
924 case 0:
925 case -ENODEV:
926 break;
927 default: /* -EBUSY */
928 if (__clear_subchannel_easy(schid))
929 break; /* give up... */
930 stsch(schid, &schib);
931 __disable_subchannel_easy(schid, &schib);
932 }
933 return 0;
934}
935
Heiko Carstens15e9b582006-12-04 15:40:26 +0100936static atomic_t chpid_reset_count;
937
938static void s390_reset_chpids_mcck_handler(void)
939{
940 struct crw crw;
941 struct mci *mci;
942
943 /* Check for pending channel report word. */
944 mci = (struct mci *)&S390_lowcore.mcck_interruption_code;
945 if (!mci->cp)
946 return;
947 /* Process channel report words. */
948 while (stcrw(&crw) == 0) {
949 /* Check for responses to RCHP. */
950 if (crw.slct && crw.rsc == CRW_RSC_CPATH)
951 atomic_dec(&chpid_reset_count);
952 }
953}
954
955#define RCHP_TIMEOUT (30 * USEC_PER_SEC)
956static void css_reset(void)
957{
958 int i, ret;
959 unsigned long long timeout;
Peter Oberparleiterf86635f2007-04-27 16:01:26 +0200960 struct chp_id chpid;
Heiko Carstens15e9b582006-12-04 15:40:26 +0100961
962 /* Reset subchannels. */
963 for_each_subchannel(__shutdown_subchannel_easy, NULL);
964 /* Reset channel paths. */
Heiko Carstensab14de62007-02-05 21:18:37 +0100965 s390_base_mcck_handler_fn = s390_reset_chpids_mcck_handler;
Heiko Carstens15e9b582006-12-04 15:40:26 +0100966 /* Enable channel report machine checks. */
967 __ctl_set_bit(14, 28);
968 /* Temporarily reenable machine checks. */
969 local_mcck_enable();
Peter Oberparleiterf86635f2007-04-27 16:01:26 +0200970 chp_id_init(&chpid);
Heiko Carstens15e9b582006-12-04 15:40:26 +0100971 for (i = 0; i <= __MAX_CHPID; i++) {
Peter Oberparleiterf86635f2007-04-27 16:01:26 +0200972 chpid.id = i;
973 ret = rchp(chpid);
Heiko Carstens15e9b582006-12-04 15:40:26 +0100974 if ((ret == 0) || (ret == 2))
975 /*
976 * rchp either succeeded, or another rchp is already
977 * in progress. In either case, we'll get a crw.
978 */
979 atomic_inc(&chpid_reset_count);
980 }
981 /* Wait for machine check for all channel paths. */
982 timeout = get_clock() + (RCHP_TIMEOUT << 12);
983 while (atomic_read(&chpid_reset_count) != 0) {
984 if (get_clock() > timeout)
985 break;
986 cpu_relax();
987 }
988 /* Disable machine checks again. */
989 local_mcck_disable();
990 /* Disable channel report machine checks. */
991 __ctl_clear_bit(14, 28);
Heiko Carstensab14de62007-02-05 21:18:37 +0100992 s390_base_mcck_handler_fn = NULL;
Heiko Carstens15e9b582006-12-04 15:40:26 +0100993}
994
995static struct reset_call css_reset_call = {
996 .fn = css_reset,
997};
998
999static int __init init_css_reset_call(void)
1000{
1001 atomic_set(&chpid_reset_count, 0);
1002 register_reset_call(&css_reset_call);
1003 return 0;
1004}
1005
1006arch_initcall(init_css_reset_call);
1007
1008struct sch_match_id {
1009 struct subchannel_id schid;
1010 struct ccw_dev_id devid;
1011 int rc;
1012};
1013
1014static int __reipl_subchannel_match(struct subchannel_id schid, void *data)
1015{
1016 struct schib schib;
1017 struct sch_match_id *match_id = data;
1018
Michael Holzheua45e1412006-12-15 17:18:22 +01001019 if (stsch_reset(schid, &schib))
Heiko Carstens15e9b582006-12-04 15:40:26 +01001020 return -ENXIO;
1021 if (schib.pmcw.dnv &&
1022 (schib.pmcw.dev == match_id->devid.devno) &&
1023 (schid.ssid == match_id->devid.ssid)) {
1024 match_id->schid = schid;
1025 match_id->rc = 0;
1026 return 1;
1027 }
1028 return 0;
1029}
1030
1031static int reipl_find_schid(struct ccw_dev_id *devid,
1032 struct subchannel_id *schid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033{
Michael Holzheuff6b8ea2006-09-20 15:58:49 +02001034 struct sch_match_id match_id;
1035
1036 match_id.devid = *devid;
1037 match_id.rc = -ENODEV;
Heiko Carstens15e9b582006-12-04 15:40:26 +01001038 for_each_subchannel(__reipl_subchannel_match, &match_id);
Michael Holzheuff6b8ea2006-09-20 15:58:49 +02001039 if (match_id.rc == 0)
1040 *schid = match_id.schid;
1041 return match_id.rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042}
1043
Michael Holzheuff6b8ea2006-09-20 15:58:49 +02001044extern void do_reipl_asm(__u32 schid);
1045
1046/* Make sure all subchannels are quiet before we re-ipl an lpar. */
1047void reipl_ccw_dev(struct ccw_dev_id *devid)
1048{
1049 struct subchannel_id schid;
1050
Heiko Carstens15e9b582006-12-04 15:40:26 +01001051 s390_reset_system();
1052 if (reipl_find_schid(devid, &schid) != 0)
Michael Holzheuff6b8ea2006-09-20 15:58:49 +02001053 panic("IPL Device not found\n");
Michael Holzheuff6b8ea2006-09-20 15:58:49 +02001054 do_reipl_asm(*((__u32*)&schid));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055}
Heiko Carstense87bfe52006-09-20 15:59:15 +02001056
Heiko Carstens6fc321f2007-04-27 16:01:25 +02001057int __init cio_get_iplinfo(struct cio_iplinfo *iplinfo)
Heiko Carstense87bfe52006-09-20 15:59:15 +02001058{
1059 struct subchannel_id schid;
Heiko Carstens6fc321f2007-04-27 16:01:25 +02001060 struct schib schib;
Heiko Carstense87bfe52006-09-20 15:59:15 +02001061
1062 schid = *(struct subchannel_id *)__LC_SUBCHANNEL_ID;
1063 if (!schid.one)
Heiko Carstens6fc321f2007-04-27 16:01:25 +02001064 return -ENODEV;
1065 if (stsch(schid, &schib))
1066 return -ENODEV;
1067 if (!schib.pmcw.dnv)
1068 return -ENODEV;
1069 iplinfo->devno = schib.pmcw.dev;
1070 iplinfo->is_qdio = schib.pmcw.qf;
1071 return 0;
Heiko Carstense87bfe52006-09-20 15:59:15 +02001072}