Russell King | fa0fe48 | 2006-01-13 21:30:48 +0000 | [diff] [blame] | 1 | /* |
| 2 | * linux/arch/arm/common/vic.c |
| 3 | * |
| 4 | * Copyright (C) 1999 - 2003 ARM Limited |
| 5 | * Copyright (C) 2000 Deep Blue Solutions Ltd |
| 6 | * |
| 7 | * This program is free software; you can redistribute it and/or modify |
| 8 | * it under the terms of the GNU General Public License as published by |
| 9 | * the Free Software Foundation; either version 2 of the License, or |
| 10 | * (at your option) any later version. |
| 11 | * |
| 12 | * This program is distributed in the hope that it will be useful, |
| 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 15 | * GNU General Public License for more details. |
| 16 | * |
| 17 | * You should have received a copy of the GNU General Public License |
| 18 | * along with this program; if not, write to the Free Software |
| 19 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 20 | */ |
| 21 | #include <linux/init.h> |
| 22 | #include <linux/list.h> |
| 23 | |
| 24 | #include <asm/io.h> |
Russell King | fa0fe48 | 2006-01-13 21:30:48 +0000 | [diff] [blame] | 25 | #include <asm/mach/irq.h> |
| 26 | #include <asm/hardware/vic.h> |
| 27 | |
Russell King | fa0fe48 | 2006-01-13 21:30:48 +0000 | [diff] [blame] | 28 | static void vic_mask_irq(unsigned int irq) |
| 29 | { |
Russell King | 824b5b5 | 2006-03-15 15:44:29 +0000 | [diff] [blame^] | 30 | void __iomem *base = get_irq_chipdata(irq); |
| 31 | irq &= 31; |
| 32 | writel(1 << irq, base + VIC_INT_ENABLE_CLEAR); |
Russell King | fa0fe48 | 2006-01-13 21:30:48 +0000 | [diff] [blame] | 33 | } |
| 34 | |
| 35 | static void vic_unmask_irq(unsigned int irq) |
| 36 | { |
Russell King | 824b5b5 | 2006-03-15 15:44:29 +0000 | [diff] [blame^] | 37 | void __iomem *base = get_irq_chipdata(irq); |
| 38 | irq &= 31; |
| 39 | writel(1 << irq, base + VIC_INT_ENABLE); |
Russell King | fa0fe48 | 2006-01-13 21:30:48 +0000 | [diff] [blame] | 40 | } |
| 41 | |
| 42 | static struct irqchip vic_chip = { |
| 43 | .ack = vic_mask_irq, |
| 44 | .mask = vic_mask_irq, |
| 45 | .unmask = vic_unmask_irq, |
| 46 | }; |
| 47 | |
Russell King | 824b5b5 | 2006-03-15 15:44:29 +0000 | [diff] [blame^] | 48 | /** |
| 49 | * vic_init - initialise a vectored interrupt controller |
| 50 | * @base: iomem base address |
| 51 | * @irq_start: starting interrupt number, must be muliple of 32 |
| 52 | * @vic_sources: bitmask of interrupt sources to allow |
| 53 | */ |
| 54 | void __init vic_init(void __iomem *base, unsigned int irq_start, |
| 55 | u32 vic_sources) |
Russell King | fa0fe48 | 2006-01-13 21:30:48 +0000 | [diff] [blame] | 56 | { |
| 57 | unsigned int i; |
| 58 | |
Russell King | fa0fe48 | 2006-01-13 21:30:48 +0000 | [diff] [blame] | 59 | /* Disable all interrupts initially. */ |
| 60 | |
Russell King | 824b5b5 | 2006-03-15 15:44:29 +0000 | [diff] [blame^] | 61 | writel(0, base + VIC_INT_SELECT); |
| 62 | writel(0, base + VIC_INT_ENABLE); |
| 63 | writel(~0, base + VIC_INT_ENABLE_CLEAR); |
| 64 | writel(0, base + VIC_IRQ_STATUS); |
| 65 | writel(0, base + VIC_ITCR); |
| 66 | writel(~0, base + VIC_INT_SOFT_CLEAR); |
Russell King | fa0fe48 | 2006-01-13 21:30:48 +0000 | [diff] [blame] | 67 | |
| 68 | /* |
| 69 | * Make sure we clear all existing interrupts |
| 70 | */ |
Russell King | 824b5b5 | 2006-03-15 15:44:29 +0000 | [diff] [blame^] | 71 | writel(0, base + VIC_VECT_ADDR); |
Russell King | fa0fe48 | 2006-01-13 21:30:48 +0000 | [diff] [blame] | 72 | for (i = 0; i < 19; i++) { |
| 73 | unsigned int value; |
| 74 | |
Russell King | 824b5b5 | 2006-03-15 15:44:29 +0000 | [diff] [blame^] | 75 | value = readl(base + VIC_VECT_ADDR); |
| 76 | writel(value, base + VIC_VECT_ADDR); |
Russell King | fa0fe48 | 2006-01-13 21:30:48 +0000 | [diff] [blame] | 77 | } |
| 78 | |
| 79 | for (i = 0; i < 16; i++) { |
Russell King | 824b5b5 | 2006-03-15 15:44:29 +0000 | [diff] [blame^] | 80 | void __iomem *reg = base + VIC_VECT_CNTL0 + (i * 4); |
Russell King | fa0fe48 | 2006-01-13 21:30:48 +0000 | [diff] [blame] | 81 | writel(VIC_VECT_CNTL_ENABLE | i, reg); |
| 82 | } |
| 83 | |
Russell King | 824b5b5 | 2006-03-15 15:44:29 +0000 | [diff] [blame^] | 84 | writel(32, base + VIC_DEF_VECT_ADDR); |
Russell King | fa0fe48 | 2006-01-13 21:30:48 +0000 | [diff] [blame] | 85 | |
| 86 | for (i = 0; i < 32; i++) { |
Russell King | 824b5b5 | 2006-03-15 15:44:29 +0000 | [diff] [blame^] | 87 | unsigned int irq = irq_start + i; |
Russell King | fa0fe48 | 2006-01-13 21:30:48 +0000 | [diff] [blame] | 88 | |
| 89 | set_irq_chip(irq, &vic_chip); |
Russell King | 824b5b5 | 2006-03-15 15:44:29 +0000 | [diff] [blame^] | 90 | set_irq_chipdata(irq, base); |
Russell King | fa0fe48 | 2006-01-13 21:30:48 +0000 | [diff] [blame] | 91 | |
| 92 | if (vic_sources & (1 << i)) { |
| 93 | set_irq_handler(irq, do_level_IRQ); |
| 94 | set_irq_flags(irq, IRQF_VALID | IRQF_PROBE); |
| 95 | } |
| 96 | } |
| 97 | } |