4 * Linux architectural port borrowing liberally from similar works of
5 * others. All original copyrights apply as per the original source
8 * Modifications for the OpenRISC architecture:
9 * Copyright (C) 2010-2011 Jonas Bonn <jonas@southpole.se>
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License
13 * as published by the Free Software Foundation; either version
14 * 2 of the License, or (at your option) any later version.
17 #include <linux/ptrace.h>
18 #include <linux/errno.h>
19 #include <linux/interrupt.h>
20 #include <linux/init.h>
22 #include <linux/ftrace.h>
23 #include <linux/irq.h>
24 #include <linux/seq_file.h>
25 #include <linux/kernel_stat.h>
26 #include <linux/export.h>
28 #include <linux/irqflags.h>
30 /* read interrupt enabled status */
31 unsigned long arch_local_save_flags(void)
33 return mfspr(SPR_SR
) & (SPR_SR_IEE
|SPR_SR_TEE
);
35 EXPORT_SYMBOL(arch_local_save_flags
);
37 /* set interrupt enabled status */
38 void arch_local_irq_restore(unsigned long flags
)
40 mtspr(SPR_SR
, ((mfspr(SPR_SR
) & ~(SPR_SR_IEE
|SPR_SR_TEE
)) | flags
));
42 EXPORT_SYMBOL(arch_local_irq_restore
);
45 /* OR1K PIC implementation */
47 /* We're a couple of cycles faster than the generic implementations with
48 * these 'fast' versions.
51 static void or1k_pic_mask(struct irq_data
*data
)
53 mtspr(SPR_PICMR
, mfspr(SPR_PICMR
) & ~(1UL << data
->irq
));
56 static void or1k_pic_unmask(struct irq_data
*data
)
58 mtspr(SPR_PICMR
, mfspr(SPR_PICMR
) | (1UL << data
->irq
));
61 static void or1k_pic_ack(struct irq_data
*data
)
63 /* EDGE-triggered interrupts need to be ack'ed in order to clear
65 * LEVER-triggered interrupts do not need to be ack'ed; however,
66 * ack'ing the interrupt has no ill-effect and is quicker than
67 * trying to figure out what type it is...
70 /* The OpenRISC 1000 spec says to write a 1 to the bit to ack the
71 * interrupt, but the OR1200 does this backwards and requires a 0
75 #ifdef CONFIG_OR1K_1200
76 /* There are two oddities with the OR1200 PIC implementation:
77 * i) LEVEL-triggered interrupts are latched and need to be cleared
78 * ii) the interrupt latch is cleared by writing a 0 to the bit,
79 * as opposed to a 1 as mandated by the spec
82 mtspr(SPR_PICSR
, mfspr(SPR_PICSR
) & ~(1UL << data
->irq
));
84 WARN(1, "Interrupt handling possibily broken\n");
85 mtspr(SPR_PICSR
, (1UL << irq
));
89 static void or1k_pic_mask_ack(struct irq_data
*data
)
91 /* Comments for pic_ack apply here, too */
93 #ifdef CONFIG_OR1K_1200
94 mtspr(SPR_PICSR
, mfspr(SPR_PICSR
) & ~(1UL << data
->irq
));
96 WARN(1, "Interrupt handling possibily broken\n");
97 mtspr(SPR_PICSR
, (1UL << irq
));
101 static int or1k_pic_set_type(struct irq_data
*data
, unsigned int flow_type
)
103 /* There's nothing to do in the PIC configuration when changing
104 * flow type. Level and edge-triggered interrupts are both
105 * supported, but it's PIC-implementation specific which type
108 return irq_setup_alt_chip(data
, flow_type
);
111 static inline int pic_get_irq(int first
)
115 irq
= ffs(mfspr(SPR_PICSR
) >> first
);
117 return irq
? irq
+ first
- 1 : NO_IRQ
;
120 static void __init
or1k_irq_init(void)
122 struct irq_chip_generic
*gc
;
123 struct irq_chip_type
*ct
;
125 /* Disable all interrupts until explicitly requested */
126 mtspr(SPR_PICMR
, (0UL));
128 gc
= irq_alloc_generic_chip("or1k-PIC", 1, 0, 0, handle_level_irq
);
131 ct
->chip
.irq_unmask
= or1k_pic_unmask
;
132 ct
->chip
.irq_mask
= or1k_pic_mask
;
133 ct
->chip
.irq_ack
= or1k_pic_ack
;
134 ct
->chip
.irq_mask_ack
= or1k_pic_mask_ack
;
135 ct
->chip
.irq_set_type
= or1k_pic_set_type
;
137 /* The OR1K PIC can handle both level and edge trigged
138 * interrupts in roughly the same manner
141 /* FIXME: chip.type??? */
142 ct
->chip
.type
= IRQ_TYPE_EDGE_BOTH
| IRQ_TYPE_LEVEL_MASK
;
145 irq_setup_generic_chip(gc
, IRQ_MSK(NR_IRQS
), 0,
146 IRQ_NOREQUEST
, IRQ_LEVEL
| IRQ_NOPROBE
);
149 void __init
init_IRQ(void)
154 void __irq_entry
do_IRQ(struct pt_regs
*regs
)
157 struct pt_regs
*old_regs
= set_irq_regs(regs
);
161 while ((irq
= pic_get_irq(irq
+ 1)) != NO_IRQ
)
162 generic_handle_irq(irq
);
165 set_irq_regs(old_regs
);
168 unsigned int irq_create_of_mapping(struct device_node
*controller
,
169 const u32
*intspec
, unsigned int intsize
)
173 EXPORT_SYMBOL_GPL(irq_create_of_mapping
);