2018-05-06 21:58:06 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2007-08-17 00:23:50 +00:00
|
|
|
/*
|
|
|
|
*
|
2012-03-26 21:49:06 +00:00
|
|
|
* Copyright (C) 2004-2007, 2012 Freescale Semiconductor, Inc.
|
2007-08-17 00:23:50 +00:00
|
|
|
* TsiChung Liew (Tsi-Chung.Liew@freescale.com)
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* CPU specific interrupt routine */
|
|
|
|
#include <common.h>
|
2019-11-14 19:57:41 +00:00
|
|
|
#include <irq_func.h>
|
2007-08-17 00:23:50 +00:00
|
|
|
#include <asm/immap.h>
|
2012-03-26 21:49:06 +00:00
|
|
|
#include <asm/io.h>
|
2007-08-17 00:23:50 +00:00
|
|
|
|
|
|
|
int interrupt_init(void)
|
|
|
|
{
|
2012-03-26 21:49:06 +00:00
|
|
|
int0_t *intp = (int0_t *) (CONFIG_SYS_INTR_BASE);
|
2007-08-17 00:23:50 +00:00
|
|
|
|
|
|
|
/* Make sure all interrupts are disabled */
|
2012-03-26 21:49:06 +00:00
|
|
|
setbits_be32(&intp->imrl0, 0x1);
|
2007-08-17 00:23:50 +00:00
|
|
|
|
|
|
|
enable_interrupts();
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#if defined(CONFIG_MCFTMR)
|
|
|
|
void dtimer_intr_setup(void)
|
|
|
|
{
|
2012-03-26 21:49:06 +00:00
|
|
|
int0_t *intp = (int0_t *) (CONFIG_SYS_INTR_BASE);
|
2007-08-17 00:23:50 +00:00
|
|
|
|
2012-03-26 21:49:06 +00:00
|
|
|
out_8(&intp->icr0[CONFIG_SYS_TMRINTR_NO], CONFIG_SYS_TMRINTR_PRI);
|
|
|
|
clrbits_be32(&intp->imrl0, INTC_IPRL_INT0);
|
|
|
|
clrbits_be32(&intp->imrl0, CONFIG_SYS_TMRINTR_MASK);
|
2007-08-17 00:23:50 +00:00
|
|
|
}
|
|
|
|
#endif
|