2005-04-16 22:20:36 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 1999 Cort Dougan <cort@cs.nmt.edu>
|
|
|
|
*/
|
2005-09-21 21:52:55 +00:00
|
|
|
#ifndef _ASM_POWERPC_HW_IRQ_H
|
|
|
|
#define _ASM_POWERPC_HW_IRQ_H
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
#ifdef __KERNEL__
|
|
|
|
|
|
|
|
#include <linux/errno.h>
|
2005-09-21 21:52:55 +00:00
|
|
|
#include <asm/ptrace.h>
|
|
|
|
#include <asm/processor.h>
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-09-19 14:30:27 +00:00
|
|
|
extern void timer_interrupt(struct pt_regs *);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
#ifdef CONFIG_PPC_ISERIES
|
|
|
|
|
|
|
|
extern unsigned long local_get_flags(void);
|
|
|
|
extern unsigned long local_irq_disable(void);
|
|
|
|
extern void local_irq_restore(unsigned long);
|
|
|
|
|
|
|
|
#define local_irq_enable() local_irq_restore(1)
|
|
|
|
#define local_save_flags(flags) ((flags) = local_get_flags())
|
|
|
|
#define local_irq_save(flags) ((flags) = local_irq_disable())
|
|
|
|
|
|
|
|
#define irqs_disabled() (local_get_flags() == 0)
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
2005-09-21 21:52:55 +00:00
|
|
|
#if defined(CONFIG_BOOKE)
|
|
|
|
#define SET_MSR_EE(x) mtmsr(x)
|
|
|
|
#define local_irq_restore(flags) __asm__ __volatile__("wrtee %0" : : "r" (flags) : "memory")
|
|
|
|
#elif defined(__powerpc64__)
|
|
|
|
#define SET_MSR_EE(x) __mtmsrd(x, 1)
|
2005-04-16 22:20:36 +00:00
|
|
|
#define local_irq_restore(flags) do { \
|
|
|
|
__asm__ __volatile__("": : :"memory"); \
|
|
|
|
__mtmsrd((flags), 1); \
|
|
|
|
} while(0)
|
2005-09-21 21:52:55 +00:00
|
|
|
#else
|
|
|
|
#define SET_MSR_EE(x) mtmsr(x)
|
|
|
|
#define local_irq_restore(flags) mtmsr(flags)
|
|
|
|
#endif
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
static inline void local_irq_disable(void)
|
|
|
|
{
|
2005-09-21 21:52:55 +00:00
|
|
|
#ifdef CONFIG_BOOKE
|
|
|
|
__asm__ __volatile__("wrteei 0": : :"memory");
|
|
|
|
#else
|
2005-04-16 22:20:36 +00:00
|
|
|
unsigned long msr;
|
|
|
|
__asm__ __volatile__("": : :"memory");
|
2005-09-21 21:52:55 +00:00
|
|
|
msr = mfmsr();
|
|
|
|
SET_MSR_EE(msr & ~MSR_EE);
|
|
|
|
#endif
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline void local_irq_enable(void)
|
|
|
|
{
|
2005-09-21 21:52:55 +00:00
|
|
|
#ifdef CONFIG_BOOKE
|
|
|
|
__asm__ __volatile__("wrteei 1": : :"memory");
|
|
|
|
#else
|
2005-04-16 22:20:36 +00:00
|
|
|
unsigned long msr;
|
|
|
|
__asm__ __volatile__("": : :"memory");
|
|
|
|
msr = mfmsr();
|
2005-09-21 21:52:55 +00:00
|
|
|
SET_MSR_EE(msr | MSR_EE);
|
|
|
|
#endif
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2005-09-21 21:52:55 +00:00
|
|
|
static inline void local_irq_save_ptr(unsigned long *flags)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
|
|
|
unsigned long msr;
|
|
|
|
msr = mfmsr();
|
|
|
|
*flags = msr;
|
2005-09-21 21:52:55 +00:00
|
|
|
#ifdef CONFIG_BOOKE
|
|
|
|
__asm__ __volatile__("wrteei 0": : :"memory");
|
|
|
|
#else
|
|
|
|
SET_MSR_EE(msr & ~MSR_EE);
|
|
|
|
#endif
|
2005-04-16 22:20:36 +00:00
|
|
|
__asm__ __volatile__("": : :"memory");
|
|
|
|
}
|
|
|
|
|
2005-09-21 21:52:55 +00:00
|
|
|
#define local_save_flags(flags) ((flags) = mfmsr())
|
|
|
|
#define local_irq_save(flags) local_irq_save_ptr(&flags)
|
|
|
|
#define irqs_disabled() ((mfmsr() & MSR_EE) == 0)
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
#endif /* CONFIG_PPC_ISERIES */
|
|
|
|
|
|
|
|
#define mask_irq(irq) \
|
|
|
|
({ \
|
|
|
|
irq_desc_t *desc = get_irq_desc(irq); \
|
[PATCH] genirq: rename desc->handler to desc->chip
This patch-queue improves the generic IRQ layer to be truly generic, by adding
various abstractions and features to it, without impacting existing
functionality.
While the queue can be best described as "fix and improve everything in the
generic IRQ layer that we could think of", and thus it consists of many
smaller features and lots of cleanups, the one feature that stands out most is
the new 'irq chip' abstraction.
The irq-chip abstraction is about describing and coding and IRQ controller
driver by mapping its raw hardware capabilities [and quirks, if needed] in a
straightforward way, without having to think about "IRQ flow"
(level/edge/etc.) type of details.
This stands in contrast with the current 'irq-type' model of genirq
architectures, which 'mixes' raw hardware capabilities with 'flow' details.
The patchset supports both types of irq controller designs at once, and
converts i386 and x86_64 to the new irq-chip design.
As a bonus side-effect of the irq-chip approach, chained interrupt controllers
(master/slave PIC constructs, etc.) are now supported by design as well.
The end result of this patchset intends to be simpler architecture-level code
and more consolidation between architectures.
We reused many bits of code and many concepts from Russell King's ARM IRQ
layer, the merging of which was one of the motivations for this patchset.
This patch:
rename desc->handler to desc->chip.
Originally i did not want to do this, because it's a big patch. But having
both "desc->handler", "desc->handle_irq" and "action->handler" caused a
large degree of confusion and made the code appear alot less clean than it
truly is.
I have also attempted a dual approach as well by introducing a
desc->chip alias - but that just wasnt robust enough and broke
frequently.
So lets get over with this quickly. The conversion was done automatically
via scripts and converts all the code in the kernel.
This renaming patch is the first one amongst the patches, so that the
remaining patches can stay flexible and can be merged and split up
without having some big monolithic patch act as a merge barrier.
[akpm@osdl.org: build fix]
[akpm@osdl.org: another build fix]
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
2006-06-29 09:24:36 +00:00
|
|
|
if (desc->chip && desc->chip->disable) \
|
|
|
|
desc->chip->disable(irq); \
|
2005-04-16 22:20:36 +00:00
|
|
|
})
|
|
|
|
#define unmask_irq(irq) \
|
|
|
|
({ \
|
|
|
|
irq_desc_t *desc = get_irq_desc(irq); \
|
[PATCH] genirq: rename desc->handler to desc->chip
This patch-queue improves the generic IRQ layer to be truly generic, by adding
various abstractions and features to it, without impacting existing
functionality.
While the queue can be best described as "fix and improve everything in the
generic IRQ layer that we could think of", and thus it consists of many
smaller features and lots of cleanups, the one feature that stands out most is
the new 'irq chip' abstraction.
The irq-chip abstraction is about describing and coding and IRQ controller
driver by mapping its raw hardware capabilities [and quirks, if needed] in a
straightforward way, without having to think about "IRQ flow"
(level/edge/etc.) type of details.
This stands in contrast with the current 'irq-type' model of genirq
architectures, which 'mixes' raw hardware capabilities with 'flow' details.
The patchset supports both types of irq controller designs at once, and
converts i386 and x86_64 to the new irq-chip design.
As a bonus side-effect of the irq-chip approach, chained interrupt controllers
(master/slave PIC constructs, etc.) are now supported by design as well.
The end result of this patchset intends to be simpler architecture-level code
and more consolidation between architectures.
We reused many bits of code and many concepts from Russell King's ARM IRQ
layer, the merging of which was one of the motivations for this patchset.
This patch:
rename desc->handler to desc->chip.
Originally i did not want to do this, because it's a big patch. But having
both "desc->handler", "desc->handle_irq" and "action->handler" caused a
large degree of confusion and made the code appear alot less clean than it
truly is.
I have also attempted a dual approach as well by introducing a
desc->chip alias - but that just wasnt robust enough and broke
frequently.
So lets get over with this quickly. The conversion was done automatically
via scripts and converts all the code in the kernel.
This renaming patch is the first one amongst the patches, so that the
remaining patches can stay flexible and can be merged and split up
without having some big monolithic patch act as a merge barrier.
[akpm@osdl.org: build fix]
[akpm@osdl.org: another build fix]
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
2006-06-29 09:24:36 +00:00
|
|
|
if (desc->chip && desc->chip->enable) \
|
|
|
|
desc->chip->enable(irq); \
|
2005-04-16 22:20:36 +00:00
|
|
|
})
|
|
|
|
#define ack_irq(irq) \
|
|
|
|
({ \
|
|
|
|
irq_desc_t *desc = get_irq_desc(irq); \
|
[PATCH] genirq: rename desc->handler to desc->chip
This patch-queue improves the generic IRQ layer to be truly generic, by adding
various abstractions and features to it, without impacting existing
functionality.
While the queue can be best described as "fix and improve everything in the
generic IRQ layer that we could think of", and thus it consists of many
smaller features and lots of cleanups, the one feature that stands out most is
the new 'irq chip' abstraction.
The irq-chip abstraction is about describing and coding and IRQ controller
driver by mapping its raw hardware capabilities [and quirks, if needed] in a
straightforward way, without having to think about "IRQ flow"
(level/edge/etc.) type of details.
This stands in contrast with the current 'irq-type' model of genirq
architectures, which 'mixes' raw hardware capabilities with 'flow' details.
The patchset supports both types of irq controller designs at once, and
converts i386 and x86_64 to the new irq-chip design.
As a bonus side-effect of the irq-chip approach, chained interrupt controllers
(master/slave PIC constructs, etc.) are now supported by design as well.
The end result of this patchset intends to be simpler architecture-level code
and more consolidation between architectures.
We reused many bits of code and many concepts from Russell King's ARM IRQ
layer, the merging of which was one of the motivations for this patchset.
This patch:
rename desc->handler to desc->chip.
Originally i did not want to do this, because it's a big patch. But having
both "desc->handler", "desc->handle_irq" and "action->handler" caused a
large degree of confusion and made the code appear alot less clean than it
truly is.
I have also attempted a dual approach as well by introducing a
desc->chip alias - but that just wasnt robust enough and broke
frequently.
So lets get over with this quickly. The conversion was done automatically
via scripts and converts all the code in the kernel.
This renaming patch is the first one amongst the patches, so that the
remaining patches can stay flexible and can be merged and split up
without having some big monolithic patch act as a merge barrier.
[akpm@osdl.org: build fix]
[akpm@osdl.org: another build fix]
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
2006-06-29 09:24:36 +00:00
|
|
|
if (desc->chip && desc->chip->ack) \
|
|
|
|
desc->chip->ack(irq); \
|
2005-04-16 22:20:36 +00:00
|
|
|
})
|
|
|
|
|
2006-06-29 09:24:44 +00:00
|
|
|
/*
|
|
|
|
* interrupt-retrigger: should we handle this via lost interrupts and IPIs
|
|
|
|
* or should we not care like we do now ? --BenH.
|
2005-04-16 22:20:36 +00:00
|
|
|
*/
|
|
|
|
struct hw_interrupt_type;
|
2005-09-21 21:52:55 +00:00
|
|
|
|
|
|
|
#endif /* __KERNEL__ */
|
|
|
|
#endif /* _ASM_POWERPC_HW_IRQ_H */
|