blob: a111836bcec2e380753a240807ad3d5b8d303c75 [file] [log] [blame]
Anoop P A92592c92011-01-25 13:50:10 +05301/*
2 * Copyright 2010 PMC-Sierra, Inc, derived from irq_cpu.c
3 *
4 * This file define the irq handler for MSP PER subsystem interrupts.
5 *
Ralf Baechle70342282013-01-22 12:59:30 +01006 * 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
Anoop P A92592c92011-01-25 13:50:10 +05308 * Free Software Foundation; either version 2 of the License, or (at your
9 * option) any later version.
10 */
11
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>
17
18#include <asm/mipsregs.h>
Anoop P A92592c92011-01-25 13:50:10 +053019
20#include <msp_cic_int.h>
21#include <msp_regs.h>
22
23
24/*
25 * Convenience Macro. Should be somewhere generic.
26 */
27#define get_current_vpe() \
28 ((read_c0_tcbind() >> TCBIND_CURVPE_SHIFT) & TCBIND_CURVPE)
29
30#ifdef CONFIG_SMP
31/*
32 * The PER registers must be protected from concurrent access.
33 */
34
35static DEFINE_SPINLOCK(per_lock);
36#endif
37
38/* ensure writes to per are completed */
39
40static inline void per_wmb(void)
41{
42 const volatile void __iomem *per_mem = PER_INT_MSK_REG;
43 volatile u32 dummy_read;
44
45 wmb();
46 dummy_read = __raw_readl(per_mem);
47 dummy_read++;
48}
49
Thomas Gleixnerd7881fb2011-03-23 21:09:06 +000050static inline void unmask_per_irq(struct irq_data *d)
Anoop P A92592c92011-01-25 13:50:10 +053051{
52#ifdef CONFIG_SMP
53 unsigned long flags;
54 spin_lock_irqsave(&per_lock, flags);
Thomas Gleixnerd7881fb2011-03-23 21:09:06 +000055 *PER_INT_MSK_REG |= (1 << (d->irq - MSP_PER_INTBASE));
Anoop P A92592c92011-01-25 13:50:10 +053056 spin_unlock_irqrestore(&per_lock, flags);
57#else
Thomas Gleixnerd7881fb2011-03-23 21:09:06 +000058 *PER_INT_MSK_REG |= (1 << (d->irq - MSP_PER_INTBASE));
Anoop P A92592c92011-01-25 13:50:10 +053059#endif
60 per_wmb();
61}
62
Thomas Gleixnerd7881fb2011-03-23 21:09:06 +000063static inline void mask_per_irq(struct irq_data *d)
Anoop P A92592c92011-01-25 13:50:10 +053064{
65#ifdef CONFIG_SMP
66 unsigned long flags;
67 spin_lock_irqsave(&per_lock, flags);
Thomas Gleixnerd7881fb2011-03-23 21:09:06 +000068 *PER_INT_MSK_REG &= ~(1 << (d->irq - MSP_PER_INTBASE));
Anoop P A92592c92011-01-25 13:50:10 +053069 spin_unlock_irqrestore(&per_lock, flags);
70#else
Thomas Gleixnerd7881fb2011-03-23 21:09:06 +000071 *PER_INT_MSK_REG &= ~(1 << (d->irq - MSP_PER_INTBASE));
Anoop P A92592c92011-01-25 13:50:10 +053072#endif
73 per_wmb();
74}
75
Thomas Gleixnerd7881fb2011-03-23 21:09:06 +000076static inline void msp_per_irq_ack(struct irq_data *d)
Anoop P A92592c92011-01-25 13:50:10 +053077{
Thomas Gleixnerd7881fb2011-03-23 21:09:06 +000078 mask_per_irq(d);
Anoop P A92592c92011-01-25 13:50:10 +053079 /*
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.
83 */
Thomas Gleixnerd7881fb2011-03-23 21:09:06 +000084 *PER_INT_STS_REG = (1 << (d->irq - MSP_PER_INTBASE));
Anoop P A92592c92011-01-25 13:50:10 +053085}
86
87#ifdef CONFIG_SMP
Thomas Gleixnerd7881fb2011-03-23 21:09:06 +000088static int msp_per_irq_set_affinity(struct irq_data *d,
89 const struct cpumask *affinity, bool force)
Anoop P A92592c92011-01-25 13:50:10 +053090{
Thomas Gleixnerd7881fb2011-03-23 21:09:06 +000091 /* WTF is this doing ????? */
92 unmask_per_irq(d);
Anoop P A92592c92011-01-25 13:50:10 +053093 return 0;
Anoop P A92592c92011-01-25 13:50:10 +053094}
95#endif
96
97static struct irq_chip msp_per_irq_controller = {
98 .name = "MSP_PER",
Yoichi Yuasa088a42a2011-03-29 15:53:56 +090099 .irq_enable = unmask_per_irq,
Thomas Gleixnerd7881fb2011-03-23 21:09:06 +0000100 .irq_disable = mask_per_irq,
101 .irq_ack = msp_per_irq_ack,
Anoop P A92592c92011-01-25 13:50:10 +0530102#ifdef CONFIG_SMP
Thomas Gleixnerd7881fb2011-03-23 21:09:06 +0000103 .irq_set_affinity = msp_per_irq_set_affinity,
Anoop P A92592c92011-01-25 13:50:10 +0530104#endif
Anoop P A92592c92011-01-25 13:50:10 +0530105};
106
107void __init msp_per_irq_init(void)
108{
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++) {
Thomas Gleixnerd7881fb2011-03-23 21:09:06 +0000115 irq_set_chip(i, &msp_per_irq_controller);
Anoop P A92592c92011-01-25 13:50:10 +0530116 }
117}
118
119void msp_per_irq_dispatch(void)
120{
121 u32 per_mask = *PER_INT_MSK_REG;
122 u32 per_status = *PER_INT_STS_REG;
123 u32 pending;
124
125 pending = per_status & per_mask;
126 if (pending) {
127 do_IRQ(ffs(pending) + MSP_PER_INTBASE - 1);
128 } else {
129 spurious_interrupt();
Anoop P A92592c92011-01-25 13:50:10 +0530130 }
131}