Tony Lindgren | 1dbae81 | 2005-11-10 14:26:51 +0000 | [diff] [blame] | 1 | /* |
Uwe Zeisberger | f30c226 | 2006-10-03 23:01:26 +0200 | [diff] [blame] | 2 | * linux/arch/arm/mach-omap2/irq.c |
Tony Lindgren | 1dbae81 | 2005-11-10 14:26:51 +0000 | [diff] [blame] | 3 | * |
| 4 | * Interrupt handler for OMAP2 boards. |
| 5 | * |
| 6 | * Copyright (C) 2005 Nokia Corporation |
| 7 | * Author: Paul Mundt <paul.mundt@nokia.com> |
| 8 | * |
| 9 | * This file is subject to the terms and conditions of the GNU General Public |
| 10 | * License. See the file "COPYING" in the main directory of this archive |
| 11 | * for more details. |
| 12 | */ |
| 13 | #include <linux/kernel.h> |
| 14 | #include <linux/init.h> |
Tony Lindgren | 1dbae81 | 2005-11-10 14:26:51 +0000 | [diff] [blame] | 15 | #include <linux/interrupt.h> |
Russell King | a09e64f | 2008-08-05 16:14:15 +0100 | [diff] [blame] | 16 | #include <mach/hardware.h> |
Tony Lindgren | 1dbae81 | 2005-11-10 14:26:51 +0000 | [diff] [blame] | 17 | #include <asm/mach/irq.h> |
| 18 | #include <asm/irq.h> |
| 19 | #include <asm/io.h> |
| 20 | |
| 21 | #define INTC_REVISION 0x0000 |
| 22 | #define INTC_SYSCONFIG 0x0010 |
| 23 | #define INTC_SYSSTATUS 0x0014 |
| 24 | #define INTC_CONTROL 0x0048 |
| 25 | #define INTC_MIR_CLEAR0 0x0088 |
| 26 | #define INTC_MIR_SET0 0x008c |
| 27 | |
| 28 | /* |
| 29 | * OMAP2 has a number of different interrupt controllers, each interrupt |
| 30 | * controller is identified as its own "bank". Register definitions are |
| 31 | * fairly consistent for each bank, but not all registers are implemented |
| 32 | * for each bank.. when in doubt, consult the TRM. |
| 33 | */ |
| 34 | static struct omap_irq_bank { |
Russell King | e8a91c9 | 2008-09-01 22:07:37 +0100 | [diff] [blame^] | 35 | void __iomem *base_reg; |
Tony Lindgren | 1dbae81 | 2005-11-10 14:26:51 +0000 | [diff] [blame] | 36 | unsigned int nr_irqs; |
| 37 | } __attribute__ ((aligned(4))) irq_banks[] = { |
| 38 | { |
| 39 | /* MPU INTC */ |
Juha Yrjola | 375e12a | 2006-12-06 17:13:50 -0800 | [diff] [blame] | 40 | .base_reg = IO_ADDRESS(OMAP24XX_IC_BASE), |
Tony Lindgren | 1dbae81 | 2005-11-10 14:26:51 +0000 | [diff] [blame] | 41 | .nr_irqs = 96, |
| 42 | }, { |
| 43 | /* XXX: DSP INTC */ |
Tony Lindgren | 1dbae81 | 2005-11-10 14:26:51 +0000 | [diff] [blame] | 44 | } |
| 45 | }; |
| 46 | |
| 47 | /* XXX: FIQ and additional INTC support (only MPU at the moment) */ |
| 48 | static void omap_ack_irq(unsigned int irq) |
| 49 | { |
Juha Yrjola | 375e12a | 2006-12-06 17:13:50 -0800 | [diff] [blame] | 50 | __raw_writel(0x1, irq_banks[0].base_reg + INTC_CONTROL); |
Tony Lindgren | 1dbae81 | 2005-11-10 14:26:51 +0000 | [diff] [blame] | 51 | } |
| 52 | |
| 53 | static void omap_mask_irq(unsigned int irq) |
| 54 | { |
| 55 | int offset = (irq >> 5) << 5; |
| 56 | |
| 57 | if (irq >= 64) { |
| 58 | irq %= 64; |
| 59 | } else if (irq >= 32) { |
| 60 | irq %= 32; |
| 61 | } |
| 62 | |
Juha Yrjola | 375e12a | 2006-12-06 17:13:50 -0800 | [diff] [blame] | 63 | __raw_writel(1 << irq, irq_banks[0].base_reg + INTC_MIR_SET0 + offset); |
Tony Lindgren | 1dbae81 | 2005-11-10 14:26:51 +0000 | [diff] [blame] | 64 | } |
| 65 | |
| 66 | static void omap_unmask_irq(unsigned int irq) |
| 67 | { |
| 68 | int offset = (irq >> 5) << 5; |
| 69 | |
| 70 | if (irq >= 64) { |
| 71 | irq %= 64; |
| 72 | } else if (irq >= 32) { |
| 73 | irq %= 32; |
| 74 | } |
| 75 | |
Juha Yrjola | 375e12a | 2006-12-06 17:13:50 -0800 | [diff] [blame] | 76 | __raw_writel(1 << irq, irq_banks[0].base_reg + INTC_MIR_CLEAR0 + offset); |
Tony Lindgren | 1dbae81 | 2005-11-10 14:26:51 +0000 | [diff] [blame] | 77 | } |
| 78 | |
| 79 | static void omap_mask_ack_irq(unsigned int irq) |
| 80 | { |
| 81 | omap_mask_irq(irq); |
| 82 | omap_ack_irq(irq); |
| 83 | } |
| 84 | |
David Brownell | 38c677c | 2006-08-01 22:26:25 +0100 | [diff] [blame] | 85 | static struct irq_chip omap_irq_chip = { |
| 86 | .name = "INTC", |
Tony Lindgren | 1dbae81 | 2005-11-10 14:26:51 +0000 | [diff] [blame] | 87 | .ack = omap_mask_ack_irq, |
| 88 | .mask = omap_mask_irq, |
| 89 | .unmask = omap_unmask_irq, |
| 90 | }; |
| 91 | |
| 92 | static void __init omap_irq_bank_init_one(struct omap_irq_bank *bank) |
| 93 | { |
| 94 | unsigned long tmp; |
| 95 | |
Juha Yrjola | 375e12a | 2006-12-06 17:13:50 -0800 | [diff] [blame] | 96 | tmp = __raw_readl(bank->base_reg + INTC_REVISION) & 0xff; |
Russell King | e8a91c9 | 2008-09-01 22:07:37 +0100 | [diff] [blame^] | 97 | printk(KERN_INFO "IRQ: Found an INTC at 0x%p " |
Tony Lindgren | 1dbae81 | 2005-11-10 14:26:51 +0000 | [diff] [blame] | 98 | "(revision %ld.%ld) with %d interrupts\n", |
| 99 | bank->base_reg, tmp >> 4, tmp & 0xf, bank->nr_irqs); |
| 100 | |
Juha Yrjola | 375e12a | 2006-12-06 17:13:50 -0800 | [diff] [blame] | 101 | tmp = __raw_readl(bank->base_reg + INTC_SYSCONFIG); |
Tony Lindgren | 1dbae81 | 2005-11-10 14:26:51 +0000 | [diff] [blame] | 102 | tmp |= 1 << 1; /* soft reset */ |
Juha Yrjola | 375e12a | 2006-12-06 17:13:50 -0800 | [diff] [blame] | 103 | __raw_writel(tmp, bank->base_reg + INTC_SYSCONFIG); |
Tony Lindgren | 1dbae81 | 2005-11-10 14:26:51 +0000 | [diff] [blame] | 104 | |
Juha Yrjola | 375e12a | 2006-12-06 17:13:50 -0800 | [diff] [blame] | 105 | while (!(__raw_readl(bank->base_reg + INTC_SYSSTATUS) & 0x1)) |
Tony Lindgren | 1dbae81 | 2005-11-10 14:26:51 +0000 | [diff] [blame] | 106 | /* Wait for reset to complete */; |
Juha Yrjola | 375e12a | 2006-12-06 17:13:50 -0800 | [diff] [blame] | 107 | |
| 108 | /* Enable autoidle */ |
| 109 | __raw_writel(1 << 0, bank->base_reg + INTC_SYSCONFIG); |
Tony Lindgren | 1dbae81 | 2005-11-10 14:26:51 +0000 | [diff] [blame] | 110 | } |
| 111 | |
| 112 | void __init omap_init_irq(void) |
| 113 | { |
| 114 | unsigned long nr_irqs = 0; |
| 115 | unsigned int nr_banks = 0; |
| 116 | int i; |
| 117 | |
| 118 | for (i = 0; i < ARRAY_SIZE(irq_banks); i++) { |
| 119 | struct omap_irq_bank *bank = irq_banks + i; |
| 120 | |
| 121 | /* XXX */ |
| 122 | if (!bank->base_reg) |
| 123 | continue; |
| 124 | |
| 125 | omap_irq_bank_init_one(bank); |
| 126 | |
| 127 | nr_irqs += bank->nr_irqs; |
| 128 | nr_banks++; |
| 129 | } |
| 130 | |
| 131 | printk(KERN_INFO "Total of %ld interrupts on %d active controller%s\n", |
| 132 | nr_irqs, nr_banks, nr_banks > 1 ? "s" : ""); |
| 133 | |
| 134 | for (i = 0; i < nr_irqs; i++) { |
| 135 | set_irq_chip(i, &omap_irq_chip); |
Russell King | 10dd5ce | 2006-11-23 11:41:32 +0000 | [diff] [blame] | 136 | set_irq_handler(i, handle_level_irq); |
Tony Lindgren | 1dbae81 | 2005-11-10 14:26:51 +0000 | [diff] [blame] | 137 | set_irq_flags(i, IRQF_VALID); |
| 138 | } |
| 139 | } |
| 140 | |