blob: 092679c2dca9b83bd3e66503d83413daf29853d7 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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.
Ralf Baechle40ac5d42006-02-08 13:38:18 +00007 * Copyright (C) 2005, 2006 by Ralf Baechle (ralf@linux-mips.org)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 * Copyright (C) 1999, 2000 Silicon Graphics, Inc.
9 * Copyright (C) 2004 Thiemo Seufer
10 */
11#include <linux/config.h>
12#include <linux/errno.h>
13#include <linux/module.h>
14#include <linux/sched.h>
15#include <linux/kernel.h>
16#include <linux/mm.h>
17#include <linux/stddef.h>
18#include <linux/unistd.h>
19#include <linux/ptrace.h>
20#include <linux/slab.h>
21#include <linux/mman.h>
22#include <linux/personality.h>
23#include <linux/sys.h>
24#include <linux/user.h>
25#include <linux/a.out.h>
26#include <linux/init.h>
27#include <linux/completion.h>
Atsushi Nemoto63077512006-02-08 01:48:03 +090028#include <linux/kallsyms.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029
Ralf Baechlee50c0a82005-05-31 11:49:19 +000030#include <asm/abi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <asm/bootinfo.h>
32#include <asm/cpu.h>
Ralf Baechlee50c0a82005-05-31 11:49:19 +000033#include <asm/dsp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <asm/fpu.h>
35#include <asm/pgtable.h>
36#include <asm/system.h>
37#include <asm/mipsregs.h>
38#include <asm/processor.h>
39#include <asm/uaccess.h>
40#include <asm/io.h>
41#include <asm/elf.h>
42#include <asm/isadep.h>
43#include <asm/inst.h>
44
45/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 * The idle thread. There's no useful work to be done, so just try to conserve
47 * power and have a low exit latency (ie sit in a loop waiting for somebody to
48 * say that they'd like to reschedule)
49 */
50ATTRIB_NORET void cpu_idle(void)
51{
52 /* endless idle loop with no priority at all */
53 while (1) {
54 while (!need_resched())
55 if (cpu_wait)
56 (*cpu_wait)();
Nick Piggin5bfb5d62005-11-08 21:39:01 -080057 preempt_enable_no_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -070058 schedule();
Nick Piggin5bfb5d62005-11-08 21:39:01 -080059 preempt_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 }
61}
62
Ralf Baechle40ac5d42006-02-08 13:38:18 +000063extern void do_signal(struct pt_regs *regs);
64extern void do_signal32(struct pt_regs *regs);
Ralf Baechlee50c0a82005-05-31 11:49:19 +000065
66/*
67 * Native o32 and N64 ABI without DSP ASE
68 */
Ralf Baechle129bc8f2005-07-11 20:45:51 +000069extern int setup_frame(struct k_sigaction * ka, struct pt_regs *regs,
Ralf Baechlee50c0a82005-05-31 11:49:19 +000070 int signr, sigset_t *set);
Ralf Baechle129bc8f2005-07-11 20:45:51 +000071extern int setup_rt_frame(struct k_sigaction * ka, struct pt_regs *regs,
Ralf Baechlee50c0a82005-05-31 11:49:19 +000072 int signr, sigset_t *set, siginfo_t *info);
73
74struct mips_abi mips_abi = {
75 .do_signal = do_signal,
76#ifdef CONFIG_TRAD_SIGNALS
77 .setup_frame = setup_frame,
78#endif
79 .setup_rt_frame = setup_rt_frame
80};
81
82#ifdef CONFIG_MIPS32_O32
83/*
84 * o32 compatibility on 64-bit kernels, without DSP ASE
85 */
Ralf Baechle129bc8f2005-07-11 20:45:51 +000086extern int setup_frame_32(struct k_sigaction * ka, struct pt_regs *regs,
Ralf Baechlee50c0a82005-05-31 11:49:19 +000087 int signr, sigset_t *set);
Ralf Baechle129bc8f2005-07-11 20:45:51 +000088extern int setup_rt_frame_32(struct k_sigaction * ka, struct pt_regs *regs,
Ralf Baechlee50c0a82005-05-31 11:49:19 +000089 int signr, sigset_t *set, siginfo_t *info);
90
91struct mips_abi mips_abi_32 = {
92 .do_signal = do_signal32,
93 .setup_frame = setup_frame_32,
94 .setup_rt_frame = setup_rt_frame_32
95};
96#endif /* CONFIG_MIPS32_O32 */
97
98#ifdef CONFIG_MIPS32_N32
99/*
100 * N32 on 64-bit kernels, without DSP ASE
101 */
Ralf Baechle129bc8f2005-07-11 20:45:51 +0000102extern int setup_rt_frame_n32(struct k_sigaction * ka, struct pt_regs *regs,
Ralf Baechlee50c0a82005-05-31 11:49:19 +0000103 int signr, sigset_t *set, siginfo_t *info);
104
105struct mips_abi mips_abi_n32 = {
106 .do_signal = do_signal,
107 .setup_rt_frame = setup_rt_frame_n32
108};
109#endif /* CONFIG_MIPS32_N32 */
110
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111asmlinkage void ret_from_fork(void);
112
113void start_thread(struct pt_regs * regs, unsigned long pc, unsigned long sp)
114{
115 unsigned long status;
116
117 /* New thread loses kernel privileges. */
118 status = regs->cp0_status & ~(ST0_CU0|ST0_CU1|KU_MASK);
Ralf Baechle875d43e2005-09-03 15:56:16 -0700119#ifdef CONFIG_64BIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 status &= ~ST0_FR;
121 status |= (current->thread.mflags & MF_32BIT_REGS) ? 0 : ST0_FR;
122#endif
123 status |= KU_USER;
124 regs->cp0_status = status;
125 clear_used_math();
126 lose_fpu();
Ralf Baechlee50c0a82005-05-31 11:49:19 +0000127 if (cpu_has_dsp)
128 __init_dsp();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 regs->cp0_epc = pc;
130 regs->regs[29] = sp;
131 current_thread_info()->addr_limit = USER_DS;
132}
133
134void exit_thread(void)
135{
136}
137
138void flush_thread(void)
139{
140}
141
142int copy_thread(int nr, unsigned long clone_flags, unsigned long usp,
143 unsigned long unused, struct task_struct *p, struct pt_regs *regs)
144{
Al Viro75bb07e2006-01-12 01:06:08 -0800145 struct thread_info *ti = task_thread_info(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 struct pt_regs *childregs;
147 long childksp;
Ralf Baechle3c370262005-04-13 17:43:59 +0000148 p->set_child_tid = p->clear_child_tid = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149
Al Viro75bb07e2006-01-12 01:06:08 -0800150 childksp = (unsigned long)task_stack_page(p) + THREAD_SIZE - 32;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151
152 preempt_disable();
153
Ralf Baechlee50c0a82005-05-31 11:49:19 +0000154 if (is_fpu_owner())
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 save_fp(p);
Ralf Baechlee50c0a82005-05-31 11:49:19 +0000156
157 if (cpu_has_dsp)
158 save_dsp(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159
160 preempt_enable();
161
162 /* set up new TSS. */
163 childregs = (struct pt_regs *) childksp - 1;
164 *childregs = *regs;
165 childregs->regs[7] = 0; /* Clear error flag */
166
167#if defined(CONFIG_BINFMT_IRIX)
168 if (current->personality != PER_LINUX) {
169 /* Under IRIX things are a little different. */
170 childregs->regs[3] = 1;
171 regs->regs[3] = 0;
172 }
173#endif
174 childregs->regs[2] = 0; /* Child gets zero as return value */
175 regs->regs[2] = p->pid;
176
177 if (childregs->cp0_status & ST0_CU0) {
178 childregs->regs[28] = (unsigned long) ti;
179 childregs->regs[29] = childksp;
180 ti->addr_limit = KERNEL_DS;
181 } else {
182 childregs->regs[29] = usp;
183 ti->addr_limit = USER_DS;
184 }
185 p->thread.reg29 = (unsigned long) childregs;
186 p->thread.reg31 = (unsigned long) ret_from_fork;
187
188 /*
189 * New tasks lose permission to use the fpu. This accelerates context
190 * switching for most programs since they don't use the fpu.
191 */
192 p->thread.cp0_status = read_c0_status() & ~(ST0_CU2|ST0_CU1);
193 childregs->cp0_status &= ~(ST0_CU2|ST0_CU1);
194 clear_tsk_thread_flag(p, TIF_USEDFPU);
195
Ralf Baechle3c370262005-04-13 17:43:59 +0000196 if (clone_flags & CLONE_SETTLS)
197 ti->tp_value = regs->regs[7];
198
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 return 0;
200}
201
202/* Fill in the fpu structure for a core dump.. */
203int dump_fpu(struct pt_regs *regs, elf_fpregset_t *r)
204{
205 memcpy(r, &current->thread.fpu, sizeof(current->thread.fpu));
206
207 return 1;
208}
209
Al Virod56efda2005-12-16 22:40:47 +0000210void elf_dump_regs(elf_greg_t *gp, struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211{
212 int i;
213
214 for (i = 0; i < EF_R0; i++)
215 gp[i] = 0;
216 gp[EF_R0] = 0;
217 for (i = 1; i <= 31; i++)
218 gp[EF_R0 + i] = regs->regs[i];
219 gp[EF_R26] = 0;
220 gp[EF_R27] = 0;
221 gp[EF_LO] = regs->lo;
222 gp[EF_HI] = regs->hi;
223 gp[EF_CP0_EPC] = regs->cp0_epc;
224 gp[EF_CP0_BADVADDR] = regs->cp0_badvaddr;
225 gp[EF_CP0_STATUS] = regs->cp0_status;
226 gp[EF_CP0_CAUSE] = regs->cp0_cause;
227#ifdef EF_UNUSED0
228 gp[EF_UNUSED0] = 0;
229#endif
230}
231
Ralf Baechle71e0e552005-03-14 10:16:59 +0000232int dump_task_regs (struct task_struct *tsk, elf_gregset_t *regs)
233{
Al Viro40bc9c62006-01-12 01:06:07 -0800234 elf_dump_regs(*regs, task_pt_regs(tsk));
Ralf Baechle71e0e552005-03-14 10:16:59 +0000235 return 1;
236}
237
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238int dump_task_fpu (struct task_struct *t, elf_fpregset_t *fpr)
239{
240 memcpy(fpr, &t->thread.fpu, sizeof(current->thread.fpu));
241
242 return 1;
243}
244
245/*
246 * Create a kernel thread
247 */
248ATTRIB_NORET void kernel_thread_helper(void *arg, int (*fn)(void *))
249{
250 do_exit(fn(arg));
251}
252
253long kernel_thread(int (*fn)(void *), void *arg, unsigned long flags)
254{
255 struct pt_regs regs;
256
257 memset(&regs, 0, sizeof(regs));
258
259 regs.regs[4] = (unsigned long) arg;
260 regs.regs[5] = (unsigned long) fn;
261 regs.cp0_epc = (unsigned long) kernel_thread_helper;
262 regs.cp0_status = read_c0_status();
263#if defined(CONFIG_CPU_R3000) || defined(CONFIG_CPU_TX39XX)
264 regs.cp0_status &= ~(ST0_KUP | ST0_IEC);
265 regs.cp0_status |= ST0_IEP;
266#else
267 regs.cp0_status |= ST0_EXL;
268#endif
269
270 /* Ok, create the new process.. */
271 return do_fork(flags | CLONE_VM | CLONE_UNTRACED, 0, &regs, 0, NULL, NULL);
272}
273
Thiemo Seuferdc953df2005-02-21 10:55:16 +0000274static struct mips_frame_info {
275 void *func;
Atsushi Nemoto63077512006-02-08 01:48:03 +0900276 unsigned long func_size;
277 int frame_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 int pc_offset;
Atsushi Nemoto63077512006-02-08 01:48:03 +0900279} *schedule_frame, mfinfo[64];
280static int mfinfo_num;
Thiemo Seuferdc953df2005-02-21 10:55:16 +0000281
Thiemo Seuferdc953df2005-02-21 10:55:16 +0000282static int __init get_frame_info(struct mips_frame_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283{
284 int i;
Thiemo Seuferdc953df2005-02-21 10:55:16 +0000285 void *func = info->func;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 union mips_instruction *ip = (union mips_instruction *)func;
287 info->pc_offset = -1;
Atsushi Nemoto63077512006-02-08 01:48:03 +0900288 info->frame_size = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 for (i = 0; i < 128; i++, ip++) {
290 /* if jal, jalr, jr, stop. */
291 if (ip->j_format.opcode == jal_op ||
292 (ip->r_format.opcode == spec_op &&
293 (ip->r_format.func == jalr_op ||
294 ip->r_format.func == jr_op)))
295 break;
296
Atsushi Nemoto63077512006-02-08 01:48:03 +0900297 if (info->func_size && i >= info->func_size / 4)
298 break;
299 if (
300#ifdef CONFIG_32BIT
301 ip->i_format.opcode == addiu_op &&
302#endif
303#ifdef CONFIG_64BIT
304 ip->i_format.opcode == daddiu_op &&
305#endif
306 ip->i_format.rs == 29 &&
307 ip->i_format.rt == 29) {
308 /* addiu/daddiu sp,sp,-imm */
309 if (info->frame_size)
310 continue;
311 info->frame_size = - ip->i_format.simmediate;
312 }
313
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 if (
Ralf Baechle875d43e2005-09-03 15:56:16 -0700315#ifdef CONFIG_32BIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 ip->i_format.opcode == sw_op &&
317#endif
Ralf Baechle875d43e2005-09-03 15:56:16 -0700318#ifdef CONFIG_64BIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 ip->i_format.opcode == sd_op &&
320#endif
Atsushi Nemoto63077512006-02-08 01:48:03 +0900321 ip->i_format.rs == 29 &&
322 ip->i_format.rt == 31) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 /* sw / sd $ra, offset($sp) */
Atsushi Nemoto63077512006-02-08 01:48:03 +0900324 if (info->pc_offset != -1)
325 continue;
326 info->pc_offset =
327 ip->i_format.simmediate / sizeof(long);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 }
329 }
Atsushi Nemoto63077512006-02-08 01:48:03 +0900330 if (info->pc_offset == -1 || info->frame_size == 0) {
331 if (func == schedule)
332 printk("Can't analyze prologue code at %p\n", func);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 info->pc_offset = -1;
Atsushi Nemoto63077512006-02-08 01:48:03 +0900334 info->frame_size = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 }
336
337 return 0;
338}
339
340static int __init frame_info_init(void)
341{
Atsushi Nemoto63077512006-02-08 01:48:03 +0900342 int i;
343#ifdef CONFIG_KALLSYMS
344 char *modname;
345 char namebuf[KSYM_NAME_LEN + 1];
346 unsigned long start, size, ofs;
347 extern char __sched_text_start[], __sched_text_end[];
348 extern char __lock_text_start[], __lock_text_end[];
349
350 start = (unsigned long)__sched_text_start;
351 for (i = 0; i < ARRAY_SIZE(mfinfo); i++) {
352 if (start == (unsigned long)schedule)
353 schedule_frame = &mfinfo[i];
354 if (!kallsyms_lookup(start, &size, &ofs, &modname, namebuf))
355 break;
356 mfinfo[i].func = (void *)(start + ofs);
357 mfinfo[i].func_size = size;
358 start += size - ofs;
359 if (start >= (unsigned long)__lock_text_end)
360 break;
361 if (start == (unsigned long)__sched_text_end)
362 start = (unsigned long)__lock_text_start;
363 }
364#else
365 mfinfo[0].func = schedule;
366 schedule_frame = &mfinfo[0];
367#endif
368 for (i = 0; i < ARRAY_SIZE(mfinfo) && mfinfo[i].func; i++)
369 get_frame_info(&mfinfo[i]);
370
371 mfinfo_num = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 return 0;
373}
374
375arch_initcall(frame_info_init);
376
377/*
378 * Return saved PC of a blocked thread.
379 */
380unsigned long thread_saved_pc(struct task_struct *tsk)
381{
382 struct thread_struct *t = &tsk->thread;
383
384 /* New born processes are a special case */
385 if (t->reg31 == (unsigned long) ret_from_fork)
386 return t->reg31;
387
Atsushi Nemoto63077512006-02-08 01:48:03 +0900388 if (!schedule_frame || schedule_frame->pc_offset < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 return 0;
Atsushi Nemoto63077512006-02-08 01:48:03 +0900390 return ((unsigned long *)t->reg29)[schedule_frame->pc_offset];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391}
392
393/* get_wchan - a maintenance nightmare^W^Wpain in the ass ... */
394unsigned long get_wchan(struct task_struct *p)
395{
Thiemo Seuferdc953df2005-02-21 10:55:16 +0000396 unsigned long stack_page;
Atsushi Nemoto63077512006-02-08 01:48:03 +0900397 unsigned long pc;
398#ifdef CONFIG_KALLSYMS
399 unsigned long frame;
400#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401
402 if (!p || p == current || p->state == TASK_RUNNING)
403 return 0;
404
Al Viro75bb07e2006-01-12 01:06:08 -0800405 stack_page = (unsigned long)task_stack_page(p);
Atsushi Nemoto63077512006-02-08 01:48:03 +0900406 if (!stack_page || !mfinfo_num)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 return 0;
Thiemo Seuferdc953df2005-02-21 10:55:16 +0000408
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 pc = thread_saved_pc(p);
Atsushi Nemoto63077512006-02-08 01:48:03 +0900410#ifdef CONFIG_KALLSYMS
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 if (!in_sched_functions(pc))
Thiemo Seuferdc953df2005-02-21 10:55:16 +0000412 return pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413
Atsushi Nemoto63077512006-02-08 01:48:03 +0900414 frame = p->thread.reg29 + schedule_frame->frame_size;
Thiemo Seuferdc953df2005-02-21 10:55:16 +0000415 do {
416 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417
Thiemo Seuferdc953df2005-02-21 10:55:16 +0000418 if (frame < stack_page || frame > stack_page + THREAD_SIZE - 32)
419 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420
Atsushi Nemoto63077512006-02-08 01:48:03 +0900421 for (i = mfinfo_num - 1; i >= 0; i--) {
Thiemo Seuferdc953df2005-02-21 10:55:16 +0000422 if (pc >= (unsigned long) mfinfo[i].func)
423 break;
424 }
425 if (i < 0)
426 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427
Thiemo Seuferdc953df2005-02-21 10:55:16 +0000428 pc = ((unsigned long *)frame)[mfinfo[i].pc_offset];
Atsushi Nemoto63077512006-02-08 01:48:03 +0900429 if (!mfinfo[i].frame_size)
430 break;
431 frame += mfinfo[i].frame_size;
Thiemo Seuferdc953df2005-02-21 10:55:16 +0000432 } while (in_sched_functions(pc));
Atsushi Nemoto63077512006-02-08 01:48:03 +0900433#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434
435 return pc;
436}
437
438EXPORT_SYMBOL(get_wchan);