blob: eb768ce88672e9dc50d0a1bd0abe32faf0d4c12f [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include <asm/uaccess.h>
40#include <asm/pgtable.h>
41#include <asm/system.h>
42#include <asm/io.h>
43#include <asm/processor.h>
44#include <asm/irq.h>
45#include <asm/timer.h>
Heiko Carstensfae8b222007-10-22 12:52:39 +020046#include <asm/cpu.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +020048asmlinkage void ret_from_fork(void) asm ("ret_from_fork");
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
50/*
51 * Return saved PC of a blocked thread. used in kernel/sched.
52 * resume in entry.S does not create a new stack frame, it
53 * just stores the registers %r6-%r15 to the frame given by
54 * schedule. We want to return the address of the caller of
55 * schedule, so we have to walk the backchain one time to
56 * find the frame schedule() store its return address.
57 */
58unsigned long thread_saved_pc(struct task_struct *tsk)
59{
Heiko Carstenseb33c192006-01-14 13:20:57 -080060 struct stack_frame *sf, *low, *high;
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
Heiko Carstenseb33c192006-01-14 13:20:57 -080062 if (!tsk || !task_stack_page(tsk))
63 return 0;
64 low = task_stack_page(tsk);
65 high = (struct stack_frame *) task_pt_regs(tsk);
66 sf = (struct stack_frame *) (tsk->thread.ksp & PSW_ADDR_INSN);
67 if (sf <= low || sf > high)
68 return 0;
69 sf = (struct stack_frame *) (sf->back_chain & PSW_ADDR_INSN);
70 if (sf <= low || sf > high)
71 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 return sf->gprs[8];
73}
74
75/*
76 * Need to know about CPUs going idle?
77 */
Alan Sterne041c682006-03-27 01:16:30 -080078static ATOMIC_NOTIFIER_HEAD(idle_chain);
Heiko Carstens43ca5c32008-04-17 07:46:23 +020079DEFINE_PER_CPU(struct s390_idle_data, s390_idle);
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
81int register_idle_notifier(struct notifier_block *nb)
82{
Alan Sterne041c682006-03-27 01:16:30 -080083 return atomic_notifier_chain_register(&idle_chain, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070084}
85EXPORT_SYMBOL(register_idle_notifier);
86
87int unregister_idle_notifier(struct notifier_block *nb)
88{
Alan Sterne041c682006-03-27 01:16:30 -080089 return atomic_notifier_chain_unregister(&idle_chain, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070090}
91EXPORT_SYMBOL(unregister_idle_notifier);
92
Heiko Carstens43ca5c32008-04-17 07:46:23 +020093static int s390_idle_enter(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070094{
Heiko Carstens43ca5c32008-04-17 07:46:23 +020095 struct s390_idle_data *idle;
96 int nr_calls = 0;
97 void *hcpu;
98 int rc;
99
100 hcpu = (void *)(long)smp_processor_id();
101 rc = __atomic_notifier_call_chain(&idle_chain, S390_CPU_IDLE, hcpu, -1,
102 &nr_calls);
103 if (rc == NOTIFY_BAD) {
104 nr_calls--;
105 __atomic_notifier_call_chain(&idle_chain, S390_CPU_NOT_IDLE,
106 hcpu, nr_calls, NULL);
107 return rc;
108 }
109 idle = &__get_cpu_var(s390_idle);
110 spin_lock(&idle->lock);
111 idle->idle_count++;
112 idle->in_idle = 1;
113 idle->idle_enter = get_clock();
114 spin_unlock(&idle->lock);
115 return NOTIFY_OK;
116}
117
118void s390_idle_leave(void)
119{
Heiko Carstensfae8b222007-10-22 12:52:39 +0200120 struct s390_idle_data *idle;
121
122 idle = &__get_cpu_var(s390_idle);
123 spin_lock(&idle->lock);
124 idle->idle_time += get_clock() - idle->idle_enter;
125 idle->in_idle = 0;
126 spin_unlock(&idle->lock);
Heiko Carstensdce55472007-07-10 11:24:21 +0200127 atomic_notifier_call_chain(&idle_chain, S390_CPU_NOT_IDLE,
128 (void *)(long) smp_processor_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129}
130
Heiko Carstens77fa2242005-06-25 14:55:30 -0700131extern void s390_handle_mcck(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132/*
133 * The idle loop on a S390...
134 */
Adrian Bunkcdb04522006-03-24 03:15:57 -0800135static void default_idle(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 /* CPU is going idle. */
Nick Piggin64c7c8f2005-11-08 21:39:04 -0800138 local_irq_disable();
139 if (need_resched()) {
140 local_irq_enable();
141 return;
142 }
Heiko Carstens43ca5c32008-04-17 07:46:23 +0200143 if (s390_idle_enter() == NOTIFY_BAD) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 local_irq_enable();
145 return;
146 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147#ifdef CONFIG_HOTPLUG_CPU
Heiko Carstens43ca5c32008-04-17 07:46:23 +0200148 if (cpu_is_offline(smp_processor_id())) {
Heiko Carstens1fca2512006-02-17 13:52:46 -0800149 preempt_enable_no_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 cpu_die();
Heiko Carstens1fca2512006-02-17 13:52:46 -0800151 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152#endif
Heiko Carstens77fa2242005-06-25 14:55:30 -0700153 local_mcck_disable();
154 if (test_thread_flag(TIF_MCCK_PENDING)) {
155 local_mcck_enable();
Heiko Carstens43ca5c32008-04-17 07:46:23 +0200156 s390_idle_leave();
Heiko Carstens77fa2242005-06-25 14:55:30 -0700157 local_irq_enable();
158 s390_handle_mcck();
159 return;
160 }
Heiko Carstens1f194a42006-07-03 00:24:46 -0700161 trace_hardirqs_on();
Heiko Carstens77fa2242005-06-25 14:55:30 -0700162 /* Wait for external, I/O or machine check interrupt. */
Gerald Schaeferc1821c22007-02-05 21:18:17 +0100163 __load_psw_mask(psw_kernel_bits | PSW_MASK_WAIT |
Heiko Carstens77fa2242005-06-25 14:55:30 -0700164 PSW_MASK_IO | PSW_MASK_EXT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165}
166
167void cpu_idle(void)
168{
Nick Piggin5bfb5d62005-11-08 21:39:01 -0800169 for (;;) {
170 while (!need_resched())
171 default_idle();
172
173 preempt_enable_no_resched();
174 schedule();
175 preempt_disable();
176 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177}
178
179void show_regs(struct pt_regs *regs)
180{
Heiko Carstens5c699712008-01-26 14:11:01 +0100181 print_modules();
182 printk("CPU: %d %s %s %.*s\n",
183 task_thread_info(current)->cpu, print_tainted(),
184 init_utsname()->release,
185 (int)strcspn(init_utsname()->version, " "),
186 init_utsname()->version);
187 printk("Process %s (pid: %d, task: %p, ksp: %p)\n",
188 current->comm, current->pid, current,
189 (void *) current->thread.ksp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 show_registers(regs);
191 /* Show stack backtrace if pt_regs is from kernel mode */
192 if (!(regs->psw.mask & PSW_MASK_PSTATE))
Heiko Carstensd2c993d2006-07-12 16:41:55 +0200193 show_trace(NULL, (unsigned long *) regs->gprs[15]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194}
195
196extern void kernel_thread_starter(void);
197
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200198asm(
199 ".align 4\n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 "kernel_thread_starter:\n"
201 " la 2,0(10)\n"
202 " basr 14,9\n"
203 " la 2,0\n"
204 " br 11\n");
205
206int kernel_thread(int (*fn)(void *), void * arg, unsigned long flags)
207{
208 struct pt_regs regs;
209
210 memset(&regs, 0, sizeof(regs));
Gerald Schaeferc1821c22007-02-05 21:18:17 +0100211 regs.psw.mask = psw_kernel_bits | PSW_MASK_IO | PSW_MASK_EXT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 regs.psw.addr = (unsigned long) kernel_thread_starter | PSW_ADDR_AMODE;
213 regs.gprs[9] = (unsigned long) fn;
214 regs.gprs[10] = (unsigned long) arg;
215 regs.gprs[11] = (unsigned long) do_exit;
216 regs.orig_gpr2 = -1;
217
218 /* Ok, create the new process.. */
219 return do_fork(flags | CLONE_VM | CLONE_UNTRACED,
220 0, &regs, 0, NULL, NULL);
221}
222
223/*
224 * Free current thread data structures etc..
225 */
226void exit_thread(void)
227{
228}
229
230void flush_thread(void)
231{
232 clear_used_math();
233 clear_tsk_thread_flag(current, TIF_USEDFPU);
234}
235
236void release_thread(struct task_struct *dead_task)
237{
238}
239
240int copy_thread(int nr, unsigned long clone_flags, unsigned long new_stackp,
241 unsigned long unused,
242 struct task_struct * p, struct pt_regs * regs)
243{
244 struct fake_frame
245 {
246 struct stack_frame sf;
247 struct pt_regs childregs;
248 } *frame;
249
Al Viroc7584fb2006-01-12 01:05:49 -0800250 frame = container_of(task_pt_regs(p), struct fake_frame, childregs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 p->thread.ksp = (unsigned long) frame;
252 /* Store access registers to kernel stack of new process. */
253 frame->childregs = *regs;
254 frame->childregs.gprs[2] = 0; /* child returns 0 on fork. */
255 frame->childregs.gprs[15] = new_stackp;
256 frame->sf.back_chain = 0;
257
258 /* new return point is ret_from_fork */
259 frame->sf.gprs[8] = (unsigned long) ret_from_fork;
260
261 /* fake return stack for resume(), don't go back to schedule */
262 frame->sf.gprs[9] = (unsigned long) frame;
263
264 /* Save access registers to new thread structure. */
265 save_access_regs(&p->thread.acrs[0]);
266
Martin Schwidefsky347a8dc2006-01-06 00:19:28 -0800267#ifndef CONFIG_64BIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 /*
269 * save fprs to current->thread.fp_regs to merge them with
270 * the emulated registers and then copy the result to the child.
271 */
272 save_fp_regs(&current->thread.fp_regs);
273 memcpy(&p->thread.fp_regs, &current->thread.fp_regs,
274 sizeof(s390_fp_regs));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 /* Set a new TLS ? */
276 if (clone_flags & CLONE_SETTLS)
277 p->thread.acrs[0] = regs->gprs[6];
Martin Schwidefsky347a8dc2006-01-06 00:19:28 -0800278#else /* CONFIG_64BIT */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 /* Save the fpu registers to new thread structure. */
280 save_fp_regs(&p->thread.fp_regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 /* Set a new TLS ? */
282 if (clone_flags & CLONE_SETTLS) {
283 if (test_thread_flag(TIF_31BIT)) {
284 p->thread.acrs[0] = (unsigned int) regs->gprs[6];
285 } else {
286 p->thread.acrs[0] = (unsigned int)(regs->gprs[6] >> 32);
287 p->thread.acrs[1] = (unsigned int) regs->gprs[6];
288 }
289 }
Martin Schwidefsky347a8dc2006-01-06 00:19:28 -0800290#endif /* CONFIG_64BIT */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 /* start new process with ar4 pointing to the correct address space */
292 p->thread.mm_segment = get_fs();
293 /* Don't copy debug registers */
294 memset(&p->thread.per_info,0,sizeof(p->thread.per_info));
295
296 return 0;
297}
298
Martin Schwidefsky03ff9a22007-04-27 16:01:40 +0200299asmlinkage long sys_fork(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300{
Martin Schwidefsky03ff9a22007-04-27 16:01:40 +0200301 struct pt_regs *regs = task_pt_regs(current);
302 return do_fork(SIGCHLD, regs->gprs[15], regs, 0, NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303}
304
Martin Schwidefsky03ff9a22007-04-27 16:01:40 +0200305asmlinkage long sys_clone(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306{
Martin Schwidefsky03ff9a22007-04-27 16:01:40 +0200307 struct pt_regs *regs = task_pt_regs(current);
308 unsigned long clone_flags;
309 unsigned long newsp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 int __user *parent_tidptr, *child_tidptr;
311
Martin Schwidefsky03ff9a22007-04-27 16:01:40 +0200312 clone_flags = regs->gprs[3];
313 newsp = regs->orig_gpr2;
314 parent_tidptr = (int __user *) regs->gprs[4];
315 child_tidptr = (int __user *) regs->gprs[5];
316 if (!newsp)
317 newsp = regs->gprs[15];
318 return do_fork(clone_flags, newsp, regs, 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 parent_tidptr, child_tidptr);
320}
321
322/*
323 * This is trivial, and on the face of it looks like it
324 * could equally well be done in user mode.
325 *
326 * Not so, for quite unobvious reasons - register pressure.
327 * In user mode vfork() cannot have a stack frame, and if
328 * done by calling the "clone()" system call directly, you
329 * do not have enough call-clobbered registers to hold all
330 * the information you need.
331 */
Martin Schwidefsky03ff9a22007-04-27 16:01:40 +0200332asmlinkage long sys_vfork(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333{
Martin Schwidefsky03ff9a22007-04-27 16:01:40 +0200334 struct pt_regs *regs = task_pt_regs(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 return do_fork(CLONE_VFORK | CLONE_VM | SIGCHLD,
Martin Schwidefsky03ff9a22007-04-27 16:01:40 +0200336 regs->gprs[15], regs, 0, NULL, NULL);
337}
338
339asmlinkage void execve_tail(void)
340{
341 task_lock(current);
342 current->ptrace &= ~PT_DTRACE;
343 task_unlock(current);
344 current->thread.fp_regs.fpc = 0;
345 if (MACHINE_HAS_IEEE)
346 asm volatile("sfpc %0,%0" : : "d" (0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347}
348
349/*
350 * sys_execve() executes a new program.
351 */
Martin Schwidefsky03ff9a22007-04-27 16:01:40 +0200352asmlinkage long sys_execve(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353{
Martin Schwidefsky03ff9a22007-04-27 16:01:40 +0200354 struct pt_regs *regs = task_pt_regs(current);
355 char *filename;
356 unsigned long result;
357 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358
Martin Schwidefsky03ff9a22007-04-27 16:01:40 +0200359 filename = getname((char __user *) regs->orig_gpr2);
360 if (IS_ERR(filename)) {
361 result = PTR_ERR(filename);
362 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 }
Martin Schwidefsky03ff9a22007-04-27 16:01:40 +0200364 rc = do_execve(filename, (char __user * __user *) regs->gprs[3],
365 (char __user * __user *) regs->gprs[4], regs);
366 if (rc) {
367 result = rc;
368 goto out_putname;
369 }
370 execve_tail();
371 result = regs->gprs[2];
372out_putname:
373 putname(filename);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374out:
Martin Schwidefsky03ff9a22007-04-27 16:01:40 +0200375 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376}
377
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378/*
379 * fill in the FPU structure for a core dump.
380 */
381int dump_fpu (struct pt_regs * regs, s390_fp_regs *fpregs)
382{
Martin Schwidefsky347a8dc2006-01-06 00:19:28 -0800383#ifndef CONFIG_64BIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 /*
385 * save fprs to current->thread.fp_regs to merge them with
386 * the emulated registers and then copy the result to the dump.
387 */
388 save_fp_regs(&current->thread.fp_regs);
389 memcpy(fpregs, &current->thread.fp_regs, sizeof(s390_fp_regs));
Martin Schwidefsky347a8dc2006-01-06 00:19:28 -0800390#else /* CONFIG_64BIT */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 save_fp_regs(fpregs);
Martin Schwidefsky347a8dc2006-01-06 00:19:28 -0800392#endif /* CONFIG_64BIT */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 return 1;
394}
395
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396unsigned long get_wchan(struct task_struct *p)
397{
398 struct stack_frame *sf, *low, *high;
399 unsigned long return_address;
400 int count;
401
Al Viro30af7122006-01-12 01:05:50 -0800402 if (!p || p == current || p->state == TASK_RUNNING || !task_stack_page(p))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 return 0;
Al Viro30af7122006-01-12 01:05:50 -0800404 low = task_stack_page(p);
405 high = (struct stack_frame *) task_pt_regs(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 sf = (struct stack_frame *) (p->thread.ksp & PSW_ADDR_INSN);
407 if (sf <= low || sf > high)
408 return 0;
409 for (count = 0; count < 16; count++) {
410 sf = (struct stack_frame *) (sf->back_chain & PSW_ADDR_INSN);
411 if (sf <= low || sf > high)
412 return 0;
413 return_address = sf->gprs[8] & PSW_ADDR_INSN;
414 if (!in_sched_functions(return_address))
415 return return_address;
416 }
417 return 0;
418}
419