blob: 3707da583d0508a3089d2dcf9ec9cd2bca9ed405 [file] [log] [blame]
David Howellsb920de12008-02-08 04:19:31 -08001/* MN10300 Process handling code
2 *
3 * Copyright (C) 2007 Red Hat, Inc. All Rights Reserved.
4 * Written by David Howells (dhowells@redhat.com)
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public Licence
8 * as published by the Free Software Foundation; either version
9 * 2 of the Licence, or (at your option) any later version.
10 */
11#include <linux/module.h>
12#include <linux/errno.h>
13#include <linux/sched.h>
14#include <linux/kernel.h>
15#include <linux/mm.h>
16#include <linux/smp.h>
David Howellsb920de12008-02-08 04:19:31 -080017#include <linux/stddef.h>
18#include <linux/unistd.h>
19#include <linux/ptrace.h>
David Howellsb920de12008-02-08 04:19:31 -080020#include <linux/user.h>
David Howellsb920de12008-02-08 04:19:31 -080021#include <linux/interrupt.h>
22#include <linux/delay.h>
23#include <linux/reboot.h>
24#include <linux/percpu.h>
25#include <linux/err.h>
26#include <linux/fs.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090027#include <linux/slab.h>
Frederic Weisbecker5b0753a2012-08-22 17:27:34 +020028#include <linux/rcupdate.h>
David Howellsb920de12008-02-08 04:19:31 -080029#include <asm/uaccess.h>
30#include <asm/pgtable.h>
David Howellsb920de12008-02-08 04:19:31 -080031#include <asm/io.h>
32#include <asm/processor.h>
33#include <asm/mmu_context.h>
34#include <asm/fpu.h>
35#include <asm/reset-regs.h>
36#include <asm/gdb-stub.h>
37#include "internal.h"
38
39/*
David Howellsb920de12008-02-08 04:19:31 -080040 * return saved PC of a blocked thread.
41 */
42unsigned long thread_saved_pc(struct task_struct *tsk)
43{
44 return ((unsigned long *) tsk->thread.sp)[3];
45}
46
47/*
48 * power off function, if any
49 */
50void (*pm_power_off)(void);
51EXPORT_SYMBOL(pm_power_off);
52
Akira Takeuchi368dd5a2010-10-27 17:28:55 +010053/*
54 * On SMP it's slightly faster (but much more power-consuming!)
55 * to poll the ->work.need_resched flag instead of waiting for the
56 * cross-CPU IPI to arrive. Use this option with caution.
Thomas Gleixneraf695cd2013-03-21 22:49:53 +010057 *
58 * tglx: No idea why this depends on HOTPLUG_CPU !?!
Akira Takeuchi368dd5a2010-10-27 17:28:55 +010059 */
Thomas Gleixneraf695cd2013-03-21 22:49:53 +010060#if !defined(CONFIG_SMP) || defined(CONFIG_HOTPLUG_CPU)
61void arch_cpu_idle(void)
Akira Takeuchi368dd5a2010-10-27 17:28:55 +010062{
Thomas Gleixneraf695cd2013-03-21 22:49:53 +010063 safe_halt();
Akira Takeuchi368dd5a2010-10-27 17:28:55 +010064}
Thomas Gleixneraf695cd2013-03-21 22:49:53 +010065#endif
David Howellsb920de12008-02-08 04:19:31 -080066
67void release_segments(struct mm_struct *mm)
68{
69}
70
71void machine_restart(char *cmd)
72{
David Howells044264b2011-03-18 16:54:31 +000073#ifdef CONFIG_KERNEL_DEBUGGER
David Howellsb920de12008-02-08 04:19:31 -080074 gdbstub_exit(0);
75#endif
76
77#ifdef mn10300_unit_hard_reset
78 mn10300_unit_hard_reset();
79#else
80 mn10300_proc_hard_reset();
81#endif
82}
83
84void machine_halt(void)
85{
David Howells044264b2011-03-18 16:54:31 +000086#ifdef CONFIG_KERNEL_DEBUGGER
David Howellsb920de12008-02-08 04:19:31 -080087 gdbstub_exit(0);
88#endif
89}
90
91void machine_power_off(void)
92{
David Howells044264b2011-03-18 16:54:31 +000093#ifdef CONFIG_KERNEL_DEBUGGER
David Howellsb920de12008-02-08 04:19:31 -080094 gdbstub_exit(0);
95#endif
96}
97
98void show_regs(struct pt_regs *regs)
99{
Tejun Heoa43cb952013-04-30 15:27:17 -0700100 show_regs_print_info(KERN_DEFAULT);
David Howellsb920de12008-02-08 04:19:31 -0800101}
102
103/*
David Howellsb920de12008-02-08 04:19:31 -0800104 * free current thread data structures etc..
105 */
106void exit_thread(void)
107{
108 exit_fpu();
109}
110
111void flush_thread(void)
112{
113 flush_fpu();
114}
115
116void release_thread(struct task_struct *dead_task)
117{
118}
119
120/*
121 * we do not have to muck with descriptors here, that is
122 * done in switch_mm() as needed.
123 */
124void copy_segments(struct task_struct *p, struct mm_struct *new_mm)
125{
126}
127
128/*
Suresh Siddha55ccf3f2012-05-16 15:03:51 -0700129 * this gets called so that we can store lazy state into memory and copy the
130 * current task into the new thread.
David Howellsb920de12008-02-08 04:19:31 -0800131 */
Suresh Siddha55ccf3f2012-05-16 15:03:51 -0700132int arch_dup_task_struct(struct task_struct *dst, struct task_struct *src)
David Howellsb920de12008-02-08 04:19:31 -0800133{
Suresh Siddha55ccf3f2012-05-16 15:03:51 -0700134 unlazy_fpu(src);
135 *dst = *src;
136 return 0;
David Howellsb920de12008-02-08 04:19:31 -0800137}
138
139/*
140 * set up the kernel stack for a new thread and copy arch-specific thread
141 * control information
142 */
Alexey Dobriyan6f2c55b2009-04-02 16:56:59 -0700143int copy_thread(unsigned long clone_flags,
David Howellsb920de12008-02-08 04:19:31 -0800144 unsigned long c_usp, unsigned long ustk_size,
Al Viroafa86fc2012-10-22 22:51:14 -0400145 struct task_struct *p)
David Howellsb920de12008-02-08 04:19:31 -0800146{
David Howells7c7fcf72010-10-27 17:29:01 +0100147 struct thread_info *ti = task_thread_info(p);
Al Viro255461c2012-09-19 13:05:49 -0400148 struct pt_regs *c_regs;
David Howellsb920de12008-02-08 04:19:31 -0800149 unsigned long c_ksp;
150
David Howellsb920de12008-02-08 04:19:31 -0800151 c_ksp = (unsigned long) task_stack_page(p) + THREAD_SIZE;
152
153 /* allocate the userspace exception frame and set it up */
154 c_ksp -= sizeof(struct pt_regs);
Al Viro255461c2012-09-19 13:05:49 -0400155 c_regs = (struct pt_regs *) c_ksp;
David Howellsb920de12008-02-08 04:19:31 -0800156 c_ksp -= 12; /* allocate function call ABI slack */
157
David Howellsb920de12008-02-08 04:19:31 -0800158 /* set up things up so the scheduler can start the new task */
Al Viro61b7fbc2012-09-22 18:18:23 -0400159 p->thread.uregs = c_regs;
Al Viro255461c2012-09-19 13:05:49 -0400160 ti->frame = c_regs;
161 p->thread.a3 = (unsigned long) c_regs;
David Howellsb920de12008-02-08 04:19:31 -0800162 p->thread.sp = c_ksp;
Al Viro255461c2012-09-19 13:05:49 -0400163 p->thread.wchan = p->thread.pc;
David Howellsb920de12008-02-08 04:19:31 -0800164 p->thread.usp = c_usp;
165
Al Viro1ea2a0162012-10-21 16:43:13 -0400166 if (unlikely(p->flags & PF_KTHREAD)) {
Al Viro61b7fbc2012-09-22 18:18:23 -0400167 memset(c_regs, 0, sizeof(struct pt_regs));
168 c_regs->a0 = c_usp; /* function */
169 c_regs->d0 = ustk_size; /* argument */
170 local_save_flags(c_regs->epsw);
171 c_regs->epsw |= EPSW_IE | EPSW_IM_7;
172 p->thread.pc = (unsigned long) ret_from_kernel_thread;
173 return 0;
174 }
Al Viro1ea2a0162012-10-21 16:43:13 -0400175 *c_regs = *current_pt_regs();
176 if (c_usp)
177 c_regs->sp = c_usp;
Al Viro61b7fbc2012-09-22 18:18:23 -0400178 c_regs->epsw &= ~EPSW_FE; /* my FPU */
179
David Howellsb920de12008-02-08 04:19:31 -0800180 /* the new TLS pointer is passed in as arg #5 to sys_clone() */
181 if (clone_flags & CLONE_SETTLS)
Al Viro61b7fbc2012-09-22 18:18:23 -0400182 c_regs->e2 = current_frame()->d3;
David Howellsb920de12008-02-08 04:19:31 -0800183
David Howellsb920de12008-02-08 04:19:31 -0800184 p->thread.pc = (unsigned long) ret_from_fork;
David Howellsb920de12008-02-08 04:19:31 -0800185
186 return 0;
187}
188
David Howellsb920de12008-02-08 04:19:31 -0800189unsigned long get_wchan(struct task_struct *p)
190{
191 return p->thread.wchan;
192}