allow coexistance of N build and AC build.
[tomato.git] / release / src-rt-6.x / linux / linux-2.6 / arch / mips / emma2rh / markeins / irq_markeins.c
blobfba5c156f47249fd04ad68fa14ff4f45c8463f2d
1 /*
2 * arch/mips/emma2rh/markeins/irq_markeins.c
3 * This file defines the irq handler for Mark-eins.
5 * Copyright (C) NEC Electronics Corporation 2004-2006
7 * This file is based on the arch/mips/ddb5xxx/ddb5477/irq_5477.c
9 * Copyright 2001 MontaVista Software Inc.
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or
14 * (at your option) any later version.
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
25 #include <linux/interrupt.h>
26 #include <linux/irq.h>
27 #include <linux/types.h>
28 #include <linux/ptrace.h>
30 #include <asm/debug.h>
31 #include <asm/emma2rh/emma2rh.h>
33 static int emma2rh_sw_irq_base = -1;
34 static int emma2rh_gpio_irq_base = -1;
36 void ll_emma2rh_sw_irq_enable(int reg);
37 void ll_emma2rh_sw_irq_disable(int reg);
38 void ll_emma2rh_gpio_irq_enable(int reg);
39 void ll_emma2rh_gpio_irq_disable(int reg);
41 static void emma2rh_sw_irq_enable(unsigned int irq)
43 ll_emma2rh_sw_irq_enable(irq - emma2rh_sw_irq_base);
46 static void emma2rh_sw_irq_disable(unsigned int irq)
48 ll_emma2rh_sw_irq_disable(irq - emma2rh_sw_irq_base);
51 struct irq_chip emma2rh_sw_irq_controller = {
52 .name = "emma2rh_sw_irq",
53 .ack = emma2rh_sw_irq_disable,
54 .mask = emma2rh_sw_irq_disable,
55 .mask_ack = emma2rh_sw_irq_disable,
56 .unmask = emma2rh_sw_irq_enable,
59 void emma2rh_sw_irq_init(u32 irq_base)
61 u32 i;
63 for (i = irq_base; i < irq_base + NUM_EMMA2RH_IRQ_SW; i++)
64 set_irq_chip_and_handler(i, &emma2rh_sw_irq_controller,
65 handle_level_irq);
67 emma2rh_sw_irq_base = irq_base;
70 void ll_emma2rh_sw_irq_enable(int irq)
72 u32 reg;
74 db_assert(irq >= 0);
75 db_assert(irq < NUM_EMMA2RH_IRQ_SW);
77 reg = emma2rh_in32(EMMA2RH_BHIF_SW_INT_EN);
78 reg |= 1 << irq;
79 emma2rh_out32(EMMA2RH_BHIF_SW_INT_EN, reg);
82 void ll_emma2rh_sw_irq_disable(int irq)
84 u32 reg;
86 db_assert(irq >= 0);
87 db_assert(irq < 32);
89 reg = emma2rh_in32(EMMA2RH_BHIF_SW_INT_EN);
90 reg &= ~(1 << irq);
91 emma2rh_out32(EMMA2RH_BHIF_SW_INT_EN, reg);
94 static void emma2rh_gpio_irq_enable(unsigned int irq)
96 ll_emma2rh_gpio_irq_enable(irq - emma2rh_gpio_irq_base);
99 static void emma2rh_gpio_irq_disable(unsigned int irq)
101 ll_emma2rh_gpio_irq_disable(irq - emma2rh_gpio_irq_base);
104 static void emma2rh_gpio_irq_ack(unsigned int irq)
106 irq -= emma2rh_gpio_irq_base;
107 emma2rh_out32(EMMA2RH_GPIO_INT_ST, ~(1 << irq));
108 ll_emma2rh_gpio_irq_disable(irq);
111 static void emma2rh_gpio_irq_end(unsigned int irq)
113 if (!(irq_desc[irq].status & (IRQ_DISABLED | IRQ_INPROGRESS)))
114 ll_emma2rh_gpio_irq_enable(irq - emma2rh_gpio_irq_base);
117 struct irq_chip emma2rh_gpio_irq_controller = {
118 .name = "emma2rh_gpio_irq",
119 .ack = emma2rh_gpio_irq_ack,
120 .mask = emma2rh_gpio_irq_disable,
121 .mask_ack = emma2rh_gpio_irq_ack,
122 .unmask = emma2rh_gpio_irq_enable,
123 .end = emma2rh_gpio_irq_end,
126 void emma2rh_gpio_irq_init(u32 irq_base)
128 u32 i;
130 for (i = irq_base; i < irq_base + NUM_EMMA2RH_IRQ_GPIO; i++)
131 set_irq_chip(i, &emma2rh_gpio_irq_controller);
133 emma2rh_gpio_irq_base = irq_base;
136 void ll_emma2rh_gpio_irq_enable(int irq)
138 u32 reg;
140 db_assert(irq >= 0);
141 db_assert(irq < NUM_EMMA2RH_IRQ_GPIO);
143 reg = emma2rh_in32(EMMA2RH_GPIO_INT_MASK);
144 reg |= 1 << irq;
145 emma2rh_out32(EMMA2RH_GPIO_INT_MASK, reg);
148 void ll_emma2rh_gpio_irq_disable(int irq)
150 u32 reg;
152 db_assert(irq >= 0);
153 db_assert(irq < NUM_EMMA2RH_IRQ_GPIO);
155 reg = emma2rh_in32(EMMA2RH_GPIO_INT_MASK);
156 reg &= ~(1 << irq);
157 emma2rh_out32(EMMA2RH_GPIO_INT_MASK, reg);