process.c 22 KB

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