| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* | 
|  | 2 | *	linux/arch/alpha/kernel/irq.c | 
|  | 3 | * | 
|  | 4 | *	Copyright (C) 1995 Linus Torvalds | 
|  | 5 | * | 
|  | 6 | * This file contains the code used by various IRQ handling routines: | 
|  | 7 | * asking for different IRQ's should be done through these routines | 
|  | 8 | * instead of just grabbing them. Thus setups with different IRQ numbers | 
|  | 9 | * shouldn't result in any weird surprises, and installing new handlers | 
|  | 10 | * should be easier. | 
|  | 11 | */ | 
|  | 12 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | #include <linux/kernel.h> | 
|  | 14 | #include <linux/module.h> | 
|  | 15 | #include <linux/errno.h> | 
|  | 16 | #include <linux/kernel_stat.h> | 
|  | 17 | #include <linux/signal.h> | 
|  | 18 | #include <linux/sched.h> | 
|  | 19 | #include <linux/ptrace.h> | 
|  | 20 | #include <linux/interrupt.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | #include <linux/random.h> | 
|  | 22 | #include <linux/init.h> | 
|  | 23 | #include <linux/irq.h> | 
|  | 24 | #include <linux/proc_fs.h> | 
|  | 25 | #include <linux/seq_file.h> | 
|  | 26 | #include <linux/profile.h> | 
|  | 27 | #include <linux/bitops.h> | 
|  | 28 |  | 
|  | 29 | #include <asm/system.h> | 
|  | 30 | #include <asm/io.h> | 
|  | 31 | #include <asm/uaccess.h> | 
|  | 32 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | volatile unsigned long irq_err_count; | 
| Michael Cree | 65d9206 | 2010-08-09 17:20:05 -0700 | [diff] [blame] | 34 | DEFINE_PER_CPU(unsigned long, irq_pmi_count); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 |  | 
| Ivan Kokshaysky | 0595bf3 | 2006-01-06 00:12:22 -0800 | [diff] [blame] | 36 | void ack_bad_irq(unsigned int irq) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | { | 
|  | 38 | irq_err_count++; | 
|  | 39 | printk(KERN_CRIT "Unexpected IRQ trap at vector %u\n", irq); | 
|  | 40 | } | 
|  | 41 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | #ifdef CONFIG_SMP | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | static char irq_user_affinity[NR_IRQS]; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 |  | 
| Max Krasnyansky | 1840475 | 2008-05-29 11:02:52 -0700 | [diff] [blame] | 45 | int irq_select_affinity(unsigned int irq) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | { | 
| Thomas Gleixner | 0b534cf | 2011-02-06 14:33:00 +0000 | [diff] [blame] | 47 | struct irq_data *data = irq_get_irq_data(irq); | 
|  | 48 | struct irq_chip *chip; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | static int last_cpu; | 
|  | 50 | int cpu = last_cpu + 1; | 
|  | 51 |  | 
| Thomas Gleixner | 0b534cf | 2011-02-06 14:33:00 +0000 | [diff] [blame] | 52 | if (!data) | 
|  | 53 | return 1; | 
|  | 54 | chip = irq_data_get_irq_chip(data); | 
|  | 55 |  | 
|  | 56 | if (!chip->irq_set_affinity || irq_user_affinity[irq]) | 
| Ivan Kokshaysky | 0595bf3 | 2006-01-06 00:12:22 -0800 | [diff] [blame] | 57 | return 1; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 |  | 
| Rusty Russell | d036e67 | 2009-01-01 10:12:26 +1030 | [diff] [blame] | 59 | while (!cpu_possible(cpu) || | 
|  | 60 | !cpumask_test_cpu(cpu, irq_default_affinity)) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | cpu = (cpu < (NR_CPUS-1) ? cpu + 1 : 0); | 
|  | 62 | last_cpu = cpu; | 
|  | 63 |  | 
| Thomas Gleixner | 0b534cf | 2011-02-06 14:33:00 +0000 | [diff] [blame] | 64 | cpumask_copy(data->affinity, cpumask_of(cpu)); | 
|  | 65 | chip->irq_set_affinity(data, cpumask_of(cpu), false); | 
| Ivan Kokshaysky | 0595bf3 | 2006-01-06 00:12:22 -0800 | [diff] [blame] | 66 | return 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 67 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | #endif /* CONFIG_SMP */ | 
|  | 69 |  | 
| Thomas Gleixner | a6e120e | 2011-03-25 22:20:51 +0100 | [diff] [blame] | 70 | int arch_show_interrupts(struct seq_file *p, int prec) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 | int j; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 73 |  | 
|  | 74 | #ifdef CONFIG_SMP | 
| Thomas Gleixner | a6e120e | 2011-03-25 22:20:51 +0100 | [diff] [blame] | 75 | seq_puts(p, "IPI: "); | 
|  | 76 | for_each_online_cpu(j) | 
|  | 77 | seq_printf(p, "%10lu ", cpu_data[j].ipi_count); | 
|  | 78 | seq_putc(p, '\n'); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 79 | #endif | 
| Thomas Gleixner | a6e120e | 2011-03-25 22:20:51 +0100 | [diff] [blame] | 80 | seq_puts(p, "PMI: "); | 
|  | 81 | for_each_online_cpu(j) | 
|  | 82 | seq_printf(p, "%10lu ", per_cpu(irq_pmi_count, j)); | 
|  | 83 | seq_puts(p, "          Performance Monitoring\n"); | 
|  | 84 | seq_printf(p, "ERR: %10lu\n", irq_err_count); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 85 | return 0; | 
|  | 86 | } | 
|  | 87 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 88 | /* | 
|  | 89 | * handle_irq handles all normal device IRQ's (the special | 
|  | 90 | * SMP cross-CPU interrupts have their own specific | 
|  | 91 | * handlers). | 
|  | 92 | */ | 
|  | 93 |  | 
|  | 94 | #define MAX_ILLEGAL_IRQS 16 | 
|  | 95 |  | 
|  | 96 | void | 
| Al Viro | 3dbb8c6 | 2006-10-08 14:37:32 +0100 | [diff] [blame] | 97 | handle_irq(int irq) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 98 | { | 
|  | 99 | /* | 
|  | 100 | * We ack quickly, we don't want the irq controller | 
|  | 101 | * thinking we're snobs just because some other CPU has | 
|  | 102 | * disabled global interrupts (we have already done the | 
|  | 103 | * INT_ACK cycles, it's too late to try to pretend to the | 
|  | 104 | * controller that we aren't taking the interrupt). | 
|  | 105 | * | 
|  | 106 | * 0 return value means that this irq is already being | 
|  | 107 | * handled by some other CPU. (or is disabled) | 
|  | 108 | */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 109 | static unsigned int illegal_count=0; | 
| Kyle McMartin | a891b39 | 2010-10-14 22:31:25 -0400 | [diff] [blame] | 110 | struct irq_desc *desc = irq_to_desc(irq); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 |  | 
| Kyle McMartin | a891b39 | 2010-10-14 22:31:25 -0400 | [diff] [blame] | 112 | if (!desc || ((unsigned) irq > ACTUAL_NR_IRQS && | 
|  | 113 | illegal_count < MAX_ILLEGAL_IRQS)) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 114 | irq_err_count++; | 
|  | 115 | illegal_count++; | 
|  | 116 | printk(KERN_CRIT "device_interrupt: invalid interrupt %d\n", | 
|  | 117 | irq); | 
|  | 118 | return; | 
|  | 119 | } | 
|  | 120 |  | 
| Ivan Kokshaysky | eff2c2f | 2006-03-09 17:33:37 -0800 | [diff] [blame] | 121 | /* | 
| Ivan Kokshaysky | f5de6ec | 2011-01-12 22:02:24 +0000 | [diff] [blame] | 122 | * From here we must proceed with IPL_MAX. Note that we do not | 
| Ivan Kokshaysky | eff2c2f | 2006-03-09 17:33:37 -0800 | [diff] [blame] | 123 | * explicitly enable interrupts afterwards - some MILO PALcode | 
|  | 124 | * (namely LX164 one) seems to have severe problems with RTI | 
|  | 125 | * at IPL 0. | 
|  | 126 | */ | 
| Ivan Kokshaysky | 0595bf3 | 2006-01-06 00:12:22 -0800 | [diff] [blame] | 127 | local_irq_disable(); | 
| Ivan Kokshaysky | f5de6ec | 2011-01-12 22:02:24 +0000 | [diff] [blame] | 128 | irq_enter(); | 
| Kyle McMartin | a891b39 | 2010-10-14 22:31:25 -0400 | [diff] [blame] | 129 | generic_handle_irq_desc(irq, desc); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 130 | irq_exit(); | 
|  | 131 | } |