2 * arch/s390/kernel/process.c
5 * Copyright (C) 1999 IBM Deutschland Entwicklung GmbH, IBM Corporation
6 * Author(s): Martin Schwidefsky (schwidefsky@de.ibm.com),
7 * Hartmut Penner (hp@de.ibm.com),
8 * Denis Joseph Barrow (djbarrow@de.ibm.com,barrow_dj@yahoo.com),
10 * Derived from "arch/i386/kernel/process.c"
11 * Copyright (C) 1995, Linus Torvalds
15 * This file handles the architecture-dependent parts of process handling..
18 #include <linux/compiler.h>
19 #include <linux/cpu.h>
20 #include <linux/errno.h>
21 #include <linux/sched.h>
22 #include <linux/kernel.h>
25 #include <linux/smp.h>
26 #include <linux/stddef.h>
27 #include <linux/unistd.h>
28 #include <linux/ptrace.h>
29 #include <linux/slab.h>
30 #include <linux/vmalloc.h>
31 #include <linux/user.h>
32 #include <linux/interrupt.h>
33 #include <linux/delay.h>
34 #include <linux/reboot.h>
35 #include <linux/init.h>
36 #include <linux/module.h>
37 #include <linux/notifier.h>
38 #include <linux/utsname.h>
39 #include <asm/uaccess.h>
40 #include <asm/pgtable.h>
41 #include <asm/system.h>
43 #include <asm/processor.h>
45 #include <asm/timer.h>
48 asmlinkage void ret_from_fork(void) asm ("ret_from_fork");
51 * Return saved PC of a blocked thread. used in kernel/sched.
52 * resume in entry.S does not create a new stack frame, it
53 * just stores the registers %r6-%r15 to the frame given by
54 * schedule. We want to return the address of the caller of
55 * schedule, so we have to walk the backchain one time to
56 * find the frame schedule() store its return address.
58 unsigned long thread_saved_pc(struct task_struct *tsk)
60 struct stack_frame *sf, *low, *high;
62 if (!tsk || !task_stack_page(tsk))
64 low = task_stack_page(tsk);
65 high = (struct stack_frame *) task_pt_regs(tsk);
66 sf = (struct stack_frame *) (tsk->thread.ksp & PSW_ADDR_INSN);
67 if (sf <= low || sf > high)
69 sf = (struct stack_frame *) (sf->back_chain & PSW_ADDR_INSN);
70 if (sf <= low || sf > high)
76 * Need to know about CPUs going idle?
78 static ATOMIC_NOTIFIER_HEAD(idle_chain);
80 int register_idle_notifier(struct notifier_block *nb)
82 return atomic_notifier_chain_register(&idle_chain, nb);
84 EXPORT_SYMBOL(register_idle_notifier);
86 int unregister_idle_notifier(struct notifier_block *nb)
88 return atomic_notifier_chain_unregister(&idle_chain, nb);
90 EXPORT_SYMBOL(unregister_idle_notifier);
92 void do_monitor_call(struct pt_regs *regs, long interruption_code)
95 struct s390_idle_data *idle;
97 idle = &__get_cpu_var(s390_idle);
98 spin_lock(&idle->lock);
99 idle->idle_time += get_clock() - idle->idle_enter;
101 spin_unlock(&idle->lock);
103 /* disable monitor call class 0 */
104 __ctl_clear_bit(8, 15);
106 atomic_notifier_call_chain(&idle_chain, S390_CPU_NOT_IDLE,
107 (void *)(long) smp_processor_id());
110 extern void s390_handle_mcck(void);
112 * The idle loop on a S390...
114 static void default_idle(void)
120 struct s390_idle_data *idle;
123 /* CPU is going idle. */
124 cpu = smp_processor_id();
125 hcpu = (void *)(long)cpu;
127 if (need_resched()) {
132 rc = __atomic_notifier_call_chain(&idle_chain, S390_CPU_IDLE, hcpu, -1,
134 if (rc == NOTIFY_BAD) {
136 __atomic_notifier_call_chain(&idle_chain, S390_CPU_NOT_IDLE,
137 hcpu, nr_calls, NULL);
142 /* enable monitor call class 0 */
143 __ctl_set_bit(8, 15);
145 #ifdef CONFIG_HOTPLUG_CPU
146 if (cpu_is_offline(cpu)) {
147 preempt_enable_no_resched();
152 local_mcck_disable();
153 if (test_thread_flag(TIF_MCCK_PENDING)) {
160 idle = &__get_cpu_var(s390_idle);
161 spin_lock(&idle->lock);
164 idle->idle_enter = get_clock();
165 spin_unlock(&idle->lock);
168 /* Wait for external, I/O or machine check interrupt. */
169 __load_psw_mask(psw_kernel_bits | PSW_MASK_WAIT |
170 PSW_MASK_IO | PSW_MASK_EXT);
176 while (!need_resched())
179 preempt_enable_no_resched();
185 void show_regs(struct pt_regs *regs)
188 printk("CPU: %d %s %s %.*s\n",
189 task_thread_info(current)->cpu, print_tainted(),
190 init_utsname()->release,
191 (int)strcspn(init_utsname()->version, " "),
192 init_utsname()->version);
193 printk("Process %s (pid: %d, task: %p, ksp: %p)\n",
194 current->comm, current->pid, current,
195 (void *) current->thread.ksp);
196 show_registers(regs);
197 /* Show stack backtrace if pt_regs is from kernel mode */
198 if (!(regs->psw.mask & PSW_MASK_PSTATE))
199 show_trace(NULL, (unsigned long *) regs->gprs[15]);
202 extern void kernel_thread_starter(void);
206 "kernel_thread_starter:\n"
212 int kernel_thread(int (*fn)(void *), void * arg, unsigned long flags)
216 memset(®s, 0, sizeof(regs));
217 regs.psw.mask = psw_kernel_bits | PSW_MASK_IO | PSW_MASK_EXT;
218 regs.psw.addr = (unsigned long) kernel_thread_starter | PSW_ADDR_AMODE;
219 regs.gprs[9] = (unsigned long) fn;
220 regs.gprs[10] = (unsigned long) arg;
221 regs.gprs[11] = (unsigned long) do_exit;
224 /* Ok, create the new process.. */
225 return do_fork(flags | CLONE_VM | CLONE_UNTRACED,
226 0, ®s, 0, NULL, NULL);
230 * Free current thread data structures etc..
232 void exit_thread(void)
236 void flush_thread(void)
239 clear_tsk_thread_flag(current, TIF_USEDFPU);
242 void release_thread(struct task_struct *dead_task)
246 int copy_thread(int nr, unsigned long clone_flags, unsigned long new_stackp,
247 unsigned long unused,
248 struct task_struct * p, struct pt_regs * regs)
252 struct stack_frame sf;
253 struct pt_regs childregs;
256 frame = container_of(task_pt_regs(p), struct fake_frame, childregs);
257 p->thread.ksp = (unsigned long) frame;
258 /* Store access registers to kernel stack of new process. */
259 frame->childregs = *regs;
260 frame->childregs.gprs[2] = 0; /* child returns 0 on fork. */
261 frame->childregs.gprs[15] = new_stackp;
262 frame->sf.back_chain = 0;
264 /* new return point is ret_from_fork */
265 frame->sf.gprs[8] = (unsigned long) ret_from_fork;
267 /* fake return stack for resume(), don't go back to schedule */
268 frame->sf.gprs[9] = (unsigned long) frame;
270 /* Save access registers to new thread structure. */
271 save_access_regs(&p->thread.acrs[0]);
275 * save fprs to current->thread.fp_regs to merge them with
276 * the emulated registers and then copy the result to the child.
278 save_fp_regs(¤t->thread.fp_regs);
279 memcpy(&p->thread.fp_regs, ¤t->thread.fp_regs,
280 sizeof(s390_fp_regs));
281 /* Set a new TLS ? */
282 if (clone_flags & CLONE_SETTLS)
283 p->thread.acrs[0] = regs->gprs[6];
284 #else /* CONFIG_64BIT */
285 /* Save the fpu registers to new thread structure. */
286 save_fp_regs(&p->thread.fp_regs);
287 /* Set a new TLS ? */
288 if (clone_flags & CLONE_SETTLS) {
289 if (test_thread_flag(TIF_31BIT)) {
290 p->thread.acrs[0] = (unsigned int) regs->gprs[6];
292 p->thread.acrs[0] = (unsigned int)(regs->gprs[6] >> 32);
293 p->thread.acrs[1] = (unsigned int) regs->gprs[6];
296 #endif /* CONFIG_64BIT */
297 /* start new process with ar4 pointing to the correct address space */
298 p->thread.mm_segment = get_fs();
299 /* Don't copy debug registers */
300 memset(&p->thread.per_info,0,sizeof(p->thread.per_info));
305 asmlinkage long sys_fork(void)
307 struct pt_regs *regs = task_pt_regs(current);
308 return do_fork(SIGCHLD, regs->gprs[15], regs, 0, NULL, NULL);
311 asmlinkage long sys_clone(void)
313 struct pt_regs *regs = task_pt_regs(current);
314 unsigned long clone_flags;
316 int __user *parent_tidptr, *child_tidptr;
318 clone_flags = regs->gprs[3];
319 newsp = regs->orig_gpr2;
320 parent_tidptr = (int __user *) regs->gprs[4];
321 child_tidptr = (int __user *) regs->gprs[5];
323 newsp = regs->gprs[15];
324 return do_fork(clone_flags, newsp, regs, 0,
325 parent_tidptr, child_tidptr);
329 * This is trivial, and on the face of it looks like it
330 * could equally well be done in user mode.
332 * Not so, for quite unobvious reasons - register pressure.
333 * In user mode vfork() cannot have a stack frame, and if
334 * done by calling the "clone()" system call directly, you
335 * do not have enough call-clobbered registers to hold all
336 * the information you need.
338 asmlinkage long sys_vfork(void)
340 struct pt_regs *regs = task_pt_regs(current);
341 return do_fork(CLONE_VFORK | CLONE_VM | SIGCHLD,
342 regs->gprs[15], regs, 0, NULL, NULL);
345 asmlinkage void execve_tail(void)
348 current->ptrace &= ~PT_DTRACE;
349 task_unlock(current);
350 current->thread.fp_regs.fpc = 0;
351 if (MACHINE_HAS_IEEE)
352 asm volatile("sfpc %0,%0" : : "d" (0));
356 * sys_execve() executes a new program.
358 asmlinkage long sys_execve(void)
360 struct pt_regs *regs = task_pt_regs(current);
362 unsigned long result;
365 filename = getname((char __user *) regs->orig_gpr2);
366 if (IS_ERR(filename)) {
367 result = PTR_ERR(filename);
370 rc = do_execve(filename, (char __user * __user *) regs->gprs[3],
371 (char __user * __user *) regs->gprs[4], regs);
377 result = regs->gprs[2];
385 * fill in the FPU structure for a core dump.
387 int dump_fpu (struct pt_regs * regs, s390_fp_regs *fpregs)
391 * save fprs to current->thread.fp_regs to merge them with
392 * the emulated registers and then copy the result to the dump.
394 save_fp_regs(¤t->thread.fp_regs);
395 memcpy(fpregs, ¤t->thread.fp_regs, sizeof(s390_fp_regs));
396 #else /* CONFIG_64BIT */
397 save_fp_regs(fpregs);
398 #endif /* CONFIG_64BIT */
402 unsigned long get_wchan(struct task_struct *p)
404 struct stack_frame *sf, *low, *high;
405 unsigned long return_address;
408 if (!p || p == current || p->state == TASK_RUNNING || !task_stack_page(p))
410 low = task_stack_page(p);
411 high = (struct stack_frame *) task_pt_regs(p);
412 sf = (struct stack_frame *) (p->thread.ksp & PSW_ADDR_INSN);
413 if (sf <= low || sf > high)
415 for (count = 0; count < 16; count++) {
416 sf = (struct stack_frame *) (sf->back_chain & PSW_ADDR_INSN);
417 if (sf <= low || sf > high)
419 return_address = sf->gprs[8] & PSW_ADDR_INSN;
420 if (!in_sched_functions(return_address))
421 return return_address;