ACPI: fix battery on HP NX6125
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / arch / arm / mach-omap2 / irq.c
blobd7baff675cfe04f6a9478473a998b979983eb0fe
1 /*
2 * linux/arch/arm/mach-omap/omap2/irq.c
4 * Interrupt handler for OMAP2 boards.
6 * Copyright (C) 2005 Nokia Corporation
7 * Author: Paul Mundt <paul.mundt@nokia.com>
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.
13 #include <linux/kernel.h>
14 #include <linux/init.h>
15 #include <linux/config.h>
16 #include <linux/interrupt.h>
17 #include <asm/hardware.h>
18 #include <asm/mach/irq.h>
19 #include <asm/irq.h>
20 #include <asm/io.h>
22 #define INTC_REVISION 0x0000
23 #define INTC_SYSCONFIG 0x0010
24 #define INTC_SYSSTATUS 0x0014
25 #define INTC_CONTROL 0x0048
26 #define INTC_MIR_CLEAR0 0x0088
27 #define INTC_MIR_SET0 0x008c
30 * OMAP2 has a number of different interrupt controllers, each interrupt
31 * controller is identified as its own "bank". Register definitions are
32 * fairly consistent for each bank, but not all registers are implemented
33 * for each bank.. when in doubt, consult the TRM.
35 static struct omap_irq_bank {
36 unsigned long base_reg;
37 unsigned int nr_irqs;
38 } __attribute__ ((aligned(4))) irq_banks[] = {
40 /* MPU INTC */
41 .base_reg = OMAP24XX_IC_BASE,
42 .nr_irqs = 96,
43 }, {
44 /* XXX: DSP INTC */
46 #if 0
48 * Commented out for now until we fix the IVA clocking
50 #ifdef CONFIG_ARCH_OMAP2420
51 }, {
52 /* IVA INTC (2420 only) */
53 .base_reg = OMAP24XX_IVA_INTC_BASE,
54 .nr_irqs = 16, /* Actually 32, but only 16 are used */
55 #endif
56 #endif
60 /* XXX: FIQ and additional INTC support (only MPU at the moment) */
61 static void omap_ack_irq(unsigned int irq)
63 omap_writel(0x1, irq_banks[0].base_reg + INTC_CONTROL);
66 static void omap_mask_irq(unsigned int irq)
68 int offset = (irq >> 5) << 5;
70 if (irq >= 64) {
71 irq %= 64;
72 } else if (irq >= 32) {
73 irq %= 32;
76 omap_writel(1 << irq, irq_banks[0].base_reg + INTC_MIR_SET0 + offset);
79 static void omap_unmask_irq(unsigned int irq)
81 int offset = (irq >> 5) << 5;
83 if (irq >= 64) {
84 irq %= 64;
85 } else if (irq >= 32) {
86 irq %= 32;
89 omap_writel(1 << irq, irq_banks[0].base_reg + INTC_MIR_CLEAR0 + offset);
92 static void omap_mask_ack_irq(unsigned int irq)
94 omap_mask_irq(irq);
95 omap_ack_irq(irq);
98 static struct irqchip omap_irq_chip = {
99 .ack = omap_mask_ack_irq,
100 .mask = omap_mask_irq,
101 .unmask = omap_unmask_irq,
104 static void __init omap_irq_bank_init_one(struct omap_irq_bank *bank)
106 unsigned long tmp;
108 tmp = omap_readl(bank->base_reg + INTC_REVISION) & 0xff;
109 printk(KERN_INFO "IRQ: Found an INTC at 0x%08lx "
110 "(revision %ld.%ld) with %d interrupts\n",
111 bank->base_reg, tmp >> 4, tmp & 0xf, bank->nr_irqs);
113 tmp = omap_readl(bank->base_reg + INTC_SYSCONFIG);
114 tmp |= 1 << 1; /* soft reset */
115 omap_writel(tmp, bank->base_reg + INTC_SYSCONFIG);
117 while (!(omap_readl(bank->base_reg + INTC_SYSSTATUS) & 0x1))
118 /* Wait for reset to complete */;
121 void __init omap_init_irq(void)
123 unsigned long nr_irqs = 0;
124 unsigned int nr_banks = 0;
125 int i;
127 for (i = 0; i < ARRAY_SIZE(irq_banks); i++) {
128 struct omap_irq_bank *bank = irq_banks + i;
130 /* XXX */
131 if (!bank->base_reg)
132 continue;
134 omap_irq_bank_init_one(bank);
136 nr_irqs += bank->nr_irqs;
137 nr_banks++;
140 printk(KERN_INFO "Total of %ld interrupts on %d active controller%s\n",
141 nr_irqs, nr_banks, nr_banks > 1 ? "s" : "");
143 for (i = 0; i < nr_irqs; i++) {
144 set_irq_chip(i, &omap_irq_chip);
145 set_irq_handler(i, do_level_IRQ);
146 set_irq_flags(i, IRQF_VALID);