irq.c (0ff555192a8d20385d49d1c420e2e8d409b3c0da) | irq.c (b95a13d79c0e92c9c844fa8aa089c9bd2ed10705) |
---|---|
1/* 2 * arch/arm/mach-mv78xx0/irq.c 3 * 4 * MV78xx0 IRQ handling. 5 * 6 * This file is licensed under the terms of the GNU General Public 7 * License version 2. This program is licensed "as is" without any 8 * warranty of any kind, whether express or implied. 9 */ 10 11#include <linux/kernel.h> 12#include <linux/init.h> 13#include <linux/pci.h> | 1/* 2 * arch/arm/mach-mv78xx0/irq.c 3 * 4 * MV78xx0 IRQ handling. 5 * 6 * This file is licensed under the terms of the GNU General Public 7 * License version 2. This program is licensed "as is" without any 8 * warranty of any kind, whether express or implied. 9 */ 10 11#include <linux/kernel.h> 12#include <linux/init.h> 13#include <linux/pci.h> |
14#include <linux/irq.h> 15#include <asm/gpio.h> |
|
14#include <mach/mv78xx0.h> 15#include <plat/irq.h> 16#include "common.h" 17 | 16#include <mach/mv78xx0.h> 17#include <plat/irq.h> 18#include "common.h" 19 |
20static void gpio_irq_handler(unsigned int irq, struct irq_desc *desc) 21{ 22 BUG_ON(irq < IRQ_MV78XX0_GPIO_0_7 || irq > IRQ_MV78XX0_GPIO_24_31); 23 24 orion_gpio_irq_handler((irq - IRQ_MV78XX0_GPIO_0_7) << 3); 25} 26 |
|
18void __init mv78xx0_init_irq(void) 19{ | 27void __init mv78xx0_init_irq(void) 28{ |
29 int i; 30 |
|
20 orion_irq_init(0, (void __iomem *)(IRQ_VIRT_BASE + IRQ_MASK_LOW_OFF)); 21 orion_irq_init(32, (void __iomem *)(IRQ_VIRT_BASE + IRQ_MASK_HIGH_OFF)); 22 orion_irq_init(64, (void __iomem *)(IRQ_VIRT_BASE + IRQ_MASK_ERR_OFF)); | 31 orion_irq_init(0, (void __iomem *)(IRQ_VIRT_BASE + IRQ_MASK_LOW_OFF)); 32 orion_irq_init(32, (void __iomem *)(IRQ_VIRT_BASE + IRQ_MASK_HIGH_OFF)); 33 orion_irq_init(64, (void __iomem *)(IRQ_VIRT_BASE + IRQ_MASK_ERR_OFF)); |
34 35 /* 36 * Mask and clear GPIO IRQ interrupts. 37 */ 38 writel(0, GPIO_LEVEL_MASK(0)); 39 writel(0, GPIO_EDGE_MASK(0)); 40 writel(0, GPIO_EDGE_CAUSE(0)); 41 42 for (i = IRQ_MV78XX0_GPIO_START; i < NR_IRQS; i++) { 43 set_irq_chip(i, &orion_gpio_irq_level_chip); 44 set_irq_handler(i, handle_level_irq); 45 irq_desc[i].status |= IRQ_LEVEL; 46 set_irq_flags(i, IRQF_VALID); 47 } 48 set_irq_chained_handler(IRQ_MV78XX0_GPIO_0_7, gpio_irq_handler); 49 set_irq_chained_handler(IRQ_MV78XX0_GPIO_8_15, gpio_irq_handler); 50 set_irq_chained_handler(IRQ_MV78XX0_GPIO_16_23, gpio_irq_handler); 51 set_irq_chained_handler(IRQ_MV78XX0_GPIO_24_31, gpio_irq_handler); |
|
23} | 52} |