1 // SPDX-License-Identifier: GPL-2.0 2 /* 3 * linux/arch/m68k/kernel/process.c 4 * 5 * Copyright (C) 1995 Hamish Macdonald 6 * 7 * 68060 fixes by Jesper Skov 8 */ 9 10 /* 11 * This file handles the architecture-dependent parts of process handling.. 12 */ 13 14 #include <linux/errno.h> 15 #include <linux/module.h> 16 #include <linux/sched.h> 17 #include <linux/sched/debug.h> 18 #include <linux/sched/task.h> 19 #include <linux/sched/task_stack.h> 20 #include <linux/kernel.h> 21 #include <linux/mm.h> 22 #include <linux/slab.h> 23 #include <linux/fs.h> 24 #include <linux/smp.h> 25 #include <linux/stddef.h> 26 #include <linux/unistd.h> 27 #include <linux/ptrace.h> 28 #include <linux/user.h> 29 #include <linux/reboot.h> 30 #include <linux/init_task.h> 31 #include <linux/mqueue.h> 32 #include <linux/rcupdate.h> 33 #include <linux/syscalls.h> 34 #include <linux/uaccess.h> 35 36 #include <asm/traps.h> 37 #include <asm/machdep.h> 38 #include <asm/setup.h> 39 40 41 asmlinkage void ret_from_fork(void); 42 asmlinkage void ret_from_kernel_thread(void); 43 44 void arch_cpu_idle(void) 45 { 46 #if defined(MACH_ATARI_ONLY) 47 /* block out HSYNC on the atari (falcon) */ 48 __asm__("stop #0x2200" : : : "cc"); 49 #else 50 __asm__("stop #0x2000" : : : "cc"); 51 #endif 52 } 53 54 void machine_restart(char * __unused) 55 { 56 if (mach_reset) 57 mach_reset(); 58 for (;;); 59 } 60 61 void machine_halt(void) 62 { 63 if (mach_halt) 64 mach_halt(); 65 for (;;); 66 } 67 68 void machine_power_off(void) 69 { 70 do_kernel_power_off(); 71 for (;;); 72 } 73 74 void (*pm_power_off)(void); 75 EXPORT_SYMBOL(pm_power_off); 76 77 void show_regs(struct pt_regs * regs) 78 { 79 pr_info("Format %02x Vector: %04x PC: %08lx Status: %04x %s\n", 80 regs->format, regs->vector, regs->pc, regs->sr, 81 print_tainted()); 82 pr_info("ORIG_D0: %08lx D0: %08lx A2: %08lx A1: %08lx\n", 83 regs->orig_d0, regs->d0, regs->a2, regs->a1); 84 pr_info("A0: %08lx D5: %08lx D4: %08lx\n", regs->a0, regs->d5, 85 regs->d4); 86 pr_info("D3: %08lx D2: %08lx D1: %08lx\n", regs->d3, regs->d2, 87 regs->d1); 88 if (!(regs->sr & PS_S)) 89 pr_info("USP: %08lx\n", rdusp()); 90 } 91 92 void flush_thread(void) 93 { 94 current->thread.fc = USER_DATA; 95 #ifdef CONFIG_FPU 96 if (!FPU_IS_EMU) { 97 unsigned long zero = 0; 98 asm volatile("frestore %0": :"m" (zero)); 99 } 100 #endif 101 } 102 103 /* 104 * Why not generic sys_clone, you ask? m68k passes all arguments on stack. 105 * And we need all registers saved, which means a bunch of stuff pushed 106 * on top of pt_regs, which means that sys_clone() arguments would be 107 * buried. We could, of course, copy them, but it's too costly for no 108 * good reason - generic clone() would have to copy them *again* for 109 * kernel_clone() anyway. So in this case it's actually better to pass pt_regs * 110 * and extract arguments for kernel_clone() from there. Eventually we might 111 * go for calling kernel_clone() directly from the wrapper, but only after we 112 * are finished with kernel_clone() prototype conversion. 113 */ 114 asmlinkage int m68k_clone(struct pt_regs *regs) 115 { 116 /* regs will be equal to current_pt_regs() */ 117 struct kernel_clone_args args = { 118 .flags = regs->d1 & ~CSIGNAL, 119 .pidfd = (int __user *)regs->d3, 120 .child_tid = (int __user *)regs->d4, 121 .parent_tid = (int __user *)regs->d3, 122 .exit_signal = regs->d1 & CSIGNAL, 123 .stack = regs->d2, 124 .tls = regs->d5, 125 }; 126 127 return kernel_clone(&args); 128 } 129 130 /* 131 * Because extra registers are saved on the stack after the sys_clone3() 132 * arguments, this C wrapper extracts them from pt_regs * and then calls the 133 * generic sys_clone3() implementation. 134 */ 135 asmlinkage int m68k_clone3(struct pt_regs *regs) 136 { 137 return sys_clone3((struct clone_args __user *)regs->d1, regs->d2); 138 } 139 140 int copy_thread(unsigned long clone_flags, unsigned long usp, unsigned long arg, 141 struct task_struct *p, unsigned long tls) 142 { 143 struct fork_frame { 144 struct switch_stack sw; 145 struct pt_regs regs; 146 } *frame; 147 148 frame = (struct fork_frame *) (task_stack_page(p) + THREAD_SIZE) - 1; 149 150 p->thread.ksp = (unsigned long)frame; 151 p->thread.esp0 = (unsigned long)&frame->regs; 152 153 /* 154 * Must save the current SFC/DFC value, NOT the value when 155 * the parent was last descheduled - RGH 10-08-96 156 */ 157 p->thread.fc = USER_DATA; 158 159 if (unlikely(p->flags & (PF_KTHREAD | PF_IO_WORKER))) { 160 /* kernel thread */ 161 memset(frame, 0, sizeof(struct fork_frame)); 162 frame->regs.sr = PS_S; 163 frame->sw.a3 = usp; /* function */ 164 frame->sw.d7 = arg; 165 frame->sw.retpc = (unsigned long)ret_from_kernel_thread; 166 p->thread.usp = 0; 167 return 0; 168 } 169 memcpy(frame, container_of(current_pt_regs(), struct fork_frame, regs), 170 sizeof(struct fork_frame)); 171 frame->regs.d0 = 0; 172 frame->sw.retpc = (unsigned long)ret_from_fork; 173 p->thread.usp = usp ?: rdusp(); 174 175 if (clone_flags & CLONE_SETTLS) 176 task_thread_info(p)->tp_value = tls; 177 178 #ifdef CONFIG_FPU 179 if (!FPU_IS_EMU) { 180 /* Copy the current fpu state */ 181 asm volatile ("fsave %0" : : "m" (p->thread.fpstate[0]) : "memory"); 182 183 if (!CPU_IS_060 ? p->thread.fpstate[0] : p->thread.fpstate[2]) { 184 if (CPU_IS_COLDFIRE) { 185 asm volatile ("fmovemd %/fp0-%/fp7,%0\n\t" 186 "fmovel %/fpiar,%1\n\t" 187 "fmovel %/fpcr,%2\n\t" 188 "fmovel %/fpsr,%3" 189 : 190 : "m" (p->thread.fp[0]), 191 "m" (p->thread.fpcntl[0]), 192 "m" (p->thread.fpcntl[1]), 193 "m" (p->thread.fpcntl[2]) 194 : "memory"); 195 } else { 196 asm volatile ("fmovemx %/fp0-%/fp7,%0\n\t" 197 "fmoveml %/fpiar/%/fpcr/%/fpsr,%1" 198 : 199 : "m" (p->thread.fp[0]), 200 "m" (p->thread.fpcntl[0]) 201 : "memory"); 202 } 203 } 204 205 /* Restore the state in case the fpu was busy */ 206 asm volatile ("frestore %0" : : "m" (p->thread.fpstate[0])); 207 } 208 #endif /* CONFIG_FPU */ 209 210 return 0; 211 } 212 213 /* Fill in the fpu structure for a core dump. */ 214 int dump_fpu (struct pt_regs *regs, struct user_m68kfp_struct *fpu) 215 { 216 if (FPU_IS_EMU) { 217 int i; 218 219 memcpy(fpu->fpcntl, current->thread.fpcntl, 12); 220 memcpy(fpu->fpregs, current->thread.fp, 96); 221 /* Convert internal fpu reg representation 222 * into long double format 223 */ 224 for (i = 0; i < 24; i += 3) 225 fpu->fpregs[i] = ((fpu->fpregs[i] & 0xffff0000) << 15) | 226 ((fpu->fpregs[i] & 0x0000ffff) << 16); 227 return 1; 228 } 229 230 if (IS_ENABLED(CONFIG_FPU)) { 231 char fpustate[216]; 232 233 /* First dump the fpu context to avoid protocol violation. */ 234 asm volatile ("fsave %0" :: "m" (fpustate[0]) : "memory"); 235 if (!CPU_IS_060 ? !fpustate[0] : !fpustate[2]) 236 return 0; 237 238 if (CPU_IS_COLDFIRE) { 239 asm volatile ("fmovel %/fpiar,%0\n\t" 240 "fmovel %/fpcr,%1\n\t" 241 "fmovel %/fpsr,%2\n\t" 242 "fmovemd %/fp0-%/fp7,%3" 243 : 244 : "m" (fpu->fpcntl[0]), 245 "m" (fpu->fpcntl[1]), 246 "m" (fpu->fpcntl[2]), 247 "m" (fpu->fpregs[0]) 248 : "memory"); 249 } else { 250 asm volatile ("fmovem %/fpiar/%/fpcr/%/fpsr,%0" 251 : 252 : "m" (fpu->fpcntl[0]) 253 : "memory"); 254 asm volatile ("fmovemx %/fp0-%/fp7,%0" 255 : 256 : "m" (fpu->fpregs[0]) 257 : "memory"); 258 } 259 } 260 261 return 1; 262 } 263 EXPORT_SYMBOL(dump_fpu); 264 265 unsigned long __get_wchan(struct task_struct *p) 266 { 267 unsigned long fp, pc; 268 unsigned long stack_page; 269 int count = 0; 270 271 stack_page = (unsigned long)task_stack_page(p); 272 fp = ((struct switch_stack *)p->thread.ksp)->a6; 273 do { 274 if (fp < stack_page+sizeof(struct thread_info) || 275 fp >= 8184+stack_page) 276 return 0; 277 pc = ((unsigned long *)fp)[1]; 278 if (!in_sched_functions(pc)) 279 return pc; 280 fp = *(unsigned long *) fp; 281 } while (count++ < 16); 282 return 0; 283 } 284