1
2
3
4
5
6
7
8
9
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/stddef.h>
18#include <linux/unistd.h>
19#include <linux/ptrace.h>
20#include <linux/user.h>
21#include <linux/interrupt.h>
22#include <linux/delay.h>
23#include <linux/reboot.h>
24#include <linux/percpu.h>
25#include <linux/err.h>
26#include <linux/fs.h>
27#include <linux/slab.h>
28#include <asm/uaccess.h>
29#include <asm/pgtable.h>
30#include <asm/system.h>
31#include <asm/io.h>
32#include <asm/processor.h>
33#include <asm/mmu_context.h>
34#include <asm/fpu.h>
35#include <asm/reset-regs.h>
36#include <asm/gdb-stub.h>
37#include "internal.h"
38
39
40
41
42void (*pm_idle)(void);
43EXPORT_SYMBOL(pm_idle);
44
45
46
47
48unsigned long thread_saved_pc(struct task_struct *tsk)
49{
50 return ((unsigned long *) tsk->thread.sp)[3];
51}
52
53
54
55
56void (*pm_power_off)(void);
57EXPORT_SYMBOL(pm_power_off);
58
59#if !defined(CONFIG_SMP) || defined(CONFIG_HOTPLUG_CPU)
60
61
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#else
73
74
75
76
77
78static inline void poll_idle(void)
79{
80 int oldval;
81
82 local_irq_enable();
83
84
85
86
87
88 oldval = test_and_clear_thread_flag(TIF_NEED_RESCHED);
89
90 if (!oldval) {
91 set_thread_flag(TIF_POLLING_NRFLAG);
92 while (!need_resched())
93 cpu_relax();
94 clear_thread_flag(TIF_POLLING_NRFLAG);
95 } else {
96 set_need_resched();
97 }
98}
99#endif
100
101
102
103
104
105
106
107void cpu_idle(void)
108{
109
110 for (;;) {
111 while (!need_resched()) {
112 void (*idle)(void);
113
114 smp_rmb();
115 idle = pm_idle;
116 if (!idle) {
117#if defined(CONFIG_SMP) && !defined(CONFIG_HOTPLUG_CPU)
118 idle = poll_idle;
119#else
120 idle = default_idle;
121#endif
122 }
123 idle();
124 }
125
126 preempt_enable_no_resched();
127 schedule();
128 preempt_disable();
129 }
130}
131
132void release_segments(struct mm_struct *mm)
133{
134}
135
136void machine_restart(char *cmd)
137{
138#ifdef CONFIG_KERNEL_DEBUGGER
139 gdbstub_exit(0);
140#endif
141
142#ifdef mn10300_unit_hard_reset
143 mn10300_unit_hard_reset();
144#else
145 mn10300_proc_hard_reset();
146#endif
147}
148
149void machine_halt(void)
150{
151#ifdef CONFIG_KERNEL_DEBUGGER
152 gdbstub_exit(0);
153#endif
154}
155
156void machine_power_off(void)
157{
158#ifdef CONFIG_KERNEL_DEBUGGER
159 gdbstub_exit(0);
160#endif
161}
162
163void show_regs(struct pt_regs *regs)
164{
165}
166
167
168
169
170int kernel_thread(int (*fn)(void *), void *arg, unsigned long flags)
171{
172 struct pt_regs regs;
173
174 memset(®s, 0, sizeof(regs));
175
176 regs.a2 = (unsigned long) fn;
177 regs.d2 = (unsigned long) arg;
178 regs.pc = (unsigned long) kernel_thread_helper;
179 local_save_flags(regs.epsw);
180 regs.epsw |= EPSW_IE | EPSW_IM_7;
181
182
183 return do_fork(flags | CLONE_VM | CLONE_UNTRACED, 0, ®s, 0,
184 NULL, NULL);
185}
186EXPORT_SYMBOL(kernel_thread);
187
188
189
190
191void exit_thread(void)
192{
193 exit_fpu();
194}
195
196void flush_thread(void)
197{
198 flush_fpu();
199}
200
201void release_thread(struct task_struct *dead_task)
202{
203}
204
205
206
207
208
209void copy_segments(struct task_struct *p, struct mm_struct *new_mm)
210{
211}
212
213
214
215
216
217void prepare_to_copy(struct task_struct *tsk)
218{
219 unlazy_fpu(tsk);
220}
221
222
223
224
225
226int copy_thread(unsigned long clone_flags,
227 unsigned long c_usp, unsigned long ustk_size,
228 struct task_struct *p, struct pt_regs *kregs)
229{
230 struct thread_info *ti = task_thread_info(p);
231 struct pt_regs *c_uregs, *c_kregs, *uregs;
232 unsigned long c_ksp;
233
234 uregs = current->thread.uregs;
235
236 c_ksp = (unsigned long) task_stack_page(p) + THREAD_SIZE;
237
238
239 c_ksp -= sizeof(struct pt_regs);
240 c_uregs = (struct pt_regs *) c_ksp;
241
242 p->thread.uregs = c_uregs;
243 *c_uregs = *uregs;
244 c_uregs->sp = c_usp;
245 c_uregs->epsw &= ~EPSW_FE;
246
247 c_ksp -= 12;
248
249
250 if (clone_flags & CLONE_SETTLS)
251 c_uregs->e2 = current_frame()->d3;
252
253
254 c_kregs = c_uregs;
255 if (kregs != uregs) {
256 c_ksp -= sizeof(struct pt_regs);
257 c_kregs = (struct pt_regs *) c_ksp;
258 *c_kregs = *kregs;
259 c_kregs->sp = c_usp;
260 c_kregs->next = c_uregs;
261#ifdef CONFIG_MN10300_CURRENT_IN_E2
262 c_kregs->e2 = (unsigned long) p;
263#endif
264
265 c_ksp -= 12;
266 }
267
268
269 ti->frame = c_kregs;
270 p->thread.a3 = (unsigned long) c_kregs;
271 p->thread.sp = c_ksp;
272 p->thread.pc = (unsigned long) ret_from_fork;
273 p->thread.wchan = (unsigned long) ret_from_fork;
274 p->thread.usp = c_usp;
275
276 return 0;
277}
278
279
280
281
282
283asmlinkage long sys_clone(unsigned long clone_flags, unsigned long newsp,
284 int __user *parent_tidptr, int __user *child_tidptr,
285 int __user *tlsptr)
286{
287 return do_fork(clone_flags, newsp ?: current_frame()->sp,
288 current_frame(), 0, parent_tidptr, child_tidptr);
289}
290
291asmlinkage long sys_fork(void)
292{
293 return do_fork(SIGCHLD, current_frame()->sp,
294 current_frame(), 0, NULL, NULL);
295}
296
297asmlinkage long sys_vfork(void)
298{
299 return do_fork(CLONE_VFORK | CLONE_VM | SIGCHLD, current_frame()->sp,
300 current_frame(), 0, NULL, NULL);
301}
302
303asmlinkage long sys_execve(const char __user *name,
304 const char __user *const __user *argv,
305 const char __user *const __user *envp)
306{
307 char *filename;
308 int error;
309
310 filename = getname(name);
311 error = PTR_ERR(filename);
312 if (IS_ERR(filename))
313 return error;
314 error = do_execve(filename, argv, envp, current_frame());
315 putname(filename);
316 return error;
317}
318
319unsigned long get_wchan(struct task_struct *p)
320{
321 return p->thread.wchan;
322}
323