blob: 5cd38a90e64d743443baa2bc1cb95e26070d0d9e [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>
Martin Schwidefsky6f430922008-12-31 15:11:40 +010041#include <linux/kernel_stat.h>
Heiko Carstens26689452009-01-14 14:14:36 +010042#include <linux/syscalls.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include <asm/uaccess.h>
44#include <asm/pgtable.h>
45#include <asm/system.h>
46#include <asm/io.h>
47#include <asm/processor.h>
48#include <asm/irq.h>
49#include <asm/timer.h>
Heiko Carstensa8061702008-04-17 07:46:26 +020050#include "entry.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +020052asmlinkage void ret_from_fork(void) asm ("ret_from_fork");
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
54/*
55 * Return saved PC of a blocked thread. used in kernel/sched.
56 * resume in entry.S does not create a new stack frame, it
57 * just stores the registers %r6-%r15 to the frame given by
58 * schedule. We want to return the address of the caller of
59 * schedule, so we have to walk the backchain one time to
60 * find the frame schedule() store its return address.
61 */
62unsigned long thread_saved_pc(struct task_struct *tsk)
63{
Heiko Carstenseb33c192006-01-14 13:20:57 -080064 struct stack_frame *sf, *low, *high;
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
Heiko Carstenseb33c192006-01-14 13:20:57 -080066 if (!tsk || !task_stack_page(tsk))
67 return 0;
68 low = task_stack_page(tsk);
69 high = (struct stack_frame *) task_pt_regs(tsk);
70 sf = (struct stack_frame *) (tsk->thread.ksp & PSW_ADDR_INSN);
71 if (sf <= low || sf > high)
72 return 0;
73 sf = (struct stack_frame *) (sf->back_chain & PSW_ADDR_INSN);
74 if (sf <= low || sf > high)
75 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 return sf->gprs[8];
77}
78
Heiko Carstens77fa2242005-06-25 14:55:30 -070079extern void s390_handle_mcck(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070080/*
81 * The idle loop on a S390...
82 */
Adrian Bunkcdb04522006-03-24 03:15:57 -080083static void default_idle(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070084{
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 /* CPU is going idle. */
Nick Piggin64c7c8f2005-11-08 21:39:04 -080086 local_irq_disable();
87 if (need_resched()) {
88 local_irq_enable();
89 return;
90 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070091#ifdef CONFIG_HOTPLUG_CPU
Heiko Carstens43ca5c32008-04-17 07:46:23 +020092 if (cpu_is_offline(smp_processor_id())) {
Heiko Carstens1fca2512006-02-17 13:52:46 -080093 preempt_enable_no_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 cpu_die();
Heiko Carstens1fca2512006-02-17 13:52:46 -080095 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070096#endif
Heiko Carstens77fa2242005-06-25 14:55:30 -070097 local_mcck_disable();
98 if (test_thread_flag(TIF_MCCK_PENDING)) {
99 local_mcck_enable();
100 local_irq_enable();
101 s390_handle_mcck();
102 return;
103 }
Heiko Carstens1f194a42006-07-03 00:24:46 -0700104 trace_hardirqs_on();
Heiko Carstens632448f2008-11-14 18:18:04 +0100105 /* Don't trace preempt off for idle. */
106 stop_critical_timings();
Martin Schwidefsky9cfb9b32008-12-31 15:11:41 +0100107 /* Stop virtual timer and halt the cpu. */
108 vtime_stop_cpu();
109 /* Reenable preemption tracer. */
Heiko Carstens632448f2008-11-14 18:18:04 +0100110 start_critical_timings();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111}
112
113void cpu_idle(void)
114{
Nick Piggin5bfb5d62005-11-08 21:39:01 -0800115 for (;;) {
Thomas Gleixnere3381252008-07-19 09:33:21 +0200116 tick_nohz_stop_sched_tick(1);
Nick Piggin5bfb5d62005-11-08 21:39:01 -0800117 while (!need_resched())
118 default_idle();
Heiko Carstens5a62b192008-04-17 07:46:25 +0200119 tick_nohz_restart_sched_tick();
Nick Piggin5bfb5d62005-11-08 21:39:01 -0800120 preempt_enable_no_resched();
121 schedule();
122 preempt_disable();
123 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124}
125
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126extern void kernel_thread_starter(void);
127
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200128asm(
129 ".align 4\n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 "kernel_thread_starter:\n"
131 " la 2,0(10)\n"
132 " basr 14,9\n"
133 " la 2,0\n"
134 " br 11\n");
135
136int kernel_thread(int (*fn)(void *), void * arg, unsigned long flags)
137{
138 struct pt_regs regs;
139
140 memset(&regs, 0, sizeof(regs));
Gerald Schaeferc1821c22007-02-05 21:18:17 +0100141 regs.psw.mask = psw_kernel_bits | PSW_MASK_IO | PSW_MASK_EXT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 regs.psw.addr = (unsigned long) kernel_thread_starter | PSW_ADDR_AMODE;
143 regs.gprs[9] = (unsigned long) fn;
144 regs.gprs[10] = (unsigned long) arg;
145 regs.gprs[11] = (unsigned long) do_exit;
146 regs.orig_gpr2 = -1;
147
148 /* Ok, create the new process.. */
149 return do_fork(flags | CLONE_VM | CLONE_UNTRACED,
150 0, &regs, 0, NULL, NULL);
151}
152
153/*
154 * Free current thread data structures etc..
155 */
156void exit_thread(void)
157{
158}
159
160void flush_thread(void)
161{
162 clear_used_math();
163 clear_tsk_thread_flag(current, TIF_USEDFPU);
164}
165
166void release_thread(struct task_struct *dead_task)
167{
168}
169
170int copy_thread(int nr, unsigned long clone_flags, unsigned long new_stackp,
171 unsigned long unused,
172 struct task_struct * p, struct pt_regs * regs)
173{
174 struct fake_frame
175 {
176 struct stack_frame sf;
177 struct pt_regs childregs;
178 } *frame;
179
Al Viroc7584fb2006-01-12 01:05:49 -0800180 frame = container_of(task_pt_regs(p), struct fake_frame, childregs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 p->thread.ksp = (unsigned long) frame;
182 /* Store access registers to kernel stack of new process. */
183 frame->childregs = *regs;
184 frame->childregs.gprs[2] = 0; /* child returns 0 on fork. */
185 frame->childregs.gprs[15] = new_stackp;
186 frame->sf.back_chain = 0;
187
188 /* new return point is ret_from_fork */
189 frame->sf.gprs[8] = (unsigned long) ret_from_fork;
190
191 /* fake return stack for resume(), don't go back to schedule */
192 frame->sf.gprs[9] = (unsigned long) frame;
193
194 /* Save access registers to new thread structure. */
195 save_access_regs(&p->thread.acrs[0]);
196
Martin Schwidefsky347a8dc2006-01-06 00:19:28 -0800197#ifndef CONFIG_64BIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 /*
199 * save fprs to current->thread.fp_regs to merge them with
200 * the emulated registers and then copy the result to the child.
201 */
202 save_fp_regs(&current->thread.fp_regs);
203 memcpy(&p->thread.fp_regs, &current->thread.fp_regs,
204 sizeof(s390_fp_regs));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 /* Set a new TLS ? */
206 if (clone_flags & CLONE_SETTLS)
207 p->thread.acrs[0] = regs->gprs[6];
Martin Schwidefsky347a8dc2006-01-06 00:19:28 -0800208#else /* CONFIG_64BIT */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 /* Save the fpu registers to new thread structure. */
210 save_fp_regs(&p->thread.fp_regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 /* Set a new TLS ? */
212 if (clone_flags & CLONE_SETTLS) {
213 if (test_thread_flag(TIF_31BIT)) {
214 p->thread.acrs[0] = (unsigned int) regs->gprs[6];
215 } else {
216 p->thread.acrs[0] = (unsigned int)(regs->gprs[6] >> 32);
217 p->thread.acrs[1] = (unsigned int) regs->gprs[6];
218 }
219 }
Martin Schwidefsky347a8dc2006-01-06 00:19:28 -0800220#endif /* CONFIG_64BIT */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 /* start new process with ar4 pointing to the correct address space */
222 p->thread.mm_segment = get_fs();
223 /* Don't copy debug registers */
224 memset(&p->thread.per_info,0,sizeof(p->thread.per_info));
225
226 return 0;
227}
228
Heiko Carstens26689452009-01-14 14:14:36 +0100229SYSCALL_DEFINE0(fork)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230{
Martin Schwidefsky03ff9a22007-04-27 16:01:40 +0200231 struct pt_regs *regs = task_pt_regs(current);
232 return do_fork(SIGCHLD, regs->gprs[15], regs, 0, NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233}
234
Heiko Carstens26689452009-01-14 14:14:36 +0100235SYSCALL_DEFINE0(clone)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236{
Martin Schwidefsky03ff9a22007-04-27 16:01:40 +0200237 struct pt_regs *regs = task_pt_regs(current);
238 unsigned long clone_flags;
239 unsigned long newsp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 int __user *parent_tidptr, *child_tidptr;
241
Martin Schwidefsky03ff9a22007-04-27 16:01:40 +0200242 clone_flags = regs->gprs[3];
243 newsp = regs->orig_gpr2;
244 parent_tidptr = (int __user *) regs->gprs[4];
245 child_tidptr = (int __user *) regs->gprs[5];
246 if (!newsp)
247 newsp = regs->gprs[15];
248 return do_fork(clone_flags, newsp, regs, 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 parent_tidptr, child_tidptr);
250}
251
252/*
253 * This is trivial, and on the face of it looks like it
254 * could equally well be done in user mode.
255 *
256 * Not so, for quite unobvious reasons - register pressure.
257 * In user mode vfork() cannot have a stack frame, and if
258 * done by calling the "clone()" system call directly, you
259 * do not have enough call-clobbered registers to hold all
260 * the information you need.
261 */
Heiko Carstens26689452009-01-14 14:14:36 +0100262SYSCALL_DEFINE0(vfork)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263{
Martin Schwidefsky03ff9a22007-04-27 16:01:40 +0200264 struct pt_regs *regs = task_pt_regs(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 return do_fork(CLONE_VFORK | CLONE_VM | SIGCHLD,
Martin Schwidefsky03ff9a22007-04-27 16:01:40 +0200266 regs->gprs[15], regs, 0, NULL, NULL);
267}
268
269asmlinkage void execve_tail(void)
270{
271 task_lock(current);
272 current->ptrace &= ~PT_DTRACE;
273 task_unlock(current);
274 current->thread.fp_regs.fpc = 0;
275 if (MACHINE_HAS_IEEE)
276 asm volatile("sfpc %0,%0" : : "d" (0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277}
278
279/*
280 * sys_execve() executes a new program.
281 */
Heiko Carstens26689452009-01-14 14:14:36 +0100282SYSCALL_DEFINE0(execve)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283{
Martin Schwidefsky03ff9a22007-04-27 16:01:40 +0200284 struct pt_regs *regs = task_pt_regs(current);
285 char *filename;
286 unsigned long result;
287 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288
Martin Schwidefsky03ff9a22007-04-27 16:01:40 +0200289 filename = getname((char __user *) regs->orig_gpr2);
290 if (IS_ERR(filename)) {
291 result = PTR_ERR(filename);
292 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 }
Martin Schwidefsky03ff9a22007-04-27 16:01:40 +0200294 rc = do_execve(filename, (char __user * __user *) regs->gprs[3],
295 (char __user * __user *) regs->gprs[4], regs);
296 if (rc) {
297 result = rc;
298 goto out_putname;
299 }
300 execve_tail();
301 result = regs->gprs[2];
302out_putname:
303 putname(filename);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304out:
Martin Schwidefsky03ff9a22007-04-27 16:01:40 +0200305 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306}
307
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308/*
309 * fill in the FPU structure for a core dump.
310 */
311int dump_fpu (struct pt_regs * regs, s390_fp_regs *fpregs)
312{
Martin Schwidefsky347a8dc2006-01-06 00:19:28 -0800313#ifndef CONFIG_64BIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 /*
315 * save fprs to current->thread.fp_regs to merge them with
316 * the emulated registers and then copy the result to the dump.
317 */
318 save_fp_regs(&current->thread.fp_regs);
319 memcpy(fpregs, &current->thread.fp_regs, sizeof(s390_fp_regs));
Martin Schwidefsky347a8dc2006-01-06 00:19:28 -0800320#else /* CONFIG_64BIT */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 save_fp_regs(fpregs);
Martin Schwidefsky347a8dc2006-01-06 00:19:28 -0800322#endif /* CONFIG_64BIT */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 return 1;
324}
325
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326unsigned long get_wchan(struct task_struct *p)
327{
328 struct stack_frame *sf, *low, *high;
329 unsigned long return_address;
330 int count;
331
Al Viro30af7122006-01-12 01:05:50 -0800332 if (!p || p == current || p->state == TASK_RUNNING || !task_stack_page(p))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 return 0;
Al Viro30af7122006-01-12 01:05:50 -0800334 low = task_stack_page(p);
335 high = (struct stack_frame *) task_pt_regs(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 sf = (struct stack_frame *) (p->thread.ksp & PSW_ADDR_INSN);
337 if (sf <= low || sf > high)
338 return 0;
339 for (count = 0; count < 16; count++) {
340 sf = (struct stack_frame *) (sf->back_chain & PSW_ADDR_INSN);
341 if (sf <= low || sf > high)
342 return 0;
343 return_address = sf->gprs[8] & PSW_ADDR_INSN;
344 if (!in_sched_functions(return_address))
345 return return_address;
346 }
347 return 0;
348}
349