Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * linux/arch/m32r/kernel/process.c |
| 3 | * |
| 4 | * Copyright (c) 2001, 2002 Hiroyuki Kondo, Hirokazu Takata, |
| 5 | * Hitoshi Yamamoto |
| 6 | * Taken from sh version. |
| 7 | * Copyright (C) 1995 Linus Torvalds |
| 8 | * SuperH version: Copyright (C) 1999, 2000 Niibe Yutaka & Kaz Kojima |
| 9 | */ |
| 10 | |
| 11 | #undef DEBUG_PROCESS |
| 12 | #ifdef DEBUG_PROCESS |
| 13 | #define DPRINTK(fmt, args...) printk("%s:%d:%s: " fmt, __FILE__, __LINE__, \ |
Harvey Harrison | 80a914d | 2008-10-15 22:01:25 -0700 | [diff] [blame] | 14 | __func__, ##args) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | #else |
| 16 | #define DPRINTK(fmt, args...) |
| 17 | #endif |
| 18 | |
| 19 | /* |
| 20 | * This file handles the architecture-dependent parts of process handling.. |
| 21 | */ |
| 22 | |
| 23 | #include <linux/fs.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 24 | #include <linux/slab.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | #include <linux/module.h> |
| 26 | #include <linux/ptrace.h> |
| 27 | #include <linux/unistd.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | #include <linux/hardirq.h> |
Frederic Weisbecker | 48ae077 | 2012-08-22 17:27:34 +0200 | [diff] [blame] | 29 | #include <linux/rcupdate.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | |
| 31 | #include <asm/io.h> |
| 32 | #include <asm/uaccess.h> |
| 33 | #include <asm/mmu_context.h> |
| 34 | #include <asm/elf.h> |
| 35 | #include <asm/m32r.h> |
| 36 | |
| 37 | #include <linux/err.h> |
| 38 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | /* |
| 40 | * Return saved PC of a blocked thread. |
| 41 | */ |
| 42 | unsigned long thread_saved_pc(struct task_struct *tsk) |
| 43 | { |
| 44 | return tsk->thread.lr; |
| 45 | } |
| 46 | |
| 47 | /* |
| 48 | * Powermanagement idle function, if any.. |
| 49 | */ |
Adrian Bunk | 81e4807 | 2008-09-24 15:01:47 +0900 | [diff] [blame] | 50 | static void (*pm_idle)(void) = NULL; |
Eric W. Biederman | 5e38291 | 2006-01-08 01:03:46 -0800 | [diff] [blame] | 51 | |
| 52 | void (*pm_power_off)(void) = NULL; |
| 53 | EXPORT_SYMBOL(pm_power_off); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 55 | /* |
| 56 | * We use this is we don't have any better |
| 57 | * idle routine.. |
| 58 | */ |
Adrian Bunk | 81e4807 | 2008-09-24 15:01:47 +0900 | [diff] [blame] | 59 | static void default_idle(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 60 | { |
| 61 | /* M32R_FIXME: Please use "cpu_sleep" mode. */ |
| 62 | cpu_relax(); |
| 63 | } |
| 64 | |
| 65 | /* |
| 66 | * On SMP it's slightly faster (but much more power-consuming!) |
| 67 | * to poll the ->work.need_resched flag instead of waiting for the |
| 68 | * cross-CPU IPI to arrive. Use this option with caution. |
| 69 | */ |
| 70 | static void poll_idle (void) |
| 71 | { |
| 72 | /* M32R_FIXME */ |
| 73 | cpu_relax(); |
| 74 | } |
| 75 | |
| 76 | /* |
| 77 | * The idle thread. There's no useful work to be |
| 78 | * done, so just try to conserve power and have a |
| 79 | * low exit latency (ie sit in a loop waiting for |
| 80 | * somebody to say that they'd like to reschedule) |
| 81 | */ |
| 82 | void cpu_idle (void) |
| 83 | { |
| 84 | /* endless idle loop with no priority at all */ |
| 85 | while (1) { |
Frederic Weisbecker | 48ae077 | 2012-08-22 17:27:34 +0200 | [diff] [blame] | 86 | rcu_idle_enter(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 | while (!need_resched()) { |
| 88 | void (*idle)(void) = pm_idle; |
| 89 | |
| 90 | if (!idle) |
| 91 | idle = default_idle; |
| 92 | |
| 93 | idle(); |
| 94 | } |
Frederic Weisbecker | 48ae077 | 2012-08-22 17:27:34 +0200 | [diff] [blame] | 95 | rcu_idle_exit(); |
Thomas Gleixner | bd2f553 | 2011-03-21 12:33:18 +0100 | [diff] [blame] | 96 | schedule_preempt_disabled(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 97 | } |
| 98 | } |
| 99 | |
| 100 | void machine_restart(char *__unused) |
| 101 | { |
Hirokazu Takata | 0d34c86 | 2006-04-18 22:21:30 -0700 | [diff] [blame] | 102 | #if defined(CONFIG_PLAT_MAPPI3) |
| 103 | outw(1, (unsigned long)PLD_REBOOT); |
| 104 | #endif |
| 105 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 | printk("Please push reset button!\n"); |
| 107 | while (1) |
| 108 | cpu_relax(); |
| 109 | } |
| 110 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | void machine_halt(void) |
| 112 | { |
| 113 | printk("Please push reset button!\n"); |
| 114 | while (1) |
| 115 | cpu_relax(); |
| 116 | } |
| 117 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 | void machine_power_off(void) |
| 119 | { |
| 120 | /* M32R_FIXME */ |
| 121 | } |
| 122 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 123 | static int __init idle_setup (char *str) |
| 124 | { |
| 125 | if (!strncmp(str, "poll", 4)) { |
| 126 | printk("using poll in idle threads.\n"); |
| 127 | pm_idle = poll_idle; |
| 128 | } else if (!strncmp(str, "sleep", 4)) { |
| 129 | printk("using sleep in idle threads.\n"); |
| 130 | pm_idle = default_idle; |
| 131 | } |
| 132 | |
| 133 | return 1; |
| 134 | } |
| 135 | |
| 136 | __setup("idle=", idle_setup); |
| 137 | |
| 138 | void show_regs(struct pt_regs * regs) |
| 139 | { |
| 140 | printk("\n"); |
| 141 | printk("BPC[%08lx]:PSW[%08lx]:LR [%08lx]:FP [%08lx]\n", \ |
| 142 | regs->bpc, regs->psw, regs->lr, regs->fp); |
| 143 | printk("BBPC[%08lx]:BBPSW[%08lx]:SPU[%08lx]:SPI[%08lx]\n", \ |
| 144 | regs->bbpc, regs->bbpsw, regs->spu, regs->spi); |
| 145 | printk("R0 [%08lx]:R1 [%08lx]:R2 [%08lx]:R3 [%08lx]\n", \ |
| 146 | regs->r0, regs->r1, regs->r2, regs->r3); |
| 147 | printk("R4 [%08lx]:R5 [%08lx]:R6 [%08lx]:R7 [%08lx]\n", \ |
| 148 | regs->r4, regs->r5, regs->r6, regs->r7); |
| 149 | printk("R8 [%08lx]:R9 [%08lx]:R10[%08lx]:R11[%08lx]\n", \ |
| 150 | regs->r8, regs->r9, regs->r10, regs->r11); |
| 151 | printk("R12[%08lx]\n", \ |
| 152 | regs->r12); |
| 153 | |
| 154 | #if defined(CONFIG_ISA_M32R2) && defined(CONFIG_ISA_DSP_LEVEL2) |
| 155 | printk("ACC0H[%08lx]:ACC0L[%08lx]\n", \ |
| 156 | regs->acc0h, regs->acc0l); |
| 157 | printk("ACC1H[%08lx]:ACC1L[%08lx]\n", \ |
| 158 | regs->acc1h, regs->acc1l); |
| 159 | #elif defined(CONFIG_ISA_M32R2) || defined(CONFIG_ISA_M32R) |
| 160 | printk("ACCH[%08lx]:ACCL[%08lx]\n", \ |
Hirokazu Takata | 9674dcf | 2007-02-10 01:43:35 -0800 | [diff] [blame] | 161 | regs->acc0h, regs->acc0l); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 162 | #else |
| 163 | #error unknown isa configuration |
| 164 | #endif |
| 165 | } |
| 166 | |
| 167 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 168 | * Free current thread data structures etc.. |
| 169 | */ |
| 170 | void exit_thread(void) |
| 171 | { |
| 172 | /* Nothing to do. */ |
| 173 | DPRINTK("pid = %d\n", current->pid); |
| 174 | } |
| 175 | |
| 176 | void flush_thread(void) |
| 177 | { |
| 178 | DPRINTK("pid = %d\n", current->pid); |
| 179 | memset(¤t->thread.debug_trap, 0, sizeof(struct debug_trap)); |
| 180 | } |
| 181 | |
| 182 | void release_thread(struct task_struct *dead_task) |
| 183 | { |
| 184 | /* do nothing */ |
| 185 | DPRINTK("pid = %d\n", dead_task->pid); |
| 186 | } |
| 187 | |
| 188 | /* Fill in the fpu structure for a core dump.. */ |
| 189 | int dump_fpu(struct pt_regs *regs, elf_fpregset_t *fpu) |
| 190 | { |
| 191 | return 0; /* Task didn't use the fpu at all. */ |
| 192 | } |
| 193 | |
Alexey Dobriyan | 6f2c55b | 2009-04-02 16:56:59 -0700 | [diff] [blame] | 194 | int copy_thread(unsigned long clone_flags, unsigned long spu, |
Al Viro | ea4a1da | 2012-10-15 16:26:03 -0400 | [diff] [blame^] | 195 | unsigned long arg, struct task_struct *tsk, struct pt_regs *regs) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 196 | { |
Al Viro | 6c3559fc | 2006-01-12 01:05:52 -0800 | [diff] [blame] | 197 | struct pt_regs *childregs = task_pt_regs(tsk); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 198 | extern void ret_from_fork(void); |
Al Viro | ea4a1da | 2012-10-15 16:26:03 -0400 | [diff] [blame^] | 199 | extern void ret_from_kernel_thread(void); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 200 | |
Al Viro | ea4a1da | 2012-10-15 16:26:03 -0400 | [diff] [blame^] | 201 | if (unlikely(tsk->flags & PF_KTHREAD)) { |
| 202 | memset(childregs, 0, sizeof(struct pt_regs)); |
| 203 | childregs->psw = M32R_PSW_BIE; |
| 204 | childregs->r1 = spu; /* fn */ |
| 205 | childregs->r0 = arg; |
| 206 | tsk->thread.lr = (unsigned long)ret_from_kernel_thread; |
| 207 | } else { |
| 208 | /* Copy registers */ |
| 209 | *childregs = *regs; |
| 210 | childregs->spu = spu; |
| 211 | childregs->r0 = 0; /* Child gets zero as return value */ |
| 212 | tsk->thread.lr = (unsigned long)ret_from_fork; |
| 213 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 214 | tsk->thread.sp = (unsigned long)childregs; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 215 | |
| 216 | return 0; |
| 217 | } |
| 218 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 219 | asmlinkage int sys_fork(unsigned long r0, unsigned long r1, unsigned long r2, |
| 220 | unsigned long r3, unsigned long r4, unsigned long r5, unsigned long r6, |
| 221 | struct pt_regs regs) |
| 222 | { |
| 223 | #ifdef CONFIG_MMU |
| 224 | return do_fork(SIGCHLD, regs.spu, ®s, 0, NULL, NULL); |
| 225 | #else |
| 226 | return -EINVAL; |
| 227 | #endif /* CONFIG_MMU */ |
| 228 | } |
| 229 | |
| 230 | asmlinkage int sys_clone(unsigned long clone_flags, unsigned long newsp, |
| 231 | unsigned long parent_tidptr, |
| 232 | unsigned long child_tidptr, |
| 233 | unsigned long r4, unsigned long r5, unsigned long r6, |
| 234 | struct pt_regs regs) |
| 235 | { |
| 236 | if (!newsp) |
| 237 | newsp = regs.spu; |
| 238 | |
| 239 | return do_fork(clone_flags, newsp, ®s, 0, |
| 240 | (int __user *)parent_tidptr, (int __user *)child_tidptr); |
| 241 | } |
| 242 | |
| 243 | /* |
| 244 | * This is trivial, and on the face of it looks like it |
| 245 | * could equally well be done in user mode. |
| 246 | * |
| 247 | * Not so, for quite unobvious reasons - register pressure. |
| 248 | * In user mode vfork() cannot have a stack frame, and if |
| 249 | * done by calling the "clone()" system call directly, you |
| 250 | * do not have enough call-clobbered registers to hold all |
| 251 | * the information you need. |
| 252 | */ |
| 253 | asmlinkage int sys_vfork(unsigned long r0, unsigned long r1, unsigned long r2, |
| 254 | unsigned long r3, unsigned long r4, unsigned long r5, unsigned long r6, |
| 255 | struct pt_regs regs) |
| 256 | { |
| 257 | return do_fork(CLONE_VFORK | CLONE_VM | SIGCHLD, regs.spu, ®s, 0, |
| 258 | NULL, NULL); |
| 259 | } |
| 260 | |
| 261 | /* |
| 262 | * sys_execve() executes a new program. |
| 263 | */ |
David Howells | c788732 | 2010-08-11 11:26:22 +0100 | [diff] [blame] | 264 | asmlinkage int sys_execve(const char __user *ufilename, |
David Howells | d762746 | 2010-08-17 23:52:56 +0100 | [diff] [blame] | 265 | const char __user *const __user *uargv, |
| 266 | const char __user *const __user *uenvp, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 267 | unsigned long r3, unsigned long r4, unsigned long r5, |
| 268 | unsigned long r6, struct pt_regs regs) |
| 269 | { |
| 270 | int error; |
Jeff Layton | 91a27b2 | 2012-10-10 15:25:28 -0400 | [diff] [blame] | 271 | struct filename *filename; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 272 | |
| 273 | filename = getname(ufilename); |
| 274 | error = PTR_ERR(filename); |
| 275 | if (IS_ERR(filename)) |
| 276 | goto out; |
| 277 | |
Jeff Layton | 91a27b2 | 2012-10-10 15:25:28 -0400 | [diff] [blame] | 278 | error = do_execve(filename->name, uargv, uenvp, ®s); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 279 | putname(filename); |
| 280 | out: |
| 281 | return error; |
| 282 | } |
| 283 | |
| 284 | /* |
| 285 | * These bracket the sleeping functions.. |
| 286 | */ |
| 287 | #define first_sched ((unsigned long) scheduling_functions_start_here) |
| 288 | #define last_sched ((unsigned long) scheduling_functions_end_here) |
| 289 | |
| 290 | unsigned long get_wchan(struct task_struct *p) |
| 291 | { |
| 292 | /* M32R_FIXME */ |
| 293 | return (0); |
| 294 | } |