blob: 2aadb47efaec4952d1b9cab240339f4dd90d186d [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Copyright (C) 1999 Cort Dougan <cort@cs.nmt.edu>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 */
Kumar Galab671ad22005-09-21 16:52:55 -05004#ifndef _ASM_POWERPC_HW_IRQ_H
5#define _ASM_POWERPC_HW_IRQ_H
6
Linus Torvalds1da177e2005-04-16 15:20:36 -07007#ifdef __KERNEL__
Linus Torvalds1da177e2005-04-16 15:20:36 -07008
Linus Torvalds1da177e2005-04-16 15:20:36 -07009#include <linux/errno.h>
Paul Mackerrasd04c56f2006-10-04 16:47:49 +100010#include <linux/compiler.h>
Kumar Galab671ad22005-09-21 16:52:55 -050011#include <asm/ptrace.h>
12#include <asm/processor.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013
Benjamin Herrenschmidt7230c562012-03-06 18:27:59 +110014#ifdef CONFIG_PPC64
15
16/*
17 * PACA flags in paca->irq_happened.
18 *
19 * This bits are set when interrupts occur while soft-disabled
20 * and allow a proper replay. Additionally, PACA_IRQ_HARD_DIS
21 * is set whenever we manually hard disable.
22 */
23#define PACA_IRQ_HARD_DIS 0x01
24#define PACA_IRQ_DBELL 0x02
25#define PACA_IRQ_EE 0x04
26#define PACA_IRQ_DEC 0x08 /* Or FIT */
27#define PACA_IRQ_EE_EDGE 0x10 /* BookE only */
28
29#endif /* CONFIG_PPC64 */
30
31#ifndef __ASSEMBLY__
32
33extern void __replay_interrupt(unsigned int vector);
34
Kumar Galac7aeffc2005-09-19 09:30:27 -050035extern void timer_interrupt(struct pt_regs *);
Alexander Graf7cc1e8e2012-02-22 16:26:34 +010036extern void performance_monitor_exception(struct pt_regs *regs);
Bharat Bhushan6328e592012-06-20 05:56:53 +000037extern void WatchdogException(struct pt_regs *regs);
38extern void unknown_exception(struct pt_regs *regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
Paul Mackerrasd04c56f2006-10-04 16:47:49 +100040#ifdef CONFIG_PPC64
41#include <asm/paca.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
David Howellsdf9ee292010-10-07 14:08:55 +010043static inline unsigned long arch_local_save_flags(void)
Paul Mackerrasd04c56f2006-10-04 16:47:49 +100044{
Hugh Dickinsef2b3432006-11-10 21:32:40 +000045 unsigned long flags;
46
David Howellsdf9ee292010-10-07 14:08:55 +010047 asm volatile(
48 "lbz %0,%1(13)"
49 : "=r" (flags)
50 : "i" (offsetof(struct paca_struct, soft_enabled)));
Hugh Dickinsef2b3432006-11-10 21:32:40 +000051
52 return flags;
Paul Mackerrasd04c56f2006-10-04 16:47:49 +100053}
54
David Howellsdf9ee292010-10-07 14:08:55 +010055static inline unsigned long arch_local_irq_disable(void)
Paul Mackerrasd04c56f2006-10-04 16:47:49 +100056{
Hugh Dickinsef2b3432006-11-10 21:32:40 +000057 unsigned long flags, zero;
58
David Howellsdf9ee292010-10-07 14:08:55 +010059 asm volatile(
60 "li %1,0; lbz %0,%2(13); stb %1,%2(13)"
61 : "=r" (flags), "=&r" (zero)
62 : "i" (offsetof(struct paca_struct, soft_enabled))
63 : "memory");
Hugh Dickinsef2b3432006-11-10 21:32:40 +000064
65 return flags;
Paul Mackerrasd04c56f2006-10-04 16:47:49 +100066}
67
David Howellsdf9ee292010-10-07 14:08:55 +010068extern void arch_local_irq_restore(unsigned long);
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
David Howellsdf9ee292010-10-07 14:08:55 +010070static inline void arch_local_irq_enable(void)
71{
72 arch_local_irq_restore(1);
73}
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
David Howellsdf9ee292010-10-07 14:08:55 +010075static inline unsigned long arch_local_irq_save(void)
76{
77 return arch_local_irq_disable();
78}
79
80static inline bool arch_irqs_disabled_flags(unsigned long flags)
81{
82 return flags == 0;
83}
84
85static inline bool arch_irqs_disabled(void)
86{
87 return arch_irqs_disabled_flags(arch_local_save_flags());
88}
Linus Torvalds1da177e2005-04-16 15:20:36 -070089
Benjamin Herrenschmidt2d27cfd2009-07-23 23:15:59 +000090#ifdef CONFIG_PPC_BOOK3E
David Howellsdf9ee292010-10-07 14:08:55 +010091#define __hard_irq_enable() asm volatile("wrteei 1" : : : "memory");
92#define __hard_irq_disable() asm volatile("wrteei 0" : : : "memory");
Benjamin Herrenschmidt2d27cfd2009-07-23 23:15:59 +000093#else
Benjamin Herrenschmidtd9ada912012-03-02 11:33:52 +110094#define __hard_irq_enable() __mtmsrd(local_paca->kernel_msr | MSR_EE, 1)
95#define __hard_irq_disable() __mtmsrd(local_paca->kernel_msr, 1)
Benjamin Herrenschmidt2d27cfd2009-07-23 23:15:59 +000096#endif
Benjamin Herrenschmidte1fa2e12007-05-10 22:22:45 -070097
Benjamin Herrenschmidt7230c562012-03-06 18:27:59 +110098static inline void hard_irq_disable(void)
99{
100 __hard_irq_disable();
101 get_paca()->soft_enabled = 0;
102 get_paca()->irq_happened |= PACA_IRQ_HARD_DIS;
103}
104
105/*
106 * This is called by asynchronous interrupts to conditionally
107 * re-enable hard interrupts when soft-disabled after having
108 * cleared the source of the interrupt
109 */
110static inline void may_hard_irq_enable(void)
111{
112 get_paca()->irq_happened &= ~PACA_IRQ_HARD_DIS;
113 if (!(get_paca()->irq_happened & PACA_IRQ_EE))
114 __hard_irq_enable();
115}
Paul Mackerrasd04c56f2006-10-04 16:47:49 +1000116
Benjamin Herrenschmidta5464982012-03-07 16:48:45 +1100117static inline bool arch_irq_disabled_regs(struct pt_regs *regs)
118{
119 return !regs->softe;
120}
121
David Howellsdf9ee292010-10-07 14:08:55 +0100122#else /* CONFIG_PPC64 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123
Kumar Galab671ad22005-09-21 16:52:55 -0500124#define SET_MSR_EE(x) mtmsr(x)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125
David Howellsdf9ee292010-10-07 14:08:55 +0100126static inline unsigned long arch_local_save_flags(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127{
David Howellsdf9ee292010-10-07 14:08:55 +0100128 return mfmsr();
129}
Paul Mackerras4c75f842009-06-12 02:00:50 +0000130
David Howellsdf9ee292010-10-07 14:08:55 +0100131static inline void arch_local_irq_restore(unsigned long flags)
132{
133#if defined(CONFIG_BOOKE)
134 asm volatile("wrtee %0" : : "r" (flags) : "memory");
135#else
136 mtmsr(flags);
Kumar Galab671ad22005-09-21 16:52:55 -0500137#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138}
139
David Howellsdf9ee292010-10-07 14:08:55 +0100140static inline unsigned long arch_local_irq_save(void)
141{
142 unsigned long flags = arch_local_save_flags();
143#ifdef CONFIG_BOOKE
144 asm volatile("wrteei 0" : : : "memory");
145#else
146 SET_MSR_EE(flags & ~MSR_EE);
147#endif
148 return flags;
149}
150
151static inline void arch_local_irq_disable(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152{
Kumar Galab671ad22005-09-21 16:52:55 -0500153#ifdef CONFIG_BOOKE
David Howellsdf9ee292010-10-07 14:08:55 +0100154 asm volatile("wrteei 0" : : : "memory");
Kumar Galab671ad22005-09-21 16:52:55 -0500155#else
David Howellsdf9ee292010-10-07 14:08:55 +0100156 arch_local_irq_save();
157#endif
158}
Paul Mackerras4c75f842009-06-12 02:00:50 +0000159
David Howellsdf9ee292010-10-07 14:08:55 +0100160static inline void arch_local_irq_enable(void)
161{
162#ifdef CONFIG_BOOKE
163 asm volatile("wrteei 1" : : : "memory");
164#else
165 unsigned long msr = mfmsr();
Kumar Galab671ad22005-09-21 16:52:55 -0500166 SET_MSR_EE(msr | MSR_EE);
167#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168}
169
David Howellsdf9ee292010-10-07 14:08:55 +0100170static inline bool arch_irqs_disabled_flags(unsigned long flags)
Steven Rostedte0eca072008-05-14 23:49:43 -0400171{
172 return (flags & MSR_EE) == 0;
173}
174
David Howellsdf9ee292010-10-07 14:08:55 +0100175static inline bool arch_irqs_disabled(void)
176{
177 return arch_irqs_disabled_flags(arch_local_save_flags());
178}
179
180#define hard_irq_disable() arch_local_irq_disable()
181
Benjamin Herrenschmidta5464982012-03-07 16:48:45 +1100182static inline bool arch_irq_disabled_regs(struct pt_regs *regs)
183{
184 return !(regs->msr & MSR_EE);
185}
186
Benjamin Herrenschmidt7230c562012-03-06 18:27:59 +1100187static inline void may_hard_irq_enable(void) { }
188
Paul Mackerrasd04c56f2006-10-04 16:47:49 +1000189#endif /* CONFIG_PPC64 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190
Thomas Gleixner089fb442011-01-21 06:12:28 +0000191#define ARCH_IRQ_INIT_FLAGS IRQ_NOREQUEST
192
Ingo Molnarc0ad90a2006-06-29 02:24:44 -0700193/*
194 * interrupt-retrigger: should we handle this via lost interrupts and IPIs
195 * or should we not care like we do now ? --BenH.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 */
Thomas Gleixner353bca52009-03-10 14:46:30 +0000197struct irq_chip;
Kumar Galab671ad22005-09-21 16:52:55 -0500198
Benjamin Herrenschmidt7230c562012-03-06 18:27:59 +1100199#endif /* __ASSEMBLY__ */
Kumar Galab671ad22005-09-21 16:52:55 -0500200#endif /* __KERNEL__ */
201#endif /* _ASM_POWERPC_HW_IRQ_H */