blob: 3b3ef4f2bf3181634eb2b39e1978b545176b0ec6 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * include/asm-sh/processor.h
3 *
4 * Copyright (C) 1999, 2000 Niibe Yutaka
5 * Copyright (C) 2002, 2003 Paul Mundt
6 */
7
8#ifndef __ASM_SH_PROCESSOR_H
9#define __ASM_SH_PROCESSOR_H
10#ifdef __KERNEL__
11
Chase Ventersf6dc8c52006-07-08 11:10:29 -050012#include <linux/compiler.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <asm/page.h>
14#include <asm/types.h>
15#include <asm/cache.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <asm/ptrace.h>
17
18/*
19 * Default implementation of macro that returns current
20 * instruction pointer ("program counter").
21 */
22#define current_text_addr() ({ void *pc; __asm__("mova 1f, %0\n1:":"=z" (pc)); pc; })
23
24/* Core Processor Version Register */
25#define CCN_PVR 0xff000030
26#define CCN_CVR 0xff000040
27#define CCN_PRR 0xff000044
28
29/*
30 * CPU type and hardware bug flags. Kept separately for each CPU.
31 *
32 * Each one of these also needs a CONFIG_CPU_SUBTYPE_xxx entry
Paul Mundtde027972006-02-01 03:06:02 -080033 * in arch/sh/mm/Kconfig, as well as an entry in arch/sh/kernel/setup.c
Linus Torvalds1da177e2005-04-16 15:20:36 -070034 * for parsing the subtype in get_cpu_subtype().
35 */
36enum cpu_type {
37 /* SH-2 types */
38 CPU_SH7604,
39
40 /* SH-3 types */
Paul Mundte5723e02006-09-27 17:38:11 +090041 CPU_SH7705, CPU_SH7706, CPU_SH7707,
42 CPU_SH7708, CPU_SH7708S, CPU_SH7708R,
43 CPU_SH7709, CPU_SH7709A, CPU_SH7710,
44 CPU_SH7729, CPU_SH7300,
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
46 /* SH-4 types */
47 CPU_SH7750, CPU_SH7750S, CPU_SH7750R, CPU_SH7751, CPU_SH7751R,
48 CPU_SH7760, CPU_ST40RA, CPU_ST40GX1, CPU_SH4_202, CPU_SH4_501,
Paul Mundte5723e02006-09-27 17:38:11 +090049 CPU_SH73180, CPU_SH7343, CPU_SH7770, CPU_SH7780, CPU_SH7781,
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
51 /* Unknown subtype */
52 CPU_SH_NONE
53};
54
55struct sh_cpuinfo {
56 enum cpu_type type;
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 unsigned long loops_per_jiffy;
58
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 struct cache_info icache;
60 struct cache_info dcache;
61
62 unsigned long flags;
63};
64
65extern struct sh_cpuinfo boot_cpu_data;
66
67#ifdef CONFIG_SMP
68extern struct sh_cpuinfo cpu_data[];
69#define current_cpu_data cpu_data[smp_processor_id()]
70#else
71#define cpu_data (&boot_cpu_data)
72#define current_cpu_data boot_cpu_data
73#endif
74
75/*
76 * User space process size: 2GB.
77 *
78 * Since SH7709 and SH7750 have "area 7", we can't use 0x7c000000--0x7fffffff
79 */
80#define TASK_SIZE 0x7c000000UL
81
82/* This decides where the kernel will search for a free chunk of vm
83 * space during mmap's.
84 */
85#define TASK_UNMAPPED_BASE (TASK_SIZE / 3)
86
87/*
88 * Bit of SR register
89 *
90 * FD-bit:
91 * When it's set, it means the processor doesn't have right to use FPU,
92 * and it results exception when the floating operation is executed.
93 *
94 * IMASK-bit:
95 * Interrupt level mask
96 */
97#define SR_FD 0x00008000
98#define SR_DSP 0x00001000
99#define SR_IMASK 0x000000f0
100
101/*
102 * FPU structure and data
103 */
104
105struct sh_fpu_hard_struct {
106 unsigned long fp_regs[16];
107 unsigned long xfp_regs[16];
108 unsigned long fpscr;
109 unsigned long fpul;
110
111 long status; /* software status information */
112};
113
114/* Dummy fpu emulator */
115struct sh_fpu_soft_struct {
116 unsigned long fp_regs[16];
117 unsigned long xfp_regs[16];
118 unsigned long fpscr;
119 unsigned long fpul;
120
121 unsigned char lookahead;
122 unsigned long entry_pc;
123};
124
125union sh_fpu_union {
126 struct sh_fpu_hard_struct hard;
127 struct sh_fpu_soft_struct soft;
128};
129
Paul Mundtde027972006-02-01 03:06:02 -0800130/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 * Processor flags
132 */
133
134#define CPU_HAS_FPU 0x0001 /* Hardware FPU support */
135#define CPU_HAS_P2_FLUSH_BUG 0x0002 /* Need to flush the cache in P2 area */
136#define CPU_HAS_MMU_PAGE_ASSOC 0x0004 /* SH3: TLB way selection bit support */
137#define CPU_HAS_DSP 0x0008 /* SH-DSP: DSP support */
138#define CPU_HAS_PERF_COUNTER 0x0010 /* Hardware performance counters */
Paul Mundtde027972006-02-01 03:06:02 -0800139#define CPU_HAS_PTEA 0x0020 /* PTEA register */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140
141struct thread_struct {
142 unsigned long sp;
143 unsigned long pc;
144
145 unsigned long trap_no, error_code;
146 unsigned long address;
147 /* Hardware debugging registers may come here */
148 unsigned long ubc_pc;
149
150 /* floating point info */
151 union sh_fpu_union fpu;
152};
153
Paul Mundt2991be72006-09-27 17:07:07 +0900154typedef struct {
155 unsigned long seg;
156} mm_segment_t;
157
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158/* Count of active tasks with UBC settings */
159extern int ubc_usercnt;
160
161#define INIT_THREAD { \
162 sizeof(init_stack) + (long) &init_stack, /* sp */ \
163 0, /* pc */ \
Paul Mundtde027972006-02-01 03:06:02 -0800164 0, 0, \
165 0, \
166 0, \
167 {{{0,}},} /* fpu state */ \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168}
169
170/*
171 * Do necessary setup to start up a newly executed thread.
172 */
173#define start_thread(regs, new_pc, new_sp) \
174 set_fs(USER_DS); \
Paul Mundtde027972006-02-01 03:06:02 -0800175 regs->pr = 0; \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 regs->sr = SR_FD; /* User mode. */ \
177 regs->pc = new_pc; \
178 regs->regs[15] = new_sp
179
180/* Forward declaration, a strange C thing */
181struct task_struct;
182struct mm_struct;
183
184/* Free all resources held by a thread. */
185extern void release_thread(struct task_struct *);
186
187/* Prepare to copy thread state - unlazy all lazy status */
188#define prepare_to_copy(tsk) do { } while (0)
189
190/*
191 * create a kernel thread without removing it from tasklists
192 */
193extern int kernel_thread(int (*fn)(void *), void * arg, unsigned long flags);
194
195/* Copy and release all segment info associated with a VM */
196#define copy_segments(p, mm) do { } while(0)
197#define release_segments(mm) do { } while(0)
198
199/*
200 * FPU lazy state save handling.
201 */
202
203static __inline__ void disable_fpu(void)
204{
205 unsigned long __dummy;
206
207 /* Set FD flag in SR */
208 __asm__ __volatile__("stc sr, %0\n\t"
209 "or %1, %0\n\t"
210 "ldc %0, sr"
211 : "=&r" (__dummy)
212 : "r" (SR_FD));
213}
214
215static __inline__ void enable_fpu(void)
216{
217 unsigned long __dummy;
218
219 /* Clear out FD flag in SR */
220 __asm__ __volatile__("stc sr, %0\n\t"
221 "and %1, %0\n\t"
222 "ldc %0, sr"
223 : "=&r" (__dummy)
224 : "r" (~SR_FD));
225}
226
227static __inline__ void release_fpu(struct pt_regs *regs)
228{
229 regs->sr |= SR_FD;
230}
231
232static __inline__ void grab_fpu(struct pt_regs *regs)
233{
234 regs->sr &= ~SR_FD;
235}
236
237#ifdef CONFIG_CPU_SH4
238extern void save_fpu(struct task_struct *__tsk, struct pt_regs *regs);
239#else
240#define save_fpu(tsk) do { } while (0)
241#endif
242
Paul Mundtde027972006-02-01 03:06:02 -0800243#define unlazy_fpu(tsk, regs) do { \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 if (test_tsk_thread_flag(tsk, TIF_USEDFPU)) { \
Paul Mundtde027972006-02-01 03:06:02 -0800245 save_fpu(tsk, regs); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 } \
247} while (0)
248
Paul Mundtde027972006-02-01 03:06:02 -0800249#define clear_fpu(tsk, regs) do { \
250 if (test_tsk_thread_flag(tsk, TIF_USEDFPU)) { \
251 clear_tsk_thread_flag(tsk, TIF_USEDFPU); \
252 release_fpu(regs); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 } \
254} while (0)
255
256/* Double presision, NANS as NANS, rounding to nearest, no exceptions */
257#define FPSCR_INIT 0x00080000
258
259#define FPSCR_CAUSE_MASK 0x0001f000 /* Cause bits */
260#define FPSCR_FLAG_MASK 0x0000007c /* Flag bits */
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
272#define cpu_sleep() __asm__ __volatile__ ("sleep" : : : "memory")
Chase Ventersf6dc8c52006-07-08 11:10:29 -0500273#define cpu_relax() barrier()
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274
Paul Mundte86d6b62006-09-27 14:20:54 +0900275#if defined(CONFIG_CPU_SH2A) || defined(CONFIG_CPU_SH3) || \
276 defined(CONFIG_CPU_SH4)
277#define PREFETCH_STRIDE L1_CACHE_BYTES
278#define ARCH_HAS_PREFETCH
279#define ARCH_HAS_PREFETCHW
280static inline void prefetch(void *x)
281{
282 __asm__ __volatile__ ("pref @%0\n\t" : : "r" (x) : "memory");
283}
284
285#define prefetchw(x) prefetch(x)
286#endif
287
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288#endif /* __KERNEL__ */
289#endif /* __ASM_SH_PROCESSOR_H */