1 /* system.h: FR-V CPU control definitions
3 * Copyright (C) 2003 Red Hat, Inc. All Rights Reserved.
4 * Written by David Howells (dhowells@redhat.com)
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
15 #include <linux/config.h> /* get configuration macros */
16 #include <linux/linkage.h>
17 #include <asm/atomic.h>
21 #define prepare_to_switch() do { } while(0)
24 * switch_to(prev, next) should switch from task `prev' to `next'
25 * `prev' will never be the same as `next'.
26 * The `mb' is to tell GCC not to cache `current' across this call.
29 struct task_struct *__switch_to(struct thread_struct *prev_thread,
30 struct thread_struct *next_thread,
31 struct task_struct *prev);
33 #define switch_to(prev, next, last) \
35 (prev)->thread.sched_lr = \
36 (unsigned long) __builtin_return_address(0); \
37 (last) = __switch_to(&(prev)->thread, &(next)->thread, (prev)); \
42 * interrupt flag manipulation
43 * - use virtual interrupt management since touching the PSR is slow
44 * - ICC2.Z: T if interrupts virtually disabled
45 * - ICC2.C: F if interrupts really disabled
46 * - if Z==1 upon interrupt:
48 * - interrupts are really disabled
49 * - entry.S returns immediately
50 * - uses TIHI (TRAP if Z==0 && C==0) #2 to really reenable interrupts
51 * - if taken, the trap:
53 * - enables interrupts
55 #define local_irq_disable() \
57 /* set Z flag, but don't change the C flag */ \
58 asm volatile(" andcc gr0,gr0,gr0,icc2 \n" \
65 #define local_irq_enable() \
67 /* clear Z flag and then test the C flag */ \
68 asm volatile(" oricc gr0,#1,gr0,icc2 \n" \
69 " tihi icc2,gr0,#2 \n" \
76 #define local_save_flags(flags) \
78 typecheck(unsigned long, flags); \
79 asm volatile("movsg ccr,%0" \
84 /* shift ICC2.Z to bit 0 */ \
87 /* make flags 1 if interrupts disabled, 0 otherwise */ \
91 #define irqs_disabled() \
92 ({unsigned long flags; local_save_flags(flags); flags; })
94 #define local_irq_save(flags) \
96 typecheck(unsigned long, flags); \
97 local_save_flags(flags); \
98 local_irq_disable(); \
101 #define local_irq_restore(flags) \
103 typecheck(unsigned long, flags); \
105 /* load the Z flag by turning 1 if disabled into 0 if disabled \
106 * and thus setting the Z flag but not the C flag */ \
107 asm volatile(" xoricc %0,#1,gr0,icc2 \n" \
108 /* then test Z=0 and C=0 */ \
109 " tihi icc2,gr0,#2 \n" \
118 * real interrupt flag manipulation
120 #define __local_irq_disable() \
123 asm volatile(" movsg psr,%0 \n" \
124 " andi %0,%2,%0 \n" \
128 : "i" (PSR_PIL_14), "i" (~PSR_PIL) \
132 #define __local_irq_enable() \
135 asm volatile(" movsg psr,%0 \n" \
136 " andi %0,%1,%0 \n" \
143 #define __local_save_flags(flags) \
145 typecheck(unsigned long, flags); \
152 #define __local_irq_save(flags) \
154 unsigned long npsr; \
155 typecheck(unsigned long, flags); \
156 asm volatile(" movsg psr,%0 \n" \
157 " andi %0,%3,%1 \n" \
160 : "=r"(flags), "=r"(npsr) \
161 : "i" (PSR_PIL_14), "i" (~PSR_PIL) \
165 #define __local_irq_restore(flags) \
167 typecheck(unsigned long, flags); \
168 asm volatile(" movgs %0,psr \n" \
174 #define __irqs_disabled() \
175 ((__get_PSR() & PSR_PIL) >= PSR_PIL_14)
178 * Force strict CPU ordering.
180 #define nop() asm volatile ("nop"::)
181 #define mb() asm volatile ("membar" : : :"memory")
182 #define rmb() asm volatile ("membar" : : :"memory")
183 #define wmb() asm volatile ("membar" : : :"memory")
184 #define set_mb(var, value) do { var = value; mb(); } while (0)
185 #define set_wmb(var, value) do { var = value; wmb(); } while (0)
187 #define smp_mb() mb()
188 #define smp_rmb() rmb()
189 #define smp_wmb() wmb()
191 #define read_barrier_depends() do {} while(0)
192 #define smp_read_barrier_depends() read_barrier_depends()
194 #define HARD_RESET_NOW() \
199 extern void die_if_kernel(const char *, ...) __attribute__((format(printf, 1, 2)));
200 extern void free_initmem(void);
202 #define arch_align_stack(x) (x)
204 #endif /* _ASM_SYSTEM_H */