blob: dc51bdf853cdad90db66c5fbcb80415a645d9e10 [file] [log] [blame]
David S. Miller4a907de2007-06-13 00:01:04 -07001/* irq.c: UltraSparc IRQ handling/init/registry.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 *
David S. Miller4a907de2007-06-13 00:01:04 -07003 * Copyright (C) 1997, 2007 David S. Miller (davem@davemloft.net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 * Copyright (C) 1998 Eddie C. Dost (ecd@skynet.be)
5 * Copyright (C) 1998 Jakub Jelinek (jj@ultra.linux.cz)
6 */
7
Linus Torvalds1da177e2005-04-16 15:20:36 -07008#include <linux/module.h>
9#include <linux/sched.h>
10#include <linux/ptrace.h>
11#include <linux/errno.h>
12#include <linux/kernel_stat.h>
13#include <linux/signal.h>
14#include <linux/mm.h>
15#include <linux/interrupt.h>
16#include <linux/slab.h>
17#include <linux/random.h>
18#include <linux/init.h>
19#include <linux/delay.h>
20#include <linux/proc_fs.h>
21#include <linux/seq_file.h>
David S. Millerb5a37e92006-02-11 23:07:13 -080022#include <linux/bootmem.h>
David S. Millere18e2a02006-06-20 01:23:32 -070023#include <linux/irq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
25#include <asm/ptrace.h>
26#include <asm/processor.h>
27#include <asm/atomic.h>
28#include <asm/system.h>
29#include <asm/irq.h>
Sven Hartge2e457ef2005-10-08 21:12:04 -070030#include <asm/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <asm/sbus.h>
32#include <asm/iommu.h>
33#include <asm/upa.h>
34#include <asm/oplib.h>
David S. Miller25c75812006-06-22 20:21:22 -070035#include <asm/prom.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <asm/timer.h>
37#include <asm/smp.h>
38#include <asm/starfire.h>
39#include <asm/uaccess.h>
40#include <asm/cache.h>
41#include <asm/cpudata.h>
David S. Miller63b61452005-06-27 17:04:45 -070042#include <asm/auxio.h>
David S. Miller92704a12006-02-26 23:27:19 -080043#include <asm/head.h>
David S. Miller4a907de2007-06-13 00:01:04 -070044#include <asm/hypervisor.h>
David S. Miller42d5f992007-10-13 23:03:21 -070045#include <asm/cacheflush.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
Linus Torvalds1da177e2005-04-16 15:20:36 -070047/* UPA nodes send interrupt packet to UltraSparc with first data reg
48 * value low 5 (7 on Starfire) bits holding the IRQ identifier being
49 * delivered. We must translate this into a non-vector IRQ so we can
50 * set the softint on this cpu.
51 *
52 * To make processing these packets efficient and race free we use
53 * an array of irq buckets below. The interrupt vector handler in
54 * entry.S feeds incoming packets into per-cpu pil-indexed lists.
David S. Millere18e2a02006-06-20 01:23:32 -070055 *
56 * If you make changes to ino_bucket, please update hand coded assembler
57 * of the vectored interrupt trap handler(s) in entry.S and sun4v_ivec.S
Linus Torvalds1da177e2005-04-16 15:20:36 -070058 */
David S. Millere18e2a02006-06-20 01:23:32 -070059struct ino_bucket {
David S. Miller42d5f992007-10-13 23:03:21 -070060/*0x00*/unsigned long __irq_chain_pa;
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
David S. Millere18e2a02006-06-20 01:23:32 -070062 /* Virtual interrupt number assigned to this INO. */
David S. Miller42d5f992007-10-13 23:03:21 -070063/*0x08*/unsigned int __virt_irq;
David S. Millera650d382007-10-12 02:59:40 -070064/*0x0c*/unsigned int __pad;
David S. Millere18e2a02006-06-20 01:23:32 -070065};
66
67#define NUM_IVECS (IMAP_INR + 1)
David S. Miller10397e42007-10-13 21:43:31 -070068struct ino_bucket *ivector_table;
David S. Millereb2d8d62007-10-13 21:42:46 -070069unsigned long ivector_table_pa;
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
David S. Miller42d5f992007-10-13 23:03:21 -070071/* On several sun4u processors, it is illegal to mix bypass and
72 * non-bypass accesses. Therefore we access all INO buckets
73 * using bypass accesses only.
74 */
75static unsigned long bucket_get_chain_pa(unsigned long bucket_pa)
76{
77 unsigned long ret;
78
79 __asm__ __volatile__("ldxa [%1] %2, %0"
80 : "=&r" (ret)
81 : "r" (bucket_pa +
82 offsetof(struct ino_bucket,
83 __irq_chain_pa)),
84 "i" (ASI_PHYS_USE_EC));
85
86 return ret;
87}
88
89static void bucket_clear_chain_pa(unsigned long bucket_pa)
90{
91 __asm__ __volatile__("stxa %%g0, [%0] %1"
92 : /* no outputs */
93 : "r" (bucket_pa +
94 offsetof(struct ino_bucket,
95 __irq_chain_pa)),
96 "i" (ASI_PHYS_USE_EC));
97}
98
99static unsigned int bucket_get_virt_irq(unsigned long bucket_pa)
100{
101 unsigned int ret;
102
103 __asm__ __volatile__("lduwa [%1] %2, %0"
104 : "=&r" (ret)
105 : "r" (bucket_pa +
106 offsetof(struct ino_bucket,
107 __virt_irq)),
108 "i" (ASI_PHYS_USE_EC));
109
110 return ret;
111}
112
113static void bucket_set_virt_irq(unsigned long bucket_pa,
114 unsigned int virt_irq)
115{
116 __asm__ __volatile__("stwa %0, [%1] %2"
117 : /* no outputs */
118 : "r" (virt_irq),
119 "r" (bucket_pa +
120 offsetof(struct ino_bucket,
121 __virt_irq)),
122 "i" (ASI_PHYS_USE_EC));
123}
124
David S. Millere18e2a02006-06-20 01:23:32 -0700125#define __irq_ino(irq) \
David S. Millera650d382007-10-12 02:59:40 -0700126 (((struct ino_bucket *)(irq)) - &ivector_table[0])
127#define __bucket(irq) ((struct ino_bucket *)(irq))
128#define __irq(bucket) ((unsigned long)(bucket))
David S. Millere18e2a02006-06-20 01:23:32 -0700129
David S. Millereb2d8d62007-10-13 21:42:46 -0700130#define irq_work_pa(__cpu) &(trap_block[(__cpu)].irq_worklist_pa)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131
David S. Miller93b32382007-07-20 02:58:28 -0700132static struct {
David S. Millera650d382007-10-12 02:59:40 -0700133 unsigned long irq;
David S. Miller93b32382007-07-20 02:58:28 -0700134 unsigned int dev_handle;
135 unsigned int dev_ino;
136} virt_to_real_irq_table[NR_IRQS];
David S. Miller759f89e2007-10-11 03:16:13 -0700137static DEFINE_SPINLOCK(virt_irq_alloc_lock);
David S. Miller8047e242006-06-20 01:22:35 -0700138
David S. Millera650d382007-10-12 02:59:40 -0700139unsigned char virt_irq_alloc(unsigned long real_irq)
David S. Miller8047e242006-06-20 01:22:35 -0700140{
David S. Miller759f89e2007-10-11 03:16:13 -0700141 unsigned long flags;
David S. Miller8047e242006-06-20 01:22:35 -0700142 unsigned char ent;
143
144 BUILD_BUG_ON(NR_IRQS >= 256);
145
David S. Miller759f89e2007-10-11 03:16:13 -0700146 spin_lock_irqsave(&virt_irq_alloc_lock, flags);
147
David S. Miller35a17eb2007-02-10 17:41:02 -0800148 for (ent = 1; ent < NR_IRQS; ent++) {
David S. Miller93b32382007-07-20 02:58:28 -0700149 if (!virt_to_real_irq_table[ent].irq)
David S. Miller35a17eb2007-02-10 17:41:02 -0800150 break;
151 }
David S. Miller8047e242006-06-20 01:22:35 -0700152 if (ent >= NR_IRQS) {
153 printk(KERN_ERR "IRQ: Out of virtual IRQs.\n");
David S. Miller759f89e2007-10-11 03:16:13 -0700154 ent = 0;
155 } else {
156 virt_to_real_irq_table[ent].irq = real_irq;
David S. Miller8047e242006-06-20 01:22:35 -0700157 }
158
David S. Miller759f89e2007-10-11 03:16:13 -0700159 spin_unlock_irqrestore(&virt_irq_alloc_lock, flags);
David S. Miller8047e242006-06-20 01:22:35 -0700160
161 return ent;
162}
163
David S. Miller5746c992007-02-20 01:26:48 -0800164#ifdef CONFIG_PCI_MSI
David S. Miller759f89e2007-10-11 03:16:13 -0700165void virt_irq_free(unsigned int virt_irq)
David S. Miller8047e242006-06-20 01:22:35 -0700166{
David S. Miller759f89e2007-10-11 03:16:13 -0700167 unsigned long flags;
David S. Miller8047e242006-06-20 01:22:35 -0700168
David S. Miller35a17eb2007-02-10 17:41:02 -0800169 if (virt_irq >= NR_IRQS)
170 return;
171
David S. Miller759f89e2007-10-11 03:16:13 -0700172 spin_lock_irqsave(&virt_irq_alloc_lock, flags);
173
David S. Miller93b32382007-07-20 02:58:28 -0700174 virt_to_real_irq_table[virt_irq].irq = 0;
David S. Miller35a17eb2007-02-10 17:41:02 -0800175
David S. Miller759f89e2007-10-11 03:16:13 -0700176 spin_unlock_irqrestore(&virt_irq_alloc_lock, flags);
David S. Miller8047e242006-06-20 01:22:35 -0700177}
David S. Miller5746c992007-02-20 01:26:48 -0800178#endif
David S. Miller8047e242006-06-20 01:22:35 -0700179
David S. Millera650d382007-10-12 02:59:40 -0700180static unsigned long virt_to_real_irq(unsigned char virt_irq)
David S. Miller8047e242006-06-20 01:22:35 -0700181{
David S. Miller93b32382007-07-20 02:58:28 -0700182 return virt_to_real_irq_table[virt_irq].irq;
David S. Miller8047e242006-06-20 01:22:35 -0700183}
184
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185/*
David S. Millere18e2a02006-06-20 01:23:32 -0700186 * /proc/interrupts printing:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188
189int show_interrupts(struct seq_file *p, void *v)
190{
David S. Millere18e2a02006-06-20 01:23:32 -0700191 int i = *(loff_t *) v, j;
192 struct irqaction * action;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194
David S. Millere18e2a02006-06-20 01:23:32 -0700195 if (i == 0) {
196 seq_printf(p, " ");
197 for_each_online_cpu(j)
198 seq_printf(p, "CPU%d ",j);
199 seq_putc(p, '\n');
200 }
201
202 if (i < NR_IRQS) {
203 spin_lock_irqsave(&irq_desc[i].lock, flags);
204 action = irq_desc[i].action;
205 if (!action)
206 goto skip;
207 seq_printf(p, "%3d: ",i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208#ifndef CONFIG_SMP
209 seq_printf(p, "%10u ", kstat_irqs(i));
210#else
David S. Millere18e2a02006-06-20 01:23:32 -0700211 for_each_online_cpu(j)
212 seq_printf(p, "%10u ", kstat_cpu(j).irqs[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213#endif
Ingo Molnard1bef4e2006-06-29 02:24:36 -0700214 seq_printf(p, " %9s", irq_desc[i].chip->typename);
David S. Millere18e2a02006-06-20 01:23:32 -0700215 seq_printf(p, " %s", action->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216
David S. Millere18e2a02006-06-20 01:23:32 -0700217 for (action=action->next; action; action = action->next)
218 seq_printf(p, ", %s", action->name);
219
220 seq_putc(p, '\n');
221skip:
222 spin_unlock_irqrestore(&irq_desc[i].lock, flags);
223 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 return 0;
225}
226
David S. Millerebd8c562006-02-17 08:38:06 -0800227static unsigned int sun4u_compute_tid(unsigned long imap, unsigned long cpuid)
228{
229 unsigned int tid;
230
231 if (this_is_starfire) {
232 tid = starfire_translate(imap, cpuid);
233 tid <<= IMAP_TID_SHIFT;
234 tid &= IMAP_TID_UPA;
235 } else {
236 if (tlb_type == cheetah || tlb_type == cheetah_plus) {
237 unsigned long ver;
238
239 __asm__ ("rdpr %%ver, %0" : "=r" (ver));
240 if ((ver >> 32UL) == __JALAPENO_ID ||
241 (ver >> 32UL) == __SERRANO_ID) {
242 tid = cpuid << IMAP_TID_SHIFT;
243 tid &= IMAP_TID_JBUS;
244 } else {
245 unsigned int a = cpuid & 0x1f;
246 unsigned int n = (cpuid >> 5) & 0x1f;
247
248 tid = ((a << IMAP_AID_SHIFT) |
249 (n << IMAP_NID_SHIFT));
250 tid &= (IMAP_AID_SAFARI |
251 IMAP_NID_SAFARI);;
252 }
253 } else {
254 tid = cpuid << IMAP_TID_SHIFT;
255 tid &= IMAP_TID_UPA;
256 }
257 }
258
259 return tid;
260}
261
David S. Millere18e2a02006-06-20 01:23:32 -0700262struct irq_handler_data {
263 unsigned long iclr;
264 unsigned long imap;
265
266 void (*pre_handler)(unsigned int, void *, void *);
267 void *pre_handler_arg1;
268 void *pre_handler_arg2;
269};
270
271static inline struct ino_bucket *virt_irq_to_bucket(unsigned int virt_irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272{
David S. Millera650d382007-10-12 02:59:40 -0700273 unsigned long real_irq = virt_to_real_irq(virt_irq);
David S. Millere18e2a02006-06-20 01:23:32 -0700274 struct ino_bucket *bucket = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275
David S. Millere18e2a02006-06-20 01:23:32 -0700276 if (likely(real_irq))
277 bucket = __bucket(real_irq);
David S. Miller8047e242006-06-20 01:22:35 -0700278
David S. Millere18e2a02006-06-20 01:23:32 -0700279 return bucket;
280}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281
David S. Millere18e2a02006-06-20 01:23:32 -0700282#ifdef CONFIG_SMP
283static int irq_choose_cpu(unsigned int virt_irq)
284{
Ingo Molnara53da522006-06-29 02:24:38 -0700285 cpumask_t mask = irq_desc[virt_irq].affinity;
David S. Millere18e2a02006-06-20 01:23:32 -0700286 int cpuid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287
David S. Millere18e2a02006-06-20 01:23:32 -0700288 if (cpus_equal(mask, CPU_MASK_ALL)) {
289 static int irq_rover;
290 static DEFINE_SPINLOCK(irq_rover_lock);
291 unsigned long flags;
David S. Millerebd8c562006-02-17 08:38:06 -0800292
David S. Millere18e2a02006-06-20 01:23:32 -0700293 /* Round-robin distribution... */
294 do_round_robin:
295 spin_lock_irqsave(&irq_rover_lock, flags);
296
297 while (!cpu_online(irq_rover)) {
298 if (++irq_rover >= NR_CPUS)
299 irq_rover = 0;
300 }
301 cpuid = irq_rover;
302 do {
303 if (++irq_rover >= NR_CPUS)
304 irq_rover = 0;
305 } while (!cpu_online(irq_rover));
306
307 spin_unlock_irqrestore(&irq_rover_lock, flags);
308 } else {
309 cpumask_t tmp;
310
311 cpus_and(tmp, cpu_online_map, mask);
312
313 if (cpus_empty(tmp))
314 goto do_round_robin;
315
316 cpuid = first_cpu(tmp);
317 }
318
319 return cpuid;
320}
321#else
322static int irq_choose_cpu(unsigned int virt_irq)
323{
324 return real_hard_smp_processor_id();
325}
326#endif
327
328static void sun4u_irq_enable(unsigned int virt_irq)
329{
David S. Miller68c92182007-01-29 12:12:28 -0800330 struct irq_handler_data *data = get_irq_chip_data(virt_irq);
David S. Millere18e2a02006-06-20 01:23:32 -0700331
332 if (likely(data)) {
David S. Miller861fe902007-05-02 17:31:36 -0700333 unsigned long cpuid, imap, val;
David S. Millere18e2a02006-06-20 01:23:32 -0700334 unsigned int tid;
335
336 cpuid = irq_choose_cpu(virt_irq);
337 imap = data->imap;
338
339 tid = sun4u_compute_tid(imap, cpuid);
340
David S. Miller861fe902007-05-02 17:31:36 -0700341 val = upa_readq(imap);
342 val &= ~(IMAP_TID_UPA | IMAP_TID_JBUS |
343 IMAP_AID_SAFARI | IMAP_NID_SAFARI);
344 val |= tid | IMAP_VALID;
345 upa_writeq(val, imap);
David S. Millere18e2a02006-06-20 01:23:32 -0700346 }
347}
348
David S. Millerb53bcb62007-07-14 03:16:13 -0700349static void sun4u_set_affinity(unsigned int virt_irq, cpumask_t mask)
350{
351 sun4u_irq_enable(virt_irq);
352}
353
David S. Millere18e2a02006-06-20 01:23:32 -0700354static void sun4u_irq_disable(unsigned int virt_irq)
355{
David S. Miller68c92182007-01-29 12:12:28 -0800356 struct irq_handler_data *data = get_irq_chip_data(virt_irq);
David S. Millere18e2a02006-06-20 01:23:32 -0700357
358 if (likely(data)) {
359 unsigned long imap = data->imap;
David S. Miller6e69d602007-08-28 14:25:32 -0700360 unsigned long tmp = upa_readq(imap);
David S. Millere18e2a02006-06-20 01:23:32 -0700361
362 tmp &= ~IMAP_VALID;
David S. Miller861fe902007-05-02 17:31:36 -0700363 upa_writeq(tmp, imap);
David S. Millere18e2a02006-06-20 01:23:32 -0700364 }
365}
366
367static void sun4u_irq_end(unsigned int virt_irq)
368{
David S. Miller68c92182007-01-29 12:12:28 -0800369 struct irq_handler_data *data = get_irq_chip_data(virt_irq);
David S. Miller5a606b72007-07-09 22:40:36 -0700370 struct irq_desc *desc = irq_desc + virt_irq;
371
372 if (unlikely(desc->status & (IRQ_DISABLED|IRQ_INPROGRESS)))
373 return;
David S. Millere18e2a02006-06-20 01:23:32 -0700374
375 if (likely(data))
David S. Miller861fe902007-05-02 17:31:36 -0700376 upa_writeq(ICLR_IDLE, data->iclr);
David S. Millere18e2a02006-06-20 01:23:32 -0700377}
378
379static void sun4v_irq_enable(unsigned int virt_irq)
380{
381 struct ino_bucket *bucket = virt_irq_to_bucket(virt_irq);
382 unsigned int ino = bucket - &ivector_table[0];
383
384 if (likely(bucket)) {
385 unsigned long cpuid;
David S. Millerc4bea282006-02-13 22:56:27 -0800386 int err;
David S. Miller10951ee2006-02-13 18:22:57 -0800387
David S. Millere18e2a02006-06-20 01:23:32 -0700388 cpuid = irq_choose_cpu(virt_irq);
389
David S. Millerebd8c562006-02-17 08:38:06 -0800390 err = sun4v_intr_settarget(ino, cpuid);
David S. Millerc4bea282006-02-13 22:56:27 -0800391 if (err != HV_EOK)
David S. Millere83fb172007-07-20 02:39:04 -0700392 printk(KERN_ERR "sun4v_intr_settarget(%x,%lu): "
393 "err(%d)\n", ino, cpuid, err);
David S. Millera357b8f2007-06-26 00:13:31 -0700394 err = sun4v_intr_setstate(ino, HV_INTR_STATE_IDLE);
395 if (err != HV_EOK)
David S. Millere83fb172007-07-20 02:39:04 -0700396 printk(KERN_ERR "sun4v_intr_setstate(%x): "
David S. Millera357b8f2007-06-26 00:13:31 -0700397 "err(%d)\n", ino, err);
David S. Millerabd92b22006-02-14 22:20:13 -0800398 err = sun4v_intr_setenabled(ino, HV_INTR_ENABLED);
David S. Millerc4bea282006-02-13 22:56:27 -0800399 if (err != HV_EOK)
David S. Millere83fb172007-07-20 02:39:04 -0700400 printk(KERN_ERR "sun4v_intr_setenabled(%x): err(%d)\n",
David S. Millerc4bea282006-02-13 22:56:27 -0800401 ino, err);
David S. Millerd82ace72006-02-09 02:52:44 -0800402 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403}
404
David S. Millerb53bcb62007-07-14 03:16:13 -0700405static void sun4v_set_affinity(unsigned int virt_irq, cpumask_t mask)
406{
407 struct ino_bucket *bucket = virt_irq_to_bucket(virt_irq);
408 unsigned int ino = bucket - &ivector_table[0];
409
410 if (likely(bucket)) {
411 unsigned long cpuid;
412 int err;
413
414 cpuid = irq_choose_cpu(virt_irq);
415
416 err = sun4v_intr_settarget(ino, cpuid);
417 if (err != HV_EOK)
David S. Millere83fb172007-07-20 02:39:04 -0700418 printk(KERN_ERR "sun4v_intr_settarget(%x,%lu): "
419 "err(%d)\n", ino, cpuid, err);
David S. Millerb53bcb62007-07-14 03:16:13 -0700420 }
421}
422
David S. Millere18e2a02006-06-20 01:23:32 -0700423static void sun4v_irq_disable(unsigned int virt_irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424{
David S. Millere18e2a02006-06-20 01:23:32 -0700425 struct ino_bucket *bucket = virt_irq_to_bucket(virt_irq);
426 unsigned int ino = bucket - &ivector_table[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427
David S. Millere18e2a02006-06-20 01:23:32 -0700428 if (likely(bucket)) {
David S. Miller8047e242006-06-20 01:22:35 -0700429 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430
David S. Miller8047e242006-06-20 01:22:35 -0700431 err = sun4v_intr_setenabled(ino, HV_INTR_DISABLED);
432 if (err != HV_EOK)
David S. Millere83fb172007-07-20 02:39:04 -0700433 printk(KERN_ERR "sun4v_intr_setenabled(%x): "
David S. Miller8047e242006-06-20 01:22:35 -0700434 "err(%d)\n", ino, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 }
436}
437
David S. Millere18e2a02006-06-20 01:23:32 -0700438static void sun4v_irq_end(unsigned int virt_irq)
David S. Miller088dd1f2005-07-04 13:24:38 -0700439{
David S. Millere18e2a02006-06-20 01:23:32 -0700440 struct ino_bucket *bucket = virt_irq_to_bucket(virt_irq);
441 unsigned int ino = bucket - &ivector_table[0];
David S. Miller5a606b72007-07-09 22:40:36 -0700442 struct irq_desc *desc = irq_desc + virt_irq;
443
444 if (unlikely(desc->status & (IRQ_DISABLED|IRQ_INPROGRESS)))
445 return;
David S. Millere18e2a02006-06-20 01:23:32 -0700446
447 if (likely(bucket)) {
448 int err;
449
450 err = sun4v_intr_setstate(ino, HV_INTR_STATE_IDLE);
451 if (err != HV_EOK)
David S. Millere83fb172007-07-20 02:39:04 -0700452 printk(KERN_ERR "sun4v_intr_setstate(%x): "
David S. Millere18e2a02006-06-20 01:23:32 -0700453 "err(%d)\n", ino, err);
454 }
David S. Miller088dd1f2005-07-04 13:24:38 -0700455}
456
David S. Miller4a907de2007-06-13 00:01:04 -0700457static void sun4v_virq_enable(unsigned int virt_irq)
458{
459 struct ino_bucket *bucket = virt_irq_to_bucket(virt_irq);
David S. Miller4a907de2007-06-13 00:01:04 -0700460
461 if (likely(bucket)) {
462 unsigned long cpuid, dev_handle, dev_ino;
463 int err;
464
465 cpuid = irq_choose_cpu(virt_irq);
466
David S. Miller93b32382007-07-20 02:58:28 -0700467 dev_handle = virt_to_real_irq_table[virt_irq].dev_handle;
468 dev_ino = virt_to_real_irq_table[virt_irq].dev_ino;
David S. Miller4a907de2007-06-13 00:01:04 -0700469
470 err = sun4v_vintr_set_target(dev_handle, dev_ino, cpuid);
471 if (err != HV_EOK)
David S. Millere83fb172007-07-20 02:39:04 -0700472 printk(KERN_ERR "sun4v_vintr_set_target(%lx,%lx,%lu): "
David S. Miller4a907de2007-06-13 00:01:04 -0700473 "err(%d)\n",
474 dev_handle, dev_ino, cpuid, err);
475 err = sun4v_vintr_set_state(dev_handle, dev_ino,
David S. Miller12450882007-06-26 00:13:09 -0700476 HV_INTR_STATE_IDLE);
477 if (err != HV_EOK)
David S. Millere83fb172007-07-20 02:39:04 -0700478 printk(KERN_ERR "sun4v_vintr_set_state(%lx,%lx,"
David S. Miller12450882007-06-26 00:13:09 -0700479 "HV_INTR_STATE_IDLE): err(%d)\n",
480 dev_handle, dev_ino, err);
481 err = sun4v_vintr_set_valid(dev_handle, dev_ino,
David S. Miller4a907de2007-06-13 00:01:04 -0700482 HV_INTR_ENABLED);
483 if (err != HV_EOK)
David S. Millere83fb172007-07-20 02:39:04 -0700484 printk(KERN_ERR "sun4v_vintr_set_state(%lx,%lx,"
David S. Miller4a907de2007-06-13 00:01:04 -0700485 "HV_INTR_ENABLED): err(%d)\n",
486 dev_handle, dev_ino, err);
487 }
488}
489
David S. Millerb53bcb62007-07-14 03:16:13 -0700490static void sun4v_virt_set_affinity(unsigned int virt_irq, cpumask_t mask)
491{
492 struct ino_bucket *bucket = virt_irq_to_bucket(virt_irq);
David S. Millerb53bcb62007-07-14 03:16:13 -0700493
494 if (likely(bucket)) {
495 unsigned long cpuid, dev_handle, dev_ino;
496 int err;
497
498 cpuid = irq_choose_cpu(virt_irq);
499
David S. Miller93b32382007-07-20 02:58:28 -0700500 dev_handle = virt_to_real_irq_table[virt_irq].dev_handle;
501 dev_ino = virt_to_real_irq_table[virt_irq].dev_ino;
David S. Millerb53bcb62007-07-14 03:16:13 -0700502
503 err = sun4v_vintr_set_target(dev_handle, dev_ino, cpuid);
504 if (err != HV_EOK)
David S. Millere83fb172007-07-20 02:39:04 -0700505 printk(KERN_ERR "sun4v_vintr_set_target(%lx,%lx,%lu): "
David S. Millerb53bcb62007-07-14 03:16:13 -0700506 "err(%d)\n",
507 dev_handle, dev_ino, cpuid, err);
508 }
509}
510
David S. Miller4a907de2007-06-13 00:01:04 -0700511static void sun4v_virq_disable(unsigned int virt_irq)
512{
513 struct ino_bucket *bucket = virt_irq_to_bucket(virt_irq);
David S. Miller4a907de2007-06-13 00:01:04 -0700514
515 if (likely(bucket)) {
516 unsigned long dev_handle, dev_ino;
517 int err;
518
David S. Miller93b32382007-07-20 02:58:28 -0700519 dev_handle = virt_to_real_irq_table[virt_irq].dev_handle;
520 dev_ino = virt_to_real_irq_table[virt_irq].dev_ino;
David S. Miller4a907de2007-06-13 00:01:04 -0700521
David S. Miller12450882007-06-26 00:13:09 -0700522 err = sun4v_vintr_set_valid(dev_handle, dev_ino,
David S. Miller4a907de2007-06-13 00:01:04 -0700523 HV_INTR_DISABLED);
524 if (err != HV_EOK)
David S. Millere83fb172007-07-20 02:39:04 -0700525 printk(KERN_ERR "sun4v_vintr_set_state(%lx,%lx,"
David S. Miller4a907de2007-06-13 00:01:04 -0700526 "HV_INTR_DISABLED): err(%d)\n",
527 dev_handle, dev_ino, err);
528 }
529}
530
531static void sun4v_virq_end(unsigned int virt_irq)
532{
533 struct ino_bucket *bucket = virt_irq_to_bucket(virt_irq);
David S. Miller5a606b72007-07-09 22:40:36 -0700534 struct irq_desc *desc = irq_desc + virt_irq;
535
536 if (unlikely(desc->status & (IRQ_DISABLED|IRQ_INPROGRESS)))
537 return;
David S. Miller4a907de2007-06-13 00:01:04 -0700538
539 if (likely(bucket)) {
540 unsigned long dev_handle, dev_ino;
541 int err;
542
David S. Miller93b32382007-07-20 02:58:28 -0700543 dev_handle = virt_to_real_irq_table[virt_irq].dev_handle;
544 dev_ino = virt_to_real_irq_table[virt_irq].dev_ino;
David S. Miller4a907de2007-06-13 00:01:04 -0700545
546 err = sun4v_vintr_set_state(dev_handle, dev_ino,
547 HV_INTR_STATE_IDLE);
548 if (err != HV_EOK)
David S. Millere83fb172007-07-20 02:39:04 -0700549 printk(KERN_ERR "sun4v_vintr_set_state(%lx,%lx,"
David S. Miller4a907de2007-06-13 00:01:04 -0700550 "HV_INTR_STATE_IDLE): err(%d)\n",
551 dev_handle, dev_ino, err);
552 }
553}
554
David S. Millere18e2a02006-06-20 01:23:32 -0700555static void run_pre_handler(unsigned int virt_irq)
556{
557 struct ino_bucket *bucket = virt_irq_to_bucket(virt_irq);
David S. Miller68c92182007-01-29 12:12:28 -0800558 struct irq_handler_data *data = get_irq_chip_data(virt_irq);
David S. Millere18e2a02006-06-20 01:23:32 -0700559
560 if (likely(data->pre_handler)) {
561 data->pre_handler(__irq_ino(__irq(bucket)),
562 data->pre_handler_arg1,
563 data->pre_handler_arg2);
564 }
565}
566
David S. Miller729e7d72006-12-12 00:59:12 -0800567static struct irq_chip sun4u_irq = {
David S. Millere18e2a02006-06-20 01:23:32 -0700568 .typename = "sun4u",
569 .enable = sun4u_irq_enable,
570 .disable = sun4u_irq_disable,
571 .end = sun4u_irq_end,
David S. Millerb53bcb62007-07-14 03:16:13 -0700572 .set_affinity = sun4u_set_affinity,
David S. Millere18e2a02006-06-20 01:23:32 -0700573};
574
David S. Miller729e7d72006-12-12 00:59:12 -0800575static struct irq_chip sun4u_irq_ack = {
David S. Millere18e2a02006-06-20 01:23:32 -0700576 .typename = "sun4u+ack",
577 .enable = sun4u_irq_enable,
578 .disable = sun4u_irq_disable,
579 .ack = run_pre_handler,
580 .end = sun4u_irq_end,
David S. Millerb53bcb62007-07-14 03:16:13 -0700581 .set_affinity = sun4u_set_affinity,
David S. Millere18e2a02006-06-20 01:23:32 -0700582};
583
David S. Miller729e7d72006-12-12 00:59:12 -0800584static struct irq_chip sun4v_irq = {
David S. Millere18e2a02006-06-20 01:23:32 -0700585 .typename = "sun4v",
586 .enable = sun4v_irq_enable,
587 .disable = sun4v_irq_disable,
588 .end = sun4v_irq_end,
David S. Millerb53bcb62007-07-14 03:16:13 -0700589 .set_affinity = sun4v_set_affinity,
David S. Millere18e2a02006-06-20 01:23:32 -0700590};
591
David S. Miller4a907de2007-06-13 00:01:04 -0700592static struct irq_chip sun4v_virq = {
593 .typename = "vsun4v",
594 .enable = sun4v_virq_enable,
595 .disable = sun4v_virq_disable,
596 .end = sun4v_virq_end,
David S. Millerb53bcb62007-07-14 03:16:13 -0700597 .set_affinity = sun4v_virt_set_affinity,
David S. Miller4a907de2007-06-13 00:01:04 -0700598};
599
David S. Millere18e2a02006-06-20 01:23:32 -0700600void irq_install_pre_handler(int virt_irq,
601 void (*func)(unsigned int, void *, void *),
602 void *arg1, void *arg2)
603{
David S. Miller68c92182007-01-29 12:12:28 -0800604 struct irq_handler_data *data = get_irq_chip_data(virt_irq);
David S. Miller759f89e2007-10-11 03:16:13 -0700605 struct irq_chip *chip = get_irq_chip(virt_irq);
606
607 if (WARN_ON(chip == &sun4v_irq || chip == &sun4v_virq)) {
608 printk(KERN_ERR "IRQ: Trying to install pre-handler on "
609 "sun4v irq %u\n", virt_irq);
610 return;
611 }
David S. Millere18e2a02006-06-20 01:23:32 -0700612
613 data->pre_handler = func;
614 data->pre_handler_arg1 = arg1;
615 data->pre_handler_arg2 = arg2;
616
David S. Miller759f89e2007-10-11 03:16:13 -0700617 if (chip == &sun4u_irq_ack)
David S. Miller24ac26d2006-06-29 14:38:21 -0700618 return;
619
David S. Miller759f89e2007-10-11 03:16:13 -0700620 set_irq_chip(virt_irq, &sun4u_irq_ack);
David S. Millere18e2a02006-06-20 01:23:32 -0700621}
622
623unsigned int build_irq(int inofixup, unsigned long iclr, unsigned long imap)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624{
625 struct ino_bucket *bucket;
David S. Millere18e2a02006-06-20 01:23:32 -0700626 struct irq_handler_data *data;
David S. Miller42d5f992007-10-13 23:03:21 -0700627 unsigned int virt_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 int ino;
629
David S. Miller10951ee2006-02-13 18:22:57 -0800630 BUG_ON(tlb_type == hypervisor);
631
David S. Miller861fe902007-05-02 17:31:36 -0700632 ino = (upa_readq(imap) & (IMAP_IGN | IMAP_INO)) + inofixup;
David S. Miller088dd1f2005-07-04 13:24:38 -0700633 bucket = &ivector_table[ino];
David S. Miller42d5f992007-10-13 23:03:21 -0700634 virt_irq = bucket_get_virt_irq(__pa(bucket));
635 if (!virt_irq) {
636 virt_irq = virt_irq_alloc(__irq(bucket));
637 bucket_set_virt_irq(__pa(bucket), virt_irq);
638 set_irq_chip(virt_irq, &sun4u_irq);
David S. Miller088dd1f2005-07-04 13:24:38 -0700639 }
640
David S. Miller42d5f992007-10-13 23:03:21 -0700641 data = get_irq_chip_data(virt_irq);
David S. Miller68c92182007-01-29 12:12:28 -0800642 if (unlikely(data))
David S. Millere18e2a02006-06-20 01:23:32 -0700643 goto out;
644
645 data = kzalloc(sizeof(struct irq_handler_data), GFP_ATOMIC);
646 if (unlikely(!data)) {
647 prom_printf("IRQ: kzalloc(irq_handler_data) failed.\n");
David S. Miller088dd1f2005-07-04 13:24:38 -0700648 prom_halt();
649 }
David S. Miller42d5f992007-10-13 23:03:21 -0700650 set_irq_chip_data(virt_irq, data);
David S. Miller088dd1f2005-07-04 13:24:38 -0700651
David S. Millere18e2a02006-06-20 01:23:32 -0700652 data->imap = imap;
653 data->iclr = iclr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654
David S. Miller088dd1f2005-07-04 13:24:38 -0700655out:
David S. Miller42d5f992007-10-13 23:03:21 -0700656 return virt_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657}
658
David S. Miller4a907de2007-06-13 00:01:04 -0700659static unsigned int sun4v_build_common(unsigned long sysino,
660 struct irq_chip *chip)
David S. Millere3999572006-02-13 18:16:10 -0800661{
662 struct ino_bucket *bucket;
David S. Millere18e2a02006-06-20 01:23:32 -0700663 struct irq_handler_data *data;
David S. Miller42d5f992007-10-13 23:03:21 -0700664 unsigned int virt_irq;
David S. Millere18e2a02006-06-20 01:23:32 -0700665
666 BUG_ON(tlb_type != hypervisor);
David S. Millere3999572006-02-13 18:16:10 -0800667
David S. Millere3999572006-02-13 18:16:10 -0800668 bucket = &ivector_table[sysino];
David S. Miller42d5f992007-10-13 23:03:21 -0700669 virt_irq = bucket_get_virt_irq(__pa(bucket));
670 if (!virt_irq) {
671 virt_irq = virt_irq_alloc(__irq(bucket));
672 bucket_set_virt_irq(__pa(bucket), virt_irq);
673 set_irq_chip(virt_irq, chip);
David S. Millere18e2a02006-06-20 01:23:32 -0700674 }
675
David S. Miller42d5f992007-10-13 23:03:21 -0700676 data = get_irq_chip_data(virt_irq);
David S. Miller68c92182007-01-29 12:12:28 -0800677 if (unlikely(data))
David S. Millere18e2a02006-06-20 01:23:32 -0700678 goto out;
679
680 data = kzalloc(sizeof(struct irq_handler_data), GFP_ATOMIC);
681 if (unlikely(!data)) {
682 prom_printf("IRQ: kzalloc(irq_handler_data) failed.\n");
683 prom_halt();
684 }
David S. Miller42d5f992007-10-13 23:03:21 -0700685 set_irq_chip_data(virt_irq, data);
David S. Millere3999572006-02-13 18:16:10 -0800686
687 /* Catch accidental accesses to these things. IMAP/ICLR handling
688 * is done by hypervisor calls on sun4v platforms, not by direct
689 * register accesses.
690 */
David S. Millere18e2a02006-06-20 01:23:32 -0700691 data->imap = ~0UL;
692 data->iclr = ~0UL;
David S. Millere3999572006-02-13 18:16:10 -0800693
David S. Millere18e2a02006-06-20 01:23:32 -0700694out:
David S. Miller42d5f992007-10-13 23:03:21 -0700695 return virt_irq;
David S. Millere3999572006-02-13 18:16:10 -0800696}
697
David S. Miller4a907de2007-06-13 00:01:04 -0700698unsigned int sun4v_build_irq(u32 devhandle, unsigned int devino)
699{
700 unsigned long sysino = sun4v_devino_to_sysino(devhandle, devino);
701
702 return sun4v_build_common(sysino, &sun4v_irq);
703}
704
705unsigned int sun4v_build_virq(u32 devhandle, unsigned int devino)
706{
David S. Millerb80e6992007-10-13 21:51:37 -0700707 struct irq_handler_data *data;
708 struct ino_bucket *bucket;
709 unsigned long hv_err, cookie;
David S. Miller42d5f992007-10-13 23:03:21 -0700710 unsigned int virt_irq;
David S. Miller4a907de2007-06-13 00:01:04 -0700711
David S. Millerb80e6992007-10-13 21:51:37 -0700712 bucket = kzalloc(sizeof(struct ino_bucket), GFP_ATOMIC);
713 if (unlikely(!bucket))
714 return 0;
David S. Miller42d5f992007-10-13 23:03:21 -0700715 __flush_dcache_range((unsigned long) bucket,
716 ((unsigned long) bucket +
717 sizeof(struct ino_bucket)));
David S. Miller4a907de2007-06-13 00:01:04 -0700718
David S. Miller42d5f992007-10-13 23:03:21 -0700719 virt_irq = virt_irq_alloc(__irq(bucket));
720 bucket_set_virt_irq(__pa(bucket), virt_irq);
721 set_irq_chip(virt_irq, &sun4v_virq);
David S. Miller4a907de2007-06-13 00:01:04 -0700722
David S. Millerb80e6992007-10-13 21:51:37 -0700723 data = kzalloc(sizeof(struct irq_handler_data), GFP_ATOMIC);
724 if (unlikely(!data))
725 return 0;
726
David S. Miller42d5f992007-10-13 23:03:21 -0700727 set_irq_chip_data(virt_irq, data);
David S. Millerb80e6992007-10-13 21:51:37 -0700728
729 /* Catch accidental accesses to these things. IMAP/ICLR handling
730 * is done by hypervisor calls on sun4v platforms, not by direct
731 * register accesses.
732 */
733 data->imap = ~0UL;
734 data->iclr = ~0UL;
735
736 cookie = ~__pa(bucket);
737 hv_err = sun4v_vintr_set_cookie(devhandle, devino, cookie);
David S. Miller4a907de2007-06-13 00:01:04 -0700738 if (hv_err) {
739 prom_printf("IRQ: Fatal, cannot set cookie for [%x:%x] "
740 "err=%lu\n", devhandle, devino, hv_err);
741 prom_halt();
742 }
743
David S. Miller42d5f992007-10-13 23:03:21 -0700744 virt_to_real_irq_table[virt_irq].dev_handle = devhandle;
745 virt_to_real_irq_table[virt_irq].dev_ino = devino;
David S. Miller93b32382007-07-20 02:58:28 -0700746
David S. Miller42d5f992007-10-13 23:03:21 -0700747 return virt_irq;
David S. Miller4a907de2007-06-13 00:01:04 -0700748}
749
David S. Millere18e2a02006-06-20 01:23:32 -0700750void ack_bad_irq(unsigned int virt_irq)
David S. Miller088dd1f2005-07-04 13:24:38 -0700751{
David S. Millere18e2a02006-06-20 01:23:32 -0700752 struct ino_bucket *bucket = virt_irq_to_bucket(virt_irq);
753 unsigned int ino = 0xdeadbeef;
David S. Miller088dd1f2005-07-04 13:24:38 -0700754
David S. Millere18e2a02006-06-20 01:23:32 -0700755 if (bucket)
756 ino = bucket - &ivector_table[0];
David S. Miller088dd1f2005-07-04 13:24:38 -0700757
David S. Millere18e2a02006-06-20 01:23:32 -0700758 printk(KERN_CRIT "Unexpected IRQ from ino[%x] virt_irq[%u]\n",
759 ino, virt_irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760}
761
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762void handler_irq(int irq, struct pt_regs *regs)
763{
David S. Millereb2d8d62007-10-13 21:42:46 -0700764 unsigned long pstate, bucket_pa;
Al Viro6d24c8d2006-10-08 08:23:28 -0400765 struct pt_regs *old_regs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 clear_softint(1 << irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768
Al Viro6d24c8d2006-10-08 08:23:28 -0400769 old_regs = set_irq_regs(regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 irq_enter();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771
David S. Millera650d382007-10-12 02:59:40 -0700772 /* Grab an atomic snapshot of the pending IVECs. */
773 __asm__ __volatile__("rdpr %%pstate, %0\n\t"
774 "wrpr %0, %3, %%pstate\n\t"
775 "ldx [%2], %1\n\t"
776 "stx %%g0, [%2]\n\t"
777 "wrpr %0, 0x0, %%pstate\n\t"
David S. Millereb2d8d62007-10-13 21:42:46 -0700778 : "=&r" (pstate), "=&r" (bucket_pa)
779 : "r" (irq_work_pa(smp_processor_id())),
David S. Millera650d382007-10-12 02:59:40 -0700780 "i" (PSTATE_IE)
781 : "memory");
782
David S. Millereb2d8d62007-10-13 21:42:46 -0700783 while (bucket_pa) {
784 unsigned long next_pa;
785 unsigned int virt_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786
David S. Miller42d5f992007-10-13 23:03:21 -0700787 next_pa = bucket_get_chain_pa(bucket_pa);
788 virt_irq = bucket_get_virt_irq(bucket_pa);
789 bucket_clear_chain_pa(bucket_pa);
David S. Millerfd0504c32006-06-20 01:20:00 -0700790
David S. Millereb2d8d62007-10-13 21:42:46 -0700791 __do_IRQ(virt_irq);
792
793 bucket_pa = next_pa;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 }
David S. Millere18e2a02006-06-20 01:23:32 -0700795
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 irq_exit();
Al Viro6d24c8d2006-10-08 08:23:28 -0400797 set_irq_regs(old_regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798}
799
David S. Millere02044092007-07-16 03:49:40 -0700800#ifdef CONFIG_HOTPLUG_CPU
801void fixup_irqs(void)
802{
803 unsigned int irq;
804
805 for (irq = 0; irq < NR_IRQS; irq++) {
806 unsigned long flags;
807
808 spin_lock_irqsave(&irq_desc[irq].lock, flags);
809 if (irq_desc[irq].action &&
810 !(irq_desc[irq].status & IRQ_PER_CPU)) {
811 if (irq_desc[irq].chip->set_affinity)
812 irq_desc[irq].chip->set_affinity(irq,
813 irq_desc[irq].affinity);
814 }
815 spin_unlock_irqrestore(&irq_desc[irq].lock, flags);
816 }
817}
818#endif
819
David S. Millercdd51862005-07-24 19:36:13 -0700820struct sun5_timer {
821 u64 count0;
822 u64 limit0;
823 u64 count1;
824 u64 limit1;
825};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826
David S. Millercdd51862005-07-24 19:36:13 -0700827static struct sun5_timer *prom_timers;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828static u64 prom_limit0, prom_limit1;
829
830static void map_prom_timers(void)
831{
David S. Miller25c75812006-06-22 20:21:22 -0700832 struct device_node *dp;
Stephen Rothwell6a23acf2007-04-23 15:53:27 -0700833 const unsigned int *addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834
835 /* PROM timer node hangs out in the top level of device siblings... */
David S. Miller25c75812006-06-22 20:21:22 -0700836 dp = of_find_node_by_path("/");
837 dp = dp->child;
838 while (dp) {
839 if (!strcmp(dp->name, "counter-timer"))
840 break;
841 dp = dp->sibling;
842 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843
844 /* Assume if node is not present, PROM uses different tick mechanism
845 * which we should not care about.
846 */
David S. Miller25c75812006-06-22 20:21:22 -0700847 if (!dp) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 prom_timers = (struct sun5_timer *) 0;
849 return;
850 }
851
852 /* If PROM is really using this, it must be mapped by him. */
David S. Miller25c75812006-06-22 20:21:22 -0700853 addr = of_get_property(dp, "address", NULL);
854 if (!addr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 prom_printf("PROM does not have timer mapped, trying to continue.\n");
856 prom_timers = (struct sun5_timer *) 0;
857 return;
858 }
859 prom_timers = (struct sun5_timer *) ((unsigned long)addr[0]);
860}
861
862static void kill_prom_timer(void)
863{
864 if (!prom_timers)
865 return;
866
867 /* Save them away for later. */
868 prom_limit0 = prom_timers->limit0;
869 prom_limit1 = prom_timers->limit1;
870
871 /* Just as in sun4c/sun4m PROM uses timer which ticks at IRQ 14.
872 * We turn both off here just to be paranoid.
873 */
874 prom_timers->limit0 = 0;
875 prom_timers->limit1 = 0;
876
877 /* Wheee, eat the interrupt packet too... */
878 __asm__ __volatile__(
879" mov 0x40, %%g2\n"
880" ldxa [%%g0] %0, %%g1\n"
881" ldxa [%%g2] %1, %%g1\n"
882" stxa %%g0, [%%g0] %0\n"
883" membar #Sync\n"
884 : /* no outputs */
885 : "i" (ASI_INTR_RECEIVE), "i" (ASI_INTR_R)
886 : "g1", "g2");
887}
888
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889void init_irqwork_curcpu(void)
890{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 int cpu = hard_smp_processor_id();
892
David S. Millereb2d8d62007-10-13 21:42:46 -0700893 trap_block[cpu].irq_worklist_pa = 0UL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894}
895
David S. Miller5cbc3072007-05-25 15:49:59 -0700896/* Please be very careful with register_one_mondo() and
897 * sun4v_register_mondo_queues().
898 *
899 * On SMP this gets invoked from the CPU trampoline before
900 * the cpu has fully taken over the trap table from OBP,
901 * and it's kernel stack + %g6 thread register state is
902 * not fully cooked yet.
903 *
904 * Therefore you cannot make any OBP calls, not even prom_printf,
905 * from these two routines.
906 */
907static void __cpuinit register_one_mondo(unsigned long paddr, unsigned long type, unsigned long qmask)
David S. Millerac29c112006-02-08 00:08:23 -0800908{
David S. Miller5cbc3072007-05-25 15:49:59 -0700909 unsigned long num_entries = (qmask + 1) / 64;
David S. Miller94f87622006-02-16 14:26:53 -0800910 unsigned long status;
David S. Millerac29c112006-02-08 00:08:23 -0800911
David S. Miller94f87622006-02-16 14:26:53 -0800912 status = sun4v_cpu_qconf(type, paddr, num_entries);
913 if (status != HV_EOK) {
914 prom_printf("SUN4V: sun4v_cpu_qconf(%lu:%lx:%lu) failed, "
915 "err %lu\n", type, paddr, num_entries, status);
David S. Millerac29c112006-02-08 00:08:23 -0800916 prom_halt();
917 }
918}
919
David S. Millerb434e712007-08-08 17:32:33 -0700920void __cpuinit sun4v_register_mondo_queues(int this_cpu)
David S. Miller5b0c05722006-02-08 02:53:50 -0800921{
David S. Millerb5a37e92006-02-11 23:07:13 -0800922 struct trap_per_cpu *tb = &trap_block[this_cpu];
923
David S. Miller5cbc3072007-05-25 15:49:59 -0700924 register_one_mondo(tb->cpu_mondo_pa, HV_CPU_QUEUE_CPU_MONDO,
925 tb->cpu_mondo_qmask);
926 register_one_mondo(tb->dev_mondo_pa, HV_CPU_QUEUE_DEVICE_MONDO,
927 tb->dev_mondo_qmask);
928 register_one_mondo(tb->resum_mondo_pa, HV_CPU_QUEUE_RES_ERROR,
929 tb->resum_qmask);
930 register_one_mondo(tb->nonresum_mondo_pa, HV_CPU_QUEUE_NONRES_ERROR,
931 tb->nonresum_qmask);
David S. Millerb5a37e92006-02-11 23:07:13 -0800932}
933
David S. Millerb434e712007-08-08 17:32:33 -0700934static void __init alloc_one_mondo(unsigned long *pa_ptr, unsigned long qmask)
David S. Millerb5a37e92006-02-11 23:07:13 -0800935{
David S. Miller5cbc3072007-05-25 15:49:59 -0700936 unsigned long size = PAGE_ALIGN(qmask + 1);
David S. Millerb434e712007-08-08 17:32:33 -0700937 void *p = __alloc_bootmem_low(size, size, 0);
David S. Miller5cbc3072007-05-25 15:49:59 -0700938 if (!p) {
David S. Millerb5a37e92006-02-11 23:07:13 -0800939 prom_printf("SUN4V: Error, cannot allocate mondo queue.\n");
940 prom_halt();
941 }
942
David S. Miller5cbc3072007-05-25 15:49:59 -0700943 *pa_ptr = __pa(p);
David S. Millerb5a37e92006-02-11 23:07:13 -0800944}
945
David S. Millerb434e712007-08-08 17:32:33 -0700946static void __init alloc_one_kbuf(unsigned long *pa_ptr, unsigned long qmask)
David S. Millerb5a37e92006-02-11 23:07:13 -0800947{
David S. Miller5cbc3072007-05-25 15:49:59 -0700948 unsigned long size = PAGE_ALIGN(qmask + 1);
David S. Millerb434e712007-08-08 17:32:33 -0700949 void *p = __alloc_bootmem_low(size, size, 0);
David S. Miller5b0c05722006-02-08 02:53:50 -0800950
David S. Miller5cbc3072007-05-25 15:49:59 -0700951 if (!p) {
David S. Miller5b0c05722006-02-08 02:53:50 -0800952 prom_printf("SUN4V: Error, cannot allocate kbuf page.\n");
953 prom_halt();
954 }
955
David S. Miller5cbc3072007-05-25 15:49:59 -0700956 *pa_ptr = __pa(p);
David S. Miller5b0c05722006-02-08 02:53:50 -0800957}
958
David S. Millerb434e712007-08-08 17:32:33 -0700959static void __init init_cpu_send_mondo_info(struct trap_per_cpu *tb)
David S. Miller1d2f1f92006-02-08 16:41:20 -0800960{
961#ifdef CONFIG_SMP
David S. Millerb5a37e92006-02-11 23:07:13 -0800962 void *page;
David S. Miller1d2f1f92006-02-08 16:41:20 -0800963
964 BUILD_BUG_ON((NR_CPUS * sizeof(u16)) > (PAGE_SIZE - 64));
965
David S. Millerb434e712007-08-08 17:32:33 -0700966 page = alloc_bootmem_low_pages(PAGE_SIZE);
David S. Miller1d2f1f92006-02-08 16:41:20 -0800967 if (!page) {
968 prom_printf("SUN4V: Error, cannot allocate cpu mondo page.\n");
969 prom_halt();
970 }
971
972 tb->cpu_mondo_block_pa = __pa(page);
973 tb->cpu_list_pa = __pa(page + 64);
974#endif
975}
976
David S. Millerb434e712007-08-08 17:32:33 -0700977/* Allocate mondo and error queues for all possible cpus. */
978static void __init sun4v_init_mondo_queues(void)
David S. Millerac29c112006-02-08 00:08:23 -0800979{
David S. Millerb434e712007-08-08 17:32:33 -0700980 int cpu;
David S. Millerac29c112006-02-08 00:08:23 -0800981
David S. Millerb434e712007-08-08 17:32:33 -0700982 for_each_possible_cpu(cpu) {
983 struct trap_per_cpu *tb = &trap_block[cpu];
David S. Miller1d2f1f92006-02-08 16:41:20 -0800984
David S. Millerb434e712007-08-08 17:32:33 -0700985 alloc_one_mondo(&tb->cpu_mondo_pa, tb->cpu_mondo_qmask);
986 alloc_one_mondo(&tb->dev_mondo_pa, tb->dev_mondo_qmask);
987 alloc_one_mondo(&tb->resum_mondo_pa, tb->resum_qmask);
988 alloc_one_kbuf(&tb->resum_kernel_buf_pa, tb->resum_qmask);
989 alloc_one_mondo(&tb->nonresum_mondo_pa, tb->nonresum_qmask);
990 alloc_one_kbuf(&tb->nonresum_kernel_buf_pa,
991 tb->nonresum_qmask);
992
993 init_cpu_send_mondo_info(tb);
David S. Miller72aff532006-02-17 01:29:17 -0800994 }
David S. Miller1d2f1f92006-02-08 16:41:20 -0800995
David S. Millerb434e712007-08-08 17:32:33 -0700996 /* Load up the boot cpu's entries. */
997 sun4v_register_mondo_queues(hard_smp_processor_id());
David S. Millerac29c112006-02-08 00:08:23 -0800998}
999
David S. Millere18e2a02006-06-20 01:23:32 -07001000static struct irqaction timer_irq_action = {
1001 .name = "timer",
1002};
1003
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004/* Only invoked on boot processor. */
1005void __init init_IRQ(void)
1006{
David S. Miller10397e42007-10-13 21:43:31 -07001007 unsigned long size;
1008
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 map_prom_timers();
1010 kill_prom_timer();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011
David S. Miller10397e42007-10-13 21:43:31 -07001012 size = sizeof(struct ino_bucket) * NUM_IVECS;
1013 ivector_table = alloc_bootmem_low(size);
1014 if (!ivector_table) {
1015 prom_printf("Fatal error, cannot allocate ivector_table\n");
1016 prom_halt();
1017 }
David S. Miller42d5f992007-10-13 23:03:21 -07001018 __flush_dcache_range((unsigned long) ivector_table,
1019 ((unsigned long) ivector_table) + size);
David S. Miller10397e42007-10-13 21:43:31 -07001020
1021 ivector_table_pa = __pa(ivector_table);
David S. Millereb2d8d62007-10-13 21:42:46 -07001022
David S. Millerac29c112006-02-08 00:08:23 -08001023 if (tlb_type == hypervisor)
David S. Millerb434e712007-08-08 17:32:33 -07001024 sun4v_init_mondo_queues();
David S. Millerac29c112006-02-08 00:08:23 -08001025
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 /* We need to clear any IRQ's pending in the soft interrupt
1027 * registers, a spurious one could be left around from the
1028 * PROM timer which we just disabled.
1029 */
1030 clear_softint(get_softint());
1031
1032 /* Now that ivector table is initialized, it is safe
1033 * to receive IRQ vector traps. We will normally take
1034 * one or two right now, in case some device PROM used
1035 * to boot us wants to speak to us. We just ignore them.
1036 */
1037 __asm__ __volatile__("rdpr %%pstate, %%g1\n\t"
1038 "or %%g1, %0, %%g1\n\t"
1039 "wrpr %%g1, 0x0, %%pstate"
1040 : /* No outputs */
1041 : "i" (PSTATE_IE)
1042 : "g1");
David S. Millere18e2a02006-06-20 01:23:32 -07001043
1044 irq_desc[0].action = &timer_irq_action;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045}