blob: 85defd01d2937c36ccd0a92b18932969dfb8520f [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
Heiko Carstens43ca5c32008-04-17 07:46:23 +020078DEFINE_PER_CPU(struct s390_idle_data, s390_idle);
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
Heiko Carstens43ca5c32008-04-17 07:46:23 +020080static int s390_idle_enter(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070081{
Heiko Carstens43ca5c32008-04-17 07:46:23 +020082 struct s390_idle_data *idle;
Heiko Carstens43ca5c32008-04-17 07:46:23 +020083
Heiko Carstens43ca5c32008-04-17 07:46:23 +020084 idle = &__get_cpu_var(s390_idle);
85 spin_lock(&idle->lock);
86 idle->idle_count++;
87 idle->in_idle = 1;
88 idle->idle_enter = get_clock();
89 spin_unlock(&idle->lock);
Heiko Carstens773922e2008-07-14 09:59:06 +020090 vtime_stop_cpu_timer();
Heiko Carstens43ca5c32008-04-17 07:46:23 +020091 return NOTIFY_OK;
92}
93
94void s390_idle_leave(void)
95{
Heiko Carstensfae8b222007-10-22 12:52:39 +020096 struct s390_idle_data *idle;
97
Heiko Carstens773922e2008-07-14 09:59:06 +020098 vtime_start_cpu_timer();
Heiko Carstensfae8b222007-10-22 12:52:39 +020099 idle = &__get_cpu_var(s390_idle);
100 spin_lock(&idle->lock);
101 idle->idle_time += get_clock() - idle->idle_enter;
102 idle->in_idle = 0;
103 spin_unlock(&idle->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104}
105
Heiko Carstens77fa2242005-06-25 14:55:30 -0700106extern void s390_handle_mcck(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107/*
108 * The idle loop on a S390...
109 */
Adrian Bunkcdb04522006-03-24 03:15:57 -0800110static void default_idle(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 /* CPU is going idle. */
Nick Piggin64c7c8f2005-11-08 21:39:04 -0800113 local_irq_disable();
114 if (need_resched()) {
115 local_irq_enable();
116 return;
117 }
Heiko Carstens43ca5c32008-04-17 07:46:23 +0200118 if (s390_idle_enter() == NOTIFY_BAD) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 local_irq_enable();
120 return;
121 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122#ifdef CONFIG_HOTPLUG_CPU
Heiko Carstens43ca5c32008-04-17 07:46:23 +0200123 if (cpu_is_offline(smp_processor_id())) {
Heiko Carstens1fca2512006-02-17 13:52:46 -0800124 preempt_enable_no_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 cpu_die();
Heiko Carstens1fca2512006-02-17 13:52:46 -0800126 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127#endif
Heiko Carstens77fa2242005-06-25 14:55:30 -0700128 local_mcck_disable();
129 if (test_thread_flag(TIF_MCCK_PENDING)) {
130 local_mcck_enable();
Heiko Carstens43ca5c32008-04-17 07:46:23 +0200131 s390_idle_leave();
Heiko Carstens77fa2242005-06-25 14:55:30 -0700132 local_irq_enable();
133 s390_handle_mcck();
134 return;
135 }
Heiko Carstens1f194a42006-07-03 00:24:46 -0700136 trace_hardirqs_on();
Heiko Carstens77fa2242005-06-25 14:55:30 -0700137 /* Wait for external, I/O or machine check interrupt. */
Gerald Schaeferc1821c22007-02-05 21:18:17 +0100138 __load_psw_mask(psw_kernel_bits | PSW_MASK_WAIT |
Heiko Carstens77fa2242005-06-25 14:55:30 -0700139 PSW_MASK_IO | PSW_MASK_EXT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140}
141
142void cpu_idle(void)
143{
Nick Piggin5bfb5d62005-11-08 21:39:01 -0800144 for (;;) {
Heiko Carstens5a62b192008-04-17 07:46:25 +0200145 tick_nohz_stop_sched_tick();
Nick Piggin5bfb5d62005-11-08 21:39:01 -0800146 while (!need_resched())
147 default_idle();
Heiko Carstens5a62b192008-04-17 07:46:25 +0200148 tick_nohz_restart_sched_tick();
Nick Piggin5bfb5d62005-11-08 21:39:01 -0800149 preempt_enable_no_resched();
150 schedule();
151 preempt_disable();
152 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153}
154
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155extern void kernel_thread_starter(void);
156
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200157asm(
158 ".align 4\n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 "kernel_thread_starter:\n"
160 " la 2,0(10)\n"
161 " basr 14,9\n"
162 " la 2,0\n"
163 " br 11\n");
164
165int kernel_thread(int (*fn)(void *), void * arg, unsigned long flags)
166{
167 struct pt_regs regs;
168
169 memset(&regs, 0, sizeof(regs));
Gerald Schaeferc1821c22007-02-05 21:18:17 +0100170 regs.psw.mask = psw_kernel_bits | PSW_MASK_IO | PSW_MASK_EXT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 regs.psw.addr = (unsigned long) kernel_thread_starter | PSW_ADDR_AMODE;
172 regs.gprs[9] = (unsigned long) fn;
173 regs.gprs[10] = (unsigned long) arg;
174 regs.gprs[11] = (unsigned long) do_exit;
175 regs.orig_gpr2 = -1;
176
177 /* Ok, create the new process.. */
178 return do_fork(flags | CLONE_VM | CLONE_UNTRACED,
179 0, &regs, 0, NULL, NULL);
180}
181
182/*
183 * Free current thread data structures etc..
184 */
185void exit_thread(void)
186{
187}
188
189void flush_thread(void)
190{
191 clear_used_math();
192 clear_tsk_thread_flag(current, TIF_USEDFPU);
193}
194
195void release_thread(struct task_struct *dead_task)
196{
197}
198
199int copy_thread(int nr, unsigned long clone_flags, unsigned long new_stackp,
200 unsigned long unused,
201 struct task_struct * p, struct pt_regs * regs)
202{
203 struct fake_frame
204 {
205 struct stack_frame sf;
206 struct pt_regs childregs;
207 } *frame;
208
Al Viroc7584fb2006-01-12 01:05:49 -0800209 frame = container_of(task_pt_regs(p), struct fake_frame, childregs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 p->thread.ksp = (unsigned long) frame;
211 /* Store access registers to kernel stack of new process. */
212 frame->childregs = *regs;
213 frame->childregs.gprs[2] = 0; /* child returns 0 on fork. */
214 frame->childregs.gprs[15] = new_stackp;
215 frame->sf.back_chain = 0;
216
217 /* new return point is ret_from_fork */
218 frame->sf.gprs[8] = (unsigned long) ret_from_fork;
219
220 /* fake return stack for resume(), don't go back to schedule */
221 frame->sf.gprs[9] = (unsigned long) frame;
222
223 /* Save access registers to new thread structure. */
224 save_access_regs(&p->thread.acrs[0]);
225
Martin Schwidefsky347a8dc2006-01-06 00:19:28 -0800226#ifndef CONFIG_64BIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 /*
228 * save fprs to current->thread.fp_regs to merge them with
229 * the emulated registers and then copy the result to the child.
230 */
231 save_fp_regs(&current->thread.fp_regs);
232 memcpy(&p->thread.fp_regs, &current->thread.fp_regs,
233 sizeof(s390_fp_regs));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 /* Set a new TLS ? */
235 if (clone_flags & CLONE_SETTLS)
236 p->thread.acrs[0] = regs->gprs[6];
Martin Schwidefsky347a8dc2006-01-06 00:19:28 -0800237#else /* CONFIG_64BIT */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 /* Save the fpu registers to new thread structure. */
239 save_fp_regs(&p->thread.fp_regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 /* Set a new TLS ? */
241 if (clone_flags & CLONE_SETTLS) {
242 if (test_thread_flag(TIF_31BIT)) {
243 p->thread.acrs[0] = (unsigned int) regs->gprs[6];
244 } else {
245 p->thread.acrs[0] = (unsigned int)(regs->gprs[6] >> 32);
246 p->thread.acrs[1] = (unsigned int) regs->gprs[6];
247 }
248 }
Martin Schwidefsky347a8dc2006-01-06 00:19:28 -0800249#endif /* CONFIG_64BIT */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 /* start new process with ar4 pointing to the correct address space */
251 p->thread.mm_segment = get_fs();
252 /* Don't copy debug registers */
253 memset(&p->thread.per_info,0,sizeof(p->thread.per_info));
254
255 return 0;
256}
257
Martin Schwidefsky03ff9a22007-04-27 16:01:40 +0200258asmlinkage long sys_fork(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259{
Martin Schwidefsky03ff9a22007-04-27 16:01:40 +0200260 struct pt_regs *regs = task_pt_regs(current);
261 return do_fork(SIGCHLD, regs->gprs[15], regs, 0, NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262}
263
Martin Schwidefsky03ff9a22007-04-27 16:01:40 +0200264asmlinkage long sys_clone(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265{
Martin Schwidefsky03ff9a22007-04-27 16:01:40 +0200266 struct pt_regs *regs = task_pt_regs(current);
267 unsigned long clone_flags;
268 unsigned long newsp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 int __user *parent_tidptr, *child_tidptr;
270
Martin Schwidefsky03ff9a22007-04-27 16:01:40 +0200271 clone_flags = regs->gprs[3];
272 newsp = regs->orig_gpr2;
273 parent_tidptr = (int __user *) regs->gprs[4];
274 child_tidptr = (int __user *) regs->gprs[5];
275 if (!newsp)
276 newsp = regs->gprs[15];
277 return do_fork(clone_flags, newsp, regs, 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 parent_tidptr, child_tidptr);
279}
280
281/*
282 * This is trivial, and on the face of it looks like it
283 * could equally well be done in user mode.
284 *
285 * Not so, for quite unobvious reasons - register pressure.
286 * In user mode vfork() cannot have a stack frame, and if
287 * done by calling the "clone()" system call directly, you
288 * do not have enough call-clobbered registers to hold all
289 * the information you need.
290 */
Martin Schwidefsky03ff9a22007-04-27 16:01:40 +0200291asmlinkage long sys_vfork(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292{
Martin Schwidefsky03ff9a22007-04-27 16:01:40 +0200293 struct pt_regs *regs = task_pt_regs(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 return do_fork(CLONE_VFORK | CLONE_VM | SIGCHLD,
Martin Schwidefsky03ff9a22007-04-27 16:01:40 +0200295 regs->gprs[15], regs, 0, NULL, NULL);
296}
297
298asmlinkage void execve_tail(void)
299{
300 task_lock(current);
301 current->ptrace &= ~PT_DTRACE;
302 task_unlock(current);
303 current->thread.fp_regs.fpc = 0;
304 if (MACHINE_HAS_IEEE)
305 asm volatile("sfpc %0,%0" : : "d" (0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306}
307
308/*
309 * sys_execve() executes a new program.
310 */
Martin Schwidefsky03ff9a22007-04-27 16:01:40 +0200311asmlinkage long sys_execve(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312{
Martin Schwidefsky03ff9a22007-04-27 16:01:40 +0200313 struct pt_regs *regs = task_pt_regs(current);
314 char *filename;
315 unsigned long result;
316 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317
Martin Schwidefsky03ff9a22007-04-27 16:01:40 +0200318 filename = getname((char __user *) regs->orig_gpr2);
319 if (IS_ERR(filename)) {
320 result = PTR_ERR(filename);
321 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 }
Martin Schwidefsky03ff9a22007-04-27 16:01:40 +0200323 rc = do_execve(filename, (char __user * __user *) regs->gprs[3],
324 (char __user * __user *) regs->gprs[4], regs);
325 if (rc) {
326 result = rc;
327 goto out_putname;
328 }
329 execve_tail();
330 result = regs->gprs[2];
331out_putname:
332 putname(filename);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333out:
Martin Schwidefsky03ff9a22007-04-27 16:01:40 +0200334 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335}
336
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337/*
338 * fill in the FPU structure for a core dump.
339 */
340int dump_fpu (struct pt_regs * regs, s390_fp_regs *fpregs)
341{
Martin Schwidefsky347a8dc2006-01-06 00:19:28 -0800342#ifndef CONFIG_64BIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 /*
344 * save fprs to current->thread.fp_regs to merge them with
345 * the emulated registers and then copy the result to the dump.
346 */
347 save_fp_regs(&current->thread.fp_regs);
348 memcpy(fpregs, &current->thread.fp_regs, sizeof(s390_fp_regs));
Martin Schwidefsky347a8dc2006-01-06 00:19:28 -0800349#else /* CONFIG_64BIT */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 save_fp_regs(fpregs);
Martin Schwidefsky347a8dc2006-01-06 00:19:28 -0800351#endif /* CONFIG_64BIT */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 return 1;
353}
354
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355unsigned long get_wchan(struct task_struct *p)
356{
357 struct stack_frame *sf, *low, *high;
358 unsigned long return_address;
359 int count;
360
Al Viro30af7122006-01-12 01:05:50 -0800361 if (!p || p == current || p->state == TASK_RUNNING || !task_stack_page(p))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 return 0;
Al Viro30af7122006-01-12 01:05:50 -0800363 low = task_stack_page(p);
364 high = (struct stack_frame *) task_pt_regs(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 sf = (struct stack_frame *) (p->thread.ksp & PSW_ADDR_INSN);
366 if (sf <= low || sf > high)
367 return 0;
368 for (count = 0; count < 16; count++) {
369 sf = (struct stack_frame *) (sf->back_chain & PSW_ADDR_INSN);
370 if (sf <= low || sf > high)
371 return 0;
372 return_address = sf->gprs[8] & PSW_ADDR_INSN;
373 if (!in_sched_functions(return_address))
374 return return_address;
375 }
376 return 0;
377}
378