MINI2440: Updated early nand loader
[u-boot-openmoko/mini2440.git] / cpu / mpc824x / interrupts.c
blob4359ecc05e97e6c90c8463b74de316956338c4a3
1 /*
2 * (C) Copyright 2000-2002
3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 * Rob Taylor, Flying Pig Systems. robt@flyingpig.com
6 * See file CREDITS for list of people who contributed to this
7 * project.
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License as
11 * published by the Free Software Foundation; either version 2 of
12 * the License, or (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
22 * MA 02111-1307 USA
25 #include <common.h>
26 #include <mpc824x.h>
27 #include <asm/processor.h>
28 #include <asm/pci_io.h>
29 #include <commproc.h>
30 #include "drivers/epic.h"
32 int interrupt_init_cpu (unsigned *decrementer_count)
34 *decrementer_count = (get_bus_freq (0) / 4) / CFG_HZ;
37 * It's all broken at the moment and I currently don't need
38 * interrupts. If you want to fix it, have a look at the epic
39 * drivers in dink32 v12. They do everthing and Motorola said
40 * I could use the dink source in this project as long as
41 * copyright notices remain intact.
44 epicInit (EPIC_DIRECT_IRQ, 0);
45 /* EPIC won't generate INT unless Current Task Pri < 15 */
46 epicCurTaskPrioSet(0);
48 return (0);
51 /****************************************************************************/
54 * Handle external interrupts
56 void external_interrupt (struct pt_regs *regs)
58 register unsigned long temp;
60 pci_readl (CFG_EUMB_ADDR + EPIC_PROC_INT_ACK_REG, temp);
61 sync (); /* i'm not convinced this is needed, but dink source has it */
62 temp &= 0xff; /*get vector */
64 /*TODO: handle them -... */
65 epicEOI ();
68 /****************************************************************************/
71 * blank int handlers.
74 void
75 irq_install_handler (int vec, interrupt_handler_t * handler, void *arg)
79 void irq_free_handler (int vec)
84 /*TODO: some handlers for winbond and 87308 interrupts
85 and what about generic pci inteerupts?
86 vga?
89 void timer_interrupt_cpu (struct pt_regs *regs)
91 /* nothing to do here */
92 return;