]> git.karo-electronics.de Git - karo-tx-uboot.git/blob - cpu/mcf52x2/interrupts.c
ColdFire: MCF52x2 update
[karo-tx-uboot.git] / cpu / mcf52x2 / interrupts.c
1 /*
2  * (C) Copyright 2003 Josef Baumgartner <josef.baumgartner@telex.de>
3  *
4  * (C) Copyright 2000-2004
5  * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
6  *
7  * See file CREDITS for list of people who contributed to this
8  * project.
9  *
10  * This program is free software; you can redistribute it and/or
11  * modify it under the terms of the GNU General Public License as
12  * published by the Free Software Foundation; either version 2 of
13  * the License, or (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
23  * MA 02111-1307 USA
24  */
25
26 #include <common.h>
27 #include <watchdog.h>
28 #include <asm/processor.h>
29 #include <asm/immap.h>
30
31 #ifdef  CONFIG_M5272
32 int interrupt_init(void)
33 {
34         volatile intctrl_t *intp = (intctrl_t *) (MMAP_INTC);
35
36         /* disable all external interrupts */
37         intp->int_icr1 = 0x88888888;
38         intp->int_icr2 = 0x88888888;
39         intp->int_icr3 = 0x88888888;
40         intp->int_icr4 = 0x88888888;
41         intp->int_pitr = 0x00000000;
42         /* initialize vector register */
43         intp->int_pivr = 0x40;
44
45         enable_interrupts();
46
47         return 0;
48 }
49
50 #if defined(CONFIG_MCFTMR)
51 void dtimer_intr_setup(void)
52 {
53         volatile intctrl_t *intp = (intctrl_t *) (CFG_INTR_BASE);
54
55         intp->int_icr1 &= ~INT_ICR1_TMR3MASK;
56         intp->int_icr1 |= CFG_TMRINTR_PRI;
57 }
58 #endif                          /* CONFIG_MCFTMR */
59 #endif                          /* CONFIG_M5272 */
60
61 #if defined(CONFIG_M5282) || defined(CONFIG_M5271)
62 int interrupt_init(void)
63 {
64         volatile int0_t *intp = (int0_t *) (CFG_INTR_BASE);
65
66         /* Make sure all interrupts are disabled */
67         intp->imrl0 |= 0x1;
68
69         enable_interrupts();
70         return 0;
71 }
72
73 #if defined(CONFIG_MCFTMR)
74 void dtimer_intr_setup(void)
75 {
76         volatile int0_t *intp = (int0_t *) (CFG_INTR_BASE);
77
78         intp->icr0[CFG_TMRINTR_NO] = CFG_TMRINTR_PRI;
79         intp->imrl0 &= ~0xFFFFFFFE;
80         intp->imrl0 &= ~CFG_TMRINTR_MASK;
81 }
82 #endif                          /* CONFIG_MCFTMR */
83 #endif                          /* CONFIG_M5282 | CONFIG_M5271 */
84
85 #ifdef  CONFIG_M5249
86 int interrupt_init(void)
87 {
88         enable_interrupts();
89
90         return 0;
91 }
92
93 #if defined(CONFIG_MCFTMR)
94 void dtimer_intr_setup(void)
95 {
96         mbar_writeLong(MCFSIM_IMR, mbar_readLong(MCFSIM_IMR) & ~0x00000400);
97         mbar_writeByte(MCFSIM_TIMER2ICR,
98                        MCFSIM_ICR_AUTOVEC | MCFSIM_ICR_LEVEL7 |
99                        MCFSIM_ICR_PRI3);
100 }
101 #endif                          /* CONFIG_MCFTMR */
102 #endif                          /* CONFIG_M5249 */