[BACK]Return to via.c CVS log [TXT][DIR] Up to [Development] / linux-2.4-xfs / arch / mips / cobalt

File: [Development] / linux-2.4-xfs / arch / mips / cobalt / via.c (download)

Revision 1.1, Wed Dec 31 00:54:49 2003 UTC (13 years, 10 months ago) by cattelan
Branch: MAIN
CVS Tags: HEAD

Initial Import 2.4.24pre2

/*
 * VIA chipset irq handling
 *
 * This file is subject to the terms and conditions of the GNU General Public
 * License.  See the file "COPYING" in the main directory of this archive
 * for more details.
 *
 * Copyright (C) 1996, 1997 by Ralf Baechle
 * Copyright (C) 2001, 2002, 2003 by Liam Davies (ldavies@agile.tv)
 *
 */

#include <linux/irq.h>
#include <linux/kernel.h>

#include <asm/ptrace.h>
#include <asm/io.h>
#include <asm/gt64120/gt64120.h>
#include <asm/cobalt/cobalt.h>

asmlinkage void via_irq(struct pt_regs *regs)
{
	char mstat, sstat;

	/* Read Master Status */
	outb(0x0C, 0x20);
	mstat = inb(0x20);

	if (mstat < 0) {
		mstat &= 0x7f;
		if (mstat != 2) {
			do_IRQ(mstat, regs);
			outb(mstat | 0x20, 0x20);
		} else {
			sstat = inb(0xA0);

			/* Slave interrupt */
			outb(0x0C, 0xA0);
			sstat = inb(0xA0);

			if (sstat < 0) {
				do_IRQ((sstat + 8) & 0x7f, regs);
				outb(0x22, 0x20);
				outb((sstat & 0x7f) | 0x20, 0xA0);
			} else {
				printk("Spurious slave interrupt...\n");
			}
		}
	} else
		printk("Spurious master interrupt...");
}

asmlinkage void galileo_irq(struct pt_regs *regs)
{
	unsigned long irq_src;

	irq_src = GALILEO_INL(GT_INTRCAUSE_OFS);

	/* Check for timer irq ... */
	if (irq_src & GALILEO_T0EXP) {
		/* Clear the int line */
		GALILEO_OUTL(0, GT_INTRCAUSE_OFS);
		do_IRQ(COBALT_TIMER_IRQ, regs);
	} else
		printk("Spurious Galileo interrupt...\n");
}