1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * (C) Copyright 2014  Angelo Dureghello <angelo@sysam.it>
4  *
5  */
6 
7 #include <common.h>
8 #include <asm/immap.h>
9 #include <asm/io.h>
10 
11 #ifdef CONFIG_M5307
12 int interrupt_init(void)
13 {
14 	enable_interrupts();
15 
16 	return 0;
17 }
18 
19 void 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
29