blob: cd85c69f129a1e991a7962f8a75bf5c9fdf16686 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
angelo@sysam.itbb4ba2c2015-02-12 01:40:00 +01002/*
3 * (C) Copyright 2014 Angelo Dureghello <angelo@sysam.it>
4 *
angelo@sysam.itbb4ba2c2015-02-12 01:40:00 +01005 */
6
7#include <common.h>
8#include <asm/immap.h>
9#include <asm/io.h>
10
11#ifdef CONFIG_M5307
12int interrupt_init(void)
13{
14 enable_interrupts();
15
16 return 0;
17}
18
19void dtimer_intr_setup(void)
20{
21 intctrl_t *icr = (intctrl_t *)(MMAP_INTC);
22
23 /* clearing TIMER2 mask, so enabling the related interrupt */
24 out_be32(&icr->imr, in_be32(&icr->imr) & ~0x00000400);
25 /* set TIMER2 interrupt priority */
26 out_8(&icr->icr2, CONFIG_SYS_TMRINTR_PRI);
27}
28#endif