blob: 3e2c05cb6a8733683c57d2935536ee936cc52059 [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
Josef 'Jeff' Sipek3e972392008-08-21 19:46:31 +020078DEFINE_PER_CPU(struct s390_idle_data, s390_idle) = {
79 .lock = __SPIN_LOCK_UNLOCKED(s390_idle.lock)
80};
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
Heiko Carstens43ca5c32008-04-17 07:46:23 +020082static int s390_idle_enter(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070083{
Heiko Carstens43ca5c32008-04-17 07:46:23 +020084 struct s390_idle_data *idle;
Heiko Carstens43ca5c32008-04-17 07:46:23 +020085
Heiko Carstens43ca5c32008-04-17 07:46:23 +020086 idle = &__get_cpu_var(s390_idle);
87 spin_lock(&idle->lock);
88 idle->idle_count++;
89 idle->in_idle = 1;
90 idle->idle_enter = get_clock();
91 spin_unlock(&idle->lock);
Heiko Carstens773922e2008-07-14 09:59:06 +020092 vtime_stop_cpu_timer();
Heiko Carstens43ca5c32008-04-17 07:46:23 +020093 return NOTIFY_OK;
94}
95
96void s390_idle_leave(void)
97{
Heiko Carstensfae8b222007-10-22 12:52:39 +020098 struct s390_idle_data *idle;
99
Heiko Carstens773922e2008-07-14 09:59:06 +0200100 vtime_start_cpu_timer();
Heiko Carstensfae8b222007-10-22 12:52:39 +0200101 idle = &__get_cpu_var(s390_idle);
102 spin_lock(&idle->lock);
103 idle->idle_time += get_clock() - idle->idle_enter;
104 idle->in_idle = 0;
105 spin_unlock(&idle->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106}
107
Heiko Carstens77fa2242005-06-25 14:55:30 -0700108extern void s390_handle_mcck(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109/*
110 * The idle loop on a S390...
111 */
Adrian Bunkcdb04522006-03-24 03:15:57 -0800112static void default_idle(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 /* CPU is going idle. */
Nick Piggin64c7c8f2005-11-08 21:39:04 -0800115 local_irq_disable();
116 if (need_resched()) {
117 local_irq_enable();
118 return;
119 }
Heiko Carstens43ca5c32008-04-17 07:46:23 +0200120 if (s390_idle_enter() == NOTIFY_BAD) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 local_irq_enable();
122 return;
123 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124#ifdef CONFIG_HOTPLUG_CPU
Heiko Carstens43ca5c32008-04-17 07:46:23 +0200125 if (cpu_is_offline(smp_processor_id())) {
Heiko Carstens1fca2512006-02-17 13:52:46 -0800126 preempt_enable_no_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 cpu_die();
Heiko Carstens1fca2512006-02-17 13:52:46 -0800128 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129#endif
Heiko Carstens77fa2242005-06-25 14:55:30 -0700130 local_mcck_disable();
131 if (test_thread_flag(TIF_MCCK_PENDING)) {
132 local_mcck_enable();
Heiko Carstens43ca5c32008-04-17 07:46:23 +0200133 s390_idle_leave();
Heiko Carstens77fa2242005-06-25 14:55:30 -0700134 local_irq_enable();
135 s390_handle_mcck();
136 return;
137 }
Heiko Carstens1f194a42006-07-03 00:24:46 -0700138 trace_hardirqs_on();
Heiko Carstens77fa2242005-06-25 14:55:30 -0700139 /* Wait for external, I/O or machine check interrupt. */
Gerald Schaeferc1821c22007-02-05 21:18:17 +0100140 __load_psw_mask(psw_kernel_bits | PSW_MASK_WAIT |
Heiko Carstens77fa2242005-06-25 14:55:30 -0700141 PSW_MASK_IO | PSW_MASK_EXT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142}
143
144void cpu_idle(void)
145{
Nick Piggin5bfb5d62005-11-08 21:39:01 -0800146 for (;;) {
Thomas Gleixnere3381252008-07-19 09:33:21 +0200147 tick_nohz_stop_sched_tick(1);
Nick Piggin5bfb5d62005-11-08 21:39:01 -0800148 while (!need_resched())
149 default_idle();
Heiko Carstens5a62b192008-04-17 07:46:25 +0200150 tick_nohz_restart_sched_tick();
Nick Piggin5bfb5d62005-11-08 21:39:01 -0800151 preempt_enable_no_resched();
152 schedule();
153 preempt_disable();
154 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155}
156
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157extern void kernel_thread_starter(void);
158
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200159asm(
160 ".align 4\n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 "kernel_thread_starter:\n"
162 " la 2,0(10)\n"
163 " basr 14,9\n"
164 " la 2,0\n"
165 " br 11\n");
166
167int kernel_thread(int (*fn)(void *), void * arg, unsigned long flags)
168{
169 struct pt_regs regs;
170
171 memset(&regs, 0, sizeof(regs));
Gerald Schaeferc1821c22007-02-05 21:18:17 +0100172 regs.psw.mask = psw_kernel_bits | PSW_MASK_IO | PSW_MASK_EXT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 regs.psw.addr = (unsigned long) kernel_thread_starter | PSW_ADDR_AMODE;
174 regs.gprs[9] = (unsigned long) fn;
175 regs.gprs[10] = (unsigned long) arg;
176 regs.gprs[11] = (unsigned long) do_exit;
177 regs.orig_gpr2 = -1;
178
179 /* Ok, create the new process.. */
180 return do_fork(flags | CLONE_VM | CLONE_UNTRACED,
181 0, &regs, 0, NULL, NULL);
182}
183
184/*
185 * Free current thread data structures etc..
186 */
187void exit_thread(void)
188{
189}
190
191void flush_thread(void)
192{
193 clear_used_math();
194 clear_tsk_thread_flag(current, TIF_USEDFPU);
195}
196
197void release_thread(struct task_struct *dead_task)
198{
199}
200
201int copy_thread(int nr, unsigned long clone_flags, unsigned long new_stackp,
202 unsigned long unused,
203 struct task_struct * p, struct pt_regs * regs)
204{
205 struct fake_frame
206 {
207 struct stack_frame sf;
208 struct pt_regs childregs;
209 } *frame;
210
Al Viroc7584fb2006-01-12 01:05:49 -0800211 frame = container_of(task_pt_regs(p), struct fake_frame, childregs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 p->thread.ksp = (unsigned long) frame;
213 /* Store access registers to kernel stack of new process. */
214 frame->childregs = *regs;
215 frame->childregs.gprs[2] = 0; /* child returns 0 on fork. */
216 frame->childregs.gprs[15] = new_stackp;
217 frame->sf.back_chain = 0;
218
219 /* new return point is ret_from_fork */
220 frame->sf.gprs[8] = (unsigned long) ret_from_fork;
221
222 /* fake return stack for resume(), don't go back to schedule */
223 frame->sf.gprs[9] = (unsigned long) frame;
224
225 /* Save access registers to new thread structure. */
226 save_access_regs(&p->thread.acrs[0]);
227
Martin Schwidefsky347a8dc2006-01-06 00:19:28 -0800228#ifndef CONFIG_64BIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 /*
230 * save fprs to current->thread.fp_regs to merge them with
231 * the emulated registers and then copy the result to the child.
232 */
233 save_fp_regs(&current->thread.fp_regs);
234 memcpy(&p->thread.fp_regs, &current->thread.fp_regs,
235 sizeof(s390_fp_regs));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 /* Set a new TLS ? */
237 if (clone_flags & CLONE_SETTLS)
238 p->thread.acrs[0] = regs->gprs[6];
Martin Schwidefsky347a8dc2006-01-06 00:19:28 -0800239#else /* CONFIG_64BIT */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 /* Save the fpu registers to new thread structure. */
241 save_fp_regs(&p->thread.fp_regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 /* Set a new TLS ? */
243 if (clone_flags & CLONE_SETTLS) {
244 if (test_thread_flag(TIF_31BIT)) {
245 p->thread.acrs[0] = (unsigned int) regs->gprs[6];
246 } else {
247 p->thread.acrs[0] = (unsigned int)(regs->gprs[6] >> 32);
248 p->thread.acrs[1] = (unsigned int) regs->gprs[6];
249 }
250 }
Martin Schwidefsky347a8dc2006-01-06 00:19:28 -0800251#endif /* CONFIG_64BIT */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 /* start new process with ar4 pointing to the correct address space */
253 p->thread.mm_segment = get_fs();
254 /* Don't copy debug registers */
255 memset(&p->thread.per_info,0,sizeof(p->thread.per_info));
256
257 return 0;
258}
259
Martin Schwidefsky03ff9a22007-04-27 16:01:40 +0200260asmlinkage long sys_fork(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261{
Martin Schwidefsky03ff9a22007-04-27 16:01:40 +0200262 struct pt_regs *regs = task_pt_regs(current);
263 return do_fork(SIGCHLD, regs->gprs[15], regs, 0, NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264}
265
Martin Schwidefsky03ff9a22007-04-27 16:01:40 +0200266asmlinkage long sys_clone(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267{
Martin Schwidefsky03ff9a22007-04-27 16:01:40 +0200268 struct pt_regs *regs = task_pt_regs(current);
269 unsigned long clone_flags;
270 unsigned long newsp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 int __user *parent_tidptr, *child_tidptr;
272
Martin Schwidefsky03ff9a22007-04-27 16:01:40 +0200273 clone_flags = regs->gprs[3];
274 newsp = regs->orig_gpr2;
275 parent_tidptr = (int __user *) regs->gprs[4];
276 child_tidptr = (int __user *) regs->gprs[5];
277 if (!newsp)
278 newsp = regs->gprs[15];
279 return do_fork(clone_flags, newsp, regs, 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 parent_tidptr, child_tidptr);
281}
282
283/*
284 * This is trivial, and on the face of it looks like it
285 * could equally well be done in user mode.
286 *
287 * Not so, for quite unobvious reasons - register pressure.
288 * In user mode vfork() cannot have a stack frame, and if
289 * done by calling the "clone()" system call directly, you
290 * do not have enough call-clobbered registers to hold all
291 * the information you need.
292 */
Martin Schwidefsky03ff9a22007-04-27 16:01:40 +0200293asmlinkage long sys_vfork(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294{
Martin Schwidefsky03ff9a22007-04-27 16:01:40 +0200295 struct pt_regs *regs = task_pt_regs(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 return do_fork(CLONE_VFORK | CLONE_VM | SIGCHLD,
Martin Schwidefsky03ff9a22007-04-27 16:01:40 +0200297 regs->gprs[15], regs, 0, NULL, NULL);
298}
299
300asmlinkage void execve_tail(void)
301{
302 task_lock(current);
303 current->ptrace &= ~PT_DTRACE;
304 task_unlock(current);
305 current->thread.fp_regs.fpc = 0;
306 if (MACHINE_HAS_IEEE)
307 asm volatile("sfpc %0,%0" : : "d" (0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308}
309
310/*
311 * sys_execve() executes a new program.
312 */
Martin Schwidefsky03ff9a22007-04-27 16:01:40 +0200313asmlinkage long sys_execve(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314{
Martin Schwidefsky03ff9a22007-04-27 16:01:40 +0200315 struct pt_regs *regs = task_pt_regs(current);
316 char *filename;
317 unsigned long result;
318 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319
Martin Schwidefsky03ff9a22007-04-27 16:01:40 +0200320 filename = getname((char __user *) regs->orig_gpr2);
321 if (IS_ERR(filename)) {
322 result = PTR_ERR(filename);
323 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 }
Martin Schwidefsky03ff9a22007-04-27 16:01:40 +0200325 rc = do_execve(filename, (char __user * __user *) regs->gprs[3],
326 (char __user * __user *) regs->gprs[4], regs);
327 if (rc) {
328 result = rc;
329 goto out_putname;
330 }
331 execve_tail();
332 result = regs->gprs[2];
333out_putname:
334 putname(filename);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335out:
Martin Schwidefsky03ff9a22007-04-27 16:01:40 +0200336 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337}
338
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339/*
340 * fill in the FPU structure for a core dump.
341 */
342int dump_fpu (struct pt_regs * regs, s390_fp_regs *fpregs)
343{
Martin Schwidefsky347a8dc2006-01-06 00:19:28 -0800344#ifndef CONFIG_64BIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 /*
346 * save fprs to current->thread.fp_regs to merge them with
347 * the emulated registers and then copy the result to the dump.
348 */
349 save_fp_regs(&current->thread.fp_regs);
350 memcpy(fpregs, &current->thread.fp_regs, sizeof(s390_fp_regs));
Martin Schwidefsky347a8dc2006-01-06 00:19:28 -0800351#else /* CONFIG_64BIT */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 save_fp_regs(fpregs);
Martin Schwidefsky347a8dc2006-01-06 00:19:28 -0800353#endif /* CONFIG_64BIT */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 return 1;
355}
356
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357unsigned long get_wchan(struct task_struct *p)
358{
359 struct stack_frame *sf, *low, *high;
360 unsigned long return_address;
361 int count;
362
Al Viro30af7122006-01-12 01:05:50 -0800363 if (!p || p == current || p->state == TASK_RUNNING || !task_stack_page(p))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 return 0;
Al Viro30af7122006-01-12 01:05:50 -0800365 low = task_stack_page(p);
366 high = (struct stack_frame *) task_pt_regs(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 sf = (struct stack_frame *) (p->thread.ksp & PSW_ADDR_INSN);
368 if (sf <= low || sf > high)
369 return 0;
370 for (count = 0; count < 16; count++) {
371 sf = (struct stack_frame *) (sf->back_chain & PSW_ADDR_INSN);
372 if (sf <= low || sf > high)
373 return 0;
374 return_address = sf->gprs[8] & PSW_ADDR_INSN;
375 if (!in_sched_functions(return_address))
376 return return_address;
377 }
378 return 0;
379}
380