blob: 01c393c504d0ba3cb4447af6d19e141b47ad25e0 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * arch/arm/mach-ixp2000/common.c
3 *
4 * Common routines used by all IXP2400/2800 based platforms.
5 *
6 * Author: Deepak Saxena <dsaxena@plexity.net>
7 *
8 * Copyright 2004 (C) MontaVista Software, Inc.
9 *
10 * Based on work Copyright (C) 2002-2003 Intel Corporation
11 *
12 * This file is licensed under the terms of the GNU General Public
13 * License version 2. This program is licensed "as is" without any
14 * warranty of any kind, whether express or implied.
15 */
16
17#include <linux/config.h>
18#include <linux/kernel.h>
19#include <linux/init.h>
20#include <linux/spinlock.h>
21#include <linux/sched.h>
22#include <linux/interrupt.h>
23#include <linux/serial.h>
24#include <linux/tty.h>
25#include <linux/bitops.h>
Lennert Buytenhek28187f22005-07-10 19:44:53 +010026#include <linux/serial_8250.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <linux/mm.h>
28
29#include <asm/types.h>
30#include <asm/setup.h>
31#include <asm/memory.h>
32#include <asm/hardware.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <asm/irq.h>
34#include <asm/system.h>
35#include <asm/tlbflush.h>
36#include <asm/pgtable.h>
37
38#include <asm/mach/map.h>
39#include <asm/mach/time.h>
40#include <asm/mach/irq.h>
41
Lennert Buytenhekc4982882005-06-24 20:54:35 +010042#include <asm/arch/gpio.h>
43
Linus Torvalds1da177e2005-04-16 15:20:36 -070044static DEFINE_SPINLOCK(ixp2000_slowport_lock);
45static unsigned long ixp2000_slowport_irq_flags;
46
47/*************************************************************************
48 * Slowport access routines
49 *************************************************************************/
50void ixp2000_acquire_slowport(struct slowport_cfg *new_cfg, struct slowport_cfg *old_cfg)
51{
52
53 spin_lock_irqsave(&ixp2000_slowport_lock, ixp2000_slowport_irq_flags);
54
55 old_cfg->CCR = *IXP2000_SLOWPORT_CCR;
56 old_cfg->WTC = *IXP2000_SLOWPORT_WTC2;
57 old_cfg->RTC = *IXP2000_SLOWPORT_RTC2;
58 old_cfg->PCR = *IXP2000_SLOWPORT_PCR;
59 old_cfg->ADC = *IXP2000_SLOWPORT_ADC;
60
61 ixp2000_reg_write(IXP2000_SLOWPORT_CCR, new_cfg->CCR);
62 ixp2000_reg_write(IXP2000_SLOWPORT_WTC2, new_cfg->WTC);
63 ixp2000_reg_write(IXP2000_SLOWPORT_RTC2, new_cfg->RTC);
64 ixp2000_reg_write(IXP2000_SLOWPORT_PCR, new_cfg->PCR);
65 ixp2000_reg_write(IXP2000_SLOWPORT_ADC, new_cfg->ADC);
66}
67
68void ixp2000_release_slowport(struct slowport_cfg *old_cfg)
69{
70 ixp2000_reg_write(IXP2000_SLOWPORT_CCR, old_cfg->CCR);
71 ixp2000_reg_write(IXP2000_SLOWPORT_WTC2, old_cfg->WTC);
72 ixp2000_reg_write(IXP2000_SLOWPORT_RTC2, old_cfg->RTC);
73 ixp2000_reg_write(IXP2000_SLOWPORT_PCR, old_cfg->PCR);
74 ixp2000_reg_write(IXP2000_SLOWPORT_ADC, old_cfg->ADC);
75
76 spin_unlock_irqrestore(&ixp2000_slowport_lock,
77 ixp2000_slowport_irq_flags);
78}
79
80/*************************************************************************
81 * Chip specific mappings shared by all IXP2000 systems
82 *************************************************************************/
83static struct map_desc ixp2000_io_desc[] __initdata = {
84 {
85 .virtual = IXP2000_CAP_VIRT_BASE,
Deepak Saxenadb0d0872005-10-28 15:18:58 +010086 .pfn = __phys_to_pfn(IXP2000_CAP_PHYS_BASE),
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 .length = IXP2000_CAP_SIZE,
88 .type = MT_DEVICE
89 }, {
90 .virtual = IXP2000_INTCTL_VIRT_BASE,
Deepak Saxenadb0d0872005-10-28 15:18:58 +010091 .pfn = __phys_to_pfn(IXP2000_INTCTL_PHYS_BASE),
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 .length = IXP2000_INTCTL_SIZE,
93 .type = MT_DEVICE
94 }, {
95 .virtual = IXP2000_PCI_CREG_VIRT_BASE,
Deepak Saxenadb0d0872005-10-28 15:18:58 +010096 .pfn = __phys_to_pfn(IXP2000_PCI_CREG_PHYS_BASE),
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 .length = IXP2000_PCI_CREG_SIZE,
98 .type = MT_DEVICE
99 }, {
100 .virtual = IXP2000_PCI_CSR_VIRT_BASE,
Deepak Saxenadb0d0872005-10-28 15:18:58 +0100101 .pfn = __phys_to_pfn(IXP2000_PCI_CSR_PHYS_BASE),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 .length = IXP2000_PCI_CSR_SIZE,
103 .type = MT_DEVICE
104 }, {
Lennert Buytenhekbaaf7ed12005-06-26 22:24:17 +0100105 .virtual = IXP2000_MSF_VIRT_BASE,
Deepak Saxenadb0d0872005-10-28 15:18:58 +0100106 .pfn = __phys_to_pfn(IXP2000_MSF_PHYS_BASE),
Lennert Buytenhekbaaf7ed12005-06-26 22:24:17 +0100107 .length = IXP2000_MSF_SIZE,
108 .type = MT_DEVICE
109 }, {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 .virtual = IXP2000_PCI_IO_VIRT_BASE,
Deepak Saxenadb0d0872005-10-28 15:18:58 +0100111 .pfn = __phys_to_pfn(IXP2000_PCI_IO_PHYS_BASE),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 .length = IXP2000_PCI_IO_SIZE,
113 .type = MT_DEVICE
114 }, {
115 .virtual = IXP2000_PCI_CFG0_VIRT_BASE,
Deepak Saxenadb0d0872005-10-28 15:18:58 +0100116 .pfn = __phys_to_pfn(IXP2000_PCI_CFG0_PHYS_BASE),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 .length = IXP2000_PCI_CFG0_SIZE,
118 .type = MT_DEVICE
119 }, {
120 .virtual = IXP2000_PCI_CFG1_VIRT_BASE,
Deepak Saxenadb0d0872005-10-28 15:18:58 +0100121 .pfn = __phys_to_pfn(IXP2000_PCI_CFG1_PHYS_BASE),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 .length = IXP2000_PCI_CFG1_SIZE,
123 .type = MT_DEVICE
124 }
125};
126
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127void __init ixp2000_map_io(void)
128{
129 extern unsigned int processor_id;
130
131 /*
132 * On IXP2400 CPUs we need to use MT_IXP2000_DEVICE for
133 * tweaking the PMDs so XCB=101. On IXP2800s we use the normal
134 * PMD flags.
135 */
136 if ((processor_id & 0xfffffff0) == 0x69054190) {
137 int i;
138
139 printk(KERN_INFO "Enabling IXP2400 erratum #66 workaround\n");
140
141 for(i=0;i<ARRAY_SIZE(ixp2000_io_desc);i++)
142 ixp2000_io_desc[i].type = MT_IXP2000_DEVICE;
143 }
144
145 iotable_init(ixp2000_io_desc, ARRAY_SIZE(ixp2000_io_desc));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
147 /* Set slowport to 8-bit mode. */
148 ixp2000_reg_write(IXP2000_SLOWPORT_FRM, 1);
149}
150
Lennert Buytenhek28187f22005-07-10 19:44:53 +0100151
152/*************************************************************************
153 * Serial port support for IXP2000
154 *************************************************************************/
155static struct plat_serial8250_port ixp2000_serial_port[] = {
156 {
157 .mapbase = IXP2000_UART_PHYS_BASE,
158 .membase = (char *)(IXP2000_UART_VIRT_BASE + 3),
159 .irq = IRQ_IXP2000_UART,
160 .flags = UPF_BOOT_AUTOCONF | UPF_SKIP_TEST,
161 .iotype = UPIO_MEM,
162 .regshift = 2,
163 .uartclk = 50000000,
164 },
165 { },
166};
167
168static struct resource ixp2000_uart_resource = {
169 .start = IXP2000_UART_PHYS_BASE,
Deepak Saxena702c96d52005-09-30 16:20:22 -0700170 .end = IXP2000_UART_PHYS_BASE + 0x1f,
Lennert Buytenhek28187f22005-07-10 19:44:53 +0100171 .flags = IORESOURCE_MEM,
172};
173
174static struct platform_device ixp2000_serial_device = {
175 .name = "serial8250",
Russell King6df29de2005-09-08 16:04:41 +0100176 .id = PLAT8250_DEV_PLATFORM,
Lennert Buytenhek28187f22005-07-10 19:44:53 +0100177 .dev = {
178 .platform_data = ixp2000_serial_port,
179 },
180 .num_resources = 1,
181 .resource = &ixp2000_uart_resource,
182};
183
184void __init ixp2000_uart_init(void)
185{
186 platform_device_register(&ixp2000_serial_device);
187}
188
189
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190/*************************************************************************
191 * Timer-tick functions for IXP2000
192 *************************************************************************/
193static unsigned ticks_per_jiffy;
194static unsigned ticks_per_usec;
195static unsigned next_jiffy_time;
Lennert Buytenheke4fe1982005-06-20 18:51:07 +0100196static volatile unsigned long *missing_jiffy_timer_csr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197
198unsigned long ixp2000_gettimeoffset (void)
199{
200 unsigned long offset;
201
Lennert Buytenheke4fe1982005-06-20 18:51:07 +0100202 offset = next_jiffy_time - *missing_jiffy_timer_csr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203
204 return offset / ticks_per_usec;
205}
206
207static int ixp2000_timer_interrupt(int irq, void *dev_id, struct pt_regs *regs)
208{
209 write_seqlock(&xtime_lock);
210
211 /* clear timer 1 */
212 ixp2000_reg_write(IXP2000_T1_CLR, 1);
Lennert Buytenhekc4982882005-06-24 20:54:35 +0100213
Lennert Buytenheke4fe1982005-06-20 18:51:07 +0100214 while ((next_jiffy_time - *missing_jiffy_timer_csr) > ticks_per_jiffy) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 timer_tick(regs);
216 next_jiffy_time -= ticks_per_jiffy;
217 }
218
219 write_sequnlock(&xtime_lock);
220
221 return IRQ_HANDLED;
222}
223
224static struct irqaction ixp2000_timer_irq = {
225 .name = "IXP2000 Timer Tick",
Russell King09b8b5f2005-06-26 17:06:36 +0100226 .flags = SA_INTERRUPT | SA_TIMER,
227 .handler = ixp2000_timer_interrupt,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228};
229
230void __init ixp2000_init_time(unsigned long tick_rate)
231{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 ticks_per_jiffy = (tick_rate + HZ/2) / HZ;
233 ticks_per_usec = tick_rate / 1000000;
234
Lennert Buytenheke4fe1982005-06-20 18:51:07 +0100235 /*
236 * We use timer 1 as our timer interrupt.
237 */
238 ixp2000_reg_write(IXP2000_T1_CLR, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 ixp2000_reg_write(IXP2000_T1_CLD, ticks_per_jiffy - 1);
240 ixp2000_reg_write(IXP2000_T1_CTL, (1 << 7));
241
242 /*
Lennert Buytenheke4fe1982005-06-20 18:51:07 +0100243 * We use a second timer as a monotonic counter for tracking
244 * missed jiffies. The IXP2000 has four timers, but if we're
245 * on an A-step IXP2800, timer 2 and 3 don't work, so on those
246 * chips we use timer 4. Timer 4 is the only timer that can
247 * be used for the watchdog, so we use timer 2 if we're on a
248 * non-buggy chip.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 */
Lennert Buytenheke4fe1982005-06-20 18:51:07 +0100250 if ((*IXP2000_PRODUCT_ID & 0x001ffef0) == 0x00000000) {
251 printk(KERN_INFO "Enabling IXP2800 erratum #25 workaround\n");
252
253 ixp2000_reg_write(IXP2000_T4_CLR, 0);
254 ixp2000_reg_write(IXP2000_T4_CLD, -1);
255 ixp2000_reg_write(IXP2000_T4_CTL, (1 << 7));
256 missing_jiffy_timer_csr = IXP2000_T4_CSR;
257 } else {
258 ixp2000_reg_write(IXP2000_T2_CLR, 0);
259 ixp2000_reg_write(IXP2000_T2_CLD, -1);
260 ixp2000_reg_write(IXP2000_T2_CTL, (1 << 7));
261 missing_jiffy_timer_csr = IXP2000_T2_CSR;
262 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 next_jiffy_time = 0xffffffff;
264
265 /* register for interrupt */
266 setup_irq(IRQ_IXP2000_TIMER1, &ixp2000_timer_irq);
267}
268
269/*************************************************************************
270 * GPIO helpers
271 *************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272static unsigned long GPIO_IRQ_falling_edge;
Lennert Buytenhekc4982882005-06-24 20:54:35 +0100273static unsigned long GPIO_IRQ_rising_edge;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274static unsigned long GPIO_IRQ_level_low;
275static unsigned long GPIO_IRQ_level_high;
276
Lennert Buytenhekc4982882005-06-24 20:54:35 +0100277static void update_gpio_int_csrs(void)
278{
279 ixp2000_reg_write(IXP2000_GPIO_FEDR, GPIO_IRQ_falling_edge);
280 ixp2000_reg_write(IXP2000_GPIO_REDR, GPIO_IRQ_rising_edge);
281 ixp2000_reg_write(IXP2000_GPIO_LSLR, GPIO_IRQ_level_low);
282 ixp2000_reg_write(IXP2000_GPIO_LSHR, GPIO_IRQ_level_high);
283}
284
285void gpio_line_config(int line, int direction)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286{
287 unsigned long flags;
288
289 local_irq_save(flags);
Lennert Buytenhekc4982882005-06-24 20:54:35 +0100290 if (direction == GPIO_OUT) {
291 irq_desc[line + IRQ_IXP2000_GPIO0].valid = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 /* if it's an output, it ain't an interrupt anymore */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 GPIO_IRQ_falling_edge &= ~(1 << line);
295 GPIO_IRQ_rising_edge &= ~(1 << line);
296 GPIO_IRQ_level_low &= ~(1 << line);
297 GPIO_IRQ_level_high &= ~(1 << line);
Lennert Buytenhekc4982882005-06-24 20:54:35 +0100298 update_gpio_int_csrs();
299
300 ixp2000_reg_write(IXP2000_GPIO_PDSR, 1 << line);
301 } else if (direction == GPIO_IN) {
302 ixp2000_reg_write(IXP2000_GPIO_PDCR, 1 << line);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 local_irq_restore(flags);
Lennert Buytenhekc4982882005-06-24 20:54:35 +0100305}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306
307
308/*************************************************************************
309 * IRQ handling IXP2000
310 *************************************************************************/
311static void ixp2000_GPIO_irq_handler(unsigned int irq, struct irqdesc *desc, struct pt_regs *regs)
312{
313 int i;
314 unsigned long status = *IXP2000_GPIO_INST;
315
316 for (i = 0; i <= 7; i++) {
317 if (status & (1<<i)) {
318 desc = irq_desc + i + IRQ_IXP2000_GPIO0;
Russell King664399e2005-09-04 19:45:00 +0100319 desc_handle_irq(i + IRQ_IXP2000_GPIO0, desc, regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 }
321 }
322}
323
Lennert Buytenhekc4982882005-06-24 20:54:35 +0100324static int ixp2000_GPIO_irq_type(unsigned int irq, unsigned int type)
325{
326 int line = irq - IRQ_IXP2000_GPIO0;
327
328 /*
329 * First, configure this GPIO line as an input.
330 */
331 ixp2000_reg_write(IXP2000_GPIO_PDCR, 1 << line);
332
333 /*
334 * Then, set the proper trigger type.
335 */
336 if (type & IRQT_FALLING)
337 GPIO_IRQ_falling_edge |= 1 << line;
338 else
339 GPIO_IRQ_falling_edge &= ~(1 << line);
340 if (type & IRQT_RISING)
341 GPIO_IRQ_rising_edge |= 1 << line;
342 else
343 GPIO_IRQ_rising_edge &= ~(1 << line);
344 if (type & IRQT_LOW)
345 GPIO_IRQ_level_low |= 1 << line;
346 else
347 GPIO_IRQ_level_low &= ~(1 << line);
348 if (type & IRQT_HIGH)
349 GPIO_IRQ_level_high |= 1 << line;
350 else
351 GPIO_IRQ_level_high &= ~(1 << line);
352 update_gpio_int_csrs();
353
354 /*
355 * Finally, mark the corresponding IRQ as valid.
356 */
357 irq_desc[irq].valid = 1;
358
359 return 0;
360}
361
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362static void ixp2000_GPIO_irq_mask_ack(unsigned int irq)
363{
364 ixp2000_reg_write(IXP2000_GPIO_INCR, (1 << (irq - IRQ_IXP2000_GPIO0)));
Lennert Buytenhekc4982882005-06-24 20:54:35 +0100365
366 ixp2000_reg_write(IXP2000_GPIO_EDSR, (1 << (irq - IRQ_IXP2000_GPIO0)));
367 ixp2000_reg_write(IXP2000_GPIO_LDSR, (1 << (irq - IRQ_IXP2000_GPIO0)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 ixp2000_reg_write(IXP2000_GPIO_INST, (1 << (irq - IRQ_IXP2000_GPIO0)));
369}
370
371static void ixp2000_GPIO_irq_mask(unsigned int irq)
372{
373 ixp2000_reg_write(IXP2000_GPIO_INCR, (1 << (irq - IRQ_IXP2000_GPIO0)));
374}
375
376static void ixp2000_GPIO_irq_unmask(unsigned int irq)
377{
378 ixp2000_reg_write(IXP2000_GPIO_INSR, (1 << (irq - IRQ_IXP2000_GPIO0)));
379}
380
381static struct irqchip ixp2000_GPIO_irq_chip = {
Russell King78019072005-09-04 19:43:13 +0100382 .ack = ixp2000_GPIO_irq_mask_ack,
383 .mask = ixp2000_GPIO_irq_mask,
Russell King2be863c2005-09-06 23:13:17 +0100384 .unmask = ixp2000_GPIO_irq_unmask,
Russell King78019072005-09-04 19:43:13 +0100385 .set_type = ixp2000_GPIO_irq_type,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386};
387
388static void ixp2000_pci_irq_mask(unsigned int irq)
389{
390 unsigned long temp = *IXP2000_PCI_XSCALE_INT_ENABLE;
391 if (irq == IRQ_IXP2000_PCIA)
392 ixp2000_reg_write(IXP2000_PCI_XSCALE_INT_ENABLE, (temp & ~(1 << 26)));
393 else if (irq == IRQ_IXP2000_PCIB)
394 ixp2000_reg_write(IXP2000_PCI_XSCALE_INT_ENABLE, (temp & ~(1 << 27)));
395}
396
397static void ixp2000_pci_irq_unmask(unsigned int irq)
398{
399 unsigned long temp = *IXP2000_PCI_XSCALE_INT_ENABLE;
400 if (irq == IRQ_IXP2000_PCIA)
401 ixp2000_reg_write(IXP2000_PCI_XSCALE_INT_ENABLE, (temp | (1 << 26)));
402 else if (irq == IRQ_IXP2000_PCIB)
403 ixp2000_reg_write(IXP2000_PCI_XSCALE_INT_ENABLE, (temp | (1 << 27)));
404}
405
406static struct irqchip ixp2000_pci_irq_chip = {
407 .ack = ixp2000_pci_irq_mask,
408 .mask = ixp2000_pci_irq_mask,
409 .unmask = ixp2000_pci_irq_unmask
410};
411
412static void ixp2000_irq_mask(unsigned int irq)
413{
414 ixp2000_reg_write(IXP2000_IRQ_ENABLE_CLR, (1 << irq));
415}
416
417static void ixp2000_irq_unmask(unsigned int irq)
418{
Lennert Buytenhekc4982882005-06-24 20:54:35 +0100419 ixp2000_reg_write(IXP2000_IRQ_ENABLE_SET, (1 << irq));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420}
421
422static struct irqchip ixp2000_irq_chip = {
423 .ack = ixp2000_irq_mask,
424 .mask = ixp2000_irq_mask,
425 .unmask = ixp2000_irq_unmask
426};
427
428void __init ixp2000_init_irq(void)
429{
430 int irq;
431
432 /*
433 * Mask all sources
434 */
435 ixp2000_reg_write(IXP2000_IRQ_ENABLE_CLR, 0xffffffff);
436 ixp2000_reg_write(IXP2000_FIQ_ENABLE_CLR, 0xffffffff);
437
438 /* clear all GPIO edge/level detects */
439 ixp2000_reg_write(IXP2000_GPIO_REDR, 0);
440 ixp2000_reg_write(IXP2000_GPIO_FEDR, 0);
441 ixp2000_reg_write(IXP2000_GPIO_LSHR, 0);
442 ixp2000_reg_write(IXP2000_GPIO_LSLR, 0);
443 ixp2000_reg_write(IXP2000_GPIO_INCR, -1);
444
445 /* clear PCI interrupt sources */
446 ixp2000_reg_write(IXP2000_PCI_XSCALE_INT_ENABLE, 0);
447
448 /*
449 * Certain bits in the IRQ status register of the
450 * IXP2000 are reserved. Instead of trying to map
451 * things non 1:1 from bit position to IRQ number,
452 * we mark the reserved IRQs as invalid. This makes
453 * our mask/unmask code much simpler.
454 */
455 for (irq = IRQ_IXP2000_SOFT_INT; irq <= IRQ_IXP2000_THDB3; irq++) {
Lennert Buytenhekc4982882005-06-24 20:54:35 +0100456 if ((1 << irq) & IXP2000_VALID_IRQ_MASK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 set_irq_chip(irq, &ixp2000_irq_chip);
458 set_irq_handler(irq, do_level_IRQ);
459 set_irq_flags(irq, IRQF_VALID);
460 } else set_irq_flags(irq, 0);
461 }
Lennert Buytenhekc4982882005-06-24 20:54:35 +0100462
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 /*
464 * GPIO IRQs are invalid until someone sets the interrupt mode
Lennert Buytenhekc4982882005-06-24 20:54:35 +0100465 * by calling set_irq_type().
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 */
467 for (irq = IRQ_IXP2000_GPIO0; irq <= IRQ_IXP2000_GPIO7; irq++) {
468 set_irq_chip(irq, &ixp2000_GPIO_irq_chip);
469 set_irq_handler(irq, do_level_IRQ);
470 set_irq_flags(irq, 0);
471 }
472 set_irq_chained_handler(IRQ_IXP2000_GPIO, ixp2000_GPIO_irq_handler);
473
474 /*
475 * Enable PCI irqs. The actual PCI[AB] decoding is done in
476 * entry-macro.S, so we don't need a chained handler for the
477 * PCI interrupt source.
478 */
479 ixp2000_reg_write(IXP2000_IRQ_ENABLE_SET, (1 << IRQ_IXP2000_PCI));
480 for (irq = IRQ_IXP2000_PCIA; irq <= IRQ_IXP2000_PCIB; irq++) {
481 set_irq_chip(irq, &ixp2000_pci_irq_chip);
482 set_irq_handler(irq, do_level_IRQ);
483 set_irq_flags(irq, IRQF_VALID);
484 }
485}
486