1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17#include <linux/init.h>
18#include <linux/interrupt.h>
19#include <linux/irq.h>
20#include <linux/io.h>
21#include <linux/kernel.h>
22#include <linux/bitops.h>
23#include <cpu/irq.h>
24#include <asm/page.h>
25
26
27
28
29
30
31
32#define INTC_BLOCK_OFFSET 0x01000000
33
34
35#define INTC_BASE PHYS_PERIPHERAL_BLOCK + \
36 INTC_BLOCK_OFFSET
37
38
39#define INTC_ICR_SET (intc_virt + 0x0)
40#define INTC_ICR_CLEAR (intc_virt + 0x8)
41#define INTC_INTPRI_0 (intc_virt + 0x10)
42#define INTC_INTSRC_0 (intc_virt + 0x50)
43#define INTC_INTSRC_1 (intc_virt + 0x58)
44#define INTC_INTREQ_0 (intc_virt + 0x60)
45#define INTC_INTREQ_1 (intc_virt + 0x68)
46#define INTC_INTENB_0 (intc_virt + 0x70)
47#define INTC_INTENB_1 (intc_virt + 0x78)
48#define INTC_INTDSB_0 (intc_virt + 0x80)
49#define INTC_INTDSB_1 (intc_virt + 0x88)
50
51#define INTC_ICR_IRLM 0x1
52#define INTC_INTPRI_PREGS 8
53#define INTC_INTPRI_PPREG 8
54
55
56
57
58
59
60int intc_evt_to_irq[(0xE20/0x20)+1] = {
61 -1, -1, -1, -1, -1, -1, -1, -1,
62 -1, -1, -1, -1, -1, -1, -1, -1,
63 0, 0, 0, 0, 0, 1, 0, 0,
64 2, 0, 0, 3, 0, 0, 0, -1,
65 32, 33, 34, 35, 36, 37, 38, -1,
66 -1, -1, -1, 63, -1, -1, -1, -1,
67 -1, -1, 18, 19, 20, 21, 22, -1,
68 39, 40, 41, 42, -1, -1, -1, -1,
69 4, 5, 6, 7, -1, -1, -1, -1,
70 -1, -1, -1, -1, -1, -1, -1, -1,
71 12, 13, 14, 15, 16, 17, -1, -1,
72 -1, -1, -1, -1, -1, -1, -1, -1,
73 -1, -1, -1, -1, -1, -1, -1, -1,
74 -1, -1, -1, -1, -1, -1, -1, -1,
75 -1, -1
76};
77
78static unsigned long intc_virt;
79static int irlm;
80
81static void enable_intc_irq(struct irq_data *data)
82{
83 unsigned int irq = data->irq;
84 unsigned long reg;
85 unsigned long bitmask;
86
87 if ((irq <= IRQ_IRL3) && (irlm == NO_PRIORITY))
88 printk("Trying to use straight IRL0-3 with an encoding platform.\n");
89
90 if (irq < 32) {
91 reg = INTC_INTENB_0;
92 bitmask = 1 << irq;
93 } else {
94 reg = INTC_INTENB_1;
95 bitmask = 1 << (irq - 32);
96 }
97
98 __raw_writel(bitmask, reg);
99}
100
101static void disable_intc_irq(struct irq_data *data)
102{
103 unsigned int irq = data->irq;
104 unsigned long reg;
105 unsigned long bitmask;
106
107 if (irq < 32) {
108 reg = INTC_INTDSB_0;
109 bitmask = 1 << irq;
110 } else {
111 reg = INTC_INTDSB_1;
112 bitmask = 1 << (irq - 32);
113 }
114
115 __raw_writel(bitmask, reg);
116}
117
118static struct irq_chip intc_irq_type = {
119 .name = "INTC",
120 .irq_enable = enable_intc_irq,
121 .irq_disable = disable_intc_irq,
122};
123
124void __init plat_irq_setup(void)
125{
126 unsigned long long __dummy0, __dummy1=~0x00000000100000f0;
127 unsigned long reg;
128 int i;
129
130 intc_virt = (unsigned long)ioremap_nocache(INTC_BASE, 1024);
131 if (!intc_virt) {
132 panic("Unable to remap INTC\n");
133 }
134
135
136
137 for (i = 0; i < NR_INTC_IRQS; i++)
138 irq_set_chip_and_handler(i, &intc_irq_type, handle_level_irq);
139
140
141
142 __raw_writel(-1, INTC_INTDSB_0);
143 __raw_writel(-1, INTC_INTDSB_1);
144
145 for (reg = INTC_INTPRI_0, i = 0; i < INTC_INTPRI_PREGS; i++, reg += 8)
146 __raw_writel( NO_PRIORITY, reg);
147
148
149#ifdef CONFIG_SH_CAYMAN
150 {
151 unsigned long data;
152
153
154
155
156
157 irlm = platform_int_priority[IRQ_IRL0] +
158 platform_int_priority[IRQ_IRL1] +
159 platform_int_priority[IRQ_IRL2] +
160 platform_int_priority[IRQ_IRL3];
161 if (irlm == NO_PRIORITY) {
162
163 reg = INTC_ICR_CLEAR;
164 i = IRQ_INTA;
165 printk("Trying to use encoded IRL0-3. IRLs unsupported.\n");
166 } else {
167
168 reg = INTC_ICR_SET;
169 i = IRQ_IRL0;
170 }
171 __raw_writel(INTC_ICR_IRLM, reg);
172
173
174 for (data = 0, reg = INTC_INTPRI_0; i < NR_INTC_IRQS; i++) {
175 data |= platform_int_priority[i] <<
176 ((i % INTC_INTPRI_PPREG) * 4);
177 if ((i % INTC_INTPRI_PPREG) == (INTC_INTPRI_PPREG - 1)) {
178
179 __raw_writel(data, reg);
180 data = 0;
181 reg += 8;
182 }
183 }
184 }
185#endif
186
187
188
189
190
191
192 __asm__ __volatile__("getcon " __SR ", %0\n\t"
193 "and %0, %1, %0\n\t"
194 "putcon %0, " __SR "\n\t"
195 : "=&r" (__dummy0)
196 : "r" (__dummy1));
197}
198