blob: 915eb70233433b607fb3850b6186a29fa4e3a869 [file] [log] [blame]
wdenkbf9e3b32004-02-12 00:47:09 +00001/*
wdenkbf9e3b32004-02-12 00:47:09 +00002 * (C) Copyright 2000-2004
3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 *
Alison Wang32dbaaf2012-03-26 21:49:04 +00005 * Copyright (C) 2004-2007, 2012 Freescale Semiconductor, Inc.
TsiChungLiewa1436a82007-08-16 13:20:50 -05006 * TsiChung Liew (Tsi-Chung.Liew@freescale.com)
7 *
wdenkbf9e3b32004-02-12 00:47:09 +00008 * See file CREDITS for list of people who contributed to this
9 * project.
10 *
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License as
13 * published by the Free Software Foundation; either version 2 of
14 * the License, or (at your option) any later version.
15 *
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
24 * MA 02111-1307 USA
25 */
26
27#include <common.h>
28#include <watchdog.h>
29#include <asm/processor.h>
TsiChungLiew83ec20b2007-08-15 19:21:21 -050030#include <asm/immap.h>
Alison Wang32dbaaf2012-03-26 21:49:04 +000031#include <asm/io.h>
Zachary P. Landaueacbd312006-01-26 17:35:56 -050032
wdenkbf9e3b32004-02-12 00:47:09 +000033#ifdef CONFIG_M5272
TsiChungLiew83ec20b2007-08-15 19:21:21 -050034int interrupt_init(void)
wdenkbf9e3b32004-02-12 00:47:09 +000035{
Alison Wang32dbaaf2012-03-26 21:49:04 +000036 intctrl_t *intp = (intctrl_t *) (MMAP_INTC);
wdenkbf9e3b32004-02-12 00:47:09 +000037
38 /* disable all external interrupts */
Alison Wang32dbaaf2012-03-26 21:49:04 +000039 out_be32(&intp->int_icr1, 0x88888888);
40 out_be32(&intp->int_icr2, 0x88888888);
41 out_be32(&intp->int_icr3, 0x88888888);
42 out_be32(&intp->int_icr4, 0x88888888);
43 out_be32(&intp->int_pitr, 0x00000000);
44
wdenkbf9e3b32004-02-12 00:47:09 +000045 /* initialize vector register */
Alison Wang32dbaaf2012-03-26 21:49:04 +000046 out_8(&intp->int_pivr, 0x40);
wdenkbf9e3b32004-02-12 00:47:09 +000047
TsiChungLiew83ec20b2007-08-15 19:21:21 -050048 enable_interrupts();
wdenkbf9e3b32004-02-12 00:47:09 +000049
50 return 0;
51}
TsiChungLiew83ec20b2007-08-15 19:21:21 -050052
53#if defined(CONFIG_MCFTMR)
54void dtimer_intr_setup(void)
55{
Alison Wang32dbaaf2012-03-26 21:49:04 +000056 intctrl_t *intp = (intctrl_t *) (CONFIG_SYS_INTR_BASE);
TsiChungLiew83ec20b2007-08-15 19:21:21 -050057
Alison Wang32dbaaf2012-03-26 21:49:04 +000058 clrbits_be32(&intp->int_icr1, INT_ICR1_TMR3MASK);
59 setbits_be32(&intp->int_icr1, CONFIG_SYS_TMRINTR_PRI);
TsiChungLiew83ec20b2007-08-15 19:21:21 -050060}
61#endif /* CONFIG_MCFTMR */
62#endif /* CONFIG_M5272 */
wdenkbf9e3b32004-02-12 00:47:09 +000063
TsiChung Liewbf9a5212009-06-12 11:29:00 +000064#if defined(CONFIG_M5208) || defined(CONFIG_M5282) || \
65 defined(CONFIG_M5271) || defined(CONFIG_M5275)
TsiChungLiew83ec20b2007-08-15 19:21:21 -050066int interrupt_init(void)
wdenkbf9e3b32004-02-12 00:47:09 +000067{
Alison Wang32dbaaf2012-03-26 21:49:04 +000068 int0_t *intp = (int0_t *) (CONFIG_SYS_INTR_BASE);
TsiChungLiew83ec20b2007-08-15 19:21:21 -050069
70 /* Make sure all interrupts are disabled */
TsiChung Liewbf9a5212009-06-12 11:29:00 +000071#if defined(CONFIG_M5208)
Alison Wang32dbaaf2012-03-26 21:49:04 +000072 out_be32(&intp->imrl0, 0xffffffff);
73 out_be32(&intp->imrh0, 0xffffffff);
TsiChung Liewbf9a5212009-06-12 11:29:00 +000074#else
Alison Wang32dbaaf2012-03-26 21:49:04 +000075 setbits_be32(&intp->imrl0, 0x1);
TsiChung Liewbf9a5212009-06-12 11:29:00 +000076#endif
TsiChungLiew83ec20b2007-08-15 19:21:21 -050077
78 enable_interrupts();
wdenkbf9e3b32004-02-12 00:47:09 +000079 return 0;
80}
TsiChungLiew83ec20b2007-08-15 19:21:21 -050081
82#if defined(CONFIG_MCFTMR)
83void dtimer_intr_setup(void)
84{
Alison Wang32dbaaf2012-03-26 21:49:04 +000085 int0_t *intp = (int0_t *) (CONFIG_SYS_INTR_BASE);
TsiChungLiew83ec20b2007-08-15 19:21:21 -050086
Alison Wang32dbaaf2012-03-26 21:49:04 +000087 out_8(&intp->icr0[CONFIG_SYS_TMRINTR_NO], CONFIG_SYS_TMRINTR_PRI);
88 clrbits_be32(&intp->imrl0, 0x00000001);
89 clrbits_be32(&intp->imrl0, CONFIG_SYS_TMRINTR_MASK);
TsiChungLiew83ec20b2007-08-15 19:21:21 -050090}
91#endif /* CONFIG_MCFTMR */
Matthew Fettkef71d9d92008-02-04 15:38:20 -060092#endif /* CONFIG_M5282 | CONFIG_M5271 | CONFIG_M5275 */
stroese8c725b92004-12-16 18:09:49 +000093
TsiChungLiewa1436a82007-08-16 13:20:50 -050094#if defined(CONFIG_M5249) || defined(CONFIG_M5253)
TsiChungLiew83ec20b2007-08-15 19:21:21 -050095int interrupt_init(void)
stroese8c725b92004-12-16 18:09:49 +000096{
TsiChungLiew83ec20b2007-08-15 19:21:21 -050097 enable_interrupts();
stroese8c725b92004-12-16 18:09:49 +000098
99 return 0;
100}
TsiChungLiew83ec20b2007-08-15 19:21:21 -0500101
102#if defined(CONFIG_MCFTMR)
103void dtimer_intr_setup(void)
104{
105 mbar_writeLong(MCFSIM_IMR, mbar_readLong(MCFSIM_IMR) & ~0x00000400);
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200106 mbar_writeByte(MCFSIM_TIMER2ICR, CONFIG_SYS_TMRINTR_PRI);
TsiChungLiew83ec20b2007-08-15 19:21:21 -0500107}
108#endif /* CONFIG_MCFTMR */
TsiChungLiewa1436a82007-08-16 13:20:50 -0500109#endif /* CONFIG_M5249 || CONFIG_M5253 */