source: trunk/packages/xen-common/xen-common/xen/arch/ia64/linux-xen/irq_ia64.c @ 34

Last change on this file since 34 was 34, checked in by hartmans, 17 years ago

Add xen and xen-common

File size: 6.9 KB
Line 
1/*
2 * linux/arch/ia64/kernel/irq.c
3 *
4 * Copyright (C) 1998-2001 Hewlett-Packard Co
5 *      Stephane Eranian <eranian@hpl.hp.com>
6 *      David Mosberger-Tang <davidm@hpl.hp.com>
7 *
8 *  6/10/99: Updated to bring in sync with x86 version to facilitate
9 *           support for SMP and different interrupt controllers.
10 *
11 * 09/15/00 Goutham Rao <goutham.rao@intel.com> Implemented pci_irq_to_vector
12 *                      PCI to vector allocation routine.
13 * 04/14/2004 Ashok Raj <ashok.raj@intel.com>
14 *                                              Added CPU Hotplug handling for IPF.
15 */
16
17#include <linux/config.h>
18#include <linux/module.h>
19
20#include <linux/jiffies.h>
21#include <linux/errno.h>
22#include <linux/init.h>
23#include <linux/interrupt.h>
24#include <linux/ioport.h>
25#include <linux/kernel_stat.h>
26#include <linux/slab.h>
27#include <linux/ptrace.h>
28#include <linux/random.h>       /* for rand_initialize_irq() */
29#include <linux/signal.h>
30#include <linux/smp.h>
31#include <linux/smp_lock.h>
32#include <linux/threads.h>
33#include <linux/bitops.h>
34
35#include <asm/delay.h>
36#include <asm/intrinsics.h>
37#include <asm/io.h>
38#include <asm/hw_irq.h>
39#include <asm/machvec.h>
40#include <asm/pgtable.h>
41#include <asm/system.h>
42
43#ifdef XEN
44#include <xen/perfc.h>
45#endif
46
47#ifdef CONFIG_PERFMON
48# include <asm/perfmon.h>
49#endif
50
51#define IRQ_DEBUG       0
52
53/* default base addr of IPI table */
54void __iomem *ipi_base_addr = ((void __iomem *)
55                               (__IA64_UNCACHED_OFFSET | IA64_IPI_DEFAULT_BASE_ADDR));
56
57/*
58 * Legacy IRQ to IA-64 vector translation table.
59 */
60__u8 isa_irq_to_vector_map[16] = {
61        /* 8259 IRQ translation, first 16 entries */
62        0x2f, 0x20, 0x2e, 0x2d, 0x2c, 0x2b, 0x2a, 0x29,
63        0x28, 0x27, 0x26, 0x25, 0x24, 0x23, 0x22, 0x21
64};
65EXPORT_SYMBOL(isa_irq_to_vector_map);
66
67#ifdef XEN
68unsigned long ia64_vector_mask[BITS_TO_LONGS(IA64_NUM_DEVICE_VECTORS)];
69#else
70static unsigned long ia64_vector_mask[BITS_TO_LONGS(IA64_NUM_DEVICE_VECTORS)];
71#endif
72
73int
74assign_irq_vector (int irq)
75{
76        int pos, vector;
77 again:
78        pos = find_first_zero_bit(ia64_vector_mask, IA64_NUM_DEVICE_VECTORS);
79        vector = IA64_FIRST_DEVICE_VECTOR + pos;
80        if (vector > IA64_LAST_DEVICE_VECTOR)
81                return -ENOSPC;
82        if (test_and_set_bit(pos, ia64_vector_mask))
83                goto again;
84        return vector;
85}
86
87void
88free_irq_vector (int vector)
89{
90        int pos;
91
92        if (vector < IA64_FIRST_DEVICE_VECTOR || vector > IA64_LAST_DEVICE_VECTOR)
93                return;
94
95        pos = vector - IA64_FIRST_DEVICE_VECTOR;
96        if (!test_and_clear_bit(pos, ia64_vector_mask))
97                printk(KERN_WARNING "%s: double free!\n", __FUNCTION__);
98}
99
100#ifdef CONFIG_SMP
101#       define IS_RESCHEDULE(vec)       (vec == IA64_IPI_RESCHEDULE)
102#else
103#       define IS_RESCHEDULE(vec)       (0)
104#endif
105/*
106 * That's where the IVT branches when we get an external
107 * interrupt. This branches to the correct hardware IRQ handler via
108 * function ptr.
109 */
110void
111ia64_handle_irq (ia64_vector vector, struct pt_regs *regs)
112{
113        unsigned long saved_tpr;
114
115#ifdef XEN
116        perfc_incr(irqs);
117#endif
118#if IRQ_DEBUG
119#ifdef XEN
120        xen_debug_irq(vector, regs);
121#endif
122        {
123                unsigned long bsp, sp;
124
125                /*
126                 * Note: if the interrupt happened while executing in
127                 * the context switch routine (ia64_switch_to), we may
128                 * get a spurious stack overflow here.  This is
129                 * because the register and the memory stack are not
130                 * switched atomically.
131                 */
132                bsp = ia64_getreg(_IA64_REG_AR_BSP);
133                sp = ia64_getreg(_IA64_REG_SP);
134
135                if ((sp - bsp) < 1024) {
136                        static unsigned char count;
137                        static long last_time;
138
139                        if (jiffies - last_time > 5*HZ)
140                                count = 0;
141                        if (++count < 5) {
142                                last_time = jiffies;
143                                printk("ia64_handle_irq: DANGER: less than "
144                                       "1KB of free stack space!!\n"
145                                       "(bsp=0x%lx, sp=%lx)\n", bsp, sp);
146                        }
147                }
148        }
149#endif /* IRQ_DEBUG */
150
151        /*
152         * Always set TPR to limit maximum interrupt nesting depth to
153         * 16 (without this, it would be ~240, which could easily lead
154         * to kernel stack overflows).
155         */
156        irq_enter();
157        saved_tpr = ia64_getreg(_IA64_REG_CR_TPR);
158        ia64_srlz_d();
159        while (vector != IA64_SPURIOUS_INT_VECTOR) {
160                if (!IS_RESCHEDULE(vector)) {
161                        ia64_setreg(_IA64_REG_CR_TPR, vector);
162                        ia64_srlz_d();
163
164                        __do_IRQ(local_vector_to_irq(vector), regs);
165
166                        /*
167                         * Disable interrupts and send EOI:
168                         */
169                        local_irq_disable();
170                        ia64_setreg(_IA64_REG_CR_TPR, saved_tpr);
171                }
172                ia64_eoi();
173                vector = ia64_get_ivr();
174        }
175        /*
176         * This must be done *after* the ia64_eoi().  For example, the keyboard softirq
177         * handler needs to be able to wait for further keyboard interrupts, which can't
178         * come through until ia64_eoi() has been done.
179         */
180        irq_exit();
181}
182
183#ifdef CONFIG_HOTPLUG_CPU
184/*
185 * This function emulates a interrupt processing when a cpu is about to be
186 * brought down.
187 */
188void ia64_process_pending_intr(void)
189{
190        ia64_vector vector;
191        unsigned long saved_tpr;
192        extern unsigned int vectors_in_migration[NR_IRQS];
193
194        vector = ia64_get_ivr();
195
196         irq_enter();
197         saved_tpr = ia64_getreg(_IA64_REG_CR_TPR);
198         ia64_srlz_d();
199
200         /*
201          * Perform normal interrupt style processing
202          */
203        while (vector != IA64_SPURIOUS_INT_VECTOR) {
204                if (!IS_RESCHEDULE(vector)) {
205                        ia64_setreg(_IA64_REG_CR_TPR, vector);
206                        ia64_srlz_d();
207
208                        /*
209                         * Now try calling normal ia64_handle_irq as it would have got called
210                         * from a real intr handler. Try passing null for pt_regs, hopefully
211                         * it will work. I hope it works!.
212                         * Probably could shared code.
213                         */
214                        vectors_in_migration[local_vector_to_irq(vector)]=0;
215                        __do_IRQ(local_vector_to_irq(vector), NULL);
216
217                        /*
218                         * Disable interrupts and send EOI
219                         */
220                        local_irq_disable();
221                        ia64_setreg(_IA64_REG_CR_TPR, saved_tpr);
222                }
223                ia64_eoi();
224                vector = ia64_get_ivr();
225        }
226        irq_exit();
227}
228#endif
229
230
231#ifdef CONFIG_SMP
232extern irqreturn_t handle_IPI (int irq, void *dev_id, struct pt_regs *regs);
233
234static struct irqaction ipi_irqaction = {
235        .handler =      handle_IPI,
236#ifndef XEN
237        .flags =        SA_INTERRUPT,
238#endif
239        .name =         "IPI"
240};
241#endif
242
243#ifdef XEN
244extern void setup_vector (unsigned int vec, struct irqaction *action);
245#endif
246
247void
248register_percpu_irq (ia64_vector vec, struct irqaction *action)
249{
250        irq_desc_t *desc;
251        unsigned int irq;
252
253        for (irq = 0; irq < NR_IRQS; ++irq)
254                if (irq_to_vector(irq) == vec) {
255                        desc = irq_descp(irq);
256                        desc->status |= IRQ_PER_CPU;
257                        desc->handler = &irq_type_ia64_lsapic;
258                        if (action)
259#ifdef XEN
260                                setup_vector(irq, action);
261#else
262                                setup_irq(irq, action);
263#endif
264                }
265}
266
267void __init
268init_IRQ (void)
269{
270        register_percpu_irq(IA64_SPURIOUS_INT_VECTOR, NULL);
271#ifdef CONFIG_SMP
272        register_percpu_irq(IA64_IPI_VECTOR, &ipi_irqaction);
273#endif
274#ifdef CONFIG_PERFMON
275        pfm_init_percpu();
276#endif
277        platform_irq_init();
278}
279
280void
281ia64_send_ipi (int cpu, int vector, int delivery_mode, int redirect)
282{
283        void __iomem *ipi_addr;
284        unsigned long ipi_data;
285        unsigned long phys_cpu_id;
286
287#ifdef CONFIG_SMP
288        phys_cpu_id = cpu_physical_id(cpu);
289#else
290        phys_cpu_id = (ia64_getreg(_IA64_REG_CR_LID) >> 16) & 0xffff;
291#endif
292
293        /*
294         * cpu number is in 8bit ID and 8bit EID
295         */
296
297        ipi_data = (delivery_mode << 8) | (vector & 0xff);
298        ipi_addr = ipi_base_addr + ((phys_cpu_id << 4) | ((redirect & 1) << 3));
299
300        writeq(ipi_data, ipi_addr);
301}
Note: See TracBrowser for help on using the repository browser.