Loading...
1/* SPDX-License-Identifier: GPL-2.0 */
2#ifndef _M68K_IRQFLAGS_H
3#define _M68K_IRQFLAGS_H
4
5#include <linux/types.h>
6#include <linux/preempt.h>
7#include <asm/thread_info.h>
8#include <asm/entry.h>
9
10static inline unsigned long arch_local_save_flags(void)
11{
12 unsigned long flags;
13 asm volatile ("movew %%sr,%0" : "=d" (flags) : : "memory");
14 return flags;
15}
16
17static inline void arch_local_irq_disable(void)
18{
19#ifdef CONFIG_COLDFIRE
20 asm volatile (
21 "move %/sr,%%d0 \n\t"
22 "ori.l #0x0700,%%d0 \n\t"
23 "move %%d0,%/sr \n"
24 : /* no outputs */
25 :
26 : "cc", "%d0", "memory");
27#else
28 asm volatile ("oriw #0x0700,%%sr" : : : "memory");
29#endif
30}
31
32static inline void arch_local_irq_enable(void)
33{
34#if defined(CONFIG_COLDFIRE)
35 asm volatile (
36 "move %/sr,%%d0 \n\t"
37 "andi.l #0xf8ff,%%d0 \n\t"
38 "move %%d0,%/sr \n"
39 : /* no outputs */
40 :
41 : "cc", "%d0", "memory");
42#else
43# if defined(CONFIG_MMU)
44 if (MACH_IS_Q40 || !hardirq_count())
45# endif
46 asm volatile (
47 "andiw %0,%%sr"
48 :
49 : "i" (ALLOWINT)
50 : "memory");
51#endif
52}
53
54static inline unsigned long arch_local_irq_save(void)
55{
56 unsigned long flags = arch_local_save_flags();
57 arch_local_irq_disable();
58 return flags;
59}
60
61static inline void arch_local_irq_restore(unsigned long flags)
62{
63 asm volatile ("movew %0,%%sr" : : "d" (flags) : "memory");
64}
65
66static inline bool arch_irqs_disabled_flags(unsigned long flags)
67{
68 if (MACH_IS_ATARI) {
69 /* Ignore HSYNC = ipl 2 on Atari */
70 return (flags & ~(ALLOWINT | 0x200)) != 0;
71 }
72 return (flags & ~ALLOWINT) != 0;
73}
74
75static inline bool arch_irqs_disabled(void)
76{
77 return arch_irqs_disabled_flags(arch_local_save_flags());
78}
79
80#endif /* _M68K_IRQFLAGS_H */
1#ifndef _M68K_IRQFLAGS_H
2#define _M68K_IRQFLAGS_H
3
4#include <linux/types.h>
5#ifdef CONFIG_MMU
6#include <linux/hardirq.h>
7#endif
8#include <linux/preempt.h>
9#include <asm/thread_info.h>
10#include <asm/entry.h>
11
12static inline unsigned long arch_local_save_flags(void)
13{
14 unsigned long flags;
15 asm volatile ("movew %%sr,%0" : "=d" (flags) : : "memory");
16 return flags;
17}
18
19static inline void arch_local_irq_disable(void)
20{
21#ifdef CONFIG_COLDFIRE
22 asm volatile (
23 "move %/sr,%%d0 \n\t"
24 "ori.l #0x0700,%%d0 \n\t"
25 "move %%d0,%/sr \n"
26 : /* no outputs */
27 :
28 : "cc", "%d0", "memory");
29#else
30 asm volatile ("oriw #0x0700,%%sr" : : : "memory");
31#endif
32}
33
34static inline void arch_local_irq_enable(void)
35{
36#if defined(CONFIG_COLDFIRE)
37 asm volatile (
38 "move %/sr,%%d0 \n\t"
39 "andi.l #0xf8ff,%%d0 \n\t"
40 "move %%d0,%/sr \n"
41 : /* no outputs */
42 :
43 : "cc", "%d0", "memory");
44#else
45# if defined(CONFIG_MMU)
46 if (MACH_IS_Q40 || !hardirq_count())
47# endif
48 asm volatile (
49 "andiw %0,%%sr"
50 :
51 : "i" (ALLOWINT)
52 : "memory");
53#endif
54}
55
56static inline unsigned long arch_local_irq_save(void)
57{
58 unsigned long flags = arch_local_save_flags();
59 arch_local_irq_disable();
60 return flags;
61}
62
63static inline void arch_local_irq_restore(unsigned long flags)
64{
65 asm volatile ("movew %0,%%sr" : : "d" (flags) : "memory");
66}
67
68static inline bool arch_irqs_disabled_flags(unsigned long flags)
69{
70 return (flags & ~ALLOWINT) != 0;
71}
72
73static inline bool arch_irqs_disabled(void)
74{
75 return arch_irqs_disabled_flags(arch_local_save_flags());
76}
77
78#endif /* _M68K_IRQFLAGS_H */