2 * Copyright IBM Corp. 2004, 2011
3 * Author(s): Martin Schwidefsky <schwidefsky@de.ibm.com>,
4 * Holger Smolinski <Holger.Smolinski@de.ibm.com>,
5 * Thomas Spatzier <tspat@de.ibm.com>,
7 * This file contains interrupt related functions.
10 #include <linux/kernel_stat.h>
11 #include <linux/interrupt.h>
12 #include <linux/seq_file.h>
13 #include <linux/proc_fs.h>
14 #include <linux/profile.h>
15 #include <linux/module.h>
16 #include <linux/kernel.h>
17 #include <linux/ftrace.h>
18 #include <linux/errno.h>
19 #include <linux/slab.h>
20 #include <linux/cpu.h>
21 #include <asm/irq_regs.h>
22 #include <asm/cputime.h>
23 #include <asm/lowcore.h>
32 static const struct irq_class intrclass_names[] = {
33 [EXTERNAL_INTERRUPT] = {.name = "EXT"},
34 [IO_INTERRUPT] = {.name = "I/O"},
35 [EXTINT_CLK] = {.name = "CLK", .desc = "[EXT] Clock Comparator"},
36 [EXTINT_EXC] = {.name = "EXC", .desc = "[EXT] External Call"},
37 [EXTINT_EMS] = {.name = "EMS", .desc = "[EXT] Emergency Signal"},
38 [EXTINT_TMR] = {.name = "TMR", .desc = "[EXT] CPU Timer"},
39 [EXTINT_TLA] = {.name = "TAL", .desc = "[EXT] Timing Alert"},
40 [EXTINT_PFL] = {.name = "PFL", .desc = "[EXT] Pseudo Page Fault"},
41 [EXTINT_DSD] = {.name = "DSD", .desc = "[EXT] DASD Diag"},
42 [EXTINT_VRT] = {.name = "VRT", .desc = "[EXT] Virtio"},
43 [EXTINT_SCP] = {.name = "SCP", .desc = "[EXT] Service Call"},
44 [EXTINT_IUC] = {.name = "IUC", .desc = "[EXT] IUCV"},
45 [EXTINT_CMS] = {.name = "CMS", .desc = "[EXT] CPU-Measurement: Sampling"},
46 [EXTINT_CMC] = {.name = "CMC", .desc = "[EXT] CPU-Measurement: Counter"},
47 [EXTINT_CMR] = {.name = "CMR", .desc = "[EXT] CPU-Measurement: RI"},
48 [IOINT_CIO] = {.name = "CIO", .desc = "[I/O] Common I/O Layer Interrupt"},
49 [IOINT_QAI] = {.name = "QAI", .desc = "[I/O] QDIO Adapter Interrupt"},
50 [IOINT_DAS] = {.name = "DAS", .desc = "[I/O] DASD"},
51 [IOINT_C15] = {.name = "C15", .desc = "[I/O] 3215"},
52 [IOINT_C70] = {.name = "C70", .desc = "[I/O] 3270"},
53 [IOINT_TAP] = {.name = "TAP", .desc = "[I/O] Tape"},
54 [IOINT_VMR] = {.name = "VMR", .desc = "[I/O] Unit Record Devices"},
55 [IOINT_LCS] = {.name = "LCS", .desc = "[I/O] LCS"},
56 [IOINT_CLW] = {.name = "CLW", .desc = "[I/O] CLAW"},
57 [IOINT_CTC] = {.name = "CTC", .desc = "[I/O] CTC"},
58 [IOINT_APB] = {.name = "APB", .desc = "[I/O] AP Bus"},
59 [IOINT_ADM] = {.name = "ADM", .desc = "[I/O] EADM Subchannel"},
60 [IOINT_CSC] = {.name = "CSC", .desc = "[I/O] CHSC Subchannel"},
61 [IOINT_PCI] = {.name = "PCI", .desc = "[I/O] PCI Interrupt" },
62 [IOINT_MSI] = {.name = "MSI", .desc = "[I/O] MSI Interrupt" },
63 [IOINT_VIR] = {.name = "VIR", .desc = "[I/O] Virtual I/O Devices"},
64 [NMI_NMI] = {.name = "NMI", .desc = "[NMI] Machine Check"},
68 * show_interrupts is needed by /proc/interrupts.
70 int show_interrupts(struct seq_file *p, void *v)
72 int i = *(loff_t *) v, j;
77 for_each_online_cpu(j)
78 seq_printf(p, "CPU%d ",j);
83 seq_printf(p, "%s: ", intrclass_names[i].name);
85 seq_printf(p, "%10u ", kstat_irqs(i));
87 for_each_online_cpu(j)
88 seq_printf(p, "%10u ", kstat_cpu(j).irqs[i]);
90 if (intrclass_names[i].desc)
91 seq_printf(p, " %s", intrclass_names[i].desc);
99 * Switch to the asynchronous interrupt stack for softirq execution.
101 asmlinkage void do_softirq(void)
103 unsigned long flags, old, new;
108 local_irq_save(flags);
110 if (local_softirq_pending()) {
111 /* Get current stack pointer. */
112 asm volatile("la %0,0(15)" : "=a" (old));
113 /* Check against async. stack address range. */
114 new = S390_lowcore.async_stack;
115 if (((new - old) >> (PAGE_SHIFT + THREAD_ORDER)) != 0) {
116 /* Need to switch to the async. stack. */
117 new -= STACK_FRAME_OVERHEAD;
118 ((struct stack_frame *) new)->back_chain = old;
120 asm volatile(" la 15,0(%0)\n"
123 : : "a" (new), "a" (old),
125 : "0", "1", "2", "3", "4", "5", "14",
128 /* We are already on the async stack. */
133 local_irq_restore(flags);
136 #ifdef CONFIG_PROC_FS
137 void init_irq_proc(void)
139 struct proc_dir_entry *root_irq_dir;
141 root_irq_dir = proc_mkdir("irq", NULL);
142 create_prof_cpu_mask(root_irq_dir);
147 * ext_int_hash[index] is the list head for all external interrupts that hash
150 static struct list_head ext_int_hash[256];
152 struct ext_int_info {
153 ext_int_handler_t handler;
155 struct list_head entry;
159 /* ext_int_hash_lock protects the handler lists for external interrupts */
160 DEFINE_SPINLOCK(ext_int_hash_lock);
162 static void __init init_external_interrupts(void)
166 for (idx = 0; idx < ARRAY_SIZE(ext_int_hash); idx++)
167 INIT_LIST_HEAD(&ext_int_hash[idx]);
170 static inline int ext_hash(u16 code)
172 return (code + (code >> 9)) & 0xff;
175 int register_external_interrupt(u16 code, ext_int_handler_t handler)
177 struct ext_int_info *p;
181 p = kmalloc(sizeof(*p), GFP_ATOMIC);
185 p->handler = handler;
186 index = ext_hash(code);
188 spin_lock_irqsave(&ext_int_hash_lock, flags);
189 list_add_rcu(&p->entry, &ext_int_hash[index]);
190 spin_unlock_irqrestore(&ext_int_hash_lock, flags);
193 EXPORT_SYMBOL(register_external_interrupt);
195 int unregister_external_interrupt(u16 code, ext_int_handler_t handler)
197 struct ext_int_info *p;
199 int index = ext_hash(code);
201 spin_lock_irqsave(&ext_int_hash_lock, flags);
202 list_for_each_entry_rcu(p, &ext_int_hash[index], entry) {
203 if (p->code == code && p->handler == handler) {
204 list_del_rcu(&p->entry);
208 spin_unlock_irqrestore(&ext_int_hash_lock, flags);
211 EXPORT_SYMBOL(unregister_external_interrupt);
213 void __irq_entry do_extint(struct pt_regs *regs, struct ext_code ext_code,
214 unsigned int param32, unsigned long param64)
216 struct pt_regs *old_regs;
217 struct ext_int_info *p;
220 old_regs = set_irq_regs(regs);
222 if (S390_lowcore.int_clock >= S390_lowcore.clock_comparator) {
223 /* Serve timer interrupts first. */
224 clock_comparator_work();
226 kstat_cpu(smp_processor_id()).irqs[EXTERNAL_INTERRUPT]++;
227 if (ext_code.code != 0x1004)
228 __get_cpu_var(s390_idle).nohz_delay = 1;
230 index = ext_hash(ext_code.code);
232 list_for_each_entry_rcu(p, &ext_int_hash[index], entry)
233 if (likely(p->code == ext_code.code))
234 p->handler(ext_code, param32, param64);
237 set_irq_regs(old_regs);
240 void __init init_IRQ(void)
242 init_external_interrupts();
245 static DEFINE_SPINLOCK(sc_irq_lock);
246 static int sc_irq_refcount;
248 void service_subclass_irq_register(void)
250 spin_lock(&sc_irq_lock);
251 if (!sc_irq_refcount)
254 spin_unlock(&sc_irq_lock);
256 EXPORT_SYMBOL(service_subclass_irq_register);
258 void service_subclass_irq_unregister(void)
260 spin_lock(&sc_irq_lock);
262 if (!sc_irq_refcount)
264 spin_unlock(&sc_irq_lock);
266 EXPORT_SYMBOL(service_subclass_irq_unregister);
268 static DEFINE_SPINLOCK(ma_subclass_lock);
269 static int ma_subclass_refcount;
271 void measurement_alert_subclass_register(void)
273 spin_lock(&ma_subclass_lock);
274 if (!ma_subclass_refcount)
276 ma_subclass_refcount++;
277 spin_unlock(&ma_subclass_lock);
279 EXPORT_SYMBOL(measurement_alert_subclass_register);
281 void measurement_alert_subclass_unregister(void)
283 spin_lock(&ma_subclass_lock);
284 ma_subclass_refcount--;
285 if (!ma_subclass_refcount)
287 spin_unlock(&ma_subclass_lock);
289 EXPORT_SYMBOL(measurement_alert_subclass_unregister);