Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * This file is subject to the terms and conditions of the GNU General Public |
| 3 | * License. See the file "COPYING" in the main directory of this archive |
| 4 | * for more details. |
| 5 | * |
| 6 | * Copyright (C) 1994 - 1999, 2000 by Ralf Baechle and others. |
| 7 | * Copyright (C) 1999, 2000 Silicon Graphics, Inc. |
| 8 | * Copyright (C) 2004 Thiemo Seufer |
| 9 | */ |
| 10 | #include <linux/config.h> |
| 11 | #include <linux/errno.h> |
| 12 | #include <linux/module.h> |
| 13 | #include <linux/sched.h> |
| 14 | #include <linux/kernel.h> |
| 15 | #include <linux/mm.h> |
| 16 | #include <linux/stddef.h> |
| 17 | #include <linux/unistd.h> |
| 18 | #include <linux/ptrace.h> |
| 19 | #include <linux/slab.h> |
| 20 | #include <linux/mman.h> |
| 21 | #include <linux/personality.h> |
| 22 | #include <linux/sys.h> |
| 23 | #include <linux/user.h> |
| 24 | #include <linux/a.out.h> |
| 25 | #include <linux/init.h> |
| 26 | #include <linux/completion.h> |
| 27 | |
Ralf Baechle | e50c0a8 | 2005-05-31 11:49:19 +0000 | [diff] [blame] | 28 | #include <asm/abi.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | #include <asm/bootinfo.h> |
| 30 | #include <asm/cpu.h> |
Ralf Baechle | e50c0a8 | 2005-05-31 11:49:19 +0000 | [diff] [blame] | 31 | #include <asm/dsp.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | #include <asm/fpu.h> |
| 33 | #include <asm/pgtable.h> |
| 34 | #include <asm/system.h> |
| 35 | #include <asm/mipsregs.h> |
| 36 | #include <asm/processor.h> |
| 37 | #include <asm/uaccess.h> |
| 38 | #include <asm/io.h> |
| 39 | #include <asm/elf.h> |
| 40 | #include <asm/isadep.h> |
| 41 | #include <asm/inst.h> |
| 42 | |
| 43 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | * The idle thread. There's no useful work to be done, so just try to conserve |
| 45 | * power and have a low exit latency (ie sit in a loop waiting for somebody to |
| 46 | * say that they'd like to reschedule) |
| 47 | */ |
| 48 | ATTRIB_NORET void cpu_idle(void) |
| 49 | { |
| 50 | /* endless idle loop with no priority at all */ |
| 51 | while (1) { |
| 52 | while (!need_resched()) |
| 53 | if (cpu_wait) |
| 54 | (*cpu_wait)(); |
Nick Piggin | 5bfb5d6 | 2005-11-08 21:39:01 -0800 | [diff] [blame] | 55 | preempt_enable_no_resched(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | schedule(); |
Nick Piggin | 5bfb5d6 | 2005-11-08 21:39:01 -0800 | [diff] [blame] | 57 | preempt_disable(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | } |
| 59 | } |
| 60 | |
Ralf Baechle | e50c0a8 | 2005-05-31 11:49:19 +0000 | [diff] [blame] | 61 | extern int do_signal(sigset_t *oldset, struct pt_regs *regs); |
| 62 | extern int do_signal32(sigset_t *oldset, struct pt_regs *regs); |
| 63 | |
| 64 | /* |
| 65 | * Native o32 and N64 ABI without DSP ASE |
| 66 | */ |
Ralf Baechle | 129bc8f | 2005-07-11 20:45:51 +0000 | [diff] [blame] | 67 | extern int setup_frame(struct k_sigaction * ka, struct pt_regs *regs, |
Ralf Baechle | e50c0a8 | 2005-05-31 11:49:19 +0000 | [diff] [blame] | 68 | int signr, sigset_t *set); |
Ralf Baechle | 129bc8f | 2005-07-11 20:45:51 +0000 | [diff] [blame] | 69 | extern int setup_rt_frame(struct k_sigaction * ka, struct pt_regs *regs, |
Ralf Baechle | e50c0a8 | 2005-05-31 11:49:19 +0000 | [diff] [blame] | 70 | int signr, sigset_t *set, siginfo_t *info); |
| 71 | |
| 72 | struct mips_abi mips_abi = { |
| 73 | .do_signal = do_signal, |
| 74 | #ifdef CONFIG_TRAD_SIGNALS |
| 75 | .setup_frame = setup_frame, |
| 76 | #endif |
| 77 | .setup_rt_frame = setup_rt_frame |
| 78 | }; |
| 79 | |
| 80 | #ifdef CONFIG_MIPS32_O32 |
| 81 | /* |
| 82 | * o32 compatibility on 64-bit kernels, without DSP ASE |
| 83 | */ |
Ralf Baechle | 129bc8f | 2005-07-11 20:45:51 +0000 | [diff] [blame] | 84 | extern int setup_frame_32(struct k_sigaction * ka, struct pt_regs *regs, |
Ralf Baechle | e50c0a8 | 2005-05-31 11:49:19 +0000 | [diff] [blame] | 85 | int signr, sigset_t *set); |
Ralf Baechle | 129bc8f | 2005-07-11 20:45:51 +0000 | [diff] [blame] | 86 | extern int setup_rt_frame_32(struct k_sigaction * ka, struct pt_regs *regs, |
Ralf Baechle | e50c0a8 | 2005-05-31 11:49:19 +0000 | [diff] [blame] | 87 | int signr, sigset_t *set, siginfo_t *info); |
| 88 | |
| 89 | struct mips_abi mips_abi_32 = { |
| 90 | .do_signal = do_signal32, |
| 91 | .setup_frame = setup_frame_32, |
| 92 | .setup_rt_frame = setup_rt_frame_32 |
| 93 | }; |
| 94 | #endif /* CONFIG_MIPS32_O32 */ |
| 95 | |
| 96 | #ifdef CONFIG_MIPS32_N32 |
| 97 | /* |
| 98 | * N32 on 64-bit kernels, without DSP ASE |
| 99 | */ |
Ralf Baechle | 129bc8f | 2005-07-11 20:45:51 +0000 | [diff] [blame] | 100 | extern int setup_rt_frame_n32(struct k_sigaction * ka, struct pt_regs *regs, |
Ralf Baechle | e50c0a8 | 2005-05-31 11:49:19 +0000 | [diff] [blame] | 101 | int signr, sigset_t *set, siginfo_t *info); |
| 102 | |
| 103 | struct mips_abi mips_abi_n32 = { |
| 104 | .do_signal = do_signal, |
| 105 | .setup_rt_frame = setup_rt_frame_n32 |
| 106 | }; |
| 107 | #endif /* CONFIG_MIPS32_N32 */ |
| 108 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 109 | asmlinkage void ret_from_fork(void); |
| 110 | |
| 111 | void start_thread(struct pt_regs * regs, unsigned long pc, unsigned long sp) |
| 112 | { |
| 113 | unsigned long status; |
| 114 | |
| 115 | /* New thread loses kernel privileges. */ |
| 116 | status = regs->cp0_status & ~(ST0_CU0|ST0_CU1|KU_MASK); |
Ralf Baechle | 875d43e | 2005-09-03 15:56:16 -0700 | [diff] [blame] | 117 | #ifdef CONFIG_64BIT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 | status &= ~ST0_FR; |
| 119 | status |= (current->thread.mflags & MF_32BIT_REGS) ? 0 : ST0_FR; |
| 120 | #endif |
| 121 | status |= KU_USER; |
| 122 | regs->cp0_status = status; |
| 123 | clear_used_math(); |
| 124 | lose_fpu(); |
Ralf Baechle | e50c0a8 | 2005-05-31 11:49:19 +0000 | [diff] [blame] | 125 | if (cpu_has_dsp) |
| 126 | __init_dsp(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 127 | regs->cp0_epc = pc; |
| 128 | regs->regs[29] = sp; |
| 129 | current_thread_info()->addr_limit = USER_DS; |
| 130 | } |
| 131 | |
| 132 | void exit_thread(void) |
| 133 | { |
| 134 | } |
| 135 | |
| 136 | void flush_thread(void) |
| 137 | { |
| 138 | } |
| 139 | |
| 140 | int copy_thread(int nr, unsigned long clone_flags, unsigned long usp, |
| 141 | unsigned long unused, struct task_struct *p, struct pt_regs *regs) |
| 142 | { |
Al Viro | 75bb07e | 2006-01-12 01:06:08 -0800 | [diff] [blame] | 143 | struct thread_info *ti = task_thread_info(p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 144 | struct pt_regs *childregs; |
| 145 | long childksp; |
Ralf Baechle | 3c37026 | 2005-04-13 17:43:59 +0000 | [diff] [blame] | 146 | p->set_child_tid = p->clear_child_tid = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 147 | |
Al Viro | 75bb07e | 2006-01-12 01:06:08 -0800 | [diff] [blame] | 148 | childksp = (unsigned long)task_stack_page(p) + THREAD_SIZE - 32; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 149 | |
| 150 | preempt_disable(); |
| 151 | |
Ralf Baechle | e50c0a8 | 2005-05-31 11:49:19 +0000 | [diff] [blame] | 152 | if (is_fpu_owner()) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 153 | save_fp(p); |
Ralf Baechle | e50c0a8 | 2005-05-31 11:49:19 +0000 | [diff] [blame] | 154 | |
| 155 | if (cpu_has_dsp) |
| 156 | save_dsp(p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 157 | |
| 158 | preempt_enable(); |
| 159 | |
| 160 | /* set up new TSS. */ |
| 161 | childregs = (struct pt_regs *) childksp - 1; |
| 162 | *childregs = *regs; |
| 163 | childregs->regs[7] = 0; /* Clear error flag */ |
| 164 | |
| 165 | #if defined(CONFIG_BINFMT_IRIX) |
| 166 | if (current->personality != PER_LINUX) { |
| 167 | /* Under IRIX things are a little different. */ |
| 168 | childregs->regs[3] = 1; |
| 169 | regs->regs[3] = 0; |
| 170 | } |
| 171 | #endif |
| 172 | childregs->regs[2] = 0; /* Child gets zero as return value */ |
| 173 | regs->regs[2] = p->pid; |
| 174 | |
| 175 | if (childregs->cp0_status & ST0_CU0) { |
| 176 | childregs->regs[28] = (unsigned long) ti; |
| 177 | childregs->regs[29] = childksp; |
| 178 | ti->addr_limit = KERNEL_DS; |
| 179 | } else { |
| 180 | childregs->regs[29] = usp; |
| 181 | ti->addr_limit = USER_DS; |
| 182 | } |
| 183 | p->thread.reg29 = (unsigned long) childregs; |
| 184 | p->thread.reg31 = (unsigned long) ret_from_fork; |
| 185 | |
| 186 | /* |
| 187 | * New tasks lose permission to use the fpu. This accelerates context |
| 188 | * switching for most programs since they don't use the fpu. |
| 189 | */ |
| 190 | p->thread.cp0_status = read_c0_status() & ~(ST0_CU2|ST0_CU1); |
| 191 | childregs->cp0_status &= ~(ST0_CU2|ST0_CU1); |
| 192 | clear_tsk_thread_flag(p, TIF_USEDFPU); |
| 193 | |
Ralf Baechle | 3c37026 | 2005-04-13 17:43:59 +0000 | [diff] [blame] | 194 | if (clone_flags & CLONE_SETTLS) |
| 195 | ti->tp_value = regs->regs[7]; |
| 196 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 197 | return 0; |
| 198 | } |
| 199 | |
| 200 | /* Fill in the fpu structure for a core dump.. */ |
| 201 | int dump_fpu(struct pt_regs *regs, elf_fpregset_t *r) |
| 202 | { |
| 203 | memcpy(r, ¤t->thread.fpu, sizeof(current->thread.fpu)); |
| 204 | |
| 205 | return 1; |
| 206 | } |
| 207 | |
Al Viro | d56efda | 2005-12-16 22:40:47 +0000 | [diff] [blame] | 208 | void elf_dump_regs(elf_greg_t *gp, struct pt_regs *regs) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 209 | { |
| 210 | int i; |
| 211 | |
| 212 | for (i = 0; i < EF_R0; i++) |
| 213 | gp[i] = 0; |
| 214 | gp[EF_R0] = 0; |
| 215 | for (i = 1; i <= 31; i++) |
| 216 | gp[EF_R0 + i] = regs->regs[i]; |
| 217 | gp[EF_R26] = 0; |
| 218 | gp[EF_R27] = 0; |
| 219 | gp[EF_LO] = regs->lo; |
| 220 | gp[EF_HI] = regs->hi; |
| 221 | gp[EF_CP0_EPC] = regs->cp0_epc; |
| 222 | gp[EF_CP0_BADVADDR] = regs->cp0_badvaddr; |
| 223 | gp[EF_CP0_STATUS] = regs->cp0_status; |
| 224 | gp[EF_CP0_CAUSE] = regs->cp0_cause; |
| 225 | #ifdef EF_UNUSED0 |
| 226 | gp[EF_UNUSED0] = 0; |
| 227 | #endif |
| 228 | } |
| 229 | |
Ralf Baechle | 71e0e55 | 2005-03-14 10:16:59 +0000 | [diff] [blame] | 230 | int dump_task_regs (struct task_struct *tsk, elf_gregset_t *regs) |
| 231 | { |
Al Viro | 40bc9c6 | 2006-01-12 01:06:07 -0800 | [diff] [blame] | 232 | elf_dump_regs(*regs, task_pt_regs(tsk)); |
Ralf Baechle | 71e0e55 | 2005-03-14 10:16:59 +0000 | [diff] [blame] | 233 | return 1; |
| 234 | } |
| 235 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 236 | int dump_task_fpu (struct task_struct *t, elf_fpregset_t *fpr) |
| 237 | { |
| 238 | memcpy(fpr, &t->thread.fpu, sizeof(current->thread.fpu)); |
| 239 | |
| 240 | return 1; |
| 241 | } |
| 242 | |
| 243 | /* |
| 244 | * Create a kernel thread |
| 245 | */ |
| 246 | ATTRIB_NORET void kernel_thread_helper(void *arg, int (*fn)(void *)) |
| 247 | { |
| 248 | do_exit(fn(arg)); |
| 249 | } |
| 250 | |
| 251 | long kernel_thread(int (*fn)(void *), void *arg, unsigned long flags) |
| 252 | { |
| 253 | struct pt_regs regs; |
| 254 | |
| 255 | memset(®s, 0, sizeof(regs)); |
| 256 | |
| 257 | regs.regs[4] = (unsigned long) arg; |
| 258 | regs.regs[5] = (unsigned long) fn; |
| 259 | regs.cp0_epc = (unsigned long) kernel_thread_helper; |
| 260 | regs.cp0_status = read_c0_status(); |
| 261 | #if defined(CONFIG_CPU_R3000) || defined(CONFIG_CPU_TX39XX) |
| 262 | regs.cp0_status &= ~(ST0_KUP | ST0_IEC); |
| 263 | regs.cp0_status |= ST0_IEP; |
| 264 | #else |
| 265 | regs.cp0_status |= ST0_EXL; |
| 266 | #endif |
| 267 | |
| 268 | /* Ok, create the new process.. */ |
| 269 | return do_fork(flags | CLONE_VM | CLONE_UNTRACED, 0, ®s, 0, NULL, NULL); |
| 270 | } |
| 271 | |
Thiemo Seufer | dc953df | 2005-02-21 10:55:16 +0000 | [diff] [blame] | 272 | static struct mips_frame_info { |
| 273 | void *func; |
| 274 | int omit_fp; /* compiled without fno-omit-frame-pointer */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 275 | int frame_offset; |
| 276 | int pc_offset; |
Thiemo Seufer | dc953df | 2005-02-21 10:55:16 +0000 | [diff] [blame] | 277 | } schedule_frame, mfinfo[] = { |
| 278 | { schedule, 0 }, /* must be first */ |
| 279 | /* arch/mips/kernel/semaphore.c */ |
| 280 | { __down, 1 }, |
| 281 | { __down_interruptible, 1 }, |
| 282 | /* kernel/sched.c */ |
| 283 | #ifdef CONFIG_PREEMPT |
| 284 | { preempt_schedule, 0 }, |
| 285 | #endif |
| 286 | { wait_for_completion, 0 }, |
| 287 | { interruptible_sleep_on, 0 }, |
| 288 | { interruptible_sleep_on_timeout, 0 }, |
| 289 | { sleep_on, 0 }, |
| 290 | { sleep_on_timeout, 0 }, |
| 291 | { yield, 0 }, |
| 292 | { io_schedule, 0 }, |
| 293 | { io_schedule_timeout, 0 }, |
| 294 | #if defined(CONFIG_SMP) && defined(CONFIG_PREEMPT) |
| 295 | { __preempt_spin_lock, 0 }, |
| 296 | { __preempt_write_lock, 0 }, |
| 297 | #endif |
| 298 | /* kernel/timer.c */ |
| 299 | { schedule_timeout, 1 }, |
| 300 | /* { nanosleep_restart, 1 }, */ |
| 301 | /* lib/rwsem-spinlock.c */ |
| 302 | { __down_read, 1 }, |
| 303 | { __down_write, 1 }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 304 | }; |
Thiemo Seufer | dc953df | 2005-02-21 10:55:16 +0000 | [diff] [blame] | 305 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 306 | static int mips_frame_info_initialized; |
Thiemo Seufer | dc953df | 2005-02-21 10:55:16 +0000 | [diff] [blame] | 307 | static int __init get_frame_info(struct mips_frame_info *info) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 308 | { |
| 309 | int i; |
Thiemo Seufer | dc953df | 2005-02-21 10:55:16 +0000 | [diff] [blame] | 310 | void *func = info->func; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 311 | union mips_instruction *ip = (union mips_instruction *)func; |
| 312 | info->pc_offset = -1; |
Thiemo Seufer | dc953df | 2005-02-21 10:55:16 +0000 | [diff] [blame] | 313 | info->frame_offset = info->omit_fp ? 0 : -1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 314 | for (i = 0; i < 128; i++, ip++) { |
| 315 | /* if jal, jalr, jr, stop. */ |
| 316 | if (ip->j_format.opcode == jal_op || |
| 317 | (ip->r_format.opcode == spec_op && |
| 318 | (ip->r_format.func == jalr_op || |
| 319 | ip->r_format.func == jr_op))) |
| 320 | break; |
| 321 | |
| 322 | if ( |
Ralf Baechle | 875d43e | 2005-09-03 15:56:16 -0700 | [diff] [blame] | 323 | #ifdef CONFIG_32BIT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 324 | ip->i_format.opcode == sw_op && |
| 325 | #endif |
Ralf Baechle | 875d43e | 2005-09-03 15:56:16 -0700 | [diff] [blame] | 326 | #ifdef CONFIG_64BIT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 327 | ip->i_format.opcode == sd_op && |
| 328 | #endif |
| 329 | ip->i_format.rs == 29) |
| 330 | { |
| 331 | /* sw / sd $ra, offset($sp) */ |
| 332 | if (ip->i_format.rt == 31) { |
| 333 | if (info->pc_offset != -1) |
Thiemo Seufer | dc953df | 2005-02-21 10:55:16 +0000 | [diff] [blame] | 334 | continue; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 335 | info->pc_offset = |
| 336 | ip->i_format.simmediate / sizeof(long); |
| 337 | } |
| 338 | /* sw / sd $s8, offset($sp) */ |
| 339 | if (ip->i_format.rt == 30) { |
Thiemo Seufer | dc953df | 2005-02-21 10:55:16 +0000 | [diff] [blame] | 340 | //#if 0 /* gcc 3.4 does aggressive optimization... */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 341 | if (info->frame_offset != -1) |
Thiemo Seufer | dc953df | 2005-02-21 10:55:16 +0000 | [diff] [blame] | 342 | continue; |
| 343 | //#endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 344 | info->frame_offset = |
| 345 | ip->i_format.simmediate / sizeof(long); |
| 346 | } |
| 347 | } |
| 348 | } |
| 349 | if (info->pc_offset == -1 || info->frame_offset == -1) { |
| 350 | printk("Can't analyze prologue code at %p\n", func); |
| 351 | info->pc_offset = -1; |
| 352 | info->frame_offset = -1; |
| 353 | return -1; |
| 354 | } |
| 355 | |
| 356 | return 0; |
| 357 | } |
| 358 | |
| 359 | static int __init frame_info_init(void) |
| 360 | { |
Thiemo Seufer | dc953df | 2005-02-21 10:55:16 +0000 | [diff] [blame] | 361 | int i, found; |
| 362 | for (i = 0; i < ARRAY_SIZE(mfinfo); i++) |
| 363 | if (get_frame_info(&mfinfo[i])) |
| 364 | return -1; |
| 365 | schedule_frame = mfinfo[0]; |
| 366 | /* bubble sort */ |
| 367 | do { |
| 368 | struct mips_frame_info tmp; |
| 369 | found = 0; |
| 370 | for (i = 1; i < ARRAY_SIZE(mfinfo); i++) { |
| 371 | if (mfinfo[i-1].func > mfinfo[i].func) { |
| 372 | tmp = mfinfo[i]; |
| 373 | mfinfo[i] = mfinfo[i-1]; |
| 374 | mfinfo[i-1] = tmp; |
| 375 | found = 1; |
| 376 | } |
| 377 | } |
| 378 | } while (found); |
| 379 | mips_frame_info_initialized = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 380 | return 0; |
| 381 | } |
| 382 | |
| 383 | arch_initcall(frame_info_init); |
| 384 | |
| 385 | /* |
| 386 | * Return saved PC of a blocked thread. |
| 387 | */ |
| 388 | unsigned long thread_saved_pc(struct task_struct *tsk) |
| 389 | { |
| 390 | struct thread_struct *t = &tsk->thread; |
| 391 | |
| 392 | /* New born processes are a special case */ |
| 393 | if (t->reg31 == (unsigned long) ret_from_fork) |
| 394 | return t->reg31; |
| 395 | |
| 396 | if (schedule_frame.pc_offset < 0) |
| 397 | return 0; |
| 398 | return ((unsigned long *)t->reg29)[schedule_frame.pc_offset]; |
| 399 | } |
| 400 | |
| 401 | /* get_wchan - a maintenance nightmare^W^Wpain in the ass ... */ |
| 402 | unsigned long get_wchan(struct task_struct *p) |
| 403 | { |
Thiemo Seufer | dc953df | 2005-02-21 10:55:16 +0000 | [diff] [blame] | 404 | unsigned long stack_page; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 405 | unsigned long frame, pc; |
| 406 | |
| 407 | if (!p || p == current || p->state == TASK_RUNNING) |
| 408 | return 0; |
| 409 | |
Al Viro | 75bb07e | 2006-01-12 01:06:08 -0800 | [diff] [blame] | 410 | stack_page = (unsigned long)task_stack_page(p); |
Thiemo Seufer | dc953df | 2005-02-21 10:55:16 +0000 | [diff] [blame] | 411 | if (!stack_page || !mips_frame_info_initialized) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 412 | return 0; |
Thiemo Seufer | dc953df | 2005-02-21 10:55:16 +0000 | [diff] [blame] | 413 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 414 | pc = thread_saved_pc(p); |
| 415 | if (!in_sched_functions(pc)) |
Thiemo Seufer | dc953df | 2005-02-21 10:55:16 +0000 | [diff] [blame] | 416 | return pc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 417 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 418 | frame = ((unsigned long *)p->thread.reg30)[schedule_frame.frame_offset]; |
Thiemo Seufer | dc953df | 2005-02-21 10:55:16 +0000 | [diff] [blame] | 419 | do { |
| 420 | int i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 421 | |
Thiemo Seufer | dc953df | 2005-02-21 10:55:16 +0000 | [diff] [blame] | 422 | if (frame < stack_page || frame > stack_page + THREAD_SIZE - 32) |
| 423 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 424 | |
Thiemo Seufer | dc953df | 2005-02-21 10:55:16 +0000 | [diff] [blame] | 425 | for (i = ARRAY_SIZE(mfinfo) - 1; i >= 0; i--) { |
| 426 | if (pc >= (unsigned long) mfinfo[i].func) |
| 427 | break; |
| 428 | } |
| 429 | if (i < 0) |
| 430 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 431 | |
Thiemo Seufer | dc953df | 2005-02-21 10:55:16 +0000 | [diff] [blame] | 432 | if (mfinfo[i].omit_fp) |
| 433 | break; |
| 434 | pc = ((unsigned long *)frame)[mfinfo[i].pc_offset]; |
| 435 | frame = ((unsigned long *)frame)[mfinfo[i].frame_offset]; |
| 436 | } while (in_sched_functions(pc)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 437 | |
| 438 | return pc; |
| 439 | } |
| 440 | |
| 441 | EXPORT_SYMBOL(get_wchan); |