2 * (C) Copyright 2000-2002
3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
5 * (C) Copyright 2002 (440 port)
6 * Scott McNutt, Artesyn Communication Producs, smcnutt@artsyncp.com
8 * (C) Copyright 2003 (440GX port)
9 * Travis B. Sawyer, Sandburst Corporation, tsawyer@sandburst.com
11 * (C) Copyright 2008 (PPC440X05 port for Virtex 5 FX)
12 * Ricardo Ribalda-Universidad Autonoma de Madrid-ricardo.ribalda@uam.es
13 * Work supported by Qtechnology (htpp://qtec.com)
15 * See file CREDITS for list of people who contributed to this
18 * This program is free software; you can redistribute it and/or
19 * modify it under the terms of the GNU General Public License as
20 * published by the Free Software Foundation; either version 2 of
21 * the License, or (at your option) any later version.
23 * This program is distributed in the hope that it will be useful,
24 * but WITHOUT ANY WARRANTY; without even the implied warranty of
25 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
26 * GNU General Public License for more details.
28 * You should have received a copy of the GNU General Public License
29 * along with this program; if not, write to the Free Software
30 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
37 #include <asm/processor.h>
38 #include <asm/interrupt.h>
40 #include <ppc_asm.tmpl>
43 DECLARE_GLOBAL_DATA_PTR;
46 * CPM interrupt vector functions.
49 interrupt_handler_t *handler;
53 static struct irq_action irq_vecs[IRQ_MAX];
55 #if defined(CONFIG_440)
57 /* SPRN changed in 440 */
58 static __inline__ void set_evpr(unsigned long val)
60 asm volatile("mtspr 0x03f,%0" : : "r" (val));
63 #else /* !defined(CONFIG_440) */
65 static __inline__ void set_pit(unsigned long val)
67 asm volatile("mtpit %0" : : "r" (val));
71 static __inline__ void set_tcr(unsigned long val)
73 asm volatile("mttcr %0" : : "r" (val));
77 static __inline__ void set_evpr(unsigned long val)
79 asm volatile("mtevpr %0" : : "r" (val));
81 #endif /* defined(CONFIG_440 */
83 int interrupt_init_cpu (unsigned *decrementer_count)
88 /* decrementer is automatically reloaded */
89 *decrementer_count = 0;
92 * Mark all irqs as free
94 for (vec = 0; vec < IRQ_MAX; vec++) {
95 irq_vecs[vec].handler = NULL;
96 irq_vecs[vec].arg = NULL;
97 irq_vecs[vec].count = 0;
104 #if defined(CONFIG_440)
105 val = mfspr( SPRN_TCR );
106 val &= (~0x04400000); /* clear DIS & ARE */
107 mtspr( SPRN_TCR, val );
108 mtspr( SPRN_DEC, 0 ); /* Prevent exception after TSR clear*/
109 mtspr( SPRN_DECAR, 0 ); /* clear reload */
110 mtspr( SPRN_TSR, 0x08000000 ); /* clear DEC status */
111 val = gd->bd->bi_intfreq/1000; /* 1 msec */
112 mtspr( SPRN_DECAR, val ); /* Set auto-reload value */
113 mtspr( SPRN_DEC, val ); /* Set inital val */
115 set_pit(gd->bd->bi_intfreq / 1000);
117 #endif /* CONFIG_4xx */
129 val = mfspr(SPRN_TCR);
131 mtspr(SPRN_TCR, val);
136 set_evpr(0x00000000);
139 * Call uic or xilinx_irq pic_enable
146 void timer_interrupt_cpu(struct pt_regs *regs)
148 /* nothing to do here */
152 void interrupt_run_handler(int vec)
154 irq_vecs[vec].count++;
156 if (irq_vecs[vec].handler != NULL) {
158 (*irq_vecs[vec].handler) (irq_vecs[vec].arg);
160 pic_irq_disable(vec);
161 printf("Masking bogus interrupt vector %d\n", vec);
168 void irq_install_handler(int vec, interrupt_handler_t * handler, void *arg)
171 * Print warning when replacing with a different irq vector
173 if ((irq_vecs[vec].handler != NULL) && (irq_vecs[vec].handler != handler)) {
174 printf("Interrupt vector %d: handler 0x%x replacing 0x%x\n",
175 vec, (uint) handler, (uint) irq_vecs[vec].handler);
177 irq_vecs[vec].handler = handler;
178 irq_vecs[vec].arg = arg;
184 void irq_free_handler(int vec)
186 debug("Free interrupt for vector %d ==> %p\n",
187 vec, irq_vecs[vec].handler);
189 pic_irq_disable(vec);
191 irq_vecs[vec].handler = NULL;
192 irq_vecs[vec].arg = NULL;
196 #if defined(CONFIG_CMD_IRQ)
197 int do_irqinfo(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
201 printf ("Interrupt-Information:\n");
202 printf ("Nr Routine Arg Count\n");
204 for (vec = 0; vec < IRQ_MAX; vec++) {
205 if (irq_vecs[vec].handler != NULL) {
206 printf ("%02d %08lx %08lx %d\n",
208 (ulong)irq_vecs[vec].handler,
209 (ulong)irq_vecs[vec].arg,
210 irq_vecs[vec].count);