Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * linux/arch/h8300/kernel/process.c |
| 3 | * |
| 4 | * Yoshinori Sato <ysato@users.sourceforge.jp> |
| 5 | * |
| 6 | * Based on: |
| 7 | * |
| 8 | * linux/arch/m68knommu/kernel/process.c |
| 9 | * |
| 10 | * Copyright (C) 1998 D. Jeff Dionne <jeff@ryeham.ee.ryerson.ca>, |
| 11 | * Kenneth Albanowski <kjahds@kjahds.com>, |
| 12 | * The Silver Hammer Group, Ltd. |
| 13 | * |
| 14 | * linux/arch/m68k/kernel/process.c |
| 15 | * |
| 16 | * Copyright (C) 1995 Hamish Macdonald |
| 17 | * |
| 18 | * 68060 fixes by Jesper Skov |
| 19 | */ |
| 20 | |
| 21 | /* |
| 22 | * This file handles the architecture-dependent parts of process handling.. |
| 23 | */ |
| 24 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | #include <linux/errno.h> |
| 26 | #include <linux/module.h> |
| 27 | #include <linux/sched.h> |
| 28 | #include <linux/kernel.h> |
| 29 | #include <linux/mm.h> |
| 30 | #include <linux/smp.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | #include <linux/stddef.h> |
| 32 | #include <linux/unistd.h> |
| 33 | #include <linux/ptrace.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | #include <linux/user.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | #include <linux/interrupt.h> |
| 36 | #include <linux/reboot.h> |
Yoshinori Sato | 0cd82ef | 2007-08-22 14:01:24 -0700 | [diff] [blame] | 37 | #include <linux/fs.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 38 | #include <linux/slab.h> |
Frederic Weisbecker | b2fe143 | 2012-08-22 17:27:34 +0200 | [diff] [blame] | 39 | #include <linux/rcupdate.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | |
| 41 | #include <asm/uaccess.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | #include <asm/traps.h> |
| 43 | #include <asm/setup.h> |
| 44 | #include <asm/pgtable.h> |
| 45 | |
Adrian Bunk | 47f3fc9 | 2006-03-06 15:42:47 -0800 | [diff] [blame] | 46 | void (*pm_power_off)(void) = NULL; |
| 47 | EXPORT_SYMBOL(pm_power_off); |
| 48 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | asmlinkage void ret_from_fork(void); |
Al Viro | 557e199 | 2012-10-10 13:17:31 -0400 | [diff] [blame^] | 50 | asmlinkage void ret_from_kernel_thread(void); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | |
| 52 | /* |
| 53 | * The idle loop on an H8/300.. |
| 54 | */ |
| 55 | #if !defined(CONFIG_H8300H_SIM) && !defined(CONFIG_H8S_SIM) |
Adrian Bunk | cdb0452 | 2006-03-24 03:15:57 -0800 | [diff] [blame] | 56 | static void default_idle(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | { |
Nick Piggin | 5bfb5d6 | 2005-11-08 21:39:01 -0800 | [diff] [blame] | 58 | local_irq_disable(); |
| 59 | if (!need_resched()) { |
| 60 | local_irq_enable(); |
| 61 | /* XXX: race here! What if need_resched() gets set now? */ |
| 62 | __asm__("sleep"); |
| 63 | } else |
| 64 | local_irq_enable(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 | } |
| 66 | #else |
Adrian Bunk | cdb0452 | 2006-03-24 03:15:57 -0800 | [diff] [blame] | 67 | static void default_idle(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | { |
Nick Piggin | 5bfb5d6 | 2005-11-08 21:39:01 -0800 | [diff] [blame] | 69 | cpu_relax(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 | } |
| 71 | #endif |
| 72 | void (*idle)(void) = default_idle; |
| 73 | |
| 74 | /* |
| 75 | * The idle thread. There's no useful work to be |
| 76 | * done, so just try to conserve power and have a |
| 77 | * low exit latency (ie sit in a loop waiting for |
| 78 | * somebody to say that they'd like to reschedule) |
| 79 | */ |
| 80 | void cpu_idle(void) |
| 81 | { |
Nick Piggin | 5bfb5d6 | 2005-11-08 21:39:01 -0800 | [diff] [blame] | 82 | while (1) { |
Frederic Weisbecker | b2fe143 | 2012-08-22 17:27:34 +0200 | [diff] [blame] | 83 | rcu_idle_enter(); |
Nick Piggin | 5bfb5d6 | 2005-11-08 21:39:01 -0800 | [diff] [blame] | 84 | while (!need_resched()) |
| 85 | idle(); |
Frederic Weisbecker | b2fe143 | 2012-08-22 17:27:34 +0200 | [diff] [blame] | 86 | rcu_idle_exit(); |
Thomas Gleixner | bd2f553 | 2011-03-21 12:33:18 +0100 | [diff] [blame] | 87 | schedule_preempt_disabled(); |
Nick Piggin | 5bfb5d6 | 2005-11-08 21:39:01 -0800 | [diff] [blame] | 88 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 89 | } |
| 90 | |
| 91 | void machine_restart(char * __unused) |
| 92 | { |
| 93 | local_irq_disable(); |
| 94 | __asm__("jmp @@0"); |
| 95 | } |
| 96 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 97 | void machine_halt(void) |
| 98 | { |
| 99 | local_irq_disable(); |
| 100 | __asm__("sleep"); |
| 101 | for (;;); |
| 102 | } |
| 103 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 104 | void machine_power_off(void) |
| 105 | { |
| 106 | local_irq_disable(); |
| 107 | __asm__("sleep"); |
| 108 | for (;;); |
| 109 | } |
| 110 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | void show_regs(struct pt_regs * regs) |
| 112 | { |
| 113 | printk("\nPC: %08lx Status: %02x", |
| 114 | regs->pc, regs->ccr); |
| 115 | printk("\nORIG_ER0: %08lx ER0: %08lx ER1: %08lx", |
| 116 | regs->orig_er0, regs->er0, regs->er1); |
| 117 | printk("\nER2: %08lx ER3: %08lx ER4: %08lx ER5: %08lx", |
| 118 | regs->er2, regs->er3, regs->er4, regs->er5); |
| 119 | printk("\nER6' %08lx ",regs->er6); |
| 120 | if (user_mode(regs)) |
| 121 | printk("USP: %08lx\n", rdusp()); |
| 122 | else |
| 123 | printk("\n"); |
| 124 | } |
| 125 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 126 | void flush_thread(void) |
| 127 | { |
| 128 | } |
| 129 | |
| 130 | /* |
| 131 | * "h8300_fork()".. By the time we get here, the |
| 132 | * non-volatile registers have also been saved on the |
| 133 | * stack. We do some ugly pointer stuff here.. (see |
| 134 | * also copy_thread) |
| 135 | */ |
| 136 | |
| 137 | asmlinkage int h8300_fork(struct pt_regs *regs) |
| 138 | { |
| 139 | return -EINVAL; |
| 140 | } |
| 141 | |
| 142 | asmlinkage int h8300_vfork(struct pt_regs *regs) |
| 143 | { |
| 144 | return do_fork(CLONE_VFORK | CLONE_VM | SIGCHLD, rdusp(), regs, 0, NULL, NULL); |
| 145 | } |
| 146 | |
| 147 | asmlinkage int h8300_clone(struct pt_regs *regs) |
| 148 | { |
| 149 | unsigned long clone_flags; |
| 150 | unsigned long newsp; |
| 151 | |
| 152 | /* syscall2 puts clone_flags in er1 and usp in er2 */ |
| 153 | clone_flags = regs->er1; |
| 154 | newsp = regs->er2; |
| 155 | if (!newsp) |
| 156 | newsp = rdusp(); |
| 157 | return do_fork(clone_flags, newsp, regs, 0, NULL, NULL); |
| 158 | |
| 159 | } |
| 160 | |
Alexey Dobriyan | 6f2c55b | 2009-04-02 16:56:59 -0700 | [diff] [blame] | 161 | int copy_thread(unsigned long clone_flags, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 162 | unsigned long usp, unsigned long topstk, |
| 163 | struct task_struct * p, struct pt_regs * regs) |
| 164 | { |
| 165 | struct pt_regs * childregs; |
| 166 | |
Al Viro | 68f8b1f | 2006-01-12 01:05:55 -0800 | [diff] [blame] | 167 | childregs = (struct pt_regs *) (THREAD_SIZE + task_stack_page(p)) - 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 168 | |
Al Viro | 557e199 | 2012-10-10 13:17:31 -0400 | [diff] [blame^] | 169 | if (unlikely(p->flags & PF_KTHREAD)) { |
| 170 | memset(childregs, 0, sizeof(struct pt_regs)); |
| 171 | childregs->retpc = (unsigned long) ret_from_kernel_thread; |
| 172 | childregs->er4 = topstk; /* arg */ |
| 173 | childregs->er5 = usp; /* fn */ |
| 174 | p->thread.ksp = (unsigned long)childregs; |
| 175 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 176 | *childregs = *regs; |
| 177 | childregs->retpc = (unsigned long) ret_from_fork; |
| 178 | childregs->er0 = 0; |
| 179 | |
| 180 | p->thread.usp = usp; |
| 181 | p->thread.ksp = (unsigned long)childregs; |
| 182 | |
| 183 | return 0; |
| 184 | } |
| 185 | |
| 186 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 187 | * sys_execve() executes a new program. |
| 188 | */ |
David Howells | d762746 | 2010-08-17 23:52:56 +0100 | [diff] [blame] | 189 | asmlinkage int sys_execve(const char *name, |
| 190 | const char *const *argv, |
| 191 | const char *const *envp, |
| 192 | int dummy, ...) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 193 | { |
| 194 | int error; |
Jeff Layton | 91a27b2 | 2012-10-10 15:25:28 -0400 | [diff] [blame] | 195 | struct filename *filename; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 196 | struct pt_regs *regs = (struct pt_regs *) ((unsigned char *)&dummy-4); |
| 197 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 198 | filename = getname(name); |
| 199 | error = PTR_ERR(filename); |
| 200 | if (IS_ERR(filename)) |
John Kacur | e3c1a6b | 2009-10-12 23:04:11 +0200 | [diff] [blame] | 201 | return error; |
Jeff Layton | 91a27b2 | 2012-10-10 15:25:28 -0400 | [diff] [blame] | 202 | error = do_execve(filename->name, argv, envp, regs); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 203 | putname(filename); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 204 | return error; |
| 205 | } |
| 206 | |
| 207 | unsigned long thread_saved_pc(struct task_struct *tsk) |
| 208 | { |
| 209 | return ((struct pt_regs *)tsk->thread.esp0)->pc; |
| 210 | } |
| 211 | |
| 212 | unsigned long get_wchan(struct task_struct *p) |
| 213 | { |
| 214 | unsigned long fp, pc; |
| 215 | unsigned long stack_page; |
| 216 | int count = 0; |
| 217 | if (!p || p == current || p->state == TASK_RUNNING) |
| 218 | return 0; |
| 219 | |
| 220 | stack_page = (unsigned long)p; |
| 221 | fp = ((struct pt_regs *)p->thread.ksp)->er6; |
| 222 | do { |
| 223 | if (fp < stack_page+sizeof(struct thread_info) || |
| 224 | fp >= 8184+stack_page) |
| 225 | return 0; |
| 226 | pc = ((unsigned long *)fp)[1]; |
| 227 | if (!in_sched_functions(pc)) |
| 228 | return pc; |
| 229 | fp = *(unsigned long *) fp; |
| 230 | } while (count++ < 16); |
| 231 | return 0; |
| 232 | } |