process.c 19.1 KB
Newer Older
Linus Torvalds's avatar
Linus Torvalds committed
1 2 3
/*
 * Architecture-specific setup.
 *
David Mosberger's avatar
David Mosberger committed
4 5
 * Copyright (C) 1998-2002 Hewlett-Packard Co
 *	David Mosberger-Tang <davidm@hpl.hp.com>
Linus Torvalds's avatar
Linus Torvalds committed
6 7 8 9 10 11 12
 */
#define __KERNEL_SYSCALLS__	/* see <asm/unistd.h> */
#include <linux/config.h>

#include <linux/pm.h>
#include <linux/elf.h>
#include <linux/errno.h>
13
#include <linux/kallsyms.h>
Linus Torvalds's avatar
Linus Torvalds committed
14 15
#include <linux/kernel.h>
#include <linux/mm.h>
David Mosberger's avatar
David Mosberger committed
16
#include <linux/module.h>
David Mosberger's avatar
David Mosberger committed
17
#include <linux/personality.h>
Linus Torvalds's avatar
Linus Torvalds committed
18 19 20 21
#include <linux/sched.h>
#include <linux/slab.h>
#include <linux/smp_lock.h>
#include <linux/stddef.h>
David Mosberger's avatar
David Mosberger committed
22
#include <linux/thread_info.h>
Linus Torvalds's avatar
Linus Torvalds committed
23
#include <linux/unistd.h>
24
#include <linux/efi.h>
Linus Torvalds's avatar
Linus Torvalds committed
25 26

#include <asm/delay.h>
David Mosberger's avatar
David Mosberger committed
27
#include <asm/elf.h>
Linus Torvalds's avatar
Linus Torvalds committed
28
#include <asm/perfmon.h>
29
#include <asm/pgalloc.h>
Linus Torvalds's avatar
Linus Torvalds committed
30 31 32 33 34 35
#include <asm/processor.h>
#include <asm/sal.h>
#include <asm/uaccess.h>
#include <asm/unwind.h>
#include <asm/user.h>

David Mosberger's avatar
David Mosberger committed
36 37 38 39 40 41 42 43 44 45
#ifdef CONFIG_IA64_SGI_SN
#include <asm/sn/idle.h>
#endif

#ifdef CONFIG_PERFMON
# include <asm/perfmon.h>
#endif

#include "sigframe.h"

Linus Torvalds's avatar
Linus Torvalds committed
46 47 48 49
static void
do_show_stack (struct unw_frame_info *info, void *arg)
{
	unsigned long ip, sp, bsp;
David Mosberger's avatar
David Mosberger committed
50
	char buf[80];			/* don't make it so big that it overflows the stack! */
Linus Torvalds's avatar
Linus Torvalds committed
51

David Mosberger's avatar
David Mosberger committed
52
	printk("\nCall Trace:\n");
Linus Torvalds's avatar
Linus Torvalds committed
53 54 55 56 57 58 59
	do {
		unw_get_ip(info, &ip);
		if (ip == 0)
			break;

		unw_get_sp(info, &sp);
		unw_get_bsp(info, &bsp);
David Mosberger's avatar
David Mosberger committed
60 61 62
		snprintf(buf, sizeof(buf), " [<%016lx>] %%s sp=0x%016lx bsp=0x%016lx\n",
			 ip, sp, bsp);
		print_symbol(buf, ip);
Linus Torvalds's avatar
Linus Torvalds committed
63 64 65
	} while (unw_unwind(info) >= 0);
}

David Mosberger's avatar
David Mosberger committed
66 67 68 69 70 71 72 73 74
void
show_trace_task (struct task_struct *task)
{
	struct unw_frame_info info;

	unw_init_from_blocked_task(&info, task);
	do_show_stack(&info, 0);
}

Linus Torvalds's avatar
Linus Torvalds committed
75 76 77 78 79 80 81 82 83 84 85 86 87
void
show_stack (struct task_struct *task)
{
	if (!task)
		unw_init_running(do_show_stack, 0);
	else {
		struct unw_frame_info info;

		unw_init_from_blocked_task(&info, task);
		do_show_stack(&info, 0);
	}
}

88 89 90 91 92 93
void
dump_stack (void)
{
	show_stack(NULL);
}

Linus Torvalds's avatar
Linus Torvalds committed
94 95 96 97 98
void
show_regs (struct pt_regs *regs)
{
	unsigned long ip = regs->cr_iip + ia64_psr(regs)->ri;

Linus Torvalds's avatar
Linus Torvalds committed
99 100
	printk("\nPid: %d, comm: %20s\n", current->pid, current->comm);
	printk("psr : %016lx ifs : %016lx ip  : [<%016lx>]    %s\n",
Linus Torvalds's avatar
Linus Torvalds committed
101
	       regs->cr_ipsr, regs->cr_ifs, ip, print_tainted());
David Mosberger's avatar
David Mosberger committed
102
	print_symbol("ip is at %s\n", ip);
Linus Torvalds's avatar
Linus Torvalds committed
103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126
	printk("unat: %016lx pfs : %016lx rsc : %016lx\n",
	       regs->ar_unat, regs->ar_pfs, regs->ar_rsc);
	printk("rnat: %016lx bsps: %016lx pr  : %016lx\n",
	       regs->ar_rnat, regs->ar_bspstore, regs->pr);
	printk("ldrs: %016lx ccv : %016lx fpsr: %016lx\n",
	       regs->loadrs, regs->ar_ccv, regs->ar_fpsr);
	printk("b0  : %016lx b6  : %016lx b7  : %016lx\n", regs->b0, regs->b6, regs->b7);
	printk("f6  : %05lx%016lx f7  : %05lx%016lx\n",
	       regs->f6.u.bits[1], regs->f6.u.bits[0],
	       regs->f7.u.bits[1], regs->f7.u.bits[0]);
	printk("f8  : %05lx%016lx f9  : %05lx%016lx\n",
	       regs->f8.u.bits[1], regs->f8.u.bits[0],
	       regs->f9.u.bits[1], regs->f9.u.bits[0]);

	printk("r1  : %016lx r2  : %016lx r3  : %016lx\n", regs->r1, regs->r2, regs->r3);
	printk("r8  : %016lx r9  : %016lx r10 : %016lx\n", regs->r8, regs->r9, regs->r10);
	printk("r11 : %016lx r12 : %016lx r13 : %016lx\n", regs->r11, regs->r12, regs->r13);
	printk("r14 : %016lx r15 : %016lx r16 : %016lx\n", regs->r14, regs->r15, regs->r16);
	printk("r17 : %016lx r18 : %016lx r19 : %016lx\n", regs->r17, regs->r18, regs->r19);
	printk("r20 : %016lx r21 : %016lx r22 : %016lx\n", regs->r20, regs->r21, regs->r22);
	printk("r23 : %016lx r24 : %016lx r25 : %016lx\n", regs->r23, regs->r24, regs->r25);
	printk("r26 : %016lx r27 : %016lx r28 : %016lx\n", regs->r26, regs->r27, regs->r28);
	printk("r29 : %016lx r30 : %016lx r31 : %016lx\n", regs->r29, regs->r30, regs->r31);

David Mosberger's avatar
David Mosberger committed
127 128
	if (user_mode(regs)) {
		/* print the stacked registers */
Linus Torvalds's avatar
Linus Torvalds committed
129 130 131 132 133 134 135 136 137 138 139
		unsigned long val, sof, *bsp, ndirty;
		int i, is_nat = 0;

		sof = regs->cr_ifs & 0x7f;	/* size of frame */
		ndirty = (regs->loadrs >> 19);
		bsp = ia64_rse_skip_regs((unsigned long *) regs->ar_bspstore, ndirty);
		for (i = 0; i < sof; ++i) {
			get_user(val, ia64_rse_skip_regs(bsp, i));
			printk("r%-3u:%c%016lx%s", 32 + i, is_nat ? '*' : ' ', val,
			       ((i == sof - 1) || (i % 3) == 2) ? "\n" : " ");
		}
David Mosberger's avatar
David Mosberger committed
140
	} else
Linus Torvalds's avatar
Linus Torvalds committed
141 142 143
		show_stack(0);
}

David Mosberger's avatar
David Mosberger committed
144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159
void
do_notify_resume_user (sigset_t *oldset, struct sigscratch *scr, long in_syscall)
{
#ifdef CONFIG_PERFMON
	if (current->thread.pfm_ovfl_block_reset)
		pfm_ovfl_block_reset();
#endif

	/* deal with pending signal delivery */
	if (test_thread_flag(TIF_SIGPENDING))
		ia64_do_signal(oldset, scr, in_syscall);
}

/*
 * We use this if we don't have any better idle routine..
 */
160
void
David Mosberger's avatar
David Mosberger committed
161 162 163 164 165
default_idle (void)
{
	/* may want to do PAL_LIGHT_HALT here... */
}

Linus Torvalds's avatar
Linus Torvalds committed
166 167 168 169 170 171
void __attribute__((noreturn))
cpu_idle (void *unused)
{
	/* endless idle loop with no priority at all */
	while (1) {
#ifdef CONFIG_SMP
Linus Torvalds's avatar
Linus Torvalds committed
172
		if (!need_resched())
Linus Torvalds's avatar
Linus Torvalds committed
173 174
			min_xtp();
#endif
David Mosberger's avatar
David Mosberger committed
175 176 177 178 179 180 181 182 183 184 185 186 187 188 189

		while (!need_resched()) {
#ifdef CONFIG_IA64_SGI_SN
			snidle();
#endif
			if (pm_idle)
				(*pm_idle)();
			else
				default_idle();
		}

#ifdef CONFIG_IA64_SGI_SN
		snidleoff();
#endif

Linus Torvalds's avatar
Linus Torvalds committed
190 191 192 193 194 195 196 197 198 199 200 201 202
#ifdef CONFIG_SMP
		normal_xtp();
#endif
		schedule();
		check_pgt_cache();
	}
}

void
ia64_save_extra (struct task_struct *task)
{
	if ((task->thread.flags & IA64_THREAD_DBG_VALID) != 0)
		ia64_save_debug_regs(&task->thread.dbr[0]);
David Mosberger's avatar
David Mosberger committed
203

Linus Torvalds's avatar
Linus Torvalds committed
204 205
#ifdef CONFIG_PERFMON
	if ((task->thread.flags & IA64_THREAD_PM_VALID) != 0)
Linus Torvalds's avatar
Linus Torvalds committed
206
		pfm_save_regs(task);
David Mosberger's avatar
David Mosberger committed
207

Rusty Russell's avatar
Rusty Russell committed
208
	if (__get_cpu_var(pfm_syst_wide))
209
		pfm_syst_wide_update_task(task, 0);
Linus Torvalds's avatar
Linus Torvalds committed
210
#endif
David Mosberger's avatar
David Mosberger committed
211

212
#ifdef CONFIG_IA32_SUPPORT
Linus Torvalds's avatar
Linus Torvalds committed
213
	if (IS_IA32_PROCESS(ia64_task_regs(task)))
Linus Torvalds's avatar
Linus Torvalds committed
214
		ia32_save_state(task);
215
#endif
Linus Torvalds's avatar
Linus Torvalds committed
216 217 218 219 220 221 222
}

void
ia64_load_extra (struct task_struct *task)
{
	if ((task->thread.flags & IA64_THREAD_DBG_VALID) != 0)
		ia64_load_debug_regs(&task->thread.dbr[0]);
David Mosberger's avatar
David Mosberger committed
223

Linus Torvalds's avatar
Linus Torvalds committed
224 225
#ifdef CONFIG_PERFMON
	if ((task->thread.flags & IA64_THREAD_PM_VALID) != 0)
Linus Torvalds's avatar
Linus Torvalds committed
226
		pfm_load_regs(task);
David Mosberger's avatar
David Mosberger committed
227

228 229
	if (__get_cpu_var(pfm_syst_wide)) 
		pfm_syst_wide_update_task(task, 1);
Linus Torvalds's avatar
Linus Torvalds committed
230
#endif
David Mosberger's avatar
David Mosberger committed
231

232
#ifdef CONFIG_IA32_SUPPORT
Linus Torvalds's avatar
Linus Torvalds committed
233
	if (IS_IA32_PROCESS(ia64_task_regs(task)))
Linus Torvalds's avatar
Linus Torvalds committed
234
		ia32_load_state(task);
235
#endif
Linus Torvalds's avatar
Linus Torvalds committed
236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259
}

/*
 * Copy the state of an ia-64 thread.
 *
 * We get here through the following  call chain:
 *
 *	<clone syscall>
 *	sys_clone
 *	do_fork
 *	copy_thread
 *
 * This means that the stack layout is as follows:
 *
 *	+---------------------+ (highest addr)
 *	|   struct pt_regs    |
 *	+---------------------+
 *	| struct switch_stack |
 *	+---------------------+
 *	|                     |
 *	|    memory stack     |
 *	|                     | <-- sp (lowest addr)
 *	+---------------------+
 *
260 261
 * Note: if we get called through kernel_thread() then the memory above "(highest addr)"
 * is valid kernel stack memory that needs to be copied as well.
Linus Torvalds's avatar
Linus Torvalds committed
262
 *
263 264 265 266 267 268
 * Observe that we copy the unat values that are in pt_regs and switch_stack.  Spilling an
 * integer to address X causes bit N in ar.unat to be set to the NaT bit of the register,
 * with N=(X & 0x1ff)/8.  Thus, copying the unat value preserves the NaT bits ONLY if the
 * pt_regs structure in the parent is congruent to that of the child, modulo 512.  Since
 * the stack is page aligned and the page size is at least 4KB, this is always the case,
 * so there is nothing to worry about.
Linus Torvalds's avatar
Linus Torvalds committed
269 270 271 272 273 274 275 276
 */
int
copy_thread (int nr, unsigned long clone_flags,
	     unsigned long user_stack_base, unsigned long user_stack_size,
	     struct task_struct *p, struct pt_regs *regs)
{
	unsigned long rbs, child_rbs, rbs_size, stack_offset, stack_top, stack_used;
	struct switch_stack *child_stack, *stack;
Linus Torvalds's avatar
Linus Torvalds committed
277
	extern char ia64_ret_from_clone, ia32_ret_from_clone;
Linus Torvalds's avatar
Linus Torvalds committed
278
	struct pt_regs *child_ptregs;
Linus Torvalds's avatar
Linus Torvalds committed
279
	int retval = 0;
Linus Torvalds's avatar
Linus Torvalds committed
280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308

#ifdef CONFIG_SMP
	/*
	 * For SMP idle threads, fork_by_hand() calls do_fork with
	 * NULL regs.
	 */
	if (!regs)
		return 0;
#endif

	stack_top = (unsigned long) current + IA64_STK_OFFSET;
	stack = ((struct switch_stack *) regs) - 1;
	stack_used = stack_top - (unsigned long) stack;
	stack_offset = IA64_STK_OFFSET - stack_used;

	child_stack = (struct switch_stack *) ((unsigned long) p + stack_offset);
	child_ptregs = (struct pt_regs *) (child_stack + 1);

	/* copy parent's switch_stack & pt_regs to child: */
	memcpy(child_stack, stack, stack_used);

	rbs = (unsigned long) current + IA64_RBS_OFFSET;
	child_rbs = (unsigned long) p + IA64_RBS_OFFSET;
	rbs_size = stack->ar_bspstore - rbs;

	/* copy the parent's register backing store to the child: */
	memcpy((void *) child_rbs, (void *) rbs, rbs_size);

	if (user_mode(child_ptregs)) {
309 310
		if (clone_flags & CLONE_SETTLS)
			child_ptregs->r13 = regs->r16;	/* see sys_clone2() in entry.S */
Linus Torvalds's avatar
Linus Torvalds committed
311
		if (user_stack_base) {
David Mosberger's avatar
David Mosberger committed
312
			child_ptregs->r12 = user_stack_base + user_stack_size - 16;
Linus Torvalds's avatar
Linus Torvalds committed
313 314 315 316 317 318 319 320 321 322 323 324 325 326 327
			child_ptregs->ar_bspstore = user_stack_base;
			child_ptregs->ar_rnat = 0;
			child_ptregs->loadrs = 0;
		}
	} else {
		/*
		 * Note: we simply preserve the relative position of
		 * the stack pointer here.  There is no need to
		 * allocate a scratch area here, since that will have
		 * been taken care of by the caller of sys_clone()
		 * already.
		 */
		child_ptregs->r12 = (unsigned long) (child_ptregs + 1); /* kernel sp */
		child_ptregs->r13 = (unsigned long) p;		/* set `current' pointer */
	}
Linus Torvalds's avatar
Linus Torvalds committed
328 329 330 331
	if (IS_IA32_PROCESS(regs))
		child_stack->b0 = (unsigned long) &ia32_ret_from_clone;
	else
		child_stack->b0 = (unsigned long) &ia64_ret_from_clone;
Linus Torvalds's avatar
Linus Torvalds committed
332 333 334 335
	child_stack->ar_bspstore = child_rbs + rbs_size;

	/* copy parts of thread_struct: */
	p->thread.ksp = (unsigned long) child_stack - 16;
336 337 338 339 340

	/* stop some PSR bits from being inherited: */
	child_ptregs->cr_ipsr =  ((child_ptregs->cr_ipsr | IA64_PSR_BITS_TO_SET)
				  & ~IA64_PSR_BITS_TO_CLEAR);

Linus Torvalds's avatar
Linus Torvalds committed
341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367
	/*
	 * NOTE: The calling convention considers all floating point
	 * registers in the high partition (fph) to be scratch.  Since
	 * the only way to get to this point is through a system call,
	 * we know that the values in fph are all dead.  Hence, there
	 * is no need to inherit the fph state from the parent to the
	 * child and all we have to do is to make sure that
	 * IA64_THREAD_FPH_VALID is cleared in the child.
	 *
	 * XXX We could push this optimization a bit further by
	 * clearing IA64_THREAD_FPH_VALID on ANY system call.
	 * However, it's not clear this is worth doing.  Also, it
	 * would be a slight deviation from the normal Linux system
	 * call behavior where scratch registers are preserved across
	 * system calls (unless used by the system call itself).
	 */
#	define THREAD_FLAGS_TO_CLEAR	(IA64_THREAD_FPH_VALID | IA64_THREAD_DBG_VALID \
					 | IA64_THREAD_PM_VALID)
#	define THREAD_FLAGS_TO_SET	0
	p->thread.flags = ((current->thread.flags & ~THREAD_FLAGS_TO_CLEAR)
			   | THREAD_FLAGS_TO_SET);
#ifdef CONFIG_IA32_SUPPORT
	/*
	 * If we're cloning an IA32 task then save the IA32 extra
	 * state from the current task to the new task
	 */
	if (IS_IA32_PROCESS(ia64_task_regs(current)))
Linus Torvalds's avatar
Linus Torvalds committed
368
		ia32_save_state(p);
Linus Torvalds's avatar
Linus Torvalds committed
369
#endif
David Mosberger's avatar
David Mosberger committed
370

Linus Torvalds's avatar
Linus Torvalds committed
371
#ifdef CONFIG_PERFMON
David Mosberger's avatar
David Mosberger committed
372 373 374 375 376
	/*
	 * reset notifiers and owner check (may not have a perfmon context)
	 */
	atomic_set(&p->thread.pfm_notifiers_check, 0);
	atomic_set(&p->thread.pfm_owners_check, 0);
377 378
	/* clear list of sampling buffer to free for new task */
	p->thread.pfm_smpl_buf_list = NULL;
David Mosberger's avatar
David Mosberger committed
379

380 381
	if (current->thread.pfm_context)
		retval = pfm_inherit(p, child_ptregs);
Linus Torvalds's avatar
Linus Torvalds committed
382 383
#endif
	return retval;
Linus Torvalds's avatar
Linus Torvalds committed
384 385 386 387
}

void
do_copy_regs (struct unw_frame_info *info, void *arg)
388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412
{
	do_copy_task_regs(current, info, arg);
}

void
do_dump_fpu (struct unw_frame_info *info, void *arg)
{
	do_dump_task_fpu(current, info, arg);
}

void
ia64_elf_core_copy_regs (struct pt_regs *pt, elf_gregset_t dst)
{
	unw_init_running(do_copy_regs, dst);
}

int
dump_fpu (struct pt_regs *pt, elf_fpregset_t dst)
{
	unw_init_running(do_dump_fpu, dst);
	return 1;	/* f0-f31 are always valid so we always return 1 */
}

static void
do_copy_task_regs (struct task_struct *task, struct unw_frame_info *info, void *arg)
Linus Torvalds's avatar
Linus Torvalds committed
413
{
Linus Torvalds's avatar
Linus Torvalds committed
414
	unsigned long mask, sp, nat_bits = 0, ip, ar_rnat, urbs_end, cfm;
Linus Torvalds's avatar
Linus Torvalds committed
415 416 417 418 419 420 421 422 423 424 425 426 427
	elf_greg_t *dst = arg;
	struct pt_regs *pt;
	char nat;
	int i;

	memset(dst, 0, sizeof(elf_gregset_t));	/* don't leak any kernel bits to user-level */

	if (unw_unwind_to_user(info) < 0)
		return;

	unw_get_sp(info, &sp);
	pt = (struct pt_regs *) (sp + 16);

428
	urbs_end = ia64_get_user_rbs_end(task, pt, &cfm);
Linus Torvalds's avatar
Linus Torvalds committed
429

430
	if (ia64_sync_user_rbs(task, info->sw, pt->ar_bspstore, urbs_end) < 0)
Linus Torvalds's avatar
Linus Torvalds committed
431
		return;
Linus Torvalds's avatar
Linus Torvalds committed
432

433
	ia64_peek(task, info->sw, urbs_end, (long) ia64_rse_rnat_addr((long *) urbs_end),
Linus Torvalds's avatar
Linus Torvalds committed
434
		  &ar_rnat);
Linus Torvalds's avatar
Linus Torvalds committed
435

Linus Torvalds's avatar
Linus Torvalds committed
436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461
	/*
	 * coredump format:
	 *	r0-r31
	 *	NaT bits (for r0-r31; bit N == 1 iff rN is a NaT)
	 *	predicate registers (p0-p63)
	 *	b0-b7
	 *	ip cfm user-mask
	 *	ar.rsc ar.bsp ar.bspstore ar.rnat
	 *	ar.ccv ar.unat ar.fpsr ar.pfs ar.lc ar.ec
	 */

	/* r0 is zero */
	for (i = 1, mask = (1UL << i); i < 32; ++i) {
		unw_get_gr(info, i, &dst[i], &nat);
		if (nat)
			nat_bits |= mask;
		mask <<= 1;
	}
	dst[32] = nat_bits;
	unw_get_pr(info, &dst[33]);

	for (i = 0; i < 8; ++i)
		unw_get_br(info, i, &dst[34 + i]);

	unw_get_rp(info, &ip);
	dst[42] = ip + ia64_psr(pt)->ri;
Linus Torvalds's avatar
Linus Torvalds committed
462
	dst[43] = cfm;
Linus Torvalds's avatar
Linus Torvalds committed
463 464 465 466 467 468 469
	dst[44] = pt->cr_ipsr & IA64_PSR_UM;

	unw_get_ar(info, UNW_AR_RSC, &dst[45]);
	/*
	 * For bsp and bspstore, unw_get_ar() would return the kernel
	 * addresses, but we need the user-level addresses instead:
	 */
Linus Torvalds's avatar
Linus Torvalds committed
470
	dst[46] = urbs_end;	/* note: by convention PT_AR_BSP points to the end of the urbs! */
Linus Torvalds's avatar
Linus Torvalds committed
471
	dst[47] = pt->ar_bspstore;
Linus Torvalds's avatar
Linus Torvalds committed
472
	dst[48] = ar_rnat;
Linus Torvalds's avatar
Linus Torvalds committed
473 474 475 476 477 478 479 480 481
	unw_get_ar(info, UNW_AR_CCV, &dst[49]);
	unw_get_ar(info, UNW_AR_UNAT, &dst[50]);
	unw_get_ar(info, UNW_AR_FPSR, &dst[51]);
	dst[52] = pt->ar_pfs;	/* UNW_AR_PFS is == to pt->cr_ifs for interrupt frames */
	unw_get_ar(info, UNW_AR_LC, &dst[53]);
	unw_get_ar(info, UNW_AR_EC, &dst[54]);
}

void
482
do_dump_task_fpu (struct task_struct *task, struct unw_frame_info *info, void *arg)
Linus Torvalds's avatar
Linus Torvalds committed
483 484 485 486 487 488 489 490 491 492 493 494 495 496
{
	elf_fpreg_t *dst = arg;
	int i;

	memset(dst, 0, sizeof(elf_fpregset_t));	/* don't leak any "random" bits */

	if (unw_unwind_to_user(info) < 0)
		return;

	/* f0 is 0.0, f1 is 1.0 */

	for (i = 2; i < 32; ++i)
		unw_get_fr(info, i, dst + i);

497 498 499
	ia64_flush_fph(task);
	if ((task->thread.flags & IA64_THREAD_FPH_VALID) != 0)
		memcpy(dst + 32, task->thread.fph, 96*16);
Linus Torvalds's avatar
Linus Torvalds committed
500 501
}

502
int dump_task_regs(struct task_struct *task, elf_gregset_t *regs)
Linus Torvalds's avatar
Linus Torvalds committed
503
{
504 505 506 507 508 509 510 511 512 513 514 515
	struct unw_frame_info tcore_info;

	if(current == task) {
		unw_init_running(do_copy_regs, regs);
	}
	else {
		memset(&tcore_info, 0, sizeof(tcore_info));	
		unw_init_from_blocked_task(&tcore_info, task);
		do_copy_task_regs(task, &tcore_info, regs);
	}

	return 1;
Linus Torvalds's avatar
Linus Torvalds committed
516 517
}

518
int dump_task_fpu (struct task_struct *task, elf_fpregset_t *dst)
Linus Torvalds's avatar
Linus Torvalds committed
519
{
520 521 522 523 524 525 526 527 528 529 530 531
	struct unw_frame_info tcore_info;

	if(current == task) {
		unw_init_running(do_dump_fpu, dst);
	}
	else {
		memset(&tcore_info, 0, sizeof(tcore_info));	
		unw_init_from_blocked_task(&tcore_info, task);
		do_dump_task_fpu(task, &tcore_info, dst);
	}

	return 1; 
Linus Torvalds's avatar
Linus Torvalds committed
532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548
}

asmlinkage long
sys_execve (char *filename, char **argv, char **envp, struct pt_regs *regs)
{
	int error;

	filename = getname(filename);
	error = PTR_ERR(filename);
	if (IS_ERR(filename))
		goto out;
	error = do_execve(filename, argv, envp, regs);
	putname(filename);
out:
	return error;
}

David Mosberger's avatar
David Mosberger committed
549 550 551 552 553 554 555 556 557 558
void
ia64_set_personality (struct elf64_hdr *elf_ex, int ibcs2_interpreter)
{
	set_personality(PER_LINUX);
	if (elf_ex->e_flags & EF_IA_64_LINUX_EXECUTABLE_STACK)
		current->thread.flags |= IA64_THREAD_XSTACK;
	else
		current->thread.flags &= ~IA64_THREAD_XSTACK;
}

Linus Torvalds's avatar
Linus Torvalds committed
559 560 561 562 563 564
pid_t
kernel_thread (int (*fn)(void *), void *arg, unsigned long flags)
{
	struct task_struct *parent = current;
	int result, tid;

565
	tid = clone(flags | CLONE_VM | CLONE_UNTRACED, 0);
Linus Torvalds's avatar
Linus Torvalds committed
566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587
	if (parent != current) {
		result = (*fn)(arg);
		_exit(result);
	}
	return tid;
}

/*
 * Flush thread state.  This is called when a thread does an execve().
 */
void
flush_thread (void)
{
	/* drop floating-point and debug-register state if it exists: */
	current->thread.flags &= ~(IA64_THREAD_FPH_VALID | IA64_THREAD_DBG_VALID);

#ifndef CONFIG_SMP
	if (ia64_get_fpu_owner() == current)
		ia64_set_fpu_owner(0);
#endif
}

Linus Torvalds's avatar
Linus Torvalds committed
588
#ifdef CONFIG_PERFMON
Linus Torvalds's avatar
Linus Torvalds committed
589
/*
David Mosberger's avatar
David Mosberger committed
590 591 592 593 594 595 596
 * by the time we get here, the task is detached from the tasklist. This is important
 * because it means that no other tasks can ever find it as a notified task, therfore there
 * is no race condition between this code and let's say a pfm_context_create().
 * Conversely, the pfm_cleanup_notifiers() cannot try to access a task's pfm context if this
 * other task is in the middle of its own pfm_context_exit() because it would already be out of
 * the task list. Note that this case is very unlikely between a direct child and its parents
 * (if it is the notified process) because of the way the exit is notified via SIGCHLD.
Linus Torvalds's avatar
Linus Torvalds committed
597
 */
David Mosberger's avatar
David Mosberger committed
598

Linus Torvalds's avatar
Linus Torvalds committed
599 600 601 602 603
void
release_thread (struct task_struct *task)
{
	if (task->thread.pfm_context)
		pfm_context_exit(task);
Linus Torvalds's avatar
Linus Torvalds committed
604 605 606

	if (atomic_read(&task->thread.pfm_notifiers_check) > 0)
		pfm_cleanup_notifiers(task);
David Mosberger's avatar
David Mosberger committed
607 608 609 610 611 612

	if (atomic_read(&task->thread.pfm_owners_check) > 0)
		pfm_cleanup_owners(task);

	if (task->thread.pfm_smpl_buf_list)
		pfm_cleanup_smpl_buf(task);
Linus Torvalds's avatar
Linus Torvalds committed
613 614 615
}
#endif

Linus Torvalds's avatar
Linus Torvalds committed
616 617 618 619 620 621 622 623 624 625 626 627
/*
 * Clean up state associated with current thread.  This is called when
 * the thread calls exit().
 */
void
exit_thread (void)
{
#ifndef CONFIG_SMP
	if (ia64_get_fpu_owner() == current)
		ia64_set_fpu_owner(0);
#endif
#ifdef CONFIG_PERFMON
David Mosberger's avatar
David Mosberger committed
628 629
       /* if needed, stop monitoring and flush state to perfmon context */
	if (current->thread.pfm_context) 
Linus Torvalds's avatar
Linus Torvalds committed
630
		pfm_flush_regs(current);
David Mosberger's avatar
David Mosberger committed
631 632

	/* free debug register resources */
633
	if (current->thread.flags & IA64_THREAD_DBG_VALID)
David Mosberger's avatar
David Mosberger committed
634
		pfm_release_debug_registers(current);
Linus Torvalds's avatar
Linus Torvalds committed
635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672
#endif
}

unsigned long
get_wchan (struct task_struct *p)
{
	struct unw_frame_info info;
	unsigned long ip;
	int count = 0;
	/*
	 * These bracket the sleeping functions..
	 */
	extern void scheduling_functions_start_here(void);
	extern void scheduling_functions_end_here(void);
#	define first_sched	((unsigned long) scheduling_functions_start_here)
#	define last_sched	((unsigned long) scheduling_functions_end_here)

	/*
	 * Note: p may not be a blocked task (it could be current or
	 * another process running on some other CPU.  Rather than
	 * trying to determine if p is really blocked, we just assume
	 * it's blocked and rely on the unwind routines to fail
	 * gracefully if the process wasn't really blocked after all.
	 * --davidm 99/12/15
	 */
	unw_init_from_blocked_task(&info, p);
	do {
		if (unw_unwind(&info) < 0)
			return 0;
		unw_get_ip(&info, &ip);
		if (ip < first_sched || ip >= last_sched)
			return ip;
	} while (count++ < 16);
	return 0;
#	undef first_sched
#	undef last_sched
}

Linus Torvalds's avatar
Linus Torvalds committed
673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695
void
cpu_halt (void)
{
	pal_power_mgmt_info_u_t power_info[8];
	unsigned long min_power;
	int i, min_power_state;

	if (ia64_pal_halt_info(power_info) != 0)
		return;

	min_power_state = 0;
	min_power = power_info[0].pal_power_mgmt_info_s.power_consumption;
	for (i = 1; i < 8; ++i)
		if (power_info[i].pal_power_mgmt_info_s.im
		    && power_info[i].pal_power_mgmt_info_s.power_consumption < min_power) {
			min_power = power_info[i].pal_power_mgmt_info_s.power_consumption;
			min_power_state = i;
		}

	while (1)
		ia64_pal_halt(min_power_state);
}

Linus Torvalds's avatar
Linus Torvalds committed
696 697 698 699 700 701 702 703 704
void
machine_restart (char *restart_cmd)
{
	(*efi.reset_system)(EFI_RESET_WARM, 0, 0, 0);
}

void
machine_halt (void)
{
Linus Torvalds's avatar
Linus Torvalds committed
705
	cpu_halt();
Linus Torvalds's avatar
Linus Torvalds committed
706 707 708 709 710
}

void
machine_power_off (void)
{
Linus Torvalds's avatar
Linus Torvalds committed
711 712
	if (pm_power_off)
		pm_power_off();
Linus Torvalds's avatar
Linus Torvalds committed
713
	machine_halt();
Linus Torvalds's avatar
Linus Torvalds committed
714
}
David Mosberger's avatar
David Mosberger committed
715 716 717 718 719 720 721 722 723 724 725

void __init
init_task_struct_cache (void)
{
}

struct task_struct *
dup_task_struct(struct task_struct *orig)
{
	struct task_struct *tsk;

726
	tsk = (void *) __get_free_pages(GFP_KERNEL, KERNEL_STACK_SIZE_ORDER);
David Mosberger's avatar
David Mosberger committed
727 728 729 730 731 732 733 734 735 736 737 738 739 740
	if (!tsk)
		return NULL;

	memcpy(tsk, orig, sizeof(struct task_struct) + sizeof(struct thread_info));
	tsk->thread_info = (struct thread_info *) ((char *) tsk + IA64_TASK_SIZE);
	atomic_set(&tsk->usage, 1);
	return tsk;
}

void
__put_task_struct (struct task_struct *tsk)
{
	free_pages((unsigned long) tsk, KERNEL_STACK_SIZE_ORDER);
}