blob: 03448eb189a72222288112cc47609e84af93be6d [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
Eric Dumazetb6a84012011-03-22 16:30:42 -0700117struct thread_info *alloc_thread_info_node(struct task_struct *task, int node)
Chris Metcalf867e3592010-05-28 23:09:12 -0400118{
119 struct page *page;
Chris Metcalf0707ad32010-06-25 17:04:17 -0400120 gfp_t flags = GFP_KERNEL;
Chris Metcalf867e3592010-05-28 23:09:12 -0400121
122#ifdef CONFIG_DEBUG_STACK_USAGE
123 flags |= __GFP_ZERO;
124#endif
125
Eric Dumazetb6a84012011-03-22 16:30:42 -0700126 page = alloc_pages_node(node, flags, THREAD_SIZE_ORDER);
Chris Metcalf867e3592010-05-28 23:09:12 -0400127 if (!page)
Chris Metcalf0707ad32010-06-25 17:04:17 -0400128 return NULL;
Chris Metcalf867e3592010-05-28 23:09:12 -0400129
130 return (struct thread_info *)page_address(page);
131}
132
133/*
134 * Free a thread_info node, and all of its derivative
135 * data structures.
136 */
137void free_thread_info(struct thread_info *info)
138{
139 struct single_step_state *step_state = info->step_state;
140
Chris Metcalf0707ad32010-06-25 17:04:17 -0400141#ifdef CONFIG_HARDWALL
142 /*
143 * We free a thread_info from the context of the task that has
144 * been scheduled next, so the original task is already dead.
145 * Calling deactivate here just frees up the data structures.
146 * If the task we're freeing held the last reference to a
147 * hardwall fd, it would have been released prior to this point
Chris Metcalfb8ace082012-03-30 16:01:48 -0400148 * anyway via exit_files(), and the hardwall_task.info pointers
149 * would be NULL by now.
Chris Metcalf0707ad32010-06-25 17:04:17 -0400150 */
Chris Metcalfb8ace082012-03-30 16:01:48 -0400151 hardwall_deactivate_all(info->task);
Chris Metcalf0707ad32010-06-25 17:04:17 -0400152#endif
Chris Metcalf867e3592010-05-28 23:09:12 -0400153
154 if (step_state) {
155
156 /*
157 * FIXME: we don't munmap step_state->buffer
158 * because the mm_struct for this process (info->task->mm)
159 * has already been zeroed in exit_mm(). Keeping a
160 * reference to it here seems like a bad move, so this
161 * means we can't munmap() the buffer, and therefore if we
162 * ptrace multiple threads in a process, we will slowly
163 * leak user memory. (Note that as soon as the last
164 * thread in a process dies, we will reclaim all user
165 * memory including single-step buffers in the usual way.)
166 * We should either assign a kernel VA to this buffer
167 * somehow, or we should associate the buffer(s) with the
168 * mm itself so we can clean them up that way.
169 */
170 kfree(step_state);
171 }
172
Chris Metcalf76c567f2011-02-28 16:37:34 -0500173 free_pages((unsigned long)info, THREAD_SIZE_ORDER);
Chris Metcalf867e3592010-05-28 23:09:12 -0400174}
175
176static void save_arch_state(struct thread_struct *t);
177
Chris Metcalf867e3592010-05-28 23:09:12 -0400178int copy_thread(unsigned long clone_flags, unsigned long sp,
179 unsigned long stack_size,
180 struct task_struct *p, struct pt_regs *regs)
181{
182 struct pt_regs *childregs;
183 unsigned long ksp;
184
185 /*
186 * When creating a new kernel thread we pass sp as zero.
187 * Assign it to a reasonable value now that we have the stack.
188 */
189 if (sp == 0 && regs->ex1 == PL_ICS_EX1(KERNEL_PL, 0))
190 sp = KSTK_TOP(p);
191
192 /*
193 * Do not clone step state from the parent; each thread
194 * must make its own lazily.
195 */
196 task_thread_info(p)->step_state = NULL;
197
198 /*
199 * Start new thread in ret_from_fork so it schedules properly
200 * and then return from interrupt like the parent.
201 */
202 p->thread.pc = (unsigned long) ret_from_fork;
203
204 /* Save user stack top pointer so we can ID the stack vm area later. */
205 p->thread.usp0 = sp;
206
207 /* Record the pid of the process that created this one. */
208 p->thread.creator_pid = current->pid;
209
210 /*
211 * Copy the registers onto the kernel stack so the
212 * return-from-interrupt code will reload it into registers.
213 */
214 childregs = task_pt_regs(p);
215 *childregs = *regs;
216 childregs->regs[0] = 0; /* return value is zero */
217 childregs->sp = sp; /* override with new user stack pointer */
218
219 /*
Chris Metcalfbc4cf2b2010-12-14 15:57:49 -0500220 * If CLONE_SETTLS is set, set "tp" in the new task to "r4",
221 * which is passed in as arg #5 to sys_clone().
222 */
223 if (clone_flags & CLONE_SETTLS)
224 childregs->tp = regs->regs[4];
225
226 /*
Chris Metcalf867e3592010-05-28 23:09:12 -0400227 * Copy the callee-saved registers from the passed pt_regs struct
228 * into the context-switch callee-saved registers area.
Chris Metcalfd6f0f222010-10-14 14:42:58 -0400229 * This way when we start the interrupt-return sequence, the
230 * callee-save registers will be correctly in registers, which
231 * is how we assume the compiler leaves them as we start doing
232 * the normal return-from-interrupt path after calling C code.
Chris Metcalf867e3592010-05-28 23:09:12 -0400233 * Zero out the C ABI save area to mark the top of the stack.
234 */
235 ksp = (unsigned long) childregs;
236 ksp -= C_ABI_SAVE_AREA_SIZE; /* interrupt-entry save area */
237 ((long *)ksp)[0] = ((long *)ksp)[1] = 0;
238 ksp -= CALLEE_SAVED_REGS_COUNT * sizeof(unsigned long);
239 memcpy((void *)ksp, &regs->regs[CALLEE_SAVED_FIRST_REG],
240 CALLEE_SAVED_REGS_COUNT * sizeof(unsigned long));
241 ksp -= C_ABI_SAVE_AREA_SIZE; /* __switch_to() save area */
242 ((long *)ksp)[0] = ((long *)ksp)[1] = 0;
243 p->thread.ksp = ksp;
244
245#if CHIP_HAS_TILE_DMA()
246 /*
247 * No DMA in the new thread. We model this on the fact that
248 * fork() clears the pending signals, alarms, and aio for the child.
249 */
250 memset(&p->thread.tile_dma_state, 0, sizeof(struct tile_dma_state));
251 memset(&p->thread.dma_async_tlb, 0, sizeof(struct async_tlb));
252#endif
253
254#if CHIP_HAS_SN_PROC()
255 /* Likewise, the new thread is not running static processor code. */
256 p->thread.sn_proc_running = 0;
257 memset(&p->thread.sn_async_tlb, 0, sizeof(struct async_tlb));
258#endif
259
260#if CHIP_HAS_PROC_STATUS_SPR()
261 /* New thread has its miscellaneous processor state bits clear. */
262 p->thread.proc_status = 0;
263#endif
264
Chris Metcalf0707ad32010-06-25 17:04:17 -0400265#ifdef CONFIG_HARDWALL
266 /* New thread does not own any networks. */
Chris Metcalfb8ace082012-03-30 16:01:48 -0400267 memset(&p->thread.hardwall[0], 0,
268 sizeof(struct hardwall_task) * HARDWALL_TYPES);
Chris Metcalf0707ad32010-06-25 17:04:17 -0400269#endif
Chris Metcalf867e3592010-05-28 23:09:12 -0400270
271
272 /*
273 * Start the new thread with the current architecture state
274 * (user interrupt masks, etc.).
275 */
276 save_arch_state(&p->thread);
277
278 return 0;
279}
280
281/*
282 * Return "current" if it looks plausible, or else a pointer to a dummy.
283 * This can be helpful if we are just trying to emit a clean panic.
284 */
285struct task_struct *validate_current(void)
286{
287 static struct task_struct corrupt = { .comm = "<corrupt>" };
288 struct task_struct *tsk = current;
289 if (unlikely((unsigned long)tsk < PAGE_OFFSET ||
Chris Metcalfb287f692012-03-29 14:02:52 -0400290 (high_memory && (void *)tsk > high_memory) ||
Chris Metcalf867e3592010-05-28 23:09:12 -0400291 ((unsigned long)tsk & (__alignof__(*tsk) - 1)) != 0)) {
Chris Metcalf0707ad32010-06-25 17:04:17 -0400292 pr_err("Corrupt 'current' %p (sp %#lx)\n", tsk, stack_pointer);
Chris Metcalf867e3592010-05-28 23:09:12 -0400293 tsk = &corrupt;
294 }
295 return tsk;
296}
297
298/* Take and return the pointer to the previous task, for schedule_tail(). */
299struct task_struct *sim_notify_fork(struct task_struct *prev)
300{
301 struct task_struct *tsk = current;
302 __insn_mtspr(SPR_SIM_CONTROL, SIM_CONTROL_OS_FORK_PARENT |
303 (tsk->thread.creator_pid << _SIM_CONTROL_OPERATOR_BITS));
304 __insn_mtspr(SPR_SIM_CONTROL, SIM_CONTROL_OS_FORK |
305 (tsk->pid << _SIM_CONTROL_OPERATOR_BITS));
306 return prev;
307}
308
309int dump_task_regs(struct task_struct *tsk, elf_gregset_t *regs)
310{
311 struct pt_regs *ptregs = task_pt_regs(tsk);
312 elf_core_copy_regs(regs, ptregs);
313 return 1;
314}
315
316#if CHIP_HAS_TILE_DMA()
317
318/* Allow user processes to access the DMA SPRs */
319void grant_dma_mpls(void)
320{
Chris Metcalfa78c9422010-10-14 16:23:03 -0400321#if CONFIG_KERNEL_PL == 2
322 __insn_mtspr(SPR_MPL_DMA_CPL_SET_1, 1);
323 __insn_mtspr(SPR_MPL_DMA_NOTIFY_SET_1, 1);
324#else
Chris Metcalf867e3592010-05-28 23:09:12 -0400325 __insn_mtspr(SPR_MPL_DMA_CPL_SET_0, 1);
326 __insn_mtspr(SPR_MPL_DMA_NOTIFY_SET_0, 1);
Chris Metcalfa78c9422010-10-14 16:23:03 -0400327#endif
Chris Metcalf867e3592010-05-28 23:09:12 -0400328}
329
330/* Forbid user processes from accessing the DMA SPRs */
331void restrict_dma_mpls(void)
332{
Chris Metcalfa78c9422010-10-14 16:23:03 -0400333#if CONFIG_KERNEL_PL == 2
334 __insn_mtspr(SPR_MPL_DMA_CPL_SET_2, 1);
335 __insn_mtspr(SPR_MPL_DMA_NOTIFY_SET_2, 1);
336#else
Chris Metcalf867e3592010-05-28 23:09:12 -0400337 __insn_mtspr(SPR_MPL_DMA_CPL_SET_1, 1);
338 __insn_mtspr(SPR_MPL_DMA_NOTIFY_SET_1, 1);
Chris Metcalfa78c9422010-10-14 16:23:03 -0400339#endif
Chris Metcalf867e3592010-05-28 23:09:12 -0400340}
341
342/* Pause the DMA engine, then save off its state registers. */
343static void save_tile_dma_state(struct tile_dma_state *dma)
344{
345 unsigned long state = __insn_mfspr(SPR_DMA_USER_STATUS);
346 unsigned long post_suspend_state;
347
348 /* If we're running, suspend the engine. */
349 if ((state & DMA_STATUS_MASK) == SPR_DMA_STATUS__RUNNING_MASK)
350 __insn_mtspr(SPR_DMA_CTR, SPR_DMA_CTR__SUSPEND_MASK);
351
352 /*
353 * Wait for the engine to idle, then save regs. Note that we
354 * want to record the "running" bit from before suspension,
355 * and the "done" bit from after, so that we can properly
356 * distinguish a case where the user suspended the engine from
357 * the case where the kernel suspended as part of the context
358 * swap.
359 */
360 do {
361 post_suspend_state = __insn_mfspr(SPR_DMA_USER_STATUS);
362 } while (post_suspend_state & SPR_DMA_STATUS__BUSY_MASK);
363
364 dma->src = __insn_mfspr(SPR_DMA_SRC_ADDR);
365 dma->src_chunk = __insn_mfspr(SPR_DMA_SRC_CHUNK_ADDR);
366 dma->dest = __insn_mfspr(SPR_DMA_DST_ADDR);
367 dma->dest_chunk = __insn_mfspr(SPR_DMA_DST_CHUNK_ADDR);
368 dma->strides = __insn_mfspr(SPR_DMA_STRIDE);
369 dma->chunk_size = __insn_mfspr(SPR_DMA_CHUNK_SIZE);
370 dma->byte = __insn_mfspr(SPR_DMA_BYTE);
371 dma->status = (state & SPR_DMA_STATUS__RUNNING_MASK) |
372 (post_suspend_state & SPR_DMA_STATUS__DONE_MASK);
373}
374
375/* Restart a DMA that was running before we were context-switched out. */
376static void restore_tile_dma_state(struct thread_struct *t)
377{
378 const struct tile_dma_state *dma = &t->tile_dma_state;
379
380 /*
381 * The only way to restore the done bit is to run a zero
382 * length transaction.
383 */
384 if ((dma->status & SPR_DMA_STATUS__DONE_MASK) &&
385 !(__insn_mfspr(SPR_DMA_USER_STATUS) & SPR_DMA_STATUS__DONE_MASK)) {
386 __insn_mtspr(SPR_DMA_BYTE, 0);
387 __insn_mtspr(SPR_DMA_CTR, SPR_DMA_CTR__REQUEST_MASK);
388 while (__insn_mfspr(SPR_DMA_USER_STATUS) &
389 SPR_DMA_STATUS__BUSY_MASK)
390 ;
391 }
392
393 __insn_mtspr(SPR_DMA_SRC_ADDR, dma->src);
394 __insn_mtspr(SPR_DMA_SRC_CHUNK_ADDR, dma->src_chunk);
395 __insn_mtspr(SPR_DMA_DST_ADDR, dma->dest);
396 __insn_mtspr(SPR_DMA_DST_CHUNK_ADDR, dma->dest_chunk);
397 __insn_mtspr(SPR_DMA_STRIDE, dma->strides);
398 __insn_mtspr(SPR_DMA_CHUNK_SIZE, dma->chunk_size);
399 __insn_mtspr(SPR_DMA_BYTE, dma->byte);
400
401 /*
402 * Restart the engine if we were running and not done.
403 * Clear a pending async DMA fault that we were waiting on return
404 * to user space to execute, since we expect the DMA engine
405 * to regenerate those faults for us now. Note that we don't
406 * try to clear the TIF_ASYNC_TLB flag, since it's relatively
407 * harmless if set, and it covers both DMA and the SN processor.
408 */
409 if ((dma->status & DMA_STATUS_MASK) == SPR_DMA_STATUS__RUNNING_MASK) {
410 t->dma_async_tlb.fault_num = 0;
411 __insn_mtspr(SPR_DMA_CTR, SPR_DMA_CTR__REQUEST_MASK);
412 }
413}
414
415#endif
416
417static void save_arch_state(struct thread_struct *t)
418{
419#if CHIP_HAS_SPLIT_INTR_MASK()
420 t->interrupt_mask = __insn_mfspr(SPR_INTERRUPT_MASK_0_0) |
421 ((u64)__insn_mfspr(SPR_INTERRUPT_MASK_0_1) << 32);
422#else
423 t->interrupt_mask = __insn_mfspr(SPR_INTERRUPT_MASK_0);
424#endif
425 t->ex_context[0] = __insn_mfspr(SPR_EX_CONTEXT_0_0);
426 t->ex_context[1] = __insn_mfspr(SPR_EX_CONTEXT_0_1);
427 t->system_save[0] = __insn_mfspr(SPR_SYSTEM_SAVE_0_0);
428 t->system_save[1] = __insn_mfspr(SPR_SYSTEM_SAVE_0_1);
429 t->system_save[2] = __insn_mfspr(SPR_SYSTEM_SAVE_0_2);
430 t->system_save[3] = __insn_mfspr(SPR_SYSTEM_SAVE_0_3);
431 t->intctrl_0 = __insn_mfspr(SPR_INTCTRL_0_STATUS);
432#if CHIP_HAS_PROC_STATUS_SPR()
433 t->proc_status = __insn_mfspr(SPR_PROC_STATUS);
434#endif
Chris Metcalfa802fc62010-09-15 11:16:10 -0400435#if !CHIP_HAS_FIXED_INTVEC_BASE()
436 t->interrupt_vector_base = __insn_mfspr(SPR_INTERRUPT_VECTOR_BASE_0);
437#endif
438#if CHIP_HAS_TILE_RTF_HWM()
439 t->tile_rtf_hwm = __insn_mfspr(SPR_TILE_RTF_HWM);
440#endif
441#if CHIP_HAS_DSTREAM_PF()
442 t->dstream_pf = __insn_mfspr(SPR_DSTREAM_PF);
443#endif
Chris Metcalf867e3592010-05-28 23:09:12 -0400444}
445
446static void restore_arch_state(const struct thread_struct *t)
447{
448#if CHIP_HAS_SPLIT_INTR_MASK()
449 __insn_mtspr(SPR_INTERRUPT_MASK_0_0, (u32) t->interrupt_mask);
450 __insn_mtspr(SPR_INTERRUPT_MASK_0_1, t->interrupt_mask >> 32);
451#else
452 __insn_mtspr(SPR_INTERRUPT_MASK_0, t->interrupt_mask);
453#endif
454 __insn_mtspr(SPR_EX_CONTEXT_0_0, t->ex_context[0]);
455 __insn_mtspr(SPR_EX_CONTEXT_0_1, t->ex_context[1]);
456 __insn_mtspr(SPR_SYSTEM_SAVE_0_0, t->system_save[0]);
457 __insn_mtspr(SPR_SYSTEM_SAVE_0_1, t->system_save[1]);
458 __insn_mtspr(SPR_SYSTEM_SAVE_0_2, t->system_save[2]);
459 __insn_mtspr(SPR_SYSTEM_SAVE_0_3, t->system_save[3]);
460 __insn_mtspr(SPR_INTCTRL_0_STATUS, t->intctrl_0);
461#if CHIP_HAS_PROC_STATUS_SPR()
462 __insn_mtspr(SPR_PROC_STATUS, t->proc_status);
463#endif
Chris Metcalfa802fc62010-09-15 11:16:10 -0400464#if !CHIP_HAS_FIXED_INTVEC_BASE()
465 __insn_mtspr(SPR_INTERRUPT_VECTOR_BASE_0, t->interrupt_vector_base);
466#endif
Chris Metcalf867e3592010-05-28 23:09:12 -0400467#if CHIP_HAS_TILE_RTF_HWM()
Chris Metcalfa802fc62010-09-15 11:16:10 -0400468 __insn_mtspr(SPR_TILE_RTF_HWM, t->tile_rtf_hwm);
469#endif
470#if CHIP_HAS_DSTREAM_PF()
471 __insn_mtspr(SPR_DSTREAM_PF, t->dstream_pf);
Chris Metcalf867e3592010-05-28 23:09:12 -0400472#endif
473}
474
475
476void _prepare_arch_switch(struct task_struct *next)
477{
478#if CHIP_HAS_SN_PROC()
479 int snctl;
480#endif
481#if CHIP_HAS_TILE_DMA()
482 struct tile_dma_state *dma = &current->thread.tile_dma_state;
483 if (dma->enabled)
484 save_tile_dma_state(dma);
485#endif
486#if CHIP_HAS_SN_PROC()
487 /*
488 * Suspend the static network processor if it was running.
489 * We do not suspend the fabric itself, just like we don't
490 * try to suspend the UDN.
491 */
492 snctl = __insn_mfspr(SPR_SNCTL);
493 current->thread.sn_proc_running =
494 (snctl & SPR_SNCTL__FRZPROC_MASK) == 0;
495 if (current->thread.sn_proc_running)
496 __insn_mtspr(SPR_SNCTL, snctl | SPR_SNCTL__FRZPROC_MASK);
497#endif
498}
499
500
Chris Metcalf867e3592010-05-28 23:09:12 -0400501struct task_struct *__sched _switch_to(struct task_struct *prev,
502 struct task_struct *next)
503{
504 /* DMA state is already saved; save off other arch state. */
505 save_arch_state(&prev->thread);
506
507#if CHIP_HAS_TILE_DMA()
508 /*
509 * Restore DMA in new task if desired.
510 * Note that it is only safe to restart here since interrupts
511 * are disabled, so we can't take any DMATLB miss or access
512 * interrupts before we have finished switching stacks.
513 */
514 if (next->thread.tile_dma_state.enabled) {
515 restore_tile_dma_state(&next->thread);
516 grant_dma_mpls();
517 } else {
518 restrict_dma_mpls();
519 }
520#endif
521
522 /* Restore other arch state. */
523 restore_arch_state(&next->thread);
524
525#if CHIP_HAS_SN_PROC()
526 /*
527 * Restart static network processor in the new process
528 * if it was running before.
529 */
530 if (next->thread.sn_proc_running) {
531 int snctl = __insn_mfspr(SPR_SNCTL);
532 __insn_mtspr(SPR_SNCTL, snctl & ~SPR_SNCTL__FRZPROC_MASK);
533 }
534#endif
535
Chris Metcalf0707ad32010-06-25 17:04:17 -0400536#ifdef CONFIG_HARDWALL
537 /* Enable or disable access to the network registers appropriately. */
Chris Metcalfb8ace082012-03-30 16:01:48 -0400538 hardwall_switch_tasks(prev, next);
Chris Metcalf0707ad32010-06-25 17:04:17 -0400539#endif
Chris Metcalf867e3592010-05-28 23:09:12 -0400540
541 /*
542 * Switch kernel SP, PC, and callee-saved registers.
543 * In the context of the new task, return the old task pointer
544 * (i.e. the task that actually called __switch_to).
Chris Metcalfa78c9422010-10-14 16:23:03 -0400545 * Pass the value to use for SYSTEM_SAVE_K_0 when we reset our sp.
Chris Metcalf867e3592010-05-28 23:09:12 -0400546 */
547 return __switch_to(prev, next, next_current_ksp0(next));
548}
549
Chris Metcalf313ce672011-05-02 14:50:06 -0400550/*
551 * This routine is called on return from interrupt if any of the
552 * TIF_WORK_MASK flags are set in thread_info->flags. It is
553 * entered with interrupts disabled so we don't miss an event
554 * that modified the thread_info flags. If any flag is set, we
555 * handle it and return, and the calling assembly code will
556 * re-disable interrupts, reload the thread flags, and call back
557 * if more flags need to be handled.
558 *
559 * We return whether we need to check the thread_info flags again
560 * or not. Note that we don't clear TIF_SINGLESTEP here, so it's
561 * important that it be tested last, and then claim that we don't
562 * need to recheck the flags.
563 */
564int do_work_pending(struct pt_regs *regs, u32 thread_info_flags)
565{
Chris Metcalffc327e22012-04-28 18:51:43 -0400566 /* If we enter in kernel mode, do nothing and exit the caller loop. */
567 if (!user_mode(regs))
568 return 0;
569
Chris Metcalf313ce672011-05-02 14:50:06 -0400570 if (thread_info_flags & _TIF_NEED_RESCHED) {
571 schedule();
572 return 1;
573 }
574#if CHIP_HAS_TILE_DMA() || CHIP_HAS_SN_PROC()
575 if (thread_info_flags & _TIF_ASYNC_TLB) {
576 do_async_page_fault(regs);
577 return 1;
578 }
579#endif
580 if (thread_info_flags & _TIF_SIGPENDING) {
581 do_signal(regs);
582 return 1;
583 }
584 if (thread_info_flags & _TIF_NOTIFY_RESUME) {
585 clear_thread_flag(TIF_NOTIFY_RESUME);
586 tracehook_notify_resume(regs);
587 if (current->replacement_session_keyring)
588 key_replace_session_keyring();
589 return 1;
590 }
591 if (thread_info_flags & _TIF_SINGLESTEP) {
Chris Metcalffc327e22012-04-28 18:51:43 -0400592 single_step_once(regs);
Chris Metcalf313ce672011-05-02 14:50:06 -0400593 return 0;
594 }
595 panic("work_pending: bad flags %#x\n", thread_info_flags);
596}
597
Chris Metcalfbc4cf2b2010-12-14 15:57:49 -0500598/* Note there is an implicit fifth argument if (clone_flags & CLONE_SETTLS). */
Chris Metcalfd929b6a2010-10-14 14:34:33 -0400599SYSCALL_DEFINE5(clone, unsigned long, clone_flags, unsigned long, newsp,
600 void __user *, parent_tidptr, void __user *, child_tidptr,
601 struct pt_regs *, regs)
Chris Metcalf867e3592010-05-28 23:09:12 -0400602{
603 if (!newsp)
604 newsp = regs->sp;
605 return do_fork(clone_flags, newsp, regs, 0,
606 parent_tidptr, child_tidptr);
607}
608
Chris Metcalf867e3592010-05-28 23:09:12 -0400609/*
610 * sys_execve() executes a new program.
611 */
Chris Metcalfd929b6a2010-10-14 14:34:33 -0400612SYSCALL_DEFINE4(execve, const char __user *, path,
613 const char __user *const __user *, argv,
614 const char __user *const __user *, envp,
615 struct pt_regs *, regs)
Chris Metcalf867e3592010-05-28 23:09:12 -0400616{
Chris Metcalf0707ad32010-06-25 17:04:17 -0400617 long error;
Chris Metcalf867e3592010-05-28 23:09:12 -0400618 char *filename;
619
620 filename = getname(path);
621 error = PTR_ERR(filename);
622 if (IS_ERR(filename))
623 goto out;
624 error = do_execve(filename, argv, envp, regs);
625 putname(filename);
Chris Metcalf04f7a3f2011-02-28 13:08:32 -0500626 if (error == 0)
627 single_step_execve();
Chris Metcalf867e3592010-05-28 23:09:12 -0400628out:
629 return error;
630}
631
632#ifdef CONFIG_COMPAT
Chris Metcalfd929b6a2010-10-14 14:34:33 -0400633long compat_sys_execve(const char __user *path,
Chris Metcalf18aecc22011-05-04 14:38:26 -0400634 compat_uptr_t __user *argv,
635 compat_uptr_t __user *envp,
Chris Metcalfd929b6a2010-10-14 14:34:33 -0400636 struct pt_regs *regs)
Chris Metcalf867e3592010-05-28 23:09:12 -0400637{
Chris Metcalf0707ad32010-06-25 17:04:17 -0400638 long error;
Chris Metcalf867e3592010-05-28 23:09:12 -0400639 char *filename;
640
641 filename = getname(path);
642 error = PTR_ERR(filename);
643 if (IS_ERR(filename))
644 goto out;
645 error = compat_do_execve(filename, argv, envp, regs);
646 putname(filename);
Chris Metcalf04f7a3f2011-02-28 13:08:32 -0500647 if (error == 0)
648 single_step_execve();
Chris Metcalf867e3592010-05-28 23:09:12 -0400649out:
650 return error;
651}
652#endif
653
654unsigned long get_wchan(struct task_struct *p)
655{
656 struct KBacktraceIterator kbt;
657
658 if (!p || p == current || p->state == TASK_RUNNING)
659 return 0;
660
661 for (KBacktraceIterator_init(&kbt, p, NULL);
662 !KBacktraceIterator_end(&kbt);
663 KBacktraceIterator_next(&kbt)) {
664 if (!in_sched_functions(kbt.it.pc))
665 return kbt.it.pc;
666 }
667
668 return 0;
669}
670
671/*
672 * We pass in lr as zero (cleared in kernel_thread) and the caller
673 * part of the backtrace ABI on the stack also zeroed (in copy_thread)
674 * so that backtraces will stop with this function.
675 * Note that we don't use r0, since copy_thread() clears it.
676 */
677static void start_kernel_thread(int dummy, int (*fn)(int), int arg)
678{
679 do_exit(fn(arg));
680}
681
682/*
683 * Create a kernel thread
684 */
685int kernel_thread(int (*fn)(void *), void * arg, unsigned long flags)
686{
687 struct pt_regs regs;
688
689 memset(&regs, 0, sizeof(regs));
690 regs.ex1 = PL_ICS_EX1(KERNEL_PL, 0); /* run at kernel PL, no ICS */
691 regs.pc = (long) start_kernel_thread;
692 regs.flags = PT_FLAGS_CALLER_SAVES; /* need to restore r1 and r2 */
693 regs.regs[1] = (long) fn; /* function pointer */
694 regs.regs[2] = (long) arg; /* parameter register */
695
696 /* Ok, create the new process.. */
697 return do_fork(flags | CLONE_VM | CLONE_UNTRACED, 0, &regs,
698 0, NULL, NULL);
699}
700EXPORT_SYMBOL(kernel_thread);
701
702/* Flush thread state. */
703void flush_thread(void)
704{
705 /* Nothing */
706}
707
708/*
709 * Free current thread data structures etc..
710 */
711void exit_thread(void)
712{
713 /* Nothing */
714}
715
Chris Metcalf867e3592010-05-28 23:09:12 -0400716void show_regs(struct pt_regs *regs)
717{
718 struct task_struct *tsk = validate_current();
Chris Metcalf0707ad32010-06-25 17:04:17 -0400719 int i;
720
721 pr_err("\n");
722 pr_err(" Pid: %d, comm: %20s, CPU: %d\n",
Chris Metcalf867e3592010-05-28 23:09:12 -0400723 tsk->pid, tsk->comm, smp_processor_id());
Chris Metcalf0707ad32010-06-25 17:04:17 -0400724#ifdef __tilegx__
725 for (i = 0; i < 51; i += 3)
726 pr_err(" r%-2d: "REGFMT" r%-2d: "REGFMT" r%-2d: "REGFMT"\n",
727 i, regs->regs[i], i+1, regs->regs[i+1],
728 i+2, regs->regs[i+2]);
729 pr_err(" r51: "REGFMT" r52: "REGFMT" tp : "REGFMT"\n",
730 regs->regs[51], regs->regs[52], regs->tp);
731 pr_err(" sp : "REGFMT" lr : "REGFMT"\n", regs->sp, regs->lr);
732#else
Chris Metcalf7040dea2010-09-15 11:17:05 -0400733 for (i = 0; i < 52; i += 4)
Chris Metcalf0707ad32010-06-25 17:04:17 -0400734 pr_err(" r%-2d: "REGFMT" r%-2d: "REGFMT
735 " r%-2d: "REGFMT" r%-2d: "REGFMT"\n",
736 i, regs->regs[i], i+1, regs->regs[i+1],
737 i+2, regs->regs[i+2], i+3, regs->regs[i+3]);
738 pr_err(" r52: "REGFMT" tp : "REGFMT" sp : "REGFMT" lr : "REGFMT"\n",
739 regs->regs[52], regs->tp, regs->sp, regs->lr);
740#endif
741 pr_err(" pc : "REGFMT" ex1: %ld faultnum: %ld\n",
Chris Metcalf867e3592010-05-28 23:09:12 -0400742 regs->pc, regs->ex1, regs->faultnum);
743
744 dump_stack_regs(regs);
745}