7f3b97ff62c17394604d8134cafa5b5211e24256
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / arch / sparc / kernel / sun4m_irq.c
1 /* sun4m_irq.c
2 * arch/sparc/kernel/sun4m_irq.c:
3 *
4 * djhr: Hacked out of irq.c into a CPU dependent version.
5 *
6 * Copyright (C) 1995 David S. Miller (davem@caip.rutgers.edu)
7 * Copyright (C) 1995 Miguel de Icaza (miguel@nuclecu.unam.mx)
8 * Copyright (C) 1995 Pete A. Zaitcev (zaitcev@yahoo.com)
9 * Copyright (C) 1996 Dave Redman (djhr@tadpole.co.uk)
10 */
11
12 #include <linux/errno.h>
13 #include <linux/linkage.h>
14 #include <linux/kernel_stat.h>
15 #include <linux/signal.h>
16 #include <linux/sched.h>
17 #include <linux/ptrace.h>
18 #include <linux/smp.h>
19 #include <linux/interrupt.h>
20 #include <linux/init.h>
21 #include <linux/ioport.h>
22 #include <linux/of.h>
23 #include <linux/of_device.h>
24
25 #include <asm/ptrace.h>
26 #include <asm/processor.h>
27 #include <asm/system.h>
28 #include <asm/psr.h>
29 #include <asm/vaddrs.h>
30 #include <asm/timer.h>
31 #include <asm/openprom.h>
32 #include <asm/oplib.h>
33 #include <asm/traps.h>
34 #include <asm/pgalloc.h>
35 #include <asm/pgtable.h>
36 #include <asm/smp.h>
37 #include <asm/irq.h>
38 #include <asm/io.h>
39 #include <asm/cacheflush.h>
40
41 #include "irq.h"
42
43 struct sun4m_irq_percpu {
44 u32 pending;
45 u32 clear;
46 u32 set;
47 };
48
49 struct sun4m_irq_global {
50 u32 pending;
51 u32 mask;
52 u32 mask_clear;
53 u32 mask_set;
54 u32 interrupt_target;
55 };
56
57 /* Code in entry.S needs to get at these register mappings. */
58 struct sun4m_irq_percpu __iomem *sun4m_irq_percpu[SUN4M_NCPUS];
59 struct sun4m_irq_global __iomem *sun4m_irq_global;
60
61 /* Dave Redman (djhr@tadpole.co.uk)
62 * The sun4m interrupt registers.
63 */
64 #define SUN4M_INT_ENABLE 0x80000000
65 #define SUN4M_INT_E14 0x00000080
66 #define SUN4M_INT_E10 0x00080000
67
68 #define SUN4M_HARD_INT(x) (0x000000001 << (x))
69 #define SUN4M_SOFT_INT(x) (0x000010000 << (x))
70
71 #define SUN4M_INT_MASKALL 0x80000000 /* mask all interrupts */
72 #define SUN4M_INT_MODULE_ERR 0x40000000 /* module error */
73 #define SUN4M_INT_M2S_WRITE_ERR 0x20000000 /* write buffer error */
74 #define SUN4M_INT_ECC_ERR 0x10000000 /* ecc memory error */
75 #define SUN4M_INT_VME_ERR 0x08000000 /* vme async error */
76 #define SUN4M_INT_FLOPPY 0x00400000 /* floppy disk */
77 #define SUN4M_INT_MODULE 0x00200000 /* module interrupt */
78 #define SUN4M_INT_VIDEO 0x00100000 /* onboard video */
79 #define SUN4M_INT_REALTIME 0x00080000 /* system timer */
80 #define SUN4M_INT_SCSI 0x00040000 /* onboard scsi */
81 #define SUN4M_INT_AUDIO 0x00020000 /* audio/isdn */
82 #define SUN4M_INT_ETHERNET 0x00010000 /* onboard ethernet */
83 #define SUN4M_INT_SERIAL 0x00008000 /* serial ports */
84 #define SUN4M_INT_KBDMS 0x00004000 /* keyboard/mouse */
85 #define SUN4M_INT_SBUSBITS 0x00003F80 /* sbus int bits */
86 #define SUN4M_INT_VMEBITS 0x0000007F /* vme int bits */
87
88 #define SUN4M_INT_ERROR (SUN4M_INT_MODULE_ERR | \
89 SUN4M_INT_M2S_WRITE_ERR | \
90 SUN4M_INT_ECC_ERR | \
91 SUN4M_INT_VME_ERR)
92
93 #define SUN4M_INT_SBUS(x) (1 << (x+7))
94 #define SUN4M_INT_VME(x) (1 << (x))
95
96 /* Interrupt levels used by OBP */
97 #define OBP_INT_LEVEL_SOFT 0x10
98 #define OBP_INT_LEVEL_ONBOARD 0x20
99 #define OBP_INT_LEVEL_SBUS 0x30
100 #define OBP_INT_LEVEL_VME 0x40
101
102 /* Interrupt level assignment on sun4m:
103 *
104 * level source
105 * ------------------------------------------------------------
106 * 1 softint-1
107 * 2 softint-2, VME/SBUS level 1
108 * 3 softint-3, VME/SBUS level 2
109 * 4 softint-4, onboard SCSI
110 * 5 softint-5, VME/SBUS level 3
111 * 6 softint-6, onboard ETHERNET
112 * 7 softint-7, VME/SBUS level 4
113 * 8 softint-8, onboard VIDEO
114 * 9 softint-9, VME/SBUS level 5, Module Interrupt
115 * 10 softint-10, system counter/timer
116 * 11 softint-11, VME/SBUS level 6, Floppy
117 * 12 softint-12, Keyboard/Mouse, Serial
118 * 13 softint-13, VME/SBUS level 7, ISDN Audio
119 * 14 softint-14, per-processor counter/timer
120 * 15 softint-15, Asynchronous Errors (broadcast)
121 *
122 * Each interrupt source is masked distinctly in the sun4m interrupt
123 * registers. The PIL level alone is therefore ambiguous, since multiple
124 * interrupt sources map to a single PIL.
125 *
126 * This ambiguity is resolved in the 'intr' property for device nodes
127 * in the OF device tree. Each 'intr' property entry is composed of
128 * two 32-bit words. The first word is the IRQ priority value, which
129 * is what we're intersted in. The second word is the IRQ vector, which
130 * is unused.
131 *
132 * The low 4 bits of the IRQ priority indicate the PIL, and the upper
133 * 4 bits indicate onboard vs. SBUS leveled vs. VME leveled. 0x20
134 * means onboard, 0x30 means SBUS leveled, and 0x40 means VME leveled.
135 *
136 * For example, an 'intr' IRQ priority value of 0x24 is onboard SCSI
137 * whereas a value of 0x33 is SBUS level 2. Here are some sample
138 * 'intr' property IRQ priority values from ss4, ss5, ss10, ss20, and
139 * Tadpole S3 GX systems.
140 *
141 * esp: 0x24 onboard ESP SCSI
142 * le: 0x26 onboard Lance ETHERNET
143 * p9100: 0x32 SBUS level 1 P9100 video
144 * bpp: 0x33 SBUS level 2 BPP parallel port device
145 * DBRI: 0x39 SBUS level 5 DBRI ISDN audio
146 * SUNW,leo: 0x39 SBUS level 5 LEO video
147 * pcmcia: 0x3b SBUS level 6 PCMCIA controller
148 * uctrl: 0x3b SBUS level 6 UCTRL device
149 * modem: 0x3d SBUS level 7 MODEM
150 * zs: 0x2c onboard keyboard/mouse/serial
151 * floppy: 0x2b onboard Floppy
152 * power: 0x22 onboard power device (XXX unknown mask bit XXX)
153 */
154
155 static unsigned long irq_mask[0x50] = {
156 /* SMP */
157 0, SUN4M_SOFT_INT(1),
158 SUN4M_SOFT_INT(2), SUN4M_SOFT_INT(3),
159 SUN4M_SOFT_INT(4), SUN4M_SOFT_INT(5),
160 SUN4M_SOFT_INT(6), SUN4M_SOFT_INT(7),
161 SUN4M_SOFT_INT(8), SUN4M_SOFT_INT(9),
162 SUN4M_SOFT_INT(10), SUN4M_SOFT_INT(11),
163 SUN4M_SOFT_INT(12), SUN4M_SOFT_INT(13),
164 SUN4M_SOFT_INT(14), SUN4M_SOFT_INT(15),
165 /* soft */
166 0, SUN4M_SOFT_INT(1),
167 SUN4M_SOFT_INT(2), SUN4M_SOFT_INT(3),
168 SUN4M_SOFT_INT(4), SUN4M_SOFT_INT(5),
169 SUN4M_SOFT_INT(6), SUN4M_SOFT_INT(7),
170 SUN4M_SOFT_INT(8), SUN4M_SOFT_INT(9),
171 SUN4M_SOFT_INT(10), SUN4M_SOFT_INT(11),
172 SUN4M_SOFT_INT(12), SUN4M_SOFT_INT(13),
173 SUN4M_SOFT_INT(14), SUN4M_SOFT_INT(15),
174 /* onboard */
175 0, 0, 0, 0,
176 SUN4M_INT_SCSI, 0, SUN4M_INT_ETHERNET, 0,
177 SUN4M_INT_VIDEO, SUN4M_INT_MODULE,
178 SUN4M_INT_REALTIME, SUN4M_INT_FLOPPY,
179 (SUN4M_INT_SERIAL | SUN4M_INT_KBDMS),
180 SUN4M_INT_AUDIO, 0, SUN4M_INT_MODULE_ERR,
181 /* sbus */
182 0, 0, SUN4M_INT_SBUS(0), SUN4M_INT_SBUS(1),
183 0, SUN4M_INT_SBUS(2), 0, SUN4M_INT_SBUS(3),
184 0, SUN4M_INT_SBUS(4), 0, SUN4M_INT_SBUS(5),
185 0, SUN4M_INT_SBUS(6), 0, 0,
186 /* vme */
187 0, 0, SUN4M_INT_VME(0), SUN4M_INT_VME(1),
188 0, SUN4M_INT_VME(2), 0, SUN4M_INT_VME(3),
189 0, SUN4M_INT_VME(4), 0, SUN4M_INT_VME(5),
190 0, SUN4M_INT_VME(6), 0, 0
191 };
192
193 static unsigned long sun4m_get_irqmask(unsigned int irq)
194 {
195 unsigned long mask;
196
197 if (irq < 0x50)
198 mask = irq_mask[irq];
199 else
200 mask = 0;
201
202 if (!mask)
203 printk(KERN_ERR "sun4m_get_irqmask: IRQ%d has no valid mask!\n",
204 irq);
205
206 return mask;
207 }
208
209 static void sun4m_disable_irq(unsigned int irq_nr)
210 {
211 unsigned long mask, flags;
212 int cpu = smp_processor_id();
213
214 mask = sun4m_get_irqmask(irq_nr);
215 local_irq_save(flags);
216 if (irq_nr > 15)
217 sbus_writel(mask, &sun4m_irq_global->mask_set);
218 else
219 sbus_writel(mask, &sun4m_irq_percpu[cpu]->set);
220 local_irq_restore(flags);
221 }
222
223 static void sun4m_enable_irq(unsigned int irq_nr)
224 {
225 unsigned long mask, flags;
226 int cpu = smp_processor_id();
227
228 /* Dreadful floppy hack. When we use 0x2b instead of
229 * 0x0b the system blows (it starts to whistle!).
230 * So we continue to use 0x0b. Fixme ASAP. --P3
231 */
232 if (irq_nr != 0x0b) {
233 mask = sun4m_get_irqmask(irq_nr);
234 local_irq_save(flags);
235 if (irq_nr > 15)
236 sbus_writel(mask, &sun4m_irq_global->mask_clear);
237 else
238 sbus_writel(mask, &sun4m_irq_percpu[cpu]->clear);
239 local_irq_restore(flags);
240 } else {
241 local_irq_save(flags);
242 sbus_writel(SUN4M_INT_FLOPPY, &sun4m_irq_global->mask_clear);
243 local_irq_restore(flags);
244 }
245 }
246
247 static unsigned long cpu_pil_to_imask[16] = {
248 /*0*/ 0x00000000,
249 /*1*/ 0x00000000,
250 /*2*/ SUN4M_INT_SBUS(0) | SUN4M_INT_VME(0),
251 /*3*/ SUN4M_INT_SBUS(1) | SUN4M_INT_VME(1),
252 /*4*/ SUN4M_INT_SCSI,
253 /*5*/ SUN4M_INT_SBUS(2) | SUN4M_INT_VME(2),
254 /*6*/ SUN4M_INT_ETHERNET,
255 /*7*/ SUN4M_INT_SBUS(3) | SUN4M_INT_VME(3),
256 /*8*/ SUN4M_INT_VIDEO,
257 /*9*/ SUN4M_INT_SBUS(4) | SUN4M_INT_VME(4) | SUN4M_INT_MODULE_ERR,
258 /*10*/ SUN4M_INT_REALTIME,
259 /*11*/ SUN4M_INT_SBUS(5) | SUN4M_INT_VME(5) | SUN4M_INT_FLOPPY,
260 /*12*/ SUN4M_INT_SERIAL | SUN4M_INT_KBDMS,
261 /*13*/ SUN4M_INT_SBUS(6) | SUN4M_INT_VME(6) | SUN4M_INT_AUDIO,
262 /*14*/ SUN4M_INT_E14,
263 /*15*/ SUN4M_INT_ERROR
264 };
265
266 /* We assume the caller has disabled local interrupts when these are called,
267 * or else very bizarre behavior will result.
268 */
269 static void sun4m_disable_pil_irq(unsigned int pil)
270 {
271 sbus_writel(cpu_pil_to_imask[pil], &sun4m_irq_global->mask_set);
272 }
273
274 static void sun4m_enable_pil_irq(unsigned int pil)
275 {
276 sbus_writel(cpu_pil_to_imask[pil], &sun4m_irq_global->mask_clear);
277 }
278
279 #ifdef CONFIG_SMP
280 static void sun4m_send_ipi(int cpu, int level)
281 {
282 unsigned long mask = sun4m_get_irqmask(level);
283 sbus_writel(mask, &sun4m_irq_percpu[cpu]->set);
284 }
285
286 static void sun4m_clear_ipi(int cpu, int level)
287 {
288 unsigned long mask = sun4m_get_irqmask(level);
289 sbus_writel(mask, &sun4m_irq_percpu[cpu]->clear);
290 }
291
292 static void sun4m_set_udt(int cpu)
293 {
294 sbus_writel(cpu, &sun4m_irq_global->interrupt_target);
295 }
296 #endif
297
298 struct sun4m_timer_percpu {
299 u32 l14_limit;
300 u32 l14_count;
301 u32 l14_limit_noclear;
302 u32 user_timer_start_stop;
303 };
304
305 static struct sun4m_timer_percpu __iomem *timers_percpu[SUN4M_NCPUS];
306
307 struct sun4m_timer_global {
308 u32 l10_limit;
309 u32 l10_count;
310 u32 l10_limit_noclear;
311 u32 reserved;
312 u32 timer_config;
313 };
314
315 static struct sun4m_timer_global __iomem *timers_global;
316
317 #define TIMER_IRQ (OBP_INT_LEVEL_ONBOARD | 10)
318
319 unsigned int lvl14_resolution = (((1000000/HZ) + 1) << 10);
320
321 static void sun4m_clear_clock_irq(void)
322 {
323 sbus_readl(&timers_global->l10_limit);
324 }
325
326 void sun4m_nmi(struct pt_regs *regs)
327 {
328 unsigned long afsr, afar, si;
329
330 printk(KERN_ERR "Aieee: sun4m NMI received!\n");
331 /* XXX HyperSparc hack XXX */
332 __asm__ __volatile__("mov 0x500, %%g1\n\t"
333 "lda [%%g1] 0x4, %0\n\t"
334 "mov 0x600, %%g1\n\t"
335 "lda [%%g1] 0x4, %1\n\t" :
336 "=r" (afsr), "=r" (afar));
337 printk(KERN_ERR "afsr=%08lx afar=%08lx\n", afsr, afar);
338 si = sbus_readl(&sun4m_irq_global->pending);
339 printk(KERN_ERR "si=%08lx\n", si);
340 if (si & SUN4M_INT_MODULE_ERR)
341 printk(KERN_ERR "Module async error\n");
342 if (si & SUN4M_INT_M2S_WRITE_ERR)
343 printk(KERN_ERR "MBus/SBus async error\n");
344 if (si & SUN4M_INT_ECC_ERR)
345 printk(KERN_ERR "ECC memory error\n");
346 if (si & SUN4M_INT_VME_ERR)
347 printk(KERN_ERR "VME async error\n");
348 printk(KERN_ERR "you lose buddy boy...\n");
349 show_regs(regs);
350 prom_halt();
351 }
352
353 /* Exported for sun4m_smp.c */
354 void sun4m_clear_profile_irq(int cpu)
355 {
356 sbus_readl(&timers_percpu[cpu]->l14_limit);
357 }
358
359 static void sun4m_load_profile_irq(int cpu, unsigned int limit)
360 {
361 sbus_writel(limit, &timers_percpu[cpu]->l14_limit);
362 }
363
364 static void __init sun4m_init_timers(irq_handler_t counter_fn)
365 {
366 struct device_node *dp = of_find_node_by_name(NULL, "counter");
367 int i, err, len, num_cpu_timers;
368 const u32 *addr;
369
370 if (!dp) {
371 printk(KERN_ERR "sun4m_init_timers: No 'counter' node.\n");
372 return;
373 }
374
375 addr = of_get_property(dp, "address", &len);
376 of_node_put(dp);
377 if (!addr) {
378 printk(KERN_ERR "sun4m_init_timers: No 'address' prop.\n");
379 return;
380 }
381
382 num_cpu_timers = (len / sizeof(u32)) - 1;
383 for (i = 0; i < num_cpu_timers; i++) {
384 timers_percpu[i] = (void __iomem *)
385 (unsigned long) addr[i];
386 }
387 timers_global = (void __iomem *)
388 (unsigned long) addr[num_cpu_timers];
389
390 sbus_writel((((1000000/HZ) + 1) << 10), &timers_global->l10_limit);
391
392 master_l10_counter = &timers_global->l10_count;
393
394 err = request_irq(TIMER_IRQ, counter_fn,
395 (IRQF_DISABLED | SA_STATIC_ALLOC), "timer", NULL);
396 if (err) {
397 printk(KERN_ERR "sun4m_init_timers: Register IRQ error %d.\n",
398 err);
399 return;
400 }
401
402 for (i = 0; i < num_cpu_timers; i++)
403 sbus_writel(0, &timers_percpu[i]->l14_limit);
404 if (num_cpu_timers == 4)
405 sbus_writel(SUN4M_INT_E14, &sun4m_irq_global->mask_set);
406
407 #ifdef CONFIG_SMP
408 {
409 unsigned long flags;
410 extern unsigned long lvl14_save[4];
411 struct tt_entry *trap_table = &sparc_ttable[SP_TRAP_IRQ1 + (14 - 1)];
412
413 /* For SMP we use the level 14 ticker, however the bootup code
414 * has copied the firmware's level 14 vector into the boot cpu's
415 * trap table, we must fix this now or we get squashed.
416 */
417 local_irq_save(flags);
418 trap_table->inst_one = lvl14_save[0];
419 trap_table->inst_two = lvl14_save[1];
420 trap_table->inst_three = lvl14_save[2];
421 trap_table->inst_four = lvl14_save[3];
422 local_flush_cache_all();
423 local_irq_restore(flags);
424 }
425 #endif
426 }
427
428 void __init sun4m_init_IRQ(void)
429 {
430 struct device_node *dp = of_find_node_by_name(NULL, "interrupt");
431 int len, i, mid, num_cpu_iregs;
432 const u32 *addr;
433
434 if (!dp) {
435 printk(KERN_ERR "sun4m_init_IRQ: No 'interrupt' node.\n");
436 return;
437 }
438
439 addr = of_get_property(dp, "address", &len);
440 of_node_put(dp);
441 if (!addr) {
442 printk(KERN_ERR "sun4m_init_IRQ: No 'address' prop.\n");
443 return;
444 }
445
446 num_cpu_iregs = (len / sizeof(u32)) - 1;
447 for (i = 0; i < num_cpu_iregs; i++) {
448 sun4m_irq_percpu[i] = (void __iomem *)
449 (unsigned long) addr[i];
450 }
451 sun4m_irq_global = (void __iomem *)
452 (unsigned long) addr[num_cpu_iregs];
453
454 local_irq_disable();
455
456 sbus_writel(~SUN4M_INT_MASKALL, &sun4m_irq_global->mask_set);
457 for (i = 0; !cpu_find_by_instance(i, NULL, &mid); i++)
458 sbus_writel(~0x17fff, &sun4m_irq_percpu[mid]->clear);
459
460 if (num_cpu_iregs == 4)
461 sbus_writel(0, &sun4m_irq_global->interrupt_target);
462
463 BTFIXUPSET_CALL(enable_irq, sun4m_enable_irq, BTFIXUPCALL_NORM);
464 BTFIXUPSET_CALL(disable_irq, sun4m_disable_irq, BTFIXUPCALL_NORM);
465 BTFIXUPSET_CALL(enable_pil_irq, sun4m_enable_pil_irq, BTFIXUPCALL_NORM);
466 BTFIXUPSET_CALL(disable_pil_irq, sun4m_disable_pil_irq, BTFIXUPCALL_NORM);
467 BTFIXUPSET_CALL(clear_clock_irq, sun4m_clear_clock_irq, BTFIXUPCALL_NORM);
468 BTFIXUPSET_CALL(load_profile_irq, sun4m_load_profile_irq, BTFIXUPCALL_NORM);
469 sparc_init_timers = sun4m_init_timers;
470 #ifdef CONFIG_SMP
471 BTFIXUPSET_CALL(set_cpu_int, sun4m_send_ipi, BTFIXUPCALL_NORM);
472 BTFIXUPSET_CALL(clear_cpu_int, sun4m_clear_ipi, BTFIXUPCALL_NORM);
473 BTFIXUPSET_CALL(set_irq_udt, sun4m_set_udt, BTFIXUPCALL_NORM);
474 #endif
475
476 /* Cannot enable interrupts until OBP ticker is disabled. */
477 }