sh: Use a per-cpu ASID cache.
[firefly-linux-kernel-4.4.55.git] / include / asm-sh / processor.h
1 /*
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
12 #include <linux/compiler.h>
13 #include <asm/page.h>
14 #include <asm/types.h>
15 #include <asm/cache.h>
16 #include <asm/ptrace.h>
17 #include <asm/cpu-features.h>
18
19 /*
20  * Default implementation of macro that returns current
21  * instruction pointer ("program counter").
22  */
23 #define current_text_addr() ({ void *pc; __asm__("mova  1f, %0\n1:":"=z" (pc)); pc; })
24
25 /* Core Processor Version Register */
26 #define CCN_PVR         0xff000030
27 #define CCN_CVR         0xff000040
28 #define CCN_PRR         0xff000044
29
30 const char *get_cpu_subtype(void);
31
32 /*
33  *  CPU type and hardware bug flags. Kept separately for each CPU.
34  *
35  *  Each one of these also needs a CONFIG_CPU_SUBTYPE_xxx entry
36  *  in arch/sh/mm/Kconfig, as well as an entry in arch/sh/kernel/setup.c
37  *  for parsing the subtype in get_cpu_subtype().
38  */
39 enum cpu_type {
40         /* SH-2 types */
41         CPU_SH7604, CPU_SH7619,
42
43         /* SH-2A types */
44         CPU_SH7206,
45
46         /* SH-3 types */
47         CPU_SH7705, CPU_SH7706, CPU_SH7707,
48         CPU_SH7708, CPU_SH7708S, CPU_SH7708R,
49         CPU_SH7709, CPU_SH7709A, CPU_SH7710,
50         CPU_SH7729, CPU_SH7300,
51
52         /* SH-4 types */
53         CPU_SH7750, CPU_SH7750S, CPU_SH7750R, CPU_SH7751, CPU_SH7751R,
54         CPU_SH7760, CPU_ST40RA, CPU_ST40GX1, CPU_SH4_202, CPU_SH4_501,
55
56         /* SH-4A types */
57         CPU_SH7770, CPU_SH7780, CPU_SH7781, CPU_SH7785,
58
59         /* SH4AL-DSP types */
60         CPU_SH73180, CPU_SH7343, CPU_SH7722,
61
62         /* Unknown subtype */
63         CPU_SH_NONE
64 };
65
66 struct sh_cpuinfo {
67         unsigned int type;
68         unsigned long loops_per_jiffy;
69         unsigned long asid_cache;
70
71         struct cache_info icache;       /* Primary I-cache */
72         struct cache_info dcache;       /* Primary D-cache */
73         struct cache_info scache;       /* Secondary cache */
74
75         unsigned long flags;
76 } __attribute__ ((aligned(SMP_CACHE_BYTES)));
77
78 extern struct sh_cpuinfo boot_cpu_data;
79
80 #ifdef CONFIG_SMP
81 extern struct sh_cpuinfo cpu_data[];
82 #define current_cpu_data cpu_data[smp_processor_id()]
83 #else
84 #define cpu_data (&boot_cpu_data)
85 #define current_cpu_data boot_cpu_data
86 #endif
87
88 /*
89  * User space process size: 2GB.
90  *
91  * Since SH7709 and SH7750 have "area 7", we can't use 0x7c000000--0x7fffffff
92  */
93 #define TASK_SIZE       0x7c000000UL
94
95 /* This decides where the kernel will search for a free chunk of vm
96  * space during mmap's.
97  */
98 #define TASK_UNMAPPED_BASE      (TASK_SIZE / 3)
99
100 /*
101  * Bit of SR register
102  *
103  * FD-bit:
104  *     When it's set, it means the processor doesn't have right to use FPU,
105  *     and it results exception when the floating operation is executed.
106  *
107  * IMASK-bit:
108  *     Interrupt level mask
109  */
110 #define SR_FD           0x00008000
111 #define SR_DSP          0x00001000
112 #define SR_IMASK        0x000000f0
113
114 /*
115  * FPU structure and data
116  */
117
118 struct sh_fpu_hard_struct {
119         unsigned long fp_regs[16];
120         unsigned long xfp_regs[16];
121         unsigned long fpscr;
122         unsigned long fpul;
123
124         long status; /* software status information */
125 };
126
127 /* Dummy fpu emulator  */
128 struct sh_fpu_soft_struct {
129         unsigned long fp_regs[16];
130         unsigned long xfp_regs[16];
131         unsigned long fpscr;
132         unsigned long fpul;
133
134         unsigned char lookahead;
135         unsigned long entry_pc;
136 };
137
138 union sh_fpu_union {
139         struct sh_fpu_hard_struct hard;
140         struct sh_fpu_soft_struct soft;
141 };
142
143 struct thread_struct {
144         /* Saved registers when thread is descheduled */
145         unsigned long sp;
146         unsigned long pc;
147
148         /* Hardware debugging registers */
149         unsigned long ubc_pc;
150
151         /* floating point info */
152         union sh_fpu_union fpu;
153 };
154
155 typedef struct {
156         unsigned long seg;
157 } mm_segment_t;
158
159 /* Count of active tasks with UBC settings */
160 extern int ubc_usercnt;
161
162 #define INIT_THREAD  {                                          \
163         .sp = sizeof(init_stack) + (long) &init_stack,          \
164 }
165
166 /*
167  * Do necessary setup to start up a newly executed thread.
168  */
169 #define start_thread(regs, new_pc, new_sp)       \
170         set_fs(USER_DS);                         \
171         regs->pr = 0;                            \
172         regs->sr = SR_FD;       /* User mode. */ \
173         regs->pc = new_pc;                       \
174         regs->regs[15] = new_sp
175
176 /* Forward declaration, a strange C thing */
177 struct task_struct;
178 struct mm_struct;
179
180 /* Free all resources held by a thread. */
181 extern void release_thread(struct task_struct *);
182
183 /* Prepare to copy thread state - unlazy all lazy status */
184 #define prepare_to_copy(tsk)    do { } while (0)
185
186 /*
187  * create a kernel thread without removing it from tasklists
188  */
189 extern int kernel_thread(int (*fn)(void *), void * arg, unsigned long flags);
190
191 /* Copy and release all segment info associated with a VM */
192 #define copy_segments(p, mm)    do { } while(0)
193 #define release_segments(mm)    do { } while(0)
194
195 /*
196  * FPU lazy state save handling.
197  */
198
199 static __inline__ void disable_fpu(void)
200 {
201         unsigned long __dummy;
202
203         /* Set FD flag in SR */
204         __asm__ __volatile__("stc       sr, %0\n\t"
205                              "or        %1, %0\n\t"
206                              "ldc       %0, sr"
207                              : "=&r" (__dummy)
208                              : "r" (SR_FD));
209 }
210
211 static __inline__ void enable_fpu(void)
212 {
213         unsigned long __dummy;
214
215         /* Clear out FD flag in SR */
216         __asm__ __volatile__("stc       sr, %0\n\t"
217                              "and       %1, %0\n\t"
218                              "ldc       %0, sr"
219                              : "=&r" (__dummy)
220                              : "r" (~SR_FD));
221 }
222
223 static __inline__ void release_fpu(struct pt_regs *regs)
224 {
225         regs->sr |= SR_FD;
226 }
227
228 static __inline__ void grab_fpu(struct pt_regs *regs)
229 {
230         regs->sr &= ~SR_FD;
231 }
232
233 #ifdef CONFIG_CPU_SH4
234 extern void save_fpu(struct task_struct *__tsk, struct pt_regs *regs);
235 #else
236 #define save_fpu(tsk)   do { } while (0)
237 #endif
238
239 #define unlazy_fpu(tsk, regs) do {                      \
240         if (test_tsk_thread_flag(tsk, TIF_USEDFPU)) {   \
241                 save_fpu(tsk, regs);                    \
242         }                                               \
243 } while (0)
244
245 #define clear_fpu(tsk, regs) do {                               \
246         if (test_tsk_thread_flag(tsk, TIF_USEDFPU)) {           \
247                 clear_tsk_thread_flag(tsk, TIF_USEDFPU);        \
248                 release_fpu(regs);                              \
249         }                                                       \
250 } while (0)
251
252 /* Double presision, NANS as NANS, rounding to nearest, no exceptions */
253 #define FPSCR_INIT  0x00080000
254
255 #define FPSCR_CAUSE_MASK        0x0001f000      /* Cause bits */
256 #define FPSCR_FLAG_MASK         0x0000007c      /* Flag bits */
257
258 /*
259  * Return saved PC of a blocked thread.
260  */
261 #define thread_saved_pc(tsk)    (tsk->thread.pc)
262
263 void show_trace(struct task_struct *tsk, unsigned long *sp,
264                 struct pt_regs *regs);
265 extern unsigned long get_wchan(struct task_struct *p);
266
267 #define KSTK_EIP(tsk)  (task_pt_regs(tsk)->pc)
268 #define KSTK_ESP(tsk)  (task_pt_regs(tsk)->regs[15])
269
270 #define cpu_sleep()     __asm__ __volatile__ ("sleep" : : : "memory")
271 #define cpu_relax()     barrier()
272
273 #if defined(CONFIG_CPU_SH2A) || defined(CONFIG_CPU_SH3) || \
274     defined(CONFIG_CPU_SH4)
275 #define PREFETCH_STRIDE         L1_CACHE_BYTES
276 #define ARCH_HAS_PREFETCH
277 #define ARCH_HAS_PREFETCHW
278 static inline void prefetch(void *x)
279 {
280         __asm__ __volatile__ ("pref @%0\n\t" : : "r" (x) : "memory");
281 }
282
283 #define prefetchw(x)    prefetch(x)
284 #endif
285
286 #ifdef CONFIG_VSYSCALL
287 extern int vsyscall_init(void);
288 #else
289 #define vsyscall_init() do { } while (0)
290 #endif
291
292 #endif /* __KERNEL__ */
293 #endif /* __ASM_SH_PROCESSOR_H */