blob: dbefd0db395f6d99bf380b3cbc9a541e0fb4cd0b [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * arch/s390/kernel/process.c
3 *
4 * S390 version
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),
9 *
10 * Derived from "arch/i386/kernel/process.c"
11 * Copyright (C) 1995, Linus Torvalds
12 */
13
14/*
15 * This file handles the architecture-dependent parts of process handling..
16 */
17
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <linux/compiler.h>
19#include <linux/cpu.h>
20#include <linux/errno.h>
21#include <linux/sched.h>
22#include <linux/kernel.h>
23#include <linux/mm.h>
Alexey Dobriyan4e950f62007-07-30 02:36:13 +040024#include <linux/fs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/smp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#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>
Heiko Carstens5c699712008-01-26 14:11:01 +010038#include <linux/utsname.h>
Heiko Carstens5a62b192008-04-17 07:46:25 +020039#include <linux/tick.h>
Heiko Carstensa8061702008-04-17 07:46:26 +020040#include <linux/elfcore.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include <asm/uaccess.h>
42#include <asm/pgtable.h>
43#include <asm/system.h>
44#include <asm/io.h>
45#include <asm/processor.h>
46#include <asm/irq.h>
47#include <asm/timer.h>
Heiko Carstensfae8b222007-10-22 12:52:39 +020048#include <asm/cpu.h>
Heiko Carstensa8061702008-04-17 07:46:26 +020049#include "entry.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +020051asmlinkage void ret_from_fork(void) asm ("ret_from_fork");
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
53/*
54 * Return saved PC of a blocked thread. used in kernel/sched.
55 * resume in entry.S does not create a new stack frame, it
56 * just stores the registers %r6-%r15 to the frame given by
57 * schedule. We want to return the address of the caller of
58 * schedule, so we have to walk the backchain one time to
59 * find the frame schedule() store its return address.
60 */
61unsigned long thread_saved_pc(struct task_struct *tsk)
62{
Heiko Carstenseb33c192006-01-14 13:20:57 -080063 struct stack_frame *sf, *low, *high;
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
Heiko Carstenseb33c192006-01-14 13:20:57 -080065 if (!tsk || !task_stack_page(tsk))
66 return 0;
67 low = task_stack_page(tsk);
68 high = (struct stack_frame *) task_pt_regs(tsk);
69 sf = (struct stack_frame *) (tsk->thread.ksp & PSW_ADDR_INSN);
70 if (sf <= low || sf > high)
71 return 0;
72 sf = (struct stack_frame *) (sf->back_chain & PSW_ADDR_INSN);
73 if (sf <= low || sf > high)
74 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 return sf->gprs[8];
76}
77
78/*
79 * Need to know about CPUs going idle?
80 */
Alan Sterne041c682006-03-27 01:16:30 -080081static ATOMIC_NOTIFIER_HEAD(idle_chain);
Heiko Carstens43ca5c32008-04-17 07:46:23 +020082DEFINE_PER_CPU(struct s390_idle_data, s390_idle);
Linus Torvalds1da177e2005-04-16 15:20:36 -070083
84int register_idle_notifier(struct notifier_block *nb)
85{
Alan Sterne041c682006-03-27 01:16:30 -080086 return atomic_notifier_chain_register(&idle_chain, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070087}
88EXPORT_SYMBOL(register_idle_notifier);
89
90int unregister_idle_notifier(struct notifier_block *nb)
91{
Alan Sterne041c682006-03-27 01:16:30 -080092 return atomic_notifier_chain_unregister(&idle_chain, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070093}
94EXPORT_SYMBOL(unregister_idle_notifier);
95
Heiko Carstens43ca5c32008-04-17 07:46:23 +020096static int s390_idle_enter(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070097{
Heiko Carstens43ca5c32008-04-17 07:46:23 +020098 struct s390_idle_data *idle;
99 int nr_calls = 0;
100 void *hcpu;
101 int rc;
102
103 hcpu = (void *)(long)smp_processor_id();
104 rc = __atomic_notifier_call_chain(&idle_chain, S390_CPU_IDLE, hcpu, -1,
105 &nr_calls);
106 if (rc == NOTIFY_BAD) {
107 nr_calls--;
108 __atomic_notifier_call_chain(&idle_chain, S390_CPU_NOT_IDLE,
109 hcpu, nr_calls, NULL);
110 return rc;
111 }
112 idle = &__get_cpu_var(s390_idle);
113 spin_lock(&idle->lock);
114 idle->idle_count++;
115 idle->in_idle = 1;
116 idle->idle_enter = get_clock();
117 spin_unlock(&idle->lock);
118 return NOTIFY_OK;
119}
120
121void s390_idle_leave(void)
122{
Heiko Carstensfae8b222007-10-22 12:52:39 +0200123 struct s390_idle_data *idle;
124
125 idle = &__get_cpu_var(s390_idle);
126 spin_lock(&idle->lock);
127 idle->idle_time += get_clock() - idle->idle_enter;
128 idle->in_idle = 0;
129 spin_unlock(&idle->lock);
Heiko Carstensdce55472007-07-10 11:24:21 +0200130 atomic_notifier_call_chain(&idle_chain, S390_CPU_NOT_IDLE,
131 (void *)(long) smp_processor_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132}
133
Heiko Carstens77fa2242005-06-25 14:55:30 -0700134extern void s390_handle_mcck(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135/*
136 * The idle loop on a S390...
137 */
Adrian Bunkcdb04522006-03-24 03:15:57 -0800138static void default_idle(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 /* CPU is going idle. */
Nick Piggin64c7c8f2005-11-08 21:39:04 -0800141 local_irq_disable();
142 if (need_resched()) {
143 local_irq_enable();
144 return;
145 }
Heiko Carstens43ca5c32008-04-17 07:46:23 +0200146 if (s390_idle_enter() == NOTIFY_BAD) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 local_irq_enable();
148 return;
149 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150#ifdef CONFIG_HOTPLUG_CPU
Heiko Carstens43ca5c32008-04-17 07:46:23 +0200151 if (cpu_is_offline(smp_processor_id())) {
Heiko Carstens1fca2512006-02-17 13:52:46 -0800152 preempt_enable_no_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 cpu_die();
Heiko Carstens1fca2512006-02-17 13:52:46 -0800154 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155#endif
Heiko Carstens77fa2242005-06-25 14:55:30 -0700156 local_mcck_disable();
157 if (test_thread_flag(TIF_MCCK_PENDING)) {
158 local_mcck_enable();
Heiko Carstens43ca5c32008-04-17 07:46:23 +0200159 s390_idle_leave();
Heiko Carstens77fa2242005-06-25 14:55:30 -0700160 local_irq_enable();
161 s390_handle_mcck();
162 return;
163 }
Heiko Carstens1f194a42006-07-03 00:24:46 -0700164 trace_hardirqs_on();
Heiko Carstens77fa2242005-06-25 14:55:30 -0700165 /* Wait for external, I/O or machine check interrupt. */
Gerald Schaeferc1821c22007-02-05 21:18:17 +0100166 __load_psw_mask(psw_kernel_bits | PSW_MASK_WAIT |
Heiko Carstens77fa2242005-06-25 14:55:30 -0700167 PSW_MASK_IO | PSW_MASK_EXT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168}
169
170void cpu_idle(void)
171{
Nick Piggin5bfb5d62005-11-08 21:39:01 -0800172 for (;;) {
Heiko Carstens5a62b192008-04-17 07:46:25 +0200173 tick_nohz_stop_sched_tick();
Nick Piggin5bfb5d62005-11-08 21:39:01 -0800174 while (!need_resched())
175 default_idle();
Heiko Carstens5a62b192008-04-17 07:46:25 +0200176 tick_nohz_restart_sched_tick();
Nick Piggin5bfb5d62005-11-08 21:39:01 -0800177 preempt_enable_no_resched();
178 schedule();
179 preempt_disable();
180 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181}
182
183void show_regs(struct pt_regs *regs)
184{
Heiko Carstens5c699712008-01-26 14:11:01 +0100185 print_modules();
186 printk("CPU: %d %s %s %.*s\n",
187 task_thread_info(current)->cpu, print_tainted(),
188 init_utsname()->release,
189 (int)strcspn(init_utsname()->version, " "),
190 init_utsname()->version);
191 printk("Process %s (pid: %d, task: %p, ksp: %p)\n",
192 current->comm, current->pid, current,
193 (void *) current->thread.ksp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 show_registers(regs);
195 /* Show stack backtrace if pt_regs is from kernel mode */
196 if (!(regs->psw.mask & PSW_MASK_PSTATE))
Heiko Carstensd2c993d2006-07-12 16:41:55 +0200197 show_trace(NULL, (unsigned long *) regs->gprs[15]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198}
199
200extern void kernel_thread_starter(void);
201
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200202asm(
203 ".align 4\n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 "kernel_thread_starter:\n"
205 " la 2,0(10)\n"
206 " basr 14,9\n"
207 " la 2,0\n"
208 " br 11\n");
209
210int kernel_thread(int (*fn)(void *), void * arg, unsigned long flags)
211{
212 struct pt_regs regs;
213
214 memset(&regs, 0, sizeof(regs));
Gerald Schaeferc1821c22007-02-05 21:18:17 +0100215 regs.psw.mask = psw_kernel_bits | PSW_MASK_IO | PSW_MASK_EXT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 regs.psw.addr = (unsigned long) kernel_thread_starter | PSW_ADDR_AMODE;
217 regs.gprs[9] = (unsigned long) fn;
218 regs.gprs[10] = (unsigned long) arg;
219 regs.gprs[11] = (unsigned long) do_exit;
220 regs.orig_gpr2 = -1;
221
222 /* Ok, create the new process.. */
223 return do_fork(flags | CLONE_VM | CLONE_UNTRACED,
224 0, &regs, 0, NULL, NULL);
225}
226
227/*
228 * Free current thread data structures etc..
229 */
230void exit_thread(void)
231{
232}
233
234void flush_thread(void)
235{
236 clear_used_math();
237 clear_tsk_thread_flag(current, TIF_USEDFPU);
238}
239
240void release_thread(struct task_struct *dead_task)
241{
242}
243
244int copy_thread(int nr, unsigned long clone_flags, unsigned long new_stackp,
245 unsigned long unused,
246 struct task_struct * p, struct pt_regs * regs)
247{
248 struct fake_frame
249 {
250 struct stack_frame sf;
251 struct pt_regs childregs;
252 } *frame;
253
Al Viroc7584fb2006-01-12 01:05:49 -0800254 frame = container_of(task_pt_regs(p), struct fake_frame, childregs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 p->thread.ksp = (unsigned long) frame;
256 /* Store access registers to kernel stack of new process. */
257 frame->childregs = *regs;
258 frame->childregs.gprs[2] = 0; /* child returns 0 on fork. */
259 frame->childregs.gprs[15] = new_stackp;
260 frame->sf.back_chain = 0;
261
262 /* new return point is ret_from_fork */
263 frame->sf.gprs[8] = (unsigned long) ret_from_fork;
264
265 /* fake return stack for resume(), don't go back to schedule */
266 frame->sf.gprs[9] = (unsigned long) frame;
267
268 /* Save access registers to new thread structure. */
269 save_access_regs(&p->thread.acrs[0]);
270
Martin Schwidefsky347a8dc2006-01-06 00:19:28 -0800271#ifndef CONFIG_64BIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 /*
273 * save fprs to current->thread.fp_regs to merge them with
274 * the emulated registers and then copy the result to the child.
275 */
276 save_fp_regs(&current->thread.fp_regs);
277 memcpy(&p->thread.fp_regs, &current->thread.fp_regs,
278 sizeof(s390_fp_regs));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 /* Set a new TLS ? */
280 if (clone_flags & CLONE_SETTLS)
281 p->thread.acrs[0] = regs->gprs[6];
Martin Schwidefsky347a8dc2006-01-06 00:19:28 -0800282#else /* CONFIG_64BIT */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 /* Save the fpu registers to new thread structure. */
284 save_fp_regs(&p->thread.fp_regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 /* Set a new TLS ? */
286 if (clone_flags & CLONE_SETTLS) {
287 if (test_thread_flag(TIF_31BIT)) {
288 p->thread.acrs[0] = (unsigned int) regs->gprs[6];
289 } else {
290 p->thread.acrs[0] = (unsigned int)(regs->gprs[6] >> 32);
291 p->thread.acrs[1] = (unsigned int) regs->gprs[6];
292 }
293 }
Martin Schwidefsky347a8dc2006-01-06 00:19:28 -0800294#endif /* CONFIG_64BIT */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 /* start new process with ar4 pointing to the correct address space */
296 p->thread.mm_segment = get_fs();
297 /* Don't copy debug registers */
298 memset(&p->thread.per_info,0,sizeof(p->thread.per_info));
299
300 return 0;
301}
302
Martin Schwidefsky03ff9a22007-04-27 16:01:40 +0200303asmlinkage long sys_fork(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304{
Martin Schwidefsky03ff9a22007-04-27 16:01:40 +0200305 struct pt_regs *regs = task_pt_regs(current);
306 return do_fork(SIGCHLD, regs->gprs[15], regs, 0, NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307}
308
Martin Schwidefsky03ff9a22007-04-27 16:01:40 +0200309asmlinkage long sys_clone(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310{
Martin Schwidefsky03ff9a22007-04-27 16:01:40 +0200311 struct pt_regs *regs = task_pt_regs(current);
312 unsigned long clone_flags;
313 unsigned long newsp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 int __user *parent_tidptr, *child_tidptr;
315
Martin Schwidefsky03ff9a22007-04-27 16:01:40 +0200316 clone_flags = regs->gprs[3];
317 newsp = regs->orig_gpr2;
318 parent_tidptr = (int __user *) regs->gprs[4];
319 child_tidptr = (int __user *) regs->gprs[5];
320 if (!newsp)
321 newsp = regs->gprs[15];
322 return do_fork(clone_flags, newsp, regs, 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 parent_tidptr, child_tidptr);
324}
325
326/*
327 * This is trivial, and on the face of it looks like it
328 * could equally well be done in user mode.
329 *
330 * Not so, for quite unobvious reasons - register pressure.
331 * In user mode vfork() cannot have a stack frame, and if
332 * done by calling the "clone()" system call directly, you
333 * do not have enough call-clobbered registers to hold all
334 * the information you need.
335 */
Martin Schwidefsky03ff9a22007-04-27 16:01:40 +0200336asmlinkage long sys_vfork(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337{
Martin Schwidefsky03ff9a22007-04-27 16:01:40 +0200338 struct pt_regs *regs = task_pt_regs(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 return do_fork(CLONE_VFORK | CLONE_VM | SIGCHLD,
Martin Schwidefsky03ff9a22007-04-27 16:01:40 +0200340 regs->gprs[15], regs, 0, NULL, NULL);
341}
342
343asmlinkage void execve_tail(void)
344{
345 task_lock(current);
346 current->ptrace &= ~PT_DTRACE;
347 task_unlock(current);
348 current->thread.fp_regs.fpc = 0;
349 if (MACHINE_HAS_IEEE)
350 asm volatile("sfpc %0,%0" : : "d" (0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351}
352
353/*
354 * sys_execve() executes a new program.
355 */
Martin Schwidefsky03ff9a22007-04-27 16:01:40 +0200356asmlinkage long sys_execve(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357{
Martin Schwidefsky03ff9a22007-04-27 16:01:40 +0200358 struct pt_regs *regs = task_pt_regs(current);
359 char *filename;
360 unsigned long result;
361 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362
Martin Schwidefsky03ff9a22007-04-27 16:01:40 +0200363 filename = getname((char __user *) regs->orig_gpr2);
364 if (IS_ERR(filename)) {
365 result = PTR_ERR(filename);
366 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 }
Martin Schwidefsky03ff9a22007-04-27 16:01:40 +0200368 rc = do_execve(filename, (char __user * __user *) regs->gprs[3],
369 (char __user * __user *) regs->gprs[4], regs);
370 if (rc) {
371 result = rc;
372 goto out_putname;
373 }
374 execve_tail();
375 result = regs->gprs[2];
376out_putname:
377 putname(filename);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378out:
Martin Schwidefsky03ff9a22007-04-27 16:01:40 +0200379 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380}
381
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382/*
383 * fill in the FPU structure for a core dump.
384 */
385int dump_fpu (struct pt_regs * regs, s390_fp_regs *fpregs)
386{
Martin Schwidefsky347a8dc2006-01-06 00:19:28 -0800387#ifndef CONFIG_64BIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 /*
389 * save fprs to current->thread.fp_regs to merge them with
390 * the emulated registers and then copy the result to the dump.
391 */
392 save_fp_regs(&current->thread.fp_regs);
393 memcpy(fpregs, &current->thread.fp_regs, sizeof(s390_fp_regs));
Martin Schwidefsky347a8dc2006-01-06 00:19:28 -0800394#else /* CONFIG_64BIT */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 save_fp_regs(fpregs);
Martin Schwidefsky347a8dc2006-01-06 00:19:28 -0800396#endif /* CONFIG_64BIT */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 return 1;
398}
399
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400unsigned long get_wchan(struct task_struct *p)
401{
402 struct stack_frame *sf, *low, *high;
403 unsigned long return_address;
404 int count;
405
Al Viro30af7122006-01-12 01:05:50 -0800406 if (!p || p == current || p->state == TASK_RUNNING || !task_stack_page(p))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 return 0;
Al Viro30af7122006-01-12 01:05:50 -0800408 low = task_stack_page(p);
409 high = (struct stack_frame *) task_pt_regs(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 sf = (struct stack_frame *) (p->thread.ksp & PSW_ADDR_INSN);
411 if (sf <= low || sf > high)
412 return 0;
413 for (count = 0; count < 16; count++) {
414 sf = (struct stack_frame *) (sf->back_chain & PSW_ADDR_INSN);
415 if (sf <= low || sf > high)
416 return 0;
417 return_address = sf->gprs[8] & PSW_ADDR_INSN;
418 if (!in_sched_functions(return_address))
419 return return_address;
420 }
421 return 0;
422}
423