David Howells | b920de1 | 2008-02-08 04:19:31 -0800 | [diff] [blame] | 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> |
David Howells | b920de1 | 2008-02-08 04:19:31 -0800 | [diff] [blame] | 21 | #include <linux/user.h> |
David Howells | b920de1 | 2008-02-08 04:19:31 -0800 | [diff] [blame] | 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> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 28 | #include <linux/slab.h> |
David Howells | b920de1 | 2008-02-08 04:19:31 -0800 | [diff] [blame] | 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 | */ |
| 43 | void (*pm_idle)(void); |
| 44 | EXPORT_SYMBOL(pm_idle); |
| 45 | |
| 46 | /* |
| 47 | * return saved PC of a blocked thread. |
| 48 | */ |
| 49 | unsigned 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 | */ |
| 57 | void (*pm_power_off)(void); |
| 58 | EXPORT_SYMBOL(pm_power_off); |
| 59 | |
Akira Takeuchi | 368dd5a | 2010-10-27 17:28:55 +0100 | [diff] [blame] | 60 | #if !defined(CONFIG_SMP) || defined(CONFIG_HOTPLUG_CPU) |
David Howells | b920de1 | 2008-02-08 04:19:31 -0800 | [diff] [blame] | 61 | /* |
| 62 | * we use this if we don't have any better idle routine |
| 63 | */ |
| 64 | static void default_idle(void) |
| 65 | { |
| 66 | local_irq_disable(); |
| 67 | if (!need_resched()) |
| 68 | safe_halt(); |
| 69 | else |
| 70 | local_irq_enable(); |
| 71 | } |
| 72 | |
Akira Takeuchi | 368dd5a | 2010-10-27 17:28:55 +0100 | [diff] [blame] | 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 | */ |
| 79 | static 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 | |
David Howells | b920de1 | 2008-02-08 04:19:31 -0800 | [diff] [blame] | 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 | */ |
| 108 | void cpu_idle(void) |
| 109 | { |
David Howells | b920de1 | 2008-02-08 04:19:31 -0800 | [diff] [blame] | 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; |
Akira Takeuchi | 368dd5a | 2010-10-27 17:28:55 +0100 | [diff] [blame] | 117 | if (!idle) { |
| 118 | #if defined(CONFIG_SMP) && !defined(CONFIG_HOTPLUG_CPU) |
| 119 | idle = poll_idle; |
| 120 | #else /* CONFIG_SMP && !CONFIG_HOTPLUG_CPU */ |
David Howells | b920de1 | 2008-02-08 04:19:31 -0800 | [diff] [blame] | 121 | idle = default_idle; |
Akira Takeuchi | 368dd5a | 2010-10-27 17:28:55 +0100 | [diff] [blame] | 122 | #endif /* CONFIG_SMP && !CONFIG_HOTPLUG_CPU */ |
| 123 | } |
David Howells | b920de1 | 2008-02-08 04:19:31 -0800 | [diff] [blame] | 124 | idle(); |
| 125 | } |
| 126 | |
| 127 | preempt_enable_no_resched(); |
| 128 | schedule(); |
| 129 | preempt_disable(); |
| 130 | } |
| 131 | } |
| 132 | |
| 133 | void release_segments(struct mm_struct *mm) |
| 134 | { |
| 135 | } |
| 136 | |
| 137 | void 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 | |
| 150 | void machine_halt(void) |
| 151 | { |
| 152 | #ifdef CONFIG_GDBSTUB |
| 153 | gdbstub_exit(0); |
| 154 | #endif |
| 155 | } |
| 156 | |
| 157 | void machine_power_off(void) |
| 158 | { |
| 159 | #ifdef CONFIG_GDBSTUB |
| 160 | gdbstub_exit(0); |
| 161 | #endif |
| 162 | } |
| 163 | |
| 164 | void show_regs(struct pt_regs *regs) |
| 165 | { |
| 166 | } |
| 167 | |
| 168 | /* |
| 169 | * create a kernel thread |
| 170 | */ |
| 171 | int kernel_thread(int (*fn)(void *), void *arg, unsigned long flags) |
| 172 | { |
| 173 | struct pt_regs regs; |
| 174 | |
| 175 | memset(®s, 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, ®s, 0, |
| 185 | NULL, NULL); |
| 186 | } |
David Howells | 7fc7228 | 2008-07-04 09:59:46 -0700 | [diff] [blame] | 187 | EXPORT_SYMBOL(kernel_thread); |
David Howells | b920de1 | 2008-02-08 04:19:31 -0800 | [diff] [blame] | 188 | |
| 189 | /* |
| 190 | * free current thread data structures etc.. |
| 191 | */ |
| 192 | void exit_thread(void) |
| 193 | { |
| 194 | exit_fpu(); |
| 195 | } |
| 196 | |
| 197 | void flush_thread(void) |
| 198 | { |
| 199 | flush_fpu(); |
| 200 | } |
| 201 | |
| 202 | void 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 | */ |
| 210 | void 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 | */ |
| 218 | void 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 | */ |
Alexey Dobriyan | 6f2c55b | 2009-04-02 16:56:59 -0700 | [diff] [blame] | 227 | int copy_thread(unsigned long clone_flags, |
David Howells | b920de1 | 2008-02-08 04:19:31 -0800 | [diff] [blame] | 228 | unsigned long c_usp, unsigned long ustk_size, |
| 229 | struct task_struct *p, struct pt_regs *kregs) |
| 230 | { |
David Howells | 7c7fcf7 | 2010-10-27 17:29:01 +0100 | [diff] [blame^] | 231 | struct thread_info *ti = task_thread_info(p); |
David Howells | b920de1 | 2008-02-08 04:19:31 -0800 | [diff] [blame] | 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) |
David Howells | 7c7fcf7 | 2010-10-27 17:29:01 +0100 | [diff] [blame^] | 252 | c_uregs->e2 = current_frame()->d3; |
David Howells | b920de1 | 2008-02-08 04:19:31 -0800 | [diff] [blame] | 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 */ |
David Howells | 7c7fcf7 | 2010-10-27 17:29:01 +0100 | [diff] [blame^] | 270 | ti->frame = c_kregs; |
David Howells | b920de1 | 2008-02-08 04:19:31 -0800 | [diff] [blame] | 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 |
David Howells | 7c7fcf7 | 2010-10-27 17:29:01 +0100 | [diff] [blame^] | 282 | * - tlsptr is retrieved by copy_thread() from current_frame()->d3 |
David Howells | b920de1 | 2008-02-08 04:19:31 -0800 | [diff] [blame] | 283 | */ |
| 284 | asmlinkage long sys_clone(unsigned long clone_flags, unsigned long newsp, |
| 285 | int __user *parent_tidptr, int __user *child_tidptr, |
| 286 | int __user *tlsptr) |
| 287 | { |
David Howells | 7c7fcf7 | 2010-10-27 17:29:01 +0100 | [diff] [blame^] | 288 | return do_fork(clone_flags, newsp ?: current_frame()->sp, |
| 289 | current_frame(), 0, parent_tidptr, child_tidptr); |
David Howells | b920de1 | 2008-02-08 04:19:31 -0800 | [diff] [blame] | 290 | } |
| 291 | |
| 292 | asmlinkage long sys_fork(void) |
| 293 | { |
David Howells | 7c7fcf7 | 2010-10-27 17:29:01 +0100 | [diff] [blame^] | 294 | return do_fork(SIGCHLD, current_frame()->sp, |
| 295 | current_frame(), 0, NULL, NULL); |
David Howells | b920de1 | 2008-02-08 04:19:31 -0800 | [diff] [blame] | 296 | } |
| 297 | |
| 298 | asmlinkage long sys_vfork(void) |
| 299 | { |
David Howells | 7c7fcf7 | 2010-10-27 17:29:01 +0100 | [diff] [blame^] | 300 | return do_fork(CLONE_VFORK | CLONE_VM | SIGCHLD, current_frame()->sp, |
| 301 | current_frame(), 0, NULL, NULL); |
David Howells | b920de1 | 2008-02-08 04:19:31 -0800 | [diff] [blame] | 302 | } |
| 303 | |
David Howells | c788732 | 2010-08-11 11:26:22 +0100 | [diff] [blame] | 304 | asmlinkage long sys_execve(const char __user *name, |
David Howells | d762746 | 2010-08-17 23:52:56 +0100 | [diff] [blame] | 305 | const char __user *const __user *argv, |
| 306 | const char __user *const __user *envp) |
David Howells | b920de1 | 2008-02-08 04:19:31 -0800 | [diff] [blame] | 307 | { |
| 308 | char *filename; |
| 309 | int error; |
| 310 | |
David Howells | b920de1 | 2008-02-08 04:19:31 -0800 | [diff] [blame] | 311 | filename = getname(name); |
| 312 | error = PTR_ERR(filename); |
John Kacur | 8c0daee | 2009-10-12 23:41:55 +0200 | [diff] [blame] | 313 | if (IS_ERR(filename)) |
| 314 | return error; |
David Howells | 7c7fcf7 | 2010-10-27 17:29:01 +0100 | [diff] [blame^] | 315 | error = do_execve(filename, argv, envp, current_frame()); |
John Kacur | 8c0daee | 2009-10-12 23:41:55 +0200 | [diff] [blame] | 316 | putname(filename); |
David Howells | b920de1 | 2008-02-08 04:19:31 -0800 | [diff] [blame] | 317 | return error; |
| 318 | } |
| 319 | |
| 320 | unsigned long get_wchan(struct task_struct *p) |
| 321 | { |
| 322 | return p->thread.wchan; |
| 323 | } |