blob: 915eb70233433b607fb3850b6186a29fa4e3a869 [file] [log] [blame]
wdenke65527f2004-02-12 00:47:09 +00001/*
wdenke65527f2004-02-12 00:47:09 +00002 * (C) Copyright 2000-2004
3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 *
Alison Wang95bed1f2012-03-26 21:49:04 +00005 * Copyright (C) 2004-2007, 2012 Freescale Semiconductor, Inc.
TsiChungLiew34674692007-08-16 13:20:50 -05006 * TsiChung Liew (Tsi-Chung.Liew@freescale.com)
7 *
wdenke65527f2004-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>
TsiChungLiew8cd73be2007-08-15 19:21:21 -050030#include <asm/immap.h>
Alison Wang95bed1f2012-03-26 21:49:04 +000031#include <asm/io.h>
Zachary P. Landau0bba8622006-01-26 17:35:56 -050032
wdenke65527f2004-02-12 00:47:09 +000033#ifdef CONFIG_M5272
TsiChungLiew8cd73be2007-08-15 19:21:21 -050034int interrupt_init(void)
wdenke65527f2004-02-12 00:47:09 +000035{
Alison Wang95bed1f2012-03-26 21:49:04 +000036 intctrl_t *intp = (intctrl_t *) (MMAP_INTC);
wdenke65527f2004-02-12 00:47:09 +000037
TsiChungLiew8cd73be2007-08-15 19:21:21 -050038 /* disable all external interrupts */
Alison Wang95bed1f2012-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
TsiChungLiew8cd73be2007-08-15 19:21:21 -050045 /* initialize vector register */
Alison Wang95bed1f2012-03-26 21:49:04 +000046 out_8(&intp->int_pivr, 0x40);
wdenke65527f2004-02-12 00:47:09 +000047
TsiChungLiew8cd73be2007-08-15 19:21:21 -050048 enable_interrupts();
wdenke65527f2004-02-12 00:47:09 +000049
TsiChungLiew8cd73be2007-08-15 19:21:21 -050050 return 0;
wdenke65527f2004-02-12 00:47:09 +000051}
52
TsiChungLiew8cd73be2007-08-15 19:21:21 -050053#if defined(CONFIG_MCFTMR)
54void dtimer_intr_setup(void)
wdenke65527f2004-02-12 00:47:09 +000055{
Alison Wang95bed1f2012-03-26 21:49:04 +000056 intctrl_t *intp = (intctrl_t *) (CONFIG_SYS_INTR_BASE);
wdenke65527f2004-02-12 00:47:09 +000057
Alison Wang95bed1f2012-03-26 21:49:04 +000058 clrbits_be32(&intp->int_icr1, INT_ICR1_TMR3MASK);
59 setbits_be32(&intp->int_icr1, CONFIG_SYS_TMRINTR_PRI);
wdenke65527f2004-02-12 00:47:09 +000060}
TsiChungLiew8cd73be2007-08-15 19:21:21 -050061#endif /* CONFIG_MCFTMR */
62#endif /* CONFIG_M5272 */
wdenke65527f2004-02-12 00:47:09 +000063
TsiChung Liewb354aef2009-06-12 11:29:00 +000064#if defined(CONFIG_M5208) || defined(CONFIG_M5282) || \
65 defined(CONFIG_M5271) || defined(CONFIG_M5275)
TsiChungLiew8cd73be2007-08-15 19:21:21 -050066int interrupt_init(void)
wdenke65527f2004-02-12 00:47:09 +000067{
Alison Wang95bed1f2012-03-26 21:49:04 +000068 int0_t *intp = (int0_t *) (CONFIG_SYS_INTR_BASE);
wdenke65527f2004-02-12 00:47:09 +000069
TsiChungLiew8cd73be2007-08-15 19:21:21 -050070 /* Make sure all interrupts are disabled */
TsiChung Liewb354aef2009-06-12 11:29:00 +000071#if defined(CONFIG_M5208)
Alison Wang95bed1f2012-03-26 21:49:04 +000072 out_be32(&intp->imrl0, 0xffffffff);
73 out_be32(&intp->imrh0, 0xffffffff);
TsiChung Liewb354aef2009-06-12 11:29:00 +000074#else
Alison Wang95bed1f2012-03-26 21:49:04 +000075 setbits_be32(&intp->imrl0, 0x1);
TsiChung Liewb354aef2009-06-12 11:29:00 +000076#endif
wdenke65527f2004-02-12 00:47:09 +000077
TsiChungLiew8cd73be2007-08-15 19:21:21 -050078 enable_interrupts();
79 return 0;
wdenke65527f2004-02-12 00:47:09 +000080}
81
TsiChungLiew8cd73be2007-08-15 19:21:21 -050082#if defined(CONFIG_MCFTMR)
83void dtimer_intr_setup(void)
wdenke65527f2004-02-12 00:47:09 +000084{
Alison Wang95bed1f2012-03-26 21:49:04 +000085 int0_t *intp = (int0_t *) (CONFIG_SYS_INTR_BASE);
wdenke65527f2004-02-12 00:47:09 +000086
Alison Wang95bed1f2012-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);
wdenke65527f2004-02-12 00:47:09 +000090}
TsiChungLiew8cd73be2007-08-15 19:21:21 -050091#endif /* CONFIG_MCFTMR */
Matthew Fettke761e2e92008-02-04 15:38:20 -060092#endif /* CONFIG_M5282 | CONFIG_M5271 | CONFIG_M5275 */
wdenke65527f2004-02-12 00:47:09 +000093
TsiChungLiew34674692007-08-16 13:20:50 -050094#if defined(CONFIG_M5249) || defined(CONFIG_M5253)
TsiChungLiew8cd73be2007-08-15 19:21:21 -050095int interrupt_init(void)
wdenke65527f2004-02-12 00:47:09 +000096{
TsiChungLiew8cd73be2007-08-15 19:21:21 -050097 enable_interrupts();
wdenke65527f2004-02-12 00:47:09 +000098
99 return 0;
100}
wdenke65527f2004-02-12 00:47:09 +0000101
TsiChungLiew8cd73be2007-08-15 19:21:21 -0500102#if defined(CONFIG_MCFTMR)
103void dtimer_intr_setup(void)
wdenke65527f2004-02-12 00:47:09 +0000104{
TsiChungLiew8cd73be2007-08-15 19:21:21 -0500105 mbar_writeLong(MCFSIM_IMR, mbar_readLong(MCFSIM_IMR) & ~0x00000400);
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200106 mbar_writeByte(MCFSIM_TIMER2ICR, CONFIG_SYS_TMRINTR_PRI);
stroese53395a22004-12-16 18:09:49 +0000107}
TsiChungLiew8cd73be2007-08-15 19:21:21 -0500108#endif /* CONFIG_MCFTMR */
TsiChungLiew34674692007-08-16 13:20:50 -0500109#endif /* CONFIG_M5249 || CONFIG_M5253 */