Merge branch 'master' into sh/hw-breakpoints
[sfrench/cifs-2.6.git] / arch / sh / kernel / process_32.c
1 /*
2  * arch/sh/kernel/process.c
3  *
4  * This file handles the architecture-dependent parts of process handling..
5  *
6  *  Copyright (C) 1995  Linus Torvalds
7  *
8  *  SuperH version:  Copyright (C) 1999, 2000  Niibe Yutaka & Kaz Kojima
9  *                   Copyright (C) 2006 Lineo Solutions Inc. support SH4A UBC
10  *                   Copyright (C) 2002 - 2008  Paul Mundt
11  *
12  * This file is subject to the terms and conditions of the GNU General Public
13  * License.  See the file "COPYING" in the main directory of this archive
14  * for more details.
15  */
16 #include <linux/module.h>
17 #include <linux/mm.h>
18 #include <linux/elfcore.h>
19 #include <linux/pm.h>
20 #include <linux/kallsyms.h>
21 #include <linux/kexec.h>
22 #include <linux/kdebug.h>
23 #include <linux/tick.h>
24 #include <linux/reboot.h>
25 #include <linux/fs.h>
26 #include <linux/ftrace.h>
27 #include <linux/preempt.h>
28 #include <linux/hw_breakpoint.h>
29 #include <asm/uaccess.h>
30 #include <asm/mmu_context.h>
31 #include <asm/pgalloc.h>
32 #include <asm/system.h>
33 #include <asm/ubc.h>
34 #include <asm/fpu.h>
35 #include <asm/syscalls.h>
36 #include <asm/watchdog.h>
37
38 #ifdef CONFIG_32BIT
39 static void watchdog_trigger_immediate(void)
40 {
41         sh_wdt_write_cnt(0xFF);
42         sh_wdt_write_csr(0xC2);
43 }
44
45 void machine_restart(char * __unused)
46 {
47         local_irq_disable();
48
49         /* Use watchdog timer to trigger reset */
50         watchdog_trigger_immediate();
51
52         while (1)
53                 cpu_sleep();
54 }
55 #else
56 void machine_restart(char * __unused)
57 {
58         /* SR.BL=1 and invoke address error to let CPU reset (manual reset) */
59         asm volatile("ldc %0, sr\n\t"
60                      "mov.l @%1, %0" : : "r" (0x10000000), "r" (0x80000001));
61 }
62 #endif
63
64 void machine_halt(void)
65 {
66         local_irq_disable();
67
68         while (1)
69                 cpu_sleep();
70 }
71
72 void machine_power_off(void)
73 {
74         if (pm_power_off)
75                 pm_power_off();
76 }
77
78 void show_regs(struct pt_regs * regs)
79 {
80         printk("\n");
81         printk("Pid : %d, Comm: \t\t%s\n", task_pid_nr(current), current->comm);
82         printk("CPU : %d        \t\t%s  (%s %.*s)\n\n",
83                smp_processor_id(), print_tainted(), init_utsname()->release,
84                (int)strcspn(init_utsname()->version, " "),
85                init_utsname()->version);
86
87         print_symbol("PC is at %s\n", instruction_pointer(regs));
88         print_symbol("PR is at %s\n", regs->pr);
89
90         printk("PC  : %08lx SP  : %08lx SR  : %08lx ",
91                regs->pc, regs->regs[15], regs->sr);
92 #ifdef CONFIG_MMU
93         printk("TEA : %08x\n", ctrl_inl(MMU_TEA));
94 #else
95         printk("\n");
96 #endif
97
98         printk("R0  : %08lx R1  : %08lx R2  : %08lx R3  : %08lx\n",
99                regs->regs[0],regs->regs[1],
100                regs->regs[2],regs->regs[3]);
101         printk("R4  : %08lx R5  : %08lx R6  : %08lx R7  : %08lx\n",
102                regs->regs[4],regs->regs[5],
103                regs->regs[6],regs->regs[7]);
104         printk("R8  : %08lx R9  : %08lx R10 : %08lx R11 : %08lx\n",
105                regs->regs[8],regs->regs[9],
106                regs->regs[10],regs->regs[11]);
107         printk("R12 : %08lx R13 : %08lx R14 : %08lx\n",
108                regs->regs[12],regs->regs[13],
109                regs->regs[14]);
110         printk("MACH: %08lx MACL: %08lx GBR : %08lx PR  : %08lx\n",
111                regs->mach, regs->macl, regs->gbr, regs->pr);
112
113         show_trace(NULL, (unsigned long *)regs->regs[15], regs);
114         show_code(regs);
115 }
116
117 /*
118  * Create a kernel thread
119  */
120 ATTRIB_NORET void kernel_thread_helper(void *arg, int (*fn)(void *))
121 {
122         do_exit(fn(arg));
123 }
124
125 /* Don't use this in BL=1(cli).  Or else, CPU resets! */
126 int kernel_thread(int (*fn)(void *), void * arg, unsigned long flags)
127 {
128         struct pt_regs regs;
129         int pid;
130
131         memset(&regs, 0, sizeof(regs));
132         regs.regs[4] = (unsigned long)arg;
133         regs.regs[5] = (unsigned long)fn;
134
135         regs.pc = (unsigned long)kernel_thread_helper;
136         regs.sr = SR_MD;
137 #if defined(CONFIG_SH_FPU)
138         regs.sr |= SR_FD;
139 #endif
140
141         /* Ok, create the new process.. */
142         pid = do_fork(flags | CLONE_VM | CLONE_UNTRACED, 0,
143                       &regs, 0, NULL, NULL);
144
145         return pid;
146 }
147 EXPORT_SYMBOL(kernel_thread);
148
149 /*
150  * Free current thread data structures etc..
151  */
152 void exit_thread(void)
153 {
154 }
155
156 void flush_thread(void)
157 {
158         struct task_struct *tsk = current;
159
160         flush_ptrace_hw_breakpoint(tsk);
161
162 #if defined(CONFIG_SH_FPU)
163         /* Forget lazy FPU state */
164         clear_fpu(tsk, task_pt_regs(tsk));
165         clear_used_math();
166 #endif
167 }
168
169 void release_thread(struct task_struct *dead_task)
170 {
171         /* do nothing */
172 }
173
174 /* Fill in the fpu structure for a core dump.. */
175 int dump_fpu(struct pt_regs *regs, elf_fpregset_t *fpu)
176 {
177         int fpvalid = 0;
178
179 #if defined(CONFIG_SH_FPU)
180         struct task_struct *tsk = current;
181
182         fpvalid = !!tsk_used_math(tsk);
183         if (fpvalid)
184                 fpvalid = !fpregs_get(tsk, NULL, 0,
185                                       sizeof(struct user_fpu_struct),
186                                       fpu, NULL);
187 #endif
188
189         return fpvalid;
190 }
191 EXPORT_SYMBOL(dump_fpu);
192
193 /*
194  * This gets called before we allocate a new thread and copy
195  * the current task into it.
196  */
197 void prepare_to_copy(struct task_struct *tsk)
198 {
199         unlazy_fpu(tsk, task_pt_regs(tsk));
200 }
201
202 asmlinkage void ret_from_fork(void);
203
204 int copy_thread(unsigned long clone_flags, unsigned long usp,
205                 unsigned long unused,
206                 struct task_struct *p, struct pt_regs *regs)
207 {
208         struct thread_info *ti = task_thread_info(p);
209         struct pt_regs *childregs;
210
211 #if defined(CONFIG_SH_DSP)
212         struct task_struct *tsk = current;
213
214         if (is_dsp_enabled(tsk)) {
215                 /* We can use the __save_dsp or just copy the struct:
216                  * __save_dsp(p);
217                  * p->thread.dsp_status.status |= SR_DSP
218                  */
219                 p->thread.dsp_status = tsk->thread.dsp_status;
220         }
221 #endif
222
223         childregs = task_pt_regs(p);
224         *childregs = *regs;
225
226         if (user_mode(regs)) {
227                 childregs->regs[15] = usp;
228                 ti->addr_limit = USER_DS;
229         } else {
230                 childregs->regs[15] = (unsigned long)childregs;
231                 ti->addr_limit = KERNEL_DS;
232                 ti->status &= ~TS_USEDFPU;
233                 p->fpu_counter = 0;
234         }
235
236         if (clone_flags & CLONE_SETTLS)
237                 childregs->gbr = childregs->regs[0];
238
239         childregs->regs[0] = 0; /* Set return value for child */
240
241         p->thread.sp = (unsigned long) childregs;
242         p->thread.pc = (unsigned long) ret_from_fork;
243
244         memset(p->thread.ptrace_bps, 0, sizeof(p->thread.ptrace_bps));
245
246         return 0;
247 }
248
249 /*
250  *      switch_to(x,y) should switch tasks from x to y.
251  *
252  */
253 __notrace_funcgraph struct task_struct *
254 __switch_to(struct task_struct *prev, struct task_struct *next)
255 {
256         struct thread_struct *next_t = &next->thread;
257
258         unlazy_fpu(prev, task_pt_regs(prev));
259
260         /* we're going to use this soon, after a few expensive things */
261         if (next->fpu_counter > 5)
262                 prefetch(&next_t->fpu.hard);
263
264 #ifdef CONFIG_MMU
265         /*
266          * Restore the kernel mode register
267          *      k7 (r7_bank1)
268          */
269         asm volatile("ldc       %0, r7_bank"
270                      : /* no output */
271                      : "r" (task_thread_info(next)));
272 #endif
273
274         /*
275          * If the task has used fpu the last 5 timeslices, just do a full
276          * restore of the math state immediately to avoid the trap; the
277          * chances of needing FPU soon are obviously high now
278          */
279         if (next->fpu_counter > 5)
280                 fpu_state_restore(task_pt_regs(next));
281
282         return prev;
283 }
284
285 asmlinkage int sys_fork(unsigned long r4, unsigned long r5,
286                         unsigned long r6, unsigned long r7,
287                         struct pt_regs __regs)
288 {
289 #ifdef CONFIG_MMU
290         struct pt_regs *regs = RELOC_HIDE(&__regs, 0);
291         return do_fork(SIGCHLD, regs->regs[15], regs, 0, NULL, NULL);
292 #else
293         /* fork almost works, enough to trick you into looking elsewhere :-( */
294         return -EINVAL;
295 #endif
296 }
297
298 asmlinkage int sys_clone(unsigned long clone_flags, unsigned long newsp,
299                          unsigned long parent_tidptr,
300                          unsigned long child_tidptr,
301                          struct pt_regs __regs)
302 {
303         struct pt_regs *regs = RELOC_HIDE(&__regs, 0);
304         if (!newsp)
305                 newsp = regs->regs[15];
306         return do_fork(clone_flags, newsp, regs, 0,
307                         (int __user *)parent_tidptr,
308                         (int __user *)child_tidptr);
309 }
310
311 /*
312  * This is trivial, and on the face of it looks like it
313  * could equally well be done in user mode.
314  *
315  * Not so, for quite unobvious reasons - register pressure.
316  * In user mode vfork() cannot have a stack frame, and if
317  * done by calling the "clone()" system call directly, you
318  * do not have enough call-clobbered registers to hold all
319  * the information you need.
320  */
321 asmlinkage int sys_vfork(unsigned long r4, unsigned long r5,
322                          unsigned long r6, unsigned long r7,
323                          struct pt_regs __regs)
324 {
325         struct pt_regs *regs = RELOC_HIDE(&__regs, 0);
326         return do_fork(CLONE_VFORK | CLONE_VM | SIGCHLD, regs->regs[15], regs,
327                        0, NULL, NULL);
328 }
329
330 /*
331  * sys_execve() executes a new program.
332  */
333 asmlinkage int sys_execve(char __user *ufilename, char __user * __user *uargv,
334                           char __user * __user *uenvp, unsigned long r7,
335                           struct pt_regs __regs)
336 {
337         struct pt_regs *regs = RELOC_HIDE(&__regs, 0);
338         int error;
339         char *filename;
340
341         filename = getname(ufilename);
342         error = PTR_ERR(filename);
343         if (IS_ERR(filename))
344                 goto out;
345
346         error = do_execve(filename, uargv, uenvp, regs);
347         putname(filename);
348 out:
349         return error;
350 }
351
352 unsigned long get_wchan(struct task_struct *p)
353 {
354         unsigned long pc;
355
356         if (!p || p == current || p->state == TASK_RUNNING)
357                 return 0;
358
359         /*
360          * The same comment as on the Alpha applies here, too ...
361          */
362         pc = thread_saved_pc(p);
363
364 #ifdef CONFIG_FRAME_POINTER
365         if (in_sched_functions(pc)) {
366                 unsigned long schedule_frame = (unsigned long)p->thread.sp;
367                 return ((unsigned long *)schedule_frame)[21];
368         }
369 #endif
370
371         return pc;
372 }