Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Handle interrupts from the SRM, assuming no additional weirdness. |
| 3 | */ |
| 4 | |
| 5 | #include <linux/init.h> |
| 6 | #include <linux/sched.h> |
| 7 | #include <linux/irq.h> |
| 8 | |
| 9 | #include "proto.h" |
| 10 | #include "irq_impl.h" |
| 11 | |
| 12 | |
| 13 | /* |
| 14 | * Is the palcode SMP safe? In other words: can we call cserve_ena/dis |
| 15 | * at the same time in multiple CPUs? To be safe I added a spinlock |
| 16 | * but it can be removed trivially if the palcode is robust against smp. |
| 17 | */ |
| 18 | DEFINE_SPINLOCK(srm_irq_lock); |
| 19 | |
| 20 | static inline void |
Thomas Gleixner | 3525225 | 2011-02-06 14:32:26 +0000 | [diff] [blame] | 21 | srm_enable_irq(struct irq_data *d) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | { |
| 23 | spin_lock(&srm_irq_lock); |
Thomas Gleixner | 3525225 | 2011-02-06 14:32:26 +0000 | [diff] [blame] | 24 | cserve_ena(d->irq - 16); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | spin_unlock(&srm_irq_lock); |
| 26 | } |
| 27 | |
| 28 | static void |
Thomas Gleixner | 3525225 | 2011-02-06 14:32:26 +0000 | [diff] [blame] | 29 | srm_disable_irq(struct irq_data *d) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | { |
| 31 | spin_lock(&srm_irq_lock); |
Thomas Gleixner | 3525225 | 2011-02-06 14:32:26 +0000 | [diff] [blame] | 32 | cserve_dis(d->irq - 16); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | spin_unlock(&srm_irq_lock); |
| 34 | } |
| 35 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | /* Handle interrupts from the SRM, assuming no additional weirdness. */ |
Thomas Gleixner | 44377f6 | 2009-06-16 15:33:25 -0700 | [diff] [blame] | 37 | static struct irq_chip srm_irq_type = { |
Thomas Gleixner | 8ab1221 | 2009-11-30 22:51:31 -0500 | [diff] [blame] | 38 | .name = "SRM", |
Thomas Gleixner | 3525225 | 2011-02-06 14:32:26 +0000 | [diff] [blame] | 39 | .irq_unmask = srm_enable_irq, |
| 40 | .irq_mask = srm_disable_irq, |
| 41 | .irq_mask_ack = srm_disable_irq, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | }; |
| 43 | |
| 44 | void __init |
| 45 | init_srm_irqs(long max, unsigned long ignore_mask) |
| 46 | { |
| 47 | long i; |
| 48 | |
Ivan Kokshaysky | 70b66cb | 2009-01-15 13:51:17 -0800 | [diff] [blame] | 49 | if (NR_IRQS <= 16) |
| 50 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | for (i = 16; i < max; ++i) { |
| 52 | if (i < 64 && ((ignore_mask >> i) & 1)) |
| 53 | continue; |
Thomas Gleixner | a9eb076 | 2011-03-25 22:17:31 +0100 | [diff] [blame] | 54 | irq_set_chip_and_handler(i, &srm_irq_type, handle_level_irq); |
Thomas Gleixner | 3525225 | 2011-02-06 14:32:26 +0000 | [diff] [blame] | 55 | irq_set_status_flags(i, IRQ_LEVEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | } |
| 57 | } |
| 58 | |
| 59 | void |
Al Viro | 7ca5605 | 2006-10-08 14:36:08 +0100 | [diff] [blame] | 60 | srm_device_interrupt(unsigned long vector) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | { |
| 62 | int irq = (vector - 0x800) >> 4; |
Al Viro | 3dbb8c6 | 2006-10-08 14:37:32 +0100 | [diff] [blame] | 63 | handle_irq(irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 64 | } |