blob: ce203154d8ce3a6c8f9bf4a07cd7ad072e3b3ec8 [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);
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
80int register_idle_notifier(struct notifier_block *nb)
81{
Alan Sterne041c682006-03-27 01:16:30 -080082 return atomic_notifier_chain_register(&idle_chain, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070083}
84EXPORT_SYMBOL(register_idle_notifier);
85
86int unregister_idle_notifier(struct notifier_block *nb)
87{
Alan Sterne041c682006-03-27 01:16:30 -080088 return atomic_notifier_chain_unregister(&idle_chain, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070089}
90EXPORT_SYMBOL(unregister_idle_notifier);
91
92void do_monitor_call(struct pt_regs *regs, long interruption_code)
93{
Heiko Carstens0d2be082007-11-05 11:10:10 +010094#ifdef CONFIG_SMP
Heiko Carstensfae8b222007-10-22 12:52:39 +020095 struct s390_idle_data *idle;
96
97 idle = &__get_cpu_var(s390_idle);
98 spin_lock(&idle->lock);
99 idle->idle_time += get_clock() - idle->idle_enter;
100 idle->in_idle = 0;
101 spin_unlock(&idle->lock);
Heiko Carstens0d2be082007-11-05 11:10:10 +0100102#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 /* disable monitor call class 0 */
104 __ctl_clear_bit(8, 15);
105
Heiko Carstensdce55472007-07-10 11:24:21 +0200106 atomic_notifier_call_chain(&idle_chain, S390_CPU_NOT_IDLE,
107 (void *)(long) smp_processor_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108}
109
Heiko Carstens77fa2242005-06-25 14:55:30 -0700110extern void s390_handle_mcck(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111/*
112 * The idle loop on a S390...
113 */
Adrian Bunkcdb04522006-03-24 03:15:57 -0800114static void default_idle(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 int cpu, rc;
Heiko Carstens11ab2442008-02-19 15:29:26 +0100117 int nr_calls = 0;
118 void *hcpu;
Heiko Carstens0d2be082007-11-05 11:10:10 +0100119#ifdef CONFIG_SMP
Heiko Carstensfae8b222007-10-22 12:52:39 +0200120 struct s390_idle_data *idle;
Heiko Carstens0d2be082007-11-05 11:10:10 +0100121#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 /* CPU is going idle. */
124 cpu = smp_processor_id();
Heiko Carstens11ab2442008-02-19 15:29:26 +0100125 hcpu = (void *)(long)cpu;
Nick Piggin64c7c8f2005-11-08 21:39:04 -0800126 local_irq_disable();
127 if (need_resched()) {
128 local_irq_enable();
129 return;
130 }
131
Heiko Carstens11ab2442008-02-19 15:29:26 +0100132 rc = __atomic_notifier_call_chain(&idle_chain, S390_CPU_IDLE, hcpu, -1,
133 &nr_calls);
134 if (rc == NOTIFY_BAD) {
135 nr_calls--;
136 __atomic_notifier_call_chain(&idle_chain, S390_CPU_NOT_IDLE,
137 hcpu, nr_calls, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 local_irq_enable();
139 return;
140 }
141
142 /* enable monitor call class 0 */
143 __ctl_set_bit(8, 15);
144
145#ifdef CONFIG_HOTPLUG_CPU
Heiko Carstens1fca2512006-02-17 13:52:46 -0800146 if (cpu_is_offline(cpu)) {
147 preempt_enable_no_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 cpu_die();
Heiko Carstens1fca2512006-02-17 13:52:46 -0800149 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150#endif
151
Heiko Carstens77fa2242005-06-25 14:55:30 -0700152 local_mcck_disable();
153 if (test_thread_flag(TIF_MCCK_PENDING)) {
154 local_mcck_enable();
Heiko Carstens5ccd0e42008-03-05 12:37:08 +0100155 /* disable monitor call class 0 */
156 __ctl_clear_bit(8, 15);
157 atomic_notifier_call_chain(&idle_chain, S390_CPU_NOT_IDLE,
158 hcpu);
Heiko Carstens77fa2242005-06-25 14:55:30 -0700159 local_irq_enable();
160 s390_handle_mcck();
161 return;
162 }
Heiko Carstens0d2be082007-11-05 11:10:10 +0100163#ifdef CONFIG_SMP
Heiko Carstensfae8b222007-10-22 12:52:39 +0200164 idle = &__get_cpu_var(s390_idle);
165 spin_lock(&idle->lock);
166 idle->idle_count++;
167 idle->in_idle = 1;
168 idle->idle_enter = get_clock();
169 spin_unlock(&idle->lock);
Heiko Carstens0d2be082007-11-05 11:10:10 +0100170#endif
Heiko Carstens1f194a42006-07-03 00:24:46 -0700171 trace_hardirqs_on();
Heiko Carstens77fa2242005-06-25 14:55:30 -0700172 /* Wait for external, I/O or machine check interrupt. */
Gerald Schaeferc1821c22007-02-05 21:18:17 +0100173 __load_psw_mask(psw_kernel_bits | PSW_MASK_WAIT |
Heiko Carstens77fa2242005-06-25 14:55:30 -0700174 PSW_MASK_IO | PSW_MASK_EXT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175}
176
177void cpu_idle(void)
178{
Nick Piggin5bfb5d62005-11-08 21:39:01 -0800179 for (;;) {
180 while (!need_resched())
181 default_idle();
182
183 preempt_enable_no_resched();
184 schedule();
185 preempt_disable();
186 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187}
188
189void show_regs(struct pt_regs *regs)
190{
Heiko Carstens5c699712008-01-26 14:11:01 +0100191 print_modules();
192 printk("CPU: %d %s %s %.*s\n",
193 task_thread_info(current)->cpu, print_tainted(),
194 init_utsname()->release,
195 (int)strcspn(init_utsname()->version, " "),
196 init_utsname()->version);
197 printk("Process %s (pid: %d, task: %p, ksp: %p)\n",
198 current->comm, current->pid, current,
199 (void *) current->thread.ksp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 show_registers(regs);
201 /* Show stack backtrace if pt_regs is from kernel mode */
202 if (!(regs->psw.mask & PSW_MASK_PSTATE))
Heiko Carstensd2c993d2006-07-12 16:41:55 +0200203 show_trace(NULL, (unsigned long *) regs->gprs[15]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204}
205
206extern void kernel_thread_starter(void);
207
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200208asm(
209 ".align 4\n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 "kernel_thread_starter:\n"
211 " la 2,0(10)\n"
212 " basr 14,9\n"
213 " la 2,0\n"
214 " br 11\n");
215
216int kernel_thread(int (*fn)(void *), void * arg, unsigned long flags)
217{
218 struct pt_regs regs;
219
220 memset(&regs, 0, sizeof(regs));
Gerald Schaeferc1821c22007-02-05 21:18:17 +0100221 regs.psw.mask = psw_kernel_bits | PSW_MASK_IO | PSW_MASK_EXT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 regs.psw.addr = (unsigned long) kernel_thread_starter | PSW_ADDR_AMODE;
223 regs.gprs[9] = (unsigned long) fn;
224 regs.gprs[10] = (unsigned long) arg;
225 regs.gprs[11] = (unsigned long) do_exit;
226 regs.orig_gpr2 = -1;
227
228 /* Ok, create the new process.. */
229 return do_fork(flags | CLONE_VM | CLONE_UNTRACED,
230 0, &regs, 0, NULL, NULL);
231}
232
233/*
234 * Free current thread data structures etc..
235 */
236void exit_thread(void)
237{
238}
239
240void flush_thread(void)
241{
242 clear_used_math();
243 clear_tsk_thread_flag(current, TIF_USEDFPU);
244}
245
246void release_thread(struct task_struct *dead_task)
247{
248}
249
250int copy_thread(int nr, unsigned long clone_flags, unsigned long new_stackp,
251 unsigned long unused,
252 struct task_struct * p, struct pt_regs * regs)
253{
254 struct fake_frame
255 {
256 struct stack_frame sf;
257 struct pt_regs childregs;
258 } *frame;
259
Al Viroc7584fb2006-01-12 01:05:49 -0800260 frame = container_of(task_pt_regs(p), struct fake_frame, childregs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 p->thread.ksp = (unsigned long) frame;
262 /* Store access registers to kernel stack of new process. */
263 frame->childregs = *regs;
264 frame->childregs.gprs[2] = 0; /* child returns 0 on fork. */
265 frame->childregs.gprs[15] = new_stackp;
266 frame->sf.back_chain = 0;
267
268 /* new return point is ret_from_fork */
269 frame->sf.gprs[8] = (unsigned long) ret_from_fork;
270
271 /* fake return stack for resume(), don't go back to schedule */
272 frame->sf.gprs[9] = (unsigned long) frame;
273
274 /* Save access registers to new thread structure. */
275 save_access_regs(&p->thread.acrs[0]);
276
Martin Schwidefsky347a8dc2006-01-06 00:19:28 -0800277#ifndef CONFIG_64BIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 /*
279 * save fprs to current->thread.fp_regs to merge them with
280 * the emulated registers and then copy the result to the child.
281 */
282 save_fp_regs(&current->thread.fp_regs);
283 memcpy(&p->thread.fp_regs, &current->thread.fp_regs,
284 sizeof(s390_fp_regs));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 /* Set a new TLS ? */
286 if (clone_flags & CLONE_SETTLS)
287 p->thread.acrs[0] = regs->gprs[6];
Martin Schwidefsky347a8dc2006-01-06 00:19:28 -0800288#else /* CONFIG_64BIT */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 /* Save the fpu registers to new thread structure. */
290 save_fp_regs(&p->thread.fp_regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 /* Set a new TLS ? */
292 if (clone_flags & CLONE_SETTLS) {
293 if (test_thread_flag(TIF_31BIT)) {
294 p->thread.acrs[0] = (unsigned int) regs->gprs[6];
295 } else {
296 p->thread.acrs[0] = (unsigned int)(regs->gprs[6] >> 32);
297 p->thread.acrs[1] = (unsigned int) regs->gprs[6];
298 }
299 }
Martin Schwidefsky347a8dc2006-01-06 00:19:28 -0800300#endif /* CONFIG_64BIT */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 /* start new process with ar4 pointing to the correct address space */
302 p->thread.mm_segment = get_fs();
303 /* Don't copy debug registers */
304 memset(&p->thread.per_info,0,sizeof(p->thread.per_info));
305
306 return 0;
307}
308
Martin Schwidefsky03ff9a22007-04-27 16:01:40 +0200309asmlinkage long sys_fork(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310{
Martin Schwidefsky03ff9a22007-04-27 16:01:40 +0200311 struct pt_regs *regs = task_pt_regs(current);
312 return do_fork(SIGCHLD, regs->gprs[15], regs, 0, NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313}
314
Martin Schwidefsky03ff9a22007-04-27 16:01:40 +0200315asmlinkage long sys_clone(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316{
Martin Schwidefsky03ff9a22007-04-27 16:01:40 +0200317 struct pt_regs *regs = task_pt_regs(current);
318 unsigned long clone_flags;
319 unsigned long newsp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 int __user *parent_tidptr, *child_tidptr;
321
Martin Schwidefsky03ff9a22007-04-27 16:01:40 +0200322 clone_flags = regs->gprs[3];
323 newsp = regs->orig_gpr2;
324 parent_tidptr = (int __user *) regs->gprs[4];
325 child_tidptr = (int __user *) regs->gprs[5];
326 if (!newsp)
327 newsp = regs->gprs[15];
328 return do_fork(clone_flags, newsp, regs, 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 parent_tidptr, child_tidptr);
330}
331
332/*
333 * This is trivial, and on the face of it looks like it
334 * could equally well be done in user mode.
335 *
336 * Not so, for quite unobvious reasons - register pressure.
337 * In user mode vfork() cannot have a stack frame, and if
338 * done by calling the "clone()" system call directly, you
339 * do not have enough call-clobbered registers to hold all
340 * the information you need.
341 */
Martin Schwidefsky03ff9a22007-04-27 16:01:40 +0200342asmlinkage long sys_vfork(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343{
Martin Schwidefsky03ff9a22007-04-27 16:01:40 +0200344 struct pt_regs *regs = task_pt_regs(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 return do_fork(CLONE_VFORK | CLONE_VM | SIGCHLD,
Martin Schwidefsky03ff9a22007-04-27 16:01:40 +0200346 regs->gprs[15], regs, 0, NULL, NULL);
347}
348
349asmlinkage void execve_tail(void)
350{
351 task_lock(current);
352 current->ptrace &= ~PT_DTRACE;
353 task_unlock(current);
354 current->thread.fp_regs.fpc = 0;
355 if (MACHINE_HAS_IEEE)
356 asm volatile("sfpc %0,%0" : : "d" (0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357}
358
359/*
360 * sys_execve() executes a new program.
361 */
Martin Schwidefsky03ff9a22007-04-27 16:01:40 +0200362asmlinkage long sys_execve(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363{
Martin Schwidefsky03ff9a22007-04-27 16:01:40 +0200364 struct pt_regs *regs = task_pt_regs(current);
365 char *filename;
366 unsigned long result;
367 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368
Martin Schwidefsky03ff9a22007-04-27 16:01:40 +0200369 filename = getname((char __user *) regs->orig_gpr2);
370 if (IS_ERR(filename)) {
371 result = PTR_ERR(filename);
372 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 }
Martin Schwidefsky03ff9a22007-04-27 16:01:40 +0200374 rc = do_execve(filename, (char __user * __user *) regs->gprs[3],
375 (char __user * __user *) regs->gprs[4], regs);
376 if (rc) {
377 result = rc;
378 goto out_putname;
379 }
380 execve_tail();
381 result = regs->gprs[2];
382out_putname:
383 putname(filename);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384out:
Martin Schwidefsky03ff9a22007-04-27 16:01:40 +0200385 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386}
387
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388/*
389 * fill in the FPU structure for a core dump.
390 */
391int dump_fpu (struct pt_regs * regs, s390_fp_regs *fpregs)
392{
Martin Schwidefsky347a8dc2006-01-06 00:19:28 -0800393#ifndef CONFIG_64BIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 /*
395 * save fprs to current->thread.fp_regs to merge them with
396 * the emulated registers and then copy the result to the dump.
397 */
398 save_fp_regs(&current->thread.fp_regs);
399 memcpy(fpregs, &current->thread.fp_regs, sizeof(s390_fp_regs));
Martin Schwidefsky347a8dc2006-01-06 00:19:28 -0800400#else /* CONFIG_64BIT */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 save_fp_regs(fpregs);
Martin Schwidefsky347a8dc2006-01-06 00:19:28 -0800402#endif /* CONFIG_64BIT */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 return 1;
404}
405
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406unsigned long get_wchan(struct task_struct *p)
407{
408 struct stack_frame *sf, *low, *high;
409 unsigned long return_address;
410 int count;
411
Al Viro30af7122006-01-12 01:05:50 -0800412 if (!p || p == current || p->state == TASK_RUNNING || !task_stack_page(p))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 return 0;
Al Viro30af7122006-01-12 01:05:50 -0800414 low = task_stack_page(p);
415 high = (struct stack_frame *) task_pt_regs(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 sf = (struct stack_frame *) (p->thread.ksp & PSW_ADDR_INSN);
417 if (sf <= low || sf > high)
418 return 0;
419 for (count = 0; count < 16; count++) {
420 sf = (struct stack_frame *) (sf->back_chain & PSW_ADDR_INSN);
421 if (sf <= low || sf > high)
422 return 0;
423 return_address = sf->gprs[8] & PSW_ADDR_INSN;
424 if (!in_sched_functions(return_address))
425 return return_address;
426 }
427 return 0;
428}
429