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