ip32-irq.c 12.6 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
/*
 * Code to handle IP32 IRQs
 *
 * This file is subject to the terms and conditions of the GNU General Public
 * License.  See the file "COPYING" in the main directory of this archive
 * for more details.
 *
 * Copyright (C) 2000 Harald Koerfgen
 * Copyright (C) 2001 Keith M Wesolowski
 */
#include <linux/init.h>
#include <linux/kernel_stat.h>
#include <linux/types.h>
#include <linux/interrupt.h>
#include <linux/irq.h>
#include <linux/bitops.h>
#include <linux/kernel.h>
#include <linux/mm.h>
#include <linux/random.h>
#include <linux/sched.h>

22
#include <asm/irq_cpu.h>
L
Linus Torvalds 已提交
23 24 25 26 27 28 29 30 31 32
#include <asm/mipsregs.h>
#include <asm/signal.h>
#include <asm/time.h>
#include <asm/ip32/crime.h>
#include <asm/ip32/mace.h>
#include <asm/ip32/ip32_ints.h>

/* issue a PIO read to make sure no PIO writes are pending */
static void inline flush_crime_bus(void)
{
R
Ralf Baechle 已提交
33
	crime->control;
L
Linus Torvalds 已提交
34 35 36 37
}

static void inline flush_mace_bus(void)
{
R
Ralf Baechle 已提交
38
	mace->perif.ctrl.misc;
L
Linus Torvalds 已提交
39 40
}

41 42
/*
 * O2 irq map
L
Linus Torvalds 已提交
43 44 45 46 47 48 49 50
 *
 * IP0 -> software (ignored)
 * IP1 -> software (ignored)
 * IP2 -> (irq0) C crime 1.1 all interrupts; crime 1.5 ???
 * IP3 -> (irq1) X unknown
 * IP4 -> (irq2) X unknown
 * IP5 -> (irq3) X unknown
 * IP6 -> (irq4) X unknown
51
 * IP7 -> (irq5) 7 CPU count/compare timer (system timer)
L
Linus Torvalds 已提交
52 53 54 55 56
 *
 * crime: (C)
 *
 * CRIME_INT_STAT 31:0:
 *
57 58 59 60
 * 0  ->  8  Video in 1
 * 1  ->  9 Video in 2
 * 2  -> 10  Video out
 * 3  -> 11  Mace ethernet
L
Linus Torvalds 已提交
61 62 63
 * 4  -> S  SuperIO sub-interrupt
 * 5  -> M  Miscellaneous sub-interrupt
 * 6  -> A  Audio sub-interrupt
64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88
 * 7  -> 15  PCI bridge errors
 * 8  -> 16  PCI SCSI aic7xxx 0
 * 9  -> 17 PCI SCSI aic7xxx 1
 * 10 -> 18 PCI slot 0
 * 11 -> 19 unused (PCI slot 1)
 * 12 -> 20 unused (PCI slot 2)
 * 13 -> 21 unused (PCI shared 0)
 * 14 -> 22 unused (PCI shared 1)
 * 15 -> 23 unused (PCI shared 2)
 * 16 -> 24 GBE0 (E)
 * 17 -> 25 GBE1 (E)
 * 18 -> 26 GBE2 (E)
 * 19 -> 27 GBE3 (E)
 * 20 -> 28 CPU errors
 * 21 -> 29 Memory errors
 * 22 -> 30 RE empty edge (E)
 * 23 -> 31 RE full edge (E)
 * 24 -> 32 RE idle edge (E)
 * 25 -> 33 RE empty level
 * 26 -> 34 RE full level
 * 27 -> 35 RE idle level
 * 28 -> 36 unused (software 0) (E)
 * 29 -> 37 unused (software 1) (E)
 * 30 -> 38 unused (software 2) - crime 1.5 CPU SysCorError (E)
 * 31 -> 39 VICE
L
Linus Torvalds 已提交
89 90 91 92
 *
 * S, M, A: Use the MACE ISA interrupt register
 * MACE_ISA_INT_STAT 31:0
 *
93 94 95
 * 0-7 -> 40-47 Audio
 * 8 -> 48 RTC
 * 9 -> 49 Keyboard
L
Linus Torvalds 已提交
96
 * 10 -> X Keyboard polled
97
 * 11 -> 51 Mouse
L
Linus Torvalds 已提交
98
 * 12 -> X Mouse polled
99 100 101 102
 * 13-15 -> 53-55 Count/compare timers
 * 16-19 -> 56-59 Parallel (16 E)
 * 20-25 -> 60-62 Serial 1 (22 E)
 * 26-31 -> 66-71 Serial 2 (28 E)
L
Linus Torvalds 已提交
103
 *
104
 * Note that this means IRQs 12-14, 50, and 52 do not exist.  This is a
L
Linus Torvalds 已提交
105 106 107 108 109
 * different IRQ map than IRIX uses, but that's OK as Linux irq handling
 * is quite different anyway.
 */

/* Some initial interrupts to set up */
110 111
extern irqreturn_t crime_memerr_intr(int irq, void *dev_id);
extern irqreturn_t crime_cpuerr_intr(int irq, void *dev_id);
L
Linus Torvalds 已提交
112

113
static struct irqaction memerr_irq = {
114 115 116
	.handler = crime_memerr_intr,
	.name = "CRIME memory error",
};
117

118
static struct irqaction cpuerr_irq = {
119 120 121
	.handler = crime_cpuerr_intr,
	.name = "CRIME CPU error",
};
L
Linus Torvalds 已提交
122 123 124 125 126 127 128 129

/*
 * This is for pure CRIME interrupts - ie not MACE.  The advantage?
 * We get to split the register in half and do faster lookups.
 */

static uint64_t crime_mask;

130
static inline void crime_enable_irq(struct irq_data *d)
L
Linus Torvalds 已提交
131
{
132
	unsigned int bit = d->irq - CRIME_IRQ_BASE;
133 134

	crime_mask |= 1 << bit;
L
Linus Torvalds 已提交
135 136 137
	crime->imask = crime_mask;
}

138
static inline void crime_disable_irq(struct irq_data *d)
L
Linus Torvalds 已提交
139
{
140
	unsigned int bit = d->irq - CRIME_IRQ_BASE;
141 142

	crime_mask &= ~(1 << bit);
L
Linus Torvalds 已提交
143 144 145 146
	crime->imask = crime_mask;
	flush_crime_bus();
}

147 148
static struct irq_chip crime_level_interrupt = {
	.name		= "IP32 CRIME",
149 150
	.irq_mask	= crime_disable_irq,
	.irq_unmask	= crime_enable_irq,
151 152
};

153
static void crime_edge_mask_and_ack_irq(struct irq_data *d)
L
Linus Torvalds 已提交
154
{
155
	unsigned int bit = d->irq - CRIME_IRQ_BASE;
156 157
	uint64_t crime_int;

L
Linus Torvalds 已提交
158
	/* Edge triggered interrupts must be cleared. */
159 160 161 162
	crime_int = crime->hard_int;
	crime_int &= ~(1 << bit);
	crime->hard_int = crime_int;

163
	crime_disable_irq(d);
L
Linus Torvalds 已提交
164 165
}

166 167
static struct irq_chip crime_edge_interrupt = {
	.name		= "IP32 CRIME",
168 169 170 171
	.irq_ack	= crime_edge_mask_and_ack_irq,
	.irq_mask	= crime_disable_irq,
	.irq_mask_ack	= crime_edge_mask_and_ack_irq,
	.irq_unmask	= crime_enable_irq,
L
Linus Torvalds 已提交
172 173 174 175 176 177 178 179 180 181
};

/*
 * This is for MACE PCI interrupts.  We can decrease bus traffic by masking
 * as close to the source as possible.  This also means we can take the
 * next chunk of the CRIME register in one piece.
 */

static unsigned long macepci_mask;

182
static void enable_macepci_irq(struct irq_data *d)
L
Linus Torvalds 已提交
183
{
184
	macepci_mask |= MACEPCI_CONTROL_INT(d->irq - MACEPCI_SCSI0_IRQ);
L
Linus Torvalds 已提交
185
	mace->pci.control = macepci_mask;
186
	crime_mask |= 1 << (d->irq - CRIME_IRQ_BASE);
L
Linus Torvalds 已提交
187 188 189
	crime->imask = crime_mask;
}

190
static void disable_macepci_irq(struct irq_data *d)
L
Linus Torvalds 已提交
191
{
192
	crime_mask &= ~(1 << (d->irq - CRIME_IRQ_BASE));
L
Linus Torvalds 已提交
193 194
	crime->imask = crime_mask;
	flush_crime_bus();
195
	macepci_mask &= ~MACEPCI_CONTROL_INT(d->irq - MACEPCI_SCSI0_IRQ);
L
Linus Torvalds 已提交
196 197 198 199
	mace->pci.control = macepci_mask;
	flush_mace_bus();
}

200
static struct irq_chip ip32_macepci_interrupt = {
201
	.name = "IP32 MACE PCI",
202 203
	.irq_mask = disable_macepci_irq,
	.irq_unmask = enable_macepci_irq,
L
Linus Torvalds 已提交
204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222
};

/* This is used for MACE ISA interrupts.  That means bits 4-6 in the
 * CRIME register.
 */

#define MACEISA_AUDIO_INT	(MACEISA_AUDIO_SW_INT |		\
				 MACEISA_AUDIO_SC_INT |		\
				 MACEISA_AUDIO1_DMAT_INT |	\
				 MACEISA_AUDIO1_OF_INT |	\
				 MACEISA_AUDIO2_DMAT_INT |	\
				 MACEISA_AUDIO2_MERR_INT |	\
				 MACEISA_AUDIO3_DMAT_INT |	\
				 MACEISA_AUDIO3_MERR_INT)
#define MACEISA_MISC_INT	(MACEISA_RTC_INT |		\
				 MACEISA_KEYB_INT |		\
				 MACEISA_KEYB_POLL_INT |	\
				 MACEISA_MOUSE_INT |		\
				 MACEISA_MOUSE_POLL_INT |	\
223 224 225
				 MACEISA_TIMER0_INT |		\
				 MACEISA_TIMER1_INT |		\
				 MACEISA_TIMER2_INT)
L
Linus Torvalds 已提交
226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244
#define MACEISA_SUPERIO_INT	(MACEISA_PARALLEL_INT |		\
				 MACEISA_PAR_CTXA_INT |		\
				 MACEISA_PAR_CTXB_INT |		\
				 MACEISA_PAR_MERR_INT |		\
				 MACEISA_SERIAL1_INT |		\
				 MACEISA_SERIAL1_TDMAT_INT |	\
				 MACEISA_SERIAL1_TDMAPR_INT |	\
				 MACEISA_SERIAL1_TDMAME_INT |	\
				 MACEISA_SERIAL1_RDMAT_INT |	\
				 MACEISA_SERIAL1_RDMAOR_INT |	\
				 MACEISA_SERIAL2_INT |		\
				 MACEISA_SERIAL2_TDMAT_INT |	\
				 MACEISA_SERIAL2_TDMAPR_INT |	\
				 MACEISA_SERIAL2_TDMAME_INT |	\
				 MACEISA_SERIAL2_RDMAT_INT |	\
				 MACEISA_SERIAL2_RDMAOR_INT)

static unsigned long maceisa_mask;

245
static void enable_maceisa_irq(struct irq_data *d)
L
Linus Torvalds 已提交
246 247 248
{
	unsigned int crime_int = 0;

249
	pr_debug("maceisa enable: %u\n", d->irq);
L
Linus Torvalds 已提交
250

251
	switch (d->irq) {
L
Linus Torvalds 已提交
252 253 254
	case MACEISA_AUDIO_SW_IRQ ... MACEISA_AUDIO3_MERR_IRQ:
		crime_int = MACE_AUDIO_INT;
		break;
255
	case MACEISA_RTC_IRQ ... MACEISA_TIMER2_IRQ:
L
Linus Torvalds 已提交
256 257 258 259 260 261
		crime_int = MACE_MISC_INT;
		break;
	case MACEISA_PARALLEL_IRQ ... MACEISA_SERIAL2_RDMAOR_IRQ:
		crime_int = MACE_SUPERIO_INT;
		break;
	}
262
	pr_debug("crime_int %08x enabled\n", crime_int);
L
Linus Torvalds 已提交
263 264
	crime_mask |= crime_int;
	crime->imask = crime_mask;
265
	maceisa_mask |= 1 << (d->irq - MACEISA_AUDIO_SW_IRQ);
L
Linus Torvalds 已提交
266 267 268
	mace->perif.ctrl.imask = maceisa_mask;
}

269
static void disable_maceisa_irq(struct irq_data *d)
L
Linus Torvalds 已提交
270 271 272
{
	unsigned int crime_int = 0;

273
	maceisa_mask &= ~(1 << (d->irq - MACEISA_AUDIO_SW_IRQ));
274
        if (!(maceisa_mask & MACEISA_AUDIO_INT))
L
Linus Torvalds 已提交
275
		crime_int |= MACE_AUDIO_INT;
276
        if (!(maceisa_mask & MACEISA_MISC_INT))
L
Linus Torvalds 已提交
277
		crime_int |= MACE_MISC_INT;
278
        if (!(maceisa_mask & MACEISA_SUPERIO_INT))
L
Linus Torvalds 已提交
279 280 281 282 283 284 285 286
		crime_int |= MACE_SUPERIO_INT;
	crime_mask &= ~crime_int;
	crime->imask = crime_mask;
	flush_crime_bus();
	mace->perif.ctrl.imask = maceisa_mask;
	flush_mace_bus();
}

287
static void mask_and_ack_maceisa_irq(struct irq_data *d)
L
Linus Torvalds 已提交
288
{
A
Atsushi Nemoto 已提交
289
	unsigned long mace_int;
L
Linus Torvalds 已提交
290

291 292
	/* edge triggered */
	mace_int = mace->perif.ctrl.istat;
293
	mace_int &= ~(1 << (d->irq - MACEISA_AUDIO_SW_IRQ));
294 295
	mace->perif.ctrl.istat = mace_int;

296
	disable_maceisa_irq(d);
L
Linus Torvalds 已提交
297 298
}

299 300
static struct irq_chip ip32_maceisa_level_interrupt = {
	.name		= "IP32 MACE ISA",
301 302
	.irq_mask	= disable_maceisa_irq,
	.irq_unmask	= enable_maceisa_irq,
303 304 305
};

static struct irq_chip ip32_maceisa_edge_interrupt = {
306
	.name		= "IP32 MACE ISA",
307 308 309 310
	.irq_ack	= mask_and_ack_maceisa_irq,
	.irq_mask	= disable_maceisa_irq,
	.irq_mask_ack	= mask_and_ack_maceisa_irq,
	.irq_unmask	= enable_maceisa_irq,
L
Linus Torvalds 已提交
311 312 313 314 315 316
};

/* This is used for regular non-ISA, non-PCI MACE interrupts.  That means
 * bits 0-3 and 7 in the CRIME register.
 */

317
static void enable_mace_irq(struct irq_data *d)
L
Linus Torvalds 已提交
318
{
319
	unsigned int bit = d->irq - CRIME_IRQ_BASE;
320 321

	crime_mask |= (1 << bit);
L
Linus Torvalds 已提交
322 323 324
	crime->imask = crime_mask;
}

325
static void disable_mace_irq(struct irq_data *d)
L
Linus Torvalds 已提交
326
{
327
	unsigned int bit = d->irq - CRIME_IRQ_BASE;
328 329

	crime_mask &= ~(1 << bit);
L
Linus Torvalds 已提交
330 331 332 333
	crime->imask = crime_mask;
	flush_crime_bus();
}

334
static struct irq_chip ip32_mace_interrupt = {
335
	.name = "IP32 MACE",
336 337
	.irq_mask = disable_mace_irq,
	.irq_unmask = enable_mace_irq,
L
Linus Torvalds 已提交
338 339
};

340
static void ip32_unknown_interrupt(void)
L
Linus Torvalds 已提交
341
{
342 343 344 345 346 347 348 349 350
	printk("Unknown interrupt occurred!\n");
	printk("cp0_status: %08x\n", read_c0_status());
	printk("cp0_cause: %08x\n", read_c0_cause());
	printk("CRIME intr mask: %016lx\n", crime->imask);
	printk("CRIME intr status: %016lx\n", crime->istat);
	printk("CRIME hardware intr register: %016lx\n", crime->hard_int);
	printk("MACE ISA intr mask: %08lx\n", mace->perif.ctrl.imask);
	printk("MACE ISA intr status: %08lx\n", mace->perif.ctrl.istat);
	printk("MACE PCI control register: %08x\n", mace->pci.control);
L
Linus Torvalds 已提交
351 352

	printk("Register dump:\n");
353
	show_regs(get_irq_regs());
L
Linus Torvalds 已提交
354 355 356 357 358 359 360 361

	printk("Please mail this report to linux-mips@linux-mips.org\n");
	printk("Spinning...");
	while(1) ;
}

/* CRIME 1.1 appears to deliver all interrupts to this one pin. */
/* change this to loop over all edge-triggered irqs, exception masked out ones */
362
static void ip32_irq0(void)
L
Linus Torvalds 已提交
363 364 365 366
{
	uint64_t crime_int;
	int irq = 0;

367 368 369 370 371 372 373 374
	/*
	 * Sanity check interrupt numbering enum.
	 * MACE got 32 interrupts and there are 32 MACE ISA interrupts daisy
	 * chained.
	 */
	BUILD_BUG_ON(CRIME_VICE_IRQ - MACE_VID_IN1_IRQ != 31);
	BUILD_BUG_ON(MACEISA_SERIAL2_RDMAOR_IRQ - MACEISA_AUDIO_SW_IRQ != 31);

L
Linus Torvalds 已提交
375
	crime_int = crime->istat & crime_mask;
376 377 378 379 380

	/* crime sometime delivers spurious interrupts, ignore them */
	if (unlikely(crime_int == 0))
		return;

381
	irq = MACE_VID_IN1_IRQ + __ffs(crime_int);
L
Linus Torvalds 已提交
382 383 384

	if (crime_int & CRIME_MACEISA_INT_MASK) {
		unsigned long mace_int = mace->perif.ctrl.istat;
385
		irq = __ffs(mace_int & maceisa_mask) + MACEISA_AUDIO_SW_IRQ;
L
Linus Torvalds 已提交
386
	}
387

388
	pr_debug("*irq %u*\n", irq);
389
	do_IRQ(irq);
L
Linus Torvalds 已提交
390 391
}

392
static void ip32_irq1(void)
L
Linus Torvalds 已提交
393
{
394
	ip32_unknown_interrupt();
L
Linus Torvalds 已提交
395 396
}

397
static void ip32_irq2(void)
L
Linus Torvalds 已提交
398
{
399
	ip32_unknown_interrupt();
L
Linus Torvalds 已提交
400 401
}

402
static void ip32_irq3(void)
L
Linus Torvalds 已提交
403
{
404
	ip32_unknown_interrupt();
L
Linus Torvalds 已提交
405 406
}

407
static void ip32_irq4(void)
L
Linus Torvalds 已提交
408
{
409
	ip32_unknown_interrupt();
L
Linus Torvalds 已提交
410 411
}

412
static void ip32_irq5(void)
L
Linus Torvalds 已提交
413
{
414
	do_IRQ(MIPS_CPU_IRQ_BASE + 7);
L
Linus Torvalds 已提交
415 416
}

417
asmlinkage void plat_irq_dispatch(void)
418
{
419
	unsigned int pending = read_c0_status() & read_c0_cause();
420 421

	if (likely(pending & IE_IRQ0))
422
		ip32_irq0();
423
	else if (unlikely(pending & IE_IRQ1))
424
		ip32_irq1();
425
	else if (unlikely(pending & IE_IRQ2))
426
		ip32_irq2();
427
	else if (unlikely(pending & IE_IRQ3))
428
		ip32_irq3();
429
	else if (unlikely(pending & IE_IRQ4))
430
		ip32_irq4();
431
	else if (likely(pending & IE_IRQ5))
432
		ip32_irq5();
433 434
}

L
Linus Torvalds 已提交
435 436 437 438 439 440 441 442 443 444 445 446
void __init arch_init_irq(void)
{
	unsigned int irq;

	/* Install our interrupt handler, then clear and disable all
	 * CRIME and MACE interrupts. */
	crime->imask = 0;
	crime->hard_int = 0;
	crime->soft_int = 0;
	mace->perif.ctrl.istat = 0;
	mace->perif.ctrl.imask = 0;

447
	mips_cpu_irq_init();
448
	for (irq = CRIME_IRQ_BASE; irq <= IP32_IRQ_MAX; irq++) {
449 450
		switch (irq) {
		case MACE_VID_IN1_IRQ ... MACE_PCI_BRIDGE_IRQ:
451 452 453 454
			irq_set_chip_and_handler_name(irq,
						      &ip32_mace_interrupt,
						      handle_level_irq,
						      "level");
455
			break;
456

457
		case MACEPCI_SCSI0_IRQ ...  MACEPCI_SHARED2_IRQ:
458 459 460 461
			irq_set_chip_and_handler_name(irq,
						      &ip32_macepci_interrupt,
						      handle_level_irq,
						      "level");
462
			break;
463

464 465
		case CRIME_CPUERR_IRQ:
		case CRIME_MEMERR_IRQ:
466 467 468 469
			irq_set_chip_and_handler_name(irq,
						      &crime_level_interrupt,
						      handle_level_irq,
						      "level");
470
			break;
471

472
		case CRIME_GBE0_IRQ ... CRIME_GBE3_IRQ:
473 474 475
		case CRIME_RE_EMPTY_E_IRQ ... CRIME_RE_IDLE_E_IRQ:
		case CRIME_SOFT0_IRQ ... CRIME_SOFT2_IRQ:
		case CRIME_VICE_IRQ:
476 477 478 479
			irq_set_chip_and_handler_name(irq,
						      &crime_edge_interrupt,
						      handle_edge_irq,
						      "edge");
480 481 482 483 484
			break;

		case MACEISA_PARALLEL_IRQ:
		case MACEISA_SERIAL1_TDMAPR_IRQ:
		case MACEISA_SERIAL2_TDMAPR_IRQ:
485 486 487 488
			irq_set_chip_and_handler_name(irq,
						      &ip32_maceisa_edge_interrupt,
						      handle_edge_irq,
						      "edge");
489
			break;
490

491
		default:
492 493 494 495
			irq_set_chip_and_handler_name(irq,
						      &ip32_maceisa_level_interrupt,
						      handle_level_irq,
						      "level");
496
			break;
497
		}
L
Linus Torvalds 已提交
498 499 500 501 502 503 504
	}
	setup_irq(CRIME_MEMERR_IRQ, &memerr_irq);
	setup_irq(CRIME_CPUERR_IRQ, &cpuerr_irq);

#define ALLINTS (IE_IRQ0 | IE_IRQ1 | IE_IRQ2 | IE_IRQ3 | IE_IRQ4 | IE_IRQ5)
	change_c0_status(ST0_IM, ALLINTS);
}