treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 152
[linux-block.git] / arch / mips / loongson64 / common / irq.c
CommitLineData
2874c5fd 1// SPDX-License-Identifier: GPL-2.0-or-later
85749d24 2/*
0bb383a2 3 * Copyright (C) 2007 Lemote Inc. & Institute of Computing Technology
85749d24 4 * Author: Fuxin Zhang, zhangfx@lemote.com
85749d24
WZ
5 */
6#include <linux/delay.h>
7#include <linux/interrupt.h>
8
9#include <loongson.h>
10/*
11 * the first level int-handler will jump here if it is a bonito irq
12 */
13void bonito_irqdispatch(void)
14{
15 u32 int_status;
16 int i;
17
18 /* workaround the IO dma problem: let cpu looping to allow DMA finish */
e2fee572 19 int_status = LOONGSON_INTISR;
f5c1ca77
SK
20 while (int_status & (1 << 10)) {
21 udelay(1);
22 int_status = LOONGSON_INTISR;
85749d24
WZ
23 }
24
25 /* Get pending sources, masked by current enables */
e2fee572 26 int_status = LOONGSON_INTISR & LOONGSON_INTEN;
85749d24 27
f5c1ca77 28 if (int_status) {
85749d24 29 i = __ffs(int_status);
e2fee572 30 do_IRQ(LOONGSON_IRQ_BASE + i);
85749d24
WZ
31 }
32}
33
34asmlinkage void plat_irq_dispatch(void)
35{
36 unsigned int pending;
37
38 pending = read_c0_cause() & read_c0_status() & ST0_IM;
39
40 /* machine-specific plat_irq_dispatch */
41 mach_irq_dispatch(pending);
42}
43
44void __init arch_init_irq(void)
45{
46 /*
47 * Clear all of the interrupts while we change the able around a bit.
48 * int-handler is not on bootstrap
49 */
50 clear_c0_status(ST0_IM | ST0_BEV);
85749d24 51
85749d24 52 /* no steer */
e2fee572 53 LOONGSON_INTSTEER = 0;
85749d24
WZ
54
55 /*
56 * Mask out all interrupt by writing "1" to all bit position in
57 * the interrupt reset reg.
58 */
e2fee572 59 LOONGSON_INTENCLR = ~0;
85749d24
WZ
60
61 /* machine specific irq init */
62 mach_init_irq();
63}