settings.h 3.7 KB
Newer Older
1 2 3 4 5 6
/*
 * Internal header to deal with irq_desc->status which will be renamed
 * to irq_desc->settings.
 */
enum {
	_IRQ_DEFAULT_INIT_FLAGS	= IRQ_DEFAULT_INIT_FLAGS,
7
	_IRQ_PER_CPU		= IRQ_PER_CPU,
8
	_IRQ_LEVEL		= IRQ_LEVEL,
9 10 11 12
	_IRQ_NOPROBE		= IRQ_NOPROBE,
	_IRQ_NOREQUEST		= IRQ_NOREQUEST,
	_IRQ_NOAUTOEN		= IRQ_NOAUTOEN,
	_IRQ_MOVE_PCNTXT	= IRQ_MOVE_PCNTXT,
13
	_IRQ_NO_BALANCING	= IRQ_NO_BALANCING,
14
	_IRQ_NESTED_THREAD	= IRQ_NESTED_THREAD,
15
	_IRQF_MODIFY_MASK	= IRQF_MODIFY_MASK,
16
};
17 18 19

#undef IRQ_INPROGRESS
#define IRQ_INPROGRESS		GOT_YOU_MORON
20 21 22 23
#undef IRQ_REPLAY
#define IRQ_REPLAY		GOT_YOU_MORON
#undef IRQ_WAITING
#define IRQ_WAITING		GOT_YOU_MORON
24 25
#undef IRQ_DISABLED
#define IRQ_DISABLED		GOT_YOU_MORON
26 27
#undef IRQ_PENDING
#define IRQ_PENDING		GOT_YOU_MORON
28 29
#undef IRQ_MASKED
#define IRQ_MASKED		GOT_YOU_MORON
30 31
#undef IRQ_WAKEUP
#define IRQ_WAKEUP		GOT_YOU_MORON
32 33
#undef IRQ_MOVE_PENDING
#define IRQ_MOVE_PENDING	GOT_YOU_MORON
34 35 36 37
#undef IRQ_PER_CPU
#define IRQ_PER_CPU		GOT_YOU_MORON
#undef IRQ_NO_BALANCING
#define IRQ_NO_BALANCING	GOT_YOU_MORON
38 39
#undef IRQ_AFFINITY_SET
#define IRQ_AFFINITY_SET	GOT_YOU_MORON
40 41
#undef IRQ_LEVEL
#define IRQ_LEVEL		GOT_YOU_MORON
42 43 44 45 46 47 48 49
#undef IRQ_NOPROBE
#define IRQ_NOPROBE		GOT_YOU_MORON
#undef IRQ_NOREQUEST
#define IRQ_NOREQUEST		GOT_YOU_MORON
#undef IRQ_NOAUTOEN
#define IRQ_NOAUTOEN		GOT_YOU_MORON
#undef IRQ_NESTED_THREAD
#define IRQ_NESTED_THREAD	GOT_YOU_MORON
50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78
#undef IRQF_MODIFY_MASK
#define IRQF_MODIFY_MASK	GOT_YOU_MORON

static inline void
irq_settings_clr_and_set(struct irq_desc *desc, u32 clr, u32 set)
{
	desc->status &= ~(clr & _IRQF_MODIFY_MASK);
	desc->status |= (set & _IRQF_MODIFY_MASK);
}

static inline bool irq_settings_is_per_cpu(struct irq_desc *desc)
{
	return desc->status & _IRQ_PER_CPU;
}

static inline void irq_settings_set_per_cpu(struct irq_desc *desc)
{
	desc->status |= _IRQ_PER_CPU;
}

static inline void irq_settings_set_no_balancing(struct irq_desc *desc)
{
	desc->status |= _IRQ_NO_BALANCING;
}

static inline bool irq_settings_has_no_balance_set(struct irq_desc *desc)
{
	return desc->status & _IRQ_NO_BALANCING;
}
79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105

static inline u32 irq_settings_get_trigger_mask(struct irq_desc *desc)
{
	return desc->status & IRQ_TYPE_SENSE_MASK;
}

static inline void
irq_settings_set_trigger_mask(struct irq_desc *desc, u32 mask)
{
	desc->status &= ~IRQ_TYPE_SENSE_MASK;
	desc->status |= mask & IRQ_TYPE_SENSE_MASK;
}

static inline bool irq_settings_is_level(struct irq_desc *desc)
{
	return desc->status & _IRQ_LEVEL;
}

static inline void irq_settings_clr_level(struct irq_desc *desc)
{
	desc->status &= ~_IRQ_LEVEL;
}

static inline void irq_settings_set_level(struct irq_desc *desc)
{
	desc->status |= _IRQ_LEVEL;
}
106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150

static inline bool irq_settings_can_request(struct irq_desc *desc)
{
	return !(desc->status & _IRQ_NOREQUEST);
}

static inline void irq_settings_clr_norequest(struct irq_desc *desc)
{
	desc->status &= ~_IRQ_NOREQUEST;
}

static inline void irq_settings_set_norequest(struct irq_desc *desc)
{
	desc->status |= _IRQ_NOREQUEST;
}

static inline bool irq_settings_can_probe(struct irq_desc *desc)
{
	return !(desc->status & _IRQ_NOPROBE);
}

static inline void irq_settings_clr_noprobe(struct irq_desc *desc)
{
	desc->status &= ~_IRQ_NOPROBE;
}

static inline void irq_settings_set_noprobe(struct irq_desc *desc)
{
	desc->status |= _IRQ_NOPROBE;
}

static inline bool irq_settings_can_move_pcntxt(struct irq_desc *desc)
{
	return desc->status & _IRQ_MOVE_PCNTXT;
}

static inline bool irq_settings_can_autoenable(struct irq_desc *desc)
{
	return !(desc->status & _IRQ_NOAUTOEN);
}

static inline bool irq_settings_is_nested_thread(struct irq_desc *desc)
{
	return desc->status & _IRQ_NESTED_THREAD;
}
151 152 153

/* Nothing should touch desc->status from now on */
#define status		USE_THE_PROPER_WRAPPERS_YOU_MORON