MN10300: Save frame pointer in thread_info struct rather than global var
[deliverable/linux.git] / arch / mn10300 / kernel / process.c
CommitLineData
b920de1b
DH
1/* MN10300 Process handling code
2 *
3 * Copyright (C) 2007 Red Hat, Inc. All Rights Reserved.
4 * Written by David Howells (dhowells@redhat.com)
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public Licence
8 * as published by the Free Software Foundation; either version
9 * 2 of the Licence, or (at your option) any later version.
10 */
11#include <linux/module.h>
12#include <linux/errno.h>
13#include <linux/sched.h>
14#include <linux/kernel.h>
15#include <linux/mm.h>
16#include <linux/smp.h>
17#include <linux/smp_lock.h>
18#include <linux/stddef.h>
19#include <linux/unistd.h>
20#include <linux/ptrace.h>
b920de1b 21#include <linux/user.h>
b920de1b
DH
22#include <linux/interrupt.h>
23#include <linux/delay.h>
24#include <linux/reboot.h>
25#include <linux/percpu.h>
26#include <linux/err.h>
27#include <linux/fs.h>
5a0e3ad6 28#include <linux/slab.h>
b920de1b
DH
29#include <asm/uaccess.h>
30#include <asm/pgtable.h>
31#include <asm/system.h>
32#include <asm/io.h>
33#include <asm/processor.h>
34#include <asm/mmu_context.h>
35#include <asm/fpu.h>
36#include <asm/reset-regs.h>
37#include <asm/gdb-stub.h>
38#include "internal.h"
39
40/*
41 * power management idle function, if any..
42 */
43void (*pm_idle)(void);
44EXPORT_SYMBOL(pm_idle);
45
46/*
47 * return saved PC of a blocked thread.
48 */
49unsigned long thread_saved_pc(struct task_struct *tsk)
50{
51 return ((unsigned long *) tsk->thread.sp)[3];
52}
53
54/*
55 * power off function, if any
56 */
57void (*pm_power_off)(void);
58EXPORT_SYMBOL(pm_power_off);
59
368dd5ac 60#if !defined(CONFIG_SMP) || defined(CONFIG_HOTPLUG_CPU)
b920de1b
DH
61/*
62 * we use this if we don't have any better idle routine
63 */
64static void default_idle(void)
65{
66 local_irq_disable();
67 if (!need_resched())
68 safe_halt();
69 else
70 local_irq_enable();
71}
72
368dd5ac
AT
73#else /* !CONFIG_SMP || CONFIG_HOTPLUG_CPU */
74/*
75 * On SMP it's slightly faster (but much more power-consuming!)
76 * to poll the ->work.need_resched flag instead of waiting for the
77 * cross-CPU IPI to arrive. Use this option with caution.
78 */
79static inline void poll_idle(void)
80{
81 int oldval;
82
83 local_irq_enable();
84
85 /*
86 * Deal with another CPU just having chosen a thread to
87 * run here:
88 */
89 oldval = test_and_clear_thread_flag(TIF_NEED_RESCHED);
90
91 if (!oldval) {
92 set_thread_flag(TIF_POLLING_NRFLAG);
93 while (!need_resched())
94 cpu_relax();
95 clear_thread_flag(TIF_POLLING_NRFLAG);
96 } else {
97 set_need_resched();
98 }
99}
100#endif /* !CONFIG_SMP || CONFIG_HOTPLUG_CPU */
101
b920de1b
DH
102/*
103 * the idle thread
104 * - there's no useful work to be done, so just try to conserve power and have
105 * a low exit latency (ie sit in a loop waiting for somebody to say that
106 * they'd like to reschedule)
107 */
108void cpu_idle(void)
109{
b920de1b
DH
110 /* endless idle loop with no priority at all */
111 for (;;) {
112 while (!need_resched()) {
113 void (*idle)(void);
114
115 smp_rmb();
116 idle = pm_idle;
368dd5ac
AT
117 if (!idle) {
118#if defined(CONFIG_SMP) && !defined(CONFIG_HOTPLUG_CPU)
119 idle = poll_idle;
120#else /* CONFIG_SMP && !CONFIG_HOTPLUG_CPU */
b920de1b 121 idle = default_idle;
368dd5ac
AT
122#endif /* CONFIG_SMP && !CONFIG_HOTPLUG_CPU */
123 }
b920de1b
DH
124 idle();
125 }
126
127 preempt_enable_no_resched();
128 schedule();
129 preempt_disable();
130 }
131}
132
133void release_segments(struct mm_struct *mm)
134{
135}
136
137void machine_restart(char *cmd)
138{
139#ifdef CONFIG_GDBSTUB
140 gdbstub_exit(0);
141#endif
142
143#ifdef mn10300_unit_hard_reset
144 mn10300_unit_hard_reset();
145#else
146 mn10300_proc_hard_reset();
147#endif
148}
149
150void machine_halt(void)
151{
152#ifdef CONFIG_GDBSTUB
153 gdbstub_exit(0);
154#endif
155}
156
157void machine_power_off(void)
158{
159#ifdef CONFIG_GDBSTUB
160 gdbstub_exit(0);
161#endif
162}
163
164void show_regs(struct pt_regs *regs)
165{
166}
167
168/*
169 * create a kernel thread
170 */
171int kernel_thread(int (*fn)(void *), void *arg, unsigned long flags)
172{
173 struct pt_regs regs;
174
175 memset(&regs, 0, sizeof(regs));
176
177 regs.a2 = (unsigned long) fn;
178 regs.d2 = (unsigned long) arg;
179 regs.pc = (unsigned long) kernel_thread_helper;
180 local_save_flags(regs.epsw);
181 regs.epsw |= EPSW_IE | EPSW_IM_7;
182
183 /* Ok, create the new process.. */
184 return do_fork(flags | CLONE_VM | CLONE_UNTRACED, 0, &regs, 0,
185 NULL, NULL);
186}
7fc7228c 187EXPORT_SYMBOL(kernel_thread);
b920de1b
DH
188
189/*
190 * free current thread data structures etc..
191 */
192void exit_thread(void)
193{
194 exit_fpu();
195}
196
197void flush_thread(void)
198{
199 flush_fpu();
200}
201
202void release_thread(struct task_struct *dead_task)
203{
204}
205
206/*
207 * we do not have to muck with descriptors here, that is
208 * done in switch_mm() as needed.
209 */
210void copy_segments(struct task_struct *p, struct mm_struct *new_mm)
211{
212}
213
214/*
215 * this gets called before we allocate a new thread and copy the current task
216 * into it so that we can store lazy state into memory
217 */
218void prepare_to_copy(struct task_struct *tsk)
219{
220 unlazy_fpu(tsk);
221}
222
223/*
224 * set up the kernel stack for a new thread and copy arch-specific thread
225 * control information
226 */
6f2c55b8 227int copy_thread(unsigned long clone_flags,
b920de1b
DH
228 unsigned long c_usp, unsigned long ustk_size,
229 struct task_struct *p, struct pt_regs *kregs)
230{
7c7fcf76 231 struct thread_info *ti = task_thread_info(p);
b920de1b
DH
232 struct pt_regs *c_uregs, *c_kregs, *uregs;
233 unsigned long c_ksp;
234
235 uregs = current->thread.uregs;
236
237 c_ksp = (unsigned long) task_stack_page(p) + THREAD_SIZE;
238
239 /* allocate the userspace exception frame and set it up */
240 c_ksp -= sizeof(struct pt_regs);
241 c_uregs = (struct pt_regs *) c_ksp;
242
243 p->thread.uregs = c_uregs;
244 *c_uregs = *uregs;
245 c_uregs->sp = c_usp;
246 c_uregs->epsw &= ~EPSW_FE; /* my FPU */
247
248 c_ksp -= 12; /* allocate function call ABI slack */
249
250 /* the new TLS pointer is passed in as arg #5 to sys_clone() */
251 if (clone_flags & CLONE_SETTLS)
7c7fcf76 252 c_uregs->e2 = current_frame()->d3;
b920de1b
DH
253
254 /* set up the return kernel frame if called from kernel_thread() */
255 c_kregs = c_uregs;
256 if (kregs != uregs) {
257 c_ksp -= sizeof(struct pt_regs);
258 c_kregs = (struct pt_regs *) c_ksp;
259 *c_kregs = *kregs;
260 c_kregs->sp = c_usp;
261 c_kregs->next = c_uregs;
262#ifdef CONFIG_MN10300_CURRENT_IN_E2
263 c_kregs->e2 = (unsigned long) p; /* current */
264#endif
265
266 c_ksp -= 12; /* allocate function call ABI slack */
267 }
268
269 /* set up things up so the scheduler can start the new task */
7c7fcf76 270 ti->frame = c_kregs;
b920de1b
DH
271 p->thread.a3 = (unsigned long) c_kregs;
272 p->thread.sp = c_ksp;
273 p->thread.pc = (unsigned long) ret_from_fork;
274 p->thread.wchan = (unsigned long) ret_from_fork;
275 p->thread.usp = c_usp;
276
277 return 0;
278}
279
280/*
281 * clone a process
7c7fcf76 282 * - tlsptr is retrieved by copy_thread() from current_frame()->d3
b920de1b
DH
283 */
284asmlinkage long sys_clone(unsigned long clone_flags, unsigned long newsp,
285 int __user *parent_tidptr, int __user *child_tidptr,
286 int __user *tlsptr)
287{
7c7fcf76
DH
288 return do_fork(clone_flags, newsp ?: current_frame()->sp,
289 current_frame(), 0, parent_tidptr, child_tidptr);
b920de1b
DH
290}
291
292asmlinkage long sys_fork(void)
293{
7c7fcf76
DH
294 return do_fork(SIGCHLD, current_frame()->sp,
295 current_frame(), 0, NULL, NULL);
b920de1b
DH
296}
297
298asmlinkage long sys_vfork(void)
299{
7c7fcf76
DH
300 return do_fork(CLONE_VFORK | CLONE_VM | SIGCHLD, current_frame()->sp,
301 current_frame(), 0, NULL, NULL);
b920de1b
DH
302}
303
c7887325 304asmlinkage long sys_execve(const char __user *name,
d7627467
DH
305 const char __user *const __user *argv,
306 const char __user *const __user *envp)
b920de1b
DH
307{
308 char *filename;
309 int error;
310
b920de1b
DH
311 filename = getname(name);
312 error = PTR_ERR(filename);
8c0daee2
JK
313 if (IS_ERR(filename))
314 return error;
7c7fcf76 315 error = do_execve(filename, argv, envp, current_frame());
8c0daee2 316 putname(filename);
b920de1b
DH
317 return error;
318}
319
320unsigned long get_wchan(struct task_struct *p)
321{
322 return p->thread.wchan;
323}
This page took 0.21851 seconds and 5 git commands to generate.