aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/irq/settings.h
diff options
context:
space:
mode:
authorThomas Gleixner <tglx@linutronix.de>2011-02-08 11:28:12 -0500
committerThomas Gleixner <tglx@linutronix.de>2011-02-19 06:58:20 -0500
commit876dbd4cc1b35c1a4cb96a2be1d43ea0eabce3b4 (patch)
tree9be1e7e4cd4a4c9fadd98a9ac637020417215521 /kernel/irq/settings.h
parent2bdd10558c8d93009cb6c32ce9e30800fbb08add (diff)
genirq: Mirror irq trigger type bits in irq_data.state
That's the data structure chip functions get provided. Also allow them to signal the core code that they updated the flags in irq_data.state by returning IRQ_SET_MASK_OK_NOCOPY. The default is unchanged. The type bits should be accessed via: val = irqd_get_trigger_type(irqdata); and irqd_set_trigger_type(irqdata, val); Coders who access them directly will be tracked down and slapped with stinking trouts. Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'kernel/irq/settings.h')
-rw-r--r--kernel/irq/settings.h30
1 files changed, 30 insertions, 0 deletions
diff --git a/kernel/irq/settings.h b/kernel/irq/settings.h
index da5acb446b1..2201f2aaa9a 100644
--- a/kernel/irq/settings.h
+++ b/kernel/irq/settings.h
@@ -5,6 +5,7 @@
5enum { 5enum {
6 _IRQ_DEFAULT_INIT_FLAGS = IRQ_DEFAULT_INIT_FLAGS, 6 _IRQ_DEFAULT_INIT_FLAGS = IRQ_DEFAULT_INIT_FLAGS,
7 _IRQ_PER_CPU = IRQ_PER_CPU, 7 _IRQ_PER_CPU = IRQ_PER_CPU,
8 _IRQ_LEVEL = IRQ_LEVEL,
8 _IRQ_NO_BALANCING = IRQ_NO_BALANCING, 9 _IRQ_NO_BALANCING = IRQ_NO_BALANCING,
9 _IRQF_MODIFY_MASK = IRQF_MODIFY_MASK, 10 _IRQF_MODIFY_MASK = IRQF_MODIFY_MASK,
10}; 11};
@@ -31,6 +32,8 @@ enum {
31#define IRQ_NO_BALANCING GOT_YOU_MORON 32#define IRQ_NO_BALANCING GOT_YOU_MORON
32#undef IRQ_AFFINITY_SET 33#undef IRQ_AFFINITY_SET
33#define IRQ_AFFINITY_SET GOT_YOU_MORON 34#define IRQ_AFFINITY_SET GOT_YOU_MORON
35#undef IRQ_LEVEL
36#define IRQ_LEVEL GOT_YOU_MORON
34#undef IRQF_MODIFY_MASK 37#undef IRQF_MODIFY_MASK
35#define IRQF_MODIFY_MASK GOT_YOU_MORON 38#define IRQF_MODIFY_MASK GOT_YOU_MORON
36 39
@@ -60,3 +63,30 @@ static inline bool irq_settings_has_no_balance_set(struct irq_desc *desc)
60{ 63{
61 return desc->status & _IRQ_NO_BALANCING; 64 return desc->status & _IRQ_NO_BALANCING;
62} 65}
66
67static inline u32 irq_settings_get_trigger_mask(struct irq_desc *desc)
68{
69 return desc->status & IRQ_TYPE_SENSE_MASK;
70}
71
72static inline void
73irq_settings_set_trigger_mask(struct irq_desc *desc, u32 mask)
74{
75 desc->status &= ~IRQ_TYPE_SENSE_MASK;
76 desc->status |= mask & IRQ_TYPE_SENSE_MASK;
77}
78
79static inline bool irq_settings_is_level(struct irq_desc *desc)
80{
81 return desc->status & _IRQ_LEVEL;
82}
83
84static inline void irq_settings_clr_level(struct irq_desc *desc)
85{
86 desc->status &= ~_IRQ_LEVEL;
87}
88
89static inline void irq_settings_set_level(struct irq_desc *desc)
90{
91 desc->status |= _IRQ_LEVEL;
92}