Disintegrate asm/system.h for MIPS
[linux-2.6.git] / arch / mips / pmc-sierra / msp71xx / msp_irq_per.c
blob598b6a66b97031a92262b6db52fed6086e00e361
1 /*
2 * Copyright 2010 PMC-Sierra, Inc, derived from irq_cpu.c
4 * This file define the irq handler for MSP PER subsystem interrupts.
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the
8 * Free Software Foundation; either version 2 of the License, or (at your
9 * option) any later version.
12 #include <linux/init.h>
13 #include <linux/interrupt.h>
14 #include <linux/kernel.h>
15 #include <linux/spinlock.h>
16 #include <linux/bitops.h>
18 #include <asm/mipsregs.h>
20 #include <msp_cic_int.h>
21 #include <msp_regs.h>
25 * Convenience Macro. Should be somewhere generic.
27 #define get_current_vpe() \
28 ((read_c0_tcbind() >> TCBIND_CURVPE_SHIFT) & TCBIND_CURVPE)
30 #ifdef CONFIG_SMP
32 * The PER registers must be protected from concurrent access.
35 static DEFINE_SPINLOCK(per_lock);
36 #endif
38 /* ensure writes to per are completed */
40 static inline void per_wmb(void)
42 const volatile void __iomem *per_mem = PER_INT_MSK_REG;
43 volatile u32 dummy_read;
45 wmb();
46 dummy_read = __raw_readl(per_mem);
47 dummy_read++;
50 static inline void unmask_per_irq(struct irq_data *d)
52 #ifdef CONFIG_SMP
53 unsigned long flags;
54 spin_lock_irqsave(&per_lock, flags);
55 *PER_INT_MSK_REG |= (1 << (d->irq - MSP_PER_INTBASE));
56 spin_unlock_irqrestore(&per_lock, flags);
57 #else
58 *PER_INT_MSK_REG |= (1 << (d->irq - MSP_PER_INTBASE));
59 #endif
60 per_wmb();
63 static inline void mask_per_irq(struct irq_data *d)
65 #ifdef CONFIG_SMP
66 unsigned long flags;
67 spin_lock_irqsave(&per_lock, flags);
68 *PER_INT_MSK_REG &= ~(1 << (d->irq - MSP_PER_INTBASE));
69 spin_unlock_irqrestore(&per_lock, flags);
70 #else
71 *PER_INT_MSK_REG &= ~(1 << (d->irq - MSP_PER_INTBASE));
72 #endif
73 per_wmb();
76 static inline void msp_per_irq_ack(struct irq_data *d)
78 mask_per_irq(d);
80 * In the PER interrupt controller, only bits 11 and 10
81 * are write-to-clear, (SPI TX complete, SPI RX complete).
82 * It does nothing for any others.
84 *PER_INT_STS_REG = (1 << (d->irq - MSP_PER_INTBASE));
87 #ifdef CONFIG_SMP
88 static int msp_per_irq_set_affinity(struct irq_data *d,
89 const struct cpumask *affinity, bool force)
91 /* WTF is this doing ????? */
92 unmask_per_irq(d);
93 return 0;
95 #endif
97 static struct irq_chip msp_per_irq_controller = {
98 .name = "MSP_PER",
99 .irq_enable = unmask_per_irq,
100 .irq_disable = mask_per_irq,
101 .irq_ack = msp_per_irq_ack,
102 #ifdef CONFIG_SMP
103 .irq_set_affinity = msp_per_irq_set_affinity,
104 #endif
107 void __init msp_per_irq_init(void)
109 int i;
110 /* Mask/clear interrupts. */
111 *PER_INT_MSK_REG = 0x00000000;
112 *PER_INT_STS_REG = 0xFFFFFFFF;
113 /* initialize all the IRQ descriptors */
114 for (i = MSP_PER_INTBASE; i < MSP_PER_INTBASE + 32; i++) {
115 irq_set_chip(i, &msp_per_irq_controller);
116 #ifdef CONFIG_MIPS_MT_SMTC
117 irq_hwmask[i] = C_IRQ4;
118 #endif
122 void msp_per_irq_dispatch(void)
124 u32 per_mask = *PER_INT_MSK_REG;
125 u32 per_status = *PER_INT_STS_REG;
126 u32 pending;
128 pending = per_status & per_mask;
129 if (pending) {
130 do_IRQ(ffs(pending) + MSP_PER_INTBASE - 1);
131 } else {
132 spurious_interrupt();