MN10300: Delete idle_timestamp from irq_cpustat_t
[GitHub/mt8127/android_kernel_alcatel_ttab.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
60/*
61 * we use this if we don't have any better idle routine
62 */
63static void default_idle(void)
64{
65 local_irq_disable();
66 if (!need_resched())
67 safe_halt();
68 else
69 local_irq_enable();
70}
71
72/*
73 * the idle thread
74 * - there's no useful work to be done, so just try to conserve power and have
75 * a low exit latency (ie sit in a loop waiting for somebody to say that
76 * they'd like to reschedule)
77 */
78void cpu_idle(void)
79{
80 int cpu = smp_processor_id();
81
82 /* endless idle loop with no priority at all */
83 for (;;) {
84 while (!need_resched()) {
85 void (*idle)(void);
86
87 smp_rmb();
88 idle = pm_idle;
89 if (!idle)
90 idle = default_idle;
b920de1b
DH
91 idle();
92 }
93
94 preempt_enable_no_resched();
95 schedule();
96 preempt_disable();
97 }
98}
99
100void release_segments(struct mm_struct *mm)
101{
102}
103
104void machine_restart(char *cmd)
105{
106#ifdef CONFIG_GDBSTUB
107 gdbstub_exit(0);
108#endif
109
110#ifdef mn10300_unit_hard_reset
111 mn10300_unit_hard_reset();
112#else
113 mn10300_proc_hard_reset();
114#endif
115}
116
117void machine_halt(void)
118{
119#ifdef CONFIG_GDBSTUB
120 gdbstub_exit(0);
121#endif
122}
123
124void machine_power_off(void)
125{
126#ifdef CONFIG_GDBSTUB
127 gdbstub_exit(0);
128#endif
129}
130
131void show_regs(struct pt_regs *regs)
132{
133}
134
135/*
136 * create a kernel thread
137 */
138int kernel_thread(int (*fn)(void *), void *arg, unsigned long flags)
139{
140 struct pt_regs regs;
141
142 memset(&regs, 0, sizeof(regs));
143
144 regs.a2 = (unsigned long) fn;
145 regs.d2 = (unsigned long) arg;
146 regs.pc = (unsigned long) kernel_thread_helper;
147 local_save_flags(regs.epsw);
148 regs.epsw |= EPSW_IE | EPSW_IM_7;
149
150 /* Ok, create the new process.. */
151 return do_fork(flags | CLONE_VM | CLONE_UNTRACED, 0, &regs, 0,
152 NULL, NULL);
153}
7fc7228c 154EXPORT_SYMBOL(kernel_thread);
b920de1b
DH
155
156/*
157 * free current thread data structures etc..
158 */
159void exit_thread(void)
160{
161 exit_fpu();
162}
163
164void flush_thread(void)
165{
166 flush_fpu();
167}
168
169void release_thread(struct task_struct *dead_task)
170{
171}
172
173/*
174 * we do not have to muck with descriptors here, that is
175 * done in switch_mm() as needed.
176 */
177void copy_segments(struct task_struct *p, struct mm_struct *new_mm)
178{
179}
180
181/*
182 * this gets called before we allocate a new thread and copy the current task
183 * into it so that we can store lazy state into memory
184 */
185void prepare_to_copy(struct task_struct *tsk)
186{
187 unlazy_fpu(tsk);
188}
189
190/*
191 * set up the kernel stack for a new thread and copy arch-specific thread
192 * control information
193 */
6f2c55b8 194int copy_thread(unsigned long clone_flags,
b920de1b
DH
195 unsigned long c_usp, unsigned long ustk_size,
196 struct task_struct *p, struct pt_regs *kregs)
197{
198 struct pt_regs *c_uregs, *c_kregs, *uregs;
199 unsigned long c_ksp;
200
201 uregs = current->thread.uregs;
202
203 c_ksp = (unsigned long) task_stack_page(p) + THREAD_SIZE;
204
205 /* allocate the userspace exception frame and set it up */
206 c_ksp -= sizeof(struct pt_regs);
207 c_uregs = (struct pt_regs *) c_ksp;
208
209 p->thread.uregs = c_uregs;
210 *c_uregs = *uregs;
211 c_uregs->sp = c_usp;
212 c_uregs->epsw &= ~EPSW_FE; /* my FPU */
213
214 c_ksp -= 12; /* allocate function call ABI slack */
215
216 /* the new TLS pointer is passed in as arg #5 to sys_clone() */
217 if (clone_flags & CLONE_SETTLS)
218 c_uregs->e2 = __frame->d3;
219
220 /* set up the return kernel frame if called from kernel_thread() */
221 c_kregs = c_uregs;
222 if (kregs != uregs) {
223 c_ksp -= sizeof(struct pt_regs);
224 c_kregs = (struct pt_regs *) c_ksp;
225 *c_kregs = *kregs;
226 c_kregs->sp = c_usp;
227 c_kregs->next = c_uregs;
228#ifdef CONFIG_MN10300_CURRENT_IN_E2
229 c_kregs->e2 = (unsigned long) p; /* current */
230#endif
231
232 c_ksp -= 12; /* allocate function call ABI slack */
233 }
234
235 /* set up things up so the scheduler can start the new task */
236 p->thread.__frame = c_kregs;
237 p->thread.a3 = (unsigned long) c_kregs;
238 p->thread.sp = c_ksp;
239 p->thread.pc = (unsigned long) ret_from_fork;
240 p->thread.wchan = (unsigned long) ret_from_fork;
241 p->thread.usp = c_usp;
242
243 return 0;
244}
245
246/*
247 * clone a process
248 * - tlsptr is retrieved by copy_thread() from __frame->d3
249 */
250asmlinkage long sys_clone(unsigned long clone_flags, unsigned long newsp,
251 int __user *parent_tidptr, int __user *child_tidptr,
252 int __user *tlsptr)
253{
254 return do_fork(clone_flags, newsp ?: __frame->sp, __frame, 0,
255 parent_tidptr, child_tidptr);
256}
257
258asmlinkage long sys_fork(void)
259{
260 return do_fork(SIGCHLD, __frame->sp, __frame, 0, NULL, NULL);
261}
262
263asmlinkage long sys_vfork(void)
264{
265 return do_fork(CLONE_VFORK | CLONE_VM | SIGCHLD, __frame->sp, __frame,
266 0, NULL, NULL);
267}
268
c7887325 269asmlinkage long sys_execve(const char __user *name,
d7627467
DH
270 const char __user *const __user *argv,
271 const char __user *const __user *envp)
b920de1b
DH
272{
273 char *filename;
274 int error;
275
b920de1b
DH
276 filename = getname(name);
277 error = PTR_ERR(filename);
8c0daee2
JK
278 if (IS_ERR(filename))
279 return error;
280 error = do_execve(filename, argv, envp, __frame);
281 putname(filename);
b920de1b
DH
282 return error;
283}
284
285unsigned long get_wchan(struct task_struct *p)
286{
287 return p->thread.wchan;
288}