008c74526fd3344e8599e30657ad18d5e048e96b
[safe/jmp/linux-2.6] / arch / s390 / kernel / process.c
1 /*
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
18 #include <linux/config.h>
19 #include <linux/compiler.h>
20 #include <linux/cpu.h>
21 #include <linux/errno.h>
22 #include <linux/sched.h>
23 #include <linux/kernel.h>
24 #include <linux/mm.h>
25 #include <linux/smp.h>
26 #include <linux/smp_lock.h>
27 #include <linux/stddef.h>
28 #include <linux/unistd.h>
29 #include <linux/ptrace.h>
30 #include <linux/slab.h>
31 #include <linux/vmalloc.h>
32 #include <linux/user.h>
33 #include <linux/a.out.h>
34 #include <linux/interrupt.h>
35 #include <linux/delay.h>
36 #include <linux/reboot.h>
37 #include <linux/init.h>
38 #include <linux/module.h>
39 #include <linux/notifier.h>
40
41 #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>
48
49 asmlinkage void ret_from_fork(void) __asm__("ret_from_fork");
50
51 /*
52  * Return saved PC of a blocked thread. used in kernel/sched.
53  * resume in entry.S does not create a new stack frame, it
54  * just stores the registers %r6-%r15 to the frame given by
55  * schedule. We want to return the address of the caller of
56  * schedule, so we have to walk the backchain one time to
57  * find the frame schedule() store its return address.
58  */
59 unsigned long thread_saved_pc(struct task_struct *tsk)
60 {
61         struct stack_frame *sf, *low, *high;
62
63         if (!tsk || !task_stack_page(tsk))
64                 return 0;
65         low = task_stack_page(tsk);
66         high = (struct stack_frame *) task_pt_regs(tsk);
67         sf = (struct stack_frame *) (tsk->thread.ksp & PSW_ADDR_INSN);
68         if (sf <= low || sf > high)
69                 return 0;
70         sf = (struct stack_frame *) (sf->back_chain & PSW_ADDR_INSN);
71         if (sf <= low || sf > high)
72                 return 0;
73         return sf->gprs[8];
74 }
75
76 /*
77  * Need to know about CPUs going idle?
78  */
79 static struct notifier_block *idle_chain;
80
81 int register_idle_notifier(struct notifier_block *nb)
82 {
83         return notifier_chain_register(&idle_chain, nb);
84 }
85 EXPORT_SYMBOL(register_idle_notifier);
86
87 int unregister_idle_notifier(struct notifier_block *nb)
88 {
89         return notifier_chain_unregister(&idle_chain, nb);
90 }
91 EXPORT_SYMBOL(unregister_idle_notifier);
92
93 void do_monitor_call(struct pt_regs *regs, long interruption_code)
94 {
95         /* disable monitor call class 0 */
96         __ctl_clear_bit(8, 15);
97
98         notifier_call_chain(&idle_chain, CPU_NOT_IDLE,
99                             (void *)(long) smp_processor_id());
100 }
101
102 extern void s390_handle_mcck(void);
103 /*
104  * The idle loop on a S390...
105  */
106 void default_idle(void)
107 {
108         int cpu, rc;
109
110         /* CPU is going idle. */
111         cpu = smp_processor_id();
112
113         local_irq_disable();
114         if (need_resched()) {
115                 local_irq_enable();
116                 return;
117         }
118
119         rc = notifier_call_chain(&idle_chain, CPU_IDLE, (void *)(long) cpu);
120         if (rc != NOTIFY_OK && rc != NOTIFY_DONE)
121                 BUG();
122         if (rc != NOTIFY_OK) {
123                 local_irq_enable();
124                 return;
125         }
126
127         /* enable monitor call class 0 */
128         __ctl_set_bit(8, 15);
129
130 #ifdef CONFIG_HOTPLUG_CPU
131         if (cpu_is_offline(cpu))
132                 cpu_die();
133 #endif
134
135         local_mcck_disable();
136         if (test_thread_flag(TIF_MCCK_PENDING)) {
137                 local_mcck_enable();
138                 local_irq_enable();
139                 s390_handle_mcck();
140                 return;
141         }
142
143         /* Wait for external, I/O or machine check interrupt. */
144         __load_psw_mask(PSW_KERNEL_BITS | PSW_MASK_WAIT |
145                         PSW_MASK_IO | PSW_MASK_EXT);
146 }
147
148 void cpu_idle(void)
149 {
150         for (;;) {
151                 while (!need_resched())
152                         default_idle();
153
154                 preempt_enable_no_resched();
155                 schedule();
156                 preempt_disable();
157         }
158 }
159
160 void show_regs(struct pt_regs *regs)
161 {
162         struct task_struct *tsk = current;
163
164         printk("CPU:    %d    %s\n", task_thread_info(tsk)->cpu, print_tainted());
165         printk("Process %s (pid: %d, task: %p, ksp: %p)\n",
166                current->comm, current->pid, (void *) tsk,
167                (void *) tsk->thread.ksp);
168
169         show_registers(regs);
170         /* Show stack backtrace if pt_regs is from kernel mode */
171         if (!(regs->psw.mask & PSW_MASK_PSTATE))
172                 show_trace(0,(unsigned long *) regs->gprs[15]);
173 }
174
175 extern void kernel_thread_starter(void);
176
177 __asm__(".align 4\n"
178         "kernel_thread_starter:\n"
179         "    la    2,0(10)\n"
180         "    basr  14,9\n"
181         "    la    2,0\n"
182         "    br    11\n");
183
184 int kernel_thread(int (*fn)(void *), void * arg, unsigned long flags)
185 {
186         struct pt_regs regs;
187
188         memset(&regs, 0, sizeof(regs));
189         regs.psw.mask = PSW_KERNEL_BITS | PSW_MASK_IO | PSW_MASK_EXT;
190         regs.psw.addr = (unsigned long) kernel_thread_starter | PSW_ADDR_AMODE;
191         regs.gprs[9] = (unsigned long) fn;
192         regs.gprs[10] = (unsigned long) arg;
193         regs.gprs[11] = (unsigned long) do_exit;
194         regs.orig_gpr2 = -1;
195
196         /* Ok, create the new process.. */
197         return do_fork(flags | CLONE_VM | CLONE_UNTRACED,
198                        0, &regs, 0, NULL, NULL);
199 }
200
201 /*
202  * Free current thread data structures etc..
203  */
204 void exit_thread(void)
205 {
206 }
207
208 void flush_thread(void)
209 {
210         clear_used_math();
211         clear_tsk_thread_flag(current, TIF_USEDFPU);
212 }
213
214 void release_thread(struct task_struct *dead_task)
215 {
216 }
217
218 int copy_thread(int nr, unsigned long clone_flags, unsigned long new_stackp,
219         unsigned long unused,
220         struct task_struct * p, struct pt_regs * regs)
221 {
222         struct fake_frame
223           {
224             struct stack_frame sf;
225             struct pt_regs childregs;
226           } *frame;
227
228         frame = container_of(task_pt_regs(p), struct fake_frame, childregs);
229         p->thread.ksp = (unsigned long) frame;
230         /* Store access registers to kernel stack of new process. */
231         frame->childregs = *regs;
232         frame->childregs.gprs[2] = 0;   /* child returns 0 on fork. */
233         frame->childregs.gprs[15] = new_stackp;
234         frame->sf.back_chain = 0;
235
236         /* new return point is ret_from_fork */
237         frame->sf.gprs[8] = (unsigned long) ret_from_fork;
238
239         /* fake return stack for resume(), don't go back to schedule */
240         frame->sf.gprs[9] = (unsigned long) frame;
241
242         /* Save access registers to new thread structure. */
243         save_access_regs(&p->thread.acrs[0]);
244
245 #ifndef CONFIG_64BIT
246         /*
247          * save fprs to current->thread.fp_regs to merge them with
248          * the emulated registers and then copy the result to the child.
249          */
250         save_fp_regs(&current->thread.fp_regs);
251         memcpy(&p->thread.fp_regs, &current->thread.fp_regs,
252                sizeof(s390_fp_regs));
253         p->thread.user_seg = __pa((unsigned long) p->mm->pgd) | _SEGMENT_TABLE;
254         /* Set a new TLS ?  */
255         if (clone_flags & CLONE_SETTLS)
256                 p->thread.acrs[0] = regs->gprs[6];
257 #else /* CONFIG_64BIT */
258         /* Save the fpu registers to new thread structure. */
259         save_fp_regs(&p->thread.fp_regs);
260         p->thread.user_seg = __pa((unsigned long) p->mm->pgd) | _REGION_TABLE;
261         /* Set a new TLS ?  */
262         if (clone_flags & CLONE_SETTLS) {
263                 if (test_thread_flag(TIF_31BIT)) {
264                         p->thread.acrs[0] = (unsigned int) regs->gprs[6];
265                 } else {
266                         p->thread.acrs[0] = (unsigned int)(regs->gprs[6] >> 32);
267                         p->thread.acrs[1] = (unsigned int) regs->gprs[6];
268                 }
269         }
270 #endif /* CONFIG_64BIT */
271         /* start new process with ar4 pointing to the correct address space */
272         p->thread.mm_segment = get_fs();
273         /* Don't copy debug registers */
274         memset(&p->thread.per_info,0,sizeof(p->thread.per_info));
275
276         return 0;
277 }
278
279 asmlinkage long sys_fork(struct pt_regs regs)
280 {
281         return do_fork(SIGCHLD, regs.gprs[15], &regs, 0, NULL, NULL);
282 }
283
284 asmlinkage long sys_clone(struct pt_regs regs)
285 {
286         unsigned long clone_flags;
287         unsigned long newsp;
288         int __user *parent_tidptr, *child_tidptr;
289
290         clone_flags = regs.gprs[3];
291         newsp = regs.orig_gpr2;
292         parent_tidptr = (int __user *) regs.gprs[4];
293         child_tidptr = (int __user *) regs.gprs[5];
294         if (!newsp)
295                 newsp = regs.gprs[15];
296         return do_fork(clone_flags, newsp, &regs, 0,
297                        parent_tidptr, child_tidptr);
298 }
299
300 /*
301  * This is trivial, and on the face of it looks like it
302  * could equally well be done in user mode.
303  *
304  * Not so, for quite unobvious reasons - register pressure.
305  * In user mode vfork() cannot have a stack frame, and if
306  * done by calling the "clone()" system call directly, you
307  * do not have enough call-clobbered registers to hold all
308  * the information you need.
309  */
310 asmlinkage long sys_vfork(struct pt_regs regs)
311 {
312         return do_fork(CLONE_VFORK | CLONE_VM | SIGCHLD,
313                        regs.gprs[15], &regs, 0, NULL, NULL);
314 }
315
316 /*
317  * sys_execve() executes a new program.
318  */
319 asmlinkage long sys_execve(struct pt_regs regs)
320 {
321         int error;
322         char * filename;
323
324         filename = getname((char __user *) regs.orig_gpr2);
325         error = PTR_ERR(filename);
326         if (IS_ERR(filename))
327                 goto out;
328         error = do_execve(filename, (char __user * __user *) regs.gprs[3],
329                           (char __user * __user *) regs.gprs[4], &regs);
330         if (error == 0) {
331                 task_lock(current);
332                 current->ptrace &= ~PT_DTRACE;
333                 task_unlock(current);
334                 current->thread.fp_regs.fpc = 0;
335                 if (MACHINE_HAS_IEEE)
336                         asm volatile("sfpc %0,%0" : : "d" (0));
337         }
338         putname(filename);
339 out:
340         return error;
341 }
342
343
344 /*
345  * fill in the FPU structure for a core dump.
346  */
347 int dump_fpu (struct pt_regs * regs, s390_fp_regs *fpregs)
348 {
349 #ifndef CONFIG_64BIT
350         /*
351          * save fprs to current->thread.fp_regs to merge them with
352          * the emulated registers and then copy the result to the dump.
353          */
354         save_fp_regs(&current->thread.fp_regs);
355         memcpy(fpregs, &current->thread.fp_regs, sizeof(s390_fp_regs));
356 #else /* CONFIG_64BIT */
357         save_fp_regs(fpregs);
358 #endif /* CONFIG_64BIT */
359         return 1;
360 }
361
362 unsigned long get_wchan(struct task_struct *p)
363 {
364         struct stack_frame *sf, *low, *high;
365         unsigned long return_address;
366         int count;
367
368         if (!p || p == current || p->state == TASK_RUNNING || !task_stack_page(p))
369                 return 0;
370         low = task_stack_page(p);
371         high = (struct stack_frame *) task_pt_regs(p);
372         sf = (struct stack_frame *) (p->thread.ksp & PSW_ADDR_INSN);
373         if (sf <= low || sf > high)
374                 return 0;
375         for (count = 0; count < 16; count++) {
376                 sf = (struct stack_frame *) (sf->back_chain & PSW_ADDR_INSN);
377                 if (sf <= low || sf > high)
378                         return 0;
379                 return_address = sf->gprs[8] & PSW_ADDR_INSN;
380                 if (!in_sched_functions(return_address))
381                         return return_address;
382         }
383         return 0;
384 }
385