blob: d9a35bb8c973ba73d0c819c1234d28129ac47b29 [file] [log] [blame]
wdenke65527f2004-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>
TsiChungLiew8cd73be2007-08-15 19:21:21 -050029#include <asm/immap.h>
Zachary P. Landau0bba8622006-01-26 17:35:56 -050030
wdenke65527f2004-02-12 00:47:09 +000031#ifdef CONFIG_M5272
TsiChungLiew8cd73be2007-08-15 19:21:21 -050032int interrupt_init(void)
wdenke65527f2004-02-12 00:47:09 +000033{
TsiChungLiew8cd73be2007-08-15 19:21:21 -050034 volatile intctrl_t *intp = (intctrl_t *) (MMAP_INTC);
wdenke65527f2004-02-12 00:47:09 +000035
TsiChungLiew8cd73be2007-08-15 19:21:21 -050036 /* 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;
wdenke65527f2004-02-12 00:47:09 +000044
TsiChungLiew8cd73be2007-08-15 19:21:21 -050045 enable_interrupts();
wdenke65527f2004-02-12 00:47:09 +000046
TsiChungLiew8cd73be2007-08-15 19:21:21 -050047 return 0;
wdenke65527f2004-02-12 00:47:09 +000048}
49
TsiChungLiew8cd73be2007-08-15 19:21:21 -050050#if defined(CONFIG_MCFTMR)
51void dtimer_intr_setup(void)
wdenke65527f2004-02-12 00:47:09 +000052{
TsiChungLiew8cd73be2007-08-15 19:21:21 -050053 volatile intctrl_t *intp = (intctrl_t *) (CFG_INTR_BASE);
wdenke65527f2004-02-12 00:47:09 +000054
TsiChungLiew8cd73be2007-08-15 19:21:21 -050055 intp->int_icr1 &= ~INT_ICR1_TMR3MASK;
56 intp->int_icr1 |= CFG_TMRINTR_PRI;
wdenke65527f2004-02-12 00:47:09 +000057}
TsiChungLiew8cd73be2007-08-15 19:21:21 -050058#endif /* CONFIG_MCFTMR */
59#endif /* CONFIG_M5272 */
wdenke65527f2004-02-12 00:47:09 +000060
TsiChungLiew8cd73be2007-08-15 19:21:21 -050061#if defined(CONFIG_M5282) || defined(CONFIG_M5271)
62int interrupt_init(void)
wdenke65527f2004-02-12 00:47:09 +000063{
TsiChungLiew8cd73be2007-08-15 19:21:21 -050064 volatile int0_t *intp = (int0_t *) (CFG_INTR_BASE);
wdenke65527f2004-02-12 00:47:09 +000065
TsiChungLiew8cd73be2007-08-15 19:21:21 -050066 /* Make sure all interrupts are disabled */
67 intp->imrl0 |= 0x1;
wdenke65527f2004-02-12 00:47:09 +000068
TsiChungLiew8cd73be2007-08-15 19:21:21 -050069 enable_interrupts();
70 return 0;
wdenke65527f2004-02-12 00:47:09 +000071}
72
TsiChungLiew8cd73be2007-08-15 19:21:21 -050073#if defined(CONFIG_MCFTMR)
74void dtimer_intr_setup(void)
wdenke65527f2004-02-12 00:47:09 +000075{
TsiChungLiew8cd73be2007-08-15 19:21:21 -050076 volatile int0_t *intp = (int0_t *) (CFG_INTR_BASE);
wdenke65527f2004-02-12 00:47:09 +000077
TsiChungLiew8cd73be2007-08-15 19:21:21 -050078 intp->icr0[CFG_TMRINTR_NO] = CFG_TMRINTR_PRI;
79 intp->imrl0 &= ~0xFFFFFFFE;
80 intp->imrl0 &= ~CFG_TMRINTR_MASK;
wdenke65527f2004-02-12 00:47:09 +000081}
TsiChungLiew8cd73be2007-08-15 19:21:21 -050082#endif /* CONFIG_MCFTMR */
83#endif /* CONFIG_M5282 | CONFIG_M5271 */
wdenke65527f2004-02-12 00:47:09 +000084
TsiChungLiew8cd73be2007-08-15 19:21:21 -050085#ifdef CONFIG_M5249
86int interrupt_init(void)
wdenke65527f2004-02-12 00:47:09 +000087{
TsiChungLiew8cd73be2007-08-15 19:21:21 -050088 enable_interrupts();
wdenke65527f2004-02-12 00:47:09 +000089
90 return 0;
91}
wdenke65527f2004-02-12 00:47:09 +000092
TsiChungLiew8cd73be2007-08-15 19:21:21 -050093#if defined(CONFIG_MCFTMR)
94void dtimer_intr_setup(void)
wdenke65527f2004-02-12 00:47:09 +000095{
TsiChungLiew8cd73be2007-08-15 19:21:21 -050096 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);
stroese53395a22004-12-16 18:09:49 +0000100}
TsiChungLiew8cd73be2007-08-15 19:21:21 -0500101#endif /* CONFIG_MCFTMR */
102#endif /* CONFIG_M5249 */