[MIPS] Random fixes for sb1250
[linux-2.6/verdex.git] / include / asm-sparc64 / processor.h
blobc6896b88283e14415a5b925c566945db7be8179e
1 /* $Id: processor.h,v 1.83 2002/02/10 06:04:33 davem Exp $
2 * include/asm-sparc64/processor.h
4 * Copyright (C) 1996 David S. Miller (davem@caip.rutgers.edu)
5 */
7 #ifndef __ASM_SPARC64_PROCESSOR_H
8 #define __ASM_SPARC64_PROCESSOR_H
11 * Sparc64 implementation of macro that returns current
12 * instruction pointer ("program counter").
14 #define current_text_addr() ({ void *pc; __asm__("rd %%pc, %0" : "=r" (pc)); pc; })
16 #include <linux/config.h>
17 #include <asm/asi.h>
18 #include <asm/a.out.h>
19 #include <asm/pstate.h>
20 #include <asm/ptrace.h>
21 #include <asm/page.h>
23 /* The sparc has no problems with write protection */
24 #define wp_works_ok 1
25 #define wp_works_ok__is_a_macro /* for versions in ksyms.c */
28 * User lives in his very own context, and cannot reference us. Note
29 * that TASK_SIZE is a misnomer, it really gives maximum user virtual
30 * address that the kernel will allocate out.
32 * XXX No longer using virtual page tables, kill this upper limit...
34 #define VA_BITS 44
35 #ifndef __ASSEMBLY__
36 #define VPTE_SIZE (1UL << (VA_BITS - PAGE_SHIFT + 3))
37 #else
38 #define VPTE_SIZE (1 << (VA_BITS - PAGE_SHIFT + 3))
39 #endif
40 #define TASK_SIZE ((unsigned long)-VPTE_SIZE)
42 #ifndef __ASSEMBLY__
44 typedef struct {
45 unsigned char seg;
46 } mm_segment_t;
48 /* The Sparc processor specific thread struct. */
49 /* XXX This should die, everything can go into thread_info now. */
50 struct thread_struct {
51 #ifdef CONFIG_DEBUG_SPINLOCK
52 /* How many spinlocks held by this thread.
53 * Used with spin lock debugging to catch tasks
54 * sleeping illegally with locks held.
56 int smp_lock_count;
57 unsigned int smp_lock_pc;
58 #else
59 int dummy; /* f'in gcc bug... */
60 #endif
63 #endif /* !(__ASSEMBLY__) */
65 #ifndef CONFIG_DEBUG_SPINLOCK
66 #define INIT_THREAD { \
67 0, \
69 #else /* CONFIG_DEBUG_SPINLOCK */
70 #define INIT_THREAD { \
71 /* smp_lock_count, smp_lock_pc, */ \
72 0, 0, \
74 #endif /* !(CONFIG_DEBUG_SPINLOCK) */
76 #ifndef __ASSEMBLY__
78 #include <linux/types.h>
80 /* Return saved PC of a blocked thread. */
81 struct task_struct;
82 extern unsigned long thread_saved_pc(struct task_struct *);
84 /* On Uniprocessor, even in RMO processes see TSO semantics */
85 #ifdef CONFIG_SMP
86 #define TSTATE_INITIAL_MM TSTATE_TSO
87 #else
88 #define TSTATE_INITIAL_MM TSTATE_RMO
89 #endif
91 /* Do necessary setup to start up a newly executed thread. */
92 #define start_thread(regs, pc, sp) \
93 do { \
94 unsigned long __asi = ASI_PNF; \
95 regs->tstate = (regs->tstate & (TSTATE_CWP)) | (TSTATE_INITIAL_MM|TSTATE_IE) | (__asi << 24UL); \
96 regs->tpc = ((pc & (~3)) - 4); \
97 regs->tnpc = regs->tpc + 4; \
98 regs->y = 0; \
99 set_thread_wstate(1 << 3); \
100 if (current_thread_info()->utraps) { \
101 if (*(current_thread_info()->utraps) < 2) \
102 kfree(current_thread_info()->utraps); \
103 else \
104 (*(current_thread_info()->utraps))--; \
105 current_thread_info()->utraps = NULL; \
107 __asm__ __volatile__( \
108 "stx %%g0, [%0 + %2 + 0x00]\n\t" \
109 "stx %%g0, [%0 + %2 + 0x08]\n\t" \
110 "stx %%g0, [%0 + %2 + 0x10]\n\t" \
111 "stx %%g0, [%0 + %2 + 0x18]\n\t" \
112 "stx %%g0, [%0 + %2 + 0x20]\n\t" \
113 "stx %%g0, [%0 + %2 + 0x28]\n\t" \
114 "stx %%g0, [%0 + %2 + 0x30]\n\t" \
115 "stx %%g0, [%0 + %2 + 0x38]\n\t" \
116 "stx %%g0, [%0 + %2 + 0x40]\n\t" \
117 "stx %%g0, [%0 + %2 + 0x48]\n\t" \
118 "stx %%g0, [%0 + %2 + 0x50]\n\t" \
119 "stx %%g0, [%0 + %2 + 0x58]\n\t" \
120 "stx %%g0, [%0 + %2 + 0x60]\n\t" \
121 "stx %%g0, [%0 + %2 + 0x68]\n\t" \
122 "stx %1, [%0 + %2 + 0x70]\n\t" \
123 "stx %%g0, [%0 + %2 + 0x78]\n\t" \
124 "wrpr %%g0, (1 << 3), %%wstate\n\t" \
126 : "r" (regs), "r" (sp - sizeof(struct reg_window) - STACK_BIAS), \
127 "i" ((const unsigned long)(&((struct pt_regs *)0)->u_regs[0]))); \
128 } while (0)
130 #define start_thread32(regs, pc, sp) \
131 do { \
132 unsigned long __asi = ASI_PNF; \
133 pc &= 0x00000000ffffffffUL; \
134 sp &= 0x00000000ffffffffUL; \
135 regs->tstate = (regs->tstate & (TSTATE_CWP))|(TSTATE_INITIAL_MM|TSTATE_IE|TSTATE_AM) | (__asi << 24UL); \
136 regs->tpc = ((pc & (~3)) - 4); \
137 regs->tnpc = regs->tpc + 4; \
138 regs->y = 0; \
139 set_thread_wstate(2 << 3); \
140 if (current_thread_info()->utraps) { \
141 if (*(current_thread_info()->utraps) < 2) \
142 kfree(current_thread_info()->utraps); \
143 else \
144 (*(current_thread_info()->utraps))--; \
145 current_thread_info()->utraps = NULL; \
147 __asm__ __volatile__( \
148 "stx %%g0, [%0 + %2 + 0x00]\n\t" \
149 "stx %%g0, [%0 + %2 + 0x08]\n\t" \
150 "stx %%g0, [%0 + %2 + 0x10]\n\t" \
151 "stx %%g0, [%0 + %2 + 0x18]\n\t" \
152 "stx %%g0, [%0 + %2 + 0x20]\n\t" \
153 "stx %%g0, [%0 + %2 + 0x28]\n\t" \
154 "stx %%g0, [%0 + %2 + 0x30]\n\t" \
155 "stx %%g0, [%0 + %2 + 0x38]\n\t" \
156 "stx %%g0, [%0 + %2 + 0x40]\n\t" \
157 "stx %%g0, [%0 + %2 + 0x48]\n\t" \
158 "stx %%g0, [%0 + %2 + 0x50]\n\t" \
159 "stx %%g0, [%0 + %2 + 0x58]\n\t" \
160 "stx %%g0, [%0 + %2 + 0x60]\n\t" \
161 "stx %%g0, [%0 + %2 + 0x68]\n\t" \
162 "stx %1, [%0 + %2 + 0x70]\n\t" \
163 "stx %%g0, [%0 + %2 + 0x78]\n\t" \
164 "wrpr %%g0, (2 << 3), %%wstate\n\t" \
166 : "r" (regs), "r" (sp - sizeof(struct reg_window32)), \
167 "i" ((const unsigned long)(&((struct pt_regs *)0)->u_regs[0]))); \
168 } while (0)
170 /* Free all resources held by a thread. */
171 #define release_thread(tsk) do { } while (0)
173 /* Prepare to copy thread state - unlazy all lazy status */
174 #define prepare_to_copy(tsk) do { } while (0)
176 extern pid_t kernel_thread(int (*fn)(void *), void * arg, unsigned long flags);
178 extern unsigned long get_wchan(struct task_struct *task);
180 #define task_pt_regs(tsk) (task_thread_info(tsk)->kregs)
181 #define KSTK_EIP(tsk) (task_pt_regs(tsk)->tpc)
182 #define KSTK_ESP(tsk) (task_pt_regs(tsk)->u_regs[UREG_FP])
184 #define cpu_relax() barrier()
186 /* Prefetch support. This is tuned for UltraSPARC-III and later.
187 * UltraSPARC-I will treat these as nops, and UltraSPARC-II has
188 * a shallower prefetch queue than later chips.
190 #define ARCH_HAS_PREFETCH
191 #define ARCH_HAS_PREFETCHW
192 #define ARCH_HAS_SPINLOCK_PREFETCH
194 static inline void prefetch(const void *x)
196 /* We do not use the read prefetch mnemonic because that
197 * prefetches into the prefetch-cache which only is accessible
198 * by floating point operations in UltraSPARC-III and later.
199 * By contrast, "#one_write" prefetches into the L2 cache
200 * in shared state.
202 __asm__ __volatile__("prefetch [%0], #one_write"
203 : /* no outputs */
204 : "r" (x));
207 static inline void prefetchw(const void *x)
209 /* The most optimal prefetch to use for writes is
210 * "#n_writes". This brings the cacheline into the
211 * L2 cache in "owned" state.
213 __asm__ __volatile__("prefetch [%0], #n_writes"
214 : /* no outputs */
215 : "r" (x));
218 #define spin_lock_prefetch(x) prefetchw(x)
220 #define HAVE_ARCH_PICK_MMAP_LAYOUT
222 #endif /* !(__ASSEMBLY__) */
224 #endif /* !(__ASM_SPARC64_PROCESSOR_H) */