blob: ecd6b403f7db62c5f13ad20249205c302dd2792d [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;
Paul Mundt76168c22007-11-10 20:01:51 +090069
70 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -070071};
72
Paul Mundt76168c22007-11-10 20:01:51 +090073extern 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()]
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
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
122struct 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 */
130struct 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
138union 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
145struct 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
Paul Mundtaf3c7df2007-11-09 17:08:54 +0900166typedef struct {
167 unsigned long seg;
168} mm_segment_t;
169
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170#define INIT_MMAP \
171{ &init_mm, 0, 0, NULL, PAGE_SHARED, VM_READ | VM_WRITE | VM_EXEC, 1, NULL, NULL }
172
173extern 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
Paul Mundtaf3c7df2007-11-09 17:08:54 +0900192#define start_thread(regs, new_pc, new_sp) \
193 set_fs(USER_DS); \
194 regs->sr = SR_USER; /* User mode. */ \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 regs->pc = new_pc - 4; /* Compensate syscall exit */ \
196 regs->pc |= 1; /* Set SHmedia ! */ \
Paul Mundtaf3c7df2007-11-09 17:08:54 +0900197 regs->regs[18] = 0; \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 regs->regs[15] = new_sp
199
200/* Forward declaration, a strange C thing */
201struct task_struct;
202struct mm_struct;
203
204/* Free all resources held by a thread. */
205extern void release_thread(struct task_struct *);
206/*
207 * create a kernel thread without removing it from tasklists
208 */
209extern 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
Adrian Bunkca5ed2f2006-01-09 20:54:47 -0800221static inline void release_fpu(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222{
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
Adrian Bunkca5ed2f2006-01-09 20:54:47 -0800233static inline void grab_fpu(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234{
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 */
255void fpsave(struct sh_fpu_hard_struct *fpregs);
256
257/* Initialise the FP state of a task */
258void fpinit(struct sh_fpu_hard_struct *fpregs);
259
260extern 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
267extern 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
Chase Ventersf6dc8c52006-07-08 11:10:29 -0500272#define cpu_relax() barrier()
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273
274#endif /* __ASSEMBLY__ */
Paul Mundtaf3c7df2007-11-09 17:08:54 +0900275#endif /* __ASM_SH_PROCESSOR_64_H */