Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/drzeus/mmc
[deliverable/linux.git] / include / asm-sh / processor.h
CommitLineData
1da177e4
LT
1/*
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_H
9#define __ASM_SH_PROCESSOR_H
10#ifdef __KERNEL__
11
f6dc8c5b 12#include <linux/compiler.h>
1da177e4
LT
13#include <asm/page.h>
14#include <asm/types.h>
15#include <asm/cache.h>
1da177e4 16#include <asm/ptrace.h>
315bb968 17#include <asm/cpu-features.h>
1da177e4
LT
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
30/*
31 * CPU type and hardware bug flags. Kept separately for each CPU.
32 *
33 * Each one of these also needs a CONFIG_CPU_SUBTYPE_xxx entry
de02797a 34 * in arch/sh/mm/Kconfig, as well as an entry in arch/sh/kernel/setup.c
1da177e4
LT
35 * for parsing the subtype in get_cpu_subtype().
36 */
37enum cpu_type {
38 /* SH-2 types */
b9601c5e 39 CPU_SH7619,
b229632a
YS
40
41 /* SH-2A types */
42 CPU_SH7206,
1da177e4
LT
43
44 /* SH-3 types */
e5723e0e
PM
45 CPU_SH7705, CPU_SH7706, CPU_SH7707,
46 CPU_SH7708, CPU_SH7708S, CPU_SH7708R,
9465a54f 47 CPU_SH7709, CPU_SH7709A, CPU_SH7710, CPU_SH7712,
d89ddd1c 48 CPU_SH7729,
1da177e4
LT
49
50 /* SH-4 types */
51 CPU_SH7750, CPU_SH7750S, CPU_SH7750R, CPU_SH7751, CPU_SH7751R,
52 CPU_SH7760, CPU_ST40RA, CPU_ST40GX1, CPU_SH4_202, CPU_SH4_501,
b552c7e8
PM
53
54 /* SH-4A types */
2b1bd1ac 55 CPU_SH7770, CPU_SH7780, CPU_SH7781, CPU_SH7785, CPU_SHX3,
41504c39
PM
56
57 /* SH4AL-DSP types */
870e8a24 58 CPU_SH7343, CPU_SH7722,
1da177e4
LT
59
60 /* Unknown subtype */
61 CPU_SH_NONE
62};
63
64struct sh_cpuinfo {
72c35543 65 unsigned int type;
1da177e4 66 unsigned long loops_per_jiffy;
aec5e0e1 67 unsigned long asid_cache;
1da177e4 68
72c35543
PM
69 struct cache_info icache; /* Primary I-cache */
70 struct cache_info dcache; /* Primary D-cache */
71 struct cache_info scache; /* Secondary cache */
1da177e4
LT
72
73 unsigned long flags;
72c35543 74} __attribute__ ((aligned(SMP_CACHE_BYTES)));
1da177e4
LT
75
76extern struct sh_cpuinfo boot_cpu_data;
77
78#ifdef CONFIG_SMP
79extern struct sh_cpuinfo cpu_data[];
80#define current_cpu_data cpu_data[smp_processor_id()]
81#else
82#define cpu_data (&boot_cpu_data)
83#define current_cpu_data boot_cpu_data
84#endif
85
86/*
87 * User space process size: 2GB.
88 *
89 * Since SH7709 and SH7750 have "area 7", we can't use 0x7c000000--0x7fffffff
90 */
91#define TASK_SIZE 0x7c000000UL
92
93/* This decides where the kernel will search for a free chunk of vm
94 * space during mmap's.
95 */
96#define TASK_UNMAPPED_BASE (TASK_SIZE / 3)
97
98/*
99 * Bit of SR register
100 *
101 * FD-bit:
102 * When it's set, it means the processor doesn't have right to use FPU,
103 * and it results exception when the floating operation is executed.
104 *
105 * IMASK-bit:
106 * Interrupt level mask
107 */
108#define SR_FD 0x00008000
109#define SR_DSP 0x00001000
110#define SR_IMASK 0x000000f0
111
112/*
113 * FPU structure and data
114 */
115
116struct sh_fpu_hard_struct {
117 unsigned long fp_regs[16];
118 unsigned long xfp_regs[16];
119 unsigned long fpscr;
120 unsigned long fpul;
121
122 long status; /* software status information */
123};
124
125/* Dummy fpu emulator */
126struct sh_fpu_soft_struct {
127 unsigned long fp_regs[16];
128 unsigned long xfp_regs[16];
129 unsigned long fpscr;
130 unsigned long fpul;
131
132 unsigned char lookahead;
133 unsigned long entry_pc;
134};
135
136union sh_fpu_union {
137 struct sh_fpu_hard_struct hard;
138 struct sh_fpu_soft_struct soft;
139};
140
1da177e4 141struct thread_struct {
b5a1bcbe 142 /* Saved registers when thread is descheduled */
1da177e4
LT
143 unsigned long sp;
144 unsigned long pc;
145
b5a1bcbe 146 /* Hardware debugging registers */
1da177e4
LT
147 unsigned long ubc_pc;
148
149 /* floating point info */
150 union sh_fpu_union fpu;
151};
152
2991be72
PM
153typedef struct {
154 unsigned long seg;
155} mm_segment_t;
156
1da177e4
LT
157/* Count of active tasks with UBC settings */
158extern int ubc_usercnt;
159
160#define INIT_THREAD { \
b5a1bcbe 161 .sp = sizeof(init_stack) + (long) &init_stack, \
1da177e4
LT
162}
163
164/*
165 * Do necessary setup to start up a newly executed thread.
166 */
167#define start_thread(regs, new_pc, new_sp) \
168 set_fs(USER_DS); \
de02797a 169 regs->pr = 0; \
1da177e4
LT
170 regs->sr = SR_FD; /* User mode. */ \
171 regs->pc = new_pc; \
172 regs->regs[15] = new_sp
173
174/* Forward declaration, a strange C thing */
175struct task_struct;
176struct mm_struct;
177
178/* Free all resources held by a thread. */
179extern void release_thread(struct task_struct *);
180
181/* Prepare to copy thread state - unlazy all lazy status */
182#define prepare_to_copy(tsk) do { } while (0)
183
184/*
185 * create a kernel thread without removing it from tasklists
186 */
187extern int kernel_thread(int (*fn)(void *), void * arg, unsigned long flags);
188
189/* Copy and release all segment info associated with a VM */
190#define copy_segments(p, mm) do { } while(0)
191#define release_segments(mm) do { } while(0)
192
193/*
194 * FPU lazy state save handling.
195 */
196
197static __inline__ void disable_fpu(void)
198{
199 unsigned long __dummy;
200
201 /* Set FD flag in SR */
202 __asm__ __volatile__("stc sr, %0\n\t"
203 "or %1, %0\n\t"
204 "ldc %0, sr"
205 : "=&r" (__dummy)
206 : "r" (SR_FD));
207}
208
209static __inline__ void enable_fpu(void)
210{
211 unsigned long __dummy;
212
213 /* Clear out FD flag in SR */
214 __asm__ __volatile__("stc sr, %0\n\t"
215 "and %1, %0\n\t"
216 "ldc %0, sr"
217 : "=&r" (__dummy)
218 : "r" (~SR_FD));
219}
220
221static __inline__ void release_fpu(struct pt_regs *regs)
222{
223 regs->sr |= SR_FD;
224}
225
226static __inline__ void grab_fpu(struct pt_regs *regs)
227{
228 regs->sr &= ~SR_FD;
229}
230
1da177e4 231extern void save_fpu(struct task_struct *__tsk, struct pt_regs *regs);
1da177e4 232
de02797a 233#define unlazy_fpu(tsk, regs) do { \
1da177e4 234 if (test_tsk_thread_flag(tsk, TIF_USEDFPU)) { \
de02797a 235 save_fpu(tsk, regs); \
1da177e4
LT
236 } \
237} while (0)
238
de02797a
PM
239#define clear_fpu(tsk, regs) do { \
240 if (test_tsk_thread_flag(tsk, TIF_USEDFPU)) { \
241 clear_tsk_thread_flag(tsk, TIF_USEDFPU); \
242 release_fpu(regs); \
1da177e4
LT
243 } \
244} while (0)
245
246/* Double presision, NANS as NANS, rounding to nearest, no exceptions */
247#define FPSCR_INIT 0x00080000
248
249#define FPSCR_CAUSE_MASK 0x0001f000 /* Cause bits */
250#define FPSCR_FLAG_MASK 0x0000007c /* Flag bits */
251
252/*
253 * Return saved PC of a blocked thread.
254 */
255#define thread_saved_pc(tsk) (tsk->thread.pc)
256
6b002230
PM
257void show_trace(struct task_struct *tsk, unsigned long *sp,
258 struct pt_regs *regs);
1da177e4
LT
259extern unsigned long get_wchan(struct task_struct *p);
260
c9f0b1c1
SM
261#define KSTK_EIP(tsk) (task_pt_regs(tsk)->pc)
262#define KSTK_ESP(tsk) (task_pt_regs(tsk)->regs[15])
1da177e4
LT
263
264#define cpu_sleep() __asm__ __volatile__ ("sleep" : : : "memory")
f6dc8c5b 265#define cpu_relax() barrier()
1da177e4 266
e86d6b66
PM
267#if defined(CONFIG_CPU_SH2A) || defined(CONFIG_CPU_SH3) || \
268 defined(CONFIG_CPU_SH4)
269#define PREFETCH_STRIDE L1_CACHE_BYTES
270#define ARCH_HAS_PREFETCH
271#define ARCH_HAS_PREFETCHW
272static inline void prefetch(void *x)
273{
274 __asm__ __volatile__ ("pref @%0\n\t" : : "r" (x) : "memory");
275}
276
277#define prefetchw(x) prefetch(x)
278#endif
279
19f9a34f
PM
280#ifdef CONFIG_VSYSCALL
281extern int vsyscall_init(void);
282#else
283#define vsyscall_init() do { } while (0)
284#endif
285
11c19656
PM
286/* arch/sh/kernel/setup.c */
287const char *get_cpu_subtype(struct sh_cpuinfo *c);
288
1da177e4
LT
289#endif /* __KERNEL__ */
290#endif /* __ASM_SH_PROCESSOR_H */
This page took 0.369791 seconds and 5 git commands to generate.