diff options
author | Guo Ren <ren_guo@c-sky.com> | 2018-09-05 02:25:15 -0400 |
---|---|---|
committer | Guo Ren <ren_guo@c-sky.com> | 2018-10-25 12:54:22 -0400 |
commit | e38a5272baaa81b31680389efdec0c9008e17446 (patch) | |
tree | 061825536f867bd3f35d57afb201b3fb0d1204b3 | |
parent | dd3ef10ea295f8f4181e6044fb19444cad7c6aab (diff) |
csky: IRQ handling
This patch adds IRQ handling files.
Signed-off-by: Guo Ren <ren_guo@c-sky.com>
Cc: Thomas Gleixner <tglx@linutronix.de>
Reviewed-by: Arnd Bergmann <arnd@arndb.de>
-rw-r--r-- | arch/csky/include/asm/irqflags.h | 49 | ||||
-rw-r--r-- | arch/csky/kernel/irq.c | 22 |
2 files changed, 71 insertions, 0 deletions
diff --git a/arch/csky/include/asm/irqflags.h b/arch/csky/include/asm/irqflags.h new file mode 100644 index 000000000000..9e3a569a55d6 --- /dev/null +++ b/arch/csky/include/asm/irqflags.h | |||
@@ -0,0 +1,49 @@ | |||
1 | /* SPDX-License-Identifier: GPL-2.0 */ | ||
2 | |||
3 | #ifndef __ASM_CSKY_IRQFLAGS_H | ||
4 | #define __ASM_CSKY_IRQFLAGS_H | ||
5 | #include <abi/reg_ops.h> | ||
6 | |||
7 | static inline unsigned long arch_local_irq_save(void) | ||
8 | { | ||
9 | unsigned long flags; | ||
10 | |||
11 | flags = mfcr("psr"); | ||
12 | asm volatile("psrclr ie\n":::"memory"); | ||
13 | return flags; | ||
14 | } | ||
15 | #define arch_local_irq_save arch_local_irq_save | ||
16 | |||
17 | static inline void arch_local_irq_enable(void) | ||
18 | { | ||
19 | asm volatile("psrset ee, ie\n":::"memory"); | ||
20 | } | ||
21 | #define arch_local_irq_enable arch_local_irq_enable | ||
22 | |||
23 | static inline void arch_local_irq_disable(void) | ||
24 | { | ||
25 | asm volatile("psrclr ie\n":::"memory"); | ||
26 | } | ||
27 | #define arch_local_irq_disable arch_local_irq_disable | ||
28 | |||
29 | static inline unsigned long arch_local_save_flags(void) | ||
30 | { | ||
31 | return mfcr("psr"); | ||
32 | } | ||
33 | #define arch_local_save_flags arch_local_save_flags | ||
34 | |||
35 | static inline void arch_local_irq_restore(unsigned long flags) | ||
36 | { | ||
37 | mtcr("psr", flags); | ||
38 | } | ||
39 | #define arch_local_irq_restore arch_local_irq_restore | ||
40 | |||
41 | static inline int arch_irqs_disabled_flags(unsigned long flags) | ||
42 | { | ||
43 | return !(flags & (1<<6)); | ||
44 | } | ||
45 | #define arch_irqs_disabled_flags arch_irqs_disabled_flags | ||
46 | |||
47 | #include <asm-generic/irqflags.h> | ||
48 | |||
49 | #endif /* __ASM_CSKY_IRQFLAGS_H */ | ||
diff --git a/arch/csky/kernel/irq.c b/arch/csky/kernel/irq.c new file mode 100644 index 000000000000..03a1930f1cbb --- /dev/null +++ b/arch/csky/kernel/irq.c | |||
@@ -0,0 +1,22 @@ | |||
1 | // SPDX-License-Identifier: GPL-2.0 | ||
2 | // Copyright (C) 2018 Hangzhou C-SKY Microsystems co.,ltd. | ||
3 | |||
4 | #include <linux/init.h> | ||
5 | #include <linux/interrupt.h> | ||
6 | #include <linux/irq.h> | ||
7 | #include <linux/irqchip.h> | ||
8 | #include <asm/traps.h> | ||
9 | #include <asm/smp.h> | ||
10 | |||
11 | void __init init_IRQ(void) | ||
12 | { | ||
13 | irqchip_init(); | ||
14 | #ifdef CONFIG_SMP | ||
15 | setup_smp_ipi(); | ||
16 | #endif | ||
17 | } | ||
18 | |||
19 | asmlinkage void __irq_entry csky_do_IRQ(struct pt_regs *regs) | ||
20 | { | ||
21 | handle_arch_irq(regs); | ||
22 | } | ||