diff options
-rw-r--r-- | arch/mips/loongson/Makefile | 6 | ||||
-rw-r--r-- | arch/mips/loongson/lemote-2f/Makefile | 5 | ||||
-rw-r--r-- | arch/mips/loongson/lemote-2f/irq.c | 132 |
3 files changed, 143 insertions, 0 deletions
diff --git a/arch/mips/loongson/Makefile b/arch/mips/loongson/Makefile index 39048c455d7d..2b76cb0fb07d 100644 --- a/arch/mips/loongson/Makefile +++ b/arch/mips/loongson/Makefile | |||
@@ -9,3 +9,9 @@ obj-$(CONFIG_MACH_LOONGSON) += common/ | |||
9 | # | 9 | # |
10 | 10 | ||
11 | obj-$(CONFIG_LEMOTE_FULOONG2E) += fuloong-2e/ | 11 | obj-$(CONFIG_LEMOTE_FULOONG2E) += fuloong-2e/ |
12 | |||
13 | # | ||
14 | # Lemote loongson2f family machines | ||
15 | # | ||
16 | |||
17 | obj-$(CONFIG_LEMOTE_MACH2F) += lemote-2f/ | ||
diff --git a/arch/mips/loongson/lemote-2f/Makefile b/arch/mips/loongson/lemote-2f/Makefile new file mode 100644 index 000000000000..2e188974d56b --- /dev/null +++ b/arch/mips/loongson/lemote-2f/Makefile | |||
@@ -0,0 +1,5 @@ | |||
1 | # | ||
2 | # Makefile for lemote loongson2f family machines | ||
3 | # | ||
4 | |||
5 | obj-y += irq.o | ||
diff --git a/arch/mips/loongson/lemote-2f/irq.c b/arch/mips/loongson/lemote-2f/irq.c new file mode 100644 index 000000000000..50e7bb6012b7 --- /dev/null +++ b/arch/mips/loongson/lemote-2f/irq.c | |||
@@ -0,0 +1,132 @@ | |||
1 | /* | ||
2 | * Copyright (C) 2007 Lemote Inc. | ||
3 | * Author: Fuxin Zhang, zhangfx@lemote.com | ||
4 | * | ||
5 | * This program is free software; you can redistribute it and/or modify it | ||
6 | * under the terms of the GNU General Public License as published by the | ||
7 | * Free Software Foundation; either version 2 of the License, or (at your | ||
8 | * option) any later version. | ||
9 | */ | ||
10 | |||
11 | #include <linux/interrupt.h> | ||
12 | |||
13 | #include <asm/irq_cpu.h> | ||
14 | #include <asm/i8259.h> | ||
15 | #include <asm/mipsregs.h> | ||
16 | |||
17 | #include <loongson.h> | ||
18 | #include <machine.h> | ||
19 | |||
20 | #define LOONGSON_TIMER_IRQ (MIPS_CPU_IRQ_BASE + 7) /* cpu timer */ | ||
21 | #define LOONGSON_PERFCNT_IRQ (MIPS_CPU_IRQ_BASE + 6) /* cpu perf counter */ | ||
22 | #define LOONGSON_NORTH_BRIDGE_IRQ (MIPS_CPU_IRQ_BASE + 6) /* bonito */ | ||
23 | #define LOONGSON_UART_IRQ (MIPS_CPU_IRQ_BASE + 3) /* cpu serial port */ | ||
24 | #define LOONGSON_SOUTH_BRIDGE_IRQ (MIPS_CPU_IRQ_BASE + 2) /* i8259 */ | ||
25 | |||
26 | #define LOONGSON_INT_BIT_INT0 (1 << 11) | ||
27 | #define LOONGSON_INT_BIT_INT1 (1 << 12) | ||
28 | |||
29 | /* | ||
30 | * The generic i8259_irq() make the kernel hang on booting. Since we cannot | ||
31 | * get the irq via the IRR directly, we access the ISR instead. | ||
32 | */ | ||
33 | static inline int mach_i8259_irq(void) | ||
34 | { | ||
35 | int irq, isr; | ||
36 | |||
37 | irq = -1; | ||
38 | |||
39 | if ((LOONGSON_INTISR & LOONGSON_INTEN) & LOONGSON_INT_BIT_INT0) { | ||
40 | spin_lock(&i8259A_lock); | ||
41 | isr = inb(PIC_MASTER_CMD) & | ||
42 | ~inb(PIC_MASTER_IMR) & ~(1 << PIC_CASCADE_IR); | ||
43 | if (!isr) | ||
44 | isr = (inb(PIC_SLAVE_CMD) & ~inb(PIC_SLAVE_IMR)) << 8; | ||
45 | irq = ffs(isr) - 1; | ||
46 | if (unlikely(irq == 7)) { | ||
47 | /* | ||
48 | * This may be a spurious interrupt. | ||
49 | * | ||
50 | * Read the interrupt status register (ISR). If the most | ||
51 | * significant bit is not set then there is no valid | ||
52 | * interrupt. | ||
53 | */ | ||
54 | outb(0x0B, PIC_MASTER_ISR); /* ISR register */ | ||
55 | if (~inb(PIC_MASTER_ISR) & 0x80) | ||
56 | irq = -1; | ||
57 | } | ||
58 | spin_unlock(&i8259A_lock); | ||
59 | } | ||
60 | |||
61 | return irq; | ||
62 | } | ||
63 | |||
64 | static void i8259_irqdispatch(void) | ||
65 | { | ||
66 | int irq; | ||
67 | |||
68 | irq = mach_i8259_irq(); | ||
69 | if (irq >= 0) | ||
70 | do_IRQ(irq); | ||
71 | else | ||
72 | spurious_interrupt(); | ||
73 | } | ||
74 | |||
75 | void mach_irq_dispatch(unsigned int pending) | ||
76 | { | ||
77 | if (pending & CAUSEF_IP7) | ||
78 | do_IRQ(LOONGSON_TIMER_IRQ); | ||
79 | else if (pending & CAUSEF_IP6) { /* North Bridge, Perf counter */ | ||
80 | #ifdef CONFIG_OPROFILE | ||
81 | do_IRQ(LOONGSON2_PERFCNT_IRQ); | ||
82 | #endif | ||
83 | bonito_irqdispatch(); | ||
84 | } else if (pending & CAUSEF_IP3) /* CPU UART */ | ||
85 | do_IRQ(LOONGSON_UART_IRQ); | ||
86 | else if (pending & CAUSEF_IP2) /* South Bridge */ | ||
87 | i8259_irqdispatch(); | ||
88 | else | ||
89 | spurious_interrupt(); | ||
90 | } | ||
91 | |||
92 | void __init set_irq_trigger_mode(void) | ||
93 | { | ||
94 | /* setup cs5536 as high level trigger */ | ||
95 | LOONGSON_INTPOL = LOONGSON_INT_BIT_INT0 | LOONGSON_INT_BIT_INT1; | ||
96 | LOONGSON_INTEDGE &= ~(LOONGSON_INT_BIT_INT0 | LOONGSON_INT_BIT_INT1); | ||
97 | } | ||
98 | |||
99 | static irqreturn_t ip6_action(int cpl, void *dev_id) | ||
100 | { | ||
101 | return IRQ_HANDLED; | ||
102 | } | ||
103 | |||
104 | struct irqaction ip6_irqaction = { | ||
105 | .handler = ip6_action, | ||
106 | .name = "cascade", | ||
107 | .flags = IRQF_SHARED, | ||
108 | }; | ||
109 | |||
110 | struct irqaction cascade_irqaction = { | ||
111 | .handler = no_action, | ||
112 | .name = "cascade", | ||
113 | }; | ||
114 | |||
115 | void __init mach_init_irq(void) | ||
116 | { | ||
117 | /* init all controller | ||
118 | * 0-15 ------> i8259 interrupt | ||
119 | * 16-23 ------> mips cpu interrupt | ||
120 | * 32-63 ------> bonito irq | ||
121 | */ | ||
122 | |||
123 | /* Sets the first-level interrupt dispatcher. */ | ||
124 | mips_cpu_irq_init(); | ||
125 | init_i8259_irqs(); | ||
126 | bonito_irq_init(); | ||
127 | |||
128 | /* setup north bridge irq (bonito) */ | ||
129 | setup_irq(LOONGSON_NORTH_BRIDGE_IRQ, &ip6_irqaction); | ||
130 | /* setup source bridge irq (i8259) */ | ||
131 | setup_irq(LOONGSON_SOUTH_BRIDGE_IRQ, &cascade_irqaction); | ||
132 | } | ||