blob: c9a6262832c4671134b31b7aab9b41cfc9783fac [file] [log] [blame]
Michal Simek4dbdc9a2009-03-27 14:25:35 +01001/*
2 * Copyright (C) 2006 Atmark Techno, Inc.
3 *
4 * This file is subject to the terms and conditions of the GNU General Public
5 * License. See the file "COPYING" in the main directory of this archive
6 * for more details.
7 */
8
9#ifndef _ASM_MICROBLAZE_IRQFLAGS_H
10#define _ASM_MICROBLAZE_IRQFLAGS_H
11
David Howellsdf9ee292010-10-07 14:08:55 +010012#include <linux/types.h>
Michal Simeka3cd6132009-10-30 12:26:53 +010013#include <asm/registers.h>
Michal Simek4dbdc9a2009-03-27 14:25:35 +010014
Michal Simek12dfc732011-02-07 13:32:55 +010015#if CONFIG_XILINX_MICROBLAZE0_USE_MSR_INSTR
Michal Simek4dbdc9a2009-03-27 14:25:35 +010016
Steven Rostedta2f52692011-07-01 23:04:40 -040017static inline notrace unsigned long arch_local_irq_save(void)
Michal Simek4dbdc9a2009-03-27 14:25:35 +010018{
19 unsigned long flags;
David Howellsdf9ee292010-10-07 14:08:55 +010020 asm volatile(" msrclr %0, %1 \n"
21 " nop \n"
22 : "=r"(flags)
23 : "i"(MSR_IE)
24 : "memory");
Michal Simeka3cd6132009-10-30 12:26:53 +010025 return flags;
Michal Simek4dbdc9a2009-03-27 14:25:35 +010026}
27
Steven Rostedta2f52692011-07-01 23:04:40 -040028static inline notrace void arch_local_irq_disable(void)
David Howellsdf9ee292010-10-07 14:08:55 +010029{
30 /* this uses r0 without declaring it - is that correct? */
31 asm volatile(" msrclr r0, %0 \n"
32 " nop \n"
33 :
34 : "i"(MSR_IE)
35 : "memory");
36}
37
Steven Rostedta2f52692011-07-01 23:04:40 -040038static inline notrace void arch_local_irq_enable(void)
David Howellsdf9ee292010-10-07 14:08:55 +010039{
40 /* this uses r0 without declaring it - is that correct? */
41 asm volatile(" msrset r0, %0 \n"
42 " nop \n"
43 :
44 : "i"(MSR_IE)
45 : "memory");
46}
47
48#else /* !CONFIG_XILINX_MICROBLAZE0_USE_MSR_INSTR */
49
Steven Rostedta2f52692011-07-01 23:04:40 -040050static inline notrace unsigned long arch_local_irq_save(void)
David Howellsdf9ee292010-10-07 14:08:55 +010051{
52 unsigned long flags, tmp;
53 asm volatile (" mfs %0, rmsr \n"
54 " nop \n"
55 " andi %1, %0, %2 \n"
56 " mts rmsr, %1 \n"
57 " nop \n"
58 : "=r"(flags), "=r"(tmp)
59 : "i"(~MSR_IE)
60 : "memory");
61 return flags;
62}
63
Steven Rostedta2f52692011-07-01 23:04:40 -040064static inline notrace void arch_local_irq_disable(void)
David Howellsdf9ee292010-10-07 14:08:55 +010065{
66 unsigned long tmp;
67 asm volatile(" mfs %0, rmsr \n"
68 " nop \n"
69 " andi %0, %0, %1 \n"
70 " mts rmsr, %0 \n"
71 " nop \n"
72 : "=r"(tmp)
73 : "i"(~MSR_IE)
74 : "memory");
75}
76
Steven Rostedta2f52692011-07-01 23:04:40 -040077static inline notrace void arch_local_irq_enable(void)
David Howellsdf9ee292010-10-07 14:08:55 +010078{
79 unsigned long tmp;
80 asm volatile(" mfs %0, rmsr \n"
81 " nop \n"
82 " ori %0, %0, %1 \n"
83 " mts rmsr, %0 \n"
84 " nop \n"
85 : "=r"(tmp)
86 : "i"(MSR_IE)
87 : "memory");
88}
89
90#endif /* CONFIG_XILINX_MICROBLAZE0_USE_MSR_INSTR */
91
Steven Rostedta2f52692011-07-01 23:04:40 -040092static inline notrace unsigned long arch_local_save_flags(void)
David Howellsdf9ee292010-10-07 14:08:55 +010093{
94 unsigned long flags;
95 asm volatile(" mfs %0, rmsr \n"
96 " nop \n"
97 : "=r"(flags)
98 :
99 : "memory");
100 return flags;
101}
102
Steven Rostedta2f52692011-07-01 23:04:40 -0400103static inline notrace void arch_local_irq_restore(unsigned long flags)
David Howellsdf9ee292010-10-07 14:08:55 +0100104{
105 asm volatile(" mts rmsr, %0 \n"
106 " nop \n"
107 :
108 : "r"(flags)
109 : "memory");
110}
111
Steven Rostedta2f52692011-07-01 23:04:40 -0400112static inline notrace bool arch_irqs_disabled_flags(unsigned long flags)
David Howellsdf9ee292010-10-07 14:08:55 +0100113{
114 return (flags & MSR_IE) == 0;
115}
116
Steven Rostedta2f52692011-07-01 23:04:40 -0400117static inline notrace bool arch_irqs_disabled(void)
David Howellsdf9ee292010-10-07 14:08:55 +0100118{
119 return arch_irqs_disabled_flags(arch_local_save_flags());
120}
Michal Simek4dbdc9a2009-03-27 14:25:35 +0100121
122#endif /* _ASM_MICROBLAZE_IRQFLAGS_H */