blob: e1eff41809cc6cb3cfe82a49b02165e138847cbf [file] [log] [blame]
David S. Miller5526b7e2008-04-27 02:26:36 -07001/* arch/sparc64/kernel/process.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 *
David S. Miller93dae5b2008-05-19 23:46:00 -07003 * Copyright (C) 1995, 1996, 2008 David S. Miller (davem@davemloft.net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 * Copyright (C) 1996 Eddie C. Dost (ecd@skynet.be)
5 * Copyright (C) 1997, 1998 Jakub Jelinek (jj@sunsite.mff.cuni.cz)
6 */
7
8/*
9 * This file handles the architecture-dependent parts of process handling..
10 */
11
12#include <stdarg.h>
13
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/errno.h>
15#include <linux/module.h>
16#include <linux/sched.h>
17#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <linux/mm.h>
Alexey Dobriyan4e950f62007-07-30 02:36:13 +040019#include <linux/fs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/smp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <linux/stddef.h>
22#include <linux/ptrace.h>
23#include <linux/slab.h>
24#include <linux/user.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/reboot.h>
26#include <linux/delay.h>
27#include <linux/compat.h>
David S. Miller038cb012007-02-22 06:24:45 -080028#include <linux/tick.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <linux/init.h>
David S. Millere02044092007-07-16 03:49:40 -070030#include <linux/cpu.h>
David S. Millerb1422402008-02-19 21:25:50 -080031#include <linux/elfcore.h>
David S. Miller93dae5b2008-05-19 23:46:00 -070032#include <linux/sysrq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
34#include <asm/oplib.h>
35#include <asm/uaccess.h>
36#include <asm/system.h>
37#include <asm/page.h>
38#include <asm/pgalloc.h>
39#include <asm/pgtable.h>
40#include <asm/processor.h>
41#include <asm/pstate.h>
42#include <asm/elf.h>
43#include <asm/fpumacro.h>
44#include <asm/head.h>
45#include <asm/cpudata.h>
David S. Miller74bf4312006-01-31 18:29:18 -080046#include <asm/mmu_context.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#include <asm/unistd.h>
David S. Miller30c91d52006-02-21 16:55:23 -080048#include <asm/hypervisor.h>
David S. Miller22d6a1c2007-05-25 00:37:12 -070049#include <asm/sstate.h>
David S. Millerc3c25242008-02-19 20:39:18 -080050#include <asm/reboot.h>
David S. Millerb1422402008-02-19 21:25:50 -080051#include <asm/syscalls.h>
David S. Miller93dae5b2008-05-19 23:46:00 -070052#include <asm/irq_regs.h>
53#include <asm/smp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
55/* #define VERBOSE_SHOWREGS */
56
David S. Millere02044092007-07-16 03:49:40 -070057static void sparc64_yield(int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -070058{
David S. Miller30c91d52006-02-21 16:55:23 -080059 if (tlb_type != hypervisor)
60 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
David S. Miller30c91d52006-02-21 16:55:23 -080062 clear_thread_flag(TIF_POLLING_NRFLAG);
63 smp_mb__after_clear_bit();
David S. Miller1bd0cd72006-02-21 15:41:01 -080064
David S. Millere02044092007-07-16 03:49:40 -070065 while (!need_resched() && !cpu_is_offline(cpu)) {
David S. Miller30c91d52006-02-21 16:55:23 -080066 unsigned long pstate;
David S. Miller1bd0cd72006-02-21 15:41:01 -080067
David S. Miller30c91d52006-02-21 16:55:23 -080068 /* Disable interrupts. */
69 __asm__ __volatile__(
70 "rdpr %%pstate, %0\n\t"
71 "andn %0, %1, %0\n\t"
72 "wrpr %0, %%g0, %%pstate"
73 : "=&r" (pstate)
74 : "i" (PSTATE_IE));
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
David S. Millere02044092007-07-16 03:49:40 -070076 if (!need_resched() && !cpu_is_offline(cpu))
David S. Miller30c91d52006-02-21 16:55:23 -080077 sun4v_cpu_yield();
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
David S. Miller30c91d52006-02-21 16:55:23 -080079 /* Re-enable interrupts. */
80 __asm__ __volatile__(
81 "rdpr %%pstate, %0\n\t"
82 "or %0, %1, %0\n\t"
83 "wrpr %0, %%g0, %%pstate"
84 : "=&r" (pstate)
85 : "i" (PSTATE_IE));
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 }
David S. Miller30c91d52006-02-21 16:55:23 -080087
88 set_thread_flag(TIF_POLLING_NRFLAG);
Linus Torvalds1da177e2005-04-16 15:20:36 -070089}
90
David S. Miller30c91d52006-02-21 16:55:23 -080091/* The idle loop on sparc64. */
Linus Torvalds1da177e2005-04-16 15:20:36 -070092void cpu_idle(void)
93{
David S. Millere02044092007-07-16 03:49:40 -070094 int cpu = smp_processor_id();
95
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 set_thread_flag(TIF_POLLING_NRFLAG);
Nick Piggin64c7c8f2005-11-08 21:39:04 -080097
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 while(1) {
Thomas Gleixnerb8f8c3c2008-07-18 17:27:28 +020099 tick_nohz_stop_sched_tick(1);
David S. Millere02044092007-07-16 03:49:40 -0700100
101 while (!need_resched() && !cpu_is_offline(cpu))
102 sparc64_yield(cpu);
103
David S. Miller038cb012007-02-22 06:24:45 -0800104 tick_nohz_restart_sched_tick();
105
106 preempt_enable_no_resched();
David S. Millere02044092007-07-16 03:49:40 -0700107
108#ifdef CONFIG_HOTPLUG_CPU
109 if (cpu_is_offline(cpu))
110 cpu_play_dead();
111#endif
112
David S. Miller038cb012007-02-22 06:24:45 -0800113 schedule();
114 preempt_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 }
116}
117
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118void machine_halt(void)
119{
David S. Miller22d6a1c2007-05-25 00:37:12 -0700120 sstate_halt();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 prom_halt();
122 panic("Halt failed!");
123}
124
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125void machine_alt_power_off(void)
126{
David S. Miller22d6a1c2007-05-25 00:37:12 -0700127 sstate_poweroff();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 prom_halt_power_off();
129 panic("Power-off failed!");
130}
131
132void machine_restart(char * cmd)
133{
134 char *p;
135
David S. Miller22d6a1c2007-05-25 00:37:12 -0700136 sstate_reboot();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 p = strchr (reboot_command, '\n');
138 if (p) *p = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 if (cmd)
140 prom_reboot(cmd);
141 if (*reboot_command)
142 prom_reboot(reboot_command);
143 prom_reboot("");
144 panic("Reboot failed!");
145}
146
David S. Miller959a85a2006-01-18 14:58:05 -0800147#ifdef CONFIG_COMPAT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148static void show_regwindow32(struct pt_regs *regs)
149{
150 struct reg_window32 __user *rw;
151 struct reg_window32 r_w;
152 mm_segment_t old_fs;
153
154 __asm__ __volatile__ ("flushw");
155 rw = compat_ptr((unsigned)regs->u_regs[14]);
156 old_fs = get_fs();
157 set_fs (USER_DS);
158 if (copy_from_user (&r_w, rw, sizeof(r_w))) {
159 set_fs (old_fs);
160 return;
161 }
162
163 set_fs (old_fs);
164 printk("l0: %08x l1: %08x l2: %08x l3: %08x "
165 "l4: %08x l5: %08x l6: %08x l7: %08x\n",
166 r_w.locals[0], r_w.locals[1], r_w.locals[2], r_w.locals[3],
167 r_w.locals[4], r_w.locals[5], r_w.locals[6], r_w.locals[7]);
168 printk("i0: %08x i1: %08x i2: %08x i3: %08x "
169 "i4: %08x i5: %08x i6: %08x i7: %08x\n",
170 r_w.ins[0], r_w.ins[1], r_w.ins[2], r_w.ins[3],
171 r_w.ins[4], r_w.ins[5], r_w.ins[6], r_w.ins[7]);
172}
David S. Miller959a85a2006-01-18 14:58:05 -0800173#else
174#define show_regwindow32(regs) do { } while (0)
175#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176
177static void show_regwindow(struct pt_regs *regs)
178{
179 struct reg_window __user *rw;
180 struct reg_window *rwk;
181 struct reg_window r_w;
182 mm_segment_t old_fs;
183
184 if ((regs->tstate & TSTATE_PRIV) || !(test_thread_flag(TIF_32BIT))) {
185 __asm__ __volatile__ ("flushw");
186 rw = (struct reg_window __user *)
187 (regs->u_regs[14] + STACK_BIAS);
188 rwk = (struct reg_window *)
189 (regs->u_regs[14] + STACK_BIAS);
190 if (!(regs->tstate & TSTATE_PRIV)) {
191 old_fs = get_fs();
192 set_fs (USER_DS);
193 if (copy_from_user (&r_w, rw, sizeof(r_w))) {
194 set_fs (old_fs);
195 return;
196 }
197 rwk = &r_w;
198 set_fs (old_fs);
199 }
200 } else {
201 show_regwindow32(regs);
202 return;
203 }
204 printk("l0: %016lx l1: %016lx l2: %016lx l3: %016lx\n",
205 rwk->locals[0], rwk->locals[1], rwk->locals[2], rwk->locals[3]);
206 printk("l4: %016lx l5: %016lx l6: %016lx l7: %016lx\n",
207 rwk->locals[4], rwk->locals[5], rwk->locals[6], rwk->locals[7]);
208 printk("i0: %016lx i1: %016lx i2: %016lx i3: %016lx\n",
209 rwk->ins[0], rwk->ins[1], rwk->ins[2], rwk->ins[3]);
210 printk("i4: %016lx i5: %016lx i6: %016lx i7: %016lx\n",
211 rwk->ins[4], rwk->ins[5], rwk->ins[6], rwk->ins[7]);
212 if (regs->tstate & TSTATE_PRIV)
David S. Miller4fe3ebe2008-07-17 22:11:32 -0700213 printk("I7: <%pS>\n", (void *) rwk->ins[7]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214}
215
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216#ifdef CONFIG_SMP
217static DEFINE_SPINLOCK(regdump_lock);
218#endif
219
220void __show_regs(struct pt_regs * regs)
221{
222#ifdef CONFIG_SMP
223 unsigned long flags;
224
225 /* Protect against xcall ipis which might lead to livelock on the lock */
226 __asm__ __volatile__("rdpr %%pstate, %0\n\t"
227 "wrpr %0, %1, %%pstate"
228 : "=r" (flags)
229 : "i" (PSTATE_IE));
230 spin_lock(&regdump_lock);
231#endif
232 printk("TSTATE: %016lx TPC: %016lx TNPC: %016lx Y: %08x %s\n", regs->tstate,
233 regs->tpc, regs->tnpc, regs->y, print_tainted());
David S. Miller4fe3ebe2008-07-17 22:11:32 -0700234 printk("TPC: <%pS>\n", (void *) regs->tpc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 printk("g0: %016lx g1: %016lx g2: %016lx g3: %016lx\n",
236 regs->u_regs[0], regs->u_regs[1], regs->u_regs[2],
237 regs->u_regs[3]);
238 printk("g4: %016lx g5: %016lx g6: %016lx g7: %016lx\n",
239 regs->u_regs[4], regs->u_regs[5], regs->u_regs[6],
240 regs->u_regs[7]);
241 printk("o0: %016lx o1: %016lx o2: %016lx o3: %016lx\n",
242 regs->u_regs[8], regs->u_regs[9], regs->u_regs[10],
243 regs->u_regs[11]);
244 printk("o4: %016lx o5: %016lx sp: %016lx ret_pc: %016lx\n",
245 regs->u_regs[12], regs->u_regs[13], regs->u_regs[14],
246 regs->u_regs[15]);
David S. Miller4fe3ebe2008-07-17 22:11:32 -0700247 printk("RPC: <%pS>\n", (void *) regs->u_regs[15]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 show_regwindow(regs);
249#ifdef CONFIG_SMP
250 spin_unlock(&regdump_lock);
251 __asm__ __volatile__("wrpr %0, 0, %%pstate"
252 : : "r" (flags));
253#endif
254}
255
256#ifdef VERBOSE_SHOWREGS
257static void idump_from_user (unsigned int *pc)
258{
259 int i;
260 int code;
261
262 if((((unsigned long) pc) & 3))
263 return;
264
265 pc -= 3;
266 for(i = -3; i < 6; i++) {
267 get_user(code, pc);
268 printk("%c%08x%c",i?' ':'<',code,i?' ':'>');
269 pc++;
270 }
271 printk("\n");
272}
273#endif
274
275void show_regs(struct pt_regs *regs)
276{
277#ifdef VERBOSE_SHOWREGS
278 extern long etrap, etraptl1;
279#endif
280 __show_regs(regs);
David S. Miller19a0d582006-02-17 01:17:21 -0800281#if 0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282#ifdef CONFIG_SMP
283 {
284 extern void smp_report_regs(void);
285
286 smp_report_regs();
287 }
288#endif
David S. Miller19a0d582006-02-17 01:17:21 -0800289#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290
291#ifdef VERBOSE_SHOWREGS
292 if (regs->tpc >= &etrap && regs->tpc < &etraptl1 &&
293 regs->u_regs[14] >= (long)current - PAGE_SIZE &&
294 regs->u_regs[14] < (long)current + 6 * PAGE_SIZE) {
295 printk ("*********parent**********\n");
296 __show_regs((struct pt_regs *)(regs->u_regs[14] + PTREGS_OFF));
297 idump_from_user(((struct pt_regs *)(regs->u_regs[14] + PTREGS_OFF))->tpc);
298 printk ("*********endpar**********\n");
299 }
300#endif
301}
302
David S. Miller93dae5b2008-05-19 23:46:00 -0700303struct global_reg_snapshot global_reg_snapshot[NR_CPUS];
304static DEFINE_SPINLOCK(global_reg_snapshot_lock);
305
David S. Miller5afe2732008-07-30 21:57:59 -0700306static bool kstack_valid(struct thread_info *tp, struct reg_window *rw)
307{
308 unsigned long thread_base, fp;
309
310 thread_base = (unsigned long) tp;
311 fp = (unsigned long) rw;
312
313 if (fp < (thread_base + sizeof(struct thread_info)) ||
314 fp >= (thread_base + THREAD_SIZE))
315 return false;
316 return true;
317}
318
David S. Miller93dae5b2008-05-19 23:46:00 -0700319static void __global_reg_self(struct thread_info *tp, struct pt_regs *regs,
320 int this_cpu)
321{
322 flushw_all();
323
324 global_reg_snapshot[this_cpu].tstate = regs->tstate;
325 global_reg_snapshot[this_cpu].tpc = regs->tpc;
326 global_reg_snapshot[this_cpu].tnpc = regs->tnpc;
327 global_reg_snapshot[this_cpu].o7 = regs->u_regs[UREG_I7];
328
329 if (regs->tstate & TSTATE_PRIV) {
David S. Miller5afe2732008-07-30 21:57:59 -0700330 struct thread_info *tp = current_thread_info();
David S. Miller93dae5b2008-05-19 23:46:00 -0700331 struct reg_window *rw;
332
333 rw = (struct reg_window *)
334 (regs->u_regs[UREG_FP] + STACK_BIAS);
David S. Miller5afe2732008-07-30 21:57:59 -0700335 if (kstack_valid(tp, rw)) {
336 global_reg_snapshot[this_cpu].i7 = rw->ins[7];
337 rw = (struct reg_window *)
338 (rw->ins[6] + STACK_BIAS);
339 if (kstack_valid(tp, rw))
340 global_reg_snapshot[this_cpu].rpc = rw->ins[7];
341 }
342 } else {
David S. Miller93dae5b2008-05-19 23:46:00 -0700343 global_reg_snapshot[this_cpu].i7 = 0;
David S. Miller5afe2732008-07-30 21:57:59 -0700344 global_reg_snapshot[this_cpu].rpc = 0;
345 }
David S. Miller93dae5b2008-05-19 23:46:00 -0700346 global_reg_snapshot[this_cpu].thread = tp;
347}
348
349/* In order to avoid hangs we do not try to synchronize with the
350 * global register dump client cpus. The last store they make is to
351 * the thread pointer, so do a short poll waiting for that to become
352 * non-NULL.
353 */
354static void __global_reg_poll(struct global_reg_snapshot *gp)
355{
356 int limit = 0;
357
358 while (!gp->thread && ++limit < 100) {
359 barrier();
360 udelay(1);
361 }
362}
363
David S. Miller09ee1672008-07-30 22:35:00 -0700364void __trigger_all_cpu_backtrace(void)
David S. Miller93dae5b2008-05-19 23:46:00 -0700365{
366 struct thread_info *tp = current_thread_info();
367 struct pt_regs *regs = get_irq_regs();
David S. Miller93dae5b2008-05-19 23:46:00 -0700368 unsigned long flags;
369 int this_cpu, cpu;
370
371 if (!regs)
372 regs = tp->kregs;
373
374 spin_lock_irqsave(&global_reg_snapshot_lock, flags);
375
376 memset(global_reg_snapshot, 0, sizeof(global_reg_snapshot));
377
378 this_cpu = raw_smp_processor_id();
379
380 __global_reg_self(tp, regs, this_cpu);
381
382 smp_fetch_global_regs();
383
384 for_each_online_cpu(cpu) {
385 struct global_reg_snapshot *gp = &global_reg_snapshot[cpu];
386 struct thread_info *tp;
387
388 __global_reg_poll(gp);
389
390 tp = gp->thread;
391 printk("%c CPU[%3d]: TSTATE[%016lx] TPC[%016lx] TNPC[%016lx] TASK[%s:%d]\n",
392 (cpu == this_cpu ? '*' : ' '), cpu,
393 gp->tstate, gp->tpc, gp->tnpc,
394 ((tp && tp->task) ? tp->task->comm : "NULL"),
395 ((tp && tp->task) ? tp->task->pid : -1));
David S. Miller4fe3ebe2008-07-17 22:11:32 -0700396
David S. Miller93dae5b2008-05-19 23:46:00 -0700397 if (gp->tstate & TSTATE_PRIV) {
David S. Miller5afe2732008-07-30 21:57:59 -0700398 printk(" TPC[%pS] O7[%pS] I7[%pS] RPC[%pS]\n",
David S. Miller4fe3ebe2008-07-17 22:11:32 -0700399 (void *) gp->tpc,
400 (void *) gp->o7,
David S. Miller5afe2732008-07-30 21:57:59 -0700401 (void *) gp->i7,
402 (void *) gp->rpc);
David S. Miller4fe3ebe2008-07-17 22:11:32 -0700403 } else {
David S. Miller5afe2732008-07-30 21:57:59 -0700404 printk(" TPC[%lx] O7[%lx] I7[%lx] RPC[%lx]\n",
405 gp->tpc, gp->o7, gp->i7, gp->rpc);
David S. Miller93dae5b2008-05-19 23:46:00 -0700406 }
407 }
408
409 memset(global_reg_snapshot, 0, sizeof(global_reg_snapshot));
410
411 spin_unlock_irqrestore(&global_reg_snapshot_lock, flags);
412}
413
David S. Miller09ee1672008-07-30 22:35:00 -0700414#ifdef CONFIG_MAGIC_SYSRQ
415
416static void sysrq_handle_globreg(int key, struct tty_struct *tty)
417{
418 __trigger_all_cpu_backtrace();
419}
420
David S. Miller93dae5b2008-05-19 23:46:00 -0700421static struct sysrq_key_op sparc_globalreg_op = {
422 .handler = sysrq_handle_globreg,
423 .help_msg = "Globalregs",
424 .action_msg = "Show Global CPU Regs",
425};
426
427static int __init sparc_globreg_init(void)
428{
429 return register_sysrq_key('y', &sparc_globalreg_op);
430}
431
432core_initcall(sparc_globreg_init);
433
434#endif
435
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436unsigned long thread_saved_pc(struct task_struct *tsk)
437{
Al Virof3169642006-01-12 01:05:42 -0800438 struct thread_info *ti = task_thread_info(tsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 unsigned long ret = 0xdeadbeefUL;
440
441 if (ti && ti->ksp) {
442 unsigned long *sp;
443 sp = (unsigned long *)(ti->ksp + STACK_BIAS);
444 if (((unsigned long)sp & (sizeof(long) - 1)) == 0UL &&
445 sp[14]) {
446 unsigned long *fp;
447 fp = (unsigned long *)(sp[14] + STACK_BIAS);
448 if (((unsigned long)fp & (sizeof(long) - 1)) == 0UL)
449 ret = fp[15];
450 }
451 }
452 return ret;
453}
454
455/* Free current thread data structures etc.. */
456void exit_thread(void)
457{
458 struct thread_info *t = current_thread_info();
459
460 if (t->utraps) {
461 if (t->utraps[0] < 2)
462 kfree (t->utraps);
463 else
464 t->utraps[0]--;
465 }
466
467 if (test_and_clear_thread_flag(TIF_PERFCTR)) {
468 t->user_cntd0 = t->user_cntd1 = NULL;
469 t->pcr_reg = 0;
470 write_pcr(0);
471 }
472}
473
474void flush_thread(void)
475{
476 struct thread_info *t = current_thread_info();
David S. Miller74bf4312006-01-31 18:29:18 -0800477 struct mm_struct *mm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478
Mathieu Desnoyersc0a79b22007-03-10 00:19:49 -0800479 if (test_ti_thread_flag(t, TIF_ABI_PENDING)) {
480 clear_ti_thread_flag(t, TIF_ABI_PENDING);
481 if (test_ti_thread_flag(t, TIF_32BIT))
482 clear_ti_thread_flag(t, TIF_32BIT);
483 else
484 set_ti_thread_flag(t, TIF_32BIT);
485 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486
David S. Miller74bf4312006-01-31 18:29:18 -0800487 mm = t->task->mm;
488 if (mm)
David S. Miller98c55842006-01-31 18:31:20 -0800489 tsb_context_switch(mm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 set_thread_wsaved(0);
492
493 /* Turn off performance counters if on. */
494 if (test_and_clear_thread_flag(TIF_PERFCTR)) {
495 t->user_cntd0 = t->user_cntd1 = NULL;
496 t->pcr_reg = 0;
497 write_pcr(0);
498 }
499
500 /* Clear FPU register state. */
501 t->fpsaved[0] = 0;
502
503 if (get_thread_current_ds() != ASI_AIUS)
504 set_fs(USER_DS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505}
506
507/* It's a bit more tricky when 64-bit tasks are involved... */
508static unsigned long clone_stackframe(unsigned long csp, unsigned long psp)
509{
510 unsigned long fp, distance, rval;
511
512 if (!(test_thread_flag(TIF_32BIT))) {
513 csp += STACK_BIAS;
514 psp += STACK_BIAS;
515 __get_user(fp, &(((struct reg_window __user *)psp)->ins[6]));
516 fp += STACK_BIAS;
517 } else
518 __get_user(fp, &(((struct reg_window32 __user *)psp)->ins[6]));
519
520 /* Now 8-byte align the stack as this is mandatory in the
521 * Sparc ABI due to how register windows work. This hides
522 * the restriction from thread libraries etc. -DaveM
523 */
524 csp &= ~7UL;
525
526 distance = fp - psp;
527 rval = (csp - distance);
528 if (copy_in_user((void __user *) rval, (void __user *) psp, distance))
529 rval = 0;
530 else if (test_thread_flag(TIF_32BIT)) {
531 if (put_user(((u32)csp),
532 &(((struct reg_window32 __user *)rval)->ins[6])))
533 rval = 0;
534 } else {
535 if (put_user(((u64)csp - STACK_BIAS),
536 &(((struct reg_window __user *)rval)->ins[6])))
537 rval = 0;
538 else
539 rval = rval - STACK_BIAS;
540 }
541
542 return rval;
543}
544
545/* Standard stuff. */
546static inline void shift_window_buffer(int first_win, int last_win,
547 struct thread_info *t)
548{
549 int i;
550
551 for (i = first_win; i < last_win; i++) {
552 t->rwbuf_stkptrs[i] = t->rwbuf_stkptrs[i+1];
553 memcpy(&t->reg_window[i], &t->reg_window[i+1],
554 sizeof(struct reg_window));
555 }
556}
557
558void synchronize_user_stack(void)
559{
560 struct thread_info *t = current_thread_info();
561 unsigned long window;
562
563 flush_user_windows();
564 if ((window = get_thread_wsaved()) != 0) {
565 int winsize = sizeof(struct reg_window);
566 int bias = 0;
567
568 if (test_thread_flag(TIF_32BIT))
569 winsize = sizeof(struct reg_window32);
570 else
571 bias = STACK_BIAS;
572
573 window -= 1;
574 do {
575 unsigned long sp = (t->rwbuf_stkptrs[window] + bias);
576 struct reg_window *rwin = &t->reg_window[window];
577
578 if (!copy_to_user((char __user *)sp, rwin, winsize)) {
579 shift_window_buffer(window, get_thread_wsaved() - 1, t);
580 set_thread_wsaved(get_thread_wsaved() - 1);
581 }
582 } while (window--);
583 }
584}
585
David S. Miller314ef682006-02-04 00:10:01 -0800586static void stack_unaligned(unsigned long sp)
587{
588 siginfo_t info;
589
590 info.si_signo = SIGBUS;
591 info.si_errno = 0;
592 info.si_code = BUS_ADRALN;
593 info.si_addr = (void __user *) sp;
594 info.si_trapno = 0;
595 force_sig_info(SIGBUS, &info, current);
596}
597
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598void fault_in_user_windows(void)
599{
600 struct thread_info *t = current_thread_info();
601 unsigned long window;
602 int winsize = sizeof(struct reg_window);
603 int bias = 0;
604
605 if (test_thread_flag(TIF_32BIT))
606 winsize = sizeof(struct reg_window32);
607 else
608 bias = STACK_BIAS;
609
610 flush_user_windows();
611 window = get_thread_wsaved();
612
David S. Miller314ef682006-02-04 00:10:01 -0800613 if (likely(window != 0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 window -= 1;
615 do {
616 unsigned long sp = (t->rwbuf_stkptrs[window] + bias);
617 struct reg_window *rwin = &t->reg_window[window];
618
David S. Miller314ef682006-02-04 00:10:01 -0800619 if (unlikely(sp & 0x7UL))
620 stack_unaligned(sp);
621
622 if (unlikely(copy_to_user((char __user *)sp,
623 rwin, winsize)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 goto barf;
625 } while (window--);
626 }
627 set_thread_wsaved(0);
628 return;
629
630barf:
631 set_thread_wsaved(window + 1);
632 do_exit(SIGILL);
633}
634
635asmlinkage long sparc_do_fork(unsigned long clone_flags,
636 unsigned long stack_start,
637 struct pt_regs *regs,
638 unsigned long stack_size)
639{
640 int __user *parent_tid_ptr, *child_tid_ptr;
David S. Miller1e38c122008-05-07 16:21:28 -0700641 unsigned long orig_i1 = regs->u_regs[UREG_I1];
642 long ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643
644#ifdef CONFIG_COMPAT
645 if (test_thread_flag(TIF_32BIT)) {
646 parent_tid_ptr = compat_ptr(regs->u_regs[UREG_I2]);
647 child_tid_ptr = compat_ptr(regs->u_regs[UREG_I4]);
648 } else
649#endif
650 {
651 parent_tid_ptr = (int __user *) regs->u_regs[UREG_I2];
652 child_tid_ptr = (int __user *) regs->u_regs[UREG_I4];
653 }
654
David S. Miller1e38c122008-05-07 16:21:28 -0700655 ret = do_fork(clone_flags, stack_start,
656 regs, stack_size,
657 parent_tid_ptr, child_tid_ptr);
658
659 /* If we get an error and potentially restart the system
660 * call, we're screwed because copy_thread() clobbered
661 * the parent's %o1. So detect that case and restore it
662 * here.
663 */
664 if ((unsigned long)ret >= -ERESTART_RESTARTBLOCK)
665 regs->u_regs[UREG_I1] = orig_i1;
666
667 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668}
669
670/* Copy a Sparc thread. The fork() return value conventions
671 * under SunOS are nothing short of bletcherous:
672 * Parent --> %o0 == childs pid, %o1 == 0
673 * Child --> %o0 == parents pid, %o1 == 1
674 */
675int copy_thread(int nr, unsigned long clone_flags, unsigned long sp,
676 unsigned long unused,
677 struct task_struct *p, struct pt_regs *regs)
678{
Al Viroee3eea12006-01-12 01:05:43 -0800679 struct thread_info *t = task_thread_info(p);
David S. Millera051bc52008-05-21 18:14:28 -0700680 struct sparc_stackf *parent_sf;
681 unsigned long child_stack_sz;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 char *child_trap_frame;
David S. Millera051bc52008-05-21 18:14:28 -0700683 int kernel_thread;
684
685 kernel_thread = (regs->tstate & TSTATE_PRIV) ? 1 : 0;
686 parent_sf = ((struct sparc_stackf *) regs) - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 /* Calculate offset to stack_frame & pt_regs */
David S. Millera051bc52008-05-21 18:14:28 -0700689 child_stack_sz = ((STACKFRAME_SZ + TRACEREG_SZ) +
690 (kernel_thread ? STACKFRAME_SZ : 0));
691 child_trap_frame = (task_stack_page(p) +
692 (THREAD_SIZE - child_stack_sz));
693 memcpy(child_trap_frame, parent_sf, child_stack_sz);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694
David S. Millera051bc52008-05-21 18:14:28 -0700695 t->flags = (t->flags & ~((0xffUL << TI_FLAG_CWP_SHIFT) |
696 (0xffUL << TI_FLAG_CURRENT_DS_SHIFT))) |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 (((regs->tstate + 1) & TSTATE_CWP) << TI_FLAG_CWP_SHIFT);
David S. Millerdb7d9a42005-07-24 19:36:26 -0700698 t->new_child = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 t->ksp = ((unsigned long) child_trap_frame) - STACK_BIAS;
David S. Millera051bc52008-05-21 18:14:28 -0700700 t->kregs = (struct pt_regs *) (child_trap_frame +
701 sizeof(struct sparc_stackf));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 t->fpsaved[0] = 0;
703
David S. Millera051bc52008-05-21 18:14:28 -0700704 if (kernel_thread) {
705 struct sparc_stackf *child_sf = (struct sparc_stackf *)
706 (child_trap_frame + (STACKFRAME_SZ + TRACEREG_SZ));
707
708 /* Zero terminate the stack backtrace. */
709 child_sf->fp = NULL;
710 t->kregs->u_regs[UREG_FP] =
711 ((unsigned long) child_sf) - STACK_BIAS;
712
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 /* Special case, if we are spawning a kernel thread from
Johannes Berg184b6c72008-07-08 19:00:20 +0200714 * a userspace task (usermode helper, NFS or similar), we
715 * must disable performance counters in the child because
716 * the address space and protection realm are changing.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 */
718 if (t->flags & _TIF_PERFCTR) {
719 t->user_cntd0 = t->user_cntd1 = NULL;
720 t->pcr_reg = 0;
721 t->flags &= ~_TIF_PERFCTR;
722 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 t->flags |= ((long)ASI_P << TI_FLAG_CURRENT_DS_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 t->kregs->u_regs[UREG_G6] = (unsigned long) t;
725 t->kregs->u_regs[UREG_G4] = (unsigned long) t->task;
726 } else {
727 if (t->flags & _TIF_32BIT) {
728 sp &= 0x00000000ffffffffUL;
729 regs->u_regs[UREG_FP] &= 0x00000000ffffffffUL;
730 }
731 t->kregs->u_regs[UREG_FP] = sp;
732 t->flags |= ((long)ASI_AIUS << TI_FLAG_CURRENT_DS_SHIFT);
733 if (sp != regs->u_regs[UREG_FP]) {
734 unsigned long csp;
735
736 csp = clone_stackframe(sp, regs->u_regs[UREG_FP]);
737 if (!csp)
738 return -EFAULT;
739 t->kregs->u_regs[UREG_FP] = csp;
740 }
741 if (t->utraps)
742 t->utraps[0]++;
743 }
744
745 /* Set the return value for the child. */
746 t->kregs->u_regs[UREG_I0] = current->pid;
747 t->kregs->u_regs[UREG_I1] = 1;
748
749 /* Set the second return value for the parent. */
750 regs->u_regs[UREG_I1] = 0;
751
752 if (clone_flags & CLONE_SETTLS)
753 t->kregs->u_regs[UREG_G7] = regs->u_regs[UREG_I3];
754
755 return 0;
756}
757
758/*
759 * This is the mechanism for creating a new kernel thread.
760 *
761 * NOTE! Only a kernel-only process(ie the swapper or direct descendants
762 * who haven't done an "execve()") should use this: it will work within
763 * a system call from a "real" process, but the process memory space will
Simon Arlotte5dd42e2007-05-11 13:52:08 -0700764 * not be freed until both the parent and the child have exited.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 */
766pid_t kernel_thread(int (*fn)(void *), void * arg, unsigned long flags)
767{
768 long retval;
769
770 /* If the parent runs before fn(arg) is called by the child,
771 * the input registers of this function can be clobbered.
772 * So we stash 'fn' and 'arg' into global registers which
773 * will not be modified by the parent.
774 */
775 __asm__ __volatile__("mov %4, %%g2\n\t" /* Save FN into global */
776 "mov %5, %%g3\n\t" /* Save ARG into global */
777 "mov %1, %%g1\n\t" /* Clone syscall nr. */
778 "mov %2, %%o0\n\t" /* Clone flags. */
779 "mov 0, %%o1\n\t" /* usp arg == 0 */
780 "t 0x6d\n\t" /* Linux/Sparc clone(). */
781 "brz,a,pn %%o1, 1f\n\t" /* Parent, just return. */
782 " mov %%o0, %0\n\t"
783 "jmpl %%g2, %%o7\n\t" /* Call the function. */
784 " mov %%g3, %%o0\n\t" /* Set arg in delay. */
785 "mov %3, %%g1\n\t"
786 "t 0x6d\n\t" /* Linux/Sparc exit(). */
787 /* Notreached by child. */
788 "1:" :
789 "=r" (retval) :
790 "i" (__NR_clone), "r" (flags | CLONE_VM | CLONE_UNTRACED),
791 "i" (__NR_exit), "r" (fn), "r" (arg) :
792 "g1", "g2", "g3", "o0", "o1", "memory", "cc");
793 return retval;
794}
795
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796typedef struct {
797 union {
798 unsigned int pr_regs[32];
799 unsigned long pr_dregs[16];
800 } pr_fr;
801 unsigned int __unused;
802 unsigned int pr_fsr;
803 unsigned char pr_qcnt;
804 unsigned char pr_q_entrysize;
805 unsigned char pr_en;
806 unsigned int pr_q[64];
807} elf_fpregset_t32;
808
809/*
810 * fill in the fpu structure for a core dump.
811 */
812int dump_fpu (struct pt_regs * regs, elf_fpregset_t * fpregs)
813{
814 unsigned long *kfpregs = current_thread_info()->fpregs;
815 unsigned long fprs = current_thread_info()->fpsaved[0];
816
817 if (test_thread_flag(TIF_32BIT)) {
818 elf_fpregset_t32 *fpregs32 = (elf_fpregset_t32 *)fpregs;
819
820 if (fprs & FPRS_DL)
821 memcpy(&fpregs32->pr_fr.pr_regs[0], kfpregs,
822 sizeof(unsigned int) * 32);
823 else
824 memset(&fpregs32->pr_fr.pr_regs[0], 0,
825 sizeof(unsigned int) * 32);
826 fpregs32->pr_qcnt = 0;
827 fpregs32->pr_q_entrysize = 8;
828 memset(&fpregs32->pr_q[0], 0,
829 (sizeof(unsigned int) * 64));
830 if (fprs & FPRS_FEF) {
831 fpregs32->pr_fsr = (unsigned int) current_thread_info()->xfsr[0];
832 fpregs32->pr_en = 1;
833 } else {
834 fpregs32->pr_fsr = 0;
835 fpregs32->pr_en = 0;
836 }
837 } else {
838 if(fprs & FPRS_DL)
839 memcpy(&fpregs->pr_regs[0], kfpregs,
840 sizeof(unsigned int) * 32);
841 else
842 memset(&fpregs->pr_regs[0], 0,
843 sizeof(unsigned int) * 32);
844 if(fprs & FPRS_DU)
845 memcpy(&fpregs->pr_regs[16], kfpregs+16,
846 sizeof(unsigned int) * 32);
847 else
848 memset(&fpregs->pr_regs[16], 0,
849 sizeof(unsigned int) * 32);
850 if(fprs & FPRS_FEF) {
851 fpregs->pr_fsr = current_thread_info()->xfsr[0];
852 fpregs->pr_gsr = current_thread_info()->gsr[0];
853 } else {
854 fpregs->pr_fsr = fpregs->pr_gsr = 0;
855 }
856 fpregs->pr_fprs = fprs;
857 }
858 return 1;
859}
860
861/*
862 * sparc_execve() executes a new program after the asm stub has set
863 * things up for us. This should basically do what I want it to.
864 */
865asmlinkage int sparc_execve(struct pt_regs *regs)
866{
867 int error, base = 0;
868 char *filename;
869
870 /* User register window flush is done by entry.S */
871
872 /* Check for indirect call. */
873 if (regs->u_regs[UREG_G1] == 0)
874 base = 1;
875
876 filename = getname((char __user *)regs->u_regs[base + UREG_I0]);
877 error = PTR_ERR(filename);
878 if (IS_ERR(filename))
879 goto out;
880 error = do_execve(filename,
881 (char __user * __user *)
882 regs->u_regs[base + UREG_I1],
883 (char __user * __user *)
884 regs->u_regs[base + UREG_I2], regs);
885 putname(filename);
886 if (!error) {
887 fprs_write(0);
888 current_thread_info()->xfsr[0] = 0;
889 current_thread_info()->fpsaved[0] = 0;
890 regs->tstate &= ~TSTATE_PEF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 }
892out:
893 return error;
894}
895
896unsigned long get_wchan(struct task_struct *task)
897{
898 unsigned long pc, fp, bias = 0;
899 unsigned long thread_info_base;
900 struct reg_window *rw;
901 unsigned long ret = 0;
902 int count = 0;
903
904 if (!task || task == current ||
905 task->state == TASK_RUNNING)
906 goto out;
907
Al Viroee3eea12006-01-12 01:05:43 -0800908 thread_info_base = (unsigned long) task_stack_page(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 bias = STACK_BIAS;
Al Virof3169642006-01-12 01:05:42 -0800910 fp = task_thread_info(task)->ksp + bias;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911
912 do {
913 /* Bogus frame pointer? */
914 if (fp < (thread_info_base + sizeof(struct thread_info)) ||
915 fp >= (thread_info_base + THREAD_SIZE))
916 break;
917 rw = (struct reg_window *) fp;
918 pc = rw->ins[7];
919 if (!in_sched_functions(pc)) {
920 ret = pc;
921 goto out;
922 }
923 fp = rw->ins[6] + bias;
924 } while (++count < 16);
925
926out:
927 return ret;
928}