blob: efb9833ce8923b6f433fd4f5b1bacff6e879b284 [file] [log] [blame]
Chris Metcalf867e3592010-05-28 23:09:12 -04001/*
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>
Chris Metcalf0707ad32010-06-25 17:04:17 -040027#include <linux/kernel.h>
Chris Metcalf313ce672011-05-02 14:50:06 -040028#include <linux/tracehook.h>
29#include <linux/signal.h>
Chris Metcalf867e3592010-05-28 23:09:12 -040030#include <asm/stack.h>
Paul Gortmaker34f2c0a2012-04-01 16:38:46 -040031#include <asm/switch_to.h>
Chris Metcalf867e3592010-05-28 23:09:12 -040032#include <asm/homecache.h>
Chris Metcalf0707ad32010-06-25 17:04:17 -040033#include <asm/syscalls.h>
Chris Metcalf313ce672011-05-02 14:50:06 -040034#include <asm/traps.h>
David Howellsbd119c62012-03-28 18:30:03 +010035#include <asm/setup.h>
Chris Metcalf0707ad32010-06-25 17:04:17 -040036#ifdef CONFIG_HARDWALL
37#include <asm/hardwall.h>
38#endif
Chris Metcalf867e3592010-05-28 23:09:12 -040039#include <arch/chip.h>
40#include <arch/abi.h>
David Howellsbd119c62012-03-28 18:30:03 +010041#include <arch/sim_def.h>
Chris Metcalf867e3592010-05-28 23:09:12 -040042
43
44/*
45 * Use the (x86) "idle=poll" option to prefer low latency when leaving the
46 * idle loop over low power while in the idle loop, e.g. if we have
47 * one thread per core and we want to get threads out of futex waits fast.
48 */
49static int no_idle_nap;
50static int __init idle_setup(char *str)
51{
52 if (!str)
53 return -EINVAL;
54
55 if (!strcmp(str, "poll")) {
Chris Metcalf0707ad32010-06-25 17:04:17 -040056 pr_info("using polling idle threads.\n");
Chris Metcalf867e3592010-05-28 23:09:12 -040057 no_idle_nap = 1;
58 } else if (!strcmp(str, "halt"))
59 no_idle_nap = 0;
60 else
61 return -1;
62
63 return 0;
64}
65early_param("idle", idle_setup);
66
67/*
68 * The idle thread. There's no useful work to be
69 * done, so just try to conserve power and have a
70 * low exit latency (ie sit in a loop waiting for
71 * somebody to say that they'd like to reschedule)
72 */
73void cpu_idle(void)
74{
Chris Metcalf867e3592010-05-28 23:09:12 -040075 int cpu = smp_processor_id();
76
77
78 current_thread_info()->status |= TS_POLLING;
79
80 if (no_idle_nap) {
81 while (1) {
82 while (!need_resched())
83 cpu_relax();
84 schedule();
85 }
86 }
87
88 /* endless idle loop with no priority at all */
89 while (1) {
Frederic Weisbecker1268fbc2011-11-17 18:48:14 +010090 tick_nohz_idle_enter();
91 rcu_idle_enter();
Chris Metcalf867e3592010-05-28 23:09:12 -040092 while (!need_resched()) {
93 if (cpu_is_offline(cpu))
94 BUG(); /* no HOTPLUG_CPU */
95
96 local_irq_disable();
97 __get_cpu_var(irq_stat).idle_timestamp = jiffies;
98 current_thread_info()->status &= ~TS_POLLING;
99 /*
100 * TS_POLLING-cleared state must be visible before we
101 * test NEED_RESCHED:
102 */
103 smp_mb();
104
105 if (!need_resched())
106 _cpu_idle();
107 else
108 local_irq_enable();
109 current_thread_info()->status |= TS_POLLING;
110 }
Frederic Weisbecker1268fbc2011-11-17 18:48:14 +0100111 rcu_idle_exit();
112 tick_nohz_idle_exit();
Thomas Gleixnerbd2f5532011-03-21 12:33:18 +0100113 schedule_preempt_disabled();
Chris Metcalf867e3592010-05-28 23:09:12 -0400114 }
115}
116
Chris Metcalf867e3592010-05-28 23:09:12 -0400117/*
Thomas Gleixnerd909a812012-05-05 15:05:47 +0000118 * Release a thread_info structure
Chris Metcalf867e3592010-05-28 23:09:12 -0400119 */
Thomas Gleixnerd909a812012-05-05 15:05:47 +0000120void arch_release_thread_info(struct thread_info *info)
Chris Metcalf867e3592010-05-28 23:09:12 -0400121{
122 struct single_step_state *step_state = info->step_state;
123
Chris Metcalf0707ad32010-06-25 17:04:17 -0400124#ifdef CONFIG_HARDWALL
125 /*
126 * We free a thread_info from the context of the task that has
127 * been scheduled next, so the original task is already dead.
128 * Calling deactivate here just frees up the data structures.
129 * If the task we're freeing held the last reference to a
130 * hardwall fd, it would have been released prior to this point
131 * anyway via exit_files(), and "hardwall" would be NULL by now.
132 */
133 if (info->task->thread.hardwall)
134 hardwall_deactivate(info->task);
135#endif
Chris Metcalf867e3592010-05-28 23:09:12 -0400136
137 if (step_state) {
138
139 /*
140 * FIXME: we don't munmap step_state->buffer
141 * because the mm_struct for this process (info->task->mm)
142 * has already been zeroed in exit_mm(). Keeping a
143 * reference to it here seems like a bad move, so this
144 * means we can't munmap() the buffer, and therefore if we
145 * ptrace multiple threads in a process, we will slowly
146 * leak user memory. (Note that as soon as the last
147 * thread in a process dies, we will reclaim all user
148 * memory including single-step buffers in the usual way.)
149 * We should either assign a kernel VA to this buffer
150 * somehow, or we should associate the buffer(s) with the
151 * mm itself so we can clean them up that way.
152 */
153 kfree(step_state);
154 }
Chris Metcalf867e3592010-05-28 23:09:12 -0400155}
156
157static void save_arch_state(struct thread_struct *t);
158
Chris Metcalf867e3592010-05-28 23:09:12 -0400159int copy_thread(unsigned long clone_flags, unsigned long sp,
160 unsigned long stack_size,
161 struct task_struct *p, struct pt_regs *regs)
162{
163 struct pt_regs *childregs;
164 unsigned long ksp;
165
166 /*
167 * When creating a new kernel thread we pass sp as zero.
168 * Assign it to a reasonable value now that we have the stack.
169 */
170 if (sp == 0 && regs->ex1 == PL_ICS_EX1(KERNEL_PL, 0))
171 sp = KSTK_TOP(p);
172
173 /*
174 * Do not clone step state from the parent; each thread
175 * must make its own lazily.
176 */
177 task_thread_info(p)->step_state = NULL;
178
179 /*
180 * Start new thread in ret_from_fork so it schedules properly
181 * and then return from interrupt like the parent.
182 */
183 p->thread.pc = (unsigned long) ret_from_fork;
184
185 /* Save user stack top pointer so we can ID the stack vm area later. */
186 p->thread.usp0 = sp;
187
188 /* Record the pid of the process that created this one. */
189 p->thread.creator_pid = current->pid;
190
191 /*
192 * Copy the registers onto the kernel stack so the
193 * return-from-interrupt code will reload it into registers.
194 */
195 childregs = task_pt_regs(p);
196 *childregs = *regs;
197 childregs->regs[0] = 0; /* return value is zero */
198 childregs->sp = sp; /* override with new user stack pointer */
199
200 /*
Chris Metcalfbc4cf2b2010-12-14 15:57:49 -0500201 * If CLONE_SETTLS is set, set "tp" in the new task to "r4",
202 * which is passed in as arg #5 to sys_clone().
203 */
204 if (clone_flags & CLONE_SETTLS)
205 childregs->tp = regs->regs[4];
206
207 /*
Chris Metcalf867e3592010-05-28 23:09:12 -0400208 * Copy the callee-saved registers from the passed pt_regs struct
209 * into the context-switch callee-saved registers area.
Chris Metcalfd6f0f222010-10-14 14:42:58 -0400210 * This way when we start the interrupt-return sequence, the
211 * callee-save registers will be correctly in registers, which
212 * is how we assume the compiler leaves them as we start doing
213 * the normal return-from-interrupt path after calling C code.
Chris Metcalf867e3592010-05-28 23:09:12 -0400214 * Zero out the C ABI save area to mark the top of the stack.
215 */
216 ksp = (unsigned long) childregs;
217 ksp -= C_ABI_SAVE_AREA_SIZE; /* interrupt-entry save area */
218 ((long *)ksp)[0] = ((long *)ksp)[1] = 0;
219 ksp -= CALLEE_SAVED_REGS_COUNT * sizeof(unsigned long);
220 memcpy((void *)ksp, &regs->regs[CALLEE_SAVED_FIRST_REG],
221 CALLEE_SAVED_REGS_COUNT * sizeof(unsigned long));
222 ksp -= C_ABI_SAVE_AREA_SIZE; /* __switch_to() save area */
223 ((long *)ksp)[0] = ((long *)ksp)[1] = 0;
224 p->thread.ksp = ksp;
225
226#if CHIP_HAS_TILE_DMA()
227 /*
228 * No DMA in the new thread. We model this on the fact that
229 * fork() clears the pending signals, alarms, and aio for the child.
230 */
231 memset(&p->thread.tile_dma_state, 0, sizeof(struct tile_dma_state));
232 memset(&p->thread.dma_async_tlb, 0, sizeof(struct async_tlb));
233#endif
234
235#if CHIP_HAS_SN_PROC()
236 /* Likewise, the new thread is not running static processor code. */
237 p->thread.sn_proc_running = 0;
238 memset(&p->thread.sn_async_tlb, 0, sizeof(struct async_tlb));
239#endif
240
241#if CHIP_HAS_PROC_STATUS_SPR()
242 /* New thread has its miscellaneous processor state bits clear. */
243 p->thread.proc_status = 0;
244#endif
245
Chris Metcalf0707ad32010-06-25 17:04:17 -0400246#ifdef CONFIG_HARDWALL
247 /* New thread does not own any networks. */
248 p->thread.hardwall = NULL;
249#endif
Chris Metcalf867e3592010-05-28 23:09:12 -0400250
251
252 /*
253 * Start the new thread with the current architecture state
254 * (user interrupt masks, etc.).
255 */
256 save_arch_state(&p->thread);
257
258 return 0;
259}
260
261/*
262 * Return "current" if it looks plausible, or else a pointer to a dummy.
263 * This can be helpful if we are just trying to emit a clean panic.
264 */
265struct task_struct *validate_current(void)
266{
267 static struct task_struct corrupt = { .comm = "<corrupt>" };
268 struct task_struct *tsk = current;
269 if (unlikely((unsigned long)tsk < PAGE_OFFSET ||
Chris Metcalfb287f692012-03-29 14:02:52 -0400270 (high_memory && (void *)tsk > high_memory) ||
Chris Metcalf867e3592010-05-28 23:09:12 -0400271 ((unsigned long)tsk & (__alignof__(*tsk) - 1)) != 0)) {
Chris Metcalf0707ad32010-06-25 17:04:17 -0400272 pr_err("Corrupt 'current' %p (sp %#lx)\n", tsk, stack_pointer);
Chris Metcalf867e3592010-05-28 23:09:12 -0400273 tsk = &corrupt;
274 }
275 return tsk;
276}
277
278/* Take and return the pointer to the previous task, for schedule_tail(). */
279struct task_struct *sim_notify_fork(struct task_struct *prev)
280{
281 struct task_struct *tsk = current;
282 __insn_mtspr(SPR_SIM_CONTROL, SIM_CONTROL_OS_FORK_PARENT |
283 (tsk->thread.creator_pid << _SIM_CONTROL_OPERATOR_BITS));
284 __insn_mtspr(SPR_SIM_CONTROL, SIM_CONTROL_OS_FORK |
285 (tsk->pid << _SIM_CONTROL_OPERATOR_BITS));
286 return prev;
287}
288
289int dump_task_regs(struct task_struct *tsk, elf_gregset_t *regs)
290{
291 struct pt_regs *ptregs = task_pt_regs(tsk);
292 elf_core_copy_regs(regs, ptregs);
293 return 1;
294}
295
296#if CHIP_HAS_TILE_DMA()
297
298/* Allow user processes to access the DMA SPRs */
299void grant_dma_mpls(void)
300{
Chris Metcalfa78c9422010-10-14 16:23:03 -0400301#if CONFIG_KERNEL_PL == 2
302 __insn_mtspr(SPR_MPL_DMA_CPL_SET_1, 1);
303 __insn_mtspr(SPR_MPL_DMA_NOTIFY_SET_1, 1);
304#else
Chris Metcalf867e3592010-05-28 23:09:12 -0400305 __insn_mtspr(SPR_MPL_DMA_CPL_SET_0, 1);
306 __insn_mtspr(SPR_MPL_DMA_NOTIFY_SET_0, 1);
Chris Metcalfa78c9422010-10-14 16:23:03 -0400307#endif
Chris Metcalf867e3592010-05-28 23:09:12 -0400308}
309
310/* Forbid user processes from accessing the DMA SPRs */
311void restrict_dma_mpls(void)
312{
Chris Metcalfa78c9422010-10-14 16:23:03 -0400313#if CONFIG_KERNEL_PL == 2
314 __insn_mtspr(SPR_MPL_DMA_CPL_SET_2, 1);
315 __insn_mtspr(SPR_MPL_DMA_NOTIFY_SET_2, 1);
316#else
Chris Metcalf867e3592010-05-28 23:09:12 -0400317 __insn_mtspr(SPR_MPL_DMA_CPL_SET_1, 1);
318 __insn_mtspr(SPR_MPL_DMA_NOTIFY_SET_1, 1);
Chris Metcalfa78c9422010-10-14 16:23:03 -0400319#endif
Chris Metcalf867e3592010-05-28 23:09:12 -0400320}
321
322/* Pause the DMA engine, then save off its state registers. */
323static void save_tile_dma_state(struct tile_dma_state *dma)
324{
325 unsigned long state = __insn_mfspr(SPR_DMA_USER_STATUS);
326 unsigned long post_suspend_state;
327
328 /* If we're running, suspend the engine. */
329 if ((state & DMA_STATUS_MASK) == SPR_DMA_STATUS__RUNNING_MASK)
330 __insn_mtspr(SPR_DMA_CTR, SPR_DMA_CTR__SUSPEND_MASK);
331
332 /*
333 * Wait for the engine to idle, then save regs. Note that we
334 * want to record the "running" bit from before suspension,
335 * and the "done" bit from after, so that we can properly
336 * distinguish a case where the user suspended the engine from
337 * the case where the kernel suspended as part of the context
338 * swap.
339 */
340 do {
341 post_suspend_state = __insn_mfspr(SPR_DMA_USER_STATUS);
342 } while (post_suspend_state & SPR_DMA_STATUS__BUSY_MASK);
343
344 dma->src = __insn_mfspr(SPR_DMA_SRC_ADDR);
345 dma->src_chunk = __insn_mfspr(SPR_DMA_SRC_CHUNK_ADDR);
346 dma->dest = __insn_mfspr(SPR_DMA_DST_ADDR);
347 dma->dest_chunk = __insn_mfspr(SPR_DMA_DST_CHUNK_ADDR);
348 dma->strides = __insn_mfspr(SPR_DMA_STRIDE);
349 dma->chunk_size = __insn_mfspr(SPR_DMA_CHUNK_SIZE);
350 dma->byte = __insn_mfspr(SPR_DMA_BYTE);
351 dma->status = (state & SPR_DMA_STATUS__RUNNING_MASK) |
352 (post_suspend_state & SPR_DMA_STATUS__DONE_MASK);
353}
354
355/* Restart a DMA that was running before we were context-switched out. */
356static void restore_tile_dma_state(struct thread_struct *t)
357{
358 const struct tile_dma_state *dma = &t->tile_dma_state;
359
360 /*
361 * The only way to restore the done bit is to run a zero
362 * length transaction.
363 */
364 if ((dma->status & SPR_DMA_STATUS__DONE_MASK) &&
365 !(__insn_mfspr(SPR_DMA_USER_STATUS) & SPR_DMA_STATUS__DONE_MASK)) {
366 __insn_mtspr(SPR_DMA_BYTE, 0);
367 __insn_mtspr(SPR_DMA_CTR, SPR_DMA_CTR__REQUEST_MASK);
368 while (__insn_mfspr(SPR_DMA_USER_STATUS) &
369 SPR_DMA_STATUS__BUSY_MASK)
370 ;
371 }
372
373 __insn_mtspr(SPR_DMA_SRC_ADDR, dma->src);
374 __insn_mtspr(SPR_DMA_SRC_CHUNK_ADDR, dma->src_chunk);
375 __insn_mtspr(SPR_DMA_DST_ADDR, dma->dest);
376 __insn_mtspr(SPR_DMA_DST_CHUNK_ADDR, dma->dest_chunk);
377 __insn_mtspr(SPR_DMA_STRIDE, dma->strides);
378 __insn_mtspr(SPR_DMA_CHUNK_SIZE, dma->chunk_size);
379 __insn_mtspr(SPR_DMA_BYTE, dma->byte);
380
381 /*
382 * Restart the engine if we were running and not done.
383 * Clear a pending async DMA fault that we were waiting on return
384 * to user space to execute, since we expect the DMA engine
385 * to regenerate those faults for us now. Note that we don't
386 * try to clear the TIF_ASYNC_TLB flag, since it's relatively
387 * harmless if set, and it covers both DMA and the SN processor.
388 */
389 if ((dma->status & DMA_STATUS_MASK) == SPR_DMA_STATUS__RUNNING_MASK) {
390 t->dma_async_tlb.fault_num = 0;
391 __insn_mtspr(SPR_DMA_CTR, SPR_DMA_CTR__REQUEST_MASK);
392 }
393}
394
395#endif
396
397static void save_arch_state(struct thread_struct *t)
398{
399#if CHIP_HAS_SPLIT_INTR_MASK()
400 t->interrupt_mask = __insn_mfspr(SPR_INTERRUPT_MASK_0_0) |
401 ((u64)__insn_mfspr(SPR_INTERRUPT_MASK_0_1) << 32);
402#else
403 t->interrupt_mask = __insn_mfspr(SPR_INTERRUPT_MASK_0);
404#endif
405 t->ex_context[0] = __insn_mfspr(SPR_EX_CONTEXT_0_0);
406 t->ex_context[1] = __insn_mfspr(SPR_EX_CONTEXT_0_1);
407 t->system_save[0] = __insn_mfspr(SPR_SYSTEM_SAVE_0_0);
408 t->system_save[1] = __insn_mfspr(SPR_SYSTEM_SAVE_0_1);
409 t->system_save[2] = __insn_mfspr(SPR_SYSTEM_SAVE_0_2);
410 t->system_save[3] = __insn_mfspr(SPR_SYSTEM_SAVE_0_3);
411 t->intctrl_0 = __insn_mfspr(SPR_INTCTRL_0_STATUS);
412#if CHIP_HAS_PROC_STATUS_SPR()
413 t->proc_status = __insn_mfspr(SPR_PROC_STATUS);
414#endif
Chris Metcalfa802fc62010-09-15 11:16:10 -0400415#if !CHIP_HAS_FIXED_INTVEC_BASE()
416 t->interrupt_vector_base = __insn_mfspr(SPR_INTERRUPT_VECTOR_BASE_0);
417#endif
418#if CHIP_HAS_TILE_RTF_HWM()
419 t->tile_rtf_hwm = __insn_mfspr(SPR_TILE_RTF_HWM);
420#endif
421#if CHIP_HAS_DSTREAM_PF()
422 t->dstream_pf = __insn_mfspr(SPR_DSTREAM_PF);
423#endif
Chris Metcalf867e3592010-05-28 23:09:12 -0400424}
425
426static void restore_arch_state(const struct thread_struct *t)
427{
428#if CHIP_HAS_SPLIT_INTR_MASK()
429 __insn_mtspr(SPR_INTERRUPT_MASK_0_0, (u32) t->interrupt_mask);
430 __insn_mtspr(SPR_INTERRUPT_MASK_0_1, t->interrupt_mask >> 32);
431#else
432 __insn_mtspr(SPR_INTERRUPT_MASK_0, t->interrupt_mask);
433#endif
434 __insn_mtspr(SPR_EX_CONTEXT_0_0, t->ex_context[0]);
435 __insn_mtspr(SPR_EX_CONTEXT_0_1, t->ex_context[1]);
436 __insn_mtspr(SPR_SYSTEM_SAVE_0_0, t->system_save[0]);
437 __insn_mtspr(SPR_SYSTEM_SAVE_0_1, t->system_save[1]);
438 __insn_mtspr(SPR_SYSTEM_SAVE_0_2, t->system_save[2]);
439 __insn_mtspr(SPR_SYSTEM_SAVE_0_3, t->system_save[3]);
440 __insn_mtspr(SPR_INTCTRL_0_STATUS, t->intctrl_0);
441#if CHIP_HAS_PROC_STATUS_SPR()
442 __insn_mtspr(SPR_PROC_STATUS, t->proc_status);
443#endif
Chris Metcalfa802fc62010-09-15 11:16:10 -0400444#if !CHIP_HAS_FIXED_INTVEC_BASE()
445 __insn_mtspr(SPR_INTERRUPT_VECTOR_BASE_0, t->interrupt_vector_base);
446#endif
Chris Metcalf867e3592010-05-28 23:09:12 -0400447#if CHIP_HAS_TILE_RTF_HWM()
Chris Metcalfa802fc62010-09-15 11:16:10 -0400448 __insn_mtspr(SPR_TILE_RTF_HWM, t->tile_rtf_hwm);
449#endif
450#if CHIP_HAS_DSTREAM_PF()
451 __insn_mtspr(SPR_DSTREAM_PF, t->dstream_pf);
Chris Metcalf867e3592010-05-28 23:09:12 -0400452#endif
453}
454
455
456void _prepare_arch_switch(struct task_struct *next)
457{
458#if CHIP_HAS_SN_PROC()
459 int snctl;
460#endif
461#if CHIP_HAS_TILE_DMA()
462 struct tile_dma_state *dma = &current->thread.tile_dma_state;
463 if (dma->enabled)
464 save_tile_dma_state(dma);
465#endif
466#if CHIP_HAS_SN_PROC()
467 /*
468 * Suspend the static network processor if it was running.
469 * We do not suspend the fabric itself, just like we don't
470 * try to suspend the UDN.
471 */
472 snctl = __insn_mfspr(SPR_SNCTL);
473 current->thread.sn_proc_running =
474 (snctl & SPR_SNCTL__FRZPROC_MASK) == 0;
475 if (current->thread.sn_proc_running)
476 __insn_mtspr(SPR_SNCTL, snctl | SPR_SNCTL__FRZPROC_MASK);
477#endif
478}
479
480
Chris Metcalf867e3592010-05-28 23:09:12 -0400481struct task_struct *__sched _switch_to(struct task_struct *prev,
482 struct task_struct *next)
483{
484 /* DMA state is already saved; save off other arch state. */
485 save_arch_state(&prev->thread);
486
487#if CHIP_HAS_TILE_DMA()
488 /*
489 * Restore DMA in new task if desired.
490 * Note that it is only safe to restart here since interrupts
491 * are disabled, so we can't take any DMATLB miss or access
492 * interrupts before we have finished switching stacks.
493 */
494 if (next->thread.tile_dma_state.enabled) {
495 restore_tile_dma_state(&next->thread);
496 grant_dma_mpls();
497 } else {
498 restrict_dma_mpls();
499 }
500#endif
501
502 /* Restore other arch state. */
503 restore_arch_state(&next->thread);
504
505#if CHIP_HAS_SN_PROC()
506 /*
507 * Restart static network processor in the new process
508 * if it was running before.
509 */
510 if (next->thread.sn_proc_running) {
511 int snctl = __insn_mfspr(SPR_SNCTL);
512 __insn_mtspr(SPR_SNCTL, snctl & ~SPR_SNCTL__FRZPROC_MASK);
513 }
514#endif
515
Chris Metcalf0707ad32010-06-25 17:04:17 -0400516#ifdef CONFIG_HARDWALL
517 /* Enable or disable access to the network registers appropriately. */
518 if (prev->thread.hardwall != NULL) {
519 if (next->thread.hardwall == NULL)
520 restrict_network_mpls();
521 } else if (next->thread.hardwall != NULL) {
522 grant_network_mpls();
523 }
524#endif
Chris Metcalf867e3592010-05-28 23:09:12 -0400525
526 /*
527 * Switch kernel SP, PC, and callee-saved registers.
528 * In the context of the new task, return the old task pointer
529 * (i.e. the task that actually called __switch_to).
Chris Metcalfa78c9422010-10-14 16:23:03 -0400530 * Pass the value to use for SYSTEM_SAVE_K_0 when we reset our sp.
Chris Metcalf867e3592010-05-28 23:09:12 -0400531 */
532 return __switch_to(prev, next, next_current_ksp0(next));
533}
534
Chris Metcalf313ce672011-05-02 14:50:06 -0400535/*
536 * This routine is called on return from interrupt if any of the
537 * TIF_WORK_MASK flags are set in thread_info->flags. It is
538 * entered with interrupts disabled so we don't miss an event
539 * that modified the thread_info flags. If any flag is set, we
540 * handle it and return, and the calling assembly code will
541 * re-disable interrupts, reload the thread flags, and call back
542 * if more flags need to be handled.
543 *
544 * We return whether we need to check the thread_info flags again
545 * or not. Note that we don't clear TIF_SINGLESTEP here, so it's
546 * important that it be tested last, and then claim that we don't
547 * need to recheck the flags.
548 */
549int do_work_pending(struct pt_regs *regs, u32 thread_info_flags)
550{
551 if (thread_info_flags & _TIF_NEED_RESCHED) {
552 schedule();
553 return 1;
554 }
555#if CHIP_HAS_TILE_DMA() || CHIP_HAS_SN_PROC()
556 if (thread_info_flags & _TIF_ASYNC_TLB) {
557 do_async_page_fault(regs);
558 return 1;
559 }
560#endif
561 if (thread_info_flags & _TIF_SIGPENDING) {
562 do_signal(regs);
563 return 1;
564 }
565 if (thread_info_flags & _TIF_NOTIFY_RESUME) {
566 clear_thread_flag(TIF_NOTIFY_RESUME);
567 tracehook_notify_resume(regs);
568 if (current->replacement_session_keyring)
569 key_replace_session_keyring();
570 return 1;
571 }
572 if (thread_info_flags & _TIF_SINGLESTEP) {
573 if ((regs->ex1 & SPR_EX_CONTEXT_1_1__PL_MASK) == 0)
574 single_step_once(regs);
575 return 0;
576 }
577 panic("work_pending: bad flags %#x\n", thread_info_flags);
578}
579
Chris Metcalfbc4cf2b2010-12-14 15:57:49 -0500580/* Note there is an implicit fifth argument if (clone_flags & CLONE_SETTLS). */
Chris Metcalfd929b6a2010-10-14 14:34:33 -0400581SYSCALL_DEFINE5(clone, unsigned long, clone_flags, unsigned long, newsp,
582 void __user *, parent_tidptr, void __user *, child_tidptr,
583 struct pt_regs *, regs)
Chris Metcalf867e3592010-05-28 23:09:12 -0400584{
585 if (!newsp)
586 newsp = regs->sp;
587 return do_fork(clone_flags, newsp, regs, 0,
588 parent_tidptr, child_tidptr);
589}
590
Chris Metcalf867e3592010-05-28 23:09:12 -0400591/*
592 * sys_execve() executes a new program.
593 */
Chris Metcalfd929b6a2010-10-14 14:34:33 -0400594SYSCALL_DEFINE4(execve, const char __user *, path,
595 const char __user *const __user *, argv,
596 const char __user *const __user *, envp,
597 struct pt_regs *, regs)
Chris Metcalf867e3592010-05-28 23:09:12 -0400598{
Chris Metcalf0707ad32010-06-25 17:04:17 -0400599 long error;
Chris Metcalf867e3592010-05-28 23:09:12 -0400600 char *filename;
601
602 filename = getname(path);
603 error = PTR_ERR(filename);
604 if (IS_ERR(filename))
605 goto out;
606 error = do_execve(filename, argv, envp, regs);
607 putname(filename);
Chris Metcalf04f7a3f2011-02-28 13:08:32 -0500608 if (error == 0)
609 single_step_execve();
Chris Metcalf867e3592010-05-28 23:09:12 -0400610out:
611 return error;
612}
613
614#ifdef CONFIG_COMPAT
Chris Metcalfd929b6a2010-10-14 14:34:33 -0400615long compat_sys_execve(const char __user *path,
Chris Metcalf18aecc22011-05-04 14:38:26 -0400616 compat_uptr_t __user *argv,
617 compat_uptr_t __user *envp,
Chris Metcalfd929b6a2010-10-14 14:34:33 -0400618 struct pt_regs *regs)
Chris Metcalf867e3592010-05-28 23:09:12 -0400619{
Chris Metcalf0707ad32010-06-25 17:04:17 -0400620 long error;
Chris Metcalf867e3592010-05-28 23:09:12 -0400621 char *filename;
622
623 filename = getname(path);
624 error = PTR_ERR(filename);
625 if (IS_ERR(filename))
626 goto out;
627 error = compat_do_execve(filename, argv, envp, regs);
628 putname(filename);
Chris Metcalf04f7a3f2011-02-28 13:08:32 -0500629 if (error == 0)
630 single_step_execve();
Chris Metcalf867e3592010-05-28 23:09:12 -0400631out:
632 return error;
633}
634#endif
635
636unsigned long get_wchan(struct task_struct *p)
637{
638 struct KBacktraceIterator kbt;
639
640 if (!p || p == current || p->state == TASK_RUNNING)
641 return 0;
642
643 for (KBacktraceIterator_init(&kbt, p, NULL);
644 !KBacktraceIterator_end(&kbt);
645 KBacktraceIterator_next(&kbt)) {
646 if (!in_sched_functions(kbt.it.pc))
647 return kbt.it.pc;
648 }
649
650 return 0;
651}
652
653/*
654 * We pass in lr as zero (cleared in kernel_thread) and the caller
655 * part of the backtrace ABI on the stack also zeroed (in copy_thread)
656 * so that backtraces will stop with this function.
657 * Note that we don't use r0, since copy_thread() clears it.
658 */
659static void start_kernel_thread(int dummy, int (*fn)(int), int arg)
660{
661 do_exit(fn(arg));
662}
663
664/*
665 * Create a kernel thread
666 */
667int kernel_thread(int (*fn)(void *), void * arg, unsigned long flags)
668{
669 struct pt_regs regs;
670
671 memset(&regs, 0, sizeof(regs));
672 regs.ex1 = PL_ICS_EX1(KERNEL_PL, 0); /* run at kernel PL, no ICS */
673 regs.pc = (long) start_kernel_thread;
674 regs.flags = PT_FLAGS_CALLER_SAVES; /* need to restore r1 and r2 */
675 regs.regs[1] = (long) fn; /* function pointer */
676 regs.regs[2] = (long) arg; /* parameter register */
677
678 /* Ok, create the new process.. */
679 return do_fork(flags | CLONE_VM | CLONE_UNTRACED, 0, &regs,
680 0, NULL, NULL);
681}
682EXPORT_SYMBOL(kernel_thread);
683
684/* Flush thread state. */
685void flush_thread(void)
686{
687 /* Nothing */
688}
689
690/*
691 * Free current thread data structures etc..
692 */
693void exit_thread(void)
694{
695 /* Nothing */
696}
697
Chris Metcalf867e3592010-05-28 23:09:12 -0400698void show_regs(struct pt_regs *regs)
699{
700 struct task_struct *tsk = validate_current();
Chris Metcalf0707ad32010-06-25 17:04:17 -0400701 int i;
702
703 pr_err("\n");
704 pr_err(" Pid: %d, comm: %20s, CPU: %d\n",
Chris Metcalf867e3592010-05-28 23:09:12 -0400705 tsk->pid, tsk->comm, smp_processor_id());
Chris Metcalf0707ad32010-06-25 17:04:17 -0400706#ifdef __tilegx__
707 for (i = 0; i < 51; i += 3)
708 pr_err(" r%-2d: "REGFMT" r%-2d: "REGFMT" r%-2d: "REGFMT"\n",
709 i, regs->regs[i], i+1, regs->regs[i+1],
710 i+2, regs->regs[i+2]);
711 pr_err(" r51: "REGFMT" r52: "REGFMT" tp : "REGFMT"\n",
712 regs->regs[51], regs->regs[52], regs->tp);
713 pr_err(" sp : "REGFMT" lr : "REGFMT"\n", regs->sp, regs->lr);
714#else
Chris Metcalf7040dea2010-09-15 11:17:05 -0400715 for (i = 0; i < 52; i += 4)
Chris Metcalf0707ad32010-06-25 17:04:17 -0400716 pr_err(" r%-2d: "REGFMT" r%-2d: "REGFMT
717 " r%-2d: "REGFMT" r%-2d: "REGFMT"\n",
718 i, regs->regs[i], i+1, regs->regs[i+1],
719 i+2, regs->regs[i+2], i+3, regs->regs[i+3]);
720 pr_err(" r52: "REGFMT" tp : "REGFMT" sp : "REGFMT" lr : "REGFMT"\n",
721 regs->regs[52], regs->tp, regs->sp, regs->lr);
722#endif
723 pr_err(" pc : "REGFMT" ex1: %ld faultnum: %ld\n",
Chris Metcalf867e3592010-05-28 23:09:12 -0400724 regs->pc, regs->ex1, regs->faultnum);
725
726 dump_stack_regs(regs);
727}