1#ifndef __ASM_SH64_PROCESSOR_H
2#define __ASM_SH64_PROCESSOR_H
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17#include <asm/page.h>
18
19#ifndef __ASSEMBLY__
20
21#include <asm/types.h>
22#include <asm/cache.h>
23#include <asm/registers.h>
24#include <linux/threads.h>
25#include <linux/compiler.h>
26
27
28
29
30
31#define current_text_addr() ({ \
32void *pc; \
33unsigned long long __dummy = 0; \
34__asm__("gettr tr0, %1\n\t" \
35 "pta 4, tr0\n\t" \
36 "gettr tr0, %0\n\t" \
37 "ptabs %1, tr0\n\t" \
38 :"=r" (pc), "=r" (__dummy) \
39 : "1" (__dummy)); \
40pc; })
41
42
43
44
45enum cpu_type {
46 CPU_SH5_101,
47 CPU_SH5_103,
48 CPU_SH_NONE
49};
50
51
52
53
54
55
56struct tlb_info {
57 unsigned long long next;
58 unsigned long long first;
59 unsigned long long last;
60
61 unsigned int entries;
62 unsigned int step;
63
64 unsigned long flags;
65};
66
67struct sh_cpuinfo {
68 enum cpu_type type;
69 unsigned long loops_per_jiffy;
70
71 char hard_math;
72
73 unsigned long *pgd_quick;
74 unsigned long *pmd_quick;
75 unsigned long *pte_quick;
76 unsigned long pgtable_cache_sz;
77 unsigned int cpu_clock, master_clock, bus_clock, module_clock;
78
79
80 struct cache_info icache;
81 struct cache_info dcache;
82
83
84 struct tlb_info itlb;
85 struct tlb_info dtlb;
86};
87
88extern struct sh_cpuinfo boot_cpu_data;
89
90#define cpu_data (&boot_cpu_data)
91#define current_cpu_data boot_cpu_data
92
93#endif
94
95
96
97
98#define TASK_SIZE 0x7ffff000UL
99
100
101
102
103#define TASK_UNMAPPED_BASE (TASK_SIZE / 3)
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119#define SR_FD 0x00008000
120
121#if defined(CONFIG_SH64_SR_WATCH)
122#define SR_MMU 0x84000000
123#else
124#define SR_MMU 0x80000000
125#endif
126
127#define SR_IMASK 0x000000f0
128#define SR_SSTEP 0x08000000
129
130#ifndef __ASSEMBLY__
131
132
133
134
135
136
137struct sh_fpu_hard_struct {
138 unsigned long fp_regs[64];
139 unsigned int fpscr;
140
141};
142
143#if 0
144
145struct sh_fpu_soft_struct {
146 unsigned long long fp_regs[32];
147 unsigned int fpscr;
148 unsigned char lookahead;
149 unsigned long entry_pc;
150};
151#endif
152
153union sh_fpu_union {
154 struct sh_fpu_hard_struct hard;
155
156
157 unsigned long long alignment_dummy;
158};
159
160struct thread_struct {
161 unsigned long sp;
162 unsigned long pc;
163
164
165
166
167 struct pt_regs *kregs;
168
169
170
171 struct pt_regs *uregs;
172
173 unsigned long trap_no, error_code;
174 unsigned long address;
175
176
177
178 union sh_fpu_union fpu;
179};
180
181#define INIT_MMAP \
182{ &init_mm, 0, 0, NULL, PAGE_SHARED, VM_READ | VM_WRITE | VM_EXEC, 1, NULL, NULL }
183
184extern struct pt_regs fake_swapper_regs;
185
186#define INIT_THREAD { \
187 .sp = sizeof(init_stack) + \
188 (long) &init_stack, \
189 .pc = 0, \
190 .kregs = &fake_swapper_regs, \
191 .uregs = NULL, \
192 .trap_no = 0, \
193 .error_code = 0, \
194 .address = 0, \
195 .fpu = { { { 0, } }, } \
196}
197
198
199
200
201#define SR_USER (SR_MMU | SR_FD)
202
203#define start_thread(regs, new_pc, new_sp) \
204 set_fs(USER_DS); \
205 regs->sr = SR_USER; \
206 regs->pc = new_pc - 4; \
207 regs->pc |= 1; \
208 regs->regs[18] = 0; \
209 regs->regs[15] = new_sp
210
211
212struct task_struct;
213struct mm_struct;
214
215
216extern void release_thread(struct task_struct *);
217
218
219
220extern int kernel_thread(int (*fn)(void *), void * arg, unsigned long flags);
221
222
223
224#define copy_segments(p, mm) do { } while (0)
225#define release_segments(mm) do { } while (0)
226#define forget_segments() do { } while (0)
227#define prepare_to_copy(tsk) do { } while (0)
228
229
230
231
232static inline void release_fpu(void)
233{
234 unsigned long long __dummy;
235
236
237 __asm__ __volatile__("getcon " __SR ", %0\n\t"
238 "or %0, %1, %0\n\t"
239 "putcon %0, " __SR "\n\t"
240 : "=&r" (__dummy)
241 : "r" (SR_FD));
242}
243
244static inline void grab_fpu(void)
245{
246 unsigned long long __dummy;
247
248
249 __asm__ __volatile__("getcon " __SR ", %0\n\t"
250 "and %0, %1, %0\n\t"
251 "putcon %0, " __SR "\n\t"
252 : "=&r" (__dummy)
253 : "r" (~SR_FD));
254}
255
256
257
258
259#if defined(CONFIG_SH64_FPU_DENORM_FLUSH)
260#define FPSCR_INIT 0x00040000
261#else
262#define FPSCR_INIT 0x00000000
263#endif
264
265
266void fpsave(struct sh_fpu_hard_struct *fpregs);
267
268
269void fpinit(struct sh_fpu_hard_struct *fpregs);
270
271extern struct task_struct *last_task_used_math;
272
273
274
275
276#define thread_saved_pc(tsk) (tsk->thread.pc)
277
278extern unsigned long get_wchan(struct task_struct *p);
279
280#define KSTK_EIP(tsk) ((tsk)->thread.pc)
281#define KSTK_ESP(tsk) ((tsk)->thread.sp)
282
283#define cpu_relax() barrier()
284
285#endif
286#endif
287
288