blob: e10d0ee0c22bc7aa5075a821e72214487b479bc3 [file] [log] [blame]
Paul Mundtaf3c7df2007-11-09 17:08:54 +09001/*
2 * include/asm-sh/processor.h
3 *
4 * Copyright (C) 1999, 2000 Niibe Yutaka
5 * Copyright (C) 2002, 2003 Paul Mundt
6 */
7
8#ifndef __ASM_SH_PROCESSOR_32_H
9#define __ASM_SH_PROCESSOR_32_H
10#ifdef __KERNEL__
11
12#include <linux/compiler.h>
13#include <asm/page.h>
14#include <asm/types.h>
15#include <asm/cache.h>
16#include <asm/ptrace.h>
17#include <asm/cpu-features.h>
18
19/*
20 * Default implementation of macro that returns current
21 * instruction pointer ("program counter").
22 */
23#define current_text_addr() ({ void *pc; __asm__("mova 1f, %0\n1:":"=z" (pc)); pc; })
24
25/* Core Processor Version Register */
26#define CCN_PVR 0xff000030
27#define CCN_CVR 0xff000040
28#define CCN_PRR 0xff000044
29
30struct sh_cpuinfo {
31 unsigned int type;
32 unsigned long loops_per_jiffy;
33 unsigned long asid_cache;
34
35 struct cache_info icache; /* Primary I-cache */
36 struct cache_info dcache; /* Primary D-cache */
37 struct cache_info scache; /* Secondary cache */
38
39 unsigned long flags;
40} __attribute__ ((aligned(L1_CACHE_BYTES)));
41
42extern struct sh_cpuinfo cpu_data[];
43#define boot_cpu_data cpu_data[0]
44#define current_cpu_data cpu_data[smp_processor_id()]
45#define raw_current_cpu_data cpu_data[raw_smp_processor_id()]
46
47/*
48 * User space process size: 2GB.
49 *
50 * Since SH7709 and SH7750 have "area 7", we can't use 0x7c000000--0x7fffffff
51 */
52#define TASK_SIZE 0x7c000000UL
53
54/* This decides where the kernel will search for a free chunk of vm
55 * space during mmap's.
56 */
57#define TASK_UNMAPPED_BASE (TASK_SIZE / 3)
58
59/*
60 * Bit of SR register
61 *
62 * FD-bit:
63 * When it's set, it means the processor doesn't have right to use FPU,
64 * and it results exception when the floating operation is executed.
65 *
66 * IMASK-bit:
67 * Interrupt level mask
68 */
69#define SR_FD 0x00008000
70#define SR_DSP 0x00001000
71#define SR_IMASK 0x000000f0
72
73/*
74 * FPU structure and data
75 */
76
77struct sh_fpu_hard_struct {
78 unsigned long fp_regs[16];
79 unsigned long xfp_regs[16];
80 unsigned long fpscr;
81 unsigned long fpul;
82
83 long status; /* software status information */
84};
85
86/* Dummy fpu emulator */
87struct sh_fpu_soft_struct {
88 unsigned long fp_regs[16];
89 unsigned long xfp_regs[16];
90 unsigned long fpscr;
91 unsigned long fpul;
92
93 unsigned char lookahead;
94 unsigned long entry_pc;
95};
96
97union sh_fpu_union {
98 struct sh_fpu_hard_struct hard;
99 struct sh_fpu_soft_struct soft;
100};
101
102struct thread_struct {
103 /* Saved registers when thread is descheduled */
104 unsigned long sp;
105 unsigned long pc;
106
107 /* Hardware debugging registers */
108 unsigned long ubc_pc;
109
110 /* floating point info */
111 union sh_fpu_union fpu;
112};
113
114typedef struct {
115 unsigned long seg;
116} mm_segment_t;
117
118/* Count of active tasks with UBC settings */
119extern int ubc_usercnt;
120
121#define INIT_THREAD { \
122 .sp = sizeof(init_stack) + (long) &init_stack, \
123}
124
125/*
126 * Do necessary setup to start up a newly executed thread.
127 */
128#define start_thread(regs, new_pc, new_sp) \
129 set_fs(USER_DS); \
130 regs->pr = 0; \
131 regs->sr = SR_FD; /* User mode. */ \
132 regs->pc = new_pc; \
133 regs->regs[15] = new_sp
134
135/* Forward declaration, a strange C thing */
136struct task_struct;
137struct mm_struct;
138
139/* Free all resources held by a thread. */
140extern void release_thread(struct task_struct *);
141
142/* Prepare to copy thread state - unlazy all lazy status */
143#define prepare_to_copy(tsk) do { } while (0)
144
145/*
146 * create a kernel thread without removing it from tasklists
147 */
148extern int kernel_thread(int (*fn)(void *), void * arg, unsigned long flags);
149
150/* Copy and release all segment info associated with a VM */
151#define copy_segments(p, mm) do { } while(0)
152#define release_segments(mm) do { } while(0)
153
154/*
155 * FPU lazy state save handling.
156 */
157
158static __inline__ void disable_fpu(void)
159{
160 unsigned long __dummy;
161
162 /* Set FD flag in SR */
163 __asm__ __volatile__("stc sr, %0\n\t"
164 "or %1, %0\n\t"
165 "ldc %0, sr"
166 : "=&r" (__dummy)
167 : "r" (SR_FD));
168}
169
170static __inline__ void enable_fpu(void)
171{
172 unsigned long __dummy;
173
174 /* Clear out FD flag in SR */
175 __asm__ __volatile__("stc sr, %0\n\t"
176 "and %1, %0\n\t"
177 "ldc %0, sr"
178 : "=&r" (__dummy)
179 : "r" (~SR_FD));
180}
181
182static __inline__ void release_fpu(struct pt_regs *regs)
183{
184 regs->sr |= SR_FD;
185}
186
187static __inline__ void grab_fpu(struct pt_regs *regs)
188{
189 regs->sr &= ~SR_FD;
190}
191
192extern void save_fpu(struct task_struct *__tsk, struct pt_regs *regs);
193
194#define unlazy_fpu(tsk, regs) do { \
195 if (test_tsk_thread_flag(tsk, TIF_USEDFPU)) { \
196 save_fpu(tsk, regs); \
197 } \
198} while (0)
199
200#define clear_fpu(tsk, regs) do { \
201 if (test_tsk_thread_flag(tsk, TIF_USEDFPU)) { \
202 clear_tsk_thread_flag(tsk, TIF_USEDFPU); \
203 release_fpu(regs); \
204 } \
205} while (0)
206
207/* Double presision, NANS as NANS, rounding to nearest, no exceptions */
208#define FPSCR_INIT 0x00080000
209
210#define FPSCR_CAUSE_MASK 0x0001f000 /* Cause bits */
211#define FPSCR_FLAG_MASK 0x0000007c /* Flag bits */
212
213/*
214 * Return saved PC of a blocked thread.
215 */
216#define thread_saved_pc(tsk) (tsk->thread.pc)
217
218void show_trace(struct task_struct *tsk, unsigned long *sp,
219 struct pt_regs *regs);
220extern unsigned long get_wchan(struct task_struct *p);
221
222#define KSTK_EIP(tsk) (task_pt_regs(tsk)->pc)
223#define KSTK_ESP(tsk) (task_pt_regs(tsk)->regs[15])
224
225#define cpu_sleep() __asm__ __volatile__ ("sleep" : : : "memory")
226#define cpu_relax() barrier()
227
228#if defined(CONFIG_CPU_SH2A) || defined(CONFIG_CPU_SH3) || \
229 defined(CONFIG_CPU_SH4)
230#define PREFETCH_STRIDE L1_CACHE_BYTES
231#define ARCH_HAS_PREFETCH
232#define ARCH_HAS_PREFETCHW
233static inline void prefetch(void *x)
234{
235 __asm__ __volatile__ ("pref @%0\n\t" : : "r" (x) : "memory");
236}
237
238#define prefetchw(x) prefetch(x)
239#endif
240
241#ifdef CONFIG_VSYSCALL
242extern int vsyscall_init(void);
243#else
244#define vsyscall_init() do { } while (0)
245#endif
246
247#endif /* __KERNEL__ */
248#endif /* __ASM_SH_PROCESSOR_32_H */