irq_cpu.c 3.2 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5
/*
 * Copyright 2001 MontaVista Software Inc.
 * Author: Jun Sun, jsun@mvista.com or jsun@junsun.net
 *
 * Copyright (C) 2001 Ralf Baechle
6 7
 * Copyright (C) 2005  MIPS Technologies, Inc.  All rights reserved.
 *      Author: Maciej W. Rozycki <macro@mips.com>
L
Linus Torvalds 已提交
8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
 *
 * This file define the irq handler for MIPS CPU interrupts.
 *
 * This program is free software; you can redistribute  it and/or modify it
 * under  the terms of  the GNU General  Public License as published by the
 * Free Software Foundation;  either version 2 of the  License, or (at your
 * option) any later version.
 */

/*
 * Almost all MIPS CPUs define 8 interrupt sources.  They are typically
 * level triggered (i.e., cannot be cleared from CPU; must be cleared from
 * device).  The first two are software interrupts which we don't really
 * use or support.  The last one is usually the CPU timer interrupt if
 * counter register is present or, for CPUs with an external FPU, by
 * convention it's the FPU exception interrupt.
 *
 * Don't even think about using this on SMP.  You have been warned.
 *
 * This file exports one global function:
28
 *	void mips_cpu_irq_init(void);
L
Linus Torvalds 已提交
29 30 31 32 33 34 35
 */
#include <linux/init.h>
#include <linux/interrupt.h>
#include <linux/kernel.h>

#include <asm/irq_cpu.h>
#include <asm/mipsregs.h>
R
Ralf Baechle 已提交
36
#include <asm/mipsmtregs.h>
L
Linus Torvalds 已提交
37 38 39 40
#include <asm/system.h>

static inline void unmask_mips_irq(unsigned int irq)
{
41
	set_c0_status(0x100 << (irq - MIPS_CPU_IRQ_BASE));
42
	irq_enable_hazard();
L
Linus Torvalds 已提交
43 44 45 46
}

static inline void mask_mips_irq(unsigned int irq)
{
47
	clear_c0_status(0x100 << (irq - MIPS_CPU_IRQ_BASE));
48
	irq_disable_hazard();
L
Linus Torvalds 已提交
49 50
}

51
static struct irq_chip mips_cpu_irq_controller = {
52
	.name		= "MIPS",
A
Atsushi Nemoto 已提交
53 54 55 56
	.ack		= mask_mips_irq,
	.mask		= mask_mips_irq,
	.mask_ack	= mask_mips_irq,
	.unmask		= unmask_mips_irq,
57
	.eoi		= unmask_mips_irq,
L
Linus Torvalds 已提交
58 59
};

R
Ralf Baechle 已提交
60 61 62 63 64 65 66 67 68 69 70
/*
 * Basically the same as above but taking care of all the MT stuff
 */

#define unmask_mips_mt_irq	unmask_mips_irq
#define mask_mips_mt_irq	mask_mips_irq

static unsigned int mips_mt_cpu_irq_startup(unsigned int irq)
{
	unsigned int vpflags = dvpe();

71
	clear_c0_cause(0x100 << (irq - MIPS_CPU_IRQ_BASE));
R
Ralf Baechle 已提交
72
	evpe(vpflags);
A
Atsushi Nemoto 已提交
73
	unmask_mips_mt_irq(irq);
R
Ralf Baechle 已提交
74 75 76 77 78 79 80 81 82 83 84

	return 0;
}

/*
 * While we ack the interrupt interrupts are disabled and thus we don't need
 * to deal with concurrency issues.  Same for mips_cpu_irq_end.
 */
static void mips_mt_cpu_irq_ack(unsigned int irq)
{
	unsigned int vpflags = dvpe();
85
	clear_c0_cause(0x100 << (irq - MIPS_CPU_IRQ_BASE));
R
Ralf Baechle 已提交
86 87 88 89
	evpe(vpflags);
	mask_mips_mt_irq(irq);
}

90
static struct irq_chip mips_mt_cpu_irq_controller = {
91
	.name		= "MIPS",
R
Ralf Baechle 已提交
92 93
	.startup	= mips_mt_cpu_irq_startup,
	.ack		= mips_mt_cpu_irq_ack,
A
Atsushi Nemoto 已提交
94 95 96
	.mask		= mask_mips_mt_irq,
	.mask_ack	= mips_mt_cpu_irq_ack,
	.unmask		= unmask_mips_mt_irq,
97
	.eoi		= unmask_mips_mt_irq,
R
Ralf Baechle 已提交
98
};
L
Linus Torvalds 已提交
99

100
void __init mips_cpu_irq_init(void)
L
Linus Torvalds 已提交
101
{
102
	int irq_base = MIPS_CPU_IRQ_BASE;
L
Linus Torvalds 已提交
103 104
	int i;

105 106 107 108
	/* Mask interrupts. */
	clear_c0_status(ST0_IM);
	clear_c0_cause(CAUSEF_IP);

R
Ralf Baechle 已提交
109 110 111 112 113
	/*
	 * Only MT is using the software interrupts currently, so we just
	 * leave them uninitialized for other processors.
	 */
	if (cpu_has_mipsmt)
A
Atsushi Nemoto 已提交
114 115 116 117
		for (i = irq_base; i < irq_base + 2; i++)
			set_irq_chip(i, &mips_mt_cpu_irq_controller);

	for (i = irq_base + 2; i < irq_base + 8; i++)
118 119
		set_irq_chip_and_handler(i, &mips_cpu_irq_controller,
					 handle_level_irq);
L
Linus Torvalds 已提交
120
}