2 * Shared interrupt handling code for IPR and INTC2 types of IRQs.
4 * Copyright (C) 2007, 2008 Magnus Damm
5 * Copyright (C) 2009, 2010 Paul Mundt
7 * Based on intc2.c and ipr.c
9 * Copyright (C) 1999 Niibe Yutaka & Takeshi Yaegashi
10 * Copyright (C) 2000 Kazumoto Kojima
11 * Copyright (C) 2001 David J. Mckay (david.mckay@st.com)
12 * Copyright (C) 2003 Takashi Kusuda <kusuda-takashi@hitachi-ul.co.jp>
13 * Copyright (C) 2005, 2006 Paul Mundt
15 * This file is subject to the terms and conditions of the GNU General Public
16 * License. See the file "COPYING" in the main directory of this archive
19 #include <linux/init.h>
20 #include <linux/irq.h>
21 #include <linux/module.h>
23 #include <linux/slab.h>
24 #include <linux/interrupt.h>
25 #include <linux/sh_intc.h>
26 #include <linux/sysdev.h>
27 #include <linux/list.h>
28 #include <linux/topology.h>
29 #include <linux/bitmap.h>
30 #include <linux/cpumask.h>
32 #define _INTC_MK(fn, mode, addr_e, addr_d, width, shift) \
33 ((shift) | ((width) << 5) | ((fn) << 9) | ((mode) << 13) | \
34 ((addr_e) << 16) | ((addr_d << 24)))
36 #define _INTC_SHIFT(h) (h & 0x1f)
37 #define _INTC_WIDTH(h) ((h >> 5) & 0xf)
38 #define _INTC_FN(h) ((h >> 9) & 0xf)
39 #define _INTC_MODE(h) ((h >> 13) & 0x7)
40 #define _INTC_ADDR_E(h) ((h >> 16) & 0xff)
41 #define _INTC_ADDR_D(h) ((h >> 24) & 0xff)
43 struct intc_handle_int
{
48 struct intc_desc_int
{
49 struct list_head list
;
50 struct sys_device sysdev
;
57 struct intc_handle_int
*prio
;
59 struct intc_handle_int
*sense
;
60 unsigned int nr_sense
;
64 static LIST_HEAD(intc_list
);
67 * The intc_irq_map provides a global map of bound IRQ vectors for a
68 * given platform. Allocation of IRQs are either static through the CPU
69 * vector map, or dynamic in the case of board mux vectors or MSI.
71 * As this is a central point for all IRQ controllers on the system,
72 * each of the available sources are mapped out here. This combined with
73 * sparseirq makes it quite trivial to keep the vector map tightly packed
74 * when dynamically creating IRQs, as well as tying in to otherwise
75 * unused irq_desc positions in the sparse array.
77 static DECLARE_BITMAP(intc_irq_map
, NR_IRQS
);
78 static DEFINE_SPINLOCK(vector_lock
);
81 #define IS_SMP(x) x.smp
82 #define INTC_REG(d, x, c) (d->reg[(x)] + ((d->smp[(x)] & 0xff) * c))
83 #define SMP_NR(d, x) ((d->smp[(x)] >> 8) ? (d->smp[(x)] >> 8) : 1)
86 #define INTC_REG(d, x, c) (d->reg[(x)])
87 #define SMP_NR(d, x) 1
90 static unsigned int intc_prio_level
[NR_IRQS
]; /* for now */
91 static unsigned long ack_handle
[NR_IRQS
];
93 static inline struct intc_desc_int
*get_intc_desc(unsigned int irq
)
95 struct irq_chip
*chip
= get_irq_chip(irq
);
96 return container_of(chip
, struct intc_desc_int
, chip
);
99 static inline unsigned int set_field(unsigned int value
,
100 unsigned int field_value
,
103 unsigned int width
= _INTC_WIDTH(handle
);
104 unsigned int shift
= _INTC_SHIFT(handle
);
106 value
&= ~(((1 << width
) - 1) << shift
);
107 value
|= field_value
<< shift
;
111 static void write_8(unsigned long addr
, unsigned long h
, unsigned long data
)
113 __raw_writeb(set_field(0, data
, h
), addr
);
114 (void)__raw_readb(addr
); /* Defeat write posting */
117 static void write_16(unsigned long addr
, unsigned long h
, unsigned long data
)
119 __raw_writew(set_field(0, data
, h
), addr
);
120 (void)__raw_readw(addr
); /* Defeat write posting */
123 static void write_32(unsigned long addr
, unsigned long h
, unsigned long data
)
125 __raw_writel(set_field(0, data
, h
), addr
);
126 (void)__raw_readl(addr
); /* Defeat write posting */
129 static void modify_8(unsigned long addr
, unsigned long h
, unsigned long data
)
132 local_irq_save(flags
);
133 __raw_writeb(set_field(__raw_readb(addr
), data
, h
), addr
);
134 (void)__raw_readb(addr
); /* Defeat write posting */
135 local_irq_restore(flags
);
138 static void modify_16(unsigned long addr
, unsigned long h
, unsigned long data
)
141 local_irq_save(flags
);
142 __raw_writew(set_field(__raw_readw(addr
), data
, h
), addr
);
143 (void)__raw_readw(addr
); /* Defeat write posting */
144 local_irq_restore(flags
);
147 static void modify_32(unsigned long addr
, unsigned long h
, unsigned long data
)
150 local_irq_save(flags
);
151 __raw_writel(set_field(__raw_readl(addr
), data
, h
), addr
);
152 (void)__raw_readl(addr
); /* Defeat write posting */
153 local_irq_restore(flags
);
156 enum { REG_FN_ERR
= 0, REG_FN_WRITE_BASE
= 1, REG_FN_MODIFY_BASE
= 5 };
158 static void (*intc_reg_fns
[])(unsigned long addr
,
160 unsigned long data
) = {
161 [REG_FN_WRITE_BASE
+ 0] = write_8
,
162 [REG_FN_WRITE_BASE
+ 1] = write_16
,
163 [REG_FN_WRITE_BASE
+ 3] = write_32
,
164 [REG_FN_MODIFY_BASE
+ 0] = modify_8
,
165 [REG_FN_MODIFY_BASE
+ 1] = modify_16
,
166 [REG_FN_MODIFY_BASE
+ 3] = modify_32
,
169 enum { MODE_ENABLE_REG
= 0, /* Bit(s) set -> interrupt enabled */
170 MODE_MASK_REG
, /* Bit(s) set -> interrupt disabled */
171 MODE_DUAL_REG
, /* Two registers, set bit to enable / disable */
172 MODE_PRIO_REG
, /* Priority value written to enable interrupt */
173 MODE_PCLR_REG
, /* Above plus all bits set to disable interrupt */
176 static void intc_mode_field(unsigned long addr
,
177 unsigned long handle
,
178 void (*fn
)(unsigned long,
183 fn(addr
, handle
, ((1 << _INTC_WIDTH(handle
)) - 1));
186 static void intc_mode_zero(unsigned long addr
,
187 unsigned long handle
,
188 void (*fn
)(unsigned long,
196 static void intc_mode_prio(unsigned long addr
,
197 unsigned long handle
,
198 void (*fn
)(unsigned long,
203 fn(addr
, handle
, intc_prio_level
[irq
]);
206 static void (*intc_enable_fns
[])(unsigned long addr
,
207 unsigned long handle
,
208 void (*fn
)(unsigned long,
211 unsigned int irq
) = {
212 [MODE_ENABLE_REG
] = intc_mode_field
,
213 [MODE_MASK_REG
] = intc_mode_zero
,
214 [MODE_DUAL_REG
] = intc_mode_field
,
215 [MODE_PRIO_REG
] = intc_mode_prio
,
216 [MODE_PCLR_REG
] = intc_mode_prio
,
219 static void (*intc_disable_fns
[])(unsigned long addr
,
220 unsigned long handle
,
221 void (*fn
)(unsigned long,
224 unsigned int irq
) = {
225 [MODE_ENABLE_REG
] = intc_mode_zero
,
226 [MODE_MASK_REG
] = intc_mode_field
,
227 [MODE_DUAL_REG
] = intc_mode_field
,
228 [MODE_PRIO_REG
] = intc_mode_zero
,
229 [MODE_PCLR_REG
] = intc_mode_field
,
232 static inline void _intc_enable(unsigned int irq
, unsigned long handle
)
234 struct intc_desc_int
*d
= get_intc_desc(irq
);
238 for (cpu
= 0; cpu
< SMP_NR(d
, _INTC_ADDR_E(handle
)); cpu
++) {
240 if (!cpumask_test_cpu(cpu
, irq_to_desc(irq
)->affinity
))
243 addr
= INTC_REG(d
, _INTC_ADDR_E(handle
), cpu
);
244 intc_enable_fns
[_INTC_MODE(handle
)](addr
, handle
, intc_reg_fns\
245 [_INTC_FN(handle
)], irq
);
249 static void intc_enable(unsigned int irq
)
251 _intc_enable(irq
, (unsigned long)get_irq_chip_data(irq
));
254 static void intc_disable(unsigned int irq
)
256 struct intc_desc_int
*d
= get_intc_desc(irq
);
257 unsigned long handle
= (unsigned long) get_irq_chip_data(irq
);
261 for (cpu
= 0; cpu
< SMP_NR(d
, _INTC_ADDR_D(handle
)); cpu
++) {
263 if (!cpumask_test_cpu(cpu
, irq_to_desc(irq
)->affinity
))
266 addr
= INTC_REG(d
, _INTC_ADDR_D(handle
), cpu
);
267 intc_disable_fns
[_INTC_MODE(handle
)](addr
, handle
,intc_reg_fns\
268 [_INTC_FN(handle
)], irq
);
272 static void (*intc_enable_noprio_fns
[])(unsigned long addr
,
273 unsigned long handle
,
274 void (*fn
)(unsigned long,
277 unsigned int irq
) = {
278 [MODE_ENABLE_REG
] = intc_mode_field
,
279 [MODE_MASK_REG
] = intc_mode_zero
,
280 [MODE_DUAL_REG
] = intc_mode_field
,
281 [MODE_PRIO_REG
] = intc_mode_field
,
282 [MODE_PCLR_REG
] = intc_mode_field
,
285 static void intc_enable_disable(struct intc_desc_int
*d
,
286 unsigned long handle
, int do_enable
)
290 void (*fn
)(unsigned long, unsigned long,
291 void (*)(unsigned long, unsigned long, unsigned long),
295 for (cpu
= 0; cpu
< SMP_NR(d
, _INTC_ADDR_E(handle
)); cpu
++) {
296 addr
= INTC_REG(d
, _INTC_ADDR_E(handle
), cpu
);
297 fn
= intc_enable_noprio_fns
[_INTC_MODE(handle
)];
298 fn(addr
, handle
, intc_reg_fns
[_INTC_FN(handle
)], 0);
301 for (cpu
= 0; cpu
< SMP_NR(d
, _INTC_ADDR_D(handle
)); cpu
++) {
302 addr
= INTC_REG(d
, _INTC_ADDR_D(handle
), cpu
);
303 fn
= intc_disable_fns
[_INTC_MODE(handle
)];
304 fn(addr
, handle
, intc_reg_fns
[_INTC_FN(handle
)], 0);
309 static int intc_set_wake(unsigned int irq
, unsigned int on
)
311 return 0; /* allow wakeup, but setup hardware in intc_suspend() */
316 * This is held with the irq desc lock held, so we don't require any
317 * additional locking here at the intc desc level. The affinity mask is
318 * later tested in the enable/disable paths.
320 static int intc_set_affinity(unsigned int irq
, const struct cpumask
*cpumask
)
322 if (!cpumask_intersects(cpumask
, cpu_online_mask
))
325 cpumask_copy(irq_to_desc(irq
)->affinity
, cpumask
);
331 static void intc_mask_ack(unsigned int irq
)
333 struct intc_desc_int
*d
= get_intc_desc(irq
);
334 unsigned long handle
= ack_handle
[irq
];
339 /* read register and write zero only to the assocaited bit */
342 addr
= INTC_REG(d
, _INTC_ADDR_D(handle
), 0);
343 switch (_INTC_FN(handle
)) {
344 case REG_FN_MODIFY_BASE
+ 0: /* 8bit */
346 __raw_writeb(0xff ^ set_field(0, 1, handle
), addr
);
348 case REG_FN_MODIFY_BASE
+ 1: /* 16bit */
350 __raw_writew(0xffff ^ set_field(0, 1, handle
), addr
);
352 case REG_FN_MODIFY_BASE
+ 3: /* 32bit */
354 __raw_writel(0xffffffff ^ set_field(0, 1, handle
), addr
);
363 static struct intc_handle_int
*intc_find_irq(struct intc_handle_int
*hp
,
369 /* this doesn't scale well, but...
371 * this function should only be used for cerain uncommon
372 * operations such as intc_set_priority() and intc_set_sense()
373 * and in those rare cases performance doesn't matter that much.
374 * keeping the memory footprint low is more important.
376 * one rather simple way to speed this up and still keep the
377 * memory footprint down is to make sure the array is sorted
378 * and then perform a bisect to lookup the irq.
381 for (i
= 0; i
< nr_hp
; i
++) {
382 if ((hp
+ i
)->irq
!= irq
)
391 int intc_set_priority(unsigned int irq
, unsigned int prio
)
393 struct intc_desc_int
*d
= get_intc_desc(irq
);
394 struct intc_handle_int
*ihp
;
396 if (!intc_prio_level
[irq
] || prio
<= 1)
399 ihp
= intc_find_irq(d
->prio
, d
->nr_prio
, irq
);
401 if (prio
>= (1 << _INTC_WIDTH(ihp
->handle
)))
404 intc_prio_level
[irq
] = prio
;
407 * only set secondary masking method directly
408 * primary masking method is using intc_prio_level[irq]
409 * priority level will be set during next enable()
412 if (_INTC_FN(ihp
->handle
) != REG_FN_ERR
)
413 _intc_enable(irq
, ihp
->handle
);
418 #define VALID(x) (x | 0x80)
420 static unsigned char intc_irq_sense_table
[IRQ_TYPE_SENSE_MASK
+ 1] = {
421 [IRQ_TYPE_EDGE_FALLING
] = VALID(0),
422 [IRQ_TYPE_EDGE_RISING
] = VALID(1),
423 [IRQ_TYPE_LEVEL_LOW
] = VALID(2),
424 /* SH7706, SH7707 and SH7709 do not support high level triggered */
425 #if !defined(CONFIG_CPU_SUBTYPE_SH7706) && \
426 !defined(CONFIG_CPU_SUBTYPE_SH7707) && \
427 !defined(CONFIG_CPU_SUBTYPE_SH7709)
428 [IRQ_TYPE_LEVEL_HIGH
] = VALID(3),
432 static int intc_set_sense(unsigned int irq
, unsigned int type
)
434 struct intc_desc_int
*d
= get_intc_desc(irq
);
435 unsigned char value
= intc_irq_sense_table
[type
& IRQ_TYPE_SENSE_MASK
];
436 struct intc_handle_int
*ihp
;
442 ihp
= intc_find_irq(d
->sense
, d
->nr_sense
, irq
);
444 addr
= INTC_REG(d
, _INTC_ADDR_E(ihp
->handle
), 0);
445 intc_reg_fns
[_INTC_FN(ihp
->handle
)](addr
, ihp
->handle
, value
);
450 static unsigned int __init
intc_get_reg(struct intc_desc_int
*d
,
451 unsigned long address
)
455 for (k
= 0; k
< d
->nr_reg
; k
++) {
456 if (d
->reg
[k
] == address
)
464 static intc_enum __init
intc_grp_id(struct intc_desc
*desc
,
467 struct intc_group
*g
= desc
->hw
.groups
;
470 for (i
= 0; g
&& enum_id
&& i
< desc
->hw
.nr_groups
; i
++) {
471 g
= desc
->hw
.groups
+ i
;
473 for (j
= 0; g
->enum_ids
[j
]; j
++) {
474 if (g
->enum_ids
[j
] != enum_id
)
484 static unsigned int __init
_intc_mask_data(struct intc_desc
*desc
,
485 struct intc_desc_int
*d
,
487 unsigned int *reg_idx
,
488 unsigned int *fld_idx
)
490 struct intc_mask_reg
*mr
= desc
->hw
.mask_regs
;
491 unsigned int fn
, mode
;
492 unsigned long reg_e
, reg_d
;
494 while (mr
&& enum_id
&& *reg_idx
< desc
->hw
.nr_mask_regs
) {
495 mr
= desc
->hw
.mask_regs
+ *reg_idx
;
497 for (; *fld_idx
< ARRAY_SIZE(mr
->enum_ids
); (*fld_idx
)++) {
498 if (mr
->enum_ids
[*fld_idx
] != enum_id
)
501 if (mr
->set_reg
&& mr
->clr_reg
) {
502 fn
= REG_FN_WRITE_BASE
;
503 mode
= MODE_DUAL_REG
;
507 fn
= REG_FN_MODIFY_BASE
;
509 mode
= MODE_ENABLE_REG
;
513 mode
= MODE_MASK_REG
;
519 fn
+= (mr
->reg_width
>> 3) - 1;
520 return _INTC_MK(fn
, mode
,
521 intc_get_reg(d
, reg_e
),
522 intc_get_reg(d
, reg_d
),
524 (mr
->reg_width
- 1) - *fld_idx
);
534 static unsigned int __init
intc_mask_data(struct intc_desc
*desc
,
535 struct intc_desc_int
*d
,
536 intc_enum enum_id
, int do_grps
)
542 ret
= _intc_mask_data(desc
, d
, enum_id
, &i
, &j
);
547 return intc_mask_data(desc
, d
, intc_grp_id(desc
, enum_id
), 0);
552 static unsigned int __init
_intc_prio_data(struct intc_desc
*desc
,
553 struct intc_desc_int
*d
,
555 unsigned int *reg_idx
,
556 unsigned int *fld_idx
)
558 struct intc_prio_reg
*pr
= desc
->hw
.prio_regs
;
559 unsigned int fn
, n
, mode
, bit
;
560 unsigned long reg_e
, reg_d
;
562 while (pr
&& enum_id
&& *reg_idx
< desc
->hw
.nr_prio_regs
) {
563 pr
= desc
->hw
.prio_regs
+ *reg_idx
;
565 for (; *fld_idx
< ARRAY_SIZE(pr
->enum_ids
); (*fld_idx
)++) {
566 if (pr
->enum_ids
[*fld_idx
] != enum_id
)
569 if (pr
->set_reg
&& pr
->clr_reg
) {
570 fn
= REG_FN_WRITE_BASE
;
571 mode
= MODE_PCLR_REG
;
575 fn
= REG_FN_MODIFY_BASE
;
576 mode
= MODE_PRIO_REG
;
583 fn
+= (pr
->reg_width
>> 3) - 1;
586 BUG_ON(n
* pr
->field_width
> pr
->reg_width
);
588 bit
= pr
->reg_width
- (n
* pr
->field_width
);
590 return _INTC_MK(fn
, mode
,
591 intc_get_reg(d
, reg_e
),
592 intc_get_reg(d
, reg_d
),
593 pr
->field_width
, bit
);
603 static unsigned int __init
intc_prio_data(struct intc_desc
*desc
,
604 struct intc_desc_int
*d
,
605 intc_enum enum_id
, int do_grps
)
611 ret
= _intc_prio_data(desc
, d
, enum_id
, &i
, &j
);
616 return intc_prio_data(desc
, d
, intc_grp_id(desc
, enum_id
), 0);
621 static void __init
intc_enable_disable_enum(struct intc_desc
*desc
,
622 struct intc_desc_int
*d
,
623 intc_enum enum_id
, int enable
)
625 unsigned int i
, j
, data
;
627 /* go through and enable/disable all mask bits */
630 data
= _intc_mask_data(desc
, d
, enum_id
, &i
, &j
);
632 intc_enable_disable(d
, data
, enable
);
636 /* go through and enable/disable all priority fields */
639 data
= _intc_prio_data(desc
, d
, enum_id
, &i
, &j
);
641 intc_enable_disable(d
, data
, enable
);
647 static unsigned int __init
intc_ack_data(struct intc_desc
*desc
,
648 struct intc_desc_int
*d
,
651 struct intc_mask_reg
*mr
= desc
->hw
.ack_regs
;
652 unsigned int i
, j
, fn
, mode
;
653 unsigned long reg_e
, reg_d
;
655 for (i
= 0; mr
&& enum_id
&& i
< desc
->hw
.nr_ack_regs
; i
++) {
656 mr
= desc
->hw
.ack_regs
+ i
;
658 for (j
= 0; j
< ARRAY_SIZE(mr
->enum_ids
); j
++) {
659 if (mr
->enum_ids
[j
] != enum_id
)
662 fn
= REG_FN_MODIFY_BASE
;
663 mode
= MODE_ENABLE_REG
;
667 fn
+= (mr
->reg_width
>> 3) - 1;
668 return _INTC_MK(fn
, mode
,
669 intc_get_reg(d
, reg_e
),
670 intc_get_reg(d
, reg_d
),
672 (mr
->reg_width
- 1) - j
);
679 static unsigned int __init
intc_sense_data(struct intc_desc
*desc
,
680 struct intc_desc_int
*d
,
683 struct intc_sense_reg
*sr
= desc
->hw
.sense_regs
;
684 unsigned int i
, j
, fn
, bit
;
686 for (i
= 0; sr
&& enum_id
&& i
< desc
->hw
.nr_sense_regs
; i
++) {
687 sr
= desc
->hw
.sense_regs
+ i
;
689 for (j
= 0; j
< ARRAY_SIZE(sr
->enum_ids
); j
++) {
690 if (sr
->enum_ids
[j
] != enum_id
)
693 fn
= REG_FN_MODIFY_BASE
;
694 fn
+= (sr
->reg_width
>> 3) - 1;
696 BUG_ON((j
+ 1) * sr
->field_width
> sr
->reg_width
);
698 bit
= sr
->reg_width
- ((j
+ 1) * sr
->field_width
);
700 return _INTC_MK(fn
, 0, intc_get_reg(d
, sr
->reg
),
701 0, sr
->field_width
, bit
);
708 static void __init
intc_register_irq(struct intc_desc
*desc
,
709 struct intc_desc_int
*d
,
713 struct intc_handle_int
*hp
;
714 unsigned int data
[2], primary
;
717 * Register the IRQ position with the global IRQ map
719 set_bit(irq
, intc_irq_map
);
721 /* Prefer single interrupt source bitmap over other combinations:
722 * 1. bitmap, single interrupt source
723 * 2. priority, single interrupt source
724 * 3. bitmap, multiple interrupt sources (groups)
725 * 4. priority, multiple interrupt sources (groups)
728 data
[0] = intc_mask_data(desc
, d
, enum_id
, 0);
729 data
[1] = intc_prio_data(desc
, d
, enum_id
, 0);
732 if (!data
[0] && data
[1])
735 if (!data
[0] && !data
[1])
736 pr_warning("intc: missing unique irq mask for "
737 "irq %d (vect 0x%04x)\n", irq
, irq2evt(irq
));
739 data
[0] = data
[0] ? data
[0] : intc_mask_data(desc
, d
, enum_id
, 1);
740 data
[1] = data
[1] ? data
[1] : intc_prio_data(desc
, d
, enum_id
, 1);
745 BUG_ON(!data
[primary
]); /* must have primary masking method */
747 disable_irq_nosync(irq
);
748 set_irq_chip_and_handler_name(irq
, &d
->chip
,
749 handle_level_irq
, "level");
750 set_irq_chip_data(irq
, (void *)data
[primary
]);
752 /* set priority level
753 * - this needs to be at least 2 for 5-bit priorities on 7780
755 intc_prio_level
[irq
] = 2;
757 /* enable secondary masking method if present */
759 _intc_enable(irq
, data
[!primary
]);
761 /* add irq to d->prio list if priority is available */
763 hp
= d
->prio
+ d
->nr_prio
;
765 hp
->handle
= data
[1];
769 * only secondary priority should access registers, so
770 * set _INTC_FN(h) = REG_FN_ERR for intc_set_priority()
773 hp
->handle
&= ~_INTC_MK(0x0f, 0, 0, 0, 0, 0);
774 hp
->handle
|= _INTC_MK(REG_FN_ERR
, 0, 0, 0, 0, 0);
779 /* add irq to d->sense list if sense is available */
780 data
[0] = intc_sense_data(desc
, d
, enum_id
);
782 (d
->sense
+ d
->nr_sense
)->irq
= irq
;
783 (d
->sense
+ d
->nr_sense
)->handle
= data
[0];
787 /* irq should be disabled by default */
790 if (desc
->hw
.ack_regs
)
791 ack_handle
[irq
] = intc_ack_data(desc
, d
, enum_id
);
794 set_irq_flags(irq
, IRQF_VALID
); /* Enable IRQ on ARM systems */
798 static unsigned int __init
save_reg(struct intc_desc_int
*d
,
814 static void intc_redirect_irq(unsigned int irq
, struct irq_desc
*desc
)
816 generic_handle_irq((unsigned int)get_irq_data(irq
));
819 void __init
register_intc_controller(struct intc_desc
*desc
)
821 unsigned int i
, k
, smp
;
822 struct intc_hw_desc
*hw
= &desc
->hw
;
823 struct intc_desc_int
*d
;
825 d
= kzalloc(sizeof(*d
), GFP_NOWAIT
);
827 INIT_LIST_HEAD(&d
->list
);
828 list_add(&d
->list
, &intc_list
);
830 d
->nr_reg
= hw
->mask_regs
? hw
->nr_mask_regs
* 2 : 0;
831 d
->nr_reg
+= hw
->prio_regs
? hw
->nr_prio_regs
* 2 : 0;
832 d
->nr_reg
+= hw
->sense_regs
? hw
->nr_sense_regs
: 0;
833 d
->nr_reg
+= hw
->ack_regs
? hw
->nr_ack_regs
: 0;
835 d
->reg
= kzalloc(d
->nr_reg
* sizeof(*d
->reg
), GFP_NOWAIT
);
837 d
->smp
= kzalloc(d
->nr_reg
* sizeof(*d
->smp
), GFP_NOWAIT
);
842 for (i
= 0; i
< hw
->nr_mask_regs
; i
++) {
843 smp
= IS_SMP(hw
->mask_regs
[i
]);
844 k
+= save_reg(d
, k
, hw
->mask_regs
[i
].set_reg
, smp
);
845 k
+= save_reg(d
, k
, hw
->mask_regs
[i
].clr_reg
, smp
);
850 d
->prio
= kzalloc(hw
->nr_vectors
* sizeof(*d
->prio
),
853 for (i
= 0; i
< hw
->nr_prio_regs
; i
++) {
854 smp
= IS_SMP(hw
->prio_regs
[i
]);
855 k
+= save_reg(d
, k
, hw
->prio_regs
[i
].set_reg
, smp
);
856 k
+= save_reg(d
, k
, hw
->prio_regs
[i
].clr_reg
, smp
);
860 if (hw
->sense_regs
) {
861 d
->sense
= kzalloc(hw
->nr_vectors
* sizeof(*d
->sense
),
864 for (i
= 0; i
< hw
->nr_sense_regs
; i
++)
865 k
+= save_reg(d
, k
, hw
->sense_regs
[i
].reg
, 0);
868 d
->chip
.name
= desc
->name
;
869 d
->chip
.mask
= intc_disable
;
870 d
->chip
.unmask
= intc_enable
;
871 d
->chip
.mask_ack
= intc_disable
;
872 d
->chip
.enable
= intc_enable
;
873 d
->chip
.disable
= intc_disable
;
874 d
->chip
.shutdown
= intc_disable
;
875 d
->chip
.set_type
= intc_set_sense
;
876 d
->chip
.set_wake
= intc_set_wake
;
878 d
->chip
.set_affinity
= intc_set_affinity
;
882 for (i
= 0; i
< hw
->nr_ack_regs
; i
++)
883 k
+= save_reg(d
, k
, hw
->ack_regs
[i
].set_reg
, 0);
885 d
->chip
.mask_ack
= intc_mask_ack
;
888 /* disable bits matching force_disable before registering irqs */
889 if (desc
->force_disable
)
890 intc_enable_disable_enum(desc
, d
, desc
->force_disable
, 0);
892 /* disable bits matching force_enable before registering irqs */
893 if (desc
->force_enable
)
894 intc_enable_disable_enum(desc
, d
, desc
->force_enable
, 0);
896 BUG_ON(k
> 256); /* _INTC_ADDR_E() and _INTC_ADDR_D() are 8 bits */
898 /* register the vectors one by one */
899 for (i
= 0; i
< hw
->nr_vectors
; i
++) {
900 struct intc_vect
*vect
= hw
->vectors
+ i
;
901 unsigned int irq
= evt2irq(vect
->vect
);
902 struct irq_desc
*irq_desc
;
907 irq_desc
= irq_to_desc_alloc_node(irq
, numa_node_id());
908 if (unlikely(!irq_desc
)) {
909 pr_info("can't get irq_desc for %d\n", irq
);
913 intc_register_irq(desc
, d
, vect
->enum_id
, irq
);
915 for (k
= i
+ 1; k
< hw
->nr_vectors
; k
++) {
916 struct intc_vect
*vect2
= hw
->vectors
+ k
;
917 unsigned int irq2
= evt2irq(vect2
->vect
);
919 if (vect
->enum_id
!= vect2
->enum_id
)
923 * In the case of multi-evt handling and sparse
924 * IRQ support, each vector still needs to have
925 * its own backing irq_desc.
927 irq_desc
= irq_to_desc_alloc_node(irq2
, numa_node_id());
928 if (unlikely(!irq_desc
)) {
929 pr_info("can't get irq_desc for %d\n", irq2
);
935 /* redirect this interrupts to the first one */
936 set_irq_chip(irq2
, &dummy_irq_chip
);
937 set_irq_chained_handler(irq2
, intc_redirect_irq
);
938 set_irq_data(irq2
, (void *)irq
);
942 /* enable bits matching force_enable after registering irqs */
943 if (desc
->force_enable
)
944 intc_enable_disable_enum(desc
, d
, desc
->force_enable
, 1);
947 static int intc_suspend(struct sys_device
*dev
, pm_message_t state
)
949 struct intc_desc_int
*d
;
950 struct irq_desc
*desc
;
953 /* get intc controller associated with this sysdev */
954 d
= container_of(dev
, struct intc_desc_int
, sysdev
);
956 switch (state
.event
) {
958 if (d
->state
.event
!= PM_EVENT_FREEZE
)
960 for_each_irq_desc(irq
, desc
) {
961 if (desc
->handle_irq
== intc_redirect_irq
)
963 if (desc
->chip
!= &d
->chip
)
965 if (desc
->status
& IRQ_DISABLED
)
971 case PM_EVENT_FREEZE
:
972 /* nothing has to be done */
974 case PM_EVENT_SUSPEND
:
975 /* enable wakeup irqs belonging to this intc controller */
976 for_each_irq_desc(irq
, desc
) {
977 if ((desc
->status
& IRQ_WAKEUP
) && (desc
->chip
== &d
->chip
))
987 static int intc_resume(struct sys_device
*dev
)
989 return intc_suspend(dev
, PMSG_ON
);
992 static struct sysdev_class intc_sysdev_class
= {
994 .suspend
= intc_suspend
,
995 .resume
= intc_resume
,
998 /* register this intc as sysdev to allow suspend/resume */
999 static int __init
register_intc_sysdevs(void)
1001 struct intc_desc_int
*d
;
1005 error
= sysdev_class_register(&intc_sysdev_class
);
1007 list_for_each_entry(d
, &intc_list
, list
) {
1009 d
->sysdev
.cls
= &intc_sysdev_class
;
1010 error
= sysdev_register(&d
->sysdev
);
1018 pr_warning("intc: sysdev registration error\n");
1022 device_initcall(register_intc_sysdevs
);
1025 * Dynamic IRQ allocation and deallocation
1027 unsigned int create_irq_nr(unsigned int irq_want
, int node
)
1029 unsigned int irq
= 0, new;
1030 unsigned long flags
;
1031 struct irq_desc
*desc
;
1033 spin_lock_irqsave(&vector_lock
, flags
);
1036 * First try the wanted IRQ
1038 if (test_and_set_bit(irq_want
, intc_irq_map
) == 0) {
1041 /* .. then fall back to scanning. */
1042 new = find_first_zero_bit(intc_irq_map
, nr_irqs
);
1043 if (unlikely(new == nr_irqs
))
1046 __set_bit(new, intc_irq_map
);
1049 desc
= irq_to_desc_alloc_node(new, node
);
1050 if (unlikely(!desc
)) {
1051 pr_info("can't get irq_desc for %d\n", new);
1055 desc
= move_irq_desc(desc
, node
);
1059 spin_unlock_irqrestore(&vector_lock
, flags
);
1062 dynamic_irq_init(irq
);
1064 set_irq_flags(irq
, IRQF_VALID
); /* Enable IRQ on ARM systems */
1071 int create_irq(void)
1073 int nid
= cpu_to_node(smp_processor_id());
1076 irq
= create_irq_nr(NR_IRQS_LEGACY
, nid
);
1083 void destroy_irq(unsigned int irq
)
1085 unsigned long flags
;
1087 dynamic_irq_cleanup(irq
);
1089 spin_lock_irqsave(&vector_lock
, flags
);
1090 __clear_bit(irq
, intc_irq_map
);
1091 spin_unlock_irqrestore(&vector_lock
, flags
);
1094 int reserve_irq_vector(unsigned int irq
)
1096 unsigned long flags
;
1099 spin_lock_irqsave(&vector_lock
, flags
);
1100 if (test_and_set_bit(irq
, intc_irq_map
))
1102 spin_unlock_irqrestore(&vector_lock
, flags
);
1107 void reserve_irq_legacy(void)
1109 unsigned long flags
;
1112 spin_lock_irqsave(&vector_lock
, flags
);
1113 j
= find_first_bit(intc_irq_map
, nr_irqs
);
1114 for (i
= 0; i
< j
; i
++)
1115 __set_bit(i
, intc_irq_map
);
1116 spin_unlock_irqrestore(&vector_lock
, flags
);