1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * Copyright (C) 2007 Lemote Inc. & Institute of Computing Technology
4 * Author: Fuxin Zhang, zhangfx@lemote.com
6 #include <linux/interrupt.h>
8 #include <asm/irq_cpu.h>
13 static void i8259_irqdispatch(void)
24 asmlinkage
void mach_irq_dispatch(unsigned int pending
)
26 if (pending
& CAUSEF_IP7
)
27 do_IRQ(MIPS_CPU_IRQ_BASE
+ 7);
28 else if (pending
& CAUSEF_IP6
) /* perf counter loverflow */
30 else if (pending
& CAUSEF_IP5
)
32 else if (pending
& CAUSEF_IP2
)
38 void __init
mach_init_irq(void)
42 /* init all controller
43 * 0-15 ------> i8259 interrupt
44 * 16-23 ------> mips cpu interrupt
45 * 32-63 ------> bonito irq
48 /* most bonito irq should be level triggered */
49 LOONGSON_INTEDGE
= LOONGSON_ICU_SYSTEMERR
| LOONGSON_ICU_MASTERERR
|
50 LOONGSON_ICU_RETRYERR
| LOONGSON_ICU_MBOXES
;
52 /* Sets the first-level interrupt dispatcher. */
57 /* bonito irq at IP2 */
58 irq
= MIPS_CPU_IRQ_BASE
+ 2;
59 if (request_irq(irq
, no_action
, IRQF_NO_THREAD
, "cascade", NULL
))
60 pr_err("Failed to request irq %d (cascade)\n", irq
);
62 irq
= MIPS_CPU_IRQ_BASE
+ 5;
63 if (request_irq(irq
, no_action
, IRQF_NO_THREAD
, "cascade", NULL
))
64 pr_err("Failed to request irq %d (cascade)\n", irq
);