blob: 659f8a791656f472a22c18a99c14e45211185c97 [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
Michael Ernste6d5a422008-12-25 13:39:36 +010012#define KMSG_COMPONENT "cio"
13#define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
14
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/init.h>
17#include <linux/slab.h>
18#include <linux/device.h>
19#include <linux/kernel_stat.h>
20#include <linux/interrupt.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <asm/cio.h>
22#include <asm/delay.h>
23#include <asm/irq.h>
Heiko Carstens5a489b92006-10-06 16:38:35 +020024#include <asm/irq_regs.h>
Heiko Carstense87bfe52006-09-20 15:59:15 +020025#include <asm/setup.h>
Heiko Carstens15e9b582006-12-04 15:40:26 +010026#include <asm/reset.h>
Michael Holzheu46b05d22007-02-21 10:55:21 +010027#include <asm/ipl.h>
Peter Oberparleitere5854a52007-04-27 16:01:31 +020028#include <asm/chpid.h>
Peter Oberparleiter4e8e56c2008-01-26 14:10:44 +010029#include <asm/airq.h>
Cornelia Huck3a3fc292008-07-14 09:58:58 +020030#include <asm/isc.h>
Heiko Carstens43ca5c32008-04-17 07:46:23 +020031#include <asm/cpu.h>
Peter Oberparleiter83262d62008-07-14 09:58:51 +020032#include <asm/fcx.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include "cio.h"
34#include "css.h"
35#include "chsc.h"
36#include "ioasm.h"
Cornelia Huckcd6b4f22008-01-26 14:10:43 +010037#include "io_sch.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include "blacklist.h"
39#include "cio_debug.h"
Peter Oberparleitere6b6e102007-04-27 16:01:28 +020040#include "chp.h"
Heiko Carstens15e9b582006-12-04 15:40:26 +010041#include "../s390mach.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
43debug_info_t *cio_debug_msg_id;
44debug_info_t *cio_debug_trace_id;
45debug_info_t *cio_debug_crw_id;
46
Linus Torvalds1da177e2005-04-16 15:20:36 -070047/*
48 * Function: cio_debug_init
Cornelia Huckbc698bc2008-01-26 14:10:42 +010049 * Initializes three debug logs for common I/O:
50 * - cio_msg logs generic cio messages
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 * - cio_trace logs the calling of different functions
Cornelia Huckbc698bc2008-01-26 14:10:42 +010052 * - cio_crw logs machine check related cio messages
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 */
Cornelia Huckbc698bc2008-01-26 14:10:42 +010054static int __init cio_debug_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070055{
Peter Tiedemann361f4942008-01-26 14:11:30 +010056 cio_debug_msg_id = debug_register("cio_msg", 16, 1, 16 * sizeof(long));
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 if (!cio_debug_msg_id)
58 goto out_unregister;
Cornelia Huckbc698bc2008-01-26 14:10:42 +010059 debug_register_view(cio_debug_msg_id, &debug_sprintf_view);
60 debug_set_level(cio_debug_msg_id, 2);
Peter Tiedemann361f4942008-01-26 14:11:30 +010061 cio_debug_trace_id = debug_register("cio_trace", 16, 1, 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 if (!cio_debug_trace_id)
63 goto out_unregister;
Cornelia Huckbc698bc2008-01-26 14:10:42 +010064 debug_register_view(cio_debug_trace_id, &debug_hex_ascii_view);
65 debug_set_level(cio_debug_trace_id, 2);
Peter Tiedemann361f4942008-01-26 14:11:30 +010066 cio_debug_crw_id = debug_register("cio_crw", 16, 1, 16 * sizeof(long));
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 if (!cio_debug_crw_id)
68 goto out_unregister;
Cornelia Huckbc698bc2008-01-26 14:10:42 +010069 debug_register_view(cio_debug_crw_id, &debug_sprintf_view);
70 debug_set_level(cio_debug_crw_id, 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 return 0;
72
73out_unregister:
74 if (cio_debug_msg_id)
Cornelia Huckbc698bc2008-01-26 14:10:42 +010075 debug_unregister(cio_debug_msg_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 if (cio_debug_trace_id)
Cornelia Huckbc698bc2008-01-26 14:10:42 +010077 debug_unregister(cio_debug_trace_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 if (cio_debug_crw_id)
Cornelia Huckbc698bc2008-01-26 14:10:42 +010079 debug_unregister(cio_debug_crw_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 return -1;
81}
82
83arch_initcall (cio_debug_init);
84
85int
86cio_set_options (struct subchannel *sch, int flags)
87{
88 sch->options.suspend = (flags & DOIO_ALLOW_SUSPEND) != 0;
89 sch->options.prefetch = (flags & DOIO_DENY_PREFETCH) != 0;
90 sch->options.inter = (flags & DOIO_SUPPRESS_INTER) != 0;
91 return 0;
92}
93
94/* FIXME: who wants to use this? */
95int
96cio_get_options (struct subchannel *sch)
97{
98 int flags;
99
100 flags = 0;
101 if (sch->options.suspend)
102 flags |= DOIO_ALLOW_SUSPEND;
103 if (sch->options.prefetch)
104 flags |= DOIO_DENY_PREFETCH;
105 if (sch->options.inter)
106 flags |= DOIO_SUPPRESS_INTER;
107 return flags;
108}
109
Heiko Carstens4d284ca2007-02-05 21:18:53 +0100110static int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111cio_start_handle_notoper(struct subchannel *sch, __u8 lpm)
112{
113 char dbf_text[15];
114
115 if (lpm != 0)
116 sch->lpm &= ~lpm;
117 else
118 sch->lpm = 0;
119
Michael Ernst139b83d2008-05-07 09:22:54 +0200120 CIO_MSG_EVENT(2, "cio_start: 'not oper' status for "
Cornelia Huckfb6958a2006-01-06 00:19:25 -0800121 "subchannel 0.%x.%04x!\n", sch->schid.ssid,
122 sch->schid.sch_no);
Sebastian Ottcdb912a2008-12-25 13:39:12 +0100123
124 if (cio_update_schib(sch))
125 return -ENODEV;
126
Kay Sievers2a0217d2008-10-10 21:33:09 +0200127 sprintf(dbf_text, "no%s", dev_name(&sch->dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 CIO_TRACE_EVENT(0, dbf_text);
129 CIO_HEX_EVENT(0, &sch->schib, sizeof (struct schib));
130
131 return (sch->lpm ? -EACCES : -ENODEV);
132}
133
134int
135cio_start_key (struct subchannel *sch, /* subchannel structure */
136 struct ccw1 * cpa, /* logical channel prog addr */
137 __u8 lpm, /* logical path mask */
138 __u8 key) /* storage key */
139{
140 char dbf_txt[15];
141 int ccode;
Peter Oberparleiter83262d62008-07-14 09:58:51 +0200142 union orb *orb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
Cornelia Huckcd6b4f22008-01-26 14:10:43 +0100144 CIO_TRACE_EVENT(4, "stIO");
Kay Sievers2a0217d2008-10-10 21:33:09 +0200145 CIO_TRACE_EVENT(4, dev_name(&sch->dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
Cornelia Huckcd6b4f22008-01-26 14:10:43 +0100147 orb = &to_io_private(sch)->orb;
Stefan Weinhuber9adb8c12008-09-16 09:32:19 -0700148 memset(orb, 0, sizeof(union orb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 /* sch is always under 2G. */
Peter Oberparleiter83262d62008-07-14 09:58:51 +0200150 orb->cmd.intparm = (u32)(addr_t)sch;
151 orb->cmd.fmt = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152
Peter Oberparleiter83262d62008-07-14 09:58:51 +0200153 orb->cmd.pfch = sch->options.prefetch == 0;
154 orb->cmd.spnd = sch->options.suspend;
155 orb->cmd.ssic = sch->options.suspend && sch->options.inter;
156 orb->cmd.lpm = (lpm != 0) ? lpm : sch->lpm;
Martin Schwidefsky347a8dc2006-01-06 00:19:28 -0800157#ifdef CONFIG_64BIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 /*
159 * for 64 bit we always support 64 bit IDAWs with 4k page size only
160 */
Peter Oberparleiter83262d62008-07-14 09:58:51 +0200161 orb->cmd.c64 = 1;
162 orb->cmd.i2k = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163#endif
Peter Oberparleiter83262d62008-07-14 09:58:51 +0200164 orb->cmd.key = key >> 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 /* issue "Start Subchannel" */
Peter Oberparleiter83262d62008-07-14 09:58:51 +0200166 orb->cmd.cpa = (__u32) __pa(cpa);
Cornelia Huckcd6b4f22008-01-26 14:10:43 +0100167 ccode = ssch(sch->schid, orb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168
169 /* process condition code */
Cornelia Huckcd6b4f22008-01-26 14:10:43 +0100170 sprintf(dbf_txt, "ccode:%d", ccode);
171 CIO_TRACE_EVENT(4, dbf_txt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172
173 switch (ccode) {
174 case 0:
175 /*
176 * initialize device status information
177 */
Peter Oberparleiter23d805b2008-07-14 09:58:50 +0200178 sch->schib.scsw.cmd.actl |= SCSW_ACTL_START_PEND;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 return 0;
180 case 1: /* status pending */
181 case 2: /* busy */
182 return -EBUSY;
Cornelia Huckc91ebe42008-09-09 12:38:58 +0200183 case 3: /* device/path not operational */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 return cio_start_handle_notoper(sch, lpm);
Cornelia Huckc91ebe42008-09-09 12:38:58 +0200185 default:
186 return ccode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 }
188}
189
190int
191cio_start (struct subchannel *sch, struct ccw1 *cpa, __u8 lpm)
192{
Peter Oberparleiter0b642ed2005-05-01 08:58:58 -0700193 return cio_start_key(sch, cpa, lpm, PAGE_DEFAULT_KEY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194}
195
196/*
197 * resume suspended I/O operation
198 */
199int
200cio_resume (struct subchannel *sch)
201{
202 char dbf_txt[15];
203 int ccode;
204
205 CIO_TRACE_EVENT (4, "resIO");
Kay Sievers2a0217d2008-10-10 21:33:09 +0200206 CIO_TRACE_EVENT(4, dev_name(&sch->dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800208 ccode = rsch (sch->schid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209
210 sprintf (dbf_txt, "ccode:%d", ccode);
211 CIO_TRACE_EVENT (4, dbf_txt);
212
213 switch (ccode) {
214 case 0:
Peter Oberparleiter23d805b2008-07-14 09:58:50 +0200215 sch->schib.scsw.cmd.actl |= SCSW_ACTL_RESUME_PEND;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 return 0;
217 case 1:
218 return -EBUSY;
219 case 2:
220 return -EINVAL;
221 default:
222 /*
223 * useless to wait for request completion
224 * as device is no longer operational !
225 */
226 return -ENODEV;
227 }
228}
229
230/*
231 * halt I/O operation
232 */
233int
234cio_halt(struct subchannel *sch)
235{
236 char dbf_txt[15];
237 int ccode;
238
239 if (!sch)
240 return -ENODEV;
241
242 CIO_TRACE_EVENT (2, "haltIO");
Kay Sievers2a0217d2008-10-10 21:33:09 +0200243 CIO_TRACE_EVENT(2, dev_name(&sch->dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244
245 /*
246 * Issue "Halt subchannel" and process condition code
247 */
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800248 ccode = hsch (sch->schid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249
250 sprintf (dbf_txt, "ccode:%d", ccode);
251 CIO_TRACE_EVENT (2, dbf_txt);
252
253 switch (ccode) {
254 case 0:
Peter Oberparleiter23d805b2008-07-14 09:58:50 +0200255 sch->schib.scsw.cmd.actl |= SCSW_ACTL_HALT_PEND;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 return 0;
257 case 1: /* status pending */
258 case 2: /* busy */
259 return -EBUSY;
260 default: /* device not operational */
261 return -ENODEV;
262 }
263}
264
265/*
266 * Clear I/O operation
267 */
268int
269cio_clear(struct subchannel *sch)
270{
271 char dbf_txt[15];
272 int ccode;
273
274 if (!sch)
275 return -ENODEV;
276
277 CIO_TRACE_EVENT (2, "clearIO");
Kay Sievers2a0217d2008-10-10 21:33:09 +0200278 CIO_TRACE_EVENT(2, dev_name(&sch->dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279
280 /*
281 * Issue "Clear subchannel" and process condition code
282 */
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800283 ccode = csch (sch->schid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284
285 sprintf (dbf_txt, "ccode:%d", ccode);
286 CIO_TRACE_EVENT (2, dbf_txt);
287
288 switch (ccode) {
289 case 0:
Peter Oberparleiter23d805b2008-07-14 09:58:50 +0200290 sch->schib.scsw.cmd.actl |= SCSW_ACTL_CLEAR_PEND;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 return 0;
292 default: /* device not operational */
293 return -ENODEV;
294 }
295}
296
297/*
298 * Function: cio_cancel
299 * Issues a "Cancel Subchannel" on the specified subchannel
300 * Note: We don't need any fancy intparms and flags here
301 * since xsch is executed synchronously.
302 * Only for common I/O internal use as for now.
303 */
304int
305cio_cancel (struct subchannel *sch)
306{
307 char dbf_txt[15];
308 int ccode;
309
310 if (!sch)
311 return -ENODEV;
312
313 CIO_TRACE_EVENT (2, "cancelIO");
Kay Sievers2a0217d2008-10-10 21:33:09 +0200314 CIO_TRACE_EVENT(2, dev_name(&sch->dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800316 ccode = xsch (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: /* success */
323 /* Update information in scsw. */
Sebastian Ottcdb912a2008-12-25 13:39:12 +0100324 if (cio_update_schib(sch))
325 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 return 0;
327 case 1: /* status pending */
328 return -EBUSY;
329 case 2: /* not applicable */
330 return -EINVAL;
331 default: /* not oper */
332 return -ENODEV;
333 }
334}
335
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336
Sebastian Ott13952ec2008-12-25 13:39:13 +0100337static void cio_apply_config(struct subchannel *sch, struct schib *schib)
338{
339 schib->pmcw.intparm = sch->config.intparm;
340 schib->pmcw.mbi = sch->config.mbi;
341 schib->pmcw.isc = sch->config.isc;
342 schib->pmcw.ena = sch->config.ena;
343 schib->pmcw.mme = sch->config.mme;
344 schib->pmcw.mp = sch->config.mp;
345 schib->pmcw.csense = sch->config.csense;
346 schib->pmcw.mbfc = sch->config.mbfc;
347 if (sch->config.mbfc)
348 schib->mba = sch->config.mba;
349}
350
351static int cio_check_config(struct subchannel *sch, struct schib *schib)
352{
353 return (schib->pmcw.intparm == sch->config.intparm) &&
354 (schib->pmcw.mbi == sch->config.mbi) &&
355 (schib->pmcw.isc == sch->config.isc) &&
356 (schib->pmcw.ena == sch->config.ena) &&
357 (schib->pmcw.mme == sch->config.mme) &&
358 (schib->pmcw.mp == sch->config.mp) &&
359 (schib->pmcw.csense == sch->config.csense) &&
360 (schib->pmcw.mbfc == sch->config.mbfc) &&
361 (!sch->config.mbfc || (schib->mba == sch->config.mba));
362}
363
364/*
365 * cio_commit_config - apply configuration to the subchannel
366 */
367int cio_commit_config(struct subchannel *sch)
368{
369 struct schib schib;
370 int ccode, retry, ret = 0;
371
372 if (stsch(sch->schid, &schib) || !css_sch_is_valid(&schib))
373 return -ENODEV;
374
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 for (retry = 0; retry < 5; retry++) {
Sebastian Ott13952ec2008-12-25 13:39:13 +0100376 /* copy desired changes to local schib */
377 cio_apply_config(sch, &schib);
378 ccode = msch_err(sch->schid, &schib);
379 if (ccode < 0) /* -EIO if msch gets a program check. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 return ccode;
381 switch (ccode) {
Coly Li73ac36e2009-01-07 18:09:16 -0800382 case 0: /* successful */
Sebastian Ott13952ec2008-12-25 13:39:13 +0100383 if (stsch(sch->schid, &schib) ||
384 !css_sch_is_valid(&schib))
385 return -ENODEV;
386 if (cio_check_config(sch, &schib)) {
387 /* commit changes from local schib */
388 memcpy(&sch->schib, &schib, sizeof(schib));
389 return 0;
390 }
391 ret = -EAGAIN;
392 break;
393 case 1: /* status pending */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 return -EBUSY;
Sebastian Ott13952ec2008-12-25 13:39:13 +0100395 case 2: /* busy */
396 udelay(100); /* allow for recovery */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 ret = -EBUSY;
398 break;
Sebastian Ott13952ec2008-12-25 13:39:13 +0100399 case 3: /* not operational */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 return -ENODEV;
401 }
402 }
403 return ret;
404}
405
Cornelia Huck44a1c192008-07-14 09:58:47 +0200406/**
Sebastian Ottcdb912a2008-12-25 13:39:12 +0100407 * cio_update_schib - Perform stsch and update schib if subchannel is valid.
408 * @sch: subchannel on which to perform stsch
409 * Return zero on success, -ENODEV otherwise.
410 */
411int cio_update_schib(struct subchannel *sch)
412{
413 struct schib schib;
414
415 if (stsch(sch->schid, &schib) || !css_sch_is_valid(&schib))
416 return -ENODEV;
417
418 memcpy(&sch->schib, &schib, sizeof(schib));
419 return 0;
420}
421EXPORT_SYMBOL_GPL(cio_update_schib);
422
423/**
Cornelia Huck44a1c192008-07-14 09:58:47 +0200424 * cio_enable_subchannel - enable a subchannel.
425 * @sch: subchannel to be enabled
426 * @intparm: interruption parameter to set
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 */
Cornelia Huckedf22092008-04-30 13:38:39 +0200428int cio_enable_subchannel(struct subchannel *sch, u32 intparm)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429{
430 char dbf_txt[15];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 int retry;
432 int ret;
433
434 CIO_TRACE_EVENT (2, "ensch");
Kay Sievers2a0217d2008-10-10 21:33:09 +0200435 CIO_TRACE_EVENT(2, dev_name(&sch->dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436
Cornelia Huckd7b5a4c92006-12-08 15:54:28 +0100437 if (sch_is_pseudo_sch(sch))
438 return -EINVAL;
Sebastian Ottcdb912a2008-12-25 13:39:12 +0100439 if (cio_update_schib(sch))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 return -ENODEV;
441
Sebastian Ott13952ec2008-12-25 13:39:13 +0100442 sch->config.ena = 1;
443 sch->config.isc = sch->isc;
444 sch->config.intparm = intparm;
445
446 for (retry = 0; retry < 3; retry++) {
447 ret = cio_commit_config(sch);
448 if (ret == -EIO) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 /*
Sebastian Ott13952ec2008-12-25 13:39:13 +0100450 * Got a program check in msch. Try without
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 * the concurrent sense bit the next time.
452 */
Sebastian Ott13952ec2008-12-25 13:39:13 +0100453 sch->config.csense = 0;
454 } else if (ret == -EBUSY) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 struct irb irb;
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800456 if (tsch(sch->schid, &irb) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 break;
Sebastian Ott13952ec2008-12-25 13:39:13 +0100458 } else
459 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 }
461 sprintf (dbf_txt, "ret:%d", ret);
462 CIO_TRACE_EVENT (2, dbf_txt);
463 return ret;
464}
Cornelia Huck44a1c192008-07-14 09:58:47 +0200465EXPORT_SYMBOL_GPL(cio_enable_subchannel);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466
Cornelia Huck44a1c192008-07-14 09:58:47 +0200467/**
468 * cio_disable_subchannel - disable a subchannel.
469 * @sch: subchannel to disable
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 */
Cornelia Huck44a1c192008-07-14 09:58:47 +0200471int cio_disable_subchannel(struct subchannel *sch)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472{
473 char dbf_txt[15];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 int ret;
475
476 CIO_TRACE_EVENT (2, "dissch");
Kay Sievers2a0217d2008-10-10 21:33:09 +0200477 CIO_TRACE_EVENT(2, dev_name(&sch->dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478
Cornelia Huckd7b5a4c92006-12-08 15:54:28 +0100479 if (sch_is_pseudo_sch(sch))
480 return 0;
Sebastian Ottcdb912a2008-12-25 13:39:12 +0100481 if (cio_update_schib(sch))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 return -ENODEV;
483
Peter Oberparleiter23d805b2008-07-14 09:58:50 +0200484 if (scsw_actl(&sch->schib.scsw) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 /*
486 * the disable function must not be called while there are
487 * requests pending for completion !
488 */
489 return -EBUSY;
490
Sebastian Ott13952ec2008-12-25 13:39:13 +0100491 sch->config.ena = 0;
492 ret = cio_commit_config(sch);
493
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 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 Carstens5a489b92006-10-06 16:38:35 +0200632 struct pt_regs *old_regs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633
Heiko Carstens5a489b92006-10-06 16:38:35 +0200634 old_regs = set_irq_regs(regs);
Heiko Carstens43ca5c32008-04-17 07:46:23 +0200635 s390_idle_check();
Martin Schwidefsky9cfb9b32008-12-31 15:11:41 +0100636 irq_enter();
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 Carstens5a489b92006-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
Heiko Carstens191fd442008-12-25 13:39:01 +0100690/*
691 * Use tpi to get a pending interrupt, call the interrupt handler and
692 * return a pointer to the subchannel structure.
693 */
694static int cio_tpi(void)
695{
696 struct tpi_info *tpi_info;
697 struct subchannel *sch;
698 struct irb *irb;
699 int irq_context;
700
701 tpi_info = (struct tpi_info *) __LC_SUBCHANNEL_ID;
702 if (tpi(NULL) != 1)
703 return 0;
704 irb = (struct irb *) __LC_IRB;
705 /* Store interrupt response block to lowcore. */
706 if (tsch(tpi_info->schid, irb) != 0)
707 /* Not status pending or not operational. */
708 return 1;
709 sch = (struct subchannel *)(unsigned long)tpi_info->intparm;
710 if (!sch)
711 return 1;
712 irq_context = in_interrupt();
713 if (!irq_context)
714 local_bh_disable();
715 irq_enter();
716 spin_lock(sch->lock);
717 memcpy(&sch->schib.scsw, &irb->scsw, sizeof(union scsw));
718 if (sch->driver && sch->driver->irq)
719 sch->driver->irq(sch);
720 spin_unlock(sch->lock);
721 irq_exit();
722 if (!irq_context)
723 _local_bh_enable();
724 return 1;
725}
726
Cornelia Huckcd6b4f22008-01-26 14:10:43 +0100727void *cio_get_console_priv(void)
728{
729 return &console_priv;
730}
731
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732/*
733 * busy wait for the next interrupt on the console
734 */
Heiko Carstensa8061702008-04-17 07:46:26 +0200735void wait_cons_dev(void)
736 __releases(console_subchannel.lock)
737 __acquires(console_subchannel.lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738{
739 unsigned long cr6 __attribute__ ((aligned (8)));
740 unsigned long save_cr6 __attribute__ ((aligned (8)));
741
742 /*
743 * before entering the spinlock we may already have
744 * processed the interrupt on a different CPU...
745 */
746 if (!console_subchannel_in_use)
747 return;
748
Cornelia Huck3a3fc292008-07-14 09:58:58 +0200749 /* disable all but the console isc */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 __ctl_store (save_cr6, 6, 6);
Cornelia Huck3a3fc292008-07-14 09:58:58 +0200751 cr6 = 1UL << (31 - CONSOLE_ISC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 __ctl_load (cr6, 6, 6);
753
754 do {
Cornelia Huck2ec22982006-12-08 15:54:26 +0100755 spin_unlock(console_subchannel.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 if (!cio_tpi())
757 cpu_relax();
Cornelia Huck2ec22982006-12-08 15:54:26 +0100758 spin_lock(console_subchannel.lock);
Peter Oberparleiter23d805b2008-07-14 09:58:50 +0200759 } while (console_subchannel.schib.scsw.cmd.actl != 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 /*
761 * restore previous isc value
762 */
763 __ctl_load (save_cr6, 6, 6);
764}
765
766static int
Cornelia Huckf97a56f2006-01-06 00:19:22 -0800767cio_test_for_console(struct subchannel_id schid, void *data)
768{
Cornelia Huckfb6958a2006-01-06 00:19:25 -0800769 if (stsch_err(schid, &console_subchannel.schib) != 0)
Cornelia Huckf97a56f2006-01-06 00:19:22 -0800770 return -ENXIO;
Cornelia Huckb279a4f2008-01-26 14:10:45 +0100771 if ((console_subchannel.schib.pmcw.st == SUBCHANNEL_TYPE_IO) &&
772 console_subchannel.schib.pmcw.dnv &&
773 (console_subchannel.schib.pmcw.dev == console_devno)) {
Cornelia Huckf97a56f2006-01-06 00:19:22 -0800774 console_irq = schid.sch_no;
775 return 1; /* found */
776 }
777 return 0;
778}
779
780
781static int
782cio_get_console_sch_no(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783{
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800784 struct subchannel_id schid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800786 init_subchannel_id(&schid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 if (console_irq != -1) {
788 /* VM provided us with the irq number of the console. */
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800789 schid.sch_no = console_irq;
790 if (stsch(schid, &console_subchannel.schib) != 0 ||
Cornelia Huckb279a4f2008-01-26 14:10:45 +0100791 (console_subchannel.schib.pmcw.st != SUBCHANNEL_TYPE_IO) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 !console_subchannel.schib.pmcw.dnv)
793 return -1;
794 console_devno = console_subchannel.schib.pmcw.dev;
795 } else if (console_devno != -1) {
796 /* At least the console device number is known. */
Cornelia Huckf97a56f2006-01-06 00:19:22 -0800797 for_each_subchannel(cio_test_for_console, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 if (console_irq == -1)
799 return -1;
800 } else {
801 /* unlike in 2.4, we cannot autoprobe here, since
802 * the channel subsystem is not fully initialized.
803 * With some luck, the HWC console can take over */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 return -1;
805 }
806 return console_irq;
807}
808
809struct subchannel *
810cio_probe_console(void)
811{
Cornelia Huckf97a56f2006-01-06 00:19:22 -0800812 int sch_no, ret;
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800813 struct subchannel_id schid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814
815 if (xchg(&console_subchannel_in_use, 1) != 0)
816 return ERR_PTR(-EBUSY);
Cornelia Huckf97a56f2006-01-06 00:19:22 -0800817 sch_no = cio_get_console_sch_no();
818 if (sch_no == -1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 console_subchannel_in_use = 0;
Michael Ernste6d5a422008-12-25 13:39:36 +0100820 pr_warning("No CCW console was found\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 return ERR_PTR(-ENODEV);
822 }
823 memset(&console_subchannel, 0, sizeof(struct subchannel));
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800824 init_subchannel_id(&schid);
Cornelia Huckf97a56f2006-01-06 00:19:22 -0800825 schid.sch_no = sch_no;
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800826 ret = cio_validate_subchannel(&console_subchannel, schid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 if (ret) {
828 console_subchannel_in_use = 0;
829 return ERR_PTR(-ENODEV);
830 }
831
832 /*
Cornelia Huck3a3fc292008-07-14 09:58:58 +0200833 * enable console I/O-interrupt subclass
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 */
Cornelia Huck6ef556cc2008-07-14 09:59:01 +0200835 isc_register(CONSOLE_ISC);
Sebastian Ott13952ec2008-12-25 13:39:13 +0100836 console_subchannel.config.isc = CONSOLE_ISC;
837 console_subchannel.config.intparm = (u32)(addr_t)&console_subchannel;
838 ret = cio_commit_config(&console_subchannel);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 if (ret) {
Cornelia Huck6ef556cc2008-07-14 09:59:01 +0200840 isc_unregister(CONSOLE_ISC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 console_subchannel_in_use = 0;
842 return ERR_PTR(ret);
843 }
844 return &console_subchannel;
845}
846
847void
848cio_release_console(void)
849{
Sebastian Ott13952ec2008-12-25 13:39:13 +0100850 console_subchannel.config.intparm = 0;
851 cio_commit_config(&console_subchannel);
Cornelia Huck6ef556cc2008-07-14 09:59:01 +0200852 isc_unregister(CONSOLE_ISC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 console_subchannel_in_use = 0;
854}
855
856/* Bah... hack to catch console special sausages. */
857int
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800858cio_is_console(struct subchannel_id schid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859{
860 if (!console_subchannel_in_use)
861 return 0;
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800862 return schid_equal(&schid, &console_subchannel.schid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863}
864
865struct subchannel *
866cio_get_console_subchannel(void)
867{
868 if (!console_subchannel_in_use)
Heiko Carstensd2c993d2006-07-12 16:41:55 +0200869 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 return &console_subchannel;
871}
872
Cornelia Huck1f4e7ed2008-10-10 21:33:14 +0200873const char *cio_get_console_sch_name(struct subchannel_id schid)
874{
875 snprintf(console_sch_name, 10, "0.%x.%04x", schid.ssid, schid.sch_no);
876 return (const char *)console_sch_name;
877}
878
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879#endif
Heiko Carstens4d284ca2007-02-05 21:18:53 +0100880static int
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800881__disable_subchannel_easy(struct subchannel_id schid, struct schib *schib)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882{
883 int retry, cc;
884
885 cc = 0;
886 for (retry=0;retry<3;retry++) {
887 schib->pmcw.ena = 0;
888 cc = msch(schid, schib);
889 if (cc)
890 return (cc==3?-ENODEV:-EBUSY);
Sebastian Ottcdb912a2008-12-25 13:39:12 +0100891 if (stsch(schid, schib) || !css_sch_is_valid(schib))
892 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 if (!schib->pmcw.ena)
894 return 0;
895 }
896 return -EBUSY; /* uhm... */
897}
898
Heiko Carstens4d284ca2007-02-05 21:18:53 +0100899static int
Cornelia Huck0ae7a7b2008-07-14 09:58:43 +0200900__clear_io_subchannel_easy(struct subchannel_id schid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901{
902 int retry;
903
904 if (csch(schid))
905 return -ENODEV;
906 for (retry=0;retry<20;retry++) {
907 struct tpi_info ti;
908
909 if (tpi(&ti)) {
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800910 tsch(ti.schid, (struct irb *)__LC_IRB);
911 if (schid_equal(&ti.schid, &schid))
Cornelia Huck4c24da72005-09-03 15:58:01 -0700912 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 }
Heiko Carstens5a0d0e62008-10-10 21:33:22 +0200914 udelay_simple(100);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 }
916 return -EBUSY;
917}
918
Cornelia Huck9d92a7e2008-07-14 09:59:05 +0200919static void __clear_chsc_subchannel_easy(void)
920{
921 /* It seems we can only wait for a bit here :/ */
Heiko Carstens5a0d0e62008-10-10 21:33:22 +0200922 udelay_simple(100);
Cornelia Huck9d92a7e2008-07-14 09:59:05 +0200923}
924
Michael Holzheua45e1412006-12-15 17:18:22 +0100925static int pgm_check_occured;
926
927static void cio_reset_pgm_check_handler(void)
928{
929 pgm_check_occured = 1;
930}
931
Peter Oberparleiterf9c9fe32008-10-10 21:33:15 +0200932static int stsch_reset(struct subchannel_id schid, struct schib *addr)
Michael Holzheua45e1412006-12-15 17:18:22 +0100933{
934 int rc;
935
936 pgm_check_occured = 0;
Heiko Carstensab14de62007-02-05 21:18:37 +0100937 s390_base_pgm_handler_fn = cio_reset_pgm_check_handler;
Heiko Carstens6faf4442007-01-09 10:18:41 +0100938 rc = stsch(schid, addr);
Heiko Carstensab14de62007-02-05 21:18:37 +0100939 s390_base_pgm_handler_fn = NULL;
Heiko Carstens6faf4442007-01-09 10:18:41 +0100940
Heiko Carstensab14de62007-02-05 21:18:37 +0100941 /* The program check handler could have changed pgm_check_occured. */
Heiko Carstens6faf4442007-01-09 10:18:41 +0100942 barrier();
943
Michael Holzheua45e1412006-12-15 17:18:22 +0100944 if (pgm_check_occured)
945 return -EIO;
946 else
947 return rc;
948}
949
Heiko Carstens15e9b582006-12-04 15:40:26 +0100950static int __shutdown_subchannel_easy(struct subchannel_id schid, void *data)
Cornelia Huckf97a56f2006-01-06 00:19:22 -0800951{
952 struct schib schib;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953
Michael Holzheua45e1412006-12-15 17:18:22 +0100954 if (stsch_reset(schid, &schib))
Cornelia Huckf97a56f2006-01-06 00:19:22 -0800955 return -ENXIO;
956 if (!schib.pmcw.ena)
957 return 0;
958 switch(__disable_subchannel_easy(schid, &schib)) {
959 case 0:
960 case -ENODEV:
961 break;
962 default: /* -EBUSY */
Cornelia Huck0ae7a7b2008-07-14 09:58:43 +0200963 switch (schib.pmcw.st) {
964 case SUBCHANNEL_TYPE_IO:
965 if (__clear_io_subchannel_easy(schid))
966 goto out; /* give up... */
967 break;
Cornelia Huck9d92a7e2008-07-14 09:59:05 +0200968 case SUBCHANNEL_TYPE_CHSC:
969 __clear_chsc_subchannel_easy();
970 break;
Cornelia Huck0ae7a7b2008-07-14 09:58:43 +0200971 default:
972 /* No default clear strategy */
973 break;
974 }
Cornelia Huckf97a56f2006-01-06 00:19:22 -0800975 stsch(schid, &schib);
976 __disable_subchannel_easy(schid, &schib);
977 }
Cornelia Huck0ae7a7b2008-07-14 09:58:43 +0200978out:
Cornelia Huckf97a56f2006-01-06 00:19:22 -0800979 return 0;
980}
981
Heiko Carstens15e9b582006-12-04 15:40:26 +0100982static atomic_t chpid_reset_count;
983
984static void s390_reset_chpids_mcck_handler(void)
985{
986 struct crw crw;
987 struct mci *mci;
988
989 /* Check for pending channel report word. */
990 mci = (struct mci *)&S390_lowcore.mcck_interruption_code;
991 if (!mci->cp)
992 return;
993 /* Process channel report words. */
994 while (stcrw(&crw) == 0) {
995 /* Check for responses to RCHP. */
996 if (crw.slct && crw.rsc == CRW_RSC_CPATH)
997 atomic_dec(&chpid_reset_count);
998 }
999}
1000
1001#define RCHP_TIMEOUT (30 * USEC_PER_SEC)
1002static void css_reset(void)
1003{
1004 int i, ret;
1005 unsigned long long timeout;
Peter Oberparleiterf86635f2007-04-27 16:01:26 +02001006 struct chp_id chpid;
Heiko Carstens15e9b582006-12-04 15:40:26 +01001007
1008 /* Reset subchannels. */
1009 for_each_subchannel(__shutdown_subchannel_easy, NULL);
1010 /* Reset channel paths. */
Heiko Carstensab14de62007-02-05 21:18:37 +01001011 s390_base_mcck_handler_fn = s390_reset_chpids_mcck_handler;
Heiko Carstens15e9b582006-12-04 15:40:26 +01001012 /* Enable channel report machine checks. */
1013 __ctl_set_bit(14, 28);
1014 /* Temporarily reenable machine checks. */
1015 local_mcck_enable();
Peter Oberparleiterf86635f2007-04-27 16:01:26 +02001016 chp_id_init(&chpid);
Heiko Carstens15e9b582006-12-04 15:40:26 +01001017 for (i = 0; i <= __MAX_CHPID; i++) {
Peter Oberparleiterf86635f2007-04-27 16:01:26 +02001018 chpid.id = i;
1019 ret = rchp(chpid);
Heiko Carstens15e9b582006-12-04 15:40:26 +01001020 if ((ret == 0) || (ret == 2))
1021 /*
1022 * rchp either succeeded, or another rchp is already
1023 * in progress. In either case, we'll get a crw.
1024 */
1025 atomic_inc(&chpid_reset_count);
1026 }
1027 /* Wait for machine check for all channel paths. */
1028 timeout = get_clock() + (RCHP_TIMEOUT << 12);
1029 while (atomic_read(&chpid_reset_count) != 0) {
1030 if (get_clock() > timeout)
1031 break;
1032 cpu_relax();
1033 }
1034 /* Disable machine checks again. */
1035 local_mcck_disable();
1036 /* Disable channel report machine checks. */
1037 __ctl_clear_bit(14, 28);
Heiko Carstensab14de62007-02-05 21:18:37 +01001038 s390_base_mcck_handler_fn = NULL;
Heiko Carstens15e9b582006-12-04 15:40:26 +01001039}
1040
1041static struct reset_call css_reset_call = {
1042 .fn = css_reset,
1043};
1044
1045static int __init init_css_reset_call(void)
1046{
1047 atomic_set(&chpid_reset_count, 0);
1048 register_reset_call(&css_reset_call);
1049 return 0;
1050}
1051
1052arch_initcall(init_css_reset_call);
1053
1054struct sch_match_id {
1055 struct subchannel_id schid;
1056 struct ccw_dev_id devid;
1057 int rc;
1058};
1059
1060static int __reipl_subchannel_match(struct subchannel_id schid, void *data)
1061{
1062 struct schib schib;
1063 struct sch_match_id *match_id = data;
1064
Michael Holzheua45e1412006-12-15 17:18:22 +01001065 if (stsch_reset(schid, &schib))
Heiko Carstens15e9b582006-12-04 15:40:26 +01001066 return -ENXIO;
Cornelia Huckb279a4f2008-01-26 14:10:45 +01001067 if ((schib.pmcw.st == SUBCHANNEL_TYPE_IO) && schib.pmcw.dnv &&
Heiko Carstens15e9b582006-12-04 15:40:26 +01001068 (schib.pmcw.dev == match_id->devid.devno) &&
1069 (schid.ssid == match_id->devid.ssid)) {
1070 match_id->schid = schid;
1071 match_id->rc = 0;
1072 return 1;
1073 }
1074 return 0;
1075}
1076
1077static int reipl_find_schid(struct ccw_dev_id *devid,
1078 struct subchannel_id *schid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079{
Michael Holzheuff6b8ea2006-09-20 15:58:49 +02001080 struct sch_match_id match_id;
1081
1082 match_id.devid = *devid;
1083 match_id.rc = -ENODEV;
Heiko Carstens15e9b582006-12-04 15:40:26 +01001084 for_each_subchannel(__reipl_subchannel_match, &match_id);
Michael Holzheuff6b8ea2006-09-20 15:58:49 +02001085 if (match_id.rc == 0)
1086 *schid = match_id.schid;
1087 return match_id.rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088}
1089
Michael Holzheuff6b8ea2006-09-20 15:58:49 +02001090extern void do_reipl_asm(__u32 schid);
1091
1092/* Make sure all subchannels are quiet before we re-ipl an lpar. */
1093void reipl_ccw_dev(struct ccw_dev_id *devid)
1094{
1095 struct subchannel_id schid;
1096
Heiko Carstens15e9b582006-12-04 15:40:26 +01001097 s390_reset_system();
1098 if (reipl_find_schid(devid, &schid) != 0)
Michael Holzheuff6b8ea2006-09-20 15:58:49 +02001099 panic("IPL Device not found\n");
Michael Holzheuff6b8ea2006-09-20 15:58:49 +02001100 do_reipl_asm(*((__u32*)&schid));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101}
Heiko Carstense87bfe52006-09-20 15:59:15 +02001102
Heiko Carstens6fc321f2007-04-27 16:01:25 +02001103int __init cio_get_iplinfo(struct cio_iplinfo *iplinfo)
Heiko Carstense87bfe52006-09-20 15:59:15 +02001104{
1105 struct subchannel_id schid;
Heiko Carstens6fc321f2007-04-27 16:01:25 +02001106 struct schib schib;
Heiko Carstense87bfe52006-09-20 15:59:15 +02001107
1108 schid = *(struct subchannel_id *)__LC_SUBCHANNEL_ID;
1109 if (!schid.one)
Heiko Carstens6fc321f2007-04-27 16:01:25 +02001110 return -ENODEV;
1111 if (stsch(schid, &schib))
1112 return -ENODEV;
Cornelia Huckb279a4f2008-01-26 14:10:45 +01001113 if (schib.pmcw.st != SUBCHANNEL_TYPE_IO)
1114 return -ENODEV;
Heiko Carstens6fc321f2007-04-27 16:01:25 +02001115 if (!schib.pmcw.dnv)
1116 return -ENODEV;
1117 iplinfo->devno = schib.pmcw.dev;
1118 iplinfo->is_qdio = schib.pmcw.qf;
1119 return 0;
Heiko Carstense87bfe52006-09-20 15:59:15 +02001120}
Peter Oberparleiter83262d62008-07-14 09:58:51 +02001121
1122/**
1123 * cio_tm_start_key - perform start function
1124 * @sch: subchannel on which to perform the start function
1125 * @tcw: transport-command word to be started
1126 * @lpm: mask of paths to use
1127 * @key: storage key to use for storage access
1128 *
1129 * Start the tcw on the given subchannel. Return zero on success, non-zero
1130 * otherwise.
1131 */
1132int cio_tm_start_key(struct subchannel *sch, struct tcw *tcw, u8 lpm, u8 key)
1133{
1134 int cc;
1135 union orb *orb = &to_io_private(sch)->orb;
1136
1137 memset(orb, 0, sizeof(union orb));
1138 orb->tm.intparm = (u32) (addr_t) sch;
1139 orb->tm.key = key >> 4;
1140 orb->tm.b = 1;
1141 orb->tm.lpm = lpm ? lpm : sch->lpm;
1142 orb->tm.tcw = (u32) (addr_t) tcw;
1143 cc = ssch(sch->schid, orb);
1144 switch (cc) {
1145 case 0:
1146 return 0;
1147 case 1:
1148 case 2:
1149 return -EBUSY;
1150 default:
1151 return cio_start_handle_notoper(sch, lpm);
1152 }
1153}
1154
1155/**
1156 * cio_tm_intrg - perform interrogate function
1157 * @sch - subchannel on which to perform the interrogate function
1158 *
1159 * If the specified subchannel is running in transport-mode, perform the
1160 * interrogate function. Return zero on success, non-zero otherwie.
1161 */
1162int cio_tm_intrg(struct subchannel *sch)
1163{
1164 int cc;
1165
1166 if (!to_io_private(sch)->orb.tm.b)
1167 return -EINVAL;
1168 cc = xsch(sch->schid);
1169 switch (cc) {
1170 case 0:
1171 case 2:
1172 return 0;
1173 case 1:
1174 return -EBUSY;
1175 default:
1176 return -ENODEV;
1177 }
1178}