blob: 23f68b40d4bb25170217943fcf35eba7eb69f3d3 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * This file is subject to the terms and conditions of the GNU General Public
3 * License. See the file "COPYING" in the main directory of this archive
4 * for more details.
5 *
Ralf Baechle0004a9d2006-10-31 03:45:07 +00006 * Copyright (C) 1994, 95, 96, 97, 98, 99, 2003, 06 by Ralf Baechle
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * Copyright (C) 1996 by Paul M. Antoine
8 * Copyright (C) 1999 Silicon Graphics
9 * Kevin D. Kissell, kevink@mips.org and Carsten Langgaard, carstenl@mips.com
10 * Copyright (C) 2000 MIPS Technologies, Inc.
11 */
12#ifndef _ASM_SYSTEM_H
13#define _ASM_SYSTEM_H
14
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/types.h>
Ralf Baechle192ef362006-07-07 14:07:18 +010016#include <linux/irqflags.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017
18#include <asm/addrspace.h>
Ralf Baechle0004a9d2006-10-31 03:45:07 +000019#include <asm/barrier.h>
Ralf Baechlefef74702007-10-01 04:15:00 +010020#include <asm/cmpxchg.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <asm/cpu-features.h>
Ralf Baechlee50c0a82005-05-31 11:49:19 +000022#include <asm/dsp.h>
David Daney2c708cb2008-09-23 00:09:51 -070023#include <asm/watch.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <asm/war.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
Linus Torvalds1da177e2005-04-16 15:20:36 -070026
Linus Torvalds1da177e2005-04-16 15:20:36 -070027/*
28 * switch_to(n) should switch tasks to task nr n, first
29 * checking that n isn't the current task, in which case it does nothing.
30 */
31extern asmlinkage void *resume(void *last, void *next, void *next_ti);
32
33struct task_struct;
34
Ralf Baechlef1e39a42009-09-17 02:25:05 +020035extern unsigned int ll_bit;
36extern struct task_struct *ll_task;
37
Ralf Baechlef088fc82006-04-05 09:45:47 +010038#ifdef CONFIG_MIPS_MT_FPAFF
39
40/*
41 * Handle the scheduler resume end of FPU affinity management. We do this
42 * inline to try to keep the overhead down. If we have been forced to run on
43 * a "CPU" with an FPU because of a previous high level of FP computation,
44 * but did not actually use the FPU during the most recent time-slice (CU1
45 * isn't set), we undo the restriction on cpus_allowed.
46 *
47 * We're not calling set_cpus_allowed() here, because we have no need to
48 * force prompt migration - we're already switching the current CPU to a
49 * different thread.
50 */
51
Ralf Baechled223a862007-07-10 17:33:02 +010052#define __mips_mt_fpaff_switch_to(prev) \
Ralf Baechlef088fc82006-04-05 09:45:47 +010053do { \
Ralf Baechle293c5bd2007-07-25 16:19:33 +010054 struct thread_info *__prev_ti = task_thread_info(prev); \
55 \
Ralf Baechlef088fc82006-04-05 09:45:47 +010056 if (cpu_has_fpu && \
Ralf Baechle293c5bd2007-07-25 16:19:33 +010057 test_ti_thread_flag(__prev_ti, TIF_FPUBOUND) && \
58 (!(KSTK_STATUS(prev) & ST0_CU1))) { \
59 clear_ti_thread_flag(__prev_ti, TIF_FPUBOUND); \
Ralf Baechlef088fc82006-04-05 09:45:47 +010060 prev->cpus_allowed = prev->thread.user_cpus_allowed; \
61 } \
Ralf Baechlef088fc82006-04-05 09:45:47 +010062 next->thread.emulated_fp = 0; \
Ralf Baechlef088fc82006-04-05 09:45:47 +010063} while(0)
64
65#else
Ralf Baechle35c700c2007-07-10 08:59:17 +010066#define __mips_mt_fpaff_switch_to(prev) do { (void) (prev); } while (0)
Ralf Baechled223a862007-07-10 17:33:02 +010067#endif
68
Ralf Baechlef4c6b6b2009-09-17 02:25:05 +020069#ifdef CONFIG_CPU_HAS_LLSC
70#define __clear_software_ll_bit() do { } while (0)
71#else
72extern unsigned long ll_bit;
73
74#define __clear_software_ll_bit() \
75do { \
76 ll_bit = 0; \
77} while (0)
78#endif
79
Ralf Baechle21a151d2007-10-11 23:46:15 +010080#define switch_to(prev, next, last) \
Ralf Baechlee50c0a82005-05-31 11:49:19 +000081do { \
Ralf Baechled223a862007-07-10 17:33:02 +010082 __mips_mt_fpaff_switch_to(prev); \
Ralf Baechlee50c0a82005-05-31 11:49:19 +000083 if (cpu_has_dsp) \
84 __save_dsp(prev); \
Ralf Baechlef4c6b6b2009-09-17 02:25:05 +020085 __clear_software_ll_bit(); \
Al Viro40bc9c62006-01-12 01:06:07 -080086 (last) = resume(prev, next, task_thread_info(next)); \
Ralf Baechle07500b02007-10-30 17:25:26 +000087} while (0)
88
89#define finish_arch_switch(prev) \
90do { \
Ralf Baechlee50c0a82005-05-31 11:49:19 +000091 if (cpu_has_dsp) \
92 __restore_dsp(current); \
Ralf Baechlea3692022007-07-10 17:33:02 +010093 if (cpu_has_userlocal) \
Ralf Baechle07500b02007-10-30 17:25:26 +000094 write_c0_userlocal(current_thread_info()->tp_value); \
David Daney2c708cb2008-09-23 00:09:51 -070095 __restore_watch(); \
Ralf Baechle07500b02007-10-30 17:25:26 +000096} while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
Linus Torvalds1da177e2005-04-16 15:20:36 -070098static inline unsigned long __xchg_u32(volatile int * m, unsigned int val)
99{
100 __u32 retval;
101
102 if (cpu_has_llsc && R10000_LLSC_WAR) {
103 unsigned long dummy;
104
105 __asm__ __volatile__(
Maciej W. Rozyckic4559f62005-06-23 15:57:15 +0000106 " .set mips3 \n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 "1: ll %0, %3 # xchg_u32 \n"
Ralf Baechle72224242005-06-29 13:35:19 +0000108 " .set mips0 \n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 " move %2, %z4 \n"
Ralf Baechle72224242005-06-29 13:35:19 +0000110 " .set mips3 \n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 " sc %2, %1 \n"
112 " beqzl %2, 1b \n"
Maciej W. Rozyckiaac8aa72005-06-14 17:35:03 +0000113 " .set mips0 \n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 : "=&r" (retval), "=m" (*m), "=&r" (dummy)
115 : "R" (*m), "Jr" (val)
116 : "memory");
117 } else if (cpu_has_llsc) {
118 unsigned long dummy;
119
120 __asm__ __volatile__(
Maciej W. Rozyckic4559f62005-06-23 15:57:15 +0000121 " .set mips3 \n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 "1: ll %0, %3 # xchg_u32 \n"
Ralf Baechle72224242005-06-29 13:35:19 +0000123 " .set mips0 \n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 " move %2, %z4 \n"
Ralf Baechle72224242005-06-29 13:35:19 +0000125 " .set mips3 \n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 " sc %2, %1 \n"
Ralf Baechlef65e4fa2006-09-28 01:45:21 +0100127 " beqz %2, 2f \n"
128 " .subsection 2 \n"
129 "2: b 1b \n"
130 " .previous \n"
Maciej W. Rozyckiaac8aa72005-06-14 17:35:03 +0000131 " .set mips0 \n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 : "=&r" (retval), "=m" (*m), "=&r" (dummy)
133 : "R" (*m), "Jr" (val)
134 : "memory");
135 } else {
136 unsigned long flags;
137
Ralf Baechle49edd092007-03-16 16:10:36 +0000138 raw_local_irq_save(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 retval = *m;
140 *m = val;
Ralf Baechle49edd092007-03-16 16:10:36 +0000141 raw_local_irq_restore(flags); /* implies memory barrier */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 }
143
Ralf Baechle17099b12007-07-14 13:24:05 +0100144 smp_llsc_mb();
Ralf Baechle0004a9d2006-10-31 03:45:07 +0000145
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 return retval;
147}
148
Ralf Baechle875d43e2005-09-03 15:56:16 -0700149#ifdef CONFIG_64BIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150static inline __u64 __xchg_u64(volatile __u64 * m, __u64 val)
151{
152 __u64 retval;
153
154 if (cpu_has_llsc && R10000_LLSC_WAR) {
155 unsigned long dummy;
156
157 __asm__ __volatile__(
Maciej W. Rozyckiaac8aa72005-06-14 17:35:03 +0000158 " .set mips3 \n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 "1: lld %0, %3 # xchg_u64 \n"
160 " move %2, %z4 \n"
161 " scd %2, %1 \n"
162 " beqzl %2, 1b \n"
Maciej W. Rozyckiaac8aa72005-06-14 17:35:03 +0000163 " .set mips0 \n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 : "=&r" (retval), "=m" (*m), "=&r" (dummy)
165 : "R" (*m), "Jr" (val)
166 : "memory");
167 } else if (cpu_has_llsc) {
168 unsigned long dummy;
169
170 __asm__ __volatile__(
Maciej W. Rozyckiaac8aa72005-06-14 17:35:03 +0000171 " .set mips3 \n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 "1: lld %0, %3 # xchg_u64 \n"
173 " move %2, %z4 \n"
174 " scd %2, %1 \n"
Ralf Baechlef65e4fa2006-09-28 01:45:21 +0100175 " beqz %2, 2f \n"
176 " .subsection 2 \n"
177 "2: b 1b \n"
178 " .previous \n"
Maciej W. Rozyckiaac8aa72005-06-14 17:35:03 +0000179 " .set mips0 \n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 : "=&r" (retval), "=m" (*m), "=&r" (dummy)
181 : "R" (*m), "Jr" (val)
182 : "memory");
183 } else {
184 unsigned long flags;
185
Ralf Baechle49edd092007-03-16 16:10:36 +0000186 raw_local_irq_save(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 retval = *m;
188 *m = val;
Ralf Baechle49edd092007-03-16 16:10:36 +0000189 raw_local_irq_restore(flags); /* implies memory barrier */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 }
191
Ralf Baechle17099b12007-07-14 13:24:05 +0100192 smp_llsc_mb();
Ralf Baechle0004a9d2006-10-31 03:45:07 +0000193
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 return retval;
195}
196#else
197extern __u64 __xchg_u64_unsupported_on_32bit_kernels(volatile __u64 * m, __u64 val);
198#define __xchg_u64 __xchg_u64_unsupported_on_32bit_kernels
199#endif
200
201/* This function doesn't exist, so you'll get a linker error
202 if something tries to do an invalid xchg(). */
203extern void __xchg_called_with_bad_pointer(void);
204
205static inline unsigned long __xchg(unsigned long x, volatile void * ptr, int size)
206{
207 switch (size) {
Ralf Baechle0cea0432006-03-03 09:42:05 +0000208 case 4:
209 return __xchg_u32(ptr, x);
210 case 8:
211 return __xchg_u64(ptr, x);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 }
213 __xchg_called_with_bad_pointer();
214 return x;
215}
216
Ralf Baechle21a151d2007-10-11 23:46:15 +0100217#define xchg(ptr, x) ((__typeof__(*(ptr)))__xchg((unsigned long)(x), (ptr), sizeof(*(ptr))))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218
Ralf Baechle49a89ef2007-10-11 23:46:15 +0100219extern void set_handler(unsigned long offset, void *addr, unsigned long len);
220extern void set_uncached_handler(unsigned long offset, void *addr, unsigned long len);
Ralf Baechleef300e42007-05-06 18:31:18 +0100221
222typedef void (*vi_handler_t)(void);
Ralf Baechle49a89ef2007-10-11 23:46:15 +0100223extern void *set_vi_handler(int n, vi_handler_t addr);
Ralf Baechleef300e42007-05-06 18:31:18 +0100224
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225extern void *set_except_vector(int n, void *addr);
Ralf Baechle91b05e62006-03-29 18:53:00 +0100226extern unsigned long ebase;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227extern void per_cpu_trap_init(void);
228
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229/*
Nick Piggin4866cde2005-06-25 14:57:23 -0700230 * See include/asm-ia64/system.h; prevents deadlock on SMP
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 * systems.
232 */
Nick Piggin4866cde2005-06-25 14:57:23 -0700233#define __ARCH_WANT_UNLOCKED_CTXSW
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234
Franck Bui-Huu94109102007-07-19 14:04:21 +0200235extern unsigned long arch_align_stack(unsigned long sp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236
237#endif /* _ASM_SYSTEM_H */