2 * linux/arch/m68k/kernel/process.c
4 * Copyright (C) 1995 Hamish Macdonald
6 * 68060 fixes by Jesper Skov
10 * This file handles the architecture-dependent parts of process handling..
13 #include <linux/errno.h>
14 #include <linux/module.h>
15 #include <linux/sched.h>
16 #include <linux/kernel.h>
18 #include <linux/slab.h>
20 #include <linux/smp.h>
21 #include <linux/stddef.h>
22 #include <linux/unistd.h>
23 #include <linux/ptrace.h>
24 #include <linux/user.h>
25 #include <linux/reboot.h>
26 #include <linux/init_task.h>
27 #include <linux/mqueue.h>
28 #include <linux/rcupdate.h>
30 #include <asm/uaccess.h>
31 #include <asm/traps.h>
32 #include <asm/machdep.h>
33 #include <asm/setup.h>
34 #include <asm/pgtable.h>
37 asmlinkage
void ret_from_fork(void);
38 asmlinkage
void ret_from_kernel_thread(void);
42 * Return saved PC from a blocked thread
44 unsigned long thread_saved_pc(struct task_struct
*tsk
)
46 struct switch_stack
*sw
= (struct switch_stack
*)tsk
->thread
.ksp
;
47 /* Check whether the thread is blocked in resume() */
48 if (in_sched_functions(sw
->retpc
))
49 return ((unsigned long *)sw
->a6
)[1];
54 void arch_cpu_idle(void)
56 #if defined(MACH_ATARI_ONLY)
57 /* block out HSYNC on the atari (falcon) */
58 __asm__("stop #0x2200" : : : "cc");
60 __asm__("stop #0x2000" : : : "cc");
64 void machine_restart(char * __unused
)
71 void machine_halt(void)
78 void machine_power_off(void)
85 void (*pm_power_off
)(void) = machine_power_off
;
86 EXPORT_SYMBOL(pm_power_off
);
88 void show_regs(struct pt_regs
* regs
)
91 printk("Format %02x Vector: %04x PC: %08lx Status: %04x %s\n",
92 regs
->format
, regs
->vector
, regs
->pc
, regs
->sr
, print_tainted());
93 printk("ORIG_D0: %08lx D0: %08lx A2: %08lx A1: %08lx\n",
94 regs
->orig_d0
, regs
->d0
, regs
->a2
, regs
->a1
);
95 printk("A0: %08lx D5: %08lx D4: %08lx\n",
96 regs
->a0
, regs
->d5
, regs
->d4
);
97 printk("D3: %08lx D2: %08lx D1: %08lx\n",
98 regs
->d3
, regs
->d2
, regs
->d1
);
99 if (!(regs
->sr
& PS_S
))
100 printk("USP: %08lx\n", rdusp());
103 void flush_thread(void)
105 current
->thread
.fs
= __USER_DS
;
108 unsigned long zero
= 0;
109 asm volatile("frestore %0": :"m" (zero
));
115 * Why not generic sys_clone, you ask? m68k passes all arguments on stack.
116 * And we need all registers saved, which means a bunch of stuff pushed
117 * on top of pt_regs, which means that sys_clone() arguments would be
118 * buried. We could, of course, copy them, but it's too costly for no
119 * good reason - generic clone() would have to copy them *again* for
120 * do_fork() anyway. So in this case it's actually better to pass pt_regs *
121 * and extract arguments for do_fork() from there. Eventually we might
122 * go for calling do_fork() directly from the wrapper, but only after we
123 * are finished with do_fork() prototype conversion.
125 asmlinkage
int m68k_clone(struct pt_regs
*regs
)
127 /* regs will be equal to current_pt_regs() */
128 return do_fork(regs
->d1
, regs
->d2
, 0,
129 (int __user
*)regs
->d3
, (int __user
*)regs
->d4
);
132 int copy_thread(unsigned long clone_flags
, unsigned long usp
,
133 unsigned long arg
, struct task_struct
*p
)
136 struct switch_stack sw
;
140 frame
= (struct fork_frame
*) (task_stack_page(p
) + THREAD_SIZE
) - 1;
142 p
->thread
.ksp
= (unsigned long)frame
;
143 p
->thread
.esp0
= (unsigned long)&frame
->regs
;
146 * Must save the current SFC/DFC value, NOT the value when
147 * the parent was last descheduled - RGH 10-08-96
149 p
->thread
.fs
= get_fs().seg
;
151 if (unlikely(p
->flags
& PF_KTHREAD
)) {
153 memset(frame
, 0, sizeof(struct fork_frame
));
154 frame
->regs
.sr
= PS_S
;
155 frame
->sw
.a3
= usp
; /* function */
157 frame
->sw
.retpc
= (unsigned long)ret_from_kernel_thread
;
161 memcpy(frame
, container_of(current_pt_regs(), struct fork_frame
, regs
),
162 sizeof(struct fork_frame
));
164 frame
->sw
.retpc
= (unsigned long)ret_from_fork
;
165 p
->thread
.usp
= usp
?: rdusp();
167 if (clone_flags
& CLONE_SETTLS
)
168 task_thread_info(p
)->tp_value
= frame
->regs
.d5
;
172 /* Copy the current fpu state */
173 asm volatile ("fsave %0" : : "m" (p
->thread
.fpstate
[0]) : "memory");
175 if (!CPU_IS_060
? p
->thread
.fpstate
[0] : p
->thread
.fpstate
[2]) {
176 if (CPU_IS_COLDFIRE
) {
177 asm volatile ("fmovemd %/fp0-%/fp7,%0\n\t"
178 "fmovel %/fpiar,%1\n\t"
179 "fmovel %/fpcr,%2\n\t"
182 : "m" (p
->thread
.fp
[0]),
183 "m" (p
->thread
.fpcntl
[0]),
184 "m" (p
->thread
.fpcntl
[1]),
185 "m" (p
->thread
.fpcntl
[2])
188 asm volatile ("fmovemx %/fp0-%/fp7,%0\n\t"
189 "fmoveml %/fpiar/%/fpcr/%/fpsr,%1"
191 : "m" (p
->thread
.fp
[0]),
192 "m" (p
->thread
.fpcntl
[0])
197 /* Restore the state in case the fpu was busy */
198 asm volatile ("frestore %0" : : "m" (p
->thread
.fpstate
[0]));
200 #endif /* CONFIG_FPU */
205 /* Fill in the fpu structure for a core dump. */
206 int dump_fpu (struct pt_regs
*regs
, struct user_m68kfp_struct
*fpu
)
211 memcpy(fpu
->fpcntl
, current
->thread
.fpcntl
, 12);
212 memcpy(fpu
->fpregs
, current
->thread
.fp
, 96);
213 /* Convert internal fpu reg representation
214 * into long double format
216 for (i
= 0; i
< 24; i
+= 3)
217 fpu
->fpregs
[i
] = ((fpu
->fpregs
[i
] & 0xffff0000) << 15) |
218 ((fpu
->fpregs
[i
] & 0x0000ffff) << 16);
222 if (IS_ENABLED(CONFIG_FPU
)) {
225 /* First dump the fpu context to avoid protocol violation. */
226 asm volatile ("fsave %0" :: "m" (fpustate
[0]) : "memory");
227 if (!CPU_IS_060
? !fpustate
[0] : !fpustate
[2])
230 if (CPU_IS_COLDFIRE
) {
231 asm volatile ("fmovel %/fpiar,%0\n\t"
232 "fmovel %/fpcr,%1\n\t"
233 "fmovel %/fpsr,%2\n\t"
234 "fmovemd %/fp0-%/fp7,%3"
236 : "m" (fpu
->fpcntl
[0]),
237 "m" (fpu
->fpcntl
[1]),
238 "m" (fpu
->fpcntl
[2]),
242 asm volatile ("fmovem %/fpiar/%/fpcr/%/fpsr,%0"
244 : "m" (fpu
->fpcntl
[0])
246 asm volatile ("fmovemx %/fp0-%/fp7,%0"
248 : "m" (fpu
->fpregs
[0])
255 EXPORT_SYMBOL(dump_fpu
);
257 unsigned long get_wchan(struct task_struct
*p
)
259 unsigned long fp
, pc
;
260 unsigned long stack_page
;
262 if (!p
|| p
== current
|| p
->state
== TASK_RUNNING
)
265 stack_page
= (unsigned long)task_stack_page(p
);
266 fp
= ((struct switch_stack
*)p
->thread
.ksp
)->a6
;
268 if (fp
< stack_page
+sizeof(struct thread_info
) ||
269 fp
>= 8184+stack_page
)
271 pc
= ((unsigned long *)fp
)[1];
272 if (!in_sched_functions(pc
))
274 fp
= *(unsigned long *) fp
;
275 } while (count
++ < 16);