Merge remote branch 'common/android-2.6.36' into android-tegra-2.6.36
[firefly-linux-kernel-4.4.55.git] / arch / tile / kernel / process.c
1 /*
2  * Copyright 2010 Tilera Corporation. All Rights Reserved.
3  *
4  *   This program is free software; you can redistribute it and/or
5  *   modify it under the terms of the GNU General Public License
6  *   as published by the Free Software Foundation, version 2.
7  *
8  *   This program is distributed in the hope that it will be useful, but
9  *   WITHOUT ANY WARRANTY; without even the implied warranty of
10  *   MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or
11  *   NON INFRINGEMENT.  See the GNU General Public License for
12  *   more details.
13  */
14
15 #include <linux/sched.h>
16 #include <linux/preempt.h>
17 #include <linux/module.h>
18 #include <linux/fs.h>
19 #include <linux/kprobes.h>
20 #include <linux/elfcore.h>
21 #include <linux/tick.h>
22 #include <linux/init.h>
23 #include <linux/mm.h>
24 #include <linux/compat.h>
25 #include <linux/hardirq.h>
26 #include <linux/syscalls.h>
27 #include <linux/kernel.h>
28 #include <asm/system.h>
29 #include <asm/stack.h>
30 #include <asm/homecache.h>
31 #include <asm/syscalls.h>
32 #ifdef CONFIG_HARDWALL
33 #include <asm/hardwall.h>
34 #endif
35 #include <arch/chip.h>
36 #include <arch/abi.h>
37
38
39 /*
40  * Use the (x86) "idle=poll" option to prefer low latency when leaving the
41  * idle loop over low power while in the idle loop, e.g. if we have
42  * one thread per core and we want to get threads out of futex waits fast.
43  */
44 static int no_idle_nap;
45 static int __init idle_setup(char *str)
46 {
47         if (!str)
48                 return -EINVAL;
49
50         if (!strcmp(str, "poll")) {
51                 pr_info("using polling idle threads.\n");
52                 no_idle_nap = 1;
53         } else if (!strcmp(str, "halt"))
54                 no_idle_nap = 0;
55         else
56                 return -1;
57
58         return 0;
59 }
60 early_param("idle", idle_setup);
61
62 /*
63  * The idle thread. There's no useful work to be
64  * done, so just try to conserve power and have a
65  * low exit latency (ie sit in a loop waiting for
66  * somebody to say that they'd like to reschedule)
67  */
68 void cpu_idle(void)
69 {
70         int cpu = smp_processor_id();
71
72
73         current_thread_info()->status |= TS_POLLING;
74
75         if (no_idle_nap) {
76                 while (1) {
77                         while (!need_resched())
78                                 cpu_relax();
79                         schedule();
80                 }
81         }
82
83         /* endless idle loop with no priority at all */
84         while (1) {
85                 tick_nohz_stop_sched_tick(1);
86                 while (!need_resched()) {
87                         if (cpu_is_offline(cpu))
88                                 BUG();  /* no HOTPLUG_CPU */
89
90                         local_irq_disable();
91                         __get_cpu_var(irq_stat).idle_timestamp = jiffies;
92                         current_thread_info()->status &= ~TS_POLLING;
93                         /*
94                          * TS_POLLING-cleared state must be visible before we
95                          * test NEED_RESCHED:
96                          */
97                         smp_mb();
98
99                         if (!need_resched())
100                                 _cpu_idle();
101                         else
102                                 local_irq_enable();
103                         current_thread_info()->status |= TS_POLLING;
104                 }
105                 tick_nohz_restart_sched_tick();
106                 preempt_enable_no_resched();
107                 schedule();
108                 preempt_disable();
109         }
110 }
111
112 struct thread_info *alloc_thread_info(struct task_struct *task)
113 {
114         struct page *page;
115         gfp_t flags = GFP_KERNEL;
116
117 #ifdef CONFIG_DEBUG_STACK_USAGE
118         flags |= __GFP_ZERO;
119 #endif
120
121         page = alloc_pages(flags, THREAD_SIZE_ORDER);
122         if (!page)
123                 return NULL;
124
125         return (struct thread_info *)page_address(page);
126 }
127
128 /*
129  * Free a thread_info node, and all of its derivative
130  * data structures.
131  */
132 void free_thread_info(struct thread_info *info)
133 {
134         struct single_step_state *step_state = info->step_state;
135
136 #ifdef CONFIG_HARDWALL
137         /*
138          * We free a thread_info from the context of the task that has
139          * been scheduled next, so the original task is already dead.
140          * Calling deactivate here just frees up the data structures.
141          * If the task we're freeing held the last reference to a
142          * hardwall fd, it would have been released prior to this point
143          * anyway via exit_files(), and "hardwall" would be NULL by now.
144          */
145         if (info->task->thread.hardwall)
146                 hardwall_deactivate(info->task);
147 #endif
148
149         if (step_state) {
150
151                 /*
152                  * FIXME: we don't munmap step_state->buffer
153                  * because the mm_struct for this process (info->task->mm)
154                  * has already been zeroed in exit_mm().  Keeping a
155                  * reference to it here seems like a bad move, so this
156                  * means we can't munmap() the buffer, and therefore if we
157                  * ptrace multiple threads in a process, we will slowly
158                  * leak user memory.  (Note that as soon as the last
159                  * thread in a process dies, we will reclaim all user
160                  * memory including single-step buffers in the usual way.)
161                  * We should either assign a kernel VA to this buffer
162                  * somehow, or we should associate the buffer(s) with the
163                  * mm itself so we can clean them up that way.
164                  */
165                 kfree(step_state);
166         }
167
168         free_page((unsigned long)info);
169 }
170
171 static void save_arch_state(struct thread_struct *t);
172
173 int copy_thread(unsigned long clone_flags, unsigned long sp,
174                 unsigned long stack_size,
175                 struct task_struct *p, struct pt_regs *regs)
176 {
177         struct pt_regs *childregs;
178         unsigned long ksp;
179
180         /*
181          * When creating a new kernel thread we pass sp as zero.
182          * Assign it to a reasonable value now that we have the stack.
183          */
184         if (sp == 0 && regs->ex1 == PL_ICS_EX1(KERNEL_PL, 0))
185                 sp = KSTK_TOP(p);
186
187         /*
188          * Do not clone step state from the parent; each thread
189          * must make its own lazily.
190          */
191         task_thread_info(p)->step_state = NULL;
192
193         /*
194          * Start new thread in ret_from_fork so it schedules properly
195          * and then return from interrupt like the parent.
196          */
197         p->thread.pc = (unsigned long) ret_from_fork;
198
199         /* Save user stack top pointer so we can ID the stack vm area later. */
200         p->thread.usp0 = sp;
201
202         /* Record the pid of the process that created this one. */
203         p->thread.creator_pid = current->pid;
204
205         /*
206          * Copy the registers onto the kernel stack so the
207          * return-from-interrupt code will reload it into registers.
208          */
209         childregs = task_pt_regs(p);
210         *childregs = *regs;
211         childregs->regs[0] = 0;         /* return value is zero */
212         childregs->sp = sp;  /* override with new user stack pointer */
213
214         /*
215          * If CLONE_SETTLS is set, set "tp" in the new task to "r4",
216          * which is passed in as arg #5 to sys_clone().
217          */
218         if (clone_flags & CLONE_SETTLS)
219                 childregs->tp = regs->regs[4];
220
221         /*
222          * Copy the callee-saved registers from the passed pt_regs struct
223          * into the context-switch callee-saved registers area.
224          * We have to restore the callee-saved registers since we may
225          * be cloning a userspace task with userspace register state,
226          * and we won't be unwinding the same kernel frames to restore them.
227          * Zero out the C ABI save area to mark the top of the stack.
228          */
229         ksp = (unsigned long) childregs;
230         ksp -= C_ABI_SAVE_AREA_SIZE;   /* interrupt-entry save area */
231         ((long *)ksp)[0] = ((long *)ksp)[1] = 0;
232         ksp -= CALLEE_SAVED_REGS_COUNT * sizeof(unsigned long);
233         memcpy((void *)ksp, &regs->regs[CALLEE_SAVED_FIRST_REG],
234                CALLEE_SAVED_REGS_COUNT * sizeof(unsigned long));
235         ksp -= C_ABI_SAVE_AREA_SIZE;   /* __switch_to() save area */
236         ((long *)ksp)[0] = ((long *)ksp)[1] = 0;
237         p->thread.ksp = ksp;
238
239 #if CHIP_HAS_TILE_DMA()
240         /*
241          * No DMA in the new thread.  We model this on the fact that
242          * fork() clears the pending signals, alarms, and aio for the child.
243          */
244         memset(&p->thread.tile_dma_state, 0, sizeof(struct tile_dma_state));
245         memset(&p->thread.dma_async_tlb, 0, sizeof(struct async_tlb));
246 #endif
247
248 #if CHIP_HAS_SN_PROC()
249         /* Likewise, the new thread is not running static processor code. */
250         p->thread.sn_proc_running = 0;
251         memset(&p->thread.sn_async_tlb, 0, sizeof(struct async_tlb));
252 #endif
253
254 #if CHIP_HAS_PROC_STATUS_SPR()
255         /* New thread has its miscellaneous processor state bits clear. */
256         p->thread.proc_status = 0;
257 #endif
258
259 #ifdef CONFIG_HARDWALL
260         /* New thread does not own any networks. */
261         p->thread.hardwall = NULL;
262 #endif
263
264
265         /*
266          * Start the new thread with the current architecture state
267          * (user interrupt masks, etc.).
268          */
269         save_arch_state(&p->thread);
270
271         return 0;
272 }
273
274 /*
275  * Return "current" if it looks plausible, or else a pointer to a dummy.
276  * This can be helpful if we are just trying to emit a clean panic.
277  */
278 struct task_struct *validate_current(void)
279 {
280         static struct task_struct corrupt = { .comm = "<corrupt>" };
281         struct task_struct *tsk = current;
282         if (unlikely((unsigned long)tsk < PAGE_OFFSET ||
283                      (void *)tsk > high_memory ||
284                      ((unsigned long)tsk & (__alignof__(*tsk) - 1)) != 0)) {
285                 pr_err("Corrupt 'current' %p (sp %#lx)\n", tsk, stack_pointer);
286                 tsk = &corrupt;
287         }
288         return tsk;
289 }
290
291 /* Take and return the pointer to the previous task, for schedule_tail(). */
292 struct task_struct *sim_notify_fork(struct task_struct *prev)
293 {
294         struct task_struct *tsk = current;
295         __insn_mtspr(SPR_SIM_CONTROL, SIM_CONTROL_OS_FORK_PARENT |
296                      (tsk->thread.creator_pid << _SIM_CONTROL_OPERATOR_BITS));
297         __insn_mtspr(SPR_SIM_CONTROL, SIM_CONTROL_OS_FORK |
298                      (tsk->pid << _SIM_CONTROL_OPERATOR_BITS));
299         return prev;
300 }
301
302 int dump_task_regs(struct task_struct *tsk, elf_gregset_t *regs)
303 {
304         struct pt_regs *ptregs = task_pt_regs(tsk);
305         elf_core_copy_regs(regs, ptregs);
306         return 1;
307 }
308
309 #if CHIP_HAS_TILE_DMA()
310
311 /* Allow user processes to access the DMA SPRs */
312 void grant_dma_mpls(void)
313 {
314         __insn_mtspr(SPR_MPL_DMA_CPL_SET_0, 1);
315         __insn_mtspr(SPR_MPL_DMA_NOTIFY_SET_0, 1);
316 }
317
318 /* Forbid user processes from accessing the DMA SPRs */
319 void restrict_dma_mpls(void)
320 {
321         __insn_mtspr(SPR_MPL_DMA_CPL_SET_1, 1);
322         __insn_mtspr(SPR_MPL_DMA_NOTIFY_SET_1, 1);
323 }
324
325 /* Pause the DMA engine, then save off its state registers. */
326 static void save_tile_dma_state(struct tile_dma_state *dma)
327 {
328         unsigned long state = __insn_mfspr(SPR_DMA_USER_STATUS);
329         unsigned long post_suspend_state;
330
331         /* If we're running, suspend the engine. */
332         if ((state & DMA_STATUS_MASK) == SPR_DMA_STATUS__RUNNING_MASK)
333                 __insn_mtspr(SPR_DMA_CTR, SPR_DMA_CTR__SUSPEND_MASK);
334
335         /*
336          * Wait for the engine to idle, then save regs.  Note that we
337          * want to record the "running" bit from before suspension,
338          * and the "done" bit from after, so that we can properly
339          * distinguish a case where the user suspended the engine from
340          * the case where the kernel suspended as part of the context
341          * swap.
342          */
343         do {
344                 post_suspend_state = __insn_mfspr(SPR_DMA_USER_STATUS);
345         } while (post_suspend_state & SPR_DMA_STATUS__BUSY_MASK);
346
347         dma->src = __insn_mfspr(SPR_DMA_SRC_ADDR);
348         dma->src_chunk = __insn_mfspr(SPR_DMA_SRC_CHUNK_ADDR);
349         dma->dest = __insn_mfspr(SPR_DMA_DST_ADDR);
350         dma->dest_chunk = __insn_mfspr(SPR_DMA_DST_CHUNK_ADDR);
351         dma->strides = __insn_mfspr(SPR_DMA_STRIDE);
352         dma->chunk_size = __insn_mfspr(SPR_DMA_CHUNK_SIZE);
353         dma->byte = __insn_mfspr(SPR_DMA_BYTE);
354         dma->status = (state & SPR_DMA_STATUS__RUNNING_MASK) |
355                 (post_suspend_state & SPR_DMA_STATUS__DONE_MASK);
356 }
357
358 /* Restart a DMA that was running before we were context-switched out. */
359 static void restore_tile_dma_state(struct thread_struct *t)
360 {
361         const struct tile_dma_state *dma = &t->tile_dma_state;
362
363         /*
364          * The only way to restore the done bit is to run a zero
365          * length transaction.
366          */
367         if ((dma->status & SPR_DMA_STATUS__DONE_MASK) &&
368             !(__insn_mfspr(SPR_DMA_USER_STATUS) & SPR_DMA_STATUS__DONE_MASK)) {
369                 __insn_mtspr(SPR_DMA_BYTE, 0);
370                 __insn_mtspr(SPR_DMA_CTR, SPR_DMA_CTR__REQUEST_MASK);
371                 while (__insn_mfspr(SPR_DMA_USER_STATUS) &
372                        SPR_DMA_STATUS__BUSY_MASK)
373                         ;
374         }
375
376         __insn_mtspr(SPR_DMA_SRC_ADDR, dma->src);
377         __insn_mtspr(SPR_DMA_SRC_CHUNK_ADDR, dma->src_chunk);
378         __insn_mtspr(SPR_DMA_DST_ADDR, dma->dest);
379         __insn_mtspr(SPR_DMA_DST_CHUNK_ADDR, dma->dest_chunk);
380         __insn_mtspr(SPR_DMA_STRIDE, dma->strides);
381         __insn_mtspr(SPR_DMA_CHUNK_SIZE, dma->chunk_size);
382         __insn_mtspr(SPR_DMA_BYTE, dma->byte);
383
384         /*
385          * Restart the engine if we were running and not done.
386          * Clear a pending async DMA fault that we were waiting on return
387          * to user space to execute, since we expect the DMA engine
388          * to regenerate those faults for us now.  Note that we don't
389          * try to clear the TIF_ASYNC_TLB flag, since it's relatively
390          * harmless if set, and it covers both DMA and the SN processor.
391          */
392         if ((dma->status & DMA_STATUS_MASK) == SPR_DMA_STATUS__RUNNING_MASK) {
393                 t->dma_async_tlb.fault_num = 0;
394                 __insn_mtspr(SPR_DMA_CTR, SPR_DMA_CTR__REQUEST_MASK);
395         }
396 }
397
398 #endif
399
400 static void save_arch_state(struct thread_struct *t)
401 {
402 #if CHIP_HAS_SPLIT_INTR_MASK()
403         t->interrupt_mask = __insn_mfspr(SPR_INTERRUPT_MASK_0_0) |
404                 ((u64)__insn_mfspr(SPR_INTERRUPT_MASK_0_1) << 32);
405 #else
406         t->interrupt_mask = __insn_mfspr(SPR_INTERRUPT_MASK_0);
407 #endif
408         t->ex_context[0] = __insn_mfspr(SPR_EX_CONTEXT_0_0);
409         t->ex_context[1] = __insn_mfspr(SPR_EX_CONTEXT_0_1);
410         t->system_save[0] = __insn_mfspr(SPR_SYSTEM_SAVE_0_0);
411         t->system_save[1] = __insn_mfspr(SPR_SYSTEM_SAVE_0_1);
412         t->system_save[2] = __insn_mfspr(SPR_SYSTEM_SAVE_0_2);
413         t->system_save[3] = __insn_mfspr(SPR_SYSTEM_SAVE_0_3);
414         t->intctrl_0 = __insn_mfspr(SPR_INTCTRL_0_STATUS);
415 #if CHIP_HAS_PROC_STATUS_SPR()
416         t->proc_status = __insn_mfspr(SPR_PROC_STATUS);
417 #endif
418 #if !CHIP_HAS_FIXED_INTVEC_BASE()
419         t->interrupt_vector_base = __insn_mfspr(SPR_INTERRUPT_VECTOR_BASE_0);
420 #endif
421 #if CHIP_HAS_TILE_RTF_HWM()
422         t->tile_rtf_hwm = __insn_mfspr(SPR_TILE_RTF_HWM);
423 #endif
424 #if CHIP_HAS_DSTREAM_PF()
425         t->dstream_pf = __insn_mfspr(SPR_DSTREAM_PF);
426 #endif
427 }
428
429 static void restore_arch_state(const struct thread_struct *t)
430 {
431 #if CHIP_HAS_SPLIT_INTR_MASK()
432         __insn_mtspr(SPR_INTERRUPT_MASK_0_0, (u32) t->interrupt_mask);
433         __insn_mtspr(SPR_INTERRUPT_MASK_0_1, t->interrupt_mask >> 32);
434 #else
435         __insn_mtspr(SPR_INTERRUPT_MASK_0, t->interrupt_mask);
436 #endif
437         __insn_mtspr(SPR_EX_CONTEXT_0_0, t->ex_context[0]);
438         __insn_mtspr(SPR_EX_CONTEXT_0_1, t->ex_context[1]);
439         __insn_mtspr(SPR_SYSTEM_SAVE_0_0, t->system_save[0]);
440         __insn_mtspr(SPR_SYSTEM_SAVE_0_1, t->system_save[1]);
441         __insn_mtspr(SPR_SYSTEM_SAVE_0_2, t->system_save[2]);
442         __insn_mtspr(SPR_SYSTEM_SAVE_0_3, t->system_save[3]);
443         __insn_mtspr(SPR_INTCTRL_0_STATUS, t->intctrl_0);
444 #if CHIP_HAS_PROC_STATUS_SPR()
445         __insn_mtspr(SPR_PROC_STATUS, t->proc_status);
446 #endif
447 #if !CHIP_HAS_FIXED_INTVEC_BASE()
448         __insn_mtspr(SPR_INTERRUPT_VECTOR_BASE_0, t->interrupt_vector_base);
449 #endif
450 #if CHIP_HAS_TILE_RTF_HWM()
451         __insn_mtspr(SPR_TILE_RTF_HWM, t->tile_rtf_hwm);
452 #endif
453 #if CHIP_HAS_DSTREAM_PF()
454         __insn_mtspr(SPR_DSTREAM_PF, t->dstream_pf);
455 #endif
456 }
457
458
459 void _prepare_arch_switch(struct task_struct *next)
460 {
461 #if CHIP_HAS_SN_PROC()
462         int snctl;
463 #endif
464 #if CHIP_HAS_TILE_DMA()
465         struct tile_dma_state *dma = &current->thread.tile_dma_state;
466         if (dma->enabled)
467                 save_tile_dma_state(dma);
468 #endif
469 #if CHIP_HAS_SN_PROC()
470         /*
471          * Suspend the static network processor if it was running.
472          * We do not suspend the fabric itself, just like we don't
473          * try to suspend the UDN.
474          */
475         snctl = __insn_mfspr(SPR_SNCTL);
476         current->thread.sn_proc_running =
477                 (snctl & SPR_SNCTL__FRZPROC_MASK) == 0;
478         if (current->thread.sn_proc_running)
479                 __insn_mtspr(SPR_SNCTL, snctl | SPR_SNCTL__FRZPROC_MASK);
480 #endif
481 }
482
483
484 struct task_struct *__sched _switch_to(struct task_struct *prev,
485                                        struct task_struct *next)
486 {
487         /* DMA state is already saved; save off other arch state. */
488         save_arch_state(&prev->thread);
489
490 #if CHIP_HAS_TILE_DMA()
491         /*
492          * Restore DMA in new task if desired.
493          * Note that it is only safe to restart here since interrupts
494          * are disabled, so we can't take any DMATLB miss or access
495          * interrupts before we have finished switching stacks.
496          */
497         if (next->thread.tile_dma_state.enabled) {
498                 restore_tile_dma_state(&next->thread);
499                 grant_dma_mpls();
500         } else {
501                 restrict_dma_mpls();
502         }
503 #endif
504
505         /* Restore other arch state. */
506         restore_arch_state(&next->thread);
507
508 #if CHIP_HAS_SN_PROC()
509         /*
510          * Restart static network processor in the new process
511          * if it was running before.
512          */
513         if (next->thread.sn_proc_running) {
514                 int snctl = __insn_mfspr(SPR_SNCTL);
515                 __insn_mtspr(SPR_SNCTL, snctl & ~SPR_SNCTL__FRZPROC_MASK);
516         }
517 #endif
518
519 #ifdef CONFIG_HARDWALL
520         /* Enable or disable access to the network registers appropriately. */
521         if (prev->thread.hardwall != NULL) {
522                 if (next->thread.hardwall == NULL)
523                         restrict_network_mpls();
524         } else if (next->thread.hardwall != NULL) {
525                 grant_network_mpls();
526         }
527 #endif
528
529         /*
530          * Switch kernel SP, PC, and callee-saved registers.
531          * In the context of the new task, return the old task pointer
532          * (i.e. the task that actually called __switch_to).
533          * Pass the value to use for SYSTEM_SAVE_1_0 when we reset our sp.
534          */
535         return __switch_to(prev, next, next_current_ksp0(next));
536 }
537
538 long _sys_fork(struct pt_regs *regs)
539 {
540         return do_fork(SIGCHLD, regs->sp, regs, 0, NULL, NULL);
541 }
542
543 long _sys_clone(unsigned long clone_flags, unsigned long newsp,
544                 void __user *parent_tidptr, void __user *child_tidptr,
545                 struct pt_regs *regs)
546 {
547         if (!newsp)
548                 newsp = regs->sp;
549         return do_fork(clone_flags, newsp, regs, 0,
550                        parent_tidptr, child_tidptr);
551 }
552
553 long _sys_vfork(struct pt_regs *regs)
554 {
555         return do_fork(CLONE_VFORK | CLONE_VM | SIGCHLD, regs->sp,
556                        regs, 0, NULL, NULL);
557 }
558
559 /*
560  * sys_execve() executes a new program.
561  */
562 long _sys_execve(const char __user *path,
563                  const char __user *const __user *argv,
564                  const char __user *const __user *envp, struct pt_regs *regs)
565 {
566         long error;
567         char *filename;
568
569         filename = getname(path);
570         error = PTR_ERR(filename);
571         if (IS_ERR(filename))
572                 goto out;
573         error = do_execve(filename, argv, envp, regs);
574         putname(filename);
575 out:
576         return error;
577 }
578
579 #ifdef CONFIG_COMPAT
580 long _compat_sys_execve(const char __user *path,
581                         const compat_uptr_t __user *argv,
582                         const compat_uptr_t __user *envp, struct pt_regs *regs)
583 {
584         long error;
585         char *filename;
586
587         filename = getname(path);
588         error = PTR_ERR(filename);
589         if (IS_ERR(filename))
590                 goto out;
591         error = compat_do_execve(filename, argv, envp, regs);
592         putname(filename);
593 out:
594         return error;
595 }
596 #endif
597
598 unsigned long get_wchan(struct task_struct *p)
599 {
600         struct KBacktraceIterator kbt;
601
602         if (!p || p == current || p->state == TASK_RUNNING)
603                 return 0;
604
605         for (KBacktraceIterator_init(&kbt, p, NULL);
606              !KBacktraceIterator_end(&kbt);
607              KBacktraceIterator_next(&kbt)) {
608                 if (!in_sched_functions(kbt.it.pc))
609                         return kbt.it.pc;
610         }
611
612         return 0;
613 }
614
615 /*
616  * We pass in lr as zero (cleared in kernel_thread) and the caller
617  * part of the backtrace ABI on the stack also zeroed (in copy_thread)
618  * so that backtraces will stop with this function.
619  * Note that we don't use r0, since copy_thread() clears it.
620  */
621 static void start_kernel_thread(int dummy, int (*fn)(int), int arg)
622 {
623         do_exit(fn(arg));
624 }
625
626 /*
627  * Create a kernel thread
628  */
629 int kernel_thread(int (*fn)(void *), void * arg, unsigned long flags)
630 {
631         struct pt_regs regs;
632
633         memset(&regs, 0, sizeof(regs));
634         regs.ex1 = PL_ICS_EX1(KERNEL_PL, 0);  /* run at kernel PL, no ICS */
635         regs.pc = (long) start_kernel_thread;
636         regs.flags = PT_FLAGS_CALLER_SAVES;   /* need to restore r1 and r2 */
637         regs.regs[1] = (long) fn;             /* function pointer */
638         regs.regs[2] = (long) arg;            /* parameter register */
639
640         /* Ok, create the new process.. */
641         return do_fork(flags | CLONE_VM | CLONE_UNTRACED, 0, &regs,
642                        0, NULL, NULL);
643 }
644 EXPORT_SYMBOL(kernel_thread);
645
646 /* Flush thread state. */
647 void flush_thread(void)
648 {
649         /* Nothing */
650 }
651
652 /*
653  * Free current thread data structures etc..
654  */
655 void exit_thread(void)
656 {
657         /* Nothing */
658 }
659
660 void show_regs(struct pt_regs *regs)
661 {
662         struct task_struct *tsk = validate_current();
663         int i;
664
665         pr_err("\n");
666         pr_err(" Pid: %d, comm: %20s, CPU: %d\n",
667                tsk->pid, tsk->comm, smp_processor_id());
668 #ifdef __tilegx__
669         for (i = 0; i < 51; i += 3)
670                 pr_err(" r%-2d: "REGFMT" r%-2d: "REGFMT" r%-2d: "REGFMT"\n",
671                        i, regs->regs[i], i+1, regs->regs[i+1],
672                        i+2, regs->regs[i+2]);
673         pr_err(" r51: "REGFMT" r52: "REGFMT" tp : "REGFMT"\n",
674                regs->regs[51], regs->regs[52], regs->tp);
675         pr_err(" sp : "REGFMT" lr : "REGFMT"\n", regs->sp, regs->lr);
676 #else
677         for (i = 0; i < 52; i += 4)
678                 pr_err(" r%-2d: "REGFMT" r%-2d: "REGFMT
679                        " r%-2d: "REGFMT" r%-2d: "REGFMT"\n",
680                        i, regs->regs[i], i+1, regs->regs[i+1],
681                        i+2, regs->regs[i+2], i+3, regs->regs[i+3]);
682         pr_err(" r52: "REGFMT" tp : "REGFMT" sp : "REGFMT" lr : "REGFMT"\n",
683                regs->regs[52], regs->tp, regs->sp, regs->lr);
684 #endif
685         pr_err(" pc : "REGFMT" ex1: %ld     faultnum: %ld\n",
686                regs->pc, regs->ex1, regs->faultnum);
687
688         dump_stack_regs(regs);
689 }