patch-2_6_7-vs1_9_1_12
[linux-2.6.git] / arch / ia64 / kernel / process.c
1 /*
2  * Architecture-specific setup.
3  *
4  * Copyright (C) 1998-2003 Hewlett-Packard Co
5  *      David Mosberger-Tang <davidm@hpl.hp.com>
6  */
7 #define __KERNEL_SYSCALLS__     /* see <asm/unistd.h> */
8 #include <linux/config.h>
9
10 #include <linux/cpu.h>
11 #include <linux/pm.h>
12 #include <linux/elf.h>
13 #include <linux/errno.h>
14 #include <linux/kallsyms.h>
15 #include <linux/kernel.h>
16 #include <linux/mm.h>
17 #include <linux/module.h>
18 #include <linux/notifier.h>
19 #include <linux/personality.h>
20 #include <linux/sched.h>
21 #include <linux/slab.h>
22 #include <linux/smp_lock.h>
23 #include <linux/stddef.h>
24 #include <linux/thread_info.h>
25 #include <linux/unistd.h>
26 #include <linux/efi.h>
27 #include <linux/interrupt.h>
28
29 #include <asm/cpu.h>
30 #include <asm/delay.h>
31 #include <asm/elf.h>
32 #include <asm/ia32.h>
33 #include <asm/irq.h>
34 #include <asm/pgalloc.h>
35 #include <asm/processor.h>
36 #include <asm/sal.h>
37 #include <asm/tlbflush.h>
38 #include <asm/uaccess.h>
39 #include <asm/unwind.h>
40 #include <asm/user.h>
41
42 #ifdef CONFIG_PERFMON
43 # include <asm/perfmon.h>
44 #endif
45
46 #include "sigframe.h"
47
48 void (*ia64_mark_idle)(int);
49
50
51 void
52 ia64_do_show_stack (struct unw_frame_info *info, void *arg)
53 {
54         unsigned long ip, sp, bsp;
55         char buf[128];                  /* don't make it so big that it overflows the stack! */
56
57         printk("\nCall Trace:\n");
58         do {
59                 unw_get_ip(info, &ip);
60                 if (ip == 0)
61                         break;
62
63                 unw_get_sp(info, &sp);
64                 unw_get_bsp(info, &bsp);
65                 snprintf(buf, sizeof(buf),
66                          " [<%016lx>] %%s\n"
67                          "                                sp=%016lx bsp=%016lx\n",
68                          ip, sp, bsp);
69                 print_symbol(buf, ip);
70         } while (unw_unwind(info) >= 0);
71 }
72
73 void
74 show_stack (struct task_struct *task, unsigned long *sp)
75 {
76         if (!task)
77                 unw_init_running(ia64_do_show_stack, 0);
78         else {
79                 struct unw_frame_info info;
80
81                 unw_init_from_blocked_task(&info, task);
82                 ia64_do_show_stack(&info, 0);
83         }
84 }
85
86 void
87 dump_stack (void)
88 {
89         show_stack(NULL, NULL);
90 }
91
92 EXPORT_SYMBOL(dump_stack);
93
94 void
95 show_regs (struct pt_regs *regs)
96 {
97         unsigned long ip = regs->cr_iip + ia64_psr(regs)->ri;
98
99         print_modules();
100         printk("\nPid: %d, CPU %d, comm: %20s\n", current->pid, smp_processor_id(), current->comm);
101         printk("psr : %016lx ifs : %016lx ip  : [<%016lx>]    %s\n",
102                regs->cr_ipsr, regs->cr_ifs, ip, print_tainted());
103         print_symbol("ip is at %s\n", ip);
104         printk("unat: %016lx pfs : %016lx rsc : %016lx\n",
105                regs->ar_unat, regs->ar_pfs, regs->ar_rsc);
106         printk("rnat: %016lx bsps: %016lx pr  : %016lx\n",
107                regs->ar_rnat, regs->ar_bspstore, regs->pr);
108         printk("ldrs: %016lx ccv : %016lx fpsr: %016lx\n",
109                regs->loadrs, regs->ar_ccv, regs->ar_fpsr);
110         printk("csd : %016lx ssd : %016lx\n", regs->ar_csd, regs->ar_ssd);
111         printk("b0  : %016lx b6  : %016lx b7  : %016lx\n", regs->b0, regs->b6, regs->b7);
112         printk("f6  : %05lx%016lx f7  : %05lx%016lx\n",
113                regs->f6.u.bits[1], regs->f6.u.bits[0],
114                regs->f7.u.bits[1], regs->f7.u.bits[0]);
115         printk("f8  : %05lx%016lx f9  : %05lx%016lx\n",
116                regs->f8.u.bits[1], regs->f8.u.bits[0],
117                regs->f9.u.bits[1], regs->f9.u.bits[0]);
118         printk("f10 : %05lx%016lx f11 : %05lx%016lx\n",
119                regs->f10.u.bits[1], regs->f10.u.bits[0],
120                regs->f11.u.bits[1], regs->f11.u.bits[0]);
121
122         printk("r1  : %016lx r2  : %016lx r3  : %016lx\n", regs->r1, regs->r2, regs->r3);
123         printk("r8  : %016lx r9  : %016lx r10 : %016lx\n", regs->r8, regs->r9, regs->r10);
124         printk("r11 : %016lx r12 : %016lx r13 : %016lx\n", regs->r11, regs->r12, regs->r13);
125         printk("r14 : %016lx r15 : %016lx r16 : %016lx\n", regs->r14, regs->r15, regs->r16);
126         printk("r17 : %016lx r18 : %016lx r19 : %016lx\n", regs->r17, regs->r18, regs->r19);
127         printk("r20 : %016lx r21 : %016lx r22 : %016lx\n", regs->r20, regs->r21, regs->r22);
128         printk("r23 : %016lx r24 : %016lx r25 : %016lx\n", regs->r23, regs->r24, regs->r25);
129         printk("r26 : %016lx r27 : %016lx r28 : %016lx\n", regs->r26, regs->r27, regs->r28);
130         printk("r29 : %016lx r30 : %016lx r31 : %016lx\n", regs->r29, regs->r30, regs->r31);
131
132         if (user_mode(regs)) {
133                 /* print the stacked registers */
134                 unsigned long val, *bsp, ndirty;
135                 int i, sof, is_nat = 0;
136
137                 sof = regs->cr_ifs & 0x7f;      /* size of frame */
138                 ndirty = (regs->loadrs >> 19);
139                 bsp = ia64_rse_skip_regs((unsigned long *) regs->ar_bspstore, ndirty);
140                 for (i = 0; i < sof; ++i) {
141                         get_user(val, ia64_rse_skip_regs(bsp, i));
142                         printk("r%-3u:%c%016lx%s", 32 + i, is_nat ? '*' : ' ', val,
143                                ((i == sof - 1) || (i % 3) == 2) ? "\n" : " ");
144                 }
145         } else
146                 show_stack(NULL, NULL);
147 }
148
149 void
150 do_notify_resume_user (sigset_t *oldset, struct sigscratch *scr, long in_syscall)
151 {
152         if (fsys_mode(current, &scr->pt)) {
153                 /* defer signal-handling etc. until we return to privilege-level 0.  */
154                 if (!ia64_psr(&scr->pt)->lp)
155                         ia64_psr(&scr->pt)->lp = 1;
156                 return;
157         }
158
159 #ifdef CONFIG_PERFMON
160         if (current->thread.pfm_needs_checking)
161                 pfm_handle_work();
162 #endif
163
164         /* deal with pending signal delivery */
165         if (test_thread_flag(TIF_SIGPENDING))
166                 ia64_do_signal(oldset, scr, in_syscall);
167 }
168
169 static int pal_halt = 1;
170 static int __init nohalt_setup(char * str)
171 {
172         pal_halt = 0;
173         return 1;
174 }
175 __setup("nohalt", nohalt_setup);
176
177 /*
178  * We use this if we don't have any better idle routine..
179  */
180 void
181 default_idle (void)
182 {
183         unsigned long pmu_active = ia64_getreg(_IA64_REG_PSR) & (IA64_PSR_PP | IA64_PSR_UP);
184
185         while (!need_resched())
186                 if (pal_halt && !pmu_active)
187                         safe_halt();
188 }
189
190 #ifdef CONFIG_HOTPLUG_CPU
191 /* We don't actually take CPU down, just spin without interrupts. */
192 static inline void play_dead(void)
193 {
194         extern void ia64_cpu_local_tick (void);
195         /* Ack it */
196         __get_cpu_var(cpu_state) = CPU_DEAD;
197
198         /* We shouldn't have to disable interrupts while dead, but
199          * some interrupts just don't seem to go away, and this makes
200          * it "work" for testing purposes. */
201         max_xtp();
202         local_irq_disable();
203         /* Death loop */
204         while (__get_cpu_var(cpu_state) != CPU_UP_PREPARE)
205                 cpu_relax();
206
207         /*
208          * Enable timer interrupts from now on
209          * Not required if we put processor in SAL_BOOT_RENDEZ mode.
210          */
211         local_flush_tlb_all();
212         cpu_set(smp_processor_id(), cpu_online_map);
213         wmb();
214         ia64_cpu_local_tick ();
215         local_irq_enable();
216 }
217 #else
218 static inline void play_dead(void)
219 {
220         BUG();
221 }
222 #endif /* CONFIG_HOTPLUG_CPU */
223
224 void __attribute__((noreturn))
225 cpu_idle (void *unused)
226 {
227         void (*mark_idle)(int) = ia64_mark_idle;
228
229         /* endless idle loop with no priority at all */
230         while (1) {
231                 void (*idle)(void) = pm_idle;
232                 if (!idle)
233                         idle = default_idle;
234
235 #ifdef CONFIG_SMP
236                 if (!need_resched())
237                         min_xtp();
238 #endif
239                 while (!need_resched()) {
240                         if (mark_idle)
241                                 (*mark_idle)(1);
242                         (*idle)();
243                 }
244
245                 if (mark_idle)
246                         (*mark_idle)(0);
247
248 #ifdef CONFIG_SMP
249                 normal_xtp();
250 #endif
251                 schedule();
252                 check_pgt_cache();
253                 if (cpu_is_offline(smp_processor_id()))
254                         play_dead();
255         }
256 }
257
258 void
259 ia64_save_extra (struct task_struct *task)
260 {
261 #ifdef CONFIG_PERFMON
262         unsigned long info;
263 #endif
264
265         if ((task->thread.flags & IA64_THREAD_DBG_VALID) != 0)
266                 ia64_save_debug_regs(&task->thread.dbr[0]);
267
268 #ifdef CONFIG_PERFMON
269         if ((task->thread.flags & IA64_THREAD_PM_VALID) != 0)
270                 pfm_save_regs(task);
271
272         info = __get_cpu_var(pfm_syst_info);
273         if (info & PFM_CPUINFO_SYST_WIDE)
274                 pfm_syst_wide_update_task(task, info, 0);
275 #endif
276
277 #ifdef CONFIG_IA32_SUPPORT
278         if (IS_IA32_PROCESS(ia64_task_regs(task)))
279                 ia32_save_state(task);
280 #endif
281 }
282
283 void
284 ia64_load_extra (struct task_struct *task)
285 {
286 #ifdef CONFIG_PERFMON
287         unsigned long info;
288 #endif
289
290         if ((task->thread.flags & IA64_THREAD_DBG_VALID) != 0)
291                 ia64_load_debug_regs(&task->thread.dbr[0]);
292
293 #ifdef CONFIG_PERFMON
294         if ((task->thread.flags & IA64_THREAD_PM_VALID) != 0)
295                 pfm_load_regs(task);
296
297         info = __get_cpu_var(pfm_syst_info);
298         if (info & PFM_CPUINFO_SYST_WIDE) 
299                 pfm_syst_wide_update_task(task, info, 1);
300 #endif
301
302 #ifdef CONFIG_IA32_SUPPORT
303         if (IS_IA32_PROCESS(ia64_task_regs(task)))
304                 ia32_load_state(task);
305 #endif
306 }
307
308 /*
309  * Copy the state of an ia-64 thread.
310  *
311  * We get here through the following  call chain:
312  *
313  *      from user-level:        from kernel:
314  *
315  *      <clone syscall>         <some kernel call frames>
316  *      sys_clone                  :
317  *      do_fork                 do_fork
318  *      copy_thread             copy_thread
319  *
320  * This means that the stack layout is as follows:
321  *
322  *      +---------------------+ (highest addr)
323  *      |   struct pt_regs    |
324  *      +---------------------+
325  *      | struct switch_stack |
326  *      +---------------------+
327  *      |                     |
328  *      |    memory stack     |
329  *      |                     | <-- sp (lowest addr)
330  *      +---------------------+
331  *
332  * Observe that we copy the unat values that are in pt_regs and switch_stack.  Spilling an
333  * integer to address X causes bit N in ar.unat to be set to the NaT bit of the register,
334  * with N=(X & 0x1ff)/8.  Thus, copying the unat value preserves the NaT bits ONLY if the
335  * pt_regs structure in the parent is congruent to that of the child, modulo 512.  Since
336  * the stack is page aligned and the page size is at least 4KB, this is always the case,
337  * so there is nothing to worry about.
338  */
339 int
340 copy_thread (int nr, unsigned long clone_flags,
341              unsigned long user_stack_base, unsigned long user_stack_size,
342              struct task_struct *p, struct pt_regs *regs)
343 {
344         extern char ia64_ret_from_clone, ia32_ret_from_clone;
345         struct switch_stack *child_stack, *stack;
346         unsigned long rbs, child_rbs, rbs_size;
347         struct pt_regs *child_ptregs;
348         int retval = 0;
349
350 #ifdef CONFIG_SMP
351         /*
352          * For SMP idle threads, fork_by_hand() calls do_fork with
353          * NULL regs.
354          */
355         if (!regs)
356                 return 0;
357 #endif
358
359         stack = ((struct switch_stack *) regs) - 1;
360
361         child_ptregs = (struct pt_regs *) ((unsigned long) p + IA64_STK_OFFSET) - 1;
362         child_stack = (struct switch_stack *) child_ptregs - 1;
363
364         /* copy parent's switch_stack & pt_regs to child: */
365         memcpy(child_stack, stack, sizeof(*child_ptregs) + sizeof(*child_stack));
366
367         rbs = (unsigned long) current + IA64_RBS_OFFSET;
368         child_rbs = (unsigned long) p + IA64_RBS_OFFSET;
369         rbs_size = stack->ar_bspstore - rbs;
370
371         /* copy the parent's register backing store to the child: */
372         memcpy((void *) child_rbs, (void *) rbs, rbs_size);
373
374         if (likely(user_mode(child_ptregs))) {
375                 if ((clone_flags & CLONE_SETTLS) && !IS_IA32_PROCESS(regs))
376                         child_ptregs->r13 = regs->r16;  /* see sys_clone2() in entry.S */
377                 if (user_stack_base) {
378                         child_ptregs->r12 = user_stack_base + user_stack_size - 16;
379                         child_ptregs->ar_bspstore = user_stack_base;
380                         child_ptregs->ar_rnat = 0;
381                         child_ptregs->loadrs = 0;
382                 }
383         } else {
384                 /*
385                  * Note: we simply preserve the relative position of
386                  * the stack pointer here.  There is no need to
387                  * allocate a scratch area here, since that will have
388                  * been taken care of by the caller of sys_clone()
389                  * already.
390                  */
391                 child_ptregs->r12 = (unsigned long) child_ptregs - 16; /* kernel sp */
392                 child_ptregs->r13 = (unsigned long) p;          /* set `current' pointer */
393         }
394         child_stack->ar_bspstore = child_rbs + rbs_size;
395         if (IS_IA32_PROCESS(regs))
396                 child_stack->b0 = (unsigned long) &ia32_ret_from_clone;
397         else
398                 child_stack->b0 = (unsigned long) &ia64_ret_from_clone;
399
400         /* copy parts of thread_struct: */
401         p->thread.ksp = (unsigned long) child_stack - 16;
402
403         /* stop some PSR bits from being inherited.
404          * the psr.up/psr.pp bits must be cleared on fork but inherited on execve()
405          * therefore we must specify them explicitly here and not include them in
406          * IA64_PSR_BITS_TO_CLEAR.
407          */
408         child_ptregs->cr_ipsr = ((child_ptregs->cr_ipsr | IA64_PSR_BITS_TO_SET)
409                                  & ~(IA64_PSR_BITS_TO_CLEAR | IA64_PSR_PP | IA64_PSR_UP));
410
411         /*
412          * NOTE: The calling convention considers all floating point
413          * registers in the high partition (fph) to be scratch.  Since
414          * the only way to get to this point is through a system call,
415          * we know that the values in fph are all dead.  Hence, there
416          * is no need to inherit the fph state from the parent to the
417          * child and all we have to do is to make sure that
418          * IA64_THREAD_FPH_VALID is cleared in the child.
419          *
420          * XXX We could push this optimization a bit further by
421          * clearing IA64_THREAD_FPH_VALID on ANY system call.
422          * However, it's not clear this is worth doing.  Also, it
423          * would be a slight deviation from the normal Linux system
424          * call behavior where scratch registers are preserved across
425          * system calls (unless used by the system call itself).
426          */
427 #       define THREAD_FLAGS_TO_CLEAR    (IA64_THREAD_FPH_VALID | IA64_THREAD_DBG_VALID \
428                                          | IA64_THREAD_PM_VALID)
429 #       define THREAD_FLAGS_TO_SET      0
430         p->thread.flags = ((current->thread.flags & ~THREAD_FLAGS_TO_CLEAR)
431                            | THREAD_FLAGS_TO_SET);
432         ia64_drop_fpu(p);       /* don't pick up stale state from a CPU's fph */
433 #ifdef CONFIG_IA32_SUPPORT
434         /*
435          * If we're cloning an IA32 task then save the IA32 extra
436          * state from the current task to the new task
437          */
438         if (IS_IA32_PROCESS(ia64_task_regs(current))) {
439                 ia32_save_state(p);
440                 if (clone_flags & CLONE_SETTLS)
441                         retval = ia32_clone_tls(p, child_ptregs);
442         }
443 #endif
444
445 #ifdef CONFIG_PERFMON
446         if (current->thread.pfm_context)
447                 pfm_inherit(p, child_ptregs);
448 #endif
449         return retval;
450 }
451
452 static void
453 do_copy_task_regs (struct task_struct *task, struct unw_frame_info *info, void *arg)
454 {
455         unsigned long mask, sp, nat_bits = 0, ip, ar_rnat, urbs_end, cfm;
456         elf_greg_t *dst = arg;
457         struct pt_regs *pt;
458         char nat;
459         int i;
460
461         memset(dst, 0, sizeof(elf_gregset_t));  /* don't leak any kernel bits to user-level */
462
463         if (unw_unwind_to_user(info) < 0)
464                 return;
465
466         unw_get_sp(info, &sp);
467         pt = (struct pt_regs *) (sp + 16);
468
469         urbs_end = ia64_get_user_rbs_end(task, pt, &cfm);
470
471         if (ia64_sync_user_rbs(task, info->sw, pt->ar_bspstore, urbs_end) < 0)
472                 return;
473
474         ia64_peek(task, info->sw, urbs_end, (long) ia64_rse_rnat_addr((long *) urbs_end),
475                   &ar_rnat);
476
477         /*
478          * coredump format:
479          *      r0-r31
480          *      NaT bits (for r0-r31; bit N == 1 iff rN is a NaT)
481          *      predicate registers (p0-p63)
482          *      b0-b7
483          *      ip cfm user-mask
484          *      ar.rsc ar.bsp ar.bspstore ar.rnat
485          *      ar.ccv ar.unat ar.fpsr ar.pfs ar.lc ar.ec
486          */
487
488         /* r0 is zero */
489         for (i = 1, mask = (1UL << i); i < 32; ++i) {
490                 unw_get_gr(info, i, &dst[i], &nat);
491                 if (nat)
492                         nat_bits |= mask;
493                 mask <<= 1;
494         }
495         dst[32] = nat_bits;
496         unw_get_pr(info, &dst[33]);
497
498         for (i = 0; i < 8; ++i)
499                 unw_get_br(info, i, &dst[34 + i]);
500
501         unw_get_rp(info, &ip);
502         dst[42] = ip + ia64_psr(pt)->ri;
503         dst[43] = cfm;
504         dst[44] = pt->cr_ipsr & IA64_PSR_UM;
505
506         unw_get_ar(info, UNW_AR_RSC, &dst[45]);
507         /*
508          * For bsp and bspstore, unw_get_ar() would return the kernel
509          * addresses, but we need the user-level addresses instead:
510          */
511         dst[46] = urbs_end;     /* note: by convention PT_AR_BSP points to the end of the urbs! */
512         dst[47] = pt->ar_bspstore;
513         dst[48] = ar_rnat;
514         unw_get_ar(info, UNW_AR_CCV, &dst[49]);
515         unw_get_ar(info, UNW_AR_UNAT, &dst[50]);
516         unw_get_ar(info, UNW_AR_FPSR, &dst[51]);
517         dst[52] = pt->ar_pfs;   /* UNW_AR_PFS is == to pt->cr_ifs for interrupt frames */
518         unw_get_ar(info, UNW_AR_LC, &dst[53]);
519         unw_get_ar(info, UNW_AR_EC, &dst[54]);
520         unw_get_ar(info, UNW_AR_CSD, &dst[55]);
521         unw_get_ar(info, UNW_AR_SSD, &dst[56]);
522 }
523
524 void
525 do_dump_task_fpu (struct task_struct *task, struct unw_frame_info *info, void *arg)
526 {
527         elf_fpreg_t *dst = arg;
528         int i;
529
530         memset(dst, 0, sizeof(elf_fpregset_t)); /* don't leak any "random" bits */
531
532         if (unw_unwind_to_user(info) < 0)
533                 return;
534
535         /* f0 is 0.0, f1 is 1.0 */
536
537         for (i = 2; i < 32; ++i)
538                 unw_get_fr(info, i, dst + i);
539
540         ia64_flush_fph(task);
541         if ((task->thread.flags & IA64_THREAD_FPH_VALID) != 0)
542                 memcpy(dst + 32, task->thread.fph, 96*16);
543 }
544
545 void
546 do_copy_regs (struct unw_frame_info *info, void *arg)
547 {
548         do_copy_task_regs(current, info, arg);
549 }
550
551 void
552 do_dump_fpu (struct unw_frame_info *info, void *arg)
553 {
554         do_dump_task_fpu(current, info, arg);
555 }
556
557 int
558 dump_task_regs(struct task_struct *task, elf_gregset_t *regs)
559 {
560         struct unw_frame_info tcore_info;
561
562         if (current == task) {
563                 unw_init_running(do_copy_regs, regs);
564         } else {
565                 memset(&tcore_info, 0, sizeof(tcore_info));
566                 unw_init_from_blocked_task(&tcore_info, task);
567                 do_copy_task_regs(task, &tcore_info, regs);
568         }
569         return 1;
570 }
571
572 void
573 ia64_elf_core_copy_regs (struct pt_regs *pt, elf_gregset_t dst)
574 {
575         unw_init_running(do_copy_regs, dst);
576 }
577
578 int
579 dump_task_fpu (struct task_struct *task, elf_fpregset_t *dst)
580 {
581         struct unw_frame_info tcore_info;
582
583         if (current == task) {
584                 unw_init_running(do_dump_fpu, dst);
585         } else {
586                 memset(&tcore_info, 0, sizeof(tcore_info));
587                 unw_init_from_blocked_task(&tcore_info, task);
588                 do_dump_task_fpu(task, &tcore_info, dst);
589         }
590         return 1;
591 }
592
593 int
594 dump_fpu (struct pt_regs *pt, elf_fpregset_t dst)
595 {
596         unw_init_running(do_dump_fpu, dst);
597         return 1;       /* f0-f31 are always valid so we always return 1 */
598 }
599
600 asmlinkage long
601 sys_execve (char *filename, char **argv, char **envp, struct pt_regs *regs)
602 {
603         int error;
604
605         filename = getname(filename);
606         error = PTR_ERR(filename);
607         if (IS_ERR(filename))
608                 goto out;
609         error = do_execve(filename, argv, envp, regs);
610         putname(filename);
611 out:
612         return error;
613 }
614
615 void
616 ia64_set_personality (struct elf64_hdr *elf_ex, int ibcs2_interpreter)
617 {
618         set_personality(PER_LINUX);
619         if (elf_ex->e_flags & EF_IA_64_LINUX_EXECUTABLE_STACK)
620                 current->thread.flags |= IA64_THREAD_XSTACK;
621         else
622                 current->thread.flags &= ~IA64_THREAD_XSTACK;
623 }
624
625 pid_t
626 kernel_thread (int (*fn)(void *), void *arg, unsigned long flags)
627 {
628         extern void start_kernel_thread (void);
629         unsigned long *helper_fptr = (unsigned long *) &start_kernel_thread;
630         struct {
631                 struct switch_stack sw;
632                 struct pt_regs pt;
633         } regs;
634
635         memset(&regs, 0, sizeof(regs));
636         regs.pt.cr_iip = helper_fptr[0];        /* set entry point (IP) */
637         regs.pt.r1 = helper_fptr[1];            /* set GP */
638         regs.pt.r9 = (unsigned long) fn;        /* 1st argument */
639         regs.pt.r11 = (unsigned long) arg;      /* 2nd argument */
640         /* Preserve PSR bits, except for bits 32-34 and 37-45, which we can't read.  */
641         regs.pt.cr_ipsr = ia64_getreg(_IA64_REG_PSR) | IA64_PSR_BN;
642         regs.pt.cr_ifs = 1UL << 63;             /* mark as valid, empty frame */
643         regs.sw.ar_fpsr = regs.pt.ar_fpsr = ia64_getreg(_IA64_REG_AR_FPSR);
644         regs.sw.ar_bspstore = (unsigned long) current + IA64_RBS_OFFSET;
645
646         return do_fork(flags | CLONE_VM | CLONE_UNTRACED, 0, &regs.pt, 0, NULL, NULL);
647 }
648 EXPORT_SYMBOL(kernel_thread);
649
650 /* This gets called from kernel_thread() via ia64_invoke_thread_helper().  */
651 int
652 kernel_thread_helper (int (*fn)(void *), void *arg)
653 {
654 #ifdef CONFIG_IA32_SUPPORT
655         if (IS_IA32_PROCESS(ia64_task_regs(current))) {
656                 /* A kernel thread is always a 64-bit process. */
657                 current->thread.map_base  = DEFAULT_MAP_BASE;
658                 current->thread.task_size = DEFAULT_TASK_SIZE;
659                 ia64_set_kr(IA64_KR_IO_BASE, current->thread.old_iob);
660                 ia64_set_kr(IA64_KR_TSSD, current->thread.old_k1);
661         }
662 #endif
663         return (*fn)(arg);
664 }
665
666 /*
667  * Flush thread state.  This is called when a thread does an execve().
668  */
669 void
670 flush_thread (void)
671 {
672         /* drop floating-point and debug-register state if it exists: */
673         current->thread.flags &= ~(IA64_THREAD_FPH_VALID | IA64_THREAD_DBG_VALID);
674         ia64_drop_fpu(current);
675 }
676
677 /*
678  * Clean up state associated with current thread.  This is called when
679  * the thread calls exit().
680  */
681 void
682 exit_thread (void)
683 {
684         ia64_drop_fpu(current);
685 #ifdef CONFIG_PERFMON
686        /* if needed, stop monitoring and flush state to perfmon context */
687         if (current->thread.pfm_context)
688                 pfm_exit_thread(current);
689
690         /* free debug register resources */
691         if (current->thread.flags & IA64_THREAD_DBG_VALID)
692                 pfm_release_debug_registers(current);
693 #endif
694 }
695
696 unsigned long
697 get_wchan (struct task_struct *p)
698 {
699         struct unw_frame_info info;
700         unsigned long ip;
701         int count = 0;
702
703         /*
704          * Note: p may not be a blocked task (it could be current or
705          * another process running on some other CPU.  Rather than
706          * trying to determine if p is really blocked, we just assume
707          * it's blocked and rely on the unwind routines to fail
708          * gracefully if the process wasn't really blocked after all.
709          * --davidm 99/12/15
710          */
711         unw_init_from_blocked_task(&info, p);
712         do {
713                 if (unw_unwind(&info) < 0)
714                         return 0;
715                 unw_get_ip(&info, &ip);
716                 if (!in_sched_functions(ip))
717                         return ip;
718         } while (count++ < 16);
719         return 0;
720 }
721
722 void
723 cpu_halt (void)
724 {
725         pal_power_mgmt_info_u_t power_info[8];
726         unsigned long min_power;
727         int i, min_power_state;
728
729         if (ia64_pal_halt_info(power_info) != 0)
730                 return;
731
732         min_power_state = 0;
733         min_power = power_info[0].pal_power_mgmt_info_s.power_consumption;
734         for (i = 1; i < 8; ++i)
735                 if (power_info[i].pal_power_mgmt_info_s.im
736                     && power_info[i].pal_power_mgmt_info_s.power_consumption < min_power) {
737                         min_power = power_info[i].pal_power_mgmt_info_s.power_consumption;
738                         min_power_state = i;
739                 }
740
741         while (1)
742                 ia64_pal_halt(min_power_state);
743 }
744
745 void
746 machine_restart (char *restart_cmd)
747 {
748         (*efi.reset_system)(EFI_RESET_WARM, 0, 0, 0);
749 }
750
751 EXPORT_SYMBOL(machine_restart);
752
753 void
754 machine_halt (void)
755 {
756         cpu_halt();
757 }
758
759 EXPORT_SYMBOL(machine_halt);
760
761 void
762 machine_power_off (void)
763 {
764         if (pm_power_off)
765                 pm_power_off();
766         machine_halt();
767 }
768
769 EXPORT_SYMBOL(machine_power_off);