blob: d9a35bb8c973ba73d0c819c1234d28129ac47b29 [file] [log] [blame]
wdenkbf9e3b32004-02-12 00:47:09 +00001/*
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>
TsiChungLiew83ec20b2007-08-15 19:21:21 -050029#include <asm/immap.h>
Zachary P. Landaueacbd312006-01-26 17:35:56 -050030
wdenkbf9e3b32004-02-12 00:47:09 +000031#ifdef CONFIG_M5272
TsiChungLiew83ec20b2007-08-15 19:21:21 -050032int interrupt_init(void)
wdenkbf9e3b32004-02-12 00:47:09 +000033{
TsiChungLiew83ec20b2007-08-15 19:21:21 -050034 volatile intctrl_t *intp = (intctrl_t *) (MMAP_INTC);
wdenkbf9e3b32004-02-12 00:47:09 +000035
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
TsiChungLiew83ec20b2007-08-15 19:21:21 -050045 enable_interrupts();
wdenkbf9e3b32004-02-12 00:47:09 +000046
47 return 0;
48}
TsiChungLiew83ec20b2007-08-15 19:21:21 -050049
50#if defined(CONFIG_MCFTMR)
51void 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 */
wdenkbf9e3b32004-02-12 00:47:09 +000060
Zachary P. Landaueacbd312006-01-26 17:35:56 -050061#if defined(CONFIG_M5282) || defined(CONFIG_M5271)
TsiChungLiew83ec20b2007-08-15 19:21:21 -050062int interrupt_init(void)
wdenkbf9e3b32004-02-12 00:47:09 +000063{
TsiChungLiew83ec20b2007-08-15 19:21:21 -050064 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();
wdenkbf9e3b32004-02-12 00:47:09 +000070 return 0;
71}
TsiChungLiew83ec20b2007-08-15 19:21:21 -050072
73#if defined(CONFIG_MCFTMR)
74void 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 */
stroese8c725b92004-12-16 18:09:49 +000084
85#ifdef CONFIG_M5249
TsiChungLiew83ec20b2007-08-15 19:21:21 -050086int interrupt_init(void)
stroese8c725b92004-12-16 18:09:49 +000087{
TsiChungLiew83ec20b2007-08-15 19:21:21 -050088 enable_interrupts();
stroese8c725b92004-12-16 18:09:49 +000089
90 return 0;
91}
TsiChungLiew83ec20b2007-08-15 19:21:21 -050092
93#if defined(CONFIG_MCFTMR)
94void 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 */