sh: More SH-5 cpuinfo tidying.
[safe/jmp/linux-2.6] / include / asm-sh / processor_64.h
1 #ifndef __ASM_SH_PROCESSOR_64_H
2 #define __ASM_SH_PROCESSOR_64_H
3
4 /*
5  * include/asm-sh/processor_64.h
6  *
7  * Copyright (C) 2000, 2001  Paolo Alberelli
8  * Copyright (C) 2003  Paul Mundt
9  * Copyright (C) 2004  Richard Curnow
10  *
11  * This file is subject to the terms and conditions of the GNU General Public
12  * License.  See the file "COPYING" in the main directory of this archive
13  * for more details.
14  */
15 #ifndef __ASSEMBLY__
16
17 #include <linux/compiler.h>
18 #include <asm/page.h>
19 #include <asm/types.h>
20 #include <asm/cache.h>
21 #include <asm/cpu/registers.h>
22
23 /*
24  * Default implementation of macro that returns current
25  * instruction pointer ("program counter").
26  */
27 #define current_text_addr() ({ \
28 void *pc; \
29 unsigned long long __dummy = 0; \
30 __asm__("gettr  tr0, %1\n\t" \
31         "pta    4, tr0\n\t" \
32         "gettr  tr0, %0\n\t" \
33         "ptabs  %1, tr0\n\t"    \
34         :"=r" (pc), "=r" (__dummy) \
35         : "1" (__dummy)); \
36 pc; })
37
38 /*
39  * TLB information structure
40  *
41  * Defined for both I and D tlb, per-processor.
42  */
43 struct tlb_info {
44         unsigned long long next;
45         unsigned long long first;
46         unsigned long long last;
47
48         unsigned int entries;
49         unsigned int step;
50
51         unsigned long flags;
52 };
53
54 struct sh_cpuinfo {
55         enum cpu_type type;
56         unsigned long loops_per_jiffy;
57         unsigned long asid_cache;
58
59         unsigned int cpu_clock, master_clock, bus_clock, module_clock;
60
61         /* Cache info */
62         struct cache_info icache;
63         struct cache_info dcache;
64         struct cache_info scache;
65
66         /* TLB info */
67         struct tlb_info itlb;
68         struct tlb_info dtlb;
69
70         unsigned long flags;
71 };
72
73 extern struct sh_cpuinfo cpu_data[];
74 #define boot_cpu_data cpu_data[0]
75 #define current_cpu_data cpu_data[smp_processor_id()]
76 #define raw_current_cpu_data cpu_data[raw_smp_processor_id()]
77
78 #endif
79
80 /*
81  * User space process size: 2GB - 4k.
82  */
83 #define TASK_SIZE       0x7ffff000UL
84
85 /* This decides where the kernel will search for a free chunk of vm
86  * space during mmap's.
87  */
88 #define TASK_UNMAPPED_BASE      (TASK_SIZE / 3)
89
90 /*
91  * Bit of SR register
92  *
93  * FD-bit:
94  *     When it's set, it means the processor doesn't have right to use FPU,
95  *     and it results exception when the floating operation is executed.
96  *
97  * IMASK-bit:
98  *     Interrupt level mask
99  *
100  * STEP-bit:
101  *     Single step bit
102  *
103  */
104 #define SR_FD    0x00008000
105
106 #if defined(CONFIG_SH64_SR_WATCH)
107 #define SR_MMU   0x84000000
108 #else
109 #define SR_MMU   0x80000000
110 #endif
111
112 #define SR_IMASK 0x000000f0
113 #define SR_SSTEP 0x08000000
114
115 #ifndef __ASSEMBLY__
116
117 /*
118  * FPU structure and data : require 8-byte alignment as we need to access it
119    with fld.p, fst.p
120  */
121
122 struct sh_fpu_hard_struct {
123         unsigned long fp_regs[64];
124         unsigned int fpscr;
125         /* long status; * software status information */
126 };
127
128 #if 0
129 /* Dummy fpu emulator  */
130 struct sh_fpu_soft_struct {
131         unsigned long long fp_regs[32];
132         unsigned int fpscr;
133         unsigned char lookahead;
134         unsigned long entry_pc;
135 };
136 #endif
137
138 union sh_fpu_union {
139         struct sh_fpu_hard_struct hard;
140         /* 'hard' itself only produces 32 bit alignment, yet we need
141            to access it using 64 bit load/store as well. */
142         unsigned long long alignment_dummy;
143 };
144
145 struct thread_struct {
146         unsigned long sp;
147         unsigned long pc;
148         /* This stores the address of the pt_regs built during a context
149            switch, or of the register save area built for a kernel mode
150            exception.  It is used for backtracing the stack of a sleeping task
151            or one that traps in kernel mode. */
152         struct pt_regs *kregs;
153         /* This stores the address of the pt_regs constructed on entry from
154            user mode.  It is a fixed value over the lifetime of a process, or
155            NULL for a kernel thread. */
156         struct pt_regs *uregs;
157
158         unsigned long trap_no, error_code;
159         unsigned long address;
160         /* Hardware debugging registers may come here */
161
162         /* floating point info */
163         union sh_fpu_union fpu;
164 };
165
166 typedef struct {
167         unsigned long seg;
168 } mm_segment_t;
169
170 #define INIT_MMAP \
171 { &init_mm, 0, 0, NULL, PAGE_SHARED, VM_READ | VM_WRITE | VM_EXEC, 1, NULL, NULL }
172
173 extern  struct pt_regs fake_swapper_regs;
174
175 #define INIT_THREAD  {                          \
176         .sp             = sizeof(init_stack) +  \
177                           (long) &init_stack,   \
178         .pc             = 0,                    \
179         .kregs          = &fake_swapper_regs,   \
180         .uregs          = NULL,                 \
181         .trap_no        = 0,                    \
182         .error_code     = 0,                    \
183         .address        = 0,                    \
184         .fpu            = { { { 0, } }, }       \
185 }
186
187 /*
188  * Do necessary setup to start up a newly executed thread.
189  */
190 #define SR_USER (SR_MMU | SR_FD)
191
192 #define start_thread(regs, new_pc, new_sp)                      \
193         set_fs(USER_DS);                                        \
194         regs->sr = SR_USER;     /* User mode. */                \
195         regs->pc = new_pc - 4;  /* Compensate syscall exit */   \
196         regs->pc |= 1;          /* Set SHmedia ! */             \
197         regs->regs[18] = 0;                                     \
198         regs->regs[15] = new_sp
199
200 /* Forward declaration, a strange C thing */
201 struct task_struct;
202 struct mm_struct;
203
204 /* Free all resources held by a thread. */
205 extern void release_thread(struct task_struct *);
206 /*
207  * create a kernel thread without removing it from tasklists
208  */
209 extern int kernel_thread(int (*fn)(void *), void * arg, unsigned long flags);
210
211
212 /* Copy and release all segment info associated with a VM */
213 #define copy_segments(p, mm)    do { } while (0)
214 #define release_segments(mm)    do { } while (0)
215 #define forget_segments()       do { } while (0)
216 #define prepare_to_copy(tsk)    do { } while (0)
217 /*
218  * FPU lazy state save handling.
219  */
220
221 static inline void release_fpu(void)
222 {
223         unsigned long long __dummy;
224
225         /* Set FD flag in SR */
226         __asm__ __volatile__("getcon    " __SR ", %0\n\t"
227                              "or        %0, %1, %0\n\t"
228                              "putcon    %0, " __SR "\n\t"
229                              : "=&r" (__dummy)
230                              : "r" (SR_FD));
231 }
232
233 static inline void grab_fpu(void)
234 {
235         unsigned long long __dummy;
236
237         /* Clear out FD flag in SR */
238         __asm__ __volatile__("getcon    " __SR ", %0\n\t"
239                              "and       %0, %1, %0\n\t"
240                              "putcon    %0, " __SR "\n\t"
241                              : "=&r" (__dummy)
242                              : "r" (~SR_FD));
243 }
244
245 /* Round to nearest, no exceptions on inexact, overflow, underflow,
246    zero-divide, invalid.  Configure option for whether to flush denorms to
247    zero, or except if a denorm is encountered.  */
248 #if defined(CONFIG_SH64_FPU_DENORM_FLUSH)
249 #define FPSCR_INIT  0x00040000
250 #else
251 #define FPSCR_INIT  0x00000000
252 #endif
253
254 /* Save the current FP regs */
255 void fpsave(struct sh_fpu_hard_struct *fpregs);
256
257 /* Initialise the FP state of a task */
258 void fpinit(struct sh_fpu_hard_struct *fpregs);
259
260 extern struct task_struct *last_task_used_math;
261
262 /*
263  * Return saved PC of a blocked thread.
264  */
265 #define thread_saved_pc(tsk)    (tsk->thread.pc)
266
267 extern unsigned long get_wchan(struct task_struct *p);
268
269 #define KSTK_EIP(tsk)  ((tsk)->thread.pc)
270 #define KSTK_ESP(tsk)  ((tsk)->thread.sp)
271
272 #define cpu_relax()     barrier()
273
274 #endif  /* __ASSEMBLY__ */
275 #endif /* __ASM_SH_PROCESSOR_64_H */