1
2
3
4
5
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 <linux/linkage.h>
14#include <asm/page.h>
15#include <asm/types.h>
16#include <asm/ptrace.h>
17
18
19
20
21
22#define current_text_addr() ({ void *pc; __asm__("mova 1f, %0\n.align 2\n1:":"=z" (pc)); pc; })
23
24
25#define CCN_PVR 0xff000030
26#define CCN_CVR 0xff000040
27#define CCN_PRR 0xff000044
28
29asmlinkage void __init sh_cpu_init(void);
30
31
32
33
34
35
36#define TASK_SIZE 0x7c000000UL
37
38#define STACK_TOP TASK_SIZE
39#define STACK_TOP_MAX STACK_TOP
40
41
42
43
44#define TASK_UNMAPPED_BASE (TASK_SIZE / 3)
45
46
47
48
49
50
51
52
53
54
55
56#define SR_DSP 0x00001000
57#define SR_IMASK 0x000000f0
58#define SR_FD 0x00008000
59
60
61
62
63struct sh_dsp_struct {
64 unsigned long dsp_regs[14];
65 long status;
66};
67
68
69
70
71
72struct sh_fpu_hard_struct {
73 unsigned long fp_regs[16];
74 unsigned long xfp_regs[16];
75 unsigned long fpscr;
76 unsigned long fpul;
77
78 long status;
79};
80
81
82struct sh_fpu_soft_struct {
83 unsigned long fp_regs[16];
84 unsigned long xfp_regs[16];
85 unsigned long fpscr;
86 unsigned long fpul;
87
88 unsigned char lookahead;
89 unsigned long entry_pc;
90};
91
92union sh_fpu_union {
93 struct sh_fpu_hard_struct hard;
94 struct sh_fpu_soft_struct soft;
95};
96
97struct thread_struct {
98
99 unsigned long sp;
100 unsigned long pc;
101
102
103 unsigned long ubc_pc;
104
105
106 union sh_fpu_union fpu;
107
108#ifdef CONFIG_SH_DSP
109
110 struct sh_dsp_struct dsp_status;
111#endif
112};
113
114
115extern int ubc_usercnt;
116
117#define INIT_THREAD { \
118 .sp = sizeof(init_stack) + (long) &init_stack, \
119}
120
121
122
123
124#define start_thread(_regs, new_pc, new_sp) \
125 set_fs(USER_DS); \
126 _regs->pr = 0; \
127 _regs->sr = SR_FD; \
128 _regs->pc = new_pc; \
129 _regs->regs[15] = new_sp
130
131
132struct task_struct;
133struct mm_struct;
134
135
136extern void release_thread(struct task_struct *);
137
138
139#define prepare_to_copy(tsk) do { } while (0)
140
141
142
143
144extern int kernel_thread(int (*fn)(void *), void * arg, unsigned long flags);
145
146
147#define copy_segments(p, mm) do { } while(0)
148#define release_segments(mm) do { } while(0)
149
150
151
152
153
154static __inline__ void disable_fpu(void)
155{
156 unsigned long __dummy;
157
158
159 __asm__ __volatile__("stc sr, %0\n\t"
160 "or %1, %0\n\t"
161 "ldc %0, sr"
162 : "=&r" (__dummy)
163 : "r" (SR_FD));
164}
165
166static __inline__ void enable_fpu(void)
167{
168 unsigned long __dummy;
169
170
171 __asm__ __volatile__("stc sr, %0\n\t"
172 "and %1, %0\n\t"
173 "ldc %0, sr"
174 : "=&r" (__dummy)
175 : "r" (~SR_FD));
176}
177
178
179#define FPSCR_INIT 0x00080000
180
181#define FPSCR_CAUSE_MASK 0x0001f000
182#define FPSCR_FLAG_MASK 0x0000007c
183
184
185
186
187#define thread_saved_pc(tsk) (tsk->thread.pc)
188
189void show_trace(struct task_struct *tsk, unsigned long *sp,
190 struct pt_regs *regs);
191
192#ifdef CONFIG_DUMP_CODE
193void show_code(struct pt_regs *regs);
194#else
195static inline void show_code(struct pt_regs *regs)
196{
197}
198#endif
199
200extern unsigned long get_wchan(struct task_struct *p);
201
202#define KSTK_EIP(tsk) (task_pt_regs(tsk)->pc)
203#define KSTK_ESP(tsk) (task_pt_regs(tsk)->regs[15])
204
205#define user_stack_pointer(_regs) ((_regs)->regs[15])
206
207#if defined(CONFIG_CPU_SH2A) || defined(CONFIG_CPU_SH4)
208#define PREFETCH_STRIDE L1_CACHE_BYTES
209#define ARCH_HAS_PREFETCH
210#define ARCH_HAS_PREFETCHW
211static inline void prefetch(void *x)
212{
213 __asm__ __volatile__ ("pref @%0\n\t" : : "r" (x) : "memory");
214}
215
216#define prefetchw(x) prefetch(x)
217#endif
218
219#endif
220#endif
221