blob: c93a98b2a32c07108f31d490fd1d35ecf91bacc1 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Lennert Buytenhekfa87ced2005-11-01 19:44:27 +00002 * arch/arm/mach-ixp2000/core.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
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{
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 spin_lock_irqsave(&ixp2000_slowport_lock, ixp2000_slowport_irq_flags);
53
54 old_cfg->CCR = *IXP2000_SLOWPORT_CCR;
55 old_cfg->WTC = *IXP2000_SLOWPORT_WTC2;
56 old_cfg->RTC = *IXP2000_SLOWPORT_RTC2;
57 old_cfg->PCR = *IXP2000_SLOWPORT_PCR;
58 old_cfg->ADC = *IXP2000_SLOWPORT_ADC;
59
60 ixp2000_reg_write(IXP2000_SLOWPORT_CCR, new_cfg->CCR);
61 ixp2000_reg_write(IXP2000_SLOWPORT_WTC2, new_cfg->WTC);
62 ixp2000_reg_write(IXP2000_SLOWPORT_RTC2, new_cfg->RTC);
63 ixp2000_reg_write(IXP2000_SLOWPORT_PCR, new_cfg->PCR);
Lennert Buytenheke9b72e42005-11-01 19:44:26 +000064 ixp2000_reg_wrb(IXP2000_SLOWPORT_ADC, new_cfg->ADC);
Linus Torvalds1da177e2005-04-16 15:20:36 -070065}
66
67void ixp2000_release_slowport(struct slowport_cfg *old_cfg)
68{
69 ixp2000_reg_write(IXP2000_SLOWPORT_CCR, old_cfg->CCR);
70 ixp2000_reg_write(IXP2000_SLOWPORT_WTC2, old_cfg->WTC);
71 ixp2000_reg_write(IXP2000_SLOWPORT_RTC2, old_cfg->RTC);
72 ixp2000_reg_write(IXP2000_SLOWPORT_PCR, old_cfg->PCR);
Lennert Buytenheke9b72e42005-11-01 19:44:26 +000073 ixp2000_reg_wrb(IXP2000_SLOWPORT_ADC, old_cfg->ADC);
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
75 spin_unlock_irqrestore(&ixp2000_slowport_lock,
76 ixp2000_slowport_irq_flags);
77}
78
79/*************************************************************************
80 * Chip specific mappings shared by all IXP2000 systems
81 *************************************************************************/
82static struct map_desc ixp2000_io_desc[] __initdata = {
83 {
84 .virtual = IXP2000_CAP_VIRT_BASE,
Deepak Saxenadb0d0872005-10-28 15:18:58 +010085 .pfn = __phys_to_pfn(IXP2000_CAP_PHYS_BASE),
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 .length = IXP2000_CAP_SIZE,
87 .type = MT_DEVICE
88 }, {
89 .virtual = IXP2000_INTCTL_VIRT_BASE,
Deepak Saxenadb0d0872005-10-28 15:18:58 +010090 .pfn = __phys_to_pfn(IXP2000_INTCTL_PHYS_BASE),
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 .length = IXP2000_INTCTL_SIZE,
92 .type = MT_DEVICE
93 }, {
94 .virtual = IXP2000_PCI_CREG_VIRT_BASE,
Deepak Saxenadb0d0872005-10-28 15:18:58 +010095 .pfn = __phys_to_pfn(IXP2000_PCI_CREG_PHYS_BASE),
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 .length = IXP2000_PCI_CREG_SIZE,
97 .type = MT_DEVICE
98 }, {
99 .virtual = IXP2000_PCI_CSR_VIRT_BASE,
Deepak Saxenadb0d0872005-10-28 15:18:58 +0100100 .pfn = __phys_to_pfn(IXP2000_PCI_CSR_PHYS_BASE),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 .length = IXP2000_PCI_CSR_SIZE,
102 .type = MT_DEVICE
103 }, {
Lennert Buytenhekbaaf7ed2005-06-26 22:24:17 +0100104 .virtual = IXP2000_MSF_VIRT_BASE,
Deepak Saxenadb0d0872005-10-28 15:18:58 +0100105 .pfn = __phys_to_pfn(IXP2000_MSF_PHYS_BASE),
Lennert Buytenhekbaaf7ed2005-06-26 22:24:17 +0100106 .length = IXP2000_MSF_SIZE,
107 .type = MT_DEVICE
108 }, {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 .virtual = IXP2000_PCI_IO_VIRT_BASE,
Deepak Saxenadb0d0872005-10-28 15:18:58 +0100110 .pfn = __phys_to_pfn(IXP2000_PCI_IO_PHYS_BASE),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 .length = IXP2000_PCI_IO_SIZE,
112 .type = MT_DEVICE
113 }, {
114 .virtual = IXP2000_PCI_CFG0_VIRT_BASE,
Deepak Saxenadb0d0872005-10-28 15:18:58 +0100115 .pfn = __phys_to_pfn(IXP2000_PCI_CFG0_PHYS_BASE),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 .length = IXP2000_PCI_CFG0_SIZE,
117 .type = MT_DEVICE
118 }, {
119 .virtual = IXP2000_PCI_CFG1_VIRT_BASE,
Deepak Saxenadb0d0872005-10-28 15:18:58 +0100120 .pfn = __phys_to_pfn(IXP2000_PCI_CFG1_PHYS_BASE),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 .length = IXP2000_PCI_CFG1_SIZE,
122 .type = MT_DEVICE
123 }
124};
125
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126void __init ixp2000_map_io(void)
127{
128 extern unsigned int processor_id;
129
130 /*
131 * On IXP2400 CPUs we need to use MT_IXP2000_DEVICE for
132 * tweaking the PMDs so XCB=101. On IXP2800s we use the normal
133 * PMD flags.
134 */
135 if ((processor_id & 0xfffffff0) == 0x69054190) {
136 int i;
137
138 printk(KERN_INFO "Enabling IXP2400 erratum #66 workaround\n");
139
140 for(i=0;i<ARRAY_SIZE(ixp2000_io_desc);i++)
141 ixp2000_io_desc[i].type = MT_IXP2000_DEVICE;
142 }
143
144 iotable_init(ixp2000_io_desc, ARRAY_SIZE(ixp2000_io_desc));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145
146 /* Set slowport to 8-bit mode. */
Lennert Buytenheke9b72e42005-11-01 19:44:26 +0000147 ixp2000_reg_wrb(IXP2000_SLOWPORT_FRM, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148}
149
Lennert Buytenhek28187f22005-07-10 19:44:53 +0100150
151/*************************************************************************
152 * Serial port support for IXP2000
153 *************************************************************************/
154static struct plat_serial8250_port ixp2000_serial_port[] = {
155 {
156 .mapbase = IXP2000_UART_PHYS_BASE,
157 .membase = (char *)(IXP2000_UART_VIRT_BASE + 3),
158 .irq = IRQ_IXP2000_UART,
159 .flags = UPF_BOOT_AUTOCONF | UPF_SKIP_TEST,
160 .iotype = UPIO_MEM,
161 .regshift = 2,
162 .uartclk = 50000000,
163 },
164 { },
165};
166
167static struct resource ixp2000_uart_resource = {
168 .start = IXP2000_UART_PHYS_BASE,
Deepak Saxena702c96d52005-09-30 16:20:22 -0700169 .end = IXP2000_UART_PHYS_BASE + 0x1f,
Lennert Buytenhek28187f22005-07-10 19:44:53 +0100170 .flags = IORESOURCE_MEM,
171};
172
173static struct platform_device ixp2000_serial_device = {
174 .name = "serial8250",
Russell King6df29de2005-09-08 16:04:41 +0100175 .id = PLAT8250_DEV_PLATFORM,
Lennert Buytenhek28187f22005-07-10 19:44:53 +0100176 .dev = {
177 .platform_data = ixp2000_serial_port,
178 },
179 .num_resources = 1,
180 .resource = &ixp2000_uart_resource,
181};
182
183void __init ixp2000_uart_init(void)
184{
185 platform_device_register(&ixp2000_serial_device);
186}
187
188
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189/*************************************************************************
190 * Timer-tick functions for IXP2000
191 *************************************************************************/
192static unsigned ticks_per_jiffy;
193static unsigned ticks_per_usec;
194static unsigned next_jiffy_time;
Lennert Buytenheke4fe1982005-06-20 18:51:07 +0100195static volatile unsigned long *missing_jiffy_timer_csr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196
197unsigned long ixp2000_gettimeoffset (void)
198{
199 unsigned long offset;
200
Lennert Buytenheke4fe1982005-06-20 18:51:07 +0100201 offset = next_jiffy_time - *missing_jiffy_timer_csr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202
203 return offset / ticks_per_usec;
204}
205
206static int ixp2000_timer_interrupt(int irq, void *dev_id, struct pt_regs *regs)
207{
208 write_seqlock(&xtime_lock);
209
210 /* clear timer 1 */
Lennert Buytenheke9b72e42005-11-01 19:44:26 +0000211 ixp2000_reg_wrb(IXP2000_T1_CLR, 1);
Lennert Buytenhekc4982882005-06-24 20:54:35 +0100212
Lennert Buytenheke4fe1982005-06-20 18:51:07 +0100213 while ((next_jiffy_time - *missing_jiffy_timer_csr) > ticks_per_jiffy) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 timer_tick(regs);
215 next_jiffy_time -= ticks_per_jiffy;
216 }
217
218 write_sequnlock(&xtime_lock);
219
220 return IRQ_HANDLED;
221}
222
223static struct irqaction ixp2000_timer_irq = {
224 .name = "IXP2000 Timer Tick",
Russell King09b8b5f2005-06-26 17:06:36 +0100225 .flags = SA_INTERRUPT | SA_TIMER,
226 .handler = ixp2000_timer_interrupt,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227};
228
229void __init ixp2000_init_time(unsigned long tick_rate)
230{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 ticks_per_jiffy = (tick_rate + HZ/2) / HZ;
232 ticks_per_usec = tick_rate / 1000000;
233
Lennert Buytenheke4fe1982005-06-20 18:51:07 +0100234 /*
235 * We use timer 1 as our timer interrupt.
236 */
237 ixp2000_reg_write(IXP2000_T1_CLR, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 ixp2000_reg_write(IXP2000_T1_CLD, ticks_per_jiffy - 1);
239 ixp2000_reg_write(IXP2000_T1_CTL, (1 << 7));
240
241 /*
Lennert Buytenheke4fe1982005-06-20 18:51:07 +0100242 * We use a second timer as a monotonic counter for tracking
243 * missed jiffies. The IXP2000 has four timers, but if we're
244 * on an A-step IXP2800, timer 2 and 3 don't work, so on those
245 * chips we use timer 4. Timer 4 is the only timer that can
246 * be used for the watchdog, so we use timer 2 if we're on a
247 * non-buggy chip.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 */
Lennert Buytenheke4fe1982005-06-20 18:51:07 +0100249 if ((*IXP2000_PRODUCT_ID & 0x001ffef0) == 0x00000000) {
250 printk(KERN_INFO "Enabling IXP2800 erratum #25 workaround\n");
251
252 ixp2000_reg_write(IXP2000_T4_CLR, 0);
253 ixp2000_reg_write(IXP2000_T4_CLD, -1);
Lennert Buytenheke9b72e42005-11-01 19:44:26 +0000254 ixp2000_reg_wrb(IXP2000_T4_CTL, (1 << 7));
Lennert Buytenheke4fe1982005-06-20 18:51:07 +0100255 missing_jiffy_timer_csr = IXP2000_T4_CSR;
256 } else {
257 ixp2000_reg_write(IXP2000_T2_CLR, 0);
258 ixp2000_reg_write(IXP2000_T2_CLD, -1);
Lennert Buytenheke9b72e42005-11-01 19:44:26 +0000259 ixp2000_reg_wrb(IXP2000_T2_CTL, (1 << 7));
Lennert Buytenheke4fe1982005-06-20 18:51:07 +0100260 missing_jiffy_timer_csr = IXP2000_T2_CSR;
261 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 next_jiffy_time = 0xffffffff;
263
264 /* register for interrupt */
265 setup_irq(IRQ_IXP2000_TIMER1, &ixp2000_timer_irq);
266}
267
268/*************************************************************************
269 * GPIO helpers
270 *************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271static unsigned long GPIO_IRQ_falling_edge;
Lennert Buytenhekc4982882005-06-24 20:54:35 +0100272static unsigned long GPIO_IRQ_rising_edge;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273static unsigned long GPIO_IRQ_level_low;
274static unsigned long GPIO_IRQ_level_high;
275
Lennert Buytenhekc4982882005-06-24 20:54:35 +0100276static void update_gpio_int_csrs(void)
277{
278 ixp2000_reg_write(IXP2000_GPIO_FEDR, GPIO_IRQ_falling_edge);
279 ixp2000_reg_write(IXP2000_GPIO_REDR, GPIO_IRQ_rising_edge);
280 ixp2000_reg_write(IXP2000_GPIO_LSLR, GPIO_IRQ_level_low);
Lennert Buytenheke9b72e42005-11-01 19:44:26 +0000281 ixp2000_reg_wrb(IXP2000_GPIO_LSHR, GPIO_IRQ_level_high);
Lennert Buytenhekc4982882005-06-24 20:54:35 +0100282}
283
284void gpio_line_config(int line, int direction)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285{
286 unsigned long flags;
287
288 local_irq_save(flags);
Lennert Buytenhekc4982882005-06-24 20:54:35 +0100289 if (direction == GPIO_OUT) {
290 irq_desc[line + IRQ_IXP2000_GPIO0].valid = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 /* if it's an output, it ain't an interrupt anymore */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 GPIO_IRQ_falling_edge &= ~(1 << line);
294 GPIO_IRQ_rising_edge &= ~(1 << line);
295 GPIO_IRQ_level_low &= ~(1 << line);
296 GPIO_IRQ_level_high &= ~(1 << line);
Lennert Buytenhekc4982882005-06-24 20:54:35 +0100297 update_gpio_int_csrs();
298
Lennert Buytenheke9b72e42005-11-01 19:44:26 +0000299 ixp2000_reg_wrb(IXP2000_GPIO_PDSR, 1 << line);
Lennert Buytenhekc4982882005-06-24 20:54:35 +0100300 } else if (direction == GPIO_IN) {
Lennert Buytenheke9b72e42005-11-01 19:44:26 +0000301 ixp2000_reg_wrb(IXP2000_GPIO_PDCR, 1 << line);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 local_irq_restore(flags);
Lennert Buytenhekc4982882005-06-24 20:54:35 +0100304}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305
306
307/*************************************************************************
308 * IRQ handling IXP2000
309 *************************************************************************/
310static void ixp2000_GPIO_irq_handler(unsigned int irq, struct irqdesc *desc, struct pt_regs *regs)
311{
312 int i;
313 unsigned long status = *IXP2000_GPIO_INST;
314
315 for (i = 0; i <= 7; i++) {
316 if (status & (1<<i)) {
317 desc = irq_desc + i + IRQ_IXP2000_GPIO0;
Russell King664399e2005-09-04 19:45:00 +0100318 desc_handle_irq(i + IRQ_IXP2000_GPIO0, desc, regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 }
320 }
321}
322
Lennert Buytenhekc4982882005-06-24 20:54:35 +0100323static int ixp2000_GPIO_irq_type(unsigned int irq, unsigned int type)
324{
325 int line = irq - IRQ_IXP2000_GPIO0;
326
327 /*
328 * First, configure this GPIO line as an input.
329 */
330 ixp2000_reg_write(IXP2000_GPIO_PDCR, 1 << line);
331
332 /*
333 * Then, set the proper trigger type.
334 */
335 if (type & IRQT_FALLING)
336 GPIO_IRQ_falling_edge |= 1 << line;
337 else
338 GPIO_IRQ_falling_edge &= ~(1 << line);
339 if (type & IRQT_RISING)
340 GPIO_IRQ_rising_edge |= 1 << line;
341 else
342 GPIO_IRQ_rising_edge &= ~(1 << line);
343 if (type & IRQT_LOW)
344 GPIO_IRQ_level_low |= 1 << line;
345 else
346 GPIO_IRQ_level_low &= ~(1 << line);
347 if (type & IRQT_HIGH)
348 GPIO_IRQ_level_high |= 1 << line;
349 else
350 GPIO_IRQ_level_high &= ~(1 << line);
351 update_gpio_int_csrs();
352
353 /*
354 * Finally, mark the corresponding IRQ as valid.
355 */
356 irq_desc[irq].valid = 1;
357
358 return 0;
359}
360
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361static void ixp2000_GPIO_irq_mask_ack(unsigned int irq)
362{
363 ixp2000_reg_write(IXP2000_GPIO_INCR, (1 << (irq - IRQ_IXP2000_GPIO0)));
Lennert Buytenhekc4982882005-06-24 20:54:35 +0100364
365 ixp2000_reg_write(IXP2000_GPIO_EDSR, (1 << (irq - IRQ_IXP2000_GPIO0)));
366 ixp2000_reg_write(IXP2000_GPIO_LDSR, (1 << (irq - IRQ_IXP2000_GPIO0)));
Lennert Buytenheke9b72e42005-11-01 19:44:26 +0000367 ixp2000_reg_wrb(IXP2000_GPIO_INST, (1 << (irq - IRQ_IXP2000_GPIO0)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368}
369
370static void ixp2000_GPIO_irq_mask(unsigned int irq)
371{
Lennert Buytenheke9b72e42005-11-01 19:44:26 +0000372 ixp2000_reg_wrb(IXP2000_GPIO_INCR, (1 << (irq - IRQ_IXP2000_GPIO0)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373}
374
375static void ixp2000_GPIO_irq_unmask(unsigned int irq)
376{
377 ixp2000_reg_write(IXP2000_GPIO_INSR, (1 << (irq - IRQ_IXP2000_GPIO0)));
378}
379
380static struct irqchip ixp2000_GPIO_irq_chip = {
Russell King78019072005-09-04 19:43:13 +0100381 .ack = ixp2000_GPIO_irq_mask_ack,
382 .mask = ixp2000_GPIO_irq_mask,
Russell King2be863c2005-09-06 23:13:17 +0100383 .unmask = ixp2000_GPIO_irq_unmask,
Russell King78019072005-09-04 19:43:13 +0100384 .set_type = ixp2000_GPIO_irq_type,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385};
386
387static void ixp2000_pci_irq_mask(unsigned int irq)
388{
389 unsigned long temp = *IXP2000_PCI_XSCALE_INT_ENABLE;
390 if (irq == IRQ_IXP2000_PCIA)
Lennert Buytenheke9b72e42005-11-01 19:44:26 +0000391 ixp2000_reg_wrb(IXP2000_PCI_XSCALE_INT_ENABLE, (temp & ~(1 << 26)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 else if (irq == IRQ_IXP2000_PCIB)
Lennert Buytenheke9b72e42005-11-01 19:44:26 +0000393 ixp2000_reg_wrb(IXP2000_PCI_XSCALE_INT_ENABLE, (temp & ~(1 << 27)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394}
395
396static void ixp2000_pci_irq_unmask(unsigned int irq)
397{
398 unsigned long temp = *IXP2000_PCI_XSCALE_INT_ENABLE;
399 if (irq == IRQ_IXP2000_PCIA)
400 ixp2000_reg_write(IXP2000_PCI_XSCALE_INT_ENABLE, (temp | (1 << 26)));
401 else if (irq == IRQ_IXP2000_PCIB)
402 ixp2000_reg_write(IXP2000_PCI_XSCALE_INT_ENABLE, (temp | (1 << 27)));
403}
404
405static struct irqchip ixp2000_pci_irq_chip = {
406 .ack = ixp2000_pci_irq_mask,
407 .mask = ixp2000_pci_irq_mask,
408 .unmask = ixp2000_pci_irq_unmask
409};
410
411static void ixp2000_irq_mask(unsigned int irq)
412{
Lennert Buytenheke9b72e42005-11-01 19:44:26 +0000413 ixp2000_reg_wrb(IXP2000_IRQ_ENABLE_CLR, (1 << irq));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414}
415
416static void ixp2000_irq_unmask(unsigned int irq)
417{
Lennert Buytenhekc4982882005-06-24 20:54:35 +0100418 ixp2000_reg_write(IXP2000_IRQ_ENABLE_SET, (1 << irq));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419}
420
421static struct irqchip ixp2000_irq_chip = {
422 .ack = ixp2000_irq_mask,
423 .mask = ixp2000_irq_mask,
424 .unmask = ixp2000_irq_unmask
425};
426
427void __init ixp2000_init_irq(void)
428{
429 int irq;
430
431 /*
432 * Mask all sources
433 */
434 ixp2000_reg_write(IXP2000_IRQ_ENABLE_CLR, 0xffffffff);
435 ixp2000_reg_write(IXP2000_FIQ_ENABLE_CLR, 0xffffffff);
436
437 /* clear all GPIO edge/level detects */
438 ixp2000_reg_write(IXP2000_GPIO_REDR, 0);
439 ixp2000_reg_write(IXP2000_GPIO_FEDR, 0);
440 ixp2000_reg_write(IXP2000_GPIO_LSHR, 0);
441 ixp2000_reg_write(IXP2000_GPIO_LSLR, 0);
442 ixp2000_reg_write(IXP2000_GPIO_INCR, -1);
443
444 /* clear PCI interrupt sources */
Lennert Buytenheke9b72e42005-11-01 19:44:26 +0000445 ixp2000_reg_wrb(IXP2000_PCI_XSCALE_INT_ENABLE, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446
447 /*
448 * Certain bits in the IRQ status register of the
449 * IXP2000 are reserved. Instead of trying to map
450 * things non 1:1 from bit position to IRQ number,
451 * we mark the reserved IRQs as invalid. This makes
452 * our mask/unmask code much simpler.
453 */
454 for (irq = IRQ_IXP2000_SOFT_INT; irq <= IRQ_IXP2000_THDB3; irq++) {
Lennert Buytenhekc4982882005-06-24 20:54:35 +0100455 if ((1 << irq) & IXP2000_VALID_IRQ_MASK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 set_irq_chip(irq, &ixp2000_irq_chip);
457 set_irq_handler(irq, do_level_IRQ);
458 set_irq_flags(irq, IRQF_VALID);
459 } else set_irq_flags(irq, 0);
460 }
Lennert Buytenhekc4982882005-06-24 20:54:35 +0100461
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 /*
463 * GPIO IRQs are invalid until someone sets the interrupt mode
Lennert Buytenhekc4982882005-06-24 20:54:35 +0100464 * by calling set_irq_type().
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 */
466 for (irq = IRQ_IXP2000_GPIO0; irq <= IRQ_IXP2000_GPIO7; irq++) {
467 set_irq_chip(irq, &ixp2000_GPIO_irq_chip);
468 set_irq_handler(irq, do_level_IRQ);
469 set_irq_flags(irq, 0);
470 }
471 set_irq_chained_handler(IRQ_IXP2000_GPIO, ixp2000_GPIO_irq_handler);
472
473 /*
474 * Enable PCI irqs. The actual PCI[AB] decoding is done in
475 * entry-macro.S, so we don't need a chained handler for the
476 * PCI interrupt source.
477 */
478 ixp2000_reg_write(IXP2000_IRQ_ENABLE_SET, (1 << IRQ_IXP2000_PCI));
479 for (irq = IRQ_IXP2000_PCIA; irq <= IRQ_IXP2000_PCIB; irq++) {
480 set_irq_chip(irq, &ixp2000_pci_irq_chip);
481 set_irq_handler(irq, do_level_IRQ);
482 set_irq_flags(irq, IRQF_VALID);
483 }
484}
485