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