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

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

15
#include <linux/ftrace.h>
L
Linus Torvalds 已提交
16 17 18 19 20 21
#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>
22
#include <linux/irq.h>
L
Linus Torvalds 已提交
23 24 25
#include <asm/cio.h>
#include <asm/delay.h>
#include <asm/irq.h>
H
Heiko Carstens 已提交
26
#include <asm/irq_regs.h>
27
#include <asm/setup.h>
M
Michael Holzheu 已提交
28
#include <asm/ipl.h>
29
#include <asm/chpid.h>
30
#include <asm/airq.h>
31
#include <asm/isc.h>
32
#include <linux/sched/cputime.h>
33
#include <asm/fcx.h>
34 35
#include <asm/nmi.h>
#include <asm/crw.h>
L
Linus Torvalds 已提交
36 37 38 39
#include "cio.h"
#include "css.h"
#include "chsc.h"
#include "ioasm.h"
40
#include "io_sch.h"
L
Linus Torvalds 已提交
41 42
#include "blacklist.h"
#include "cio_debug.h"
43
#include "chp.h"
44
#include "trace.h"
L
Linus Torvalds 已提交
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;

50 51 52
DEFINE_PER_CPU_ALIGNED(struct irb, cio_irb);
EXPORT_PER_CPU_SYMBOL(cio_irb);

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

out_unregister:
80 81 82
	debug_unregister(cio_debug_msg_id);
	debug_unregister(cio_debug_trace_id);
	debug_unregister(cio_debug_crw_id);
L
Linus Torvalds 已提交
83 84 85 86 87
	return -1;
}

arch_initcall (cio_debug_init);

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

92 93 94 95
	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 已提交
96 97
}

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

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

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

	if (cio_update_schib(sch))
		return -ENODEV;

115
	sprintf(dbf_text, "no%s", dev_name(&sch->dev));
L
Linus Torvalds 已提交
116 117 118 119 120 121 122 123 124 125 126 127
	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 */
{
128 129
	struct io_subchannel_private *priv = to_io_private(sch);
	union orb *orb = &priv->orb;
L
Linus Torvalds 已提交
130 131
	int ccode;

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

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

140 141 142
	orb->cmd.pfch = priv->options.prefetch == 0;
	orb->cmd.spnd = priv->options.suspend;
	orb->cmd.ssic = priv->options.suspend && priv->options.inter;
143
	orb->cmd.lpm = (lpm != 0) ? lpm : sch->lpm;
L
Linus Torvalds 已提交
144 145 146
	/*
	 * for 64 bit we always support 64 bit IDAWs with 4k page size only
	 */
147 148 149
	orb->cmd.c64 = 1;
	orb->cmd.i2k = 0;
	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
	}
}
D
Dong Jia Shi 已提交
173
EXPORT_SYMBOL_GPL(cio_start_key);
L
Linus Torvalds 已提交
174 175 176 177

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

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

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

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

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

	switch (ccode) {
	case 0:
199
		sch->schib.scsw.cmd.actl |= SCSW_ACTL_RESUME_PEND;
L
Linus Torvalds 已提交
200 201 202 203 204 205 206 207 208 209 210 211 212
		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;
	}
}
D
Dong Jia Shi 已提交
213
EXPORT_SYMBOL_GPL(cio_resume);
L
Linus Torvalds 已提交
214 215 216 217 218 219 220 221 222 223 224 225

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

	if (!sch)
		return -ENODEV;

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

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

S
Sebastian Ott 已提交
234
	CIO_HEX_EVENT(2, &ccode, sizeof(ccode));
L
Linus Torvalds 已提交
235 236 237

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

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

	if (!sch)
		return -ENODEV;

S
Sebastian Ott 已提交
260
	CIO_TRACE_EVENT(2, "clearIO");
261
	CIO_TRACE_EVENT(2, dev_name(&sch->dev));
L
Linus Torvalds 已提交
262 263 264 265

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

S
Sebastian Ott 已提交
268
	CIO_HEX_EVENT(2, &ccode, sizeof(ccode));
L
Linus Torvalds 已提交
269 270 271

	switch (ccode) {
	case 0:
272
		sch->schib.scsw.cmd.actl |= SCSW_ACTL_CLEAR_PEND;
L
Linus Torvalds 已提交
273 274 275 276 277
		return 0;
	default:		/* device not operational */
		return -ENODEV;
	}
}
D
Dong Jia Shi 已提交
278
EXPORT_SYMBOL_GPL(cio_clear);
L
Linus Torvalds 已提交
279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294

/*
 * 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 已提交
295
	CIO_TRACE_EVENT(2, "cancelIO");
296
	CIO_TRACE_EVENT(2, dev_name(&sch->dev));
L
Linus Torvalds 已提交
297

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

S
Sebastian Ott 已提交
300
	CIO_HEX_EVENT(2, &ccode, sizeof(ccode));
L
Linus Torvalds 已提交
301 302 303 304

	switch (ccode) {
	case 0:		/* success */
		/* Update information in scsw. */
305 306
		if (cio_update_schib(sch))
			return -ENODEV;
L
Linus Torvalds 已提交
307 308 309 310 311 312 313 314 315
		return 0;
	case 1:		/* status pending */
		return -EBUSY;
	case 2:		/* not applicable */
		return -EINVAL;
	default:	/* not oper */
		return -ENODEV;
	}
}
D
Dong Jia Shi 已提交
316
EXPORT_SYMBOL_GPL(cio_cancel);
L
Linus Torvalds 已提交
317

318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376
/**
 * cio_cancel_halt_clear - Cancel running I/O by performing cancel, halt
 * and clear ordinally if subchannel is valid.
 * @sch: subchannel on which to perform the cancel_halt_clear operation
 * @iretry: the number of the times remained to retry the next operation
 *
 * This should be called repeatedly since halt/clear are asynchronous
 * operations. We do one try with cio_cancel, three tries with cio_halt,
 * 255 tries with cio_clear. The caller should initialize @iretry with
 * the value 255 for its first call to this, and keep using the same
 * @iretry in the subsequent calls until it gets a non -EBUSY return.
 *
 * Returns 0 if device now idle, -ENODEV for device not operational,
 * -EBUSY if an interrupt is expected (either from halt/clear or from a
 * status pending), and -EIO if out of retries.
 */
int cio_cancel_halt_clear(struct subchannel *sch, int *iretry)
{
	int ret;

	if (cio_update_schib(sch))
		return -ENODEV;
	if (!sch->schib.pmcw.ena)
		/* Not operational -> done. */
		return 0;
	/* Stage 1: cancel io. */
	if (!(scsw_actl(&sch->schib.scsw) & SCSW_ACTL_HALT_PEND) &&
	    !(scsw_actl(&sch->schib.scsw) & SCSW_ACTL_CLEAR_PEND)) {
		if (!scsw_is_tm(&sch->schib.scsw)) {
			ret = cio_cancel(sch);
			if (ret != -EINVAL)
				return ret;
		}
		/*
		 * Cancel io unsuccessful or not applicable (transport mode).
		 * Continue with asynchronous instructions.
		 */
		*iretry = 3;	/* 3 halt retries. */
	}
	/* Stage 2: halt io. */
	if (!(scsw_actl(&sch->schib.scsw) & SCSW_ACTL_CLEAR_PEND)) {
		if (*iretry) {
			*iretry -= 1;
			ret = cio_halt(sch);
			if (ret != -EBUSY)
				return (ret == 0) ? -EBUSY : ret;
		}
		/* Halt io unsuccessful. */
		*iretry = 255;	/* 255 clear retries. */
	}
	/* Stage 3: clear io. */
	if (*iretry) {
		*iretry -= 1;
		ret = cio_clear(sch);
		return (ret == 0) ? -EBUSY : ret;
	}
	/* Function was unsuccessful */
	return -EIO;
}
D
Dong Jia Shi 已提交
377
EXPORT_SYMBOL_GPL(cio_cancel_halt_clear);
378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405

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 已提交
406
/*
407
 * cio_commit_config - apply configuration to the subchannel
L
Linus Torvalds 已提交
408
 */
409
int cio_commit_config(struct subchannel *sch)
L
Linus Torvalds 已提交
410
{
411
	int ccode, retry, ret = 0;
412 413
	struct schib schib;
	struct irb irb;
414

415
	if (stsch(sch->schid, &schib) || !css_sch_is_valid(&schib))
416
		return -ENODEV;
L
Linus Torvalds 已提交
417 418

	for (retry = 0; retry < 5; retry++) {
419 420
		/* copy desired changes to local schib */
		cio_apply_config(sch, &schib);
421
		ccode = msch(sch->schid, &schib);
422
		if (ccode < 0) /* -EIO if msch gets a program check. */
L
Linus Torvalds 已提交
423 424
			return ccode;
		switch (ccode) {
C
Coly Li 已提交
425
		case 0: /* successful */
426
			if (stsch(sch->schid, &schib) ||
427 428 429 430 431 432 433 434 435 436
			    !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 */
437 438 439 440
			ret = -EBUSY;
			if (tsch(sch->schid, &irb))
				return ret;
			break;
441 442
		case 2: /* busy */
			udelay(100); /* allow for recovery */
L
Linus Torvalds 已提交
443 444
			ret = -EBUSY;
			break;
445
		case 3: /* not operational */
L
Linus Torvalds 已提交
446 447 448 449 450
			return -ENODEV;
		}
	}
	return ret;
}
D
Dong Jia Shi 已提交
451
EXPORT_SYMBOL_GPL(cio_commit_config);
L
Linus Torvalds 已提交
452

453 454 455 456 457 458 459 460 461
/**
 * 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;

462
	if (stsch(sch->schid, &schib) || !css_sch_is_valid(&schib))
463 464 465 466 467 468 469
		return -ENODEV;

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

470 471 472 473
/**
 * cio_enable_subchannel - enable a subchannel.
 * @sch: subchannel to be enabled
 * @intparm: interruption parameter to set
L
Linus Torvalds 已提交
474
 */
475
int cio_enable_subchannel(struct subchannel *sch, u32 intparm)
L
Linus Torvalds 已提交
476 477 478
{
	int ret;

S
Sebastian Ott 已提交
479
	CIO_TRACE_EVENT(2, "ensch");
480
	CIO_TRACE_EVENT(2, dev_name(&sch->dev));
L
Linus Torvalds 已提交
481

482 483
	if (sch_is_pseudo_sch(sch))
		return -EINVAL;
484
	if (cio_update_schib(sch))
L
Linus Torvalds 已提交
485 486
		return -ENODEV;

487 488 489 490
	sch->config.ena = 1;
	sch->config.isc = sch->isc;
	sch->config.intparm = intparm;

491 492 493 494 495 496 497
	ret = cio_commit_config(sch);
	if (ret == -EIO) {
		/*
		 * Got a program check in msch. Try without
		 * the concurrent sense bit the next time.
		 */
		sch->config.csense = 0;
498
		ret = cio_commit_config(sch);
L
Linus Torvalds 已提交
499
	}
S
Sebastian Ott 已提交
500
	CIO_HEX_EVENT(2, &ret, sizeof(ret));
L
Linus Torvalds 已提交
501 502
	return ret;
}
503
EXPORT_SYMBOL_GPL(cio_enable_subchannel);
L
Linus Torvalds 已提交
504

505 506 507
/**
 * cio_disable_subchannel - disable a subchannel.
 * @sch: subchannel to disable
L
Linus Torvalds 已提交
508
 */
509
int cio_disable_subchannel(struct subchannel *sch)
L
Linus Torvalds 已提交
510 511 512
{
	int ret;

S
Sebastian Ott 已提交
513
	CIO_TRACE_EVENT(2, "dissch");
514
	CIO_TRACE_EVENT(2, dev_name(&sch->dev));
L
Linus Torvalds 已提交
515

516 517
	if (sch_is_pseudo_sch(sch))
		return 0;
518
	if (cio_update_schib(sch))
L
Linus Torvalds 已提交
519 520
		return -ENODEV;

521
	sch->config.ena = 0;
522
	ret = cio_commit_config(sch);
523

S
Sebastian Ott 已提交
524
	CIO_HEX_EVENT(2, &ret, sizeof(ret));
L
Linus Torvalds 已提交
525 526
	return ret;
}
527
EXPORT_SYMBOL_GPL(cio_disable_subchannel);
L
Linus Torvalds 已提交
528 529

/*
530
 * do_cio_interrupt() handles all normal I/O device IRQ's
L
Linus Torvalds 已提交
531
 */
532
static irqreturn_t do_cio_interrupt(int irq, void *dummy)
L
Linus Torvalds 已提交
533
{
534
	struct tpi_info *tpi_info;
L
Linus Torvalds 已提交
535 536 537
	struct subchannel *sch;
	struct irb *irb;

538
	set_cpu_flag(CIF_NOHZ_DELAY);
539
	tpi_info = (struct tpi_info *) &get_irq_regs()->int_code;
540
	trace_s390_cio_interrupt(tpi_info);
541
	irb = this_cpu_ptr(&cio_irb);
542 543 544 545 546
	sch = (struct subchannel *)(unsigned long) tpi_info->intparm;
	if (!sch) {
		/* Clear pending interrupt condition. */
		inc_irq_stat(IRQIO_CIO);
		tsch(tpi_info->schid, irb);
547
		return IRQ_HANDLED;
548 549 550 551 552 553 554 555 556 557
	}
	spin_lock(sch->lock);
	/* Store interrupt response block to lowcore. */
	if (tsch(tpi_info->schid, irb) == 0) {
		/* 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)
			sch->driver->irq(sch);
		else
558
			inc_irq_stat(IRQIO_CIO);
559 560 561
	} else
		inc_irq_stat(IRQIO_CIO);
	spin_unlock(sch->lock);
562 563 564 565 566

	return IRQ_HANDLED;
}

static struct irqaction io_interrupt = {
567
	.name	 = "I/O",
568 569 570 571 572 573 574 575
	.handler = do_cio_interrupt,
};

void __init init_cio_interrupts(void)
{
	irq_set_chip_and_handler(IO_INTERRUPT,
				 &dummy_irq_chip, handle_percpu_irq);
	setup_irq(IO_INTERRUPT, &io_interrupt);
L
Linus Torvalds 已提交
576 577 578
}

#ifdef CONFIG_CCW_CONSOLE
579
static struct subchannel *console_sch;
580
static struct lock_class_key console_sch_key;
L
Linus Torvalds 已提交
581

582
/*
583
 * Use cio_tsch to update the subchannel status and call the interrupt handler
584
 * if status had been pending. Called with the subchannel's lock held.
585
 */
586
void cio_tsch(struct subchannel *sch)
587 588 589 590
{
	struct irb *irb;
	int irq_context;

591
	irb = this_cpu_ptr(&cio_irb);
592
	/* Store interrupt response block to lowcore. */
593
	if (tsch(sch->schid, irb) != 0)
594
		/* Not status pending or not operational. */
595 596 597
		return;
	memcpy(&sch->schib.scsw, &irb->scsw, sizeof(union scsw));
	/* Call interrupt handler with updated status. */
598
	irq_context = in_interrupt();
599
	if (!irq_context) {
600
		local_bh_disable();
601 602
		irq_enter();
	}
603
	kstat_incr_irq_this_cpu(IO_INTERRUPT);
604 605
	if (sch->driver && sch->driver->irq)
		sch->driver->irq(sch);
606
	else
607
		inc_irq_stat(IRQIO_CIO);
608 609
	if (!irq_context) {
		irq_exit();
610
		_local_bh_enable();
611
	}
612 613
}

614
static int cio_test_for_console(struct subchannel_id schid, void *data)
615
{
616
	struct schib schib;
617

618
	if (stsch(schid, &schib) != 0)
619
		return -ENXIO;
620 621
	if ((schib.pmcw.st == SUBCHANNEL_TYPE_IO) && schib.pmcw.dnv &&
	    (schib.pmcw.dev == console_devno)) {
622 623 624 625 626 627
		console_irq = schid.sch_no;
		return 1; /* found */
	}
	return 0;
}

628
static int cio_get_console_sch_no(void)
L
Linus Torvalds 已提交
629
{
630
	struct subchannel_id schid;
631 632
	struct schib schib;

633
	init_subchannel_id(&schid);
L
Linus Torvalds 已提交
634 635
	if (console_irq != -1) {
		/* VM provided us with the irq number of the console. */
636
		schid.sch_no = console_irq;
637
		if (stsch(schid, &schib) != 0 ||
638
		    (schib.pmcw.st != SUBCHANNEL_TYPE_IO) || !schib.pmcw.dnv)
L
Linus Torvalds 已提交
639
			return -1;
640
		console_devno = schib.pmcw.dev;
L
Linus Torvalds 已提交
641 642
	} else if (console_devno != -1) {
		/* At least the console device number is known. */
643
		for_each_subchannel(cio_test_for_console, NULL);
L
Linus Torvalds 已提交
644 645 646 647
	}
	return console_irq;
}

648
struct subchannel *cio_probe_console(void)
L
Linus Torvalds 已提交
649
{
650
	struct subchannel_id schid;
651
	struct subchannel *sch;
S
Sebastian Ott 已提交
652
	struct schib schib;
653
	int sch_no, ret;
L
Linus Torvalds 已提交
654

655 656
	sch_no = cio_get_console_sch_no();
	if (sch_no == -1) {
657
		pr_warn("No CCW console was found\n");
L
Linus Torvalds 已提交
658 659
		return ERR_PTR(-ENODEV);
	}
660
	init_subchannel_id(&schid);
661
	schid.sch_no = sch_no;
S
Sebastian Ott 已提交
662 663 664 665 666
	ret = stsch(schid, &schib);
	if (ret)
		return ERR_PTR(-ENODEV);

	sch = css_alloc_subchannel(schid, &schib);
667 668
	if (IS_ERR(sch))
		return sch;
L
Linus Torvalds 已提交
669

670
	lockdep_set_class(sch->lock, &console_sch_key);
671
	isc_register(CONSOLE_ISC);
672 673 674
	sch->config.isc = CONSOLE_ISC;
	sch->config.intparm = (u32)(addr_t)sch;
	ret = cio_commit_config(sch);
L
Linus Torvalds 已提交
675
	if (ret) {
676
		isc_unregister(CONSOLE_ISC);
677
		put_device(&sch->dev);
L
Linus Torvalds 已提交
678 679
		return ERR_PTR(ret);
	}
680 681
	console_sch = sch;
	return sch;
L
Linus Torvalds 已提交
682 683
}

684
int cio_is_console(struct subchannel_id schid)
L
Linus Torvalds 已提交
685
{
686
	if (!console_sch)
L
Linus Torvalds 已提交
687
		return 0;
688
	return schid_equal(&schid, &console_sch->schid);
L
Linus Torvalds 已提交
689 690
}

691
void cio_register_early_subchannels(void)
L
Linus Torvalds 已提交
692
{
693 694 695 696 697 698 699 700
	int ret;

	if (!console_sch)
		return;

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

704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735
/**
 * 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);
	}
}
D
Dong Jia Shi 已提交
736
EXPORT_SYMBOL_GPL(cio_tm_start_key);
737 738 739

/**
 * cio_tm_intrg - perform interrogate function
S
Sebastian Ott 已提交
740
 * @sch: subchannel on which to perform the interrogate function
741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761
 *
 * 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;
	}
}
D
Dong Jia Shi 已提交
762
EXPORT_SYMBOL_GPL(cio_tm_intrg);