blob: 3db2c386546f13733f122b6e0d6ef7410416548c [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * drivers/s390/cio/cio.c
3 * S/390 common I/O routines -- low level i/o calls
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
Cornelia Huck0ae7a7b2008-07-14 09:58:43 +02005 * Copyright IBM Corp. 1999,2008
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 * Author(s): Ingo Adlung (adlung@de.ibm.com)
Cornelia Huck4ce3b302006-01-14 13:21:04 -08007 * Cornelia Huck (cornelia.huck@de.ibm.com)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 * Arnd Bergmann (arndb@de.ibm.com)
9 * Martin Schwidefsky (schwidefsky@de.ibm.com)
10 */
11
12#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/init.h>
14#include <linux/slab.h>
15#include <linux/device.h>
16#include <linux/kernel_stat.h>
17#include <linux/interrupt.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <asm/cio.h>
19#include <asm/delay.h>
20#include <asm/irq.h>
Heiko Carstens5a489b982006-10-06 16:38:35 +020021#include <asm/irq_regs.h>
Heiko Carstense87bfe52006-09-20 15:59:15 +020022#include <asm/setup.h>
Heiko Carstens15e9b582006-12-04 15:40:26 +010023#include <asm/reset.h>
Michael Holzheu46b05d22007-02-21 10:55:21 +010024#include <asm/ipl.h>
Peter Oberparleitere5854a52007-04-27 16:01:31 +020025#include <asm/chpid.h>
Peter Oberparleiter4e8e56c2008-01-26 14:10:44 +010026#include <asm/airq.h>
Cornelia Huck3a3fc292008-07-14 09:58:58 +020027#include <asm/isc.h>
Heiko Carstens43ca5c32008-04-17 07:46:23 +020028#include <asm/cpu.h>
Peter Oberparleiter83262d62008-07-14 09:58:51 +020029#include <asm/fcx.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include "cio.h"
31#include "css.h"
32#include "chsc.h"
33#include "ioasm.h"
Cornelia Huckcd6b4f22008-01-26 14:10:43 +010034#include "io_sch.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include "blacklist.h"
36#include "cio_debug.h"
Peter Oberparleitere6b6e102007-04-27 16:01:28 +020037#include "chp.h"
Heiko Carstens15e9b582006-12-04 15:40:26 +010038#include "../s390mach.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
40debug_info_t *cio_debug_msg_id;
41debug_info_t *cio_debug_trace_id;
42debug_info_t *cio_debug_crw_id;
43
Linus Torvalds1da177e2005-04-16 15:20:36 -070044/*
45 * Function: cio_debug_init
Cornelia Huckbc698bc2008-01-26 14:10:42 +010046 * Initializes three debug logs for common I/O:
47 * - cio_msg logs generic cio messages
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 * - cio_trace logs the calling of different functions
Cornelia Huckbc698bc2008-01-26 14:10:42 +010049 * - cio_crw logs machine check related cio messages
Linus Torvalds1da177e2005-04-16 15:20:36 -070050 */
Cornelia Huckbc698bc2008-01-26 14:10:42 +010051static int __init cio_debug_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070052{
Peter Tiedemann361f4942008-01-26 14:11:30 +010053 cio_debug_msg_id = debug_register("cio_msg", 16, 1, 16 * sizeof(long));
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 if (!cio_debug_msg_id)
55 goto out_unregister;
Cornelia Huckbc698bc2008-01-26 14:10:42 +010056 debug_register_view(cio_debug_msg_id, &debug_sprintf_view);
57 debug_set_level(cio_debug_msg_id, 2);
Peter Tiedemann361f4942008-01-26 14:11:30 +010058 cio_debug_trace_id = debug_register("cio_trace", 16, 1, 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 if (!cio_debug_trace_id)
60 goto out_unregister;
Cornelia Huckbc698bc2008-01-26 14:10:42 +010061 debug_register_view(cio_debug_trace_id, &debug_hex_ascii_view);
62 debug_set_level(cio_debug_trace_id, 2);
Peter Tiedemann361f4942008-01-26 14:11:30 +010063 cio_debug_crw_id = debug_register("cio_crw", 16, 1, 16 * sizeof(long));
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 if (!cio_debug_crw_id)
65 goto out_unregister;
Cornelia Huckbc698bc2008-01-26 14:10:42 +010066 debug_register_view(cio_debug_crw_id, &debug_sprintf_view);
67 debug_set_level(cio_debug_crw_id, 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 return 0;
69
70out_unregister:
71 if (cio_debug_msg_id)
Cornelia Huckbc698bc2008-01-26 14:10:42 +010072 debug_unregister(cio_debug_msg_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 if (cio_debug_trace_id)
Cornelia Huckbc698bc2008-01-26 14:10:42 +010074 debug_unregister(cio_debug_trace_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 if (cio_debug_crw_id)
Cornelia Huckbc698bc2008-01-26 14:10:42 +010076 debug_unregister(cio_debug_crw_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 return -1;
78}
79
80arch_initcall (cio_debug_init);
81
82int
83cio_set_options (struct subchannel *sch, int flags)
84{
85 sch->options.suspend = (flags & DOIO_ALLOW_SUSPEND) != 0;
86 sch->options.prefetch = (flags & DOIO_DENY_PREFETCH) != 0;
87 sch->options.inter = (flags & DOIO_SUPPRESS_INTER) != 0;
88 return 0;
89}
90
91/* FIXME: who wants to use this? */
92int
93cio_get_options (struct subchannel *sch)
94{
95 int flags;
96
97 flags = 0;
98 if (sch->options.suspend)
99 flags |= DOIO_ALLOW_SUSPEND;
100 if (sch->options.prefetch)
101 flags |= DOIO_DENY_PREFETCH;
102 if (sch->options.inter)
103 flags |= DOIO_SUPPRESS_INTER;
104 return flags;
105}
106
107/*
108 * Use tpi to get a pending interrupt, call the interrupt handler and
109 * return a pointer to the subchannel structure.
110 */
Heiko Carstens4d284ca2007-02-05 21:18:53 +0100111static int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112cio_tpi(void)
113{
114 struct tpi_info *tpi_info;
115 struct subchannel *sch;
116 struct irb *irb;
Heiko Carstensb1e76612008-10-10 21:33:17 +0200117 int irq_context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118
119 tpi_info = (struct tpi_info *) __LC_SUBCHANNEL_ID;
120 if (tpi (NULL) != 1)
121 return 0;
122 irb = (struct irb *) __LC_IRB;
123 /* Store interrupt response block to lowcore. */
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800124 if (tsch (tpi_info->schid, irb) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 /* Not status pending or not operational. */
126 return 1;
127 sch = (struct subchannel *)(unsigned long)tpi_info->intparm;
128 if (!sch)
129 return 1;
Heiko Carstensb1e76612008-10-10 21:33:17 +0200130 irq_context = in_interrupt();
131 if (!irq_context)
132 local_bh_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 irq_enter ();
Cornelia Huck2ec22982006-12-08 15:54:26 +0100134 spin_lock(sch->lock);
Peter Oberparleiter23d805b62008-07-14 09:58:50 +0200135 memcpy(&sch->schib.scsw, &irb->scsw, sizeof(union scsw));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 if (sch->driver && sch->driver->irq)
Cornelia Huck602b20f2008-01-26 14:10:39 +0100137 sch->driver->irq(sch);
Cornelia Huck2ec22982006-12-08 15:54:26 +0100138 spin_unlock(sch->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 irq_exit ();
Heiko Carstensb1e76612008-10-10 21:33:17 +0200140 if (!irq_context)
141 _local_bh_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 return 1;
143}
144
Heiko Carstens4d284ca2007-02-05 21:18:53 +0100145static int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146cio_start_handle_notoper(struct subchannel *sch, __u8 lpm)
147{
148 char dbf_text[15];
149
150 if (lpm != 0)
151 sch->lpm &= ~lpm;
152 else
153 sch->lpm = 0;
154
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800155 stsch (sch->schid, &sch->schib);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156
Michael Ernst139b83dd2008-05-07 09:22:54 +0200157 CIO_MSG_EVENT(2, "cio_start: 'not oper' status for "
Cornelia Huckfb6958a2006-01-06 00:19:25 -0800158 "subchannel 0.%x.%04x!\n", sch->schid.ssid,
159 sch->schid.sch_no);
Kay Sievers2a0217d2008-10-10 21:33:09 +0200160 sprintf(dbf_text, "no%s", dev_name(&sch->dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 CIO_TRACE_EVENT(0, dbf_text);
162 CIO_HEX_EVENT(0, &sch->schib, sizeof (struct schib));
163
164 return (sch->lpm ? -EACCES : -ENODEV);
165}
166
167int
168cio_start_key (struct subchannel *sch, /* subchannel structure */
169 struct ccw1 * cpa, /* logical channel prog addr */
170 __u8 lpm, /* logical path mask */
171 __u8 key) /* storage key */
172{
173 char dbf_txt[15];
174 int ccode;
Peter Oberparleiter83262d62008-07-14 09:58:51 +0200175 union orb *orb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176
Cornelia Huckcd6b4f22008-01-26 14:10:43 +0100177 CIO_TRACE_EVENT(4, "stIO");
Kay Sievers2a0217d2008-10-10 21:33:09 +0200178 CIO_TRACE_EVENT(4, dev_name(&sch->dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179
Cornelia Huckcd6b4f22008-01-26 14:10:43 +0100180 orb = &to_io_private(sch)->orb;
Stefan Weinhuber9adb8c12008-09-16 09:32:19 -0700181 memset(orb, 0, sizeof(union orb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 /* sch is always under 2G. */
Peter Oberparleiter83262d62008-07-14 09:58:51 +0200183 orb->cmd.intparm = (u32)(addr_t)sch;
184 orb->cmd.fmt = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
Peter Oberparleiter83262d62008-07-14 09:58:51 +0200186 orb->cmd.pfch = sch->options.prefetch == 0;
187 orb->cmd.spnd = sch->options.suspend;
188 orb->cmd.ssic = sch->options.suspend && sch->options.inter;
189 orb->cmd.lpm = (lpm != 0) ? lpm : sch->lpm;
Martin Schwidefsky347a8dc2006-01-06 00:19:28 -0800190#ifdef CONFIG_64BIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 /*
192 * for 64 bit we always support 64 bit IDAWs with 4k page size only
193 */
Peter Oberparleiter83262d62008-07-14 09:58:51 +0200194 orb->cmd.c64 = 1;
195 orb->cmd.i2k = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196#endif
Peter Oberparleiter83262d62008-07-14 09:58:51 +0200197 orb->cmd.key = key >> 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 /* issue "Start Subchannel" */
Peter Oberparleiter83262d62008-07-14 09:58:51 +0200199 orb->cmd.cpa = (__u32) __pa(cpa);
Cornelia Huckcd6b4f22008-01-26 14:10:43 +0100200 ccode = ssch(sch->schid, orb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201
202 /* process condition code */
Cornelia Huckcd6b4f22008-01-26 14:10:43 +0100203 sprintf(dbf_txt, "ccode:%d", ccode);
204 CIO_TRACE_EVENT(4, dbf_txt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205
206 switch (ccode) {
207 case 0:
208 /*
209 * initialize device status information
210 */
Peter Oberparleiter23d805b62008-07-14 09:58:50 +0200211 sch->schib.scsw.cmd.actl |= SCSW_ACTL_START_PEND;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 return 0;
213 case 1: /* status pending */
214 case 2: /* busy */
215 return -EBUSY;
Cornelia Huckc91ebe42008-09-09 12:38:58 +0200216 case 3: /* device/path not operational */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 return cio_start_handle_notoper(sch, lpm);
Cornelia Huckc91ebe42008-09-09 12:38:58 +0200218 default:
219 return ccode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 }
221}
222
223int
224cio_start (struct subchannel *sch, struct ccw1 *cpa, __u8 lpm)
225{
Peter Oberparleiter0b642ed2005-05-01 08:58:58 -0700226 return cio_start_key(sch, cpa, lpm, PAGE_DEFAULT_KEY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227}
228
229/*
230 * resume suspended I/O operation
231 */
232int
233cio_resume (struct subchannel *sch)
234{
235 char dbf_txt[15];
236 int ccode;
237
238 CIO_TRACE_EVENT (4, "resIO");
Kay Sievers2a0217d2008-10-10 21:33:09 +0200239 CIO_TRACE_EVENT(4, dev_name(&sch->dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800241 ccode = rsch (sch->schid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242
243 sprintf (dbf_txt, "ccode:%d", ccode);
244 CIO_TRACE_EVENT (4, dbf_txt);
245
246 switch (ccode) {
247 case 0:
Peter Oberparleiter23d805b62008-07-14 09:58:50 +0200248 sch->schib.scsw.cmd.actl |= SCSW_ACTL_RESUME_PEND;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 return 0;
250 case 1:
251 return -EBUSY;
252 case 2:
253 return -EINVAL;
254 default:
255 /*
256 * useless to wait for request completion
257 * as device is no longer operational !
258 */
259 return -ENODEV;
260 }
261}
262
263/*
264 * halt I/O operation
265 */
266int
267cio_halt(struct subchannel *sch)
268{
269 char dbf_txt[15];
270 int ccode;
271
272 if (!sch)
273 return -ENODEV;
274
275 CIO_TRACE_EVENT (2, "haltIO");
Kay Sievers2a0217d2008-10-10 21:33:09 +0200276 CIO_TRACE_EVENT(2, dev_name(&sch->dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277
278 /*
279 * Issue "Halt subchannel" and process condition code
280 */
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800281 ccode = hsch (sch->schid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282
283 sprintf (dbf_txt, "ccode:%d", ccode);
284 CIO_TRACE_EVENT (2, dbf_txt);
285
286 switch (ccode) {
287 case 0:
Peter Oberparleiter23d805b62008-07-14 09:58:50 +0200288 sch->schib.scsw.cmd.actl |= SCSW_ACTL_HALT_PEND;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 return 0;
290 case 1: /* status pending */
291 case 2: /* busy */
292 return -EBUSY;
293 default: /* device not operational */
294 return -ENODEV;
295 }
296}
297
298/*
299 * Clear I/O operation
300 */
301int
302cio_clear(struct subchannel *sch)
303{
304 char dbf_txt[15];
305 int ccode;
306
307 if (!sch)
308 return -ENODEV;
309
310 CIO_TRACE_EVENT (2, "clearIO");
Kay Sievers2a0217d2008-10-10 21:33:09 +0200311 CIO_TRACE_EVENT(2, dev_name(&sch->dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312
313 /*
314 * Issue "Clear subchannel" and process condition code
315 */
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800316 ccode = csch (sch->schid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317
318 sprintf (dbf_txt, "ccode:%d", ccode);
319 CIO_TRACE_EVENT (2, dbf_txt);
320
321 switch (ccode) {
322 case 0:
Peter Oberparleiter23d805b62008-07-14 09:58:50 +0200323 sch->schib.scsw.cmd.actl |= SCSW_ACTL_CLEAR_PEND;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 return 0;
325 default: /* device not operational */
326 return -ENODEV;
327 }
328}
329
330/*
331 * Function: cio_cancel
332 * Issues a "Cancel Subchannel" on the specified subchannel
333 * Note: We don't need any fancy intparms and flags here
334 * since xsch is executed synchronously.
335 * Only for common I/O internal use as for now.
336 */
337int
338cio_cancel (struct subchannel *sch)
339{
340 char dbf_txt[15];
341 int ccode;
342
343 if (!sch)
344 return -ENODEV;
345
346 CIO_TRACE_EVENT (2, "cancelIO");
Kay Sievers2a0217d2008-10-10 21:33:09 +0200347 CIO_TRACE_EVENT(2, dev_name(&sch->dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800349 ccode = xsch (sch->schid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350
351 sprintf (dbf_txt, "ccode:%d", ccode);
352 CIO_TRACE_EVENT (2, dbf_txt);
353
354 switch (ccode) {
355 case 0: /* success */
356 /* Update information in scsw. */
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800357 stsch (sch->schid, &sch->schib);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 return 0;
359 case 1: /* status pending */
360 return -EBUSY;
361 case 2: /* not applicable */
362 return -EINVAL;
363 default: /* not oper */
364 return -ENODEV;
365 }
366}
367
368/*
369 * Function: cio_modify
370 * Issues a "Modify Subchannel" on the specified subchannel
371 */
372int
373cio_modify (struct subchannel *sch)
374{
375 int ccode, retry, ret;
376
377 ret = 0;
378 for (retry = 0; retry < 5; retry++) {
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800379 ccode = msch_err (sch->schid, &sch->schib);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 if (ccode < 0) /* -EIO if msch gets a program check. */
381 return ccode;
382 switch (ccode) {
383 case 0: /* successfull */
384 return 0;
385 case 1: /* status pending */
386 return -EBUSY;
387 case 2: /* busy */
388 udelay (100); /* allow for recovery */
389 ret = -EBUSY;
390 break;
391 case 3: /* not operational */
392 return -ENODEV;
393 }
394 }
395 return ret;
396}
397
Cornelia Huck44a1c192008-07-14 09:58:47 +0200398/**
399 * cio_enable_subchannel - enable a subchannel.
400 * @sch: subchannel to be enabled
401 * @intparm: interruption parameter to set
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 */
Cornelia Huckedf22092008-04-30 13:38:39 +0200403int cio_enable_subchannel(struct subchannel *sch, u32 intparm)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404{
405 char dbf_txt[15];
406 int ccode;
407 int retry;
408 int ret;
409
410 CIO_TRACE_EVENT (2, "ensch");
Kay Sievers2a0217d2008-10-10 21:33:09 +0200411 CIO_TRACE_EVENT(2, dev_name(&sch->dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412
Cornelia Huckd7b5a4c92006-12-08 15:54:28 +0100413 if (sch_is_pseudo_sch(sch))
414 return -EINVAL;
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800415 ccode = stsch (sch->schid, &sch->schib);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 if (ccode)
417 return -ENODEV;
418
419 for (retry = 5, ret = 0; retry > 0; retry--) {
420 sch->schib.pmcw.ena = 1;
Cornelia Huckedf22092008-04-30 13:38:39 +0200421 sch->schib.pmcw.isc = sch->isc;
Cornelia Huckb279a4f2008-01-26 14:10:45 +0100422 sch->schib.pmcw.intparm = intparm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 ret = cio_modify(sch);
424 if (ret == -ENODEV)
425 break;
426 if (ret == -EIO)
427 /*
428 * Got a program check in cio_modify. Try without
429 * the concurrent sense bit the next time.
430 */
431 sch->schib.pmcw.csense = 0;
432 if (ret == 0) {
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800433 stsch (sch->schid, &sch->schib);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 if (sch->schib.pmcw.ena)
435 break;
436 }
437 if (ret == -EBUSY) {
438 struct irb irb;
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800439 if (tsch(sch->schid, &irb) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 break;
441 }
442 }
443 sprintf (dbf_txt, "ret:%d", ret);
444 CIO_TRACE_EVENT (2, dbf_txt);
445 return ret;
446}
Cornelia Huck44a1c192008-07-14 09:58:47 +0200447EXPORT_SYMBOL_GPL(cio_enable_subchannel);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448
Cornelia Huck44a1c192008-07-14 09:58:47 +0200449/**
450 * cio_disable_subchannel - disable a subchannel.
451 * @sch: subchannel to disable
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 */
Cornelia Huck44a1c192008-07-14 09:58:47 +0200453int cio_disable_subchannel(struct subchannel *sch)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454{
455 char dbf_txt[15];
456 int ccode;
457 int retry;
458 int ret;
459
460 CIO_TRACE_EVENT (2, "dissch");
Kay Sievers2a0217d2008-10-10 21:33:09 +0200461 CIO_TRACE_EVENT(2, dev_name(&sch->dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462
Cornelia Huckd7b5a4c92006-12-08 15:54:28 +0100463 if (sch_is_pseudo_sch(sch))
464 return 0;
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800465 ccode = stsch (sch->schid, &sch->schib);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 if (ccode == 3) /* Not operational. */
467 return -ENODEV;
468
Peter Oberparleiter23d805b62008-07-14 09:58:50 +0200469 if (scsw_actl(&sch->schib.scsw) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 /*
471 * the disable function must not be called while there are
472 * requests pending for completion !
473 */
474 return -EBUSY;
475
476 for (retry = 5, ret = 0; retry > 0; retry--) {
477 sch->schib.pmcw.ena = 0;
478 ret = cio_modify(sch);
479 if (ret == -ENODEV)
480 break;
481 if (ret == -EBUSY)
482 /*
483 * The subchannel is busy or status pending.
484 * We'll disable when the next interrupt was delivered
485 * via the state machine.
486 */
487 break;
488 if (ret == 0) {
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800489 stsch (sch->schid, &sch->schib);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 if (!sch->schib.pmcw.ena)
491 break;
492 }
493 }
494 sprintf (dbf_txt, "ret:%d", ret);
495 CIO_TRACE_EVENT (2, dbf_txt);
496 return ret;
497}
Cornelia Huck44a1c192008-07-14 09:58:47 +0200498EXPORT_SYMBOL_GPL(cio_disable_subchannel);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499
Cornelia Huckd7b5a4c92006-12-08 15:54:28 +0100500int cio_create_sch_lock(struct subchannel *sch)
Cornelia Huck2ec22982006-12-08 15:54:26 +0100501{
502 sch->lock = kmalloc(sizeof(spinlock_t), GFP_KERNEL);
503 if (!sch->lock)
504 return -ENOMEM;
505 spin_lock_init(sch->lock);
506 return 0;
507}
508
Cornelia Huckb3a686f2008-07-14 09:58:48 +0200509static int cio_check_devno_blacklisted(struct subchannel *sch)
Cornelia Huck0ae7a7b2008-07-14 09:58:43 +0200510{
Cornelia Huck0ae7a7b2008-07-14 09:58:43 +0200511 if (is_blacklisted(sch->schid.ssid, sch->schib.pmcw.dev)) {
512 /*
513 * This device must not be known to Linux. So we simply
514 * say that there is no device and return ENODEV.
515 */
516 CIO_MSG_EVENT(6, "Blacklisted device detected "
517 "at devno %04X, subchannel set %x\n",
518 sch->schib.pmcw.dev, sch->schid.ssid);
519 return -ENODEV;
520 }
521 return 0;
522}
523
Cornelia Huckb3a686f2008-07-14 09:58:48 +0200524static int cio_validate_io_subchannel(struct subchannel *sch)
525{
526 /* Initialization for io subchannels. */
527 if (!css_sch_is_valid(&sch->schib))
528 return -ENODEV;
529
530 /* Devno is valid. */
531 return cio_check_devno_blacklisted(sch);
532}
533
534static int cio_validate_msg_subchannel(struct subchannel *sch)
535{
536 /* Initialization for message subchannels. */
537 if (!css_sch_is_valid(&sch->schib))
538 return -ENODEV;
539
540 /* Devno is valid. */
541 return cio_check_devno_blacklisted(sch);
542}
543
Cornelia Huck0ae7a7b2008-07-14 09:58:43 +0200544/**
545 * cio_validate_subchannel - basic validation of subchannel
546 * @sch: subchannel structure to be filled out
547 * @schid: subchannel id
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 *
549 * Find out subchannel type and initialize struct subchannel.
550 * Return codes:
Cornelia Huck0ae7a7b2008-07-14 09:58:43 +0200551 * 0 on success
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 * -ENXIO for non-defined subchannels
Cornelia Huck0ae7a7b2008-07-14 09:58:43 +0200553 * -ENODEV for invalid subchannels or blacklisted devices
554 * -EIO for subchannels in an invalid subchannel set
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 */
Cornelia Huck0ae7a7b2008-07-14 09:58:43 +0200556int cio_validate_subchannel(struct subchannel *sch, struct subchannel_id schid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557{
558 char dbf_txt[15];
559 int ccode;
Cornelia Huck2ec22982006-12-08 15:54:26 +0100560 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561
Cornelia Huck0ae7a7b2008-07-14 09:58:43 +0200562 sprintf(dbf_txt, "valsch%x", schid.sch_no);
563 CIO_TRACE_EVENT(4, dbf_txt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564
565 /* Nuke all fields. */
566 memset(sch, 0, sizeof(struct subchannel));
567
Cornelia Huck2ec22982006-12-08 15:54:26 +0100568 sch->schid = schid;
569 if (cio_is_console(schid)) {
570 sch->lock = cio_get_console_lock();
571 } else {
572 err = cio_create_sch_lock(sch);
573 if (err)
574 goto out;
575 }
Cornelia Huck6ab48792006-07-12 16:39:50 +0200576 mutex_init(&sch->reg_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 /* Set a name for the subchannel */
Cornelia Huck1f4e7ed2008-10-10 21:33:14 +0200578 if (cio_is_console(schid))
579 sch->dev.init_name = cio_get_console_sch_name(schid);
580 else
581 dev_set_name(&sch->dev, "0.%x.%04x", schid.ssid, schid.sch_no);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582
583 /*
584 * The first subchannel that is not-operational (ccode==3)
585 * indicates that there aren't any more devices available.
Cornelia Huckfb6958a2006-01-06 00:19:25 -0800586 * If stsch gets an exception, it means the current subchannel set
587 * is not valid.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 */
Cornelia Huckfb6958a2006-01-06 00:19:25 -0800589 ccode = stsch_err (schid, &sch->schib);
Cornelia Huck2ec22982006-12-08 15:54:26 +0100590 if (ccode) {
591 err = (ccode == 3) ? -ENXIO : ccode;
592 goto out;
593 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 /* Copy subchannel type from path management control word. */
595 sch->st = sch->schib.pmcw.st;
Cornelia Huckc820de32008-07-14 09:58:45 +0200596
Cornelia Huck0ae7a7b2008-07-14 09:58:43 +0200597 switch (sch->st) {
598 case SUBCHANNEL_TYPE_IO:
599 err = cio_validate_io_subchannel(sch);
600 break;
Cornelia Huckb3a686f2008-07-14 09:58:48 +0200601 case SUBCHANNEL_TYPE_MSG:
602 err = cio_validate_msg_subchannel(sch);
603 break;
Cornelia Huck0ae7a7b2008-07-14 09:58:43 +0200604 default:
605 err = 0;
606 }
607 if (err)
Cornelia Huck2ec22982006-12-08 15:54:26 +0100608 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609
Cornelia Huck0ae7a7b2008-07-14 09:58:43 +0200610 CIO_MSG_EVENT(4, "Subchannel 0.%x.%04x reports subchannel type %04X\n",
611 sch->schid.ssid, sch->schid.sch_no, sch->st);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 return 0;
Cornelia Huck2ec22982006-12-08 15:54:26 +0100613out:
614 if (!cio_is_console(schid))
615 kfree(sch->lock);
616 sch->lock = NULL;
617 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618}
619
620/*
621 * do_IRQ() handles all normal I/O device IRQ's (the special
622 * SMP cross-CPU interrupts have their own specific
623 * handlers).
624 *
625 */
626void
627do_IRQ (struct pt_regs *regs)
628{
629 struct tpi_info *tpi_info;
630 struct subchannel *sch;
631 struct irb *irb;
Heiko Carstens5a489b982006-10-06 16:38:35 +0200632 struct pt_regs *old_regs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633
Heiko Carstens5a489b982006-10-06 16:38:35 +0200634 old_regs = set_irq_regs(regs);
Heiko Carstens9d0a57c2006-10-11 15:31:26 +0200635 irq_enter();
Heiko Carstens43ca5c32008-04-17 07:46:23 +0200636 s390_idle_check();
Heiko Carstens5a62b192008-04-17 07:46:25 +0200637 if (S390_lowcore.int_clock >= S390_lowcore.clock_comparator)
638 /* Serve timer interrupts first. */
639 clock_comparator_work();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 /*
641 * Get interrupt information from lowcore
642 */
643 tpi_info = (struct tpi_info *) __LC_SUBCHANNEL_ID;
644 irb = (struct irb *) __LC_IRB;
645 do {
646 kstat_cpu(smp_processor_id()).irqs[IO_INTERRUPT]++;
647 /*
648 * Non I/O-subchannel thin interrupts are processed differently
649 */
650 if (tpi_info->adapter_IO == 1 &&
651 tpi_info->int_type == IO_INTERRUPT_TYPE) {
Cornelia Huckda7c5af2008-07-14 09:58:59 +0200652 do_adapter_IO(tpi_info->isc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 continue;
654 }
655 sch = (struct subchannel *)(unsigned long)tpi_info->intparm;
Heiko Carstensa8061702008-04-17 07:46:26 +0200656 if (!sch) {
657 /* Clear pending interrupt condition. */
658 tsch(tpi_info->schid, irb);
659 continue;
660 }
661 spin_lock(sch->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 /* Store interrupt response block to lowcore. */
Heiko Carstensa8061702008-04-17 07:46:26 +0200663 if (tsch(tpi_info->schid, irb) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 /* Keep subchannel information word up to date. */
665 memcpy (&sch->schib.scsw, &irb->scsw,
666 sizeof (irb->scsw));
667 /* Call interrupt handler if there is one. */
668 if (sch->driver && sch->driver->irq)
Cornelia Huck602b20f2008-01-26 14:10:39 +0100669 sch->driver->irq(sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 }
Heiko Carstensa8061702008-04-17 07:46:26 +0200671 spin_unlock(sch->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 /*
673 * Are more interrupts pending?
674 * If so, the tpi instruction will update the lowcore
675 * to hold the info for the next interrupt.
676 * We don't do this for VM because a tpi drops the cpu
677 * out of the sie which costs more cycles than it saves.
678 */
679 } while (!MACHINE_IS_VM && tpi (NULL) != 0);
Heiko Carstens9d0a57c2006-10-11 15:31:26 +0200680 irq_exit();
Heiko Carstens5a489b982006-10-06 16:38:35 +0200681 set_irq_regs(old_regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682}
683
684#ifdef CONFIG_CCW_CONSOLE
685static struct subchannel console_subchannel;
Cornelia Huck1f4e7ed2008-10-10 21:33:14 +0200686static char console_sch_name[10] = "0.x.xxxx";
Cornelia Huckcd6b4f22008-01-26 14:10:43 +0100687static struct io_subchannel_private console_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688static int console_subchannel_in_use;
689
Cornelia Huckcd6b4f22008-01-26 14:10:43 +0100690void *cio_get_console_priv(void)
691{
692 return &console_priv;
693}
694
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695/*
696 * busy wait for the next interrupt on the console
697 */
Heiko Carstensa8061702008-04-17 07:46:26 +0200698void wait_cons_dev(void)
699 __releases(console_subchannel.lock)
700 __acquires(console_subchannel.lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701{
702 unsigned long cr6 __attribute__ ((aligned (8)));
703 unsigned long save_cr6 __attribute__ ((aligned (8)));
704
705 /*
706 * before entering the spinlock we may already have
707 * processed the interrupt on a different CPU...
708 */
709 if (!console_subchannel_in_use)
710 return;
711
Cornelia Huck3a3fc292008-07-14 09:58:58 +0200712 /* disable all but the console isc */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 __ctl_store (save_cr6, 6, 6);
Cornelia Huck3a3fc292008-07-14 09:58:58 +0200714 cr6 = 1UL << (31 - CONSOLE_ISC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 __ctl_load (cr6, 6, 6);
716
717 do {
Cornelia Huck2ec22982006-12-08 15:54:26 +0100718 spin_unlock(console_subchannel.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 if (!cio_tpi())
720 cpu_relax();
Cornelia Huck2ec22982006-12-08 15:54:26 +0100721 spin_lock(console_subchannel.lock);
Peter Oberparleiter23d805b62008-07-14 09:58:50 +0200722 } while (console_subchannel.schib.scsw.cmd.actl != 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 /*
724 * restore previous isc value
725 */
726 __ctl_load (save_cr6, 6, 6);
727}
728
729static int
Cornelia Huckf97a56f2006-01-06 00:19:22 -0800730cio_test_for_console(struct subchannel_id schid, void *data)
731{
Cornelia Huckfb6958a2006-01-06 00:19:25 -0800732 if (stsch_err(schid, &console_subchannel.schib) != 0)
Cornelia Huckf97a56f2006-01-06 00:19:22 -0800733 return -ENXIO;
Cornelia Huckb279a4f2008-01-26 14:10:45 +0100734 if ((console_subchannel.schib.pmcw.st == SUBCHANNEL_TYPE_IO) &&
735 console_subchannel.schib.pmcw.dnv &&
736 (console_subchannel.schib.pmcw.dev == console_devno)) {
Cornelia Huckf97a56f2006-01-06 00:19:22 -0800737 console_irq = schid.sch_no;
738 return 1; /* found */
739 }
740 return 0;
741}
742
743
744static int
745cio_get_console_sch_no(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746{
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800747 struct subchannel_id schid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800749 init_subchannel_id(&schid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 if (console_irq != -1) {
751 /* VM provided us with the irq number of the console. */
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800752 schid.sch_no = console_irq;
753 if (stsch(schid, &console_subchannel.schib) != 0 ||
Cornelia Huckb279a4f2008-01-26 14:10:45 +0100754 (console_subchannel.schib.pmcw.st != SUBCHANNEL_TYPE_IO) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 !console_subchannel.schib.pmcw.dnv)
756 return -1;
757 console_devno = console_subchannel.schib.pmcw.dev;
758 } else if (console_devno != -1) {
759 /* At least the console device number is known. */
Cornelia Huckf97a56f2006-01-06 00:19:22 -0800760 for_each_subchannel(cio_test_for_console, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 if (console_irq == -1)
762 return -1;
763 } else {
764 /* unlike in 2.4, we cannot autoprobe here, since
765 * the channel subsystem is not fully initialized.
766 * With some luck, the HWC console can take over */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 return -1;
768 }
769 return console_irq;
770}
771
772struct subchannel *
773cio_probe_console(void)
774{
Cornelia Huckf97a56f2006-01-06 00:19:22 -0800775 int sch_no, ret;
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800776 struct subchannel_id schid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777
778 if (xchg(&console_subchannel_in_use, 1) != 0)
779 return ERR_PTR(-EBUSY);
Cornelia Huckf97a56f2006-01-06 00:19:22 -0800780 sch_no = cio_get_console_sch_no();
781 if (sch_no == -1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 console_subchannel_in_use = 0;
Michael Ernstc78aa6c2008-07-14 09:59:22 +0200783 printk(KERN_WARNING "cio: No ccw console found!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 return ERR_PTR(-ENODEV);
785 }
786 memset(&console_subchannel, 0, sizeof(struct subchannel));
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800787 init_subchannel_id(&schid);
Cornelia Huckf97a56f2006-01-06 00:19:22 -0800788 schid.sch_no = sch_no;
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800789 ret = cio_validate_subchannel(&console_subchannel, schid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 if (ret) {
791 console_subchannel_in_use = 0;
792 return ERR_PTR(-ENODEV);
793 }
794
795 /*
Cornelia Huck3a3fc292008-07-14 09:58:58 +0200796 * enable console I/O-interrupt subclass
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 */
Cornelia Huck6ef556c2008-07-14 09:59:01 +0200798 isc_register(CONSOLE_ISC);
Cornelia Huck3a3fc292008-07-14 09:58:58 +0200799 console_subchannel.schib.pmcw.isc = CONSOLE_ISC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 console_subchannel.schib.pmcw.intparm =
Cornelia Huckcd6b4f22008-01-26 14:10:43 +0100801 (u32)(addr_t)&console_subchannel;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 ret = cio_modify(&console_subchannel);
803 if (ret) {
Cornelia Huck6ef556c2008-07-14 09:59:01 +0200804 isc_unregister(CONSOLE_ISC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 console_subchannel_in_use = 0;
806 return ERR_PTR(ret);
807 }
808 return &console_subchannel;
809}
810
811void
812cio_release_console(void)
813{
814 console_subchannel.schib.pmcw.intparm = 0;
815 cio_modify(&console_subchannel);
Cornelia Huck6ef556c2008-07-14 09:59:01 +0200816 isc_unregister(CONSOLE_ISC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 console_subchannel_in_use = 0;
818}
819
820/* Bah... hack to catch console special sausages. */
821int
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800822cio_is_console(struct subchannel_id schid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823{
824 if (!console_subchannel_in_use)
825 return 0;
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800826 return schid_equal(&schid, &console_subchannel.schid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827}
828
829struct subchannel *
830cio_get_console_subchannel(void)
831{
832 if (!console_subchannel_in_use)
Heiko Carstensd2c993d2006-07-12 16:41:55 +0200833 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 return &console_subchannel;
835}
836
Cornelia Huck1f4e7ed2008-10-10 21:33:14 +0200837const char *cio_get_console_sch_name(struct subchannel_id schid)
838{
839 snprintf(console_sch_name, 10, "0.%x.%04x", schid.ssid, schid.sch_no);
840 return (const char *)console_sch_name;
841}
842
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843#endif
Heiko Carstens4d284ca2007-02-05 21:18:53 +0100844static int
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800845__disable_subchannel_easy(struct subchannel_id schid, struct schib *schib)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846{
847 int retry, cc;
848
849 cc = 0;
850 for (retry=0;retry<3;retry++) {
851 schib->pmcw.ena = 0;
852 cc = msch(schid, schib);
853 if (cc)
854 return (cc==3?-ENODEV:-EBUSY);
855 stsch(schid, schib);
856 if (!schib->pmcw.ena)
857 return 0;
858 }
859 return -EBUSY; /* uhm... */
860}
861
Heiko Carstens4d284ca2007-02-05 21:18:53 +0100862static int
Cornelia Huck0ae7a7b2008-07-14 09:58:43 +0200863__clear_io_subchannel_easy(struct subchannel_id schid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864{
865 int retry;
866
867 if (csch(schid))
868 return -ENODEV;
869 for (retry=0;retry<20;retry++) {
870 struct tpi_info ti;
871
872 if (tpi(&ti)) {
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800873 tsch(ti.schid, (struct irb *)__LC_IRB);
874 if (schid_equal(&ti.schid, &schid))
Cornelia Huck4c24da72005-09-03 15:58:01 -0700875 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 }
Heiko Carstens5a0d0e62008-10-10 21:33:22 +0200877 udelay_simple(100);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 }
879 return -EBUSY;
880}
881
Cornelia Huck9d92a7e2008-07-14 09:59:05 +0200882static void __clear_chsc_subchannel_easy(void)
883{
884 /* It seems we can only wait for a bit here :/ */
Heiko Carstens5a0d0e62008-10-10 21:33:22 +0200885 udelay_simple(100);
Cornelia Huck9d92a7e2008-07-14 09:59:05 +0200886}
887
Michael Holzheua45e1412006-12-15 17:18:22 +0100888static int pgm_check_occured;
889
890static void cio_reset_pgm_check_handler(void)
891{
892 pgm_check_occured = 1;
893}
894
Peter Oberparleiterf9c9fe32008-10-10 21:33:15 +0200895static int stsch_reset(struct subchannel_id schid, struct schib *addr)
Michael Holzheua45e1412006-12-15 17:18:22 +0100896{
897 int rc;
898
899 pgm_check_occured = 0;
Heiko Carstensab14de62007-02-05 21:18:37 +0100900 s390_base_pgm_handler_fn = cio_reset_pgm_check_handler;
Heiko Carstens6faf4442007-01-09 10:18:41 +0100901 rc = stsch(schid, addr);
Heiko Carstensab14de62007-02-05 21:18:37 +0100902 s390_base_pgm_handler_fn = NULL;
Heiko Carstens6faf4442007-01-09 10:18:41 +0100903
Heiko Carstensab14de62007-02-05 21:18:37 +0100904 /* The program check handler could have changed pgm_check_occured. */
Heiko Carstens6faf4442007-01-09 10:18:41 +0100905 barrier();
906
Michael Holzheua45e1412006-12-15 17:18:22 +0100907 if (pgm_check_occured)
908 return -EIO;
909 else
910 return rc;
911}
912
Heiko Carstens15e9b582006-12-04 15:40:26 +0100913static int __shutdown_subchannel_easy(struct subchannel_id schid, void *data)
Cornelia Huckf97a56f2006-01-06 00:19:22 -0800914{
915 struct schib schib;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916
Michael Holzheua45e1412006-12-15 17:18:22 +0100917 if (stsch_reset(schid, &schib))
Cornelia Huckf97a56f2006-01-06 00:19:22 -0800918 return -ENXIO;
919 if (!schib.pmcw.ena)
920 return 0;
921 switch(__disable_subchannel_easy(schid, &schib)) {
922 case 0:
923 case -ENODEV:
924 break;
925 default: /* -EBUSY */
Cornelia Huck0ae7a7b2008-07-14 09:58:43 +0200926 switch (schib.pmcw.st) {
927 case SUBCHANNEL_TYPE_IO:
928 if (__clear_io_subchannel_easy(schid))
929 goto out; /* give up... */
930 break;
Cornelia Huck9d92a7e2008-07-14 09:59:05 +0200931 case SUBCHANNEL_TYPE_CHSC:
932 __clear_chsc_subchannel_easy();
933 break;
Cornelia Huck0ae7a7b2008-07-14 09:58:43 +0200934 default:
935 /* No default clear strategy */
936 break;
937 }
Cornelia Huckf97a56f2006-01-06 00:19:22 -0800938 stsch(schid, &schib);
939 __disable_subchannel_easy(schid, &schib);
940 }
Cornelia Huck0ae7a7b2008-07-14 09:58:43 +0200941out:
Cornelia Huckf97a56f2006-01-06 00:19:22 -0800942 return 0;
943}
944
Heiko Carstens15e9b582006-12-04 15:40:26 +0100945static atomic_t chpid_reset_count;
946
947static void s390_reset_chpids_mcck_handler(void)
948{
949 struct crw crw;
950 struct mci *mci;
951
952 /* Check for pending channel report word. */
953 mci = (struct mci *)&S390_lowcore.mcck_interruption_code;
954 if (!mci->cp)
955 return;
956 /* Process channel report words. */
957 while (stcrw(&crw) == 0) {
958 /* Check for responses to RCHP. */
959 if (crw.slct && crw.rsc == CRW_RSC_CPATH)
960 atomic_dec(&chpid_reset_count);
961 }
962}
963
964#define RCHP_TIMEOUT (30 * USEC_PER_SEC)
965static void css_reset(void)
966{
967 int i, ret;
968 unsigned long long timeout;
Peter Oberparleiterf86635f2007-04-27 16:01:26 +0200969 struct chp_id chpid;
Heiko Carstens15e9b582006-12-04 15:40:26 +0100970
971 /* Reset subchannels. */
972 for_each_subchannel(__shutdown_subchannel_easy, NULL);
973 /* Reset channel paths. */
Heiko Carstensab14de62007-02-05 21:18:37 +0100974 s390_base_mcck_handler_fn = s390_reset_chpids_mcck_handler;
Heiko Carstens15e9b582006-12-04 15:40:26 +0100975 /* Enable channel report machine checks. */
976 __ctl_set_bit(14, 28);
977 /* Temporarily reenable machine checks. */
978 local_mcck_enable();
Peter Oberparleiterf86635f2007-04-27 16:01:26 +0200979 chp_id_init(&chpid);
Heiko Carstens15e9b582006-12-04 15:40:26 +0100980 for (i = 0; i <= __MAX_CHPID; i++) {
Peter Oberparleiterf86635f2007-04-27 16:01:26 +0200981 chpid.id = i;
982 ret = rchp(chpid);
Heiko Carstens15e9b582006-12-04 15:40:26 +0100983 if ((ret == 0) || (ret == 2))
984 /*
985 * rchp either succeeded, or another rchp is already
986 * in progress. In either case, we'll get a crw.
987 */
988 atomic_inc(&chpid_reset_count);
989 }
990 /* Wait for machine check for all channel paths. */
991 timeout = get_clock() + (RCHP_TIMEOUT << 12);
992 while (atomic_read(&chpid_reset_count) != 0) {
993 if (get_clock() > timeout)
994 break;
995 cpu_relax();
996 }
997 /* Disable machine checks again. */
998 local_mcck_disable();
999 /* Disable channel report machine checks. */
1000 __ctl_clear_bit(14, 28);
Heiko Carstensab14de62007-02-05 21:18:37 +01001001 s390_base_mcck_handler_fn = NULL;
Heiko Carstens15e9b582006-12-04 15:40:26 +01001002}
1003
1004static struct reset_call css_reset_call = {
1005 .fn = css_reset,
1006};
1007
1008static int __init init_css_reset_call(void)
1009{
1010 atomic_set(&chpid_reset_count, 0);
1011 register_reset_call(&css_reset_call);
1012 return 0;
1013}
1014
1015arch_initcall(init_css_reset_call);
1016
1017struct sch_match_id {
1018 struct subchannel_id schid;
1019 struct ccw_dev_id devid;
1020 int rc;
1021};
1022
1023static int __reipl_subchannel_match(struct subchannel_id schid, void *data)
1024{
1025 struct schib schib;
1026 struct sch_match_id *match_id = data;
1027
Michael Holzheua45e1412006-12-15 17:18:22 +01001028 if (stsch_reset(schid, &schib))
Heiko Carstens15e9b582006-12-04 15:40:26 +01001029 return -ENXIO;
Cornelia Huckb279a4f2008-01-26 14:10:45 +01001030 if ((schib.pmcw.st == SUBCHANNEL_TYPE_IO) && schib.pmcw.dnv &&
Heiko Carstens15e9b582006-12-04 15:40:26 +01001031 (schib.pmcw.dev == match_id->devid.devno) &&
1032 (schid.ssid == match_id->devid.ssid)) {
1033 match_id->schid = schid;
1034 match_id->rc = 0;
1035 return 1;
1036 }
1037 return 0;
1038}
1039
1040static int reipl_find_schid(struct ccw_dev_id *devid,
1041 struct subchannel_id *schid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042{
Michael Holzheuff6b8ea2006-09-20 15:58:49 +02001043 struct sch_match_id match_id;
1044
1045 match_id.devid = *devid;
1046 match_id.rc = -ENODEV;
Heiko Carstens15e9b582006-12-04 15:40:26 +01001047 for_each_subchannel(__reipl_subchannel_match, &match_id);
Michael Holzheuff6b8ea2006-09-20 15:58:49 +02001048 if (match_id.rc == 0)
1049 *schid = match_id.schid;
1050 return match_id.rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051}
1052
Michael Holzheuff6b8ea2006-09-20 15:58:49 +02001053extern void do_reipl_asm(__u32 schid);
1054
1055/* Make sure all subchannels are quiet before we re-ipl an lpar. */
1056void reipl_ccw_dev(struct ccw_dev_id *devid)
1057{
1058 struct subchannel_id schid;
1059
Heiko Carstens15e9b582006-12-04 15:40:26 +01001060 s390_reset_system();
1061 if (reipl_find_schid(devid, &schid) != 0)
Michael Holzheuff6b8ea2006-09-20 15:58:49 +02001062 panic("IPL Device not found\n");
Michael Holzheuff6b8ea2006-09-20 15:58:49 +02001063 do_reipl_asm(*((__u32*)&schid));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064}
Heiko Carstense87bfe52006-09-20 15:59:15 +02001065
Heiko Carstens6fc321f2007-04-27 16:01:25 +02001066int __init cio_get_iplinfo(struct cio_iplinfo *iplinfo)
Heiko Carstense87bfe52006-09-20 15:59:15 +02001067{
1068 struct subchannel_id schid;
Heiko Carstens6fc321f2007-04-27 16:01:25 +02001069 struct schib schib;
Heiko Carstense87bfe52006-09-20 15:59:15 +02001070
1071 schid = *(struct subchannel_id *)__LC_SUBCHANNEL_ID;
1072 if (!schid.one)
Heiko Carstens6fc321f2007-04-27 16:01:25 +02001073 return -ENODEV;
1074 if (stsch(schid, &schib))
1075 return -ENODEV;
Cornelia Huckb279a4f2008-01-26 14:10:45 +01001076 if (schib.pmcw.st != SUBCHANNEL_TYPE_IO)
1077 return -ENODEV;
Heiko Carstens6fc321f2007-04-27 16:01:25 +02001078 if (!schib.pmcw.dnv)
1079 return -ENODEV;
1080 iplinfo->devno = schib.pmcw.dev;
1081 iplinfo->is_qdio = schib.pmcw.qf;
1082 return 0;
Heiko Carstense87bfe52006-09-20 15:59:15 +02001083}
Peter Oberparleiter83262d62008-07-14 09:58:51 +02001084
1085/**
1086 * cio_tm_start_key - perform start function
1087 * @sch: subchannel on which to perform the start function
1088 * @tcw: transport-command word to be started
1089 * @lpm: mask of paths to use
1090 * @key: storage key to use for storage access
1091 *
1092 * Start the tcw on the given subchannel. Return zero on success, non-zero
1093 * otherwise.
1094 */
1095int cio_tm_start_key(struct subchannel *sch, struct tcw *tcw, u8 lpm, u8 key)
1096{
1097 int cc;
1098 union orb *orb = &to_io_private(sch)->orb;
1099
1100 memset(orb, 0, sizeof(union orb));
1101 orb->tm.intparm = (u32) (addr_t) sch;
1102 orb->tm.key = key >> 4;
1103 orb->tm.b = 1;
1104 orb->tm.lpm = lpm ? lpm : sch->lpm;
1105 orb->tm.tcw = (u32) (addr_t) tcw;
1106 cc = ssch(sch->schid, orb);
1107 switch (cc) {
1108 case 0:
1109 return 0;
1110 case 1:
1111 case 2:
1112 return -EBUSY;
1113 default:
1114 return cio_start_handle_notoper(sch, lpm);
1115 }
1116}
1117
1118/**
1119 * cio_tm_intrg - perform interrogate function
1120 * @sch - subchannel on which to perform the interrogate function
1121 *
1122 * If the specified subchannel is running in transport-mode, perform the
1123 * interrogate function. Return zero on success, non-zero otherwie.
1124 */
1125int cio_tm_intrg(struct subchannel *sch)
1126{
1127 int cc;
1128
1129 if (!to_io_private(sch)->orb.tm.b)
1130 return -EINVAL;
1131 cc = xsch(sch->schid);
1132 switch (cc) {
1133 case 0:
1134 case 2:
1135 return 0;
1136 case 1:
1137 return -EBUSY;
1138 default:
1139 return -ENODEV;
1140 }
1141}