genirq: irqchip: Add a mask calculation function
[linux-2.6/btrfs-unstable.git] / kernel / irq / generic-chip.c
blob5068fe3ae1afd2272e95bcc17c70452b0ab384ed
1 /*
2 * Library implementing the most common irq chip callback functions
4 * Copyright (C) 2011, Thomas Gleixner
5 */
6 #include <linux/io.h>
7 #include <linux/irq.h>
8 #include <linux/slab.h>
9 #include <linux/export.h>
10 #include <linux/interrupt.h>
11 #include <linux/kernel_stat.h>
12 #include <linux/syscore_ops.h>
14 #include "internals.h"
16 static LIST_HEAD(gc_list);
17 static DEFINE_RAW_SPINLOCK(gc_lock);
19 /**
20 * irq_gc_noop - NOOP function
21 * @d: irq_data
23 void irq_gc_noop(struct irq_data *d)
27 /**
28 * irq_gc_mask_disable_reg - Mask chip via disable register
29 * @d: irq_data
31 * Chip has separate enable/disable registers instead of a single mask
32 * register.
34 void irq_gc_mask_disable_reg(struct irq_data *d)
36 struct irq_chip_generic *gc = irq_data_get_irq_chip_data(d);
37 struct irq_chip_type *ct = irq_data_get_chip_type(d);
38 u32 mask = d->mask;
40 irq_gc_lock(gc);
41 irq_reg_writel(mask, gc->reg_base + ct->regs.disable);
42 *ct->mask_cache &= ~mask;
43 irq_gc_unlock(gc);
46 /**
47 * irq_gc_mask_set_mask_bit - Mask chip via setting bit in mask register
48 * @d: irq_data
50 * Chip has a single mask register. Values of this register are cached
51 * and protected by gc->lock
53 void irq_gc_mask_set_bit(struct irq_data *d)
55 struct irq_chip_generic *gc = irq_data_get_irq_chip_data(d);
56 struct irq_chip_type *ct = irq_data_get_chip_type(d);
57 u32 mask = d->mask;
59 irq_gc_lock(gc);
60 *ct->mask_cache |= mask;
61 irq_reg_writel(*ct->mask_cache, gc->reg_base + ct->regs.mask);
62 irq_gc_unlock(gc);
65 /**
66 * irq_gc_mask_set_mask_bit - Mask chip via clearing bit in mask register
67 * @d: irq_data
69 * Chip has a single mask register. Values of this register are cached
70 * and protected by gc->lock
72 void irq_gc_mask_clr_bit(struct irq_data *d)
74 struct irq_chip_generic *gc = irq_data_get_irq_chip_data(d);
75 struct irq_chip_type *ct = irq_data_get_chip_type(d);
76 u32 mask = d->mask;
78 irq_gc_lock(gc);
79 *ct->mask_cache &= ~mask;
80 irq_reg_writel(*ct->mask_cache, gc->reg_base + ct->regs.mask);
81 irq_gc_unlock(gc);
84 /**
85 * irq_gc_unmask_enable_reg - Unmask chip via enable register
86 * @d: irq_data
88 * Chip has separate enable/disable registers instead of a single mask
89 * register.
91 void irq_gc_unmask_enable_reg(struct irq_data *d)
93 struct irq_chip_generic *gc = irq_data_get_irq_chip_data(d);
94 struct irq_chip_type *ct = irq_data_get_chip_type(d);
95 u32 mask = d->mask;
97 irq_gc_lock(gc);
98 irq_reg_writel(mask, gc->reg_base + ct->regs.enable);
99 *ct->mask_cache |= mask;
100 irq_gc_unlock(gc);
104 * irq_gc_ack_set_bit - Ack pending interrupt via setting bit
105 * @d: irq_data
107 void irq_gc_ack_set_bit(struct irq_data *d)
109 struct irq_chip_generic *gc = irq_data_get_irq_chip_data(d);
110 struct irq_chip_type *ct = irq_data_get_chip_type(d);
111 u32 mask = d->mask;
113 irq_gc_lock(gc);
114 irq_reg_writel(mask, gc->reg_base + ct->regs.ack);
115 irq_gc_unlock(gc);
119 * irq_gc_ack_clr_bit - Ack pending interrupt via clearing bit
120 * @d: irq_data
122 void irq_gc_ack_clr_bit(struct irq_data *d)
124 struct irq_chip_generic *gc = irq_data_get_irq_chip_data(d);
125 struct irq_chip_type *ct = irq_data_get_chip_type(d);
126 u32 mask = ~d->mask;
128 irq_gc_lock(gc);
129 irq_reg_writel(mask, gc->reg_base + ct->regs.ack);
130 irq_gc_unlock(gc);
134 * irq_gc_mask_disable_reg_and_ack- Mask and ack pending interrupt
135 * @d: irq_data
137 void irq_gc_mask_disable_reg_and_ack(struct irq_data *d)
139 struct irq_chip_generic *gc = irq_data_get_irq_chip_data(d);
140 struct irq_chip_type *ct = irq_data_get_chip_type(d);
141 u32 mask = d->mask;
143 irq_gc_lock(gc);
144 irq_reg_writel(mask, gc->reg_base + ct->regs.mask);
145 irq_reg_writel(mask, gc->reg_base + ct->regs.ack);
146 irq_gc_unlock(gc);
150 * irq_gc_eoi - EOI interrupt
151 * @d: irq_data
153 void irq_gc_eoi(struct irq_data *d)
155 struct irq_chip_generic *gc = irq_data_get_irq_chip_data(d);
156 struct irq_chip_type *ct = irq_data_get_chip_type(d);
157 u32 mask = d->mask;
159 irq_gc_lock(gc);
160 irq_reg_writel(mask, gc->reg_base + ct->regs.eoi);
161 irq_gc_unlock(gc);
165 * irq_gc_set_wake - Set/clr wake bit for an interrupt
166 * @d: irq_data
168 * For chips where the wake from suspend functionality is not
169 * configured in a separate register and the wakeup active state is
170 * just stored in a bitmask.
172 int irq_gc_set_wake(struct irq_data *d, unsigned int on)
174 struct irq_chip_generic *gc = irq_data_get_irq_chip_data(d);
175 u32 mask = d->mask;
177 if (!(mask & gc->wake_enabled))
178 return -EINVAL;
180 irq_gc_lock(gc);
181 if (on)
182 gc->wake_active |= mask;
183 else
184 gc->wake_active &= ~mask;
185 irq_gc_unlock(gc);
186 return 0;
190 * irq_alloc_generic_chip - Allocate a generic chip and initialize it
191 * @name: Name of the irq chip
192 * @num_ct: Number of irq_chip_type instances associated with this
193 * @irq_base: Interrupt base nr for this chip
194 * @reg_base: Register base address (virtual)
195 * @handler: Default flow handler associated with this chip
197 * Returns an initialized irq_chip_generic structure. The chip defaults
198 * to the primary (index 0) irq_chip_type and @handler
200 struct irq_chip_generic *
201 irq_alloc_generic_chip(const char *name, int num_ct, unsigned int irq_base,
202 void __iomem *reg_base, irq_flow_handler_t handler)
204 struct irq_chip_generic *gc;
205 unsigned long sz = sizeof(*gc) + num_ct * sizeof(struct irq_chip_type);
207 gc = kzalloc(sz, GFP_KERNEL);
208 if (gc) {
209 raw_spin_lock_init(&gc->lock);
210 gc->num_ct = num_ct;
211 gc->irq_base = irq_base;
212 gc->reg_base = reg_base;
213 gc->chip_types->chip.name = name;
214 gc->chip_types->handler = handler;
216 return gc;
218 EXPORT_SYMBOL_GPL(irq_alloc_generic_chip);
221 * Separate lockdep class for interrupt chip which can nest irq_desc
222 * lock.
224 static struct lock_class_key irq_nested_lock_class;
227 * irq_setup_generic_chip - Setup a range of interrupts with a generic chip
228 * @gc: Generic irq chip holding all data
229 * @msk: Bitmask holding the irqs to initialize relative to gc->irq_base
230 * @flags: Flags for initialization
231 * @clr: IRQ_* bits to clear
232 * @set: IRQ_* bits to set
234 * Set up max. 32 interrupts starting from gc->irq_base. Note, this
235 * initializes all interrupts to the primary irq_chip_type and its
236 * associated handler.
238 void irq_setup_generic_chip(struct irq_chip_generic *gc, u32 msk,
239 enum irq_gc_flags flags, unsigned int clr,
240 unsigned int set)
242 struct irq_chip_type *ct = gc->chip_types;
243 struct irq_chip *chip = &ct->chip;
244 unsigned int i;
245 u32 *mskptr = &gc->mask_cache, mskreg = ct->regs.mask;
247 raw_spin_lock(&gc_lock);
248 list_add_tail(&gc->list, &gc_list);
249 raw_spin_unlock(&gc_lock);
251 for (i = 0; i < gc->num_ct; i++) {
252 if (flags & IRQ_GC_MASK_CACHE_PER_TYPE) {
253 mskptr = &ct[i].mask_cache_priv;
254 mskreg = ct[i].regs.mask;
256 ct[i].mask_cache = mskptr;
257 if (flags & IRQ_GC_INIT_MASK_CACHE)
258 *mskptr = irq_reg_readl(gc->reg_base + mskreg);
261 for (i = gc->irq_base; msk; msk >>= 1, i++) {
262 if (!(msk & 0x01))
263 continue;
265 if (flags & IRQ_GC_INIT_NESTED_LOCK)
266 irq_set_lockdep_class(i, &irq_nested_lock_class);
268 if (!(flags & IRQ_GC_NO_MASK)) {
269 struct irq_data *d = irq_get_irq_data(i);
271 if (chip->irq_calc_mask)
272 chip->irq_calc_mask(d);
273 else
274 d->mask = 1 << (i - gc->irq_base);
276 irq_set_chip_and_handler(i, chip, ct->handler);
277 irq_set_chip_data(i, gc);
278 irq_modify_status(i, clr, set);
280 gc->irq_cnt = i - gc->irq_base;
282 EXPORT_SYMBOL_GPL(irq_setup_generic_chip);
285 * irq_setup_alt_chip - Switch to alternative chip
286 * @d: irq_data for this interrupt
287 * @type Flow type to be initialized
289 * Only to be called from chip->irq_set_type() callbacks.
291 int irq_setup_alt_chip(struct irq_data *d, unsigned int type)
293 struct irq_chip_generic *gc = irq_data_get_irq_chip_data(d);
294 struct irq_chip_type *ct = gc->chip_types;
295 unsigned int i;
297 for (i = 0; i < gc->num_ct; i++, ct++) {
298 if (ct->type & type) {
299 d->chip = &ct->chip;
300 irq_data_to_desc(d)->handle_irq = ct->handler;
301 return 0;
304 return -EINVAL;
306 EXPORT_SYMBOL_GPL(irq_setup_alt_chip);
309 * irq_remove_generic_chip - Remove a chip
310 * @gc: Generic irq chip holding all data
311 * @msk: Bitmask holding the irqs to initialize relative to gc->irq_base
312 * @clr: IRQ_* bits to clear
313 * @set: IRQ_* bits to set
315 * Remove up to 32 interrupts starting from gc->irq_base.
317 void irq_remove_generic_chip(struct irq_chip_generic *gc, u32 msk,
318 unsigned int clr, unsigned int set)
320 unsigned int i = gc->irq_base;
322 raw_spin_lock(&gc_lock);
323 list_del(&gc->list);
324 raw_spin_unlock(&gc_lock);
326 for (; msk; msk >>= 1, i++) {
327 if (!(msk & 0x01))
328 continue;
330 /* Remove handler first. That will mask the irq line */
331 irq_set_handler(i, NULL);
332 irq_set_chip(i, &no_irq_chip);
333 irq_set_chip_data(i, NULL);
334 irq_modify_status(i, clr, set);
337 EXPORT_SYMBOL_GPL(irq_remove_generic_chip);
339 #ifdef CONFIG_PM
340 static int irq_gc_suspend(void)
342 struct irq_chip_generic *gc;
344 list_for_each_entry(gc, &gc_list, list) {
345 struct irq_chip_type *ct = gc->chip_types;
347 if (ct->chip.irq_suspend)
348 ct->chip.irq_suspend(irq_get_irq_data(gc->irq_base));
350 return 0;
353 static void irq_gc_resume(void)
355 struct irq_chip_generic *gc;
357 list_for_each_entry(gc, &gc_list, list) {
358 struct irq_chip_type *ct = gc->chip_types;
360 if (ct->chip.irq_resume)
361 ct->chip.irq_resume(irq_get_irq_data(gc->irq_base));
364 #else
365 #define irq_gc_suspend NULL
366 #define irq_gc_resume NULL
367 #endif
369 static void irq_gc_shutdown(void)
371 struct irq_chip_generic *gc;
373 list_for_each_entry(gc, &gc_list, list) {
374 struct irq_chip_type *ct = gc->chip_types;
376 if (ct->chip.irq_pm_shutdown)
377 ct->chip.irq_pm_shutdown(irq_get_irq_data(gc->irq_base));
381 static struct syscore_ops irq_gc_syscore_ops = {
382 .suspend = irq_gc_suspend,
383 .resume = irq_gc_resume,
384 .shutdown = irq_gc_shutdown,
387 static int __init irq_gc_init_ops(void)
389 register_syscore_ops(&irq_gc_syscore_ops);
390 return 0;
392 device_initcall(irq_gc_init_ops);