]> git.karo-electronics.de Git - mv-sheeva.git/blob - include/asm-sh/processor.h
sh: Add SH-2A platform headers.
[mv-sheeva.git] / include / asm-sh / processor.h
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
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
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
34  *  in arch/sh/mm/Kconfig, as well as an entry in arch/sh/kernel/setup.c
35  *  for parsing the subtype in get_cpu_subtype().
36  */
37 enum cpu_type {
38         /* SH-2 types */
39         CPU_SH7604, CPU_SH7619,
40
41         /* SH-2A types */
42         CPU_SH7206,
43
44         /* SH-3 types */
45         CPU_SH7705, CPU_SH7706, CPU_SH7707,
46         CPU_SH7708, CPU_SH7708S, CPU_SH7708R,
47         CPU_SH7709, CPU_SH7709A, CPU_SH7710,
48         CPU_SH7729, CPU_SH7300,
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,
53         CPU_SH73180, CPU_SH7343, CPU_SH7770, CPU_SH7780, CPU_SH7781,
54
55         /* Unknown subtype */
56         CPU_SH_NONE
57 };
58
59 struct sh_cpuinfo {
60         unsigned int type;
61         unsigned long loops_per_jiffy;
62
63         struct cache_info icache;       /* Primary I-cache */
64         struct cache_info dcache;       /* Primary D-cache */
65         struct cache_info scache;       /* Secondary cache */
66
67         unsigned long flags;
68 } __attribute__ ((aligned(SMP_CACHE_BYTES)));
69
70 extern struct sh_cpuinfo boot_cpu_data;
71
72 #ifdef CONFIG_SMP
73 extern struct sh_cpuinfo cpu_data[];
74 #define current_cpu_data cpu_data[smp_processor_id()]
75 #else
76 #define cpu_data (&boot_cpu_data)
77 #define current_cpu_data boot_cpu_data
78 #endif
79
80 /*
81  * User space process size: 2GB.
82  *
83  * Since SH7709 and SH7750 have "area 7", we can't use 0x7c000000--0x7fffffff
84  */
85 #define TASK_SIZE       0x7c000000UL
86
87 /* This decides where the kernel will search for a free chunk of vm
88  * space during mmap's.
89  */
90 #define TASK_UNMAPPED_BASE      (TASK_SIZE / 3)
91
92 /*
93  * Bit of SR register
94  *
95  * FD-bit:
96  *     When it's set, it means the processor doesn't have right to use FPU,
97  *     and it results exception when the floating operation is executed.
98  *
99  * IMASK-bit:
100  *     Interrupt level mask
101  */
102 #define SR_FD           0x00008000
103 #define SR_DSP          0x00001000
104 #define SR_IMASK        0x000000f0
105
106 /*
107  * FPU structure and data
108  */
109
110 struct sh_fpu_hard_struct {
111         unsigned long fp_regs[16];
112         unsigned long xfp_regs[16];
113         unsigned long fpscr;
114         unsigned long fpul;
115
116         long status; /* software status information */
117 };
118
119 /* Dummy fpu emulator  */
120 struct sh_fpu_soft_struct {
121         unsigned long fp_regs[16];
122         unsigned long xfp_regs[16];
123         unsigned long fpscr;
124         unsigned long fpul;
125
126         unsigned char lookahead;
127         unsigned long entry_pc;
128 };
129
130 union sh_fpu_union {
131         struct sh_fpu_hard_struct hard;
132         struct sh_fpu_soft_struct soft;
133 };
134
135 struct thread_struct {
136         unsigned long sp;
137         unsigned long pc;
138
139         unsigned long trap_no, error_code;
140         unsigned long address;
141         /* Hardware debugging registers may come here */
142         unsigned long ubc_pc;
143
144         /* floating point info */
145         union sh_fpu_union fpu;
146 };
147
148 typedef struct {
149         unsigned long seg;
150 } mm_segment_t;
151
152 /* Count of active tasks with UBC settings */
153 extern int ubc_usercnt;
154
155 #define INIT_THREAD  {                                          \
156         sizeof(init_stack) + (long) &init_stack, /* sp */       \
157         0,                                       /* pc */       \
158         0, 0,                                                   \
159         0,                                                      \
160         0,                                                      \
161         {{{0,}},}                               /* fpu state */ \
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);                         \
169         regs->pr = 0;                            \
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 */
175 struct task_struct;
176 struct mm_struct;
177
178 /* Free all resources held by a thread. */
179 extern 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  */
187 extern 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
197 static __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
209 static __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
221 static __inline__ void release_fpu(struct pt_regs *regs)
222 {
223         regs->sr |= SR_FD;
224 }
225
226 static __inline__ void grab_fpu(struct pt_regs *regs)
227 {
228         regs->sr &= ~SR_FD;
229 }
230
231 #ifdef CONFIG_CPU_SH4
232 extern void save_fpu(struct task_struct *__tsk, struct pt_regs *regs);
233 #else
234 #define save_fpu(tsk)   do { } while (0)
235 #endif
236
237 #define unlazy_fpu(tsk, regs) do {                      \
238         if (test_tsk_thread_flag(tsk, TIF_USEDFPU)) {   \
239                 save_fpu(tsk, regs);                    \
240         }                                               \
241 } while (0)
242
243 #define clear_fpu(tsk, regs) do {                               \
244         if (test_tsk_thread_flag(tsk, TIF_USEDFPU)) {           \
245                 clear_tsk_thread_flag(tsk, TIF_USEDFPU);        \
246                 release_fpu(regs);                              \
247         }                                                       \
248 } while (0)
249
250 /* Double presision, NANS as NANS, rounding to nearest, no exceptions */
251 #define FPSCR_INIT  0x00080000
252
253 #define FPSCR_CAUSE_MASK        0x0001f000      /* Cause bits */
254 #define FPSCR_FLAG_MASK         0x0000007c      /* Flag bits */
255
256 /*
257  * Return saved PC of a blocked thread.
258  */
259 #define thread_saved_pc(tsk)    (tsk->thread.pc)
260
261 void show_trace(struct task_struct *tsk, unsigned long *sp,
262                 struct pt_regs *regs);
263 extern unsigned long get_wchan(struct task_struct *p);
264
265 #define KSTK_EIP(tsk)  ((tsk)->thread.pc)
266 #define KSTK_ESP(tsk)  ((tsk)->thread.sp)
267
268 #define cpu_sleep()     __asm__ __volatile__ ("sleep" : : : "memory")
269 #define cpu_relax()     barrier()
270
271 #if defined(CONFIG_CPU_SH2A) || defined(CONFIG_CPU_SH3) || \
272     defined(CONFIG_CPU_SH4)
273 #define PREFETCH_STRIDE         L1_CACHE_BYTES
274 #define ARCH_HAS_PREFETCH
275 #define ARCH_HAS_PREFETCHW
276 static inline void prefetch(void *x)
277 {
278         __asm__ __volatile__ ("pref @%0\n\t" : : "r" (x) : "memory");
279 }
280
281 #define prefetchw(x)    prefetch(x)
282 #endif
283
284 #ifdef CONFIG_VSYSCALL
285 extern int vsyscall_init(void);
286 #else
287 #define vsyscall_init() do { } while (0)
288 #endif
289
290 #endif /* __KERNEL__ */
291 #endif /* __ASM_SH_PROCESSOR_H */