Blame view

include/asm-sh/processor_64.h 6.43 KB
af3c7dfe8   Paul Mundt   sh: Split out pro...
1
2
  #ifndef __ASM_SH_PROCESSOR_64_H
  #define __ASM_SH_PROCESSOR_64_H
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
3
4
  
  /*
af3c7dfe8   Paul Mundt   sh: Split out pro...
5
   * include/asm-sh/processor_64.h
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
6
7
8
9
10
   *
   * Copyright (C) 2000, 2001  Paolo Alberelli
   * Copyright (C) 2003  Paul Mundt
   * Copyright (C) 2004  Richard Curnow
   *
af3c7dfe8   Paul Mundt   sh: Split out pro...
11
12
13
   * This file is subject to the terms and conditions of the GNU General Public
   * License.  See the file "COPYING" in the main directory of this archive
   * for more details.
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
14
   */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
15
  #ifndef __ASSEMBLY__
af3c7dfe8   Paul Mundt   sh: Split out pro...
16
17
  #include <linux/compiler.h>
  #include <asm/page.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
18
19
  #include <asm/types.h>
  #include <asm/cache.h>
256b22ca6   Paul Mundt   sh: Have SH-5 pro...
20
  #include <asm/ptrace.h>
af3c7dfe8   Paul Mundt   sh: Split out pro...
21
  #include <asm/cpu/registers.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
  
  /*
   * Default implementation of macro that returns current
   * instruction pointer ("program counter").
   */
  #define current_text_addr() ({ \
  void *pc; \
  unsigned long long __dummy = 0; \
  __asm__("gettr	tr0, %1
  \t" \
  	"pta	4, tr0
  \t" \
  	"gettr	tr0, %0
  \t" \
  	"ptabs	%1, tr0
  \t"	\
  	:"=r" (pc), "=r" (__dummy) \
  	: "1" (__dummy)); \
  pc; })
  
  /*
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
   * TLB information structure
   *
   * Defined for both I and D tlb, per-processor.
   */
  struct tlb_info {
  	unsigned long long next;
  	unsigned long long first;
  	unsigned long long last;
  
  	unsigned int entries;
  	unsigned int step;
  
  	unsigned long flags;
  };
  
  struct sh_cpuinfo {
  	enum cpu_type type;
  	unsigned long loops_per_jiffy;
c0acca678   Paul Mundt   sh: SH-5 also use...
61
  	unsigned long asid_cache;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
62

1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
63
64
65
66
67
  	unsigned int cpu_clock, master_clock, bus_clock, module_clock;
  
  	/* Cache info */
  	struct cache_info icache;
  	struct cache_info dcache;
c0acca678   Paul Mundt   sh: SH-5 also use...
68
  	struct cache_info scache;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
69
70
71
72
  
  	/* TLB info */
  	struct tlb_info itlb;
  	struct tlb_info dtlb;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
73

76168c21b   Paul Mundt   sh: More SH-5 cpu...
74
75
  	unsigned long flags;
  };
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
76

76168c21b   Paul Mundt   sh: More SH-5 cpu...
77
78
79
80
  extern struct sh_cpuinfo cpu_data[];
  #define boot_cpu_data cpu_data[0]
  #define current_cpu_data cpu_data[smp_processor_id()]
  #define raw_current_cpu_data cpu_data[raw_smp_processor_id()]
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
81
82
83
84
85
86
87
  
  #endif
  
  /*
   * User space process size: 2GB - 4k.
   */
  #define TASK_SIZE	0x7ffff000UL
922a70d32   David Howells   aout: move STACK_...
88
89
  #define STACK_TOP	TASK_SIZE
  #define STACK_TOP_MAX	STACK_TOP
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
  /* This decides where the kernel will search for a free chunk of vm
   * space during mmap's.
   */
  #define TASK_UNMAPPED_BASE	(TASK_SIZE / 3)
  
  /*
   * Bit of SR register
   *
   * FD-bit:
   *     When it's set, it means the processor doesn't have right to use FPU,
   *     and it results exception when the floating operation is executed.
   *
   * IMASK-bit:
   *     Interrupt level mask
   *
   * STEP-bit:
   *     Single step bit
   *
   */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
  #if defined(CONFIG_SH64_SR_WATCH)
  #define SR_MMU   0x84000000
  #else
  #define SR_MMU   0x80000000
  #endif
  
  #define SR_IMASK 0x000000f0
  #define SR_SSTEP 0x08000000
  
  #ifndef __ASSEMBLY__
  
  /*
   * FPU structure and data : require 8-byte alignment as we need to access it
     with fld.p, fst.p
   */
  
  struct sh_fpu_hard_struct {
  	unsigned long fp_regs[64];
  	unsigned int fpscr;
  	/* long status; * software status information */
  };
  
  #if 0
  /* Dummy fpu emulator  */
  struct sh_fpu_soft_struct {
  	unsigned long long fp_regs[32];
  	unsigned int fpscr;
  	unsigned char lookahead;
  	unsigned long entry_pc;
  };
  #endif
  
  union sh_fpu_union {
  	struct sh_fpu_hard_struct hard;
  	/* 'hard' itself only produces 32 bit alignment, yet we need
  	   to access it using 64 bit load/store as well. */
  	unsigned long long alignment_dummy;
  };
  
  struct thread_struct {
  	unsigned long sp;
  	unsigned long pc;
  	/* This stores the address of the pt_regs built during a context
  	   switch, or of the register save area built for a kernel mode
  	   exception.  It is used for backtracing the stack of a sleeping task
  	   or one that traps in kernel mode. */
          struct pt_regs *kregs;
  	/* This stores the address of the pt_regs constructed on entry from
  	   user mode.  It is a fixed value over the lifetime of a process, or
  	   NULL for a kernel thread. */
  	struct pt_regs *uregs;
  
  	unsigned long trap_no, error_code;
  	unsigned long address;
  	/* Hardware debugging registers may come here */
  
  	/* floating point info */
  	union sh_fpu_union fpu;
  };
af3c7dfe8   Paul Mundt   sh: Split out pro...
168
169
170
  typedef struct {
  	unsigned long seg;
  } mm_segment_t;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
  #define INIT_MMAP \
  { &init_mm, 0, 0, NULL, PAGE_SHARED, VM_READ | VM_WRITE | VM_EXEC, 1, NULL, NULL }
  
  extern  struct pt_regs fake_swapper_regs;
  
  #define INIT_THREAD  {				\
  	.sp		= sizeof(init_stack) +	\
  			  (long) &init_stack,	\
  	.pc		= 0,			\
          .kregs		= &fake_swapper_regs,	\
  	.uregs	        = NULL,			\
  	.trap_no	= 0,			\
  	.error_code	= 0,			\
  	.address	= 0,			\
  	.fpu		= { { { 0, } }, }	\
  }
  
  /*
   * Do necessary setup to start up a newly executed thread.
   */
  #define SR_USER (SR_MMU | SR_FD)
af3c7dfe8   Paul Mundt   sh: Split out pro...
192
193
194
  #define start_thread(regs, new_pc, new_sp)			\
  	set_fs(USER_DS);					\
  	regs->sr = SR_USER;	/* User mode. */		\
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
195
196
  	regs->pc = new_pc - 4;	/* Compensate syscall exit */	\
  	regs->pc |= 1;		/* Set SHmedia ! */		\
af3c7dfe8   Paul Mundt   sh: Split out pro...
197
  	regs->regs[18] = 0;					\
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
  	regs->regs[15] = new_sp
  
  /* Forward declaration, a strange C thing */
  struct task_struct;
  struct mm_struct;
  
  /* Free all resources held by a thread. */
  extern void release_thread(struct task_struct *);
  /*
   * create a kernel thread without removing it from tasklists
   */
  extern int kernel_thread(int (*fn)(void *), void * arg, unsigned long flags);
  
  
  /* Copy and release all segment info associated with a VM */
  #define copy_segments(p, mm)	do { } while (0)
  #define release_segments(mm)	do { } while (0)
  #define forget_segments()	do { } while (0)
  #define prepare_to_copy(tsk)	do { } while (0)
  /*
   * FPU lazy state save handling.
   */
256b22ca6   Paul Mundt   sh: Have SH-5 pro...
220
  static inline void disable_fpu(void)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
221
222
223
224
225
226
227
228
229
230
231
232
233
  {
  	unsigned long long __dummy;
  
  	/* Set FD flag in SR */
  	__asm__ __volatile__("getcon	" __SR ", %0
  \t"
  			     "or	%0, %1, %0
  \t"
  			     "putcon	%0, " __SR "
  \t"
  			     : "=&r" (__dummy)
  			     : "r" (SR_FD));
  }
256b22ca6   Paul Mundt   sh: Have SH-5 pro...
234
  static inline void enable_fpu(void)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
  {
  	unsigned long long __dummy;
  
  	/* Clear out FD flag in SR */
  	__asm__ __volatile__("getcon	" __SR ", %0
  \t"
  			     "and	%0, %1, %0
  \t"
  			     "putcon	%0, " __SR "
  \t"
  			     : "=&r" (__dummy)
  			     : "r" (~SR_FD));
  }
  
  /* Round to nearest, no exceptions on inexact, overflow, underflow,
     zero-divide, invalid.  Configure option for whether to flush denorms to
     zero, or except if a denorm is encountered.  */
  #if defined(CONFIG_SH64_FPU_DENORM_FLUSH)
  #define FPSCR_INIT  0x00040000
  #else
  #define FPSCR_INIT  0x00000000
  #endif
ffd25eb6c   Paul Mundt   sh: Stubs for fpu...
257
  #ifdef CONFIG_SH_FPU
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
258
259
  /* Initialise the FP state of a task */
  void fpinit(struct sh_fpu_hard_struct *fpregs);
ffd25eb6c   Paul Mundt   sh: Stubs for fpu...
260
  #else
ffd25eb6c   Paul Mundt   sh: Stubs for fpu...
261
262
  #define fpinit(fpregs)	do { } while (0)
  #endif
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
263
264
265
266
267
268
269
270
271
272
273
274
  
  extern struct task_struct *last_task_used_math;
  
  /*
   * Return saved PC of a blocked thread.
   */
  #define thread_saved_pc(tsk)	(tsk->thread.pc)
  
  extern unsigned long get_wchan(struct task_struct *p);
  
  #define KSTK_EIP(tsk)  ((tsk)->thread.pc)
  #define KSTK_ESP(tsk)  ((tsk)->thread.sp)
f6dc8c5b8   Chase Venters   [PATCH] Make cpu_...
275
  #define cpu_relax()	barrier()
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
276
277
  
  #endif	/* __ASSEMBLY__ */
af3c7dfe8   Paul Mundt   sh: Split out pro...
278
  #endif /* __ASM_SH_PROCESSOR_64_H */