Paul Mundt | af3c7df | 2007-11-09 17:08:54 +0900 | [diff] [blame] | 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_32_H |
| 9 | #define __ASM_SH_PROCESSOR_32_H |
| 10 | #ifdef __KERNEL__ |
| 11 | |
| 12 | #include <linux/compiler.h> |
Paul Mundt | fa43972 | 2008-09-04 18:53:58 +0900 | [diff] [blame] | 13 | #include <linux/linkage.h> |
Paul Mundt | af3c7df | 2007-11-09 17:08:54 +0900 | [diff] [blame] | 14 | #include <asm/page.h> |
| 15 | #include <asm/types.h> |
Paul Mundt | 4352fc1 | 2010-01-05 19:06:45 +0900 | [diff] [blame] | 16 | #include <asm/hw_breakpoint.h> |
Paul Mundt | af3c7df | 2007-11-09 17:08:54 +0900 | [diff] [blame] | 17 | |
| 18 | /* |
| 19 | * Default implementation of macro that returns current |
| 20 | * instruction pointer ("program counter"). |
| 21 | */ |
Paul Mundt | 103340c | 2008-07-28 22:32:03 +0900 | [diff] [blame] | 22 | #define current_text_addr() ({ void *pc; __asm__("mova 1f, %0\n.align 2\n1:":"=z" (pc)); pc; }) |
Paul Mundt | af3c7df | 2007-11-09 17:08:54 +0900 | [diff] [blame] | 23 | |
| 24 | /* Core Processor Version Register */ |
| 25 | #define CCN_PVR 0xff000030 |
| 26 | #define CCN_CVR 0xff000040 |
| 27 | #define CCN_PRR 0xff000044 |
| 28 | |
Paul Mundt | af3c7df | 2007-11-09 17:08:54 +0900 | [diff] [blame] | 29 | /* |
| 30 | * User space process size: 2GB. |
| 31 | * |
| 32 | * Since SH7709 and SH7750 have "area 7", we can't use 0x7c000000--0x7fffffff |
| 33 | */ |
| 34 | #define TASK_SIZE 0x7c000000UL |
| 35 | |
David Howells | 922a70d | 2008-02-08 04:19:26 -0800 | [diff] [blame] | 36 | #define STACK_TOP TASK_SIZE |
| 37 | #define STACK_TOP_MAX STACK_TOP |
| 38 | |
Paul Mundt | af3c7df | 2007-11-09 17:08:54 +0900 | [diff] [blame] | 39 | /* This decides where the kernel will search for a free chunk of vm |
| 40 | * space during mmap's. |
| 41 | */ |
Kuninori Morimoto | 30c254f | 2013-01-10 20:17:35 -0800 | [diff] [blame] | 42 | #define TASK_UNMAPPED_BASE PAGE_ALIGN(TASK_SIZE / 3) |
Paul Mundt | af3c7df | 2007-11-09 17:08:54 +0900 | [diff] [blame] | 43 | |
| 44 | /* |
| 45 | * Bit of SR register |
| 46 | * |
| 47 | * FD-bit: |
| 48 | * When it's set, it means the processor doesn't have right to use FPU, |
| 49 | * and it results exception when the floating operation is executed. |
| 50 | * |
| 51 | * IMASK-bit: |
| 52 | * Interrupt level mask |
| 53 | */ |
Paul Mundt | af3c7df | 2007-11-09 17:08:54 +0900 | [diff] [blame] | 54 | #define SR_DSP 0x00001000 |
| 55 | #define SR_IMASK 0x000000f0 |
Paul Mundt | 9bbafce | 2008-03-26 19:02:47 +0900 | [diff] [blame] | 56 | #define SR_FD 0x00008000 |
Stuart Menefy | d3ea9fa | 2009-09-25 18:25:10 +0100 | [diff] [blame] | 57 | #define SR_MD 0x40000000 |
Paul Mundt | af3c7df | 2007-11-09 17:08:54 +0900 | [diff] [blame] | 58 | |
| 59 | /* |
Michael Trimarchi | 01ab103 | 2009-04-03 17:32:33 +0000 | [diff] [blame] | 60 | * DSP structure and data |
| 61 | */ |
| 62 | struct sh_dsp_struct { |
| 63 | unsigned long dsp_regs[14]; |
| 64 | long status; |
| 65 | }; |
| 66 | |
| 67 | /* |
Paul Mundt | af3c7df | 2007-11-09 17:08:54 +0900 | [diff] [blame] | 68 | * FPU structure and data |
| 69 | */ |
| 70 | |
| 71 | struct sh_fpu_hard_struct { |
| 72 | unsigned long fp_regs[16]; |
| 73 | unsigned long xfp_regs[16]; |
| 74 | unsigned long fpscr; |
| 75 | unsigned long fpul; |
| 76 | |
| 77 | long status; /* software status information */ |
| 78 | }; |
| 79 | |
| 80 | /* Dummy fpu emulator */ |
| 81 | struct sh_fpu_soft_struct { |
| 82 | unsigned long fp_regs[16]; |
| 83 | unsigned long xfp_regs[16]; |
| 84 | unsigned long fpscr; |
| 85 | unsigned long fpul; |
| 86 | |
| 87 | unsigned char lookahead; |
| 88 | unsigned long entry_pc; |
| 89 | }; |
| 90 | |
Paul Mundt | 0ea820c | 2010-01-13 12:51:40 +0900 | [diff] [blame] | 91 | union thread_xstate { |
| 92 | struct sh_fpu_hard_struct hardfpu; |
| 93 | struct sh_fpu_soft_struct softfpu; |
Paul Mundt | af3c7df | 2007-11-09 17:08:54 +0900 | [diff] [blame] | 94 | }; |
| 95 | |
| 96 | struct thread_struct { |
| 97 | /* Saved registers when thread is descheduled */ |
| 98 | unsigned long sp; |
| 99 | unsigned long pc; |
| 100 | |
Paul Mundt | 94ea5e4 | 2010-02-23 12:56:30 +0900 | [diff] [blame] | 101 | /* Various thread flags, see SH_THREAD_xxx */ |
| 102 | unsigned long flags; |
| 103 | |
Paul Mundt | 09a0729 | 2009-11-09 16:27:40 +0900 | [diff] [blame] | 104 | /* Save middle states of ptrace breakpoints */ |
Paul Mundt | 94ea5e4 | 2010-02-23 12:56:30 +0900 | [diff] [blame] | 105 | struct perf_event *ptrace_bps[HBP_NUM]; |
Michael Trimarchi | 01ab103 | 2009-04-03 17:32:33 +0000 | [diff] [blame] | 106 | |
| 107 | #ifdef CONFIG_SH_DSP |
| 108 | /* Dsp status information */ |
| 109 | struct sh_dsp_struct dsp_status; |
| 110 | #endif |
Paul Mundt | af3c7df | 2007-11-09 17:08:54 +0900 | [diff] [blame] | 111 | |
Paul Mundt | 0ea820c | 2010-01-13 12:51:40 +0900 | [diff] [blame] | 112 | /* Extended processor state */ |
| 113 | union thread_xstate *xstate; |
Vineet Gupta | 616c05d | 2013-11-12 15:08:45 -0800 | [diff] [blame] | 114 | |
| 115 | /* |
| 116 | * fpu_counter contains the number of consecutive context switches |
| 117 | * that the FPU is used. If this is over a threshold, the lazy fpu |
| 118 | * saving becomes unlazy to save the trap. This is an unsigned char |
| 119 | * so that after 256 times the counter wraps and the behavior turns |
| 120 | * lazy again; this to deal with bursty apps that only use FPU for |
| 121 | * a short time |
| 122 | */ |
| 123 | unsigned char fpu_counter; |
Paul Mundt | af3c7df | 2007-11-09 17:08:54 +0900 | [diff] [blame] | 124 | }; |
Paul Mundt | af3c7df | 2007-11-09 17:08:54 +0900 | [diff] [blame] | 125 | |
| 126 | #define INIT_THREAD { \ |
| 127 | .sp = sizeof(init_stack) + (long) &init_stack, \ |
Paul Mundt | 94ea5e4 | 2010-02-23 12:56:30 +0900 | [diff] [blame] | 128 | .flags = 0, \ |
Paul Mundt | af3c7df | 2007-11-09 17:08:54 +0900 | [diff] [blame] | 129 | } |
| 130 | |
Paul Mundt | af3c7df | 2007-11-09 17:08:54 +0900 | [diff] [blame] | 131 | /* Forward declaration, a strange C thing */ |
| 132 | struct task_struct; |
Paul Mundt | 70e068e | 2010-01-12 18:52:00 +0900 | [diff] [blame] | 133 | |
| 134 | extern void start_thread(struct pt_regs *regs, unsigned long new_pc, unsigned long new_sp); |
Paul Mundt | af3c7df | 2007-11-09 17:08:54 +0900 | [diff] [blame] | 135 | |
| 136 | /* Free all resources held by a thread. */ |
| 137 | extern void release_thread(struct task_struct *); |
| 138 | |
Paul Mundt | af3c7df | 2007-11-09 17:08:54 +0900 | [diff] [blame] | 139 | /* Copy and release all segment info associated with a VM */ |
| 140 | #define copy_segments(p, mm) do { } while(0) |
| 141 | #define release_segments(mm) do { } while(0) |
| 142 | |
| 143 | /* |
| 144 | * FPU lazy state save handling. |
| 145 | */ |
| 146 | |
| 147 | static __inline__ void disable_fpu(void) |
| 148 | { |
| 149 | unsigned long __dummy; |
| 150 | |
| 151 | /* Set FD flag in SR */ |
| 152 | __asm__ __volatile__("stc sr, %0\n\t" |
| 153 | "or %1, %0\n\t" |
| 154 | "ldc %0, sr" |
| 155 | : "=&r" (__dummy) |
| 156 | : "r" (SR_FD)); |
| 157 | } |
| 158 | |
| 159 | static __inline__ void enable_fpu(void) |
| 160 | { |
| 161 | unsigned long __dummy; |
| 162 | |
| 163 | /* Clear out FD flag in SR */ |
| 164 | __asm__ __volatile__("stc sr, %0\n\t" |
| 165 | "and %1, %0\n\t" |
| 166 | "ldc %0, sr" |
| 167 | : "=&r" (__dummy) |
| 168 | : "r" (~SR_FD)); |
| 169 | } |
| 170 | |
Paul Mundt | af3c7df | 2007-11-09 17:08:54 +0900 | [diff] [blame] | 171 | /* Double presision, NANS as NANS, rounding to nearest, no exceptions */ |
| 172 | #define FPSCR_INIT 0x00080000 |
| 173 | |
| 174 | #define FPSCR_CAUSE_MASK 0x0001f000 /* Cause bits */ |
| 175 | #define FPSCR_FLAG_MASK 0x0000007c /* Flag bits */ |
| 176 | |
| 177 | /* |
| 178 | * Return saved PC of a blocked thread. |
| 179 | */ |
| 180 | #define thread_saved_pc(tsk) (tsk->thread.pc) |
| 181 | |
| 182 | void show_trace(struct task_struct *tsk, unsigned long *sp, |
| 183 | struct pt_regs *regs); |
Paul Mundt | 5d2685d | 2008-12-17 15:56:06 +0900 | [diff] [blame] | 184 | |
| 185 | #ifdef CONFIG_DUMP_CODE |
Paul Mundt | 9cfc9a9 | 2008-11-26 14:31:03 +0900 | [diff] [blame] | 186 | void show_code(struct pt_regs *regs); |
Paul Mundt | 5d2685d | 2008-12-17 15:56:06 +0900 | [diff] [blame] | 187 | #else |
| 188 | static inline void show_code(struct pt_regs *regs) |
| 189 | { |
| 190 | } |
| 191 | #endif |
| 192 | |
Paul Mundt | af3c7df | 2007-11-09 17:08:54 +0900 | [diff] [blame] | 193 | extern unsigned long get_wchan(struct task_struct *p); |
| 194 | |
| 195 | #define KSTK_EIP(tsk) (task_pt_regs(tsk)->pc) |
| 196 | #define KSTK_ESP(tsk) (task_pt_regs(tsk)->regs[15]) |
| 197 | |
Paul Mundt | a73090ff | 2009-02-27 16:42:05 +0900 | [diff] [blame] | 198 | #if defined(CONFIG_CPU_SH2A) || defined(CONFIG_CPU_SH4) |
Paul Mundt | c81fc38 | 2011-01-11 14:39:35 +0900 | [diff] [blame] | 199 | |
Paul Mundt | af3c7df | 2007-11-09 17:08:54 +0900 | [diff] [blame] | 200 | #define PREFETCH_STRIDE L1_CACHE_BYTES |
| 201 | #define ARCH_HAS_PREFETCH |
| 202 | #define ARCH_HAS_PREFETCHW |
Paul Mundt | c81fc38 | 2011-01-11 14:39:35 +0900 | [diff] [blame] | 203 | |
| 204 | static inline void prefetch(const void *x) |
Paul Mundt | af3c7df | 2007-11-09 17:08:54 +0900 | [diff] [blame] | 205 | { |
Giuseppe CAVALLARO | d53e430 | 2010-11-17 06:50:17 +0000 | [diff] [blame] | 206 | __builtin_prefetch(x, 0, 3); |
Paul Mundt | af3c7df | 2007-11-09 17:08:54 +0900 | [diff] [blame] | 207 | } |
| 208 | |
Paul Mundt | c81fc38 | 2011-01-11 14:39:35 +0900 | [diff] [blame] | 209 | static inline void prefetchw(const void *x) |
Giuseppe CAVALLARO | d53e430 | 2010-11-17 06:50:17 +0000 | [diff] [blame] | 210 | { |
| 211 | __builtin_prefetch(x, 1, 3); |
| 212 | } |
Paul Mundt | af3c7df | 2007-11-09 17:08:54 +0900 | [diff] [blame] | 213 | #endif |
| 214 | |
Paul Mundt | af3c7df | 2007-11-09 17:08:54 +0900 | [diff] [blame] | 215 | #endif /* __KERNEL__ */ |
| 216 | #endif /* __ASM_SH_PROCESSOR_32_H */ |