cio.c 23.8 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3
/*
 *   S/390 common I/O routines -- low level i/o calls
 *
4
 *    Copyright IBM Corp. 1999, 2008
L
Linus Torvalds 已提交
5
 *    Author(s): Ingo Adlung (adlung@de.ibm.com)
6
 *		 Cornelia Huck (cornelia.huck@de.ibm.com)
L
Linus Torvalds 已提交
7 8 9 10
 *		 Arnd Bergmann (arndb@de.ibm.com)
 *		 Martin Schwidefsky (schwidefsky@de.ibm.com)
 */

11 12 13
#define KMSG_COMPONENT "cio"
#define pr_fmt(fmt) KMSG_COMPONENT ": " fmt

14
#include <linux/ftrace.h>
L
Linus Torvalds 已提交
15 16 17 18 19 20 21 22 23
#include <linux/module.h>
#include <linux/init.h>
#include <linux/slab.h>
#include <linux/device.h>
#include <linux/kernel_stat.h>
#include <linux/interrupt.h>
#include <asm/cio.h>
#include <asm/delay.h>
#include <asm/irq.h>
H
Heiko Carstens 已提交
24
#include <asm/irq_regs.h>
25
#include <asm/setup.h>
26
#include <asm/reset.h>
M
Michael Holzheu 已提交
27
#include <asm/ipl.h>
28
#include <asm/chpid.h>
29
#include <asm/airq.h>
30
#include <asm/isc.h>
31
#include <asm/cputime.h>
32
#include <asm/fcx.h>
33 34
#include <asm/nmi.h>
#include <asm/crw.h>
L
Linus Torvalds 已提交
35 36 37 38
#include "cio.h"
#include "css.h"
#include "chsc.h"
#include "ioasm.h"
39
#include "io_sch.h"
L
Linus Torvalds 已提交
40 41
#include "blacklist.h"
#include "cio_debug.h"
42
#include "chp.h"
L
Linus Torvalds 已提交
43 44 45 46 47 48 49

debug_info_t *cio_debug_msg_id;
debug_info_t *cio_debug_trace_id;
debug_info_t *cio_debug_crw_id;

/*
 * Function: cio_debug_init
50 51
 * Initializes three debug logs for common I/O:
 * - cio_msg logs generic cio messages
L
Linus Torvalds 已提交
52
 * - cio_trace logs the calling of different functions
53
 * - cio_crw logs machine check related cio messages
L
Linus Torvalds 已提交
54
 */
55
static int __init cio_debug_init(void)
L
Linus Torvalds 已提交
56
{
57
	cio_debug_msg_id = debug_register("cio_msg", 16, 1, 16 * sizeof(long));
L
Linus Torvalds 已提交
58 59
	if (!cio_debug_msg_id)
		goto out_unregister;
60 61
	debug_register_view(cio_debug_msg_id, &debug_sprintf_view);
	debug_set_level(cio_debug_msg_id, 2);
62
	cio_debug_trace_id = debug_register("cio_trace", 16, 1, 16);
L
Linus Torvalds 已提交
63 64
	if (!cio_debug_trace_id)
		goto out_unregister;
65 66
	debug_register_view(cio_debug_trace_id, &debug_hex_ascii_view);
	debug_set_level(cio_debug_trace_id, 2);
67
	cio_debug_crw_id = debug_register("cio_crw", 16, 1, 16 * sizeof(long));
L
Linus Torvalds 已提交
68 69
	if (!cio_debug_crw_id)
		goto out_unregister;
70 71
	debug_register_view(cio_debug_crw_id, &debug_sprintf_view);
	debug_set_level(cio_debug_crw_id, 4);
L
Linus Torvalds 已提交
72 73 74 75
	return 0;

out_unregister:
	if (cio_debug_msg_id)
76
		debug_unregister(cio_debug_msg_id);
L
Linus Torvalds 已提交
77
	if (cio_debug_trace_id)
78
		debug_unregister(cio_debug_trace_id);
L
Linus Torvalds 已提交
79
	if (cio_debug_crw_id)
80
		debug_unregister(cio_debug_crw_id);
L
Linus Torvalds 已提交
81 82 83 84 85
	return -1;
}

arch_initcall (cio_debug_init);

86
int cio_set_options(struct subchannel *sch, int flags)
L
Linus Torvalds 已提交
87
{
88
	struct io_subchannel_private *priv = to_io_private(sch);
L
Linus Torvalds 已提交
89

90 91 92 93
	priv->options.suspend = (flags & DOIO_ALLOW_SUSPEND) != 0;
	priv->options.prefetch = (flags & DOIO_DENY_PREFETCH) != 0;
	priv->options.inter = (flags & DOIO_SUPPRESS_INTER) != 0;
	return 0;
L
Linus Torvalds 已提交
94 95
}

96
static int
L
Linus Torvalds 已提交
97 98 99 100 101 102 103 104 105
cio_start_handle_notoper(struct subchannel *sch, __u8 lpm)
{
	char dbf_text[15];

	if (lpm != 0)
		sch->lpm &= ~lpm;
	else
		sch->lpm = 0;

106
	CIO_MSG_EVENT(2, "cio_start: 'not oper' status for "
107 108
		      "subchannel 0.%x.%04x!\n", sch->schid.ssid,
		      sch->schid.sch_no);
109 110 111 112

	if (cio_update_schib(sch))
		return -ENODEV;

113
	sprintf(dbf_text, "no%s", dev_name(&sch->dev));
L
Linus Torvalds 已提交
114 115 116 117 118 119 120 121 122 123 124 125
	CIO_TRACE_EVENT(0, dbf_text);
	CIO_HEX_EVENT(0, &sch->schib, sizeof (struct schib));

	return (sch->lpm ? -EACCES : -ENODEV);
}

int
cio_start_key (struct subchannel *sch,	/* subchannel structure */
	       struct ccw1 * cpa,	/* logical channel prog addr */
	       __u8 lpm,		/* logical path mask */
	       __u8 key)                /* storage key */
{
126 127
	struct io_subchannel_private *priv = to_io_private(sch);
	union orb *orb = &priv->orb;
L
Linus Torvalds 已提交
128 129
	int ccode;

S
Sebastian Ott 已提交
130 131
	CIO_TRACE_EVENT(5, "stIO");
	CIO_TRACE_EVENT(5, dev_name(&sch->dev));
L
Linus Torvalds 已提交
132

133
	memset(orb, 0, sizeof(union orb));
L
Linus Torvalds 已提交
134
	/* sch is always under 2G. */
135 136
	orb->cmd.intparm = (u32)(addr_t)sch;
	orb->cmd.fmt = 1;
L
Linus Torvalds 已提交
137

138 139 140
	orb->cmd.pfch = priv->options.prefetch == 0;
	orb->cmd.spnd = priv->options.suspend;
	orb->cmd.ssic = priv->options.suspend && priv->options.inter;
141
	orb->cmd.lpm = (lpm != 0) ? lpm : sch->lpm;
142
#ifdef CONFIG_64BIT
L
Linus Torvalds 已提交
143 144 145
	/*
	 * for 64 bit we always support 64 bit IDAWs with 4k page size only
	 */
146 147
	orb->cmd.c64 = 1;
	orb->cmd.i2k = 0;
L
Linus Torvalds 已提交
148
#endif
149
	orb->cmd.key = key >> 4;
L
Linus Torvalds 已提交
150
	/* issue "Start Subchannel" */
151
	orb->cmd.cpa = (__u32) __pa(cpa);
152
	ccode = ssch(sch->schid, orb);
L
Linus Torvalds 已提交
153 154

	/* process condition code */
S
Sebastian Ott 已提交
155
	CIO_HEX_EVENT(5, &ccode, sizeof(ccode));
L
Linus Torvalds 已提交
156 157 158 159 160 161

	switch (ccode) {
	case 0:
		/*
		 * initialize device status information
		 */
162
		sch->schib.scsw.cmd.actl |= SCSW_ACTL_START_PEND;
L
Linus Torvalds 已提交
163 164 165 166
		return 0;
	case 1:		/* status pending */
	case 2:		/* busy */
		return -EBUSY;
167
	case 3:		/* device/path not operational */
L
Linus Torvalds 已提交
168
		return cio_start_handle_notoper(sch, lpm);
169 170
	default:
		return ccode;
L
Linus Torvalds 已提交
171 172 173 174 175 176
	}
}

int
cio_start (struct subchannel *sch, struct ccw1 *cpa, __u8 lpm)
{
177
	return cio_start_key(sch, cpa, lpm, PAGE_DEFAULT_KEY);
L
Linus Torvalds 已提交
178 179 180 181 182 183 184 185 186 187
}

/*
 * resume suspended I/O operation
 */
int
cio_resume (struct subchannel *sch)
{
	int ccode;

S
Sebastian Ott 已提交
188
	CIO_TRACE_EVENT(4, "resIO");
189
	CIO_TRACE_EVENT(4, dev_name(&sch->dev));
L
Linus Torvalds 已提交
190

191
	ccode = rsch (sch->schid);
L
Linus Torvalds 已提交
192

S
Sebastian Ott 已提交
193
	CIO_HEX_EVENT(4, &ccode, sizeof(ccode));
L
Linus Torvalds 已提交
194 195 196

	switch (ccode) {
	case 0:
197
		sch->schib.scsw.cmd.actl |= SCSW_ACTL_RESUME_PEND;
L
Linus Torvalds 已提交
198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222
		return 0;
	case 1:
		return -EBUSY;
	case 2:
		return -EINVAL;
	default:
		/*
		 * useless to wait for request completion
		 *  as device is no longer operational !
		 */
		return -ENODEV;
	}
}

/*
 * halt I/O operation
 */
int
cio_halt(struct subchannel *sch)
{
	int ccode;

	if (!sch)
		return -ENODEV;

S
Sebastian Ott 已提交
223
	CIO_TRACE_EVENT(2, "haltIO");
224
	CIO_TRACE_EVENT(2, dev_name(&sch->dev));
L
Linus Torvalds 已提交
225 226 227 228

	/*
	 * Issue "Halt subchannel" and process condition code
	 */
229
	ccode = hsch (sch->schid);
L
Linus Torvalds 已提交
230

S
Sebastian Ott 已提交
231
	CIO_HEX_EVENT(2, &ccode, sizeof(ccode));
L
Linus Torvalds 已提交
232 233 234

	switch (ccode) {
	case 0:
235
		sch->schib.scsw.cmd.actl |= SCSW_ACTL_HALT_PEND;
L
Linus Torvalds 已提交
236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255
		return 0;
	case 1:		/* status pending */
	case 2:		/* busy */
		return -EBUSY;
	default:		/* device not operational */
		return -ENODEV;
	}
}

/*
 * Clear I/O operation
 */
int
cio_clear(struct subchannel *sch)
{
	int ccode;

	if (!sch)
		return -ENODEV;

S
Sebastian Ott 已提交
256
	CIO_TRACE_EVENT(2, "clearIO");
257
	CIO_TRACE_EVENT(2, dev_name(&sch->dev));
L
Linus Torvalds 已提交
258 259 260 261

	/*
	 * Issue "Clear subchannel" and process condition code
	 */
262
	ccode = csch (sch->schid);
L
Linus Torvalds 已提交
263

S
Sebastian Ott 已提交
264
	CIO_HEX_EVENT(2, &ccode, sizeof(ccode));
L
Linus Torvalds 已提交
265 266 267

	switch (ccode) {
	case 0:
268
		sch->schib.scsw.cmd.actl |= SCSW_ACTL_CLEAR_PEND;
L
Linus Torvalds 已提交
269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289
		return 0;
	default:		/* device not operational */
		return -ENODEV;
	}
}

/*
 * Function: cio_cancel
 * Issues a "Cancel Subchannel" on the specified subchannel
 * Note: We don't need any fancy intparms and flags here
 *	 since xsch is executed synchronously.
 * Only for common I/O internal use as for now.
 */
int
cio_cancel (struct subchannel *sch)
{
	int ccode;

	if (!sch)
		return -ENODEV;

S
Sebastian Ott 已提交
290
	CIO_TRACE_EVENT(2, "cancelIO");
291
	CIO_TRACE_EVENT(2, dev_name(&sch->dev));
L
Linus Torvalds 已提交
292

293
	ccode = xsch (sch->schid);
L
Linus Torvalds 已提交
294

S
Sebastian Ott 已提交
295
	CIO_HEX_EVENT(2, &ccode, sizeof(ccode));
L
Linus Torvalds 已提交
296 297 298 299

	switch (ccode) {
	case 0:		/* success */
		/* Update information in scsw. */
300 301
		if (cio_update_schib(sch))
			return -ENODEV;
L
Linus Torvalds 已提交
302 303 304 305 306 307 308 309 310 311
		return 0;
	case 1:		/* status pending */
		return -EBUSY;
	case 2:		/* not applicable */
		return -EINVAL;
	default:	/* not oper */
		return -ENODEV;
	}
}

312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339

static void cio_apply_config(struct subchannel *sch, struct schib *schib)
{
	schib->pmcw.intparm = sch->config.intparm;
	schib->pmcw.mbi = sch->config.mbi;
	schib->pmcw.isc = sch->config.isc;
	schib->pmcw.ena = sch->config.ena;
	schib->pmcw.mme = sch->config.mme;
	schib->pmcw.mp = sch->config.mp;
	schib->pmcw.csense = sch->config.csense;
	schib->pmcw.mbfc = sch->config.mbfc;
	if (sch->config.mbfc)
		schib->mba = sch->config.mba;
}

static int cio_check_config(struct subchannel *sch, struct schib *schib)
{
	return (schib->pmcw.intparm == sch->config.intparm) &&
		(schib->pmcw.mbi == sch->config.mbi) &&
		(schib->pmcw.isc == sch->config.isc) &&
		(schib->pmcw.ena == sch->config.ena) &&
		(schib->pmcw.mme == sch->config.mme) &&
		(schib->pmcw.mp == sch->config.mp) &&
		(schib->pmcw.csense == sch->config.csense) &&
		(schib->pmcw.mbfc == sch->config.mbfc) &&
		(!sch->config.mbfc || (schib->mba == sch->config.mba));
}

L
Linus Torvalds 已提交
340
/*
341
 * cio_commit_config - apply configuration to the subchannel
L
Linus Torvalds 已提交
342
 */
343
int cio_commit_config(struct subchannel *sch)
L
Linus Torvalds 已提交
344
{
345 346 347
	struct schib schib;
	int ccode, retry, ret = 0;

348
	if (stsch_err(sch->schid, &schib) || !css_sch_is_valid(&schib))
349
		return -ENODEV;
L
Linus Torvalds 已提交
350 351

	for (retry = 0; retry < 5; retry++) {
352 353 354 355
		/* copy desired changes to local schib */
		cio_apply_config(sch, &schib);
		ccode = msch_err(sch->schid, &schib);
		if (ccode < 0) /* -EIO if msch gets a program check. */
L
Linus Torvalds 已提交
356 357
			return ccode;
		switch (ccode) {
C
Coly Li 已提交
358
		case 0: /* successful */
359
			if (stsch_err(sch->schid, &schib) ||
360 361 362 363 364 365 366 367 368 369
			    !css_sch_is_valid(&schib))
				return -ENODEV;
			if (cio_check_config(sch, &schib)) {
				/* commit changes from local schib */
				memcpy(&sch->schib, &schib, sizeof(schib));
				return 0;
			}
			ret = -EAGAIN;
			break;
		case 1: /* status pending */
L
Linus Torvalds 已提交
370
			return -EBUSY;
371 372
		case 2: /* busy */
			udelay(100); /* allow for recovery */
L
Linus Torvalds 已提交
373 374
			ret = -EBUSY;
			break;
375
		case 3: /* not operational */
L
Linus Torvalds 已提交
376 377 378 379 380 381
			return -ENODEV;
		}
	}
	return ret;
}

382 383 384 385 386 387 388 389 390
/**
 * cio_update_schib - Perform stsch and update schib if subchannel is valid.
 * @sch: subchannel on which to perform stsch
 * Return zero on success, -ENODEV otherwise.
 */
int cio_update_schib(struct subchannel *sch)
{
	struct schib schib;

391
	if (stsch_err(sch->schid, &schib) || !css_sch_is_valid(&schib))
392 393 394 395 396 397 398
		return -ENODEV;

	memcpy(&sch->schib, &schib, sizeof(schib));
	return 0;
}
EXPORT_SYMBOL_GPL(cio_update_schib);

399 400 401 402
/**
 * cio_enable_subchannel - enable a subchannel.
 * @sch: subchannel to be enabled
 * @intparm: interruption parameter to set
L
Linus Torvalds 已提交
403
 */
404
int cio_enable_subchannel(struct subchannel *sch, u32 intparm)
L
Linus Torvalds 已提交
405 406 407 408
{
	int retry;
	int ret;

S
Sebastian Ott 已提交
409
	CIO_TRACE_EVENT(2, "ensch");
410
	CIO_TRACE_EVENT(2, dev_name(&sch->dev));
L
Linus Torvalds 已提交
411

412 413
	if (sch_is_pseudo_sch(sch))
		return -EINVAL;
414
	if (cio_update_schib(sch))
L
Linus Torvalds 已提交
415 416
		return -ENODEV;

417 418 419 420 421 422 423
	sch->config.ena = 1;
	sch->config.isc = sch->isc;
	sch->config.intparm = intparm;

	for (retry = 0; retry < 3; retry++) {
		ret = cio_commit_config(sch);
		if (ret == -EIO) {
L
Linus Torvalds 已提交
424
			/*
425
			 * Got a program check in msch. Try without
L
Linus Torvalds 已提交
426 427
			 * the concurrent sense bit the next time.
			 */
428 429
			sch->config.csense = 0;
		} else if (ret == -EBUSY) {
L
Linus Torvalds 已提交
430
			struct irb irb;
431
			if (tsch(sch->schid, &irb) != 0)
L
Linus Torvalds 已提交
432
				break;
433 434
		} else
			break;
L
Linus Torvalds 已提交
435
	}
S
Sebastian Ott 已提交
436
	CIO_HEX_EVENT(2, &ret, sizeof(ret));
L
Linus Torvalds 已提交
437 438
	return ret;
}
439
EXPORT_SYMBOL_GPL(cio_enable_subchannel);
L
Linus Torvalds 已提交
440

441 442 443
/**
 * cio_disable_subchannel - disable a subchannel.
 * @sch: subchannel to disable
L
Linus Torvalds 已提交
444
 */
445
int cio_disable_subchannel(struct subchannel *sch)
L
Linus Torvalds 已提交
446
{
447
	int retry;
L
Linus Torvalds 已提交
448 449
	int ret;

S
Sebastian Ott 已提交
450
	CIO_TRACE_EVENT(2, "dissch");
451
	CIO_TRACE_EVENT(2, dev_name(&sch->dev));
L
Linus Torvalds 已提交
452

453 454
	if (sch_is_pseudo_sch(sch))
		return 0;
455
	if (cio_update_schib(sch))
L
Linus Torvalds 已提交
456 457
		return -ENODEV;

458 459
	sch->config.ena = 0;

460 461 462 463 464 465 466 467 468
	for (retry = 0; retry < 3; retry++) {
		ret = cio_commit_config(sch);
		if (ret == -EBUSY) {
			struct irb irb;
			if (tsch(sch->schid, &irb) != 0)
				break;
		} else
			break;
	}
S
Sebastian Ott 已提交
469
	CIO_HEX_EVENT(2, &ret, sizeof(ret));
L
Linus Torvalds 已提交
470 471
	return ret;
}
472
EXPORT_SYMBOL_GPL(cio_disable_subchannel);
L
Linus Torvalds 已提交
473

474
static int cio_check_devno_blacklisted(struct subchannel *sch)
475 476 477 478 479 480 481 482 483 484 485 486 487 488
{
	if (is_blacklisted(sch->schid.ssid, sch->schib.pmcw.dev)) {
		/*
		 * This device must not be known to Linux. So we simply
		 * say that there is no device and return ENODEV.
		 */
		CIO_MSG_EVENT(6, "Blacklisted device detected "
			      "at devno %04X, subchannel set %x\n",
			      sch->schib.pmcw.dev, sch->schid.ssid);
		return -ENODEV;
	}
	return 0;
}

489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508
static int cio_validate_io_subchannel(struct subchannel *sch)
{
	/* Initialization for io subchannels. */
	if (!css_sch_is_valid(&sch->schib))
		return -ENODEV;

	/* Devno is valid. */
	return cio_check_devno_blacklisted(sch);
}

static int cio_validate_msg_subchannel(struct subchannel *sch)
{
	/* Initialization for message subchannels. */
	if (!css_sch_is_valid(&sch->schib))
		return -ENODEV;

	/* Devno is valid. */
	return cio_check_devno_blacklisted(sch);
}

509 510 511 512
/**
 * cio_validate_subchannel - basic validation of subchannel
 * @sch: subchannel structure to be filled out
 * @schid: subchannel id
L
Linus Torvalds 已提交
513 514 515
 *
 * Find out subchannel type and initialize struct subchannel.
 * Return codes:
516
 *   0 on success
L
Linus Torvalds 已提交
517
 *   -ENXIO for non-defined subchannels
518 519
 *   -ENODEV for invalid subchannels or blacklisted devices
 *   -EIO for subchannels in an invalid subchannel set
L
Linus Torvalds 已提交
520
 */
521
int cio_validate_subchannel(struct subchannel *sch, struct subchannel_id schid)
L
Linus Torvalds 已提交
522 523 524
{
	char dbf_txt[15];
	int ccode;
C
Cornelia Huck 已提交
525
	int err;
L
Linus Torvalds 已提交
526

527 528
	sprintf(dbf_txt, "valsch%x", schid.sch_no);
	CIO_TRACE_EVENT(4, dbf_txt);
L
Linus Torvalds 已提交
529 530 531

	/*
	 * The first subchannel that is not-operational (ccode==3)
532
	 * indicates that there aren't any more devices available.
533
	 * If stsch gets an exception, it means the current subchannel set
534
	 * is not valid.
L
Linus Torvalds 已提交
535
	 */
536
	ccode = stsch_err(schid, &sch->schib);
C
Cornelia Huck 已提交
537 538 539 540
	if (ccode) {
		err = (ccode == 3) ? -ENXIO : ccode;
		goto out;
	}
L
Linus Torvalds 已提交
541
	sch->st = sch->schib.pmcw.st;
542
	sch->schid = schid;
C
Cornelia Huck 已提交
543

544 545 546 547
	switch (sch->st) {
	case SUBCHANNEL_TYPE_IO:
		err = cio_validate_io_subchannel(sch);
		break;
548 549 550
	case SUBCHANNEL_TYPE_MSG:
		err = cio_validate_msg_subchannel(sch);
		break;
551 552
	default:
		err = 0;
L
Linus Torvalds 已提交
553
	}
554
	if (err)
555 556
		goto out;

557 558
	CIO_MSG_EVENT(4, "Subchannel 0.%x.%04x reports subchannel type %04X\n",
		      sch->schid.ssid, sch->schid.sch_no, sch->st);
C
Cornelia Huck 已提交
559 560
out:
	return err;
L
Linus Torvalds 已提交
561 562 563 564 565 566 567 568
}

/*
 * do_IRQ() handles all normal I/O device IRQ's (the special
 *	    SMP cross-CPU interrupts have their own specific
 *	    handlers).
 *
 */
569
void __irq_entry do_IRQ(struct pt_regs *regs)
L
Linus Torvalds 已提交
570 571 572 573
{
	struct tpi_info *tpi_info;
	struct subchannel *sch;
	struct irb *irb;
H
Heiko Carstens 已提交
574
	struct pt_regs *old_regs;
L
Linus Torvalds 已提交
575

H
Heiko Carstens 已提交
576
	old_regs = set_irq_regs(regs);
577
	irq_enter();
578
	__this_cpu_write(s390_idle.nohz_delay, 1);
579 580 581
	if (S390_lowcore.int_clock >= S390_lowcore.clock_comparator)
		/* Serve timer interrupts first. */
		clock_comparator_work();
L
Linus Torvalds 已提交
582 583 584
	/*
	 * Get interrupt information from lowcore
	 */
585 586
	tpi_info = (struct tpi_info *)&S390_lowcore.subchannel_id;
	irb = (struct irb *)&S390_lowcore.irb;
L
Linus Torvalds 已提交
587
	do {
588
		kstat_incr_irqs_this_cpu(IO_INTERRUPT, NULL);
589
		if (tpi_info->adapter_IO) {
590
			do_adapter_IO(tpi_info->isc);
L
Linus Torvalds 已提交
591 592 593
			continue;
		}
		sch = (struct subchannel *)(unsigned long)tpi_info->intparm;
594 595
		if (!sch) {
			/* Clear pending interrupt condition. */
596
			inc_irq_stat(IRQIO_CIO);
597 598 599 600
			tsch(tpi_info->schid, irb);
			continue;
		}
		spin_lock(sch->lock);
L
Linus Torvalds 已提交
601
		/* Store interrupt response block to lowcore. */
602
		if (tsch(tpi_info->schid, irb) == 0) {
L
Linus Torvalds 已提交
603 604 605 606 607
			/* Keep subchannel information word up to date. */
			memcpy (&sch->schib.scsw, &irb->scsw,
				sizeof (irb->scsw));
			/* Call interrupt handler if there is one. */
			if (sch->driver && sch->driver->irq)
608
				sch->driver->irq(sch);
609
			else
610
				inc_irq_stat(IRQIO_CIO);
611
		} else
612
			inc_irq_stat(IRQIO_CIO);
613
		spin_unlock(sch->lock);
L
Linus Torvalds 已提交
614 615 616 617 618 619 620
		/*
		 * Are more interrupts pending?
		 * If so, the tpi instruction will update the lowcore
		 * to hold the info for the next interrupt.
		 * We don't do this for VM because a tpi drops the cpu
		 * out of the sie which costs more cycles than it saves.
		 */
621
	} while (MACHINE_IS_LPAR && tpi(NULL) != 0);
H
Heiko Carstens 已提交
622
	irq_exit();
H
Heiko Carstens 已提交
623
	set_irq_regs(old_regs);
L
Linus Torvalds 已提交
624 625 626
}

#ifdef CONFIG_CCW_CONSOLE
627
static struct subchannel *console_sch;
L
Linus Torvalds 已提交
628

629
/*
630
 * Use cio_tsch to update the subchannel status and call the interrupt handler
631
 * if status had been pending. Called with the subchannel's lock held.
632
 */
633
void cio_tsch(struct subchannel *sch)
634 635 636 637
{
	struct irb *irb;
	int irq_context;

638
	irb = (struct irb *)&S390_lowcore.irb;
639
	/* Store interrupt response block to lowcore. */
640
	if (tsch(sch->schid, irb) != 0)
641
		/* Not status pending or not operational. */
642 643 644
		return;
	memcpy(&sch->schib.scsw, &irb->scsw, sizeof(union scsw));
	/* Call interrupt handler with updated status. */
645
	irq_context = in_interrupt();
646
	if (!irq_context) {
647
		local_bh_disable();
648 649
		irq_enter();
	}
S
Sebastian Ott 已提交
650
	kstat_incr_irqs_this_cpu(IO_INTERRUPT, NULL);
651 652
	if (sch->driver && sch->driver->irq)
		sch->driver->irq(sch);
653
	else
654
		inc_irq_stat(IRQIO_CIO);
655 656
	if (!irq_context) {
		irq_exit();
657
		_local_bh_enable();
658
	}
659 660
}

661
static int cio_test_for_console(struct subchannel_id schid, void *data)
662
{
663
	struct schib schib;
664

665
	if (stsch_err(schid, &schib) != 0)
666
		return -ENXIO;
667 668
	if ((schib.pmcw.st == SUBCHANNEL_TYPE_IO) && schib.pmcw.dnv &&
	    (schib.pmcw.dev == console_devno)) {
669 670 671 672 673 674
		console_irq = schid.sch_no;
		return 1; /* found */
	}
	return 0;
}

675
static int cio_get_console_sch_no(void)
L
Linus Torvalds 已提交
676
{
677
	struct subchannel_id schid;
678 679
	struct schib schib;

680
	init_subchannel_id(&schid);
L
Linus Torvalds 已提交
681 682
	if (console_irq != -1) {
		/* VM provided us with the irq number of the console. */
683
		schid.sch_no = console_irq;
684 685
		if (stsch_err(schid, &schib) != 0 ||
		    (schib.pmcw.st != SUBCHANNEL_TYPE_IO) || !schib.pmcw.dnv)
L
Linus Torvalds 已提交
686
			return -1;
687
		console_devno = schib.pmcw.dev;
L
Linus Torvalds 已提交
688 689
	} else if (console_devno != -1) {
		/* At least the console device number is known. */
690
		for_each_subchannel(cio_test_for_console, NULL);
L
Linus Torvalds 已提交
691 692 693 694
	}
	return console_irq;
}

695
struct subchannel *cio_probe_console(void)
L
Linus Torvalds 已提交
696
{
697
	struct subchannel_id schid;
698 699
	struct subchannel *sch;
	int sch_no, ret;
L
Linus Torvalds 已提交
700

701 702
	sch_no = cio_get_console_sch_no();
	if (sch_no == -1) {
703
		pr_warning("No CCW console was found\n");
L
Linus Torvalds 已提交
704 705
		return ERR_PTR(-ENODEV);
	}
706
	init_subchannel_id(&schid);
707
	schid.sch_no = sch_no;
708 709 710
	sch = css_alloc_subchannel(schid);
	if (IS_ERR(sch))
		return sch;
L
Linus Torvalds 已提交
711

712
	isc_register(CONSOLE_ISC);
713 714 715
	sch->config.isc = CONSOLE_ISC;
	sch->config.intparm = (u32)(addr_t)sch;
	ret = cio_commit_config(sch);
L
Linus Torvalds 已提交
716
	if (ret) {
717
		isc_unregister(CONSOLE_ISC);
718
		put_device(&sch->dev);
L
Linus Torvalds 已提交
719 720
		return ERR_PTR(ret);
	}
721 722
	console_sch = sch;
	return sch;
L
Linus Torvalds 已提交
723 724
}

725
int cio_is_console(struct subchannel_id schid)
L
Linus Torvalds 已提交
726
{
727
	if (!console_sch)
L
Linus Torvalds 已提交
728
		return 0;
729
	return schid_equal(&schid, &console_sch->schid);
L
Linus Torvalds 已提交
730 731
}

732
void cio_register_early_subchannels(void)
L
Linus Torvalds 已提交
733
{
734 735 736 737 738 739 740 741
	int ret;

	if (!console_sch)
		return;

	ret = css_register_subchannel(console_sch);
	if (ret)
		put_device(&console_sch->dev);
L
Linus Torvalds 已提交
742
}
743
#endif /* CONFIG_CCW_CONSOLE */
L
Linus Torvalds 已提交
744

745
static int
746
__disable_subchannel_easy(struct subchannel_id schid, struct schib *schib)
L
Linus Torvalds 已提交
747 748 749 750 751 752
{
	int retry, cc;

	cc = 0;
	for (retry=0;retry<3;retry++) {
		schib->pmcw.ena = 0;
753
		cc = msch_err(schid, schib);
L
Linus Torvalds 已提交
754 755
		if (cc)
			return (cc==3?-ENODEV:-EBUSY);
756
		if (stsch_err(schid, schib) || !css_sch_is_valid(schib))
757
			return -ENODEV;
L
Linus Torvalds 已提交
758 759 760 761 762 763
		if (!schib->pmcw.ena)
			return 0;
	}
	return -EBUSY; /* uhm... */
}

764
static int
765
__clear_io_subchannel_easy(struct subchannel_id schid)
L
Linus Torvalds 已提交
766 767 768 769 770 771 772 773 774
{
	int retry;

	if (csch(schid))
		return -ENODEV;
	for (retry=0;retry<20;retry++) {
		struct tpi_info ti;

		if (tpi(&ti)) {
775
			tsch(ti.schid, (struct irb *)&S390_lowcore.irb);
776
			if (schid_equal(&ti.schid, &schid))
777
				return 0;
L
Linus Torvalds 已提交
778
		}
779
		udelay_simple(100);
L
Linus Torvalds 已提交
780 781 782 783
	}
	return -EBUSY;
}

784 785 786
static void __clear_chsc_subchannel_easy(void)
{
	/* It seems we can only wait for a bit here :/ */
787
	udelay_simple(100);
788 789
}

M
Michael Holzheu 已提交
790 791 792 793 794 795 796
static int pgm_check_occured;

static void cio_reset_pgm_check_handler(void)
{
	pgm_check_occured = 1;
}

797
static int stsch_reset(struct subchannel_id schid, struct schib *addr)
M
Michael Holzheu 已提交
798 799 800 801
{
	int rc;

	pgm_check_occured = 0;
802
	s390_base_pgm_handler_fn = cio_reset_pgm_check_handler;
803
	rc = stsch_err(schid, addr);
804
	s390_base_pgm_handler_fn = NULL;
M
Michael Holzheu 已提交
805

806
	/* The program check handler could have changed pgm_check_occured. */
807
	barrier();
M
Michael Holzheu 已提交
808

M
Michael Holzheu 已提交
809 810 811 812 813 814
	if (pgm_check_occured)
		return -EIO;
	else
		return rc;
}

815
static int __shutdown_subchannel_easy(struct subchannel_id schid, void *data)
816 817 818
{
	struct schib schib;

M
Michael Holzheu 已提交
819
	if (stsch_reset(schid, &schib))
820 821 822 823 824 825 826 827
		return -ENXIO;
	if (!schib.pmcw.ena)
		return 0;
	switch(__disable_subchannel_easy(schid, &schib)) {
	case 0:
	case -ENODEV:
		break;
	default: /* -EBUSY */
828 829 830 831 832
		switch (schib.pmcw.st) {
		case SUBCHANNEL_TYPE_IO:
			if (__clear_io_subchannel_easy(schid))
				goto out; /* give up... */
			break;
833 834 835
		case SUBCHANNEL_TYPE_CHSC:
			__clear_chsc_subchannel_easy();
			break;
836 837 838 839
		default:
			/* No default clear strategy */
			break;
		}
840
		stsch_err(schid, &schib);
841 842
		__disable_subchannel_easy(schid, &schib);
	}
843
out:
844 845
	return 0;
}
L
Linus Torvalds 已提交
846

847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870
static atomic_t chpid_reset_count;

static void s390_reset_chpids_mcck_handler(void)
{
	struct crw crw;
	struct mci *mci;

	/* Check for pending channel report word. */
	mci = (struct mci *)&S390_lowcore.mcck_interruption_code;
	if (!mci->cp)
		return;
	/* Process channel report words. */
	while (stcrw(&crw) == 0) {
		/* Check for responses to RCHP. */
		if (crw.slct && crw.rsc == CRW_RSC_CPATH)
			atomic_dec(&chpid_reset_count);
	}
}

#define RCHP_TIMEOUT (30 * USEC_PER_SEC)
static void css_reset(void)
{
	int i, ret;
	unsigned long long timeout;
871
	struct chp_id chpid;
872 873 874 875

	/* Reset subchannels. */
	for_each_subchannel(__shutdown_subchannel_easy,  NULL);
	/* Reset channel paths. */
876
	s390_base_mcck_handler_fn = s390_reset_chpids_mcck_handler;
877 878 879 880
	/* Enable channel report machine checks. */
	__ctl_set_bit(14, 28);
	/* Temporarily reenable machine checks. */
	local_mcck_enable();
881
	chp_id_init(&chpid);
882
	for (i = 0; i <= __MAX_CHPID; i++) {
883 884
		chpid.id = i;
		ret = rchp(chpid);
885 886 887 888 889 890 891 892
		if ((ret == 0) || (ret == 2))
			/*
			 * rchp either succeeded, or another rchp is already
			 * in progress. In either case, we'll get a crw.
			 */
			atomic_inc(&chpid_reset_count);
	}
	/* Wait for machine check for all channel paths. */
893
	timeout = get_tod_clock() + (RCHP_TIMEOUT << 12);
894
	while (atomic_read(&chpid_reset_count) != 0) {
895
		if (get_tod_clock() > timeout)
896 897 898 899 900 901 902
			break;
		cpu_relax();
	}
	/* Disable machine checks again. */
	local_mcck_disable();
	/* Disable channel report machine checks. */
	__ctl_clear_bit(14, 28);
903
	s390_base_mcck_handler_fn = NULL;
904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929
}

static struct reset_call css_reset_call = {
	.fn = css_reset,
};

static int __init init_css_reset_call(void)
{
	atomic_set(&chpid_reset_count, 0);
	register_reset_call(&css_reset_call);
	return 0;
}

arch_initcall(init_css_reset_call);

struct sch_match_id {
	struct subchannel_id schid;
	struct ccw_dev_id devid;
	int rc;
};

static int __reipl_subchannel_match(struct subchannel_id schid, void *data)
{
	struct schib schib;
	struct sch_match_id *match_id = data;

M
Michael Holzheu 已提交
930
	if (stsch_reset(schid, &schib))
931
		return -ENXIO;
932
	if ((schib.pmcw.st == SUBCHANNEL_TYPE_IO) && schib.pmcw.dnv &&
933 934 935 936 937 938 939 940 941 942 943
	    (schib.pmcw.dev == match_id->devid.devno) &&
	    (schid.ssid == match_id->devid.ssid)) {
		match_id->schid = schid;
		match_id->rc = 0;
		return 1;
	}
	return 0;
}

static int reipl_find_schid(struct ccw_dev_id *devid,
			    struct subchannel_id *schid)
L
Linus Torvalds 已提交
944
{
M
Michael Holzheu 已提交
945 946 947 948
	struct sch_match_id match_id;

	match_id.devid = *devid;
	match_id.rc = -ENODEV;
949
	for_each_subchannel(__reipl_subchannel_match, &match_id);
M
Michael Holzheu 已提交
950 951 952
	if (match_id.rc == 0)
		*schid = match_id.schid;
	return match_id.rc;
L
Linus Torvalds 已提交
953 954
}

M
Michael Holzheu 已提交
955 956
extern void do_reipl_asm(__u32 schid);

L
Linus Torvalds 已提交
957
/* Make sure all subchannels are quiet before we re-ipl an lpar. */
M
Michael Holzheu 已提交
958
void reipl_ccw_dev(struct ccw_dev_id *devid)
L
Linus Torvalds 已提交
959
{
960
	struct subchannel_id uninitialized_var(schid);
M
Michael Holzheu 已提交
961

M
Michael Holzheu 已提交
962
	s390_reset_system(NULL, NULL);
963
	if (reipl_find_schid(devid, &schid) != 0)
M
Michael Holzheu 已提交
964 965
		panic("IPL Device not found\n");
	do_reipl_asm(*((__u32*)&schid));
L
Linus Torvalds 已提交
966
}
967

968
int __init cio_get_iplinfo(struct cio_iplinfo *iplinfo)
969 970
{
	struct subchannel_id schid;
971
	struct schib schib;
972

973
	schid = *(struct subchannel_id *)&S390_lowcore.subchannel_id;
974
	if (!schid.one)
975
		return -ENODEV;
976
	if (stsch_err(schid, &schib))
977
		return -ENODEV;
978 979
	if (schib.pmcw.st != SUBCHANNEL_TYPE_IO)
		return -ENODEV;
980 981 982 983 984
	if (!schib.pmcw.dnv)
		return -ENODEV;
	iplinfo->devno = schib.pmcw.dev;
	iplinfo->is_qdio = schib.pmcw.qf;
	return 0;
985
}
986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043

/**
 * cio_tm_start_key - perform start function
 * @sch: subchannel on which to perform the start function
 * @tcw: transport-command word to be started
 * @lpm: mask of paths to use
 * @key: storage key to use for storage access
 *
 * Start the tcw on the given subchannel. Return zero on success, non-zero
 * otherwise.
 */
int cio_tm_start_key(struct subchannel *sch, struct tcw *tcw, u8 lpm, u8 key)
{
	int cc;
	union orb *orb = &to_io_private(sch)->orb;

	memset(orb, 0, sizeof(union orb));
	orb->tm.intparm = (u32) (addr_t) sch;
	orb->tm.key = key >> 4;
	orb->tm.b = 1;
	orb->tm.lpm = lpm ? lpm : sch->lpm;
	orb->tm.tcw = (u32) (addr_t) tcw;
	cc = ssch(sch->schid, orb);
	switch (cc) {
	case 0:
		return 0;
	case 1:
	case 2:
		return -EBUSY;
	default:
		return cio_start_handle_notoper(sch, lpm);
	}
}

/**
 * cio_tm_intrg - perform interrogate function
 * @sch - subchannel on which to perform the interrogate function
 *
 * If the specified subchannel is running in transport-mode, perform the
 * interrogate function. Return zero on success, non-zero otherwie.
 */
int cio_tm_intrg(struct subchannel *sch)
{
	int cc;

	if (!to_io_private(sch)->orb.tm.b)
		return -EINVAL;
	cc = xsch(sch->schid);
	switch (cc) {
	case 0:
	case 2:
		return 0;
	case 1:
		return -EBUSY;
	default:
		return -ENODEV;
	}
}