core.c 15.0 KB
Newer Older
L
Linus Torvalds 已提交
1
/*
2
 * arch/arm/mach-ixp2000/core.c
L
Linus Torvalds 已提交
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
 *
 * Common routines used by all IXP2400/2800 based platforms.
 *
 * Author: Deepak Saxena <dsaxena@plexity.net>
 *
 * Copyright 2004 (C) MontaVista Software, Inc. 
 *
 * Based on work Copyright (C) 2002-2003 Intel Corporation
 * 
 * This file is licensed under the terms of the GNU General Public
 * License version 2. This program is licensed "as is" without any 
 * warranty of any kind, whether express or implied.
 */

#include <linux/kernel.h>
#include <linux/init.h>
#include <linux/spinlock.h>
#include <linux/sched.h>
#include <linux/interrupt.h>
22
#include <linux/irq.h>
L
Linus Torvalds 已提交
23 24 25
#include <linux/serial.h>
#include <linux/tty.h>
#include <linux/bitops.h>
26
#include <linux/serial_8250.h>
L
Linus Torvalds 已提交
27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
#include <linux/mm.h>

#include <asm/types.h>
#include <asm/setup.h>
#include <asm/memory.h>
#include <asm/hardware.h>
#include <asm/irq.h>
#include <asm/system.h>
#include <asm/tlbflush.h>
#include <asm/pgtable.h>

#include <asm/mach/map.h>
#include <asm/mach/time.h>
#include <asm/mach/irq.h>

42 43
#include <asm/arch/gpio.h>

L
Linus Torvalds 已提交
44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
static DEFINE_SPINLOCK(ixp2000_slowport_lock);
static unsigned long ixp2000_slowport_irq_flags;

/*************************************************************************
 * Slowport access routines
 *************************************************************************/
void ixp2000_acquire_slowport(struct slowport_cfg *new_cfg, struct slowport_cfg *old_cfg)
{
	spin_lock_irqsave(&ixp2000_slowport_lock, ixp2000_slowport_irq_flags);

	old_cfg->CCR = *IXP2000_SLOWPORT_CCR;
	old_cfg->WTC = *IXP2000_SLOWPORT_WTC2;
	old_cfg->RTC = *IXP2000_SLOWPORT_RTC2;
	old_cfg->PCR = *IXP2000_SLOWPORT_PCR;
	old_cfg->ADC = *IXP2000_SLOWPORT_ADC;

	ixp2000_reg_write(IXP2000_SLOWPORT_CCR, new_cfg->CCR);
	ixp2000_reg_write(IXP2000_SLOWPORT_WTC2, new_cfg->WTC);
	ixp2000_reg_write(IXP2000_SLOWPORT_RTC2, new_cfg->RTC);
	ixp2000_reg_write(IXP2000_SLOWPORT_PCR, new_cfg->PCR);
64
	ixp2000_reg_wrb(IXP2000_SLOWPORT_ADC, new_cfg->ADC);
L
Linus Torvalds 已提交
65 66 67 68 69 70 71 72
}

void ixp2000_release_slowport(struct slowport_cfg *old_cfg)
{
	ixp2000_reg_write(IXP2000_SLOWPORT_CCR, old_cfg->CCR);
	ixp2000_reg_write(IXP2000_SLOWPORT_WTC2, old_cfg->WTC);
	ixp2000_reg_write(IXP2000_SLOWPORT_RTC2, old_cfg->RTC);
	ixp2000_reg_write(IXP2000_SLOWPORT_PCR, old_cfg->PCR);
73
	ixp2000_reg_wrb(IXP2000_SLOWPORT_ADC, old_cfg->ADC);
L
Linus Torvalds 已提交
74 75 76 77 78 79 80 81 82 83 84

	spin_unlock_irqrestore(&ixp2000_slowport_lock, 
					ixp2000_slowport_irq_flags);
}

/*************************************************************************
 * Chip specific mappings shared by all IXP2000 systems
 *************************************************************************/
static struct map_desc ixp2000_io_desc[] __initdata = {
	{
		.virtual	= IXP2000_CAP_VIRT_BASE,
85
		.pfn		= __phys_to_pfn(IXP2000_CAP_PHYS_BASE),
L
Linus Torvalds 已提交
86
		.length		= IXP2000_CAP_SIZE,
87
		.type		= MT_IXP2000_DEVICE,
L
Linus Torvalds 已提交
88 89
	}, {
		.virtual	= IXP2000_INTCTL_VIRT_BASE,
90
		.pfn		= __phys_to_pfn(IXP2000_INTCTL_PHYS_BASE),
L
Linus Torvalds 已提交
91
		.length		= IXP2000_INTCTL_SIZE,
92
		.type		= MT_IXP2000_DEVICE,
L
Linus Torvalds 已提交
93 94
	}, {
		.virtual	= IXP2000_PCI_CREG_VIRT_BASE,
95
		.pfn		= __phys_to_pfn(IXP2000_PCI_CREG_PHYS_BASE),
L
Linus Torvalds 已提交
96
		.length		= IXP2000_PCI_CREG_SIZE,
97
		.type		= MT_IXP2000_DEVICE,
L
Linus Torvalds 已提交
98 99
	}, {
		.virtual	= IXP2000_PCI_CSR_VIRT_BASE,
100
		.pfn		= __phys_to_pfn(IXP2000_PCI_CSR_PHYS_BASE),
L
Linus Torvalds 已提交
101
		.length		= IXP2000_PCI_CSR_SIZE,
102
		.type		= MT_IXP2000_DEVICE,
103 104
	}, {
		.virtual	= IXP2000_MSF_VIRT_BASE,
105
		.pfn		= __phys_to_pfn(IXP2000_MSF_PHYS_BASE),
106
		.length		= IXP2000_MSF_SIZE,
107
		.type		= MT_IXP2000_DEVICE,
108 109 110 111 112 113 114 115 116 117
	}, {
		.virtual	= IXP2000_SCRATCH_RING_VIRT_BASE,
		.pfn		= __phys_to_pfn(IXP2000_SCRATCH_RING_PHYS_BASE),
		.length		= IXP2000_SCRATCH_RING_SIZE,
		.type		= MT_IXP2000_DEVICE,
	}, {
		.virtual	= IXP2000_SRAM0_VIRT_BASE,
		.pfn		= __phys_to_pfn(IXP2000_SRAM0_PHYS_BASE),
		.length		= IXP2000_SRAM0_SIZE,
		.type		= MT_IXP2000_DEVICE,
L
Linus Torvalds 已提交
118 119
	}, {
		.virtual	= IXP2000_PCI_IO_VIRT_BASE,
120
		.pfn		= __phys_to_pfn(IXP2000_PCI_IO_PHYS_BASE),
L
Linus Torvalds 已提交
121
		.length		= IXP2000_PCI_IO_SIZE,
122
		.type		= MT_IXP2000_DEVICE,
L
Linus Torvalds 已提交
123 124
	}, {
		.virtual	= IXP2000_PCI_CFG0_VIRT_BASE,
125
		.pfn		= __phys_to_pfn(IXP2000_PCI_CFG0_PHYS_BASE),
L
Linus Torvalds 已提交
126
		.length		= IXP2000_PCI_CFG0_SIZE,
127
		.type		= MT_IXP2000_DEVICE,
L
Linus Torvalds 已提交
128 129
	}, {
		.virtual	= IXP2000_PCI_CFG1_VIRT_BASE,
130
		.pfn		= __phys_to_pfn(IXP2000_PCI_CFG1_PHYS_BASE),
L
Linus Torvalds 已提交
131
		.length		= IXP2000_PCI_CFG1_SIZE,
132
		.type		= MT_IXP2000_DEVICE,
L
Linus Torvalds 已提交
133 134 135 136 137 138
	}
};

void __init ixp2000_map_io(void)
{
	/*
139 140 141 142 143
	 * On IXP2400 CPUs we need to use MT_IXP2000_DEVICE so that
	 * XCB=101 (to avoid triggering erratum #66), and given that
	 * this mode speeds up I/O accesses and we have write buffer
	 * flushes in the right places anyway, it doesn't hurt to use
	 * XCB=101 for all IXP2000s.
L
Linus Torvalds 已提交
144 145 146 147
	 */
	iotable_init(ixp2000_io_desc, ARRAY_SIZE(ixp2000_io_desc));

	/* Set slowport to 8-bit mode.  */
148
	ixp2000_reg_wrb(IXP2000_SLOWPORT_FRM, 1);
L
Linus Torvalds 已提交
149 150
}

151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169

/*************************************************************************
 * Serial port support for IXP2000
 *************************************************************************/
static struct plat_serial8250_port ixp2000_serial_port[] = {
	{
		.mapbase	= IXP2000_UART_PHYS_BASE,
		.membase	= (char *)(IXP2000_UART_VIRT_BASE + 3),
		.irq		= IRQ_IXP2000_UART,
		.flags		= UPF_BOOT_AUTOCONF | UPF_SKIP_TEST,
		.iotype		= UPIO_MEM,
		.regshift	= 2,
		.uartclk	= 50000000,
	},
	{ },
};

static struct resource ixp2000_uart_resource = {
	.start		= IXP2000_UART_PHYS_BASE,
170
	.end		= IXP2000_UART_PHYS_BASE + 0x1f,
171 172 173 174 175
	.flags		= IORESOURCE_MEM,
};

static struct platform_device ixp2000_serial_device = {
	.name		= "serial8250",
176
	.id		= PLAT8250_DEV_PLATFORM,
177 178 179 180 181 182 183 184 185 186 187 188 189
	.dev		= {
		.platform_data		= ixp2000_serial_port,
	},
	.num_resources	= 1,
	.resource	= &ixp2000_uart_resource,
};

void __init ixp2000_uart_init(void)
{
	platform_device_register(&ixp2000_serial_device);
}


L
Linus Torvalds 已提交
190 191 192 193 194 195
/*************************************************************************
 * Timer-tick functions for IXP2000
 *************************************************************************/
static unsigned ticks_per_jiffy;
static unsigned ticks_per_usec;
static unsigned next_jiffy_time;
196
static volatile unsigned long *missing_jiffy_timer_csr;
L
Linus Torvalds 已提交
197 198 199 200 201

unsigned long ixp2000_gettimeoffset (void)
{
 	unsigned long offset;

202
	offset = next_jiffy_time - *missing_jiffy_timer_csr;
L
Linus Torvalds 已提交
203 204 205 206

	return offset / ticks_per_usec;
}

207
static int ixp2000_timer_interrupt(int irq, void *dev_id)
L
Linus Torvalds 已提交
208 209 210 211
{
	write_seqlock(&xtime_lock);

	/* clear timer 1 */
212
	ixp2000_reg_wrb(IXP2000_T1_CLR, 1);
213

214 215
	while ((signed long)(next_jiffy_time - *missing_jiffy_timer_csr)
							>= ticks_per_jiffy) {
216
		timer_tick();
L
Linus Torvalds 已提交
217 218 219 220 221 222 223 224 225 226
		next_jiffy_time -= ticks_per_jiffy;
	}

	write_sequnlock(&xtime_lock);

	return IRQ_HANDLED;
}

static struct irqaction ixp2000_timer_irq = {
	.name		= "IXP2000 Timer Tick",
227
	.flags		= IRQF_DISABLED | IRQF_TIMER,
228
	.handler	= ixp2000_timer_interrupt,
L
Linus Torvalds 已提交
229 230 231 232 233 234 235
};

void __init ixp2000_init_time(unsigned long tick_rate)
{
	ticks_per_jiffy = (tick_rate + HZ/2) / HZ;
	ticks_per_usec = tick_rate / 1000000;

236 237 238 239
	/*
	 * We use timer 1 as our timer interrupt.
	 */
	ixp2000_reg_write(IXP2000_T1_CLR, 0);
L
Linus Torvalds 已提交
240 241 242 243
	ixp2000_reg_write(IXP2000_T1_CLD, ticks_per_jiffy - 1);
	ixp2000_reg_write(IXP2000_T1_CTL, (1 << 7));

	/*
244 245 246 247 248 249
	 * We use a second timer as a monotonic counter for tracking
	 * missed jiffies.  The IXP2000 has four timers, but if we're
	 * on an A-step IXP2800, timer 2 and 3 don't work, so on those
	 * chips we use timer 4.  Timer 4 is the only timer that can
	 * be used for the watchdog, so we use timer 2 if we're on a
	 * non-buggy chip.
L
Linus Torvalds 已提交
250
	 */
251 252 253 254 255
	if ((*IXP2000_PRODUCT_ID & 0x001ffef0) == 0x00000000) {
		printk(KERN_INFO "Enabling IXP2800 erratum #25 workaround\n");

		ixp2000_reg_write(IXP2000_T4_CLR, 0);
		ixp2000_reg_write(IXP2000_T4_CLD, -1);
256
		ixp2000_reg_wrb(IXP2000_T4_CTL, (1 << 7));
257 258 259 260
		missing_jiffy_timer_csr = IXP2000_T4_CSR;
	} else {
		ixp2000_reg_write(IXP2000_T2_CLR, 0);
		ixp2000_reg_write(IXP2000_T2_CLD, -1);
261
		ixp2000_reg_wrb(IXP2000_T2_CTL, (1 << 7));
262 263
		missing_jiffy_timer_csr = IXP2000_T2_CSR;
	}
L
Linus Torvalds 已提交
264 265 266 267 268 269 270 271 272 273
 	next_jiffy_time = 0xffffffff;

	/* register for interrupt */
	setup_irq(IRQ_IXP2000_TIMER1, &ixp2000_timer_irq);
}

/*************************************************************************
 * GPIO helpers
 *************************************************************************/
static unsigned long GPIO_IRQ_falling_edge;
274
static unsigned long GPIO_IRQ_rising_edge;
L
Linus Torvalds 已提交
275 276 277
static unsigned long GPIO_IRQ_level_low;
static unsigned long GPIO_IRQ_level_high;

278 279 280 281 282
static void update_gpio_int_csrs(void)
{
	ixp2000_reg_write(IXP2000_GPIO_FEDR, GPIO_IRQ_falling_edge);
	ixp2000_reg_write(IXP2000_GPIO_REDR, GPIO_IRQ_rising_edge);
	ixp2000_reg_write(IXP2000_GPIO_LSLR, GPIO_IRQ_level_low);
283
	ixp2000_reg_wrb(IXP2000_GPIO_LSHR, GPIO_IRQ_level_high);
284 285 286
}

void gpio_line_config(int line, int direction)
L
Linus Torvalds 已提交
287 288 289 290
{
	unsigned long flags;

	local_irq_save(flags);
291
	if (direction == GPIO_OUT) {
L
Linus Torvalds 已提交
292 293 294 295 296
		/* if it's an output, it ain't an interrupt anymore */
		GPIO_IRQ_falling_edge &= ~(1 << line);
		GPIO_IRQ_rising_edge &= ~(1 << line);
		GPIO_IRQ_level_low &= ~(1 << line);
		GPIO_IRQ_level_high &= ~(1 << line);
297 298
		update_gpio_int_csrs();

299
		ixp2000_reg_wrb(IXP2000_GPIO_PDSR, 1 << line);
300
	} else if (direction == GPIO_IN) {
301
		ixp2000_reg_wrb(IXP2000_GPIO_PDCR, 1 << line);
L
Linus Torvalds 已提交
302 303
	}
	local_irq_restore(flags);
304
}
305
EXPORT_SYMBOL(gpio_line_config);
L
Linus Torvalds 已提交
306 307 308 309 310


/*************************************************************************
 * IRQ handling IXP2000
 *************************************************************************/
311
static void ixp2000_GPIO_irq_handler(unsigned int irq, struct irq_desc *desc)
L
Linus Torvalds 已提交
312 313 314 315 316 317 318
{                               
	int i;
	unsigned long status = *IXP2000_GPIO_INST;
		   
	for (i = 0; i <= 7; i++) {
		if (status & (1<<i)) {
			desc = irq_desc + i + IRQ_IXP2000_GPIO0;
319
			desc_handle_irq(i + IRQ_IXP2000_GPIO0, desc);
L
Linus Torvalds 已提交
320 321 322 323
		}
	}
}

324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356
static int ixp2000_GPIO_irq_type(unsigned int irq, unsigned int type)
{
	int line = irq - IRQ_IXP2000_GPIO0;

	/*
	 * First, configure this GPIO line as an input.
	 */
	ixp2000_reg_write(IXP2000_GPIO_PDCR, 1 << line);

	/*
	 * Then, set the proper trigger type.
	 */
	if (type & IRQT_FALLING)
		GPIO_IRQ_falling_edge |= 1 << line;
	else
		GPIO_IRQ_falling_edge &= ~(1 << line);
	if (type & IRQT_RISING)
		GPIO_IRQ_rising_edge |= 1 << line;
	else
		GPIO_IRQ_rising_edge &= ~(1 << line);
	if (type & IRQT_LOW)
		GPIO_IRQ_level_low |= 1 << line;
	else
		GPIO_IRQ_level_low &= ~(1 << line);
	if (type & IRQT_HIGH)
		GPIO_IRQ_level_high |= 1 << line;
	else
		GPIO_IRQ_level_high &= ~(1 << line);
	update_gpio_int_csrs();

	return 0;
}

L
Linus Torvalds 已提交
357 358 359
static void ixp2000_GPIO_irq_mask_ack(unsigned int irq)
{
	ixp2000_reg_write(IXP2000_GPIO_INCR, (1 << (irq - IRQ_IXP2000_GPIO0)));
360 361 362

	ixp2000_reg_write(IXP2000_GPIO_EDSR, (1 << (irq - IRQ_IXP2000_GPIO0)));
	ixp2000_reg_write(IXP2000_GPIO_LDSR, (1 << (irq - IRQ_IXP2000_GPIO0)));
363
	ixp2000_reg_wrb(IXP2000_GPIO_INST, (1 << (irq - IRQ_IXP2000_GPIO0)));
L
Linus Torvalds 已提交
364 365 366 367
}

static void ixp2000_GPIO_irq_mask(unsigned int irq)
{
368
	ixp2000_reg_wrb(IXP2000_GPIO_INCR, (1 << (irq - IRQ_IXP2000_GPIO0)));
L
Linus Torvalds 已提交
369 370 371 372 373 374 375
}

static void ixp2000_GPIO_irq_unmask(unsigned int irq)
{
	ixp2000_reg_write(IXP2000_GPIO_INSR, (1 << (irq - IRQ_IXP2000_GPIO0)));
}

376
static struct irq_chip ixp2000_GPIO_irq_chip = {
377 378
	.ack		= ixp2000_GPIO_irq_mask_ack,
	.mask		= ixp2000_GPIO_irq_mask,
379
	.unmask		= ixp2000_GPIO_irq_unmask,
380
	.set_type	= ixp2000_GPIO_irq_type,
L
Linus Torvalds 已提交
381 382 383 384 385 386
};

static void ixp2000_pci_irq_mask(unsigned int irq)
{
	unsigned long temp = *IXP2000_PCI_XSCALE_INT_ENABLE;
	if (irq == IRQ_IXP2000_PCIA)
387
		ixp2000_reg_wrb(IXP2000_PCI_XSCALE_INT_ENABLE, (temp & ~(1 << 26)));
L
Linus Torvalds 已提交
388
	else if (irq == IRQ_IXP2000_PCIB)
389
		ixp2000_reg_wrb(IXP2000_PCI_XSCALE_INT_ENABLE, (temp & ~(1 << 27)));
L
Linus Torvalds 已提交
390 391 392 393 394 395 396 397 398 399 400
}

static void ixp2000_pci_irq_unmask(unsigned int irq)
{
	unsigned long temp = *IXP2000_PCI_XSCALE_INT_ENABLE;
	if (irq == IRQ_IXP2000_PCIA)
		ixp2000_reg_write(IXP2000_PCI_XSCALE_INT_ENABLE, (temp | (1 << 26)));
	else if (irq == IRQ_IXP2000_PCIB)
		ixp2000_reg_write(IXP2000_PCI_XSCALE_INT_ENABLE, (temp | (1 << 27)));
}

401 402 403
/*
 * Error interrupts. These are used extensively by the microengine drivers
 */
404
static void ixp2000_err_irq_handler(unsigned int irq, struct irq_desc *desc)
405 406 407 408 409 410 411
{
	int i;
	unsigned long status = *IXP2000_IRQ_ERR_STATUS;

	for(i = 31; i >= 0; i--) {
		if(status & (1 << i)) {
			desc = irq_desc + IRQ_IXP2000_DRAM0_MIN_ERR + i;
412
			desc_handle_irq(IRQ_IXP2000_DRAM0_MIN_ERR + i, desc);
413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428
		}
	}
}

static void ixp2000_err_irq_mask(unsigned int irq)
{
	ixp2000_reg_write(IXP2000_IRQ_ERR_ENABLE_CLR,
			(1 << (irq - IRQ_IXP2000_DRAM0_MIN_ERR)));
}

static void ixp2000_err_irq_unmask(unsigned int irq)
{
	ixp2000_reg_write(IXP2000_IRQ_ERR_ENABLE_SET,
			(1 << (irq - IRQ_IXP2000_DRAM0_MIN_ERR)));
}

429
static struct irq_chip ixp2000_err_irq_chip = {
430 431 432 433 434
	.ack	= ixp2000_err_irq_mask,
	.mask	= ixp2000_err_irq_mask,
	.unmask	= ixp2000_err_irq_unmask
};

435
static struct irq_chip ixp2000_pci_irq_chip = {
L
Linus Torvalds 已提交
436 437 438 439 440 441 442
	.ack	= ixp2000_pci_irq_mask,
	.mask	= ixp2000_pci_irq_mask,
	.unmask	= ixp2000_pci_irq_unmask
};

static void ixp2000_irq_mask(unsigned int irq)
{
443
	ixp2000_reg_wrb(IXP2000_IRQ_ENABLE_CLR, (1 << irq));
L
Linus Torvalds 已提交
444 445 446 447
}

static void ixp2000_irq_unmask(unsigned int irq)
{
448
	ixp2000_reg_write(IXP2000_IRQ_ENABLE_SET, (1 << irq));
L
Linus Torvalds 已提交
449 450
}

451
static struct irq_chip ixp2000_irq_chip = {
L
Linus Torvalds 已提交
452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474
	.ack	= ixp2000_irq_mask,
	.mask	= ixp2000_irq_mask,
	.unmask	= ixp2000_irq_unmask
};

void __init ixp2000_init_irq(void)
{
	int irq;

	/*
	 * Mask all sources
	 */
	ixp2000_reg_write(IXP2000_IRQ_ENABLE_CLR, 0xffffffff);
	ixp2000_reg_write(IXP2000_FIQ_ENABLE_CLR, 0xffffffff);

	/* clear all GPIO edge/level detects */
	ixp2000_reg_write(IXP2000_GPIO_REDR, 0);
	ixp2000_reg_write(IXP2000_GPIO_FEDR, 0);
	ixp2000_reg_write(IXP2000_GPIO_LSHR, 0);
	ixp2000_reg_write(IXP2000_GPIO_LSLR, 0);
	ixp2000_reg_write(IXP2000_GPIO_INCR, -1);

	/* clear PCI interrupt sources */
475
	ixp2000_reg_wrb(IXP2000_PCI_XSCALE_INT_ENABLE, 0);
L
Linus Torvalds 已提交
476 477 478 479 480 481 482 483 484

	/*
	 * Certain bits in the IRQ status register of the 
	 * IXP2000 are reserved. Instead of trying to map
	 * things non 1:1 from bit position to IRQ number,
	 * we mark the reserved IRQs as invalid. This makes
	 * our mask/unmask code much simpler.
	 */
	for (irq = IRQ_IXP2000_SOFT_INT; irq <= IRQ_IXP2000_THDB3; irq++) {
485
		if ((1 << irq) & IXP2000_VALID_IRQ_MASK) {
L
Linus Torvalds 已提交
486
			set_irq_chip(irq, &ixp2000_irq_chip);
487
			set_irq_handler(irq, handle_level_irq);
L
Linus Torvalds 已提交
488 489 490
			set_irq_flags(irq, IRQF_VALID);
		} else set_irq_flags(irq, 0);
	}
491

492 493 494 495
	for (irq = IRQ_IXP2000_DRAM0_MIN_ERR; irq <= IRQ_IXP2000_SP_INT; irq++) {
		if((1 << (irq - IRQ_IXP2000_DRAM0_MIN_ERR)) &
				IXP2000_VALID_ERR_IRQ_MASK) {
			set_irq_chip(irq, &ixp2000_err_irq_chip);
496
			set_irq_handler(irq, handle_level_irq);
497 498 499 500 501 502 503
			set_irq_flags(irq, IRQF_VALID);
		}
		else
			set_irq_flags(irq, 0);
	}
	set_irq_chained_handler(IRQ_IXP2000_ERRSUM, ixp2000_err_irq_handler);

L
Linus Torvalds 已提交
504 505
	for (irq = IRQ_IXP2000_GPIO0; irq <= IRQ_IXP2000_GPIO7; irq++) {
		set_irq_chip(irq, &ixp2000_GPIO_irq_chip);
506
		set_irq_handler(irq, handle_level_irq);
507
		set_irq_flags(irq, IRQF_VALID);
L
Linus Torvalds 已提交
508 509 510 511 512 513 514 515 516 517 518
	}
	set_irq_chained_handler(IRQ_IXP2000_GPIO, ixp2000_GPIO_irq_handler);

	/*
	 * Enable PCI irqs.  The actual PCI[AB] decoding is done in
	 * entry-macro.S, so we don't need a chained handler for the
	 * PCI interrupt source.
	 */
	ixp2000_reg_write(IXP2000_IRQ_ENABLE_SET, (1 << IRQ_IXP2000_PCI));
	for (irq = IRQ_IXP2000_PCIA; irq <= IRQ_IXP2000_PCIB; irq++) {
		set_irq_chip(irq, &ixp2000_pci_irq_chip);
519
		set_irq_handler(irq, handle_level_irq);
L
Linus Torvalds 已提交
520 521 522 523
		set_irq_flags(irq, IRQF_VALID);
	}
}