summaryrefslogtreecommitdiff
path: root/arch/m68k/cpu/mcf547x_8x/interrupts.c
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2021-05-14 21:34:10 -0400
committerTom Rini <trini@konsulko.com>2021-07-07 19:52:22 -0400
commit9b7993bba939220dba945b2dbf979d2c3e68123d (patch)
tree2744f0644fdfc06c3c81d7665c3005d95b040e0f /arch/m68k/cpu/mcf547x_8x/interrupts.c
parenteb83d10b4261a4d54e8d132e82933ce98dafb23d (diff)
m68k: Remove M5475x boards
These board has not been converted to CONFIG_DM_PCI by the deadline. Remove them. As this is the last of the mcf547x_8x family of boards, remove that support as well. Cc: TsiChung Liew <Tsi-Chung.Liew@nxp.com> Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'arch/m68k/cpu/mcf547x_8x/interrupts.c')
-rw-r--r--arch/m68k/cpu/mcf547x_8x/interrupts.c35
1 files changed, 0 insertions, 35 deletions
diff --git a/arch/m68k/cpu/mcf547x_8x/interrupts.c b/arch/m68k/cpu/mcf547x_8x/interrupts.c
deleted file mode 100644
index 703090ddc25..00000000000
--- a/arch/m68k/cpu/mcf547x_8x/interrupts.c
+++ /dev/null
@@ -1,35 +0,0 @@
-// SPDX-License-Identifier: GPL-2.0+
-/*
- *
- * Copyright (C) 2004-2007, 2012 Freescale Semiconductor, Inc.
- * TsiChung Liew (Tsi-Chung.Liew@freescale.com)
- */
-
-/* CPU specific interrupt routine */
-#include <common.h>
-#include <irq_func.h>
-#include <asm/immap.h>
-#include <asm/io.h>
-
-int interrupt_init(void)
-{
- int0_t *intp = (int0_t *) (CONFIG_SYS_INTR_BASE);
-
- /* Make sure all interrupts are disabled */
- setbits_be32(&intp->imrh0, 0xffffffff);
- setbits_be32(&intp->imrl0, 0xffffffff);
-
- enable_interrupts();
-
- return 0;
-}
-
-#if defined(CONFIG_SLTTMR)
-void dtimer_intr_setup(void)
-{
- int0_t *intp = (int0_t *) (CONFIG_SYS_INTR_BASE);
-
- out_8(&intp->icr0[CONFIG_SYS_TMRINTR_NO], CONFIG_SYS_TMRINTR_PRI);
- clrbits_be32(&intp->imrh0, CONFIG_SYS_TMRINTR_MASK);
-}
-#endif