blob: b6110bdf8dc27b13d7f1d672086db1738bb4d5ef [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#include <asm/uaccess.h>
43#include <asm/pgtable.h>
44#include <asm/system.h>
45#include <asm/io.h>
46#include <asm/processor.h>
47#include <asm/irq.h>
48#include <asm/timer.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
Heiko Carstens77fa2242005-06-25 14:55:30 -070078extern void s390_handle_mcck(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070079/*
80 * The idle loop on a S390...
81 */
Adrian Bunkcdb04522006-03-24 03:15:57 -080082static void default_idle(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070083{
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 /* CPU is going idle. */
Nick Piggin64c7c8f2005-11-08 21:39:04 -080085 local_irq_disable();
86 if (need_resched()) {
87 local_irq_enable();
88 return;
89 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070090#ifdef CONFIG_HOTPLUG_CPU
Heiko Carstens43ca5c32008-04-17 07:46:23 +020091 if (cpu_is_offline(smp_processor_id())) {
Heiko Carstens1fca2512006-02-17 13:52:46 -080092 preempt_enable_no_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 cpu_die();
Heiko Carstens1fca2512006-02-17 13:52:46 -080094 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070095#endif
Heiko Carstens77fa2242005-06-25 14:55:30 -070096 local_mcck_disable();
97 if (test_thread_flag(TIF_MCCK_PENDING)) {
98 local_mcck_enable();
99 local_irq_enable();
100 s390_handle_mcck();
101 return;
102 }
Heiko Carstens1f194a42006-07-03 00:24:46 -0700103 trace_hardirqs_on();
Heiko Carstens632448f2008-11-14 18:18:04 +0100104 /* Don't trace preempt off for idle. */
105 stop_critical_timings();
Martin Schwidefsky9cfb9b32008-12-31 15:11:41 +0100106 /* Stop virtual timer and halt the cpu. */
107 vtime_stop_cpu();
108 /* Reenable preemption tracer. */
Heiko Carstens632448f2008-11-14 18:18:04 +0100109 start_critical_timings();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110}
111
112void cpu_idle(void)
113{
Nick Piggin5bfb5d62005-11-08 21:39:01 -0800114 for (;;) {
Thomas Gleixnere3381252008-07-19 09:33:21 +0200115 tick_nohz_stop_sched_tick(1);
Nick Piggin5bfb5d62005-11-08 21:39:01 -0800116 while (!need_resched())
117 default_idle();
Heiko Carstens5a62b192008-04-17 07:46:25 +0200118 tick_nohz_restart_sched_tick();
Nick Piggin5bfb5d62005-11-08 21:39:01 -0800119 preempt_enable_no_resched();
120 schedule();
121 preempt_disable();
122 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123}
124
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125extern void kernel_thread_starter(void);
126
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200127asm(
128 ".align 4\n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 "kernel_thread_starter:\n"
130 " la 2,0(10)\n"
131 " basr 14,9\n"
132 " la 2,0\n"
133 " br 11\n");
134
135int kernel_thread(int (*fn)(void *), void * arg, unsigned long flags)
136{
137 struct pt_regs regs;
138
139 memset(&regs, 0, sizeof(regs));
Gerald Schaeferc1821c22007-02-05 21:18:17 +0100140 regs.psw.mask = psw_kernel_bits | PSW_MASK_IO | PSW_MASK_EXT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 regs.psw.addr = (unsigned long) kernel_thread_starter | PSW_ADDR_AMODE;
142 regs.gprs[9] = (unsigned long) fn;
143 regs.gprs[10] = (unsigned long) arg;
144 regs.gprs[11] = (unsigned long) do_exit;
145 regs.orig_gpr2 = -1;
146
147 /* Ok, create the new process.. */
148 return do_fork(flags | CLONE_VM | CLONE_UNTRACED,
149 0, &regs, 0, NULL, NULL);
150}
151
152/*
153 * Free current thread data structures etc..
154 */
155void exit_thread(void)
156{
157}
158
159void flush_thread(void)
160{
161 clear_used_math();
162 clear_tsk_thread_flag(current, TIF_USEDFPU);
163}
164
165void release_thread(struct task_struct *dead_task)
166{
167}
168
169int copy_thread(int nr, unsigned long clone_flags, unsigned long new_stackp,
170 unsigned long unused,
171 struct task_struct * p, struct pt_regs * regs)
172{
173 struct fake_frame
174 {
175 struct stack_frame sf;
176 struct pt_regs childregs;
177 } *frame;
178
Al Viroc7584fb2006-01-12 01:05:49 -0800179 frame = container_of(task_pt_regs(p), struct fake_frame, childregs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 p->thread.ksp = (unsigned long) frame;
181 /* Store access registers to kernel stack of new process. */
182 frame->childregs = *regs;
183 frame->childregs.gprs[2] = 0; /* child returns 0 on fork. */
184 frame->childregs.gprs[15] = new_stackp;
185 frame->sf.back_chain = 0;
186
187 /* new return point is ret_from_fork */
188 frame->sf.gprs[8] = (unsigned long) ret_from_fork;
189
190 /* fake return stack for resume(), don't go back to schedule */
191 frame->sf.gprs[9] = (unsigned long) frame;
192
193 /* Save access registers to new thread structure. */
194 save_access_regs(&p->thread.acrs[0]);
195
Martin Schwidefsky347a8dc2006-01-06 00:19:28 -0800196#ifndef CONFIG_64BIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 /*
198 * save fprs to current->thread.fp_regs to merge them with
199 * the emulated registers and then copy the result to the child.
200 */
201 save_fp_regs(&current->thread.fp_regs);
202 memcpy(&p->thread.fp_regs, &current->thread.fp_regs,
203 sizeof(s390_fp_regs));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 /* Set a new TLS ? */
205 if (clone_flags & CLONE_SETTLS)
206 p->thread.acrs[0] = regs->gprs[6];
Martin Schwidefsky347a8dc2006-01-06 00:19:28 -0800207#else /* CONFIG_64BIT */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 /* Save the fpu registers to new thread structure. */
209 save_fp_regs(&p->thread.fp_regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 /* Set a new TLS ? */
211 if (clone_flags & CLONE_SETTLS) {
212 if (test_thread_flag(TIF_31BIT)) {
213 p->thread.acrs[0] = (unsigned int) regs->gprs[6];
214 } else {
215 p->thread.acrs[0] = (unsigned int)(regs->gprs[6] >> 32);
216 p->thread.acrs[1] = (unsigned int) regs->gprs[6];
217 }
218 }
Martin Schwidefsky347a8dc2006-01-06 00:19:28 -0800219#endif /* CONFIG_64BIT */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 /* start new process with ar4 pointing to the correct address space */
221 p->thread.mm_segment = get_fs();
222 /* Don't copy debug registers */
223 memset(&p->thread.per_info,0,sizeof(p->thread.per_info));
224
225 return 0;
226}
227
Martin Schwidefsky03ff9a22007-04-27 16:01:40 +0200228asmlinkage long sys_fork(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229{
Martin Schwidefsky03ff9a22007-04-27 16:01:40 +0200230 struct pt_regs *regs = task_pt_regs(current);
231 return do_fork(SIGCHLD, regs->gprs[15], regs, 0, NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232}
233
Martin Schwidefsky03ff9a22007-04-27 16:01:40 +0200234asmlinkage long sys_clone(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235{
Martin Schwidefsky03ff9a22007-04-27 16:01:40 +0200236 struct pt_regs *regs = task_pt_regs(current);
237 unsigned long clone_flags;
238 unsigned long newsp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 int __user *parent_tidptr, *child_tidptr;
240
Martin Schwidefsky03ff9a22007-04-27 16:01:40 +0200241 clone_flags = regs->gprs[3];
242 newsp = regs->orig_gpr2;
243 parent_tidptr = (int __user *) regs->gprs[4];
244 child_tidptr = (int __user *) regs->gprs[5];
245 if (!newsp)
246 newsp = regs->gprs[15];
247 return do_fork(clone_flags, newsp, regs, 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 parent_tidptr, child_tidptr);
249}
250
251/*
252 * This is trivial, and on the face of it looks like it
253 * could equally well be done in user mode.
254 *
255 * Not so, for quite unobvious reasons - register pressure.
256 * In user mode vfork() cannot have a stack frame, and if
257 * done by calling the "clone()" system call directly, you
258 * do not have enough call-clobbered registers to hold all
259 * the information you need.
260 */
Martin Schwidefsky03ff9a22007-04-27 16:01:40 +0200261asmlinkage long sys_vfork(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262{
Martin Schwidefsky03ff9a22007-04-27 16:01:40 +0200263 struct pt_regs *regs = task_pt_regs(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 return do_fork(CLONE_VFORK | CLONE_VM | SIGCHLD,
Martin Schwidefsky03ff9a22007-04-27 16:01:40 +0200265 regs->gprs[15], regs, 0, NULL, NULL);
266}
267
268asmlinkage void execve_tail(void)
269{
270 task_lock(current);
271 current->ptrace &= ~PT_DTRACE;
272 task_unlock(current);
273 current->thread.fp_regs.fpc = 0;
274 if (MACHINE_HAS_IEEE)
275 asm volatile("sfpc %0,%0" : : "d" (0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276}
277
278/*
279 * sys_execve() executes a new program.
280 */
Martin Schwidefsky03ff9a22007-04-27 16:01:40 +0200281asmlinkage long sys_execve(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282{
Martin Schwidefsky03ff9a22007-04-27 16:01:40 +0200283 struct pt_regs *regs = task_pt_regs(current);
284 char *filename;
285 unsigned long result;
286 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287
Martin Schwidefsky03ff9a22007-04-27 16:01:40 +0200288 filename = getname((char __user *) regs->orig_gpr2);
289 if (IS_ERR(filename)) {
290 result = PTR_ERR(filename);
291 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 }
Martin Schwidefsky03ff9a22007-04-27 16:01:40 +0200293 rc = do_execve(filename, (char __user * __user *) regs->gprs[3],
294 (char __user * __user *) regs->gprs[4], regs);
295 if (rc) {
296 result = rc;
297 goto out_putname;
298 }
299 execve_tail();
300 result = regs->gprs[2];
301out_putname:
302 putname(filename);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303out:
Martin Schwidefsky03ff9a22007-04-27 16:01:40 +0200304 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305}
306
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307/*
308 * fill in the FPU structure for a core dump.
309 */
310int dump_fpu (struct pt_regs * regs, s390_fp_regs *fpregs)
311{
Martin Schwidefsky347a8dc2006-01-06 00:19:28 -0800312#ifndef CONFIG_64BIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 /*
314 * save fprs to current->thread.fp_regs to merge them with
315 * the emulated registers and then copy the result to the dump.
316 */
317 save_fp_regs(&current->thread.fp_regs);
318 memcpy(fpregs, &current->thread.fp_regs, sizeof(s390_fp_regs));
Martin Schwidefsky347a8dc2006-01-06 00:19:28 -0800319#else /* CONFIG_64BIT */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 save_fp_regs(fpregs);
Martin Schwidefsky347a8dc2006-01-06 00:19:28 -0800321#endif /* CONFIG_64BIT */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 return 1;
323}
324
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325unsigned long get_wchan(struct task_struct *p)
326{
327 struct stack_frame *sf, *low, *high;
328 unsigned long return_address;
329 int count;
330
Al Viro30af7122006-01-12 01:05:50 -0800331 if (!p || p == current || p->state == TASK_RUNNING || !task_stack_page(p))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 return 0;
Al Viro30af7122006-01-12 01:05:50 -0800333 low = task_stack_page(p);
334 high = (struct stack_frame *) task_pt_regs(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 sf = (struct stack_frame *) (p->thread.ksp & PSW_ADDR_INSN);
336 if (sf <= low || sf > high)
337 return 0;
338 for (count = 0; count < 16; count++) {
339 sf = (struct stack_frame *) (sf->back_chain & PSW_ADDR_INSN);
340 if (sf <= low || sf > high)
341 return 0;
342 return_address = sf->gprs[8] & PSW_ADDR_INSN;
343 if (!in_sched_functions(return_address))
344 return return_address;
345 }
346 return 0;
347}
348