4 #include <linux/config.h> /* get configuration macros */
5 #include <linux/linkage.h>
6 #include <linux/kernel.h>
7 #include <asm/segment.h>
13 * switch_to(n) should switch tasks to task ptr, first checking that
14 * ptr isn't the current task, in which case it does nothing. This
15 * also clears the TS-flag if the task we switched to has used the
16 * math co-processor latest.
19 * switch_to() saves the extra registers, that are not saved
20 * automatically by SAVE_SWITCH_STACK in resume(), ie. d0-d5 and
21 * a0-a1. Some of these are used by schedule() and its predecessors
22 * and so we might get see unexpected behaviors when a task returns
23 * with unexpected register values.
25 * syscall stores these registers itself and none of them are used
26 * by syscall after the function in the syscall has been called.
28 * Beware that resume now expects *next to be in d1 and the offset of
29 * tss to be in a1. This saves a few instructions as we no longer have
30 * to push them onto the stack and read them back right after.
32 * 02/17/96 - Jes Sorensen (jds@kom.auc.dk)
34 * Changed 96/09/19 by Andreas Schwab
35 * pass prev in a0, next in a1
37 asmlinkage
void resume(void);
38 #define switch_to(prev,next,last) do { \
39 register void *_prev __asm__ ("a0") = (prev); \
40 register void *_next __asm__ ("a1") = (next); \
41 register void *_last __asm__ ("d1"); \
42 __asm__ __volatile__("jbsr resume" \
43 : "=a" (_prev), "=a" (_next), "=d" (_last) \
44 : "0" (_prev), "1" (_next) \
45 : "d0", "d2", "d3", "d4", "d5"); \
50 /* interrupt control.. */
52 #define local_irq_enable() asm volatile ("andiw %0,%%sr": : "i" (ALLOWINT) : "memory")
54 #include <linux/hardirq.h>
55 #define local_irq_enable() ({ \
56 if (MACH_IS_Q40 || !hardirq_count()) \
57 asm volatile ("andiw %0,%%sr": : "i" (ALLOWINT) : "memory"); \
60 #define local_irq_disable() asm volatile ("oriw #0x0700,%%sr": : : "memory")
61 #define local_save_flags(x) asm volatile ("movew %%sr,%0":"=d" (x) : : "memory")
62 #define local_irq_restore(x) asm volatile ("movew %0,%%sr": :"d" (x) : "memory")
64 static inline int irqs_disabled(void)
67 local_save_flags(flags
);
68 return flags
& ~ALLOWINT
;
71 /* For spinlocks etc */
72 #define local_irq_save(x) ({ local_save_flags(x); local_irq_disable(); })
75 * Force strict CPU ordering.
76 * Not really required on m68k...
78 #define nop() do { asm volatile ("nop"); barrier(); } while (0)
79 #define mb() barrier()
80 #define rmb() barrier()
81 #define wmb() barrier()
82 #define read_barrier_depends() do { } while(0)
83 #define set_mb(var, value) do { xchg(&var, value); } while (0)
84 #define set_wmb(var, value) do { var = value; wmb(); } while (0)
86 #define smp_mb() barrier()
87 #define smp_rmb() barrier()
88 #define smp_wmb() barrier()
89 #define smp_read_barrier_depends() do { } while(0)
92 #define xchg(ptr,x) ((__typeof__(*(ptr)))__xchg((unsigned long)(x),(ptr),sizeof(*(ptr))))
93 #define tas(ptr) (xchg((ptr),1))
95 struct __xchg_dummy
{ unsigned long a
[100]; };
96 #define __xg(x) ((volatile struct __xchg_dummy *)(x))
98 #ifndef CONFIG_RMW_INSNS
99 static inline unsigned long __xchg(unsigned long x
, volatile void * ptr
, int size
)
101 unsigned long flags
, tmp
;
103 local_irq_save(flags
);
125 local_irq_restore(flags
);
129 static inline unsigned long __xchg(unsigned long x
, volatile void * ptr
, int size
)
138 : "=&d" (x
) : "d" (x
), "m" (*__xg(ptr
)) : "memory");
146 : "=&d" (x
) : "d" (x
), "m" (*__xg(ptr
)) : "memory");
154 : "=&d" (x
) : "d" (x
), "m" (*__xg(ptr
)) : "memory");
162 * Atomic compare and exchange. Compare OLD with MEM, if identical,
163 * store NEW in MEM. Return the initial value in MEM. Success is
164 * indicated by comparing RETURN with OLD.
166 #ifdef CONFIG_RMW_INSNS
167 #define __HAVE_ARCH_CMPXCHG 1
169 static inline unsigned long __cmpxchg(volatile void *p
, unsigned long old
,
170 unsigned long new, int size
)
174 __asm__
__volatile__ ("casb %0,%2,%1"
175 : "=d" (old
), "=m" (*(char *)p
)
176 : "d" (new), "0" (old
), "m" (*(char *)p
));
179 __asm__
__volatile__ ("casw %0,%2,%1"
180 : "=d" (old
), "=m" (*(short *)p
)
181 : "d" (new), "0" (old
), "m" (*(short *)p
));
184 __asm__
__volatile__ ("casl %0,%2,%1"
185 : "=d" (old
), "=m" (*(int *)p
)
186 : "d" (new), "0" (old
), "m" (*(int *)p
));
192 #define cmpxchg(ptr,o,n)\
193 ((__typeof__(*(ptr)))__cmpxchg((ptr),(unsigned long)(o),\
194 (unsigned long)(n),sizeof(*(ptr))))
197 #define arch_align_stack(x) (x)
199 #endif /* __KERNEL__ */
201 #endif /* _M68K_SYSTEM_H */